Add call frame setup instruction elimination and lowerid for bunch of call-related...
[llvm/msp430.git] / lib / Target / Sparc / SparcRegisterInfo.h
blobfc863f3b28f00a58ed1ee7ced7ca2e8d706a5bcf
1 //===- SparcRegisterInfo.h - Sparc 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 Sparc implementation of the TargetRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef SPARCREGISTERINFO_H
15 #define SPARCREGISTERINFO_H
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "SparcGenRegisterInfo.h.inc"
20 namespace llvm {
22 class SparcSubtarget;
23 class TargetInstrInfo;
24 class Type;
26 struct SparcRegisterInfo : public SparcGenRegisterInfo {
27 SparcSubtarget &Subtarget;
28 const TargetInstrInfo &TII;
30 SparcRegisterInfo(SparcSubtarget &st, const TargetInstrInfo &tii);
32 /// Code Generation virtual methods...
33 const unsigned *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
35 const TargetRegisterClass* const* getCalleeSavedRegClasses(
36 const MachineFunction *MF = 0) const;
38 BitVector getReservedRegs(const MachineFunction &MF) const;
40 bool hasFP(const MachineFunction &MF) const;
42 void eliminateCallFramePseudoInstr(MachineFunction &MF,
43 MachineBasicBlock &MBB,
44 MachineBasicBlock::iterator I) const;
46 void eliminateFrameIndex(MachineBasicBlock::iterator II,
47 int SPAdj, RegScavenger *RS = NULL) const;
49 void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
51 void emitPrologue(MachineFunction &MF) const;
52 void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
54 // Debug information queries.
55 unsigned getRARegister() const;
56 unsigned getFrameRegister(MachineFunction &MF) const;
58 // Exception handling queries.
59 unsigned getEHExceptionRegister() const;
60 unsigned getEHHandlerRegister() const;
62 int getDwarfRegNum(unsigned RegNum, bool isEH) const;
65 } // end namespace llvm
67 #endif