Home
last modified time | relevance | path

Searched refs:StackAdjustment (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/M68k/
H A DM68kFrameLowering.cpp283 int64_t StackAdjustment = IsDestroy ? Amount : -Amount; in eliminateCallFramePseudoInstr() local
284 int64_t CfaAdjustment = -StackAdjustment; in eliminateCallFramePseudoInstr()
286 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
290 StackAdjustment += mergeSPUpdates(MBB, I, true); in eliminateCallFramePseudoInstr()
291 StackAdjustment += mergeSPUpdates(MBB, I, false); in eliminateCallFramePseudoInstr()
293 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
294 BuildStackAdjustment(MBB, I, DL, StackAdjustment, false); in eliminateCallFramePseudoInstr()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1146 SW.printNumber("StackAdjustment", StackAdjustment(RF) << 2); in dumpPackedEntry()
1154 if (StackAdjustment(RF) && !PrologueFolding(RF)) in dumpPackedEntry()
1155 SW.startLine() << "sub sp, sp, #" << StackAdjustment(RF) * 4 << "\n"; in dumpPackedEntry()
1184 if (StackAdjustment(RF) && !EpilogueFolding(RF)) in dumpPackedEntry()
1185 SW.startLine() << "add sp, sp, #" << StackAdjustment(RF) * 4 << "\n"; in dumpPackedEntry()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DARMWinEH.h199 inline uint16_t StackAdjustment(const RuntimeFunction &RF) { in StackAdjustment() function
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp3457 int64_t StackAdjustment = isDestroy ? Amount : -Amount; in eliminateCallFramePseudoInstr() local
3459 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
3463 StackAdjustment += mergeSPUpdates(MBB, InsertPos, true); in eliminateCallFramePseudoInstr()
3464 StackAdjustment += mergeSPUpdates(MBB, InsertPos, false); in eliminateCallFramePseudoInstr()
3466 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
3468 adjustStackWithPops(MBB, InsertPos, DL, StackAdjustment))) in eliminateCallFramePseudoInstr()
3469 BuildStackAdjustment(MBB, InsertPos, DL, StackAdjustment, in eliminateCallFramePseudoInstr()
3482 int64_t CfaAdjustment = -StackAdjustment; in eliminateCallFramePseudoInstr()
H A DX86InstrInfo.cpp4731 int StackAdjustment; in ExpandMOVImmSExti8() local
4748 StackAdjustment = 8; in ExpandMOVImmSExti8()
4755 StackAdjustment = 4; in ExpandMOVImmSExti8()
4770 MCCFIInstruction::createAdjustCfaOffset(nullptr, StackAdjustment)); in ExpandMOVImmSExti8()
4772 MCCFIInstruction::createAdjustCfaOffset(nullptr, -StackAdjustment)); in ExpandMOVImmSExti8()
H A DX86ISelLowering.cpp36574 size_t StackAdjustment = MFI->getPreallocatedStackSize(PreallocatedId); in EmitInstrWithCustomInserter() local
36575 assert(StackAdjustment != 0 && "0 stack adjustment"); in EmitInstrWithCustomInserter()
36577 << StackAdjustment << "\n"); in EmitInstrWithCustomInserter()
36580 .addImm(StackAdjustment); in EmitInstrWithCustomInserter()