Lines Matching full:amount
523 uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
532 if (Amount == 0)
536 // amount of space needed for the outgoing arguments up to the next
539 Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
543 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(Is64Bit, Amount)),
546 .addImm(Amount);
550 // Factor out the amount the callee already popped.
551 Amount -= CalleeAmt;
553 if (Amount) {
554 unsigned Opc = getADDriOpcode(Is64Bit, Amount);
556 .addReg(StackPtr).addImm(Amount);