Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMWinEH.h199 inline uint16_t StackAdjustment(const RuntimeFunction &RF) { in StackAdjustment() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp3310 int64_t StackAdjustment = isDestroy ? Amount : -Amount; in eliminateCallFramePseudoInstr() local
3312 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
3316 StackAdjustment += mergeSPUpdates(MBB, InsertPos, true); in eliminateCallFramePseudoInstr()
3317 StackAdjustment += mergeSPUpdates(MBB, InsertPos, false); in eliminateCallFramePseudoInstr()
3319 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
3321 adjustStackWithPops(MBB, InsertPos, DL, StackAdjustment))) in eliminateCallFramePseudoInstr()
3322 BuildStackAdjustment(MBB, InsertPos, DL, StackAdjustment, in eliminateCallFramePseudoInstr()
3335 int64_t CfaAdjustment = -StackAdjustment; in eliminateCallFramePseudoInstr()
H A DX86InstrInfo.cpp4579 int StackAdjustment; in ExpandMOVImmSExti8() local
4596 StackAdjustment = 8; in ExpandMOVImmSExti8()
4603 StackAdjustment = 4; in ExpandMOVImmSExti8()
4618 MCCFIInstruction::createAdjustCfaOffset(nullptr, StackAdjustment)); in ExpandMOVImmSExti8()
4620 MCCFIInstruction::createAdjustCfaOffset(nullptr, -StackAdjustment)); in ExpandMOVImmSExti8()
H A DX86ISelLowering.cpp34551 size_t StackAdjustment = MFI->getPreallocatedStackSize(PreallocatedId); in EmitInstrWithCustomInserter() local
34552 assert(StackAdjustment != 0 && "0 stack adjustment"); in EmitInstrWithCustomInserter()
34554 << StackAdjustment << "\n"); in EmitInstrWithCustomInserter()
34557 .addImm(StackAdjustment); in EmitInstrWithCustomInserter()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1121 SW.printNumber("StackAdjustment", StackAdjustment(RF) << 2); in dumpPackedEntry()