Home | History | Annotate | Download | only in X86

Lines Matching refs:Amount

499   // We need to exit with RSP modified by this amount and execute suitable
1434 // This is the amount of stack a funclet needs to allocate.
2488 uint64_t Amount = !reserveCallFrame ? I->getOperand(0).getImm() : 0;
2489 uint64_t InternalAmt = (isDestroy || Amount) ? I->getOperand(1).getImm() : 0;
2498 // amount of space needed for the outgoing arguments up to the next
2501 Amount = RoundUpToAlignment(Amount, StackAlign);
2512 // Amount == 0, because the preceding function may have set a non-0
2522 MCCFIInstruction::createGnuArgsSize(nullptr, Amount));
2524 if (Amount == 0)
2527 // Factor out the amount that gets handled inside the sequence
2529 Amount -= InternalAmt;
2533 // the amount the callee popped.
2538 if (Amount) {
2539 // Add Amount to SP to destroy a frame, and subtract to setup.
2540 int Offset = isDestroy ? Amount : -Amount;
2554 int CFAOffset = Amount;