2002-12-28 20:32:54 +00:00
|
|
|
//===- X86RegisterInfo.h - X86 Register Information Impl --------*- C++ -*-===//
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-10-25 22:55:53 +00:00
|
|
|
//
|
|
|
|
// This file contains the X86 implementation of the MRegisterInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86REGISTERINFO_H
|
|
|
|
#define X86REGISTERINFO_H
|
|
|
|
|
2007-10-01 23:44:33 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2007-08-30 05:54:07 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2002-10-25 22:55:53 +00:00
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
2003-08-03 15:48:14 +00:00
|
|
|
#include "X86GenRegisterInfo.h.inc"
|
2002-12-25 05:06:43 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2006-09-05 02:12:02 +00:00
|
|
|
class Type;
|
|
|
|
class TargetInstrInfo;
|
2006-09-08 06:48:29 +00:00
|
|
|
class X86TargetMachine;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2007-08-29 19:01:20 +00: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
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2007-11-11 19:50:10 +00:00
|
|
|
/// DWARFFlavour - Flavour of dwarf regnumbers
|
|
|
|
///
|
|
|
|
namespace DWARFFlavour {
|
|
|
|
enum {
|
|
|
|
X86_64 = 0, X86_32_Darwin = 1, X86_32_ELF = 2
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2006-11-05 19:31:28 +00:00
|
|
|
class X86RegisterInfo : public X86GenRegisterInfo {
|
|
|
|
public:
|
2006-09-08 06:48:29 +00:00
|
|
|
X86TargetMachine &TM;
|
2006-09-05 02:12:02 +00:00
|
|
|
const TargetInstrInfo &TII;
|
2006-11-05 19:31:28 +00:00
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
private:
|
|
|
|
/// Is64Bit - Is the target 64-bits.
|
2007-10-01 23:44:33 +00:00
|
|
|
///
|
2006-09-08 06:48:29 +00:00
|
|
|
bool Is64Bit;
|
|
|
|
|
|
|
|
/// SlotSize - Stack slot size in bytes.
|
2007-10-01 23:44:33 +00:00
|
|
|
///
|
2006-09-08 06:48:29 +00:00
|
|
|
unsigned SlotSize;
|
|
|
|
|
2007-11-05 07:30:01 +00:00
|
|
|
/// StackAlign - Default stack alignment.
|
|
|
|
///
|
|
|
|
unsigned StackAlign;
|
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
/// StackPtr - X86 physical register used as stack ptr.
|
2007-10-01 23:44:33 +00:00
|
|
|
///
|
2006-09-08 06:48:29 +00:00
|
|
|
unsigned StackPtr;
|
|
|
|
|
|
|
|
/// FramePtr - X86 physical register used as frame ptr.
|
2007-10-01 23:44:33 +00:00
|
|
|
///
|
2006-09-08 06:48:29 +00:00
|
|
|
unsigned FramePtr;
|
|
|
|
|
|
|
|
public:
|
|
|
|
X86RegisterInfo(X86TargetMachine &tm, const TargetInstrInfo &tii);
|
2002-12-25 05:06:43 +00:00
|
|
|
|
2007-08-29 19:01:20 +00:00
|
|
|
/// getX86RegNum - Returns the native X86 register number for the given LLVM
|
|
|
|
/// register identifier.
|
|
|
|
unsigned getX86RegNum(unsigned RegNo);
|
|
|
|
|
2008-01-01 21:11:32 +00:00
|
|
|
unsigned getStackAlignment() const { return StackAlign; }
|
|
|
|
|
2007-11-07 00:25:05 +00:00
|
|
|
/// getDwarfRegNum - allows modification of X86GenRegisterInfo::getDwarfRegNum
|
|
|
|
/// (created by TableGen) for target dependencies.
|
2007-11-13 19:13:01 +00:00
|
|
|
int getDwarfRegNum(unsigned RegNum, bool isEH) const;
|
2007-11-07 00:25:05 +00:00
|
|
|
|
2002-12-28 20:32:54 +00:00
|
|
|
/// Code Generation virtual methods...
|
2008-01-04 23:57:37 +00:00
|
|
|
///
|
2007-09-26 21:31:07 +00:00
|
|
|
const TargetRegisterClass *
|
|
|
|
getCrossCopyRegClass(const TargetRegisterClass *RC) const;
|
|
|
|
|
2007-03-20 08:09:38 +00:00
|
|
|
void reMaterialize(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
|
|
|
|
unsigned DestReg, const MachineInstr *Orig) const;
|
2002-12-25 05:06:43 +00:00
|
|
|
|
2007-01-02 21:33:40 +00:00
|
|
|
/// getCalleeSavedRegs - Return a null-terminated list of all of the
|
2006-05-18 00:12:58 +00:00
|
|
|
/// callee-save registers on this target.
|
2007-07-14 14:06:15 +00:00
|
|
|
const unsigned *getCalleeSavedRegs(const MachineFunction* MF = 0) const;
|
2006-05-18 00:12:58 +00:00
|
|
|
|
2007-01-02 21:33:40 +00:00
|
|
|
/// getCalleeSavedRegClasses - Return a null-terminated list of the preferred
|
2006-05-18 00:12:58 +00:00
|
|
|
/// register classes to spill each callee-saved register with. The order and
|
2007-01-02 21:33:40 +00: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))]>;
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40033 91177308-0d34-0410-b5e6-96231b3b80d8
2007-07-19 01:14:50 +00:00
|
|
|
const TargetRegisterClass* const*
|
|
|
|
getCalleeSavedRegClasses(const MachineFunction *MF = 0) const;
|
2004-02-17 04:33:18 +00:00
|
|
|
|
2007-02-19 21:49:54 +00: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 00:57:47 +00:00
|
|
|
bool hasFP(const MachineFunction &MF) const;
|
|
|
|
|
2007-07-19 00:42:05 +00:00
|
|
|
bool hasReservedCallFrame(MachineFunction &MF) const;
|
|
|
|
|
2004-02-14 19:49:54 +00:00
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI) const;
|
2002-12-13 09:54:12 +00:00
|
|
|
|
2007-02-28 00:21:17 +00:00
|
|
|
void eliminateFrameIndex(MachineBasicBlock::iterator MI,
|
2007-05-01 09:13:03 +00:00
|
|
|
int SPAdj, RegScavenger *RS = NULL) const;
|
2002-11-20 18:59:43 +00:00
|
|
|
|
2004-02-14 19:49:54 +00:00
|
|
|
void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
|
2002-12-03 23:11:21 +00:00
|
|
|
|
2004-02-14 19:49:54 +00:00
|
|
|
void emitPrologue(MachineFunction &MF) const;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
|
2006-03-23 18:12:57 +00:00
|
|
|
|
2006-03-28 13:48:33 +00:00
|
|
|
// Debug information queries.
|
2006-04-07 16:34:46 +00:00
|
|
|
unsigned getRARegister() const;
|
2006-03-28 13:48:33 +00:00
|
|
|
unsigned getFrameRegister(MachineFunction &MF) const;
|
2007-01-24 19:15:24 +00:00
|
|
|
void getInitialFrameState(std::vector<MachineMove> &Moves) const;
|
2007-02-21 22:54:50 +00:00
|
|
|
|
|
|
|
// Exception handling queries.
|
|
|
|
unsigned getEHExceptionRegister() const;
|
|
|
|
unsigned getEHHandlerRegister() const;
|
2002-10-25 22:55:53 +00:00
|
|
|
};
|
|
|
|
|
2006-05-05 05:40:20 +00:00
|
|
|
// getX86SubSuperRegister - X86 utility function. It returns the sub or super
|
|
|
|
// register of a specific X86 register.
|
|
|
|
// e.g. getX86SubSuperRegister(X86::EAX, MVT::i16) return X86:AX
|
|
|
|
unsigned getX86SubSuperRegister(unsigned, MVT::ValueType, bool High=false);
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-10-25 22:55:53 +00:00
|
|
|
#endif
|