Home
last modified time | relevance | path

Searched refs:DVI (Results 1 – 25 of 55) sorted by relevance

123

/external/swiftshader/third_party/LLVM/lib/VMCore/
DDebugInfoProbe.cpp82 } 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/
DLocal.cpp304 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/
DMakefile.in14 DVI=texi2dvi --clean
42 -$(Q) $(DVI) $(srcdir)/libext2fs.texinfo
/external/llvm/lib/CodeGen/
DCriticalAntiDepBreaker.cpp648 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()
DAggressiveAntiDepBreaker.cpp965 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()
DCodeGenPrepare.cpp5355 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/
DCriticalAntiDepBreaker.cpp630 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()
DAggressiveAntiDepBreaker.cpp929 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/
Dllvm-dis.cpp100 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/
DCodeGenPrepare.cpp1155 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()
DScalarReplAggregates.cpp942 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/
Dllvm-dis.cpp110 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/
DDebugInfo.cpp173 void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) { in processValue() argument
174 auto *N = dyn_cast<MDNode>(DVI->getVariable()); in processValue()
DVerifier.cpp4216 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/
DMakefile.in62 DVI=texi2dvi
77 -$(Q) $(DVI) $(srcdir)/com_err.texinfo
/external/llvm/include/llvm/IR/
DDebugInfo.h66 void processValue(const Module &M, const DbgValueInst *DVI);
/external/ImageMagick/MagickCore/
Dvms.c261 item_list[0].ile3$w_code=DVI$_DEVCLASS; in VMSIsMagickConflict()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DInlineFunction.cpp870 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(BI)) { in fixupLineNumbers() local
873 DVI->setOperand(2, createInlinedVariable(DVI->getVariable(), in fixupLineNumbers()
DLocal.cpp240 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in isInstructionTriviallyDead() local
241 if (DVI->getValue()) in isInstructionTriviallyDead()
/external/mesa3d/src/egl/docs/
DEGL_MESA_screen_surface216 two RAMDACs but three ports (VGA, DVI, TV).
/external/xmlrpcpp/src/
DDoxyfile778 # to generate PDF and DVI output from the Perl module output.
/external/bison/doc/
DDoxyfile.in819 # to generate PDF and DVI output from the Perl module output.
/external/libvorbis/doc/
DDoxyfile.in876 # to generate PDF and DVI output from the Perl module output.
/external/libdaemon/doc/
Ddoxygen.conf.in893 # to generate PDF and DVI output from the Perl module output.
/external/libmtp/doc/
DDoxyfile.in891 # to generate PDF and DVI output from the Perl module output.

123