Searched defs:DVI (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/IR/
H A DDebugInfo.cpp173 void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) { argument
174 auto *N = dyn_cast<MDNode>(DVI->getVariable());
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp1155 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); local
1156 if (!DVI) {
1161 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue());
1163 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI);
1164 DVI->removeFromParent();
1166 DVI->insertBefore(VI->getParent()->getFirstInsertionPt());
1168 DVI->insertAfter(VI);
H A DScalarReplAggregates.cpp942 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(*UI))
943 DVIs.push_back(DVI);
955 DbgValueInst *DVI = *I; local
956 DVI->eraseFromParent();
978 DbgValueInst *DVI = *I; local
990 DIVariable(DVI->getVariable()),
994 DIVariable(DVI->getVariable()),
996 DbgVal->setDebugLoc(DVI->getDebugLoc());
1000 DIVariable(DVI->getVariable()), LI);
1001 DbgVal->setDebugLoc(DVI
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp304 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) {
305 if (DVI->getValue())
1050 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(PrevI))
1051 if (DVI->getValue() == I->getOperand(0) &&
1052 DVI->getOffset() == 0 &&
1053 DVI->getVariable() == DIVar &&
1054 DVI->getExpression() == DIExpr)
1252 static void replaceOneDbgValueForAlloca(DbgValueInst *DVI, Value *NewAddress, argument
1254 DebugLoc Loc = DVI->getDebugLoc();
1255 auto *DIVar = DVI
[all...]
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp5355 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); local
5361 if (!DVI || (DVI->getValue() && isa<AllocaInst>(DVI->getValue()))) {
5366 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue());
5372 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI);
5373 DVI->removeFromParent();
5375 DVI->insertBefore(&*VI->getParent()->getFirstInsertionPt());
5377 DVI->insertAfter(VI);

Completed in 203 milliseconds