Lines Matching refs:DVI
304 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in isInstructionTriviallyDead() local
305 if (DVI->getValue()) in isInstructionTriviallyDead()
1050 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(PrevI)) in LdStHasDebugValue() local
1051 if (DVI->getValue() == I->getOperand(0) && in LdStHasDebugValue()
1052 DVI->getOffset() == 0 && in LdStHasDebugValue()
1053 DVI->getVariable() == DIVar && in LdStHasDebugValue()
1054 DVI->getExpression() == DIExpr) in LdStHasDebugValue()
1252 static void replaceOneDbgValueForAlloca(DbgValueInst *DVI, Value *NewAddress, in replaceOneDbgValueForAlloca() argument
1254 DebugLoc Loc = DVI->getDebugLoc(); in replaceOneDbgValueForAlloca()
1255 auto *DIVar = DVI->getVariable(); in replaceOneDbgValueForAlloca()
1256 auto *DIExpr = DVI->getExpression(); in replaceOneDbgValueForAlloca()
1276 Builder.insertDbgValueIntrinsic(NewAddress, DVI->getOffset(), DIVar, DIExpr, in replaceOneDbgValueForAlloca()
1277 Loc, DVI); in replaceOneDbgValueForAlloca()
1278 DVI->eraseFromParent(); in replaceOneDbgValueForAlloca()
1287 if (auto *DVI = dyn_cast<DbgValueInst>(U.getUser())) in replaceDbgValueForAlloca() local
1288 replaceOneDbgValueForAlloca(DVI, NewAllocaAddress, Builder, Offset); in replaceDbgValueForAlloca()