Home | History | Annotate | Download | only in X86

Lines Matching refs:Amount

1987   uint64_t Amount = !reserveCallFrame ? I->getOperand(0).getImm() : 0;
1988 uint64_t InternalAmt = (isDestroy || Amount) ? I->getOperand(1).getImm() : 0;
1995 if (Amount == 0)
1999 // amount of space needed for the outgoing arguments up to the next
2002 Amount = RoundUpToAlignment(Amount, StackAlign);
2006 // Factor out the amount that gets handled inside the sequence
2008 Amount -= InternalAmt;
2010 if (Amount) {
2012 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(IsLP64, Amount)), StackPtr)
2013 .addReg(StackPtr).addImm(Amount);
2017 unsigned Opc = getADDriOpcode(IsLP64, Amount);
2019 .addReg(StackPtr).addImm(Amount);