LLVM  8.0.1
XCoreFrameLowering.h
Go to the documentation of this file.
1 //===-- XCoreFrameLowering.h - Frame info for XCore Target ------*- 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 // This file contains XCore frame information that doesn't fit anywhere else
11 // cleanly...
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_LIB_TARGET_XCORE_XCOREFRAMELOWERING_H
16 #define LLVM_LIB_TARGET_XCORE_XCOREFRAMELOWERING_H
17 
20 
21 namespace llvm {
22  class XCoreSubtarget;
23 
25  public:
27 
28  /// emitProlog/emitEpilog - These methods insert prolog and epilog code into
29  /// the function.
31  MachineBasicBlock &MBB) const override;
33  MachineBasicBlock &MBB) const override;
34 
37  const std::vector<CalleeSavedInfo> &CSI,
38  const TargetRegisterInfo *TRI) const override;
41  std::vector<CalleeSavedInfo> &CSI,
42  const TargetRegisterInfo *TRI) const override;
43 
46  MachineBasicBlock::iterator I) const override;
47 
48  bool hasFP(const MachineFunction &MF) const override;
49 
50  void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs,
51  RegScavenger *RS = nullptr) const override;
52 
54  RegScavenger *RS = nullptr) const override;
55 
56  //! Stack slot size (4 bytes)
57  static int stackSlotSize() {
58  return 4;
59  }
60  };
61 }
62 
63 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
XCoreFrameLowering(const XCoreSubtarget &STI)
unsigned const TargetRegisterInfo * TRI
static int stackSlotSize()
Stack slot size (4 bytes)
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...
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override
emitProlog/emitEpilog - These methods insert prolog and epilog code into the function.
bool hasFP(const MachineFunction &MF) const override
hasFP - Return true if the specified function should have a dedicated frame pointer register...
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS=nullptr) const override
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
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...
Information about stack frame layout on the target.
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...
void processFunctionBeforeFrameFinalized(MachineFunction &MF, RegScavenger *RS=nullptr) const override
processFunctionBeforeFrameFinalized - This method is called immediately before the specified function...
#define I(x, y, z)
Definition: MD5.cpp:58
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override
IRTranslator LLVM IR MI