2002-12-28 21:32:54 +01:00
|
|
|
//===- X86RegisterInfo.h - X86 Register Information Impl --------*- C++ -*-===//
|
2005-04-22 01:38:14 +02:00
|
|
|
//
|
2003-10-21 17:17:13 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 01:38:14 +02:00
|
|
|
//
|
2003-10-21 17:17:13 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-10-26 00:55:53 +02:00
|
|
|
//
|
2008-02-10 19:45:23 +01:00
|
|
|
// This file contains the X86 implementation of the TargetRegisterInfo class.
|
2002-10-26 00:55:53 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86REGISTERINFO_H
|
|
|
|
#define X86REGISTERINFO_H
|
|
|
|
|
2008-02-10 19:45:23 +01:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2003-08-03 17:48:14 +02:00
|
|
|
#include "X86GenRegisterInfo.h.inc"
|
2002-12-25 06:06:43 +01:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
2006-09-05 04:12:02 +02:00
|
|
|
class Type;
|
|
|
|
class TargetInstrInfo;
|
2006-09-08 08:48:29 +02:00
|
|
|
class X86TargetMachine;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2007-08-29 21:01:20 +02:00
|
|
|
/// N86 namespace - Native X86 register numbers
|
|
|
|
///
|
|
|
|
namespace N86 {
|
|
|
|
enum {
|
|
|
|
EAX = 0, ECX = 1, EDX = 2, EBX = 3, ESP = 4, EBP = 5, ESI = 6, EDI = 7
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2008-03-11 11:09:17 +01:00
|
|
|
namespace X86 {
|
|
|
|
/// SubregIndex - The index of various sized subregister classes. Note that
|
|
|
|
/// these indices must be kept in sync with the class indices in the
|
|
|
|
/// X86RegisterInfo.td file.
|
|
|
|
enum SubregIndex {
|
Implement x86 h-register extract support.
- Add patterns for h-register extract, which avoids a shift and mask,
and in some cases a temporary register.
- Add address-mode matching for turning (X>>(8-n))&(255<<n), where
n is a valid address-mode scale value, into an h-register extract
and a scaled-offset address.
- Replace X86's MOV32to32_ and related instructions with the new
target-independent COPY_TO_SUBREG instruction.
On x86-64 there are complicated constraints on h registers, and
CodeGen doesn't currently provide a high-level way to express all of them,
so they are handled with a bunch of special code. This code currently only
supports extracts where the result is used by a zero-extend or a store,
though these are fairly common.
These transformations are not always beneficial; since there are only
4 h registers, they sometimes require extra move instructions, and
this sometimes increases register pressure because it can force out
values that would otherwise be in one of those registers. However,
this appears to be relatively uncommon.
llvm-svn: 68962
2009-04-13 18:09:41 +02:00
|
|
|
SUBREG_8BIT = 1, SUBREG_8BIT_HI = 2, SUBREG_16BIT = 3, SUBREG_32BIT = 4
|
2008-03-11 11:09:17 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2007-11-11 20:50:10 +01:00
|
|
|
/// DWARFFlavour - Flavour of dwarf regnumbers
|
|
|
|
///
|
|
|
|
namespace DWARFFlavour {
|
|
|
|
enum {
|
2008-01-25 01:34:13 +01:00
|
|
|
X86_64 = 0, X86_32_DarwinEH = 1, X86_32_Generic = 2
|
2007-11-11 20:50:10 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2006-11-05 20:31:28 +01:00
|
|
|
class X86RegisterInfo : public X86GenRegisterInfo {
|
|
|
|
public:
|
2006-09-08 08:48:29 +02:00
|
|
|
X86TargetMachine &TM;
|
2006-09-05 04:12:02 +02:00
|
|
|
const TargetInstrInfo &TII;
|
2006-11-05 20:31:28 +01:00
|
|
|
|
2006-09-08 08:48:29 +02:00
|
|
|
private:
|
|
|
|
/// Is64Bit - Is the target 64-bits.
|
2007-10-02 01:44:33 +02:00
|
|
|
///
|
2006-09-08 08:48:29 +02:00
|
|
|
bool Is64Bit;
|
|
|
|
|
2008-03-22 22:04:01 +01:00
|
|
|
/// IsWin64 - Is the target on of win64 flavours
|
|
|
|
///
|
|
|
|
bool IsWin64;
|
|
|
|
|
2006-09-08 08:48:29 +02:00
|
|
|
/// SlotSize - Stack slot size in bytes.
|
2007-10-02 01:44:33 +02:00
|
|
|
///
|
2006-09-08 08:48:29 +02:00
|
|
|
unsigned SlotSize;
|
|
|
|
|
2007-11-05 08:30:01 +01:00
|
|
|
/// StackAlign - Default stack alignment.
|
|
|
|
///
|
|
|
|
unsigned StackAlign;
|
|
|
|
|
2006-09-08 08:48:29 +02:00
|
|
|
/// StackPtr - X86 physical register used as stack ptr.
|
2007-10-02 01:44:33 +02:00
|
|
|
///
|
2006-09-08 08:48:29 +02:00
|
|
|
unsigned StackPtr;
|
|
|
|
|
|
|
|
/// FramePtr - X86 physical register used as frame ptr.
|
2007-10-02 01:44:33 +02:00
|
|
|
///
|
2006-09-08 08:48:29 +02:00
|
|
|
unsigned FramePtr;
|
|
|
|
|
|
|
|
public:
|
|
|
|
X86RegisterInfo(X86TargetMachine &tm, const TargetInstrInfo &tii);
|
2002-12-25 06:06:43 +01:00
|
|
|
|
2007-08-29 21:01:20 +02:00
|
|
|
/// getX86RegNum - Returns the native X86 register number for the given LLVM
|
|
|
|
/// register identifier.
|
2008-04-16 22:10:13 +02:00
|
|
|
static unsigned getX86RegNum(unsigned RegNo);
|
2007-08-29 21:01:20 +02:00
|
|
|
|
2008-01-01 22:11:32 +01:00
|
|
|
unsigned getStackAlignment() const { return StackAlign; }
|
|
|
|
|
2007-11-07 01:25:05 +01:00
|
|
|
/// getDwarfRegNum - allows modification of X86GenRegisterInfo::getDwarfRegNum
|
|
|
|
/// (created by TableGen) for target dependencies.
|
2007-11-13 20:13:01 +01:00
|
|
|
int getDwarfRegNum(unsigned RegNum, bool isEH) const;
|
2007-11-07 01:25:05 +01:00
|
|
|
|
2002-12-28 21:32:54 +01:00
|
|
|
/// Code Generation virtual methods...
|
2008-01-05 00:57:37 +01:00
|
|
|
///
|
2008-10-27 08:14:50 +01:00
|
|
|
|
2009-07-18 04:10:10 +02:00
|
|
|
/// getMatchingSuperRegClass - Return a subclass of the specified register
|
|
|
|
/// class A so that each register in it has a sub-register of the
|
|
|
|
/// specified sub-register index which is in the specified register class B.
|
|
|
|
virtual const TargetRegisterClass *
|
|
|
|
getMatchingSuperRegClass(const TargetRegisterClass *A,
|
|
|
|
const TargetRegisterClass *B, unsigned Idx) const;
|
|
|
|
|
2009-02-06 18:43:24 +01:00
|
|
|
/// getPointerRegClass - Returns a TargetRegisterClass used for pointer
|
|
|
|
/// values.
|
2009-07-29 22:31:52 +02:00
|
|
|
const TargetRegisterClass *getPointerRegClass(unsigned Kind = 0) const;
|
2009-02-06 18:43:24 +01:00
|
|
|
|
2008-10-27 08:14:50 +01:00
|
|
|
/// getCrossCopyRegClass - Returns a legal register class to copy a register
|
|
|
|
/// in the specified class to or from. Returns NULL if it is possible to copy
|
|
|
|
/// between a two registers of the specified class.
|
2007-09-26 23:31:07 +02:00
|
|
|
const TargetRegisterClass *
|
|
|
|
getCrossCopyRegClass(const TargetRegisterClass *RC) const;
|
|
|
|
|
2007-01-02 22:33:40 +01:00
|
|
|
/// getCalleeSavedRegs - Return a null-terminated list of all of the
|
2006-05-18 02:12:58 +02:00
|
|
|
/// callee-save registers on this target.
|
2007-07-14 16:06:15 +02:00
|
|
|
const unsigned *getCalleeSavedRegs(const MachineFunction* MF = 0) const;
|
2006-05-18 02:12:58 +02:00
|
|
|
|
2007-01-02 22:33:40 +01:00
|
|
|
/// getCalleeSavedRegClasses - Return a null-terminated list of the preferred
|
2006-05-18 02:12:58 +02:00
|
|
|
/// register classes to spill each callee-saved register with. The order and
|
2007-01-02 22:33:40 +01:00
|
|
|
/// length of this list match the getCalleeSavedRegs() list.
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
const TargetRegisterClass* const*
|
|
|
|
getCalleeSavedRegClasses(const MachineFunction *MF = 0) const;
|
2004-02-17 05:33:18 +01:00
|
|
|
|
2007-02-19 22:49:54 +01:00
|
|
|
/// getReservedRegs - Returns a bitset indexed by physical register number
|
|
|
|
/// indicating if a register is a special register that has particular uses and
|
|
|
|
/// should be considered unavailable at all times, e.g. SP, RA. This is used by
|
|
|
|
/// register scavenger to determine what registers are free.
|
|
|
|
BitVector getReservedRegs(const MachineFunction &MF) const;
|
|
|
|
|
2007-01-23 01:57:47 +01:00
|
|
|
bool hasFP(const MachineFunction &MF) const;
|
|
|
|
|
2008-04-23 20:15:48 +02:00
|
|
|
bool needsStackRealignment(const MachineFunction &MF) const;
|
|
|
|
|
2007-07-19 02:42:05 +02:00
|
|
|
bool hasReservedCallFrame(MachineFunction &MF) const;
|
|
|
|
|
2009-07-09 08:53:48 +02:00
|
|
|
bool hasReservedSpillSlot(MachineFunction &MF, unsigned Reg,
|
|
|
|
int &FrameIdx) const;
|
|
|
|
|
2004-02-14 20:49:54 +01:00
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI) const;
|
2002-12-13 10:54:12 +01:00
|
|
|
|
2009-10-07 19:12:56 +02:00
|
|
|
unsigned eliminateFrameIndex(MachineBasicBlock::iterator MI,
|
|
|
|
int SPAdj, int *Value = NULL,
|
|
|
|
RegScavenger *RS = NULL) const;
|
2002-11-20 19:59:43 +01:00
|
|
|
|
2008-04-23 20:20:17 +02:00
|
|
|
void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
|
|
|
|
RegScavenger *RS = NULL) const;
|
2002-12-04 00:11:21 +01:00
|
|
|
|
Recommit r74952 with a bug fix:
DWARF requires frame moves be specified at specific times. If you have a
prologue like this:
__Z3fooi:
Leh_func_begin1:
LBB1_0: ## entry
pushl %ebp
Llabel1:
movl %esp, %ebp
Llabel2:
pushl %esi
Llabel3:
subl $20, %esp
call "L1$pb"
"L1$pb":
popl %esi
The "pushl %ebp" needs a table entry specifying the offset. The "movl %esp,
%ebp" makes %ebp the new stack frame register, so that needs to be specified in
DWARF. And "pushl %esi" saves the callee-saved %esi register, which also needs
to be specified in DWARF.
Before, all of this logic was in one method. This didn't work too well, because
as you can see there are multiple FDE line entries that need to be created.
This fix creates the "MachineMove" objects directly when they're needed; instead
of waiting until the end, and losing information.
There is some ugliness where we generate code like this:
LBB22_0: ## entry
pushl %ebp
Llabel280:
movl %esp, %ebp
Llabel281:
Llabel284:
pushl %ebp <----------
pushl %ebx
pushl %edi
pushl %esi
Llabel282:
subl $328, %esp
Notice the extra "pushl %ebp". If we generate a "machine move" instruction in
the FDE for that pushl, the linker may get very confused about what value %ebp
should have when exitting the function. I.e., it'll give it the value %esp
instead of the %ebp value from the first "pushl". Not to mention that, in this
case, %ebp isn't modified in the function (that's a separate bug). I put a small
hack in to get it to work. It might be the only solution, but should be
revisited once the above case is fixed.
llvm-svn: 75047
2009-07-08 23:02:53 +02:00
|
|
|
void emitCalleeSavedFrameMoves(MachineFunction &MF, unsigned LabelId,
|
|
|
|
unsigned FramePtr) const;
|
2004-02-14 20:49:54 +01:00
|
|
|
void emitPrologue(MachineFunction &MF) const;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
|
2006-03-23 19:12:57 +01:00
|
|
|
|
2006-03-28 15:48:33 +02:00
|
|
|
// Debug information queries.
|
2006-04-07 18:34:46 +02:00
|
|
|
unsigned getRARegister() const;
|
2009-11-12 22:00:03 +01:00
|
|
|
unsigned getFrameRegister(const MachineFunction &MF) const;
|
2008-02-02 01:17:00 +01:00
|
|
|
int getFrameIndexOffset(MachineFunction &MF, int FI) const;
|
2007-01-24 20:15:24 +01:00
|
|
|
void getInitialFrameState(std::vector<MachineMove> &Moves) const;
|
2007-02-21 23:54:50 +01:00
|
|
|
|
|
|
|
// Exception handling queries.
|
|
|
|
unsigned getEHExceptionRegister() const;
|
|
|
|
unsigned getEHHandlerRegister() const;
|
2002-10-26 00:55:53 +02:00
|
|
|
};
|
|
|
|
|
2006-05-05 07:40:20 +02:00
|
|
|
// getX86SubSuperRegister - X86 utility function. It returns the sub or super
|
|
|
|
// register of a specific X86 register.
|
2009-08-11 00:56:29 +02:00
|
|
|
// e.g. getX86SubSuperRegister(X86::EAX, EVT::i16) return X86:AX
|
|
|
|
unsigned getX86SubSuperRegister(unsigned, EVT, bool High=false);
|
2006-05-05 07:40:20 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-10-26 00:55:53 +02:00
|
|
|
#endif
|