LLVM  8.0.1
AArch64FrameLowering.h
Go to the documentation of this file.
1 //==-- AArch64FrameLowering.h - TargetFrameLowering for AArch64 --*- C++ -*-==//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_LIB_TARGET_AARCH64_AARCH64FRAMELOWERING_H
15 #define LLVM_LIB_TARGET_AARCH64_AARCH64FRAMELOWERING_H
16 
18 
19 namespace llvm {
20 
22 public:
25  true /*StackRealignable*/) {}
26 
28  MachineBasicBlock::iterator MBBI) const;
29 
32  MachineBasicBlock::iterator I) const override;
33 
34  /// emitProlog/emitEpilog - These methods insert prolog and epilog code into
35  /// the function.
36  void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
37  void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
38 
39  bool canUseAsPrologue(const MachineBasicBlock &MBB) const override;
40 
41  int getFrameIndexReference(const MachineFunction &MF, int FI,
42  unsigned &FrameReg) const override;
43  int resolveFrameIndexReference(const MachineFunction &MF, int FI,
44  unsigned &FrameReg,
45  bool PreferFP = false) const;
48  const std::vector<CalleeSavedInfo> &CSI,
49  const TargetRegisterInfo *TRI) const override;
50 
53  std::vector<CalleeSavedInfo> &CSI,
54  const TargetRegisterInfo *TRI) const override;
55 
56  /// Can this function use the red zone for local allocations.
57  bool canUseRedZone(const MachineFunction &MF) const;
58 
59  bool hasFP(const MachineFunction &MF) const override;
60  bool hasReservedCallFrame(const MachineFunction &MF) const override;
61 
62  void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs,
63  RegScavenger *RS) const override;
64 
65  /// Returns true if the target will correctly handle shrink wrapping.
66  bool enableShrinkWrapping(const MachineFunction &MF) const override {
67  return true;
68  }
69 
70  bool enableStackSlotScavenging(const MachineFunction &MF) const override;
71 
73  RegScavenger *RS) const override;
74 
75  unsigned getWinEHParentFrameOffset(const MachineFunction &MF) const override;
76 
77  unsigned getWinEHFuncletFrameSize(const MachineFunction &MF) const;
78 
79  int getFrameIndexReferencePreferSP(const MachineFunction &MF, int FI,
80  unsigned &FrameReg,
81  bool IgnoreSPUpdates) const override;
82 
83 private:
84  bool shouldCombineCSRLocalStackBump(MachineFunction &MF,
85  unsigned StackBumpBytes) const;
86 };
87 
88 } // End llvm namespace
89 
90 #endif
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, std::vector< CalleeSavedInfo > &CSI, const TargetRegisterInfo *TRI) const override
restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee saved registers and returns...
This class represents lattice values for constants.
Definition: AllocatorList.h:24
bool enableShrinkWrapping(const MachineFunction &MF) const override
Returns true if the target will correctly handle shrink wrapping.
unsigned const TargetRegisterInfo * TRI
bool canUseRedZone(const MachineFunction &MF) const
Can this function use the red zone for local allocations.
block Block Frequency true
bool hasReservedCallFrame(const MachineFunction &MF) const override
hasReservedCallFrame - Under normal circumstances, when a frame pointer is not required, we reserve argument space for call sites in the function immediately on entry to the current function.
int getFrameIndexReference(const MachineFunction &MF, int FI, unsigned &FrameReg) const override
getFrameIndexReference - Provide a base+offset reference to an FI slot for debug info.
int getFrameIndexReferencePreferSP(const MachineFunction &MF, int FI, unsigned &FrameReg, bool IgnoreSPUpdates) const override
For Win64 AArch64 EH, the offset to the Unwind object is from the SP before the update.
bool canUseAsPrologue(const MachineBasicBlock &MBB) const override
Check whether or not the given MBB can be used as a prologue for the target.
unsigned getWinEHParentFrameOffset(const MachineFunction &MF) const override
The parent frame offset (aka dispFrame) is only used on X86_64 to retrieve the parent&#39;s frame pointer...
void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS) const override
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override
emitProlog/emitEpilog - These methods insert prolog and epilog code into the function.
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override
unsigned getWinEHFuncletFrameSize(const MachineFunction &MF) const
Funclets only need to account for space for the callee saved registers, as the locals are accounted f...
int resolveFrameIndexReference(const MachineFunction &MF, int FI, unsigned &FrameReg, bool PreferFP=false) const
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
void emitCalleeSavedFrameMoves(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI) const
Information about stack frame layout on the target.
bool enableStackSlotScavenging(const MachineFunction &MF) const override
Returns true if the stack slot holes in the fixed and callee-save stack area should be used when allo...
void processFunctionBeforeFrameFinalized(MachineFunction &MF, RegScavenger *RS) const override
processFunctionBeforeFrameFinalized - This method is called immediately before the specified function...
bool hasFP(const MachineFunction &MF) const override
hasFP - Return true if the specified function should have a dedicated frame pointer register...
#define I(x, y, z)
Definition: MD5.cpp:58
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const std::vector< CalleeSavedInfo > &CSI, const TargetRegisterInfo *TRI) const override
spillCalleeSavedRegisters - Issues instruction(s) to spill all callee saved registers and returns tru...
MachineBasicBlock::iterator eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator I) const override
This method is called during prolog/epilog code insertion to eliminate call frame setup and destroy p...
IRTranslator LLVM IR MI