1 //===- X86RegisterInfo.h - X86 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 X86 implementation of the TargetRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef X86REGISTERINFO_H
15 #define X86REGISTERINFO_H
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "X86GenRegisterInfo.h.inc"
22 class TargetInstrInfo
;
23 class X86TargetMachine
;
25 /// N86 namespace - Native X86 register numbers
29 EAX
= 0, ECX
= 1, EDX
= 2, EBX
= 3, ESP
= 4, EBP
= 5, ESI
= 6, EDI
= 7
34 /// SubregIndex - The index of various sized subregister classes. Note that
35 /// these indices must be kept in sync with the class indices in the
36 /// X86RegisterInfo.td file.
38 SUBREG_8BIT
= 1, SUBREG_8BIT_HI
= 2, SUBREG_16BIT
= 3, SUBREG_32BIT
= 4
42 /// DWARFFlavour - Flavour of dwarf regnumbers
44 namespace DWARFFlavour
{
46 X86_64
= 0, X86_32_DarwinEH
= 1, X86_32_Generic
= 2
50 class X86RegisterInfo
: public X86GenRegisterInfo
{
53 const TargetInstrInfo
&TII
;
56 /// Is64Bit - Is the target 64-bits.
60 /// IsWin64 - Is the target on of win64 flavours
64 /// SlotSize - Stack slot size in bytes.
68 /// StackAlign - Default stack alignment.
72 /// StackPtr - X86 physical register used as stack ptr.
76 /// FramePtr - X86 physical register used as frame ptr.
81 X86RegisterInfo(X86TargetMachine
&tm
, const TargetInstrInfo
&tii
);
83 /// getX86RegNum - Returns the native X86 register number for the given LLVM
84 /// register identifier.
85 static unsigned getX86RegNum(unsigned RegNo
);
87 unsigned getStackAlignment() const { return StackAlign
; }
89 /// getDwarfRegNum - allows modification of X86GenRegisterInfo::getDwarfRegNum
90 /// (created by TableGen) for target dependencies.
91 int getDwarfRegNum(unsigned RegNum
, bool isEH
) const;
93 /// Code Generation virtual methods...
96 /// getMatchingSuperRegClass - Return a subclass of the specified register
97 /// class A so that each register in it has a sub-register of the
98 /// specified sub-register index which is in the specified register class B.
99 virtual const TargetRegisterClass
*
100 getMatchingSuperRegClass(const TargetRegisterClass
*A
,
101 const TargetRegisterClass
*B
, unsigned Idx
) const;
103 /// getPointerRegClass - Returns a TargetRegisterClass used for pointer
105 const TargetRegisterClass
*getPointerRegClass(unsigned Kind
= 0) const;
107 /// getCrossCopyRegClass - Returns a legal register class to copy a register
108 /// in the specified class to or from. Returns NULL if it is possible to copy
109 /// between a two registers of the specified class.
110 const TargetRegisterClass
*
111 getCrossCopyRegClass(const TargetRegisterClass
*RC
) const;
113 /// getCalleeSavedRegs - Return a null-terminated list of all of the
114 /// callee-save registers on this target.
115 const unsigned *getCalleeSavedRegs(const MachineFunction
* MF
= 0) const;
117 /// getCalleeSavedRegClasses - Return a null-terminated list of the preferred
118 /// register classes to spill each callee-saved register with. The order and
119 /// length of this list match the getCalleeSavedRegs() list.
120 const TargetRegisterClass
* const*
121 getCalleeSavedRegClasses(const MachineFunction
*MF
= 0) const;
123 /// getReservedRegs - Returns a bitset indexed by physical register number
124 /// indicating if a register is a special register that has particular uses and
125 /// should be considered unavailable at all times, e.g. SP, RA. This is used by
126 /// register scavenger to determine what registers are free.
127 BitVector
getReservedRegs(const MachineFunction
&MF
) const;
129 bool hasFP(const MachineFunction
&MF
) const;
131 bool needsStackRealignment(const MachineFunction
&MF
) const;
133 bool hasReservedCallFrame(MachineFunction
&MF
) const;
135 bool hasReservedSpillSlot(MachineFunction
&MF
, unsigned Reg
,
136 int &FrameIdx
) const;
138 void eliminateCallFramePseudoInstr(MachineFunction
&MF
,
139 MachineBasicBlock
&MBB
,
140 MachineBasicBlock::iterator MI
) const;
142 void eliminateFrameIndex(MachineBasicBlock::iterator MI
,
143 int SPAdj
, RegScavenger
*RS
= NULL
) const;
145 void processFunctionBeforeCalleeSavedScan(MachineFunction
&MF
,
146 RegScavenger
*RS
= NULL
) const;
148 void emitCalleeSavedFrameMoves(MachineFunction
&MF
, unsigned LabelId
,
149 unsigned FramePtr
) const;
150 void emitPrologue(MachineFunction
&MF
) const;
151 void emitEpilogue(MachineFunction
&MF
, MachineBasicBlock
&MBB
) const;
153 // Debug information queries.
154 unsigned getRARegister() const;
155 unsigned getFrameRegister(MachineFunction
&MF
) const;
156 int getFrameIndexOffset(MachineFunction
&MF
, int FI
) const;
157 void getInitialFrameState(std::vector
<MachineMove
> &Moves
) const;
159 // Exception handling queries.
160 unsigned getEHExceptionRegister() const;
161 unsigned getEHHandlerRegister() const;
164 // getX86SubSuperRegister - X86 utility function. It returns the sub or super
165 // register of a specific X86 register.
166 // e.g. getX86SubSuperRegister(X86::EAX, EVT::i16) return X86:AX
167 unsigned getX86SubSuperRegister(unsigned, EVT
, bool High
=false);
169 } // End llvm namespace