1 //===- MipsRegisterInfo.h - Mips Register Information Impl ------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the Mips implementation of the TargetRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef MIPSREGISTERINFO_H
15 #define MIPSREGISTERINFO_H
18 #include "llvm/Target/TargetRegisterInfo.h"
19 #include "MipsGenRegisterInfo.h.inc"
23 class TargetInstrInfo
;
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