Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchFrameLowering.cpp210 uint64_t SecondSPAdjustAmount = RealStackSize - FirstSPAdjustAmount; in emitPrologue() local
217 if (FirstSPAdjustAmount != 2048 || SecondSPAdjustAmount == 0) { in emitPrologue()
261 if (FirstSPAdjustAmount && SecondSPAdjustAmount) { in emitPrologue()
263 assert(SecondSPAdjustAmount > 0 && in emitPrologue()
265 adjustReg(MBB, MBBI, DL, SPReg, SPReg, -SecondSPAdjustAmount, in emitPrologue()
273 for (int Val = SecondSPAdjustAmount; Val > 0; Val -= 2048) in emitPrologue()
351 uint64_t SecondSPAdjustAmount = StackSize - FirstSPAdjustAmount; in emitEpilogue() local
352 assert(SecondSPAdjustAmount > 0 && in emitEpilogue()
355 adjustReg(MBB, LastFrameDestroy, DL, SPReg, SPReg, SecondSPAdjustAmount, in emitEpilogue()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFrameLowering.cpp627 uint64_t SecondSPAdjustAmount = in emitPrologue() local
629 assert(SecondSPAdjustAmount > 0 && in emitPrologue()
632 StackOffset::getFixed(-SecondSPAdjustAmount), in emitPrologue()
768 uint64_t SecondSPAdjustAmount = in emitEpilogue() local
770 assert(SecondSPAdjustAmount > 0 && in emitEpilogue()
774 StackOffset::getFixed(SecondSPAdjustAmount), in emitEpilogue()