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

/external/llvm/lib/IR/
H A DDebugInfo.cpp238 void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) { argument
239 MDNode *N = dyn_cast<MDNode>(DVI->getVariable());
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1067 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(U))
1068 DVIs.push_back(DVI);
1081 DbgValueInst *DVI = *I; local
1082 DVI->eraseFromParent();
1104 DbgValueInst *DVI = *I; variable
1120 DIB->insertDbgValueIntrinsic(Arg, 0, DIVariable(DVI->getVariable()),
1121 DIExpression(DVI->getExpression()),
1122 DVI->getDebugLoc(), Inst);
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4424 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); local
4430 if (!DVI || (DVI->getValue() && isa<AllocaInst>(DVI->getValue()))) {
4435 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue());
4437 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI);
4438 DVI->removeFromParent();
4440 DVI->insertBefore(VI->getParent()->getFirstInsertionPt());
4442 DVI->insertAfter(VI);

Completed in 175 milliseconds