Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DARMWinEH.h199 inline uint16_t StackAdjustment(const RuntimeFunction &RF) { in StackAdjustment() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp3294 int64_t StackAdjustment = isDestroy ? Amount : -Amount; in eliminateCallFramePseudoInstr() local
3296 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
3300 StackAdjustment += mergeSPUpdates(MBB, InsertPos, true); in eliminateCallFramePseudoInstr()
3301 StackAdjustment += mergeSPUpdates(MBB, InsertPos, false); in eliminateCallFramePseudoInstr()
3303 if (StackAdjustment) { in eliminateCallFramePseudoInstr()
3305 adjustStackWithPops(MBB, InsertPos, DL, StackAdjustment))) in eliminateCallFramePseudoInstr()
3306 BuildStackAdjustment(MBB, InsertPos, DL, StackAdjustment, in eliminateCallFramePseudoInstr()
3319 int64_t CfaAdjustment = -StackAdjustment; in eliminateCallFramePseudoInstr()
H A DX86InstrInfo.cpp4525 int StackAdjustment; in ExpandMOVImmSExti8() local
4542 StackAdjustment = 8; in ExpandMOVImmSExti8()
4549 StackAdjustment = 4; in ExpandMOVImmSExti8()
4564 MCCFIInstruction::createAdjustCfaOffset(nullptr, StackAdjustment)); in ExpandMOVImmSExti8()
4566 MCCFIInstruction::createAdjustCfaOffset(nullptr, -StackAdjustment)); in ExpandMOVImmSExti8()
H A DX86ISelLowering.cpp34358 size_t StackAdjustment = MFI->getPreallocatedStackSize(PreallocatedId); in EmitInstrWithCustomInserter() local
34359 assert(StackAdjustment != 0 && "0 stack adjustment"); in EmitInstrWithCustomInserter()
34361 << StackAdjustment << "\n"); in EmitInstrWithCustomInserter()
34364 .addImm(StackAdjustment); in EmitInstrWithCustomInserter()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1121 SW.printNumber("StackAdjustment", StackAdjustment(RF) << 2); in dumpPackedEntry()