Lines Matching full:amount
399 uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
408 if (Amount == 0)
412 // amount of space needed for the outgoing arguments up to the next
415 Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
419 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(Is64Bit, Amount)),
422 .addImm(Amount);
426 // Factor out the amount the callee already popped.
427 Amount -= CalleeAmt;
429 if (Amount) {
430 unsigned Opc = getADDriOpcode(Is64Bit, Amount);
432 .addReg(StackPtr).addImm(Amount);