Lines Matching full:amount
271 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
275 void Mips16InstrInfo::adjustStackPtrBig(unsigned SP, int64_t Amount,
288 MIB1.addImm(Amount).addImm(-1);
300 unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
302 llvm_unreachable("adjust stack pointer amount exceeded");
305 /// Adjust SP by Amount bytes.
306 void Mips16InstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
309 if (Amount == 0)
312 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16>
313 BuildAddiuSpImm(MBB, I, Amount);
315 adjustStackPtrBigUnrestricted(SP, Amount, MBB, I);
471 int64_t Amount) {
483 return isInt<16>(Amount);
486 return isInt<16>(Amount);
487 return isInt<15>(Amount);