Home
last modified time | relevance | path

Searched refs:SecondSPAdjustAmount (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchFrameLowering.cpp265 uint64_t SecondSPAdjustAmount = RealStackSize - FirstSPAdjustAmount; in emitPrologue() local
266 assert(SecondSPAdjustAmount > 0 && in emitPrologue()
268 adjustReg(MBB, MBBI, DL, SPReg, SPReg, -SecondSPAdjustAmount, in emitPrologue()
343 uint64_t SecondSPAdjustAmount = StackSize - FirstSPAdjustAmount; in emitEpilogue() local
344 assert(SecondSPAdjustAmount > 0 && in emitEpilogue()
347 adjustReg(MBB, LastFrameDestroy, DL, SPReg, SPReg, SecondSPAdjustAmount, in emitEpilogue()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFrameLowering.cpp1077 uint64_t SecondSPAdjustAmount = 0; in emitPrologue() local
1080 SecondSPAdjustAmount = getStackSizeWithRVVPadding(MF) - FirstSPAdjustAmount; in emitPrologue()
1081 assert(SecondSPAdjustAmount > 0 && in emitPrologue()
1084 allocateStack(MBB, MBBI, MF, SecondSPAdjustAmount, in emitPrologue()
1140 if (SecondSPAdjustAmount < ProbeSize && in emitPrologue()
1141 SecondSPAdjustAmount + MaxAlignment.value() >= ProbeSize) { in emitPrologue()
1244 uint64_t SecondSPAdjustAmount = in emitEpilogue() local
1246 assert(SecondSPAdjustAmount > 0 && in emitEpilogue()
1253 StackOffset::getFixed(SecondSPAdjustAmount), in emitEpilogue()