Change MachineInstr ctor's to take a TargetInstrDescriptor reference instead
[oota-llvm.git] / lib / Target / PowerPC / PPCRegisterInfo.h
1 //===- PPCRegisterInfo.h - PowerPC Register Information Impl -----*- C++ -*-==//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the PowerPC implementation of the MRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef POWERPC32_REGISTERINFO_H
15 #define POWERPC32_REGISTERINFO_H
16
17 #include "PPC.h"
18 #include "PPCGenRegisterInfo.h.inc"
19 #include <map>
20
21 namespace llvm {
22 class PPCSubtarget;
23 class TargetInstrInfo;
24 class Type;
25
26 class PPCRegisterInfo : public PPCGenRegisterInfo {
27   std::map<unsigned, unsigned> ImmToIdxMap;
28   const PPCSubtarget &Subtarget;
29   const TargetInstrInfo &TII;
30 public:
31   PPCRegisterInfo(const PPCSubtarget &SubTarget, const TargetInstrInfo &tii);
32   
33   /// getRegisterNumbering - Given the enum value for some register, e.g.
34   /// PPC::F14, return the number that it corresponds to (e.g. 14).
35   static unsigned getRegisterNumbering(unsigned RegEnum);
36
37   /// Code Generation virtual methods...
38   void storeRegToStackSlot(MachineBasicBlock &MBB,
39                            MachineBasicBlock::iterator MBBI,
40                            unsigned SrcReg, int FrameIndex,
41                            const TargetRegisterClass *RC) const;
42
43   void loadRegFromStackSlot(MachineBasicBlock &MBB,
44                             MachineBasicBlock::iterator MBBI,
45                             unsigned DestReg, int FrameIndex,
46                             const TargetRegisterClass *RC) const;
47
48   void copyRegToReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
49                     unsigned DestReg, unsigned SrcReg,
50                     const TargetRegisterClass *RC) const;
51
52   /// foldMemoryOperand - PowerPC (like most RISC's) can only fold spills into
53   /// copy instructions, turning them into load/store instructions.
54   virtual MachineInstr* foldMemoryOperand(MachineInstr* MI, unsigned OpNum,
55                                           int FrameIndex) const;
56   
57   const unsigned *getCalleeSaveRegs() const;
58
59   const TargetRegisterClass* const* getCalleeSaveRegClasses() const;
60
61   void eliminateCallFramePseudoInstr(MachineFunction &MF,
62                                      MachineBasicBlock &MBB,
63                                      MachineBasicBlock::iterator I) const;
64
65   void lowerDynamicAlloc(MachineBasicBlock::iterator II) const;
66   void eliminateFrameIndex(MachineBasicBlock::iterator II) const;
67
68   /// determineFrameLayout - Determine the size of the frame and maximum call
69   /// frame size.
70   void determineFrameLayout(MachineFunction &MF) const;
71
72   void emitPrologue(MachineFunction &MF) const;
73   void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
74
75   // Debug information queries.
76   unsigned getRARegister() const;
77   unsigned getFrameRegister(MachineFunction &MF) const;
78   void getInitialFrameState(std::vector<MachineMove *> &Moves) const;
79 };
80
81 } // end namespace llvm
82
83 #endif