Lines Matching refs:DVI
1990 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn);
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);