Add call frame setup instruction elimination and lowerid for bunch of call-related...
[llvm/msp430.git] / lib / Target / MSP430 / MSP430RegisterInfo.h
blob0dc061c67421c232ec83486246de0a5d65468be1
1 //===- MSP430RegisterInfo.h - MSP430 Register Information Impl --*- 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 the MSP430 implementation of the MRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TARGET_MSP430REGISTERINFO_H
15 #define LLVM_TARGET_MSP430REGISTERINFO_H
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "MSP430GenRegisterInfo.h.inc"
20 namespace llvm {
22 class TargetInstrInfo;
23 class MSP430TargetMachine;
25 struct MSP430RegisterInfo : public MSP430GenRegisterInfo {
26 private:
27 MSP430TargetMachine &TM;
28 const TargetInstrInfo &TII;
30 /// StackAlign - Default stack alignment.
31 ///
32 unsigned StackAlign;
33 public:
34 MSP430RegisterInfo(MSP430TargetMachine &tm, const TargetInstrInfo &tii);
36 /// Code Generation virtual methods...
37 const unsigned *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
39 const TargetRegisterClass* const*
40 getCalleeSavedRegClasses(const MachineFunction *MF = 0) const;
42 BitVector getReservedRegs(const MachineFunction &MF) const;
44 bool hasFP(const MachineFunction &MF) const;
45 bool hasReservedCallFrame(MachineFunction &MF) const;
47 void eliminateCallFramePseudoInstr(MachineFunction &MF,
48 MachineBasicBlock &MBB,
49 MachineBasicBlock::iterator I) const;
51 void eliminateFrameIndex(MachineBasicBlock::iterator II,
52 int SPAdj, RegScavenger *RS = NULL) const;
54 void emitPrologue(MachineFunction &MF) const;
55 void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
57 // Debug information queries.
58 unsigned getRARegister() const;
59 unsigned getFrameRegister(MachineFunction &MF) const;
61 //! Get DWARF debugging register number
62 int getDwarfRegNum(unsigned RegNum, bool isEH) const;
65 } // end namespace llvm
67 #endif // LLVM_TARGET_MSP430REGISTERINFO_H