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

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfo.h 28 class DbgDeclareInst;
41 TinyPtrVector<DbgDeclareInst *> FindDbgDeclareUses(Value *V);
86 /// processDeclare, processValue and processLocation to handle DbgDeclareInst,
InstVisitor.h 204 RetTy visitDbgDeclareInst(DbgDeclareInst &I) { DELEGATE(DbgVariableIntrinsic);}
287 case Intrinsic::dbg_declare: DELEGATE(DbgDeclareInst);
IntrinsicInst.h 308 class DbgDeclareInst : public DbgVariableIntrinsic {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dis/
llvm-dis.cpp 105 if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
Local.h 45 class DbgDeclareInst;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
Inliner.cpp 206 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(U))
MergeFunctions.cpp 572 } else if (auto *DDI = dyn_cast<DbgDeclareInst>(&*BI)) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 773 auto *I = llvm::find_if(DDIs, [](DbgDeclareInst *DDI) {
928 TinyPtrVector<DbgDeclareInst *> DIs = FindDbgDeclareUses(PromiseAlloca);
932 DbgDeclareInst *PromiseDDI = DIs.front();
1608 TinyPtrVector<DbgDeclareInst *> DIs = FindDbgDeclareUses(Def);
1609 for (DbgDeclareInst *DDI : DIs) {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DebugInfo.cpp 68 TinyPtrVector<DbgDeclareInst *> llvm::FindDbgDeclareUses(Value *V) {
69 TinyPtrVector<DbgDeclareInst *> DDIs;
71 if (auto *DDI = dyn_cast<DbgDeclareInst>(DVI))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Local.cpp 417 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) {
1534 SmallVector<DbgDeclareInst *, 4> Dbgs;
1537 if (auto DDI = dyn_cast<DbgDeclareInst>(&BI))
1544 DbgDeclareInst *DDI = I;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 1214 const DbgDeclareInst *DI = cast<DbgDeclareInst>(II);
SelectionDAGISel.cpp 1320 const DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(&I);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 1856 const DbgDeclareInst &DI = cast<DbgDeclareInst>(CI);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 3582 if (isa<DbgDeclareInst>(User))
3593 if (isa<DbgDeclareInst>(User) && isa<CastInst>(I))
  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
Core.h 1596 macro(DbgDeclareInst) \
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
MetadataLoader.cpp 546 if (auto *DDI = dyn_cast<DbgDeclareInst>(&I))
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FastISel.cpp 2776 const DbgDeclareInst *DI = cast<DbgDeclareInst>(II);

Completed in 41 milliseconds