Lines Matching refs:Orig
2262 const MachineInstr &Orig, in buildDbgValueForSpill() argument
2264 assert(!Orig.isDebugRef() && in buildDbgValueForSpill()
2266 const DIExpression *Expr = computeExprForSpill(Orig, SpillReg); in buildDbgValueForSpill()
2268 BuildMI(BB, I, Orig.getDebugLoc(), Orig.getDesc()); in buildDbgValueForSpill()
2271 if (Orig.isNonListDebugValue()) in buildDbgValueForSpill()
2273 NewMI.addMetadata(Orig.getDebugVariable()).addMetadata(Expr); in buildDbgValueForSpill()
2274 if (Orig.isDebugValueList()) { in buildDbgValueForSpill()
2275 for (const MachineOperand &Op : Orig.debug_operands()) in buildDbgValueForSpill()
2285 const MachineInstr &Orig, int FrameIndex, in buildDbgValueForSpill() argument
2287 const DIExpression *Expr = computeExprForSpill(Orig, SpilledOperands); in buildDbgValueForSpill()
2289 BuildMI(BB, I, Orig.getDebugLoc(), Orig.getDesc()); in buildDbgValueForSpill()
2292 if (Orig.isNonListDebugValue()) in buildDbgValueForSpill()
2294 NewMI.addMetadata(Orig.getDebugVariable()).addMetadata(Expr); in buildDbgValueForSpill()
2295 if (Orig.isDebugValueList()) { in buildDbgValueForSpill()
2296 for (const MachineOperand &Op : Orig.debug_operands()) in buildDbgValueForSpill()
2305 void llvm::updateDbgValueForSpill(MachineInstr &Orig, int FrameIndex, in updateDbgValueForSpill() argument
2307 const DIExpression *Expr = computeExprForSpill(Orig, Reg); in updateDbgValueForSpill()
2308 if (Orig.isNonListDebugValue()) in updateDbgValueForSpill()
2309 Orig.getDebugOffset().ChangeToImmediate(0U); in updateDbgValueForSpill()
2310 for (MachineOperand &Op : Orig.getDebugOperandsForReg(Reg)) in updateDbgValueForSpill()
2312 Orig.getDebugExpressionOp().setMetadata(Expr); in updateDbgValueForSpill()