HomeSort by: relevance | last modified time | path
    Searched refs:DbgValueInst (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfo.h 29 class DbgValueInst;
44 void findDbgValues(SmallVectorImpl<DbgValueInst *> &DbgValues, Value *V);
87 /// DbgValueInst and DbgLoc attached to instructions. processModule will go
InstVisitor.h 205 RetTy visitDbgValueInst(DbgValueInst &I) { DELEGATE(DbgVariableIntrinsic);}
288 case Intrinsic::dbg_value: DELEGATE(DbgValueInst);
IntrinsicInst.h 347 class DbgValueInst : public DbgVariableIntrinsic {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineDebugify.cpp 70 DbgValueInst *EarliestDVI = nullptr;
75 auto *DVI = dyn_cast<DbgValueInst>(U.getUser());
CodeGenPrepare.cpp 2875 SmallVector<DbgValueInst *, 1> DbgValues;
7970 assert(isa<DbgValueInst>(I));
7971 DbgValueInst &DVI = *cast<DbgValueInst>(I);
8003 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dis/
llvm-dis.cpp 112 else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 55 class DbgValueInst;
105 const DbgValueInst* DI = nullptr;
111 DanglingDebugInfo(const DbgValueInst *di, DebugLoc DL, unsigned SDNO)
114 const DbgValueInst* getDI() { return DI; }
496 void addDanglingDebugInfo(const DbgValueInst *DI, DebugLoc DL,
FastISel.cpp 1275 const DbgValueInst *DI = cast<DbgValueInst>(II);
SelectionDAGBuilder.cpp 1140 void SelectionDAGBuilder::addDanglingDebugInfo(const DbgValueInst *DI,
1161 "DbgValueInst without an ArgList should have a single location "
1170 const DbgValueInst *DI = DDI.getDI();
1203 const DbgValueInst *DI = DDI.getDI();
1264 assert(isa<DbgValueInst>(DDI.getDI()));
5493 /// If the DbgValueInst is a dbg_value of a function argument, create the
6078 const DbgValueInst &DI = cast<DbgValueInst>(I);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
Local.h 47 class DbgValueInst;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DebugInfo.cpp 76 void llvm::findDbgValues(SmallVectorImpl<DbgValueInst *> &DbgValues, Value *V) {
82 // only add the owning DbgValueInst once; use this set to track ArgListUsers.
84 SmallPtrSet<DbgValueInst *, 4> EncounteredDbgValues;
88 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(U))
94 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(U))
109 // only add the owning DbgValueInst once; use this set to track ArgListUsers.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 341 /// Given a sequence of consecutive DbgValueInst like this
357 SmallVector<DbgValueInst *, 8> ToBeRemoved;
360 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(&I)) {
404 SmallVector<DbgValueInst *, 8> ToBeRemoved;
408 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(&I)) {
Debugify.cpp 635 bool diagnoseMisSizedDbgValue(Module &M, DbgValueInst *DVI) {
709 if (isa<DbgValueInst>(&I))
728 auto *DVI = dyn_cast<DbgValueInst>(&I);
LCSSA.cpp 235 SmallVector<DbgValueInst *, 4> DbgValues;
Local.cpp 422 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) {
1370 SmallVector<DbgValueInst *, 1> DbgValues;
1685 static void replaceOneDbgValueForAlloca(DbgValueInst *DVI, Value *NewAddress,
1713 if (auto *DVI = dyn_cast<DbgValueInst>(U.getUser()))
1733 bool StackValue = isa<DbgValueInst>(DII);
1751 } else if (isa<DbgValueInst>(DII)) {
LoopRotationUtils.cpp 166 SmallVector<DbgValueInst *, 1> DbgValues;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 2518 if (!isa<DbgValueInst>(DVI)) {
2589 SmallVector<DbgValueInst *, 16> DVIs;
2670 // by debug information. So we only choose to salvage DbgValueInst for
2675 SmallVector<DbgValueInst *, 16> DVIs;
2677 llvm::for_each(DVIs, [&](DbgValueInst *DVI) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 557 if (auto *DVI = dyn_cast<DbgValueInst>(&*BI)) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 1911 const DbgValueInst &DI = cast<DbgValueInst>(CI);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 5834 DenseMap<DbgValueInst *, SmallVector<std::pair<unsigned, EqualValues>>>;
5836 DenseMap<DbgValueInst *, std::pair<DIExpression *, Metadata *>>;
5843 auto DVI = dyn_cast<DbgValueInst>(&I);

Completed in 79 milliseconds