Lines Matching refs:Orig

2174                                           const MachineInstr &Orig,  in buildDbgValueForSpill()  argument
2176 const DIExpression *Expr = computeExprForSpill(Orig, SpillReg); in buildDbgValueForSpill()
2178 BuildMI(BB, I, Orig.getDebugLoc(), Orig.getDesc()); in buildDbgValueForSpill()
2181 if (Orig.isNonListDebugValue()) in buildDbgValueForSpill()
2183 NewMI.addMetadata(Orig.getDebugVariable()).addMetadata(Expr); in buildDbgValueForSpill()
2184 if (Orig.isDebugValueList()) { in buildDbgValueForSpill()
2185 for (const MachineOperand &Op : Orig.debug_operands()) in buildDbgValueForSpill()
2195 const MachineInstr &Orig, int FrameIndex, in buildDbgValueForSpill() argument
2197 const DIExpression *Expr = computeExprForSpill(Orig, SpilledOperands); in buildDbgValueForSpill()
2199 BuildMI(BB, I, Orig.getDebugLoc(), Orig.getDesc()); in buildDbgValueForSpill()
2202 if (Orig.isNonListDebugValue()) in buildDbgValueForSpill()
2204 NewMI.addMetadata(Orig.getDebugVariable()).addMetadata(Expr); in buildDbgValueForSpill()
2205 if (Orig.isDebugValueList()) { in buildDbgValueForSpill()
2206 for (const MachineOperand &Op : Orig.debug_operands()) in buildDbgValueForSpill()
2215 void llvm::updateDbgValueForSpill(MachineInstr &Orig, int FrameIndex, in updateDbgValueForSpill() argument
2217 const DIExpression *Expr = computeExprForSpill(Orig, Reg); in updateDbgValueForSpill()
2218 if (Orig.isNonListDebugValue()) in updateDbgValueForSpill()
2219 Orig.getDebugOffset().ChangeToImmediate(0U); in updateDbgValueForSpill()
2220 for (MachineOperand &Op : Orig.getDebugOperandsForReg(Reg)) in updateDbgValueForSpill()
2222 Orig.getDebugExpressionOp().setMetadata(Expr); in updateDbgValueForSpill()