Proper name 16 bit libcalls
[llvm/msp430.git] / lib / Target / ARM / ARMRegisterInfo.h
blobe1d9efbcabf720c451d63d709d902fdb50948d1f
1 //===- ARMRegisterInfo.h - ARM 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 ARM implementation of the TargetRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef ARMREGISTERINFO_H
15 #define ARMREGISTERINFO_H
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "ARMGenRegisterInfo.h.inc"
20 namespace llvm {
21 class ARMSubtarget;
22 class TargetInstrInfo;
23 class Type;
25 struct ARMRegisterInfo : public ARMGenRegisterInfo {
26 const TargetInstrInfo &TII;
27 const ARMSubtarget &STI;
28 private:
29 /// FramePtr - ARM physical register used as frame ptr.
30 unsigned FramePtr;
32 public:
33 ARMRegisterInfo(const TargetInstrInfo &tii, const ARMSubtarget &STI);
35 /// emitLoadConstPool - Emits a load from constpool to materialize the
36 /// specified immediate.
37 void emitLoadConstPool(MachineBasicBlock &MBB,
38 MachineBasicBlock::iterator &MBBI,
39 unsigned DestReg, int Val,
40 unsigned Pred, unsigned PredReg,
41 const TargetInstrInfo *TII, bool isThumb,
42 DebugLoc dl) const;
44 /// getRegisterNumbering - Given the enum value for some register, e.g.
45 /// ARM::LR, return the number that it corresponds to (e.g. 14).
46 static unsigned getRegisterNumbering(unsigned RegEnum);
48 /// Same as previous getRegisterNumbering except it returns true in isSPVFP
49 /// if the register is a single precision VFP register.
50 static unsigned getRegisterNumbering(unsigned RegEnum, bool &isSPVFP);
52 /// getPointerRegClass - Return the register class to use to hold pointers.
53 /// This is used for addressing modes.
54 const TargetRegisterClass *getPointerRegClass() const;
56 /// Code Generation virtual methods...
57 const TargetRegisterClass *
58 getPhysicalRegisterRegClass(unsigned Reg, MVT VT = MVT::Other) const;
59 const unsigned *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
61 const TargetRegisterClass* const*
62 getCalleeSavedRegClasses(const MachineFunction *MF = 0) const;
64 BitVector getReservedRegs(const MachineFunction &MF) const;
66 bool isReservedReg(const MachineFunction &MF, unsigned Reg) const;
68 bool requiresRegisterScavenging(const MachineFunction &MF) const;
70 bool hasFP(const MachineFunction &MF) const;
72 bool hasReservedCallFrame(MachineFunction &MF) const;
74 void eliminateCallFramePseudoInstr(MachineFunction &MF,
75 MachineBasicBlock &MBB,
76 MachineBasicBlock::iterator I) const;
78 void eliminateFrameIndex(MachineBasicBlock::iterator II,
79 int SPAdj, RegScavenger *RS = NULL) const;
81 void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
82 RegScavenger *RS = NULL) const;
84 void emitPrologue(MachineFunction &MF) const;
85 void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
87 // Debug information queries.
88 unsigned getRARegister() const;
89 unsigned getFrameRegister(MachineFunction &MF) const;
91 // Exception handling queries.
92 unsigned getEHExceptionRegister() const;
93 unsigned getEHHandlerRegister() const;
95 int getDwarfRegNum(unsigned RegNum, bool isEH) const;
97 bool isLowRegister(unsigned Reg) const;
100 } // end namespace llvm
102 #endif