Fixed some bugs.
[llvm/zpu.git] / lib / Target / Mips / MipsRegisterInfo.h
blob89282f8fa1465e895e720573cf1d58783280811a
1 //===- MipsRegisterInfo.h - Mips 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 Mips implementation of the TargetRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef MIPSREGISTERINFO_H
15 #define MIPSREGISTERINFO_H
17 #include "Mips.h"
18 #include "llvm/Target/TargetRegisterInfo.h"
19 #include "MipsGenRegisterInfo.h.inc"
21 namespace llvm {
22 class MipsSubtarget;
23 class TargetInstrInfo;
24 class Type;
26 struct MipsRegisterInfo : public MipsGenRegisterInfo {
27 const MipsSubtarget &Subtarget;
28 const TargetInstrInfo &TII;
30 MipsRegisterInfo(const MipsSubtarget &Subtarget, const TargetInstrInfo &tii);
32 /// getRegisterNumbering - Given the enum value for some register, e.g.
33 /// Mips::RA, return the number that it corresponds to (e.g. 31).
34 static unsigned getRegisterNumbering(unsigned RegEnum);
36 /// Get PIC indirect call register
37 static unsigned getPICCallReg();
39 /// Adjust the Mips stack frame.
40 void adjustMipsStackFrame(MachineFunction &MF) const;
42 /// Code Generation virtual methods...
43 const unsigned *getCalleeSavedRegs(const MachineFunction* MF = 0) const;
45 BitVector getReservedRegs(const MachineFunction &MF) const;
47 bool hasFP(const MachineFunction &MF) const;
49 void eliminateCallFramePseudoInstr(MachineFunction &MF,
50 MachineBasicBlock &MBB,
51 MachineBasicBlock::iterator I) const;
53 /// Stack Frame Processing Methods
54 void eliminateFrameIndex(MachineBasicBlock::iterator II,
55 int SPAdj, RegScavenger *RS = NULL) const;
57 void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
59 void emitPrologue(MachineFunction &MF) const;
60 void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
62 /// Debug information queries.
63 unsigned getRARegister() const;
64 unsigned getFrameRegister(const MachineFunction &MF) const;
66 /// Exception handling queries.
67 unsigned getEHExceptionRegister() const;
68 unsigned getEHHandlerRegister() const;
70 int getDwarfRegNum(unsigned RegNum, bool isEH) const;
73 } // end namespace llvm
75 #endif