Lines Matching refs:Orig
2332 const MachineInstr &Orig, in buildDbgValueForSpill() argument
2334 assert(!Orig.isDebugRef() && in buildDbgValueForSpill()
2336 const DIExpression *Expr = computeExprForSpill(Orig, SpillReg); in buildDbgValueForSpill()
2338 BuildMI(BB, I, Orig.getDebugLoc(), Orig.getDesc()); in buildDbgValueForSpill()
2341 if (Orig.isNonListDebugValue()) in buildDbgValueForSpill()
2343 NewMI.addMetadata(Orig.getDebugVariable()).addMetadata(Expr); in buildDbgValueForSpill()
2344 if (Orig.isDebugValueList()) { in buildDbgValueForSpill()
2345 for (const MachineOperand &Op : Orig.debug_operands()) in buildDbgValueForSpill()
2355 const MachineInstr &Orig, int FrameIndex, in buildDbgValueForSpill() argument
2357 const DIExpression *Expr = computeExprForSpill(Orig, SpilledOperands); in buildDbgValueForSpill()
2359 BuildMI(BB, I, Orig.getDebugLoc(), Orig.getDesc()); in buildDbgValueForSpill()
2362 if (Orig.isNonListDebugValue()) in buildDbgValueForSpill()
2364 NewMI.addMetadata(Orig.getDebugVariable()).addMetadata(Expr); in buildDbgValueForSpill()
2365 if (Orig.isDebugValueList()) { in buildDbgValueForSpill()
2366 for (const MachineOperand &Op : Orig.debug_operands()) in buildDbgValueForSpill()
2375 void llvm::updateDbgValueForSpill(MachineInstr &Orig, int FrameIndex, in updateDbgValueForSpill() argument
2377 const DIExpression *Expr = computeExprForSpill(Orig, Reg); in updateDbgValueForSpill()
2378 if (Orig.isNonListDebugValue()) in updateDbgValueForSpill()
2379 Orig.getDebugOffset().ChangeToImmediate(0U); in updateDbgValueForSpill()
2380 for (MachineOperand &Op : Orig.getDebugOperandsForReg(Reg)) in updateDbgValueForSpill()
2382 Orig.getDebugExpressionOp().setMetadata(Expr); in updateDbgValueForSpill()