Lines Matching defs:Amount
558 /// Adjust SP by Amount bytes.
559 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
566 if (Amount == 0)
569 if (isInt<16>(Amount)) {
571 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
573 // For numbers which are not 16bit integers we synthesize Amount inline
576 if (Amount < 0) {
578 Amount = -Amount;
580 unsigned Reg = loadImmediate(Amount, MBB, I, DL, nullptr);