Lines Matching defs:Amount
268 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
272 void Mips16InstrInfo::adjustStackPtrBig(unsigned SP, int64_t Amount,
285 MIB1.addImm(Amount).addImm(-1);
297 unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
302 /// Adjust SP by Amount bytes.
303 void Mips16InstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
306 if (Amount == 0)
309 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16>
310 BuildAddiuSpImm(MBB, I, Amount);
312 adjustStackPtrBigUnrestricted(SP, Amount, MBB, I);
468 int64_t Amount) {
480 return isInt<16>(Amount);
483 return isInt<16>(Amount);
484 return isInt<15>(Amount);