Lines Matching refs:Src
186 MachineOperand *Src, in moveOperands() argument
188 assert(Src != Dst && NumOps && "Noop moveOperands"); in moveOperands()
192 if (Dst >= Src && Dst < Src + NumOps) { in moveOperands()
195 Src += NumOps - 1; in moveOperands()
200 new (Dst) MachineOperand(*Src); in moveOperands()
203 if (Src->isReg()) { in moveOperands()
204 MachineOperand *&Head = getRegUseDefListHead(Src->getReg()); in moveOperands()
205 MachineOperand *Prev = Src->Contents.Reg.Prev; in moveOperands()
206 MachineOperand *Next = Src->Contents.Reg.Next; in moveOperands()
212 if (Src == Head) in moveOperands()
223 Src += Stride; in moveOperands()