LLVM 19.0.0git
SystemZFrameLowering.h
Go to the documentation of this file.
1//===-- SystemZFrameLowering.h - Frame lowering for SystemZ -----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZFRAMELOWERING_H
10#define LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZFRAMELOWERING_H
11
13#include "SystemZInstrBuilder.h"
15#include "llvm/ADT/IndexedMap.h"
18
19namespace llvm {
20class SystemZSubtarget;
21
23public:
24 SystemZFrameLowering(StackDirection D, Align StackAl, int LAO, Align TransAl,
25 bool StackReal);
26
27 static std::unique_ptr<SystemZFrameLowering>
28 create(const SystemZSubtarget &STI);
29
30 // Override TargetFrameLowering.
32 const MachineFunction &MF) const override {
33 // SystemZ wants normal register scavenging slots, as close to the stack or
34 // frame pointer as possible.
35 // The default implementation assumes an x86-like layout, where the frame
36 // pointer is at the opposite end of the frame from the stack pointer.
37 // This meant that when frame pointer elimination was disabled,
38 // the slots ended up being as close as possible to the incoming
39 // stack pointer, which is the opposite of what we want on SystemZ.
40 return false;
41 }
42
43 bool hasReservedCallFrame(const MachineFunction &MF) const override;
44};
45
47 IndexedMap<unsigned> RegSpillOffsets;
48
49public:
51
52 // Override TargetFrameLowering.
53 bool
56 std::vector<CalleeSavedInfo> &CSI) const override;
58 RegScavenger *RS) const override;
62 const TargetRegisterInfo *TRI) const override;
63 bool
67 const TargetRegisterInfo *TRI) const override;
69 RegScavenger *RS) const override;
70 void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
71 void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
73 MachineBasicBlock &PrologMBB) const override;
74 bool hasFP(const MachineFunction &MF) const override;
76 Register &FrameReg) const override;
77 void
79 SmallVectorImpl<int> &ObjectsToAllocate) const override;
80
81 // Return the byte offset from the incoming stack pointer of Reg's
82 // ABI-defined save slot. Return 0 if no slot is defined for Reg. Adjust
83 // the offset in case MF has packed-stack.
84 unsigned getRegSpillOffset(MachineFunction &MF, Register Reg) const;
85
86 bool usePackedStack(MachineFunction &MF) const;
87
88 // Return the offset of the backchain.
89 unsigned getBackchainOffset(MachineFunction &MF) const {
90 // The back chain is stored topmost with packed-stack.
92 }
93
94 // Get or create the frame index of where the old frame pointer is stored.
96};
97
99 IndexedMap<unsigned> RegSpillOffsets;
100
101public:
103
104 bool
106 const TargetRegisterInfo *TRI,
107 std::vector<CalleeSavedInfo> &CSI) const override;
108
110 RegScavenger *RS) const override;
111
115 const TargetRegisterInfo *TRI) const override;
116
117 bool
121 const TargetRegisterInfo *TRI) const override;
122
123 void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
124
125 void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
126
128 MachineBasicBlock &PrologMBB) const override;
129
130 bool hasFP(const MachineFunction &MF) const override;
131
133 RegScavenger *RS) const override;
134
136};
137} // end namespace llvm
138
139#endif
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator MBBI
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
This file implements an indexed map.
unsigned const TargetRegisterInfo * TRI
unsigned Reg
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition: ArrayRef.h:307
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:586
StackOffset holds a fixed and a scalable offset in bytes.
Definition: TypeSize.h:33
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBII, MutableArrayRef< CalleeSavedInfo > CSI, const TargetRegisterInfo *TRI) const override
restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee saved registers and returns...
void orderFrameObjects(const MachineFunction &MF, SmallVectorImpl< int > &ObjectsToAllocate) const override
Order the symbols in the local stack frame.
bool assignCalleeSavedSpillSlots(MachineFunction &MF, const TargetRegisterInfo *TRI, std::vector< CalleeSavedInfo > &CSI) const override
void inlineStackProbe(MachineFunction &MF, MachineBasicBlock &PrologMBB) const override
Replace a StackProbe stub (if any) with the actual probe code inline.
bool hasFP(const MachineFunction &MF) const override
hasFP - Return true if the specified function should have a dedicated frame pointer register.
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override
emitProlog/emitEpilog - These methods insert prolog and epilog code into the function.
unsigned getBackchainOffset(MachineFunction &MF) const
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override
StackOffset getFrameIndexReference(const MachineFunction &MF, int FI, Register &FrameReg) const override
getFrameIndexReference - This method should return the base register and offset used to reference a f...
bool usePackedStack(MachineFunction &MF) const
void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS) const override
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, ArrayRef< CalleeSavedInfo > CSI, const TargetRegisterInfo *TRI) const override
spillCalleeSavedRegisters - Issues instruction(s) to spill all callee saved registers and returns tru...
unsigned getRegSpillOffset(MachineFunction &MF, Register Reg) const
void processFunctionBeforeFrameFinalized(MachineFunction &MF, RegScavenger *RS) const override
processFunctionBeforeFrameFinalized - This method is called immediately before the specified function...
int getOrCreateFramePointerSaveIndex(MachineFunction &MF) const
bool hasReservedCallFrame(const MachineFunction &MF) const override
hasReservedCallFrame - Under normal circumstances, when a frame pointer is not required,...
static std::unique_ptr< SystemZFrameLowering > create(const SystemZSubtarget &STI)
bool allocateScavengingFrameIndexesNearIncomingSP(const MachineFunction &MF) const override
Control the placement of special register scavenging spill slots when allocating a stack frame.
void inlineStackProbe(MachineFunction &MF, MachineBasicBlock &PrologMBB) const override
Replace a StackProbe stub (if any) with the actual probe code inline.
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBII, MutableArrayRef< CalleeSavedInfo > CSI, const TargetRegisterInfo *TRI) const override
restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee saved registers and returns...
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override
emitProlog/emitEpilog - These methods insert prolog and epilog code into the function.
void determineFrameLayout(MachineFunction &MF) const
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, ArrayRef< CalleeSavedInfo > CSI, const TargetRegisterInfo *TRI) const override
spillCalleeSavedRegisters - Issues instruction(s) to spill all callee saved registers and returns tru...
bool hasFP(const MachineFunction &MF) const override
hasFP - Return true if the specified function should have a dedicated frame pointer register.
void processFunctionBeforeFrameFinalized(MachineFunction &MF, RegScavenger *RS) const override
processFunctionBeforeFrameFinalized - This method is called immediately before the specified function...
void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS) const override
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
bool assignCalleeSavedSpillSlots(MachineFunction &MF, const TargetRegisterInfo *TRI, std::vector< CalleeSavedInfo > &CSI) const override
Information about stack frame layout on the target.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
const int64_t ELFCallFrameSize
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39