Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:DVI

5240       DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn);
5246 if (!DVI || (DVI->getValue() && isa<AllocaInst>(DVI->getValue()))) {
5251 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue());
5257 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI);
5258 DVI->removeFromParent();
5260 DVI->insertBefore(&*VI->getParent()->getFirstInsertionPt());
5262 DVI->insertAfter(VI);