Home | History | Annotate | Download | only in X86

Lines Matching refs:Amount

454   uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
463 if (Amount == 0)
467 // amount of space needed for the outgoing arguments up to the next
470 Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
474 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(Is64Bit, Amount)),
477 .addImm(Amount);
481 // Factor out the amount the callee already popped.
482 Amount -= CalleeAmt;
484 if (Amount) {
485 unsigned Opc = getADDriOpcode(Is64Bit, Amount);
487 .addReg(StackPtr).addImm(Amount);