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

/external/llvm/lib/IR/
H A DDebugInfo.cpp1006 void DebugInfoFinder::processValue(const DbgValueInst *DVI) { argument
1007 MDNode *N = dyn_cast<MDNode>(DVI->getVariable());
/external/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp1990 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); local
1991 if (!DVI) {
1996 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue());
1998 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI);
1999 DVI->removeFromParent();
2001 DVI->insertBefore(VI->getParent()->getFirstInsertionPt());
2003 DVI->insertAfter(VI);
H A DScalarReplAggregates.cpp1063 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(*UI))
1064 DVIs.push_back(DVI);
1076 DbgValueInst *DVI = *I; local
1077 DVI->eraseFromParent();
1099 DbgValueInst *DVI = *I; local
1116 DIB->insertDbgValueIntrinsic(Arg, 0, DIVariable(DVI->getVariable()),
1118 DbgVal->setDebugLoc(DVI->getDebugLoc());
H A DSROA.cpp749 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(*UI))
750 DVIs.push_back(DVI);
781 DbgValueInst *DVI = *I; local
798 DIB.insertDbgValueIntrinsic(Arg, 0, DIVariable(DVI->getVariable()),
800 DbgVal->setDebugLoc(DVI->getDebugLoc());

Completed in 101 milliseconds