Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1295 SW.printNumber("StackAdjustment", StackAdjustment(RF) << 2); in dumpPackedEntry()
1303 if (StackAdjustment(RF) && !PrologueFolding(RF)) in dumpPackedEntry()
1304 SW.startLine() << "sub sp, sp, #" << StackAdjustment(RF) * 4 << "\n"; in dumpPackedEntry()
1333 if (StackAdjustment(RF) && !EpilogueFolding(RF)) in dumpPackedEntry()
1334 SW.startLine() << "add sp, sp, #" << StackAdjustment(RF) * 4 << "\n"; in dumpPackedEntry()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp731 uint64_t StackAdjustment = StackProbeSize - AlignOffset; in emitStackProbeInlineGenericBlock() local
732 BuildStackAdjustment(MBB, MBBI, DL, -StackAdjustment, /*InEpilogue=*/false) in emitStackProbeInlineGenericBlock()
737 MCCFIInstruction::createAdjustCfaOffset(nullptr, StackAdjustment)); in emitStackProbeInlineGenericBlock()
3850 int64_t StackAdjustment = isDestroy ? Amount : -Amount; in eliminateCallFramePseudoInstr() local
3851 int64_t CfaAdjustment = StackAdjustment; in eliminateCallFramePseudoInstr()
3853 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
3862 auto CalcNewOffset = [&StackAdjustment](int64_t Offset) { in eliminateCallFramePseudoInstr()
3863 return StackAdjustment + Offset; in eliminateCallFramePseudoInstr()
3865 StackAdjustment = in eliminateCallFramePseudoInstr()
3867 StackAdjustment = in eliminateCallFramePseudoInstr()
[all …]
H A DX86InstrInfo.cpp5987 int StackAdjustment; in ExpandMOVImmSExti8() local
6005 StackAdjustment = 8; in ExpandMOVImmSExti8()
6011 StackAdjustment = 4; in ExpandMOVImmSExti8()
6027 MCCFIInstruction::createAdjustCfaOffset(nullptr, StackAdjustment)); in ExpandMOVImmSExti8()
6030 MCCFIInstruction::createAdjustCfaOffset(nullptr, -StackAdjustment)); in ExpandMOVImmSExti8()
H A DX86ISelLowering.cpp38098 size_t StackAdjustment = MFI->getPreallocatedStackSize(PreallocatedId); in EmitInstrWithCustomInserter() local
38099 assert(StackAdjustment != 0 && "0 stack adjustment"); in EmitInstrWithCustomInserter()
38101 << StackAdjustment << "\n"); in EmitInstrWithCustomInserter()
38104 .addImm(StackAdjustment); in EmitInstrWithCustomInserter()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMWinEH.h200 inline uint16_t StackAdjustment(const RuntimeFunction &RF) { in StackAdjustment() function
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp2847 int64_t StackAdjustment = getTok().getIntVal(); in parseZcmpStackAdj() local
2857 if (Negative != ExpectNegative || StackAdjustment % 16 != 0 || in parseZcmpStackAdj()
2858 StackAdjustment < StackAdjBase || (StackAdjustment - StackAdjBase) > 48) { in parseZcmpStackAdj()
2871 unsigned StackAdj = (StackAdjustment - StackAdjBase); in parseZcmpStackAdj()