/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | DebugInfoProbe.cpp | 82 } else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(BI)) { in initialize() local 83 Addr = DVI->getValue(); in initialize() 84 Node = DVI->getVariable(); in initialize() 133 } else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(BI)) { in finalize() local 134 Addr = DVI->getValue(); in finalize() 135 Node = DVI->getVariable(); in finalize()
|
/external/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 304 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in isInstructionTriviallyDead() local 305 if (DVI->getValue()) in isInstructionTriviallyDead() 1050 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(PrevI)) in LdStHasDebugValue() local 1051 if (DVI->getValue() == I->getOperand(0) && in LdStHasDebugValue() 1052 DVI->getOffset() == 0 && in LdStHasDebugValue() 1053 DVI->getVariable() == DIVar && in LdStHasDebugValue() 1054 DVI->getExpression() == DIExpr) in LdStHasDebugValue() 1252 static void replaceOneDbgValueForAlloca(DbgValueInst *DVI, Value *NewAddress, in replaceOneDbgValueForAlloca() argument 1254 DebugLoc Loc = DVI->getDebugLoc(); in replaceOneDbgValueForAlloca() 1255 auto *DIVar = DVI->getVariable(); in replaceOneDbgValueForAlloca() [all …]
|
/external/e2fsprogs/doc/ |
D | Makefile.in | 14 DVI=texi2dvi --clean 42 -$(Q) $(DVI) $(srcdir)/libext2fs.texinfo
|
/external/llvm/lib/CodeGen/ |
D | CriticalAntiDepBreaker.cpp | 648 for (DbgValueVector::iterator DVI = DbgValues.begin(), in BreakAntiDependencies() local 649 DVE = DbgValues.end(); DVI != DVE; ++DVI) in BreakAntiDependencies() 650 if (DVI->second == Q->second->getParent()) in BreakAntiDependencies() 651 UpdateDbgValue(*DVI->first, AntiDepReg, NewReg); in BreakAntiDependencies()
|
D | AggressiveAntiDepBreaker.cpp | 965 for (DbgValueVector::iterator DVI = DbgValues.begin(), in BreakAntiDependencies() local 966 DVE = DbgValues.end(); DVI != DVE; ++DVI) in BreakAntiDependencies() 967 if (DVI->second == Q.second.Operand->getParent()) in BreakAntiDependencies() 968 UpdateDbgValue(*DVI->first, AntiDepReg, NewReg); in BreakAntiDependencies()
|
D | CodeGenPrepare.cpp | 5355 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); in placeDbgValues() local 5361 if (!DVI || (DVI->getValue() && isa<AllocaInst>(DVI->getValue()))) { in placeDbgValues() 5366 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue()); in placeDbgValues() 5372 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI); in placeDbgValues() 5373 DVI->removeFromParent(); in placeDbgValues() 5375 DVI->insertBefore(&*VI->getParent()->getFirstInsertionPt()); in placeDbgValues() 5377 DVI->insertAfter(VI); in placeDbgValues()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | CriticalAntiDepBreaker.cpp | 630 for (DbgValueVector::iterator DVI = DbgValues.begin(), in BreakAntiDependencies() local 631 DVE = DbgValues.end(); DVI != DVE; ++DVI) in BreakAntiDependencies() 632 if (DVI->second == Q->second->getParent()) in BreakAntiDependencies() 633 UpdateDbgValue(DVI->first, AntiDepReg, NewReg); in BreakAntiDependencies()
|
D | AggressiveAntiDepBreaker.cpp | 929 for (DbgValueVector::iterator DVI = DbgValues.begin(), in BreakAntiDependencies() local 930 DVE = DbgValues.end(); DVI != DVE; ++DVI) in BreakAntiDependencies() 931 if (DVI->second == Q->second.Operand->getParent()) in BreakAntiDependencies() 932 UpdateDbgValue(DVI->first, AntiDepReg, NewReg); in BreakAntiDependencies()
|
/external/swiftshader/third_party/LLVM/tools/llvm-dis/ |
D | llvm-dis.cpp | 100 else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in printInfoComment() local 101 DIVariable Var(DVI->getVariable()); in printInfoComment()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | CodeGenPrepare.cpp | 1155 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); in PlaceDbgValues() local 1156 if (!DVI) { in PlaceDbgValues() 1161 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue()); in PlaceDbgValues() 1163 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI); in PlaceDbgValues() 1164 DVI->removeFromParent(); in PlaceDbgValues() 1166 DVI->insertBefore(VI->getParent()->getFirstInsertionPt()); in PlaceDbgValues() 1168 DVI->insertAfter(VI); in PlaceDbgValues()
|
D | ScalarReplAggregates.cpp | 942 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(*UI)) in run() local 943 DVIs.push_back(DVI); in run() 955 DbgValueInst *DVI = *I; in run() local 956 DVI->eraseFromParent(); in run() 978 DbgValueInst *DVI = *I; in updateDebugInfo() local 990 DIVariable(DVI->getVariable()), in updateDebugInfo() 994 DIVariable(DVI->getVariable()), in updateDebugInfo() 996 DbgVal->setDebugLoc(DVI->getDebugLoc()); in updateDebugInfo() 1000 DIVariable(DVI->getVariable()), LI); in updateDebugInfo() 1001 DbgVal->setDebugLoc(DVI->getDebugLoc()); in updateDebugInfo()
|
/external/llvm/tools/llvm-dis/ |
D | llvm-dis.cpp | 110 else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in printInfoComment() local 115 OS << " [debug variable = " << DVI->getVariable()->getName() << "]"; in printInfoComment()
|
/external/llvm/lib/IR/ |
D | DebugInfo.cpp | 173 void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) { in processValue() argument 174 auto *N = dyn_cast<MDNode>(DVI->getVariable()); in processValue()
|
D | Verifier.cpp | 4216 if (auto *DVI = dyn_cast<DbgValueInst>(&I)) { in verifyBitPieceExpression() local 4217 V = dyn_cast_or_null<DILocalVariable>(DVI->getRawVariable()); in verifyBitPieceExpression() 4218 E = dyn_cast_or_null<DIExpression>(DVI->getRawExpression()); in verifyBitPieceExpression()
|
/external/e2fsprogs/lib/et/ |
D | Makefile.in | 62 DVI=texi2dvi 77 -$(Q) $(DVI) $(srcdir)/com_err.texinfo
|
/external/llvm/include/llvm/IR/ |
D | DebugInfo.h | 66 void processValue(const Module &M, const DbgValueInst *DVI);
|
/external/ImageMagick/MagickCore/ |
D | vms.c | 261 item_list[0].ile3$w_code=DVI$_DEVCLASS; in VMSIsMagickConflict()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 870 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(BI)) { in fixupLineNumbers() local 873 DVI->setOperand(2, createInlinedVariable(DVI->getVariable(), in fixupLineNumbers()
|
D | Local.cpp | 240 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in isInstructionTriviallyDead() local 241 if (DVI->getValue()) in isInstructionTriviallyDead()
|
/external/mesa3d/src/egl/docs/ |
D | EGL_MESA_screen_surface | 216 two RAMDACs but three ports (VGA, DVI, TV).
|
/external/xmlrpcpp/src/ |
D | Doxyfile | 778 # to generate PDF and DVI output from the Perl module output.
|
/external/bison/doc/ |
D | Doxyfile.in | 819 # to generate PDF and DVI output from the Perl module output.
|
/external/libvorbis/doc/ |
D | Doxyfile.in | 876 # to generate PDF and DVI output from the Perl module output.
|
/external/libdaemon/doc/ |
D | doxygen.conf.in | 893 # to generate PDF and DVI output from the Perl module output.
|
/external/libmtp/doc/ |
D | Doxyfile.in | 891 # to generate PDF and DVI output from the Perl module output.
|