Lines Matching refs:DPV
3172 for (DPValue *DPV : DPValues) // tested by transaction-test I'm adding in undo()
3173 DPV->replaceVariableLocationOp(New, Inst); in undo()
8453 for (DPValue &DPV : I.getDbgValueRange()) in fixupDPValuesOnInst()
8454 AnyChange |= fixupDPValue(DPV); in fixupDPValuesOnInst()
8460 bool CodeGenPrepare::fixupDPValue(DPValue &DPV) { in fixupDPValue() argument
8461 if (DPV.Type != DPValue::LocationType::Value) in fixupDPValue()
8466 SmallDenseSet<Value *> LocationOps(DPV.location_ops().begin(), in fixupDPValue()
8467 DPV.location_ops().end()); in fixupDPValue()
8477 DPV.replaceVariableLocationOp(Location, SunkAddr); in fixupDPValue()
8492 static void DbgInserterHelper(DPValue *DPV, Instruction *VI) { in DbgInserterHelper() argument
8493 DPV->removeFromParent(); in DbgInserterHelper()
8496 VIBB->insertDPValueBefore(DPV, VIBB->getFirstInsertionPt()); in DbgInserterHelper()
8498 VIBB->insertDPValueAfter(DPV, VI); in DbgInserterHelper()
8565 for (DPValue &DPV : llvm::make_early_inc_range(Insn.getDbgValueRange())) { in placeDbgValues()
8566 if (DPV.Type != DPValue::LocationType::Value) in placeDbgValues()
8568 DbgProcessor(&DPV, &Insn); in placeDbgValues()