Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:DVI

3230       DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn);
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);