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

/external/llvm/lib/IR/
H A DDebugInfo.cpp1142 void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) { argument
1143 MDNode *N = dyn_cast<MDNode>(DVI->getVariable());
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1070 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(U))
1071 DVIs.push_back(DVI);
1083 DbgValueInst *DVI = *I; local
1084 DVI->eraseFromParent();
1106 DbgValueInst *DVI = *I; variable
1123 DIB->insertDbgValueIntrinsic(Arg, 0, DIVariable(DVI->getVariable()),
1125 DbgVal->setDebugLoc(DVI->getDebugLoc());
H A DSROA.cpp823 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(U))
824 DVIs.push_back(DVI);
876 DbgValueInst *DVI = *I; variable
893 DIB.insertDbgValueIntrinsic(Arg, 0, DIVariable(DVI->getVariable()),
895 DbgVal->setDebugLoc(DVI->getDebugLoc());
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3230 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); local
3236 if (!DVI || (DVI->getValue() && isa<AllocaInst>(DVI->getValue()))) {
3241 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue());
3243 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI);
3244 DVI->removeFromParent();
3246 DVI->insertBefore(VI->getParent()->getFirstInsertionPt());
3248 DVI->insertAfter(VI);

Completed in 149 milliseconds