2002-10-29 22:37:54 +00:00
|
|
|
//===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- 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
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2002-10-29 22:37:54 +00:00
|
|
|
// This file declares the X86 specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86TARGETMACHINE_H
|
|
|
|
#define X86TARGETMACHINE_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2006-05-12 06:33:49 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2002-12-28 21:00:25 +00:00
|
|
|
#include "llvm/Target/TargetFrameInfo.h"
|
2006-03-13 23:20:37 +00:00
|
|
|
#include "X86.h"
|
2007-01-27 02:56:16 +00:00
|
|
|
#include "X86ELFWriterInfo.h"
|
2002-10-29 22:37:54 +00:00
|
|
|
#include "X86InstrInfo.h"
|
2003-12-20 01:22:19 +00:00
|
|
|
#include "X86JITInfo.h"
|
2005-07-12 01:41:54 +00:00
|
|
|
#include "X86Subtarget.h"
|
2006-03-13 23:20:37 +00:00
|
|
|
#include "X86ISelLowering.h"
|
2002-10-29 22:37:54 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2008-08-21 00:14:44 +00:00
|
|
|
|
2009-07-14 20:18:05 +00:00
|
|
|
class formatted_raw_ostream;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
class X86TargetMachine : public LLVMTargetMachine {
|
2006-03-13 23:20:37 +00:00
|
|
|
X86Subtarget Subtarget;
|
2007-01-27 02:56:16 +00:00
|
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
2006-03-13 23:20:37 +00:00
|
|
|
TargetFrameInfo FrameInfo;
|
2006-05-30 21:45:53 +00:00
|
|
|
X86InstrInfo InstrInfo;
|
2006-03-13 23:20:37 +00:00
|
|
|
X86JITInfo JITInfo;
|
|
|
|
X86TargetLowering TLInfo;
|
2007-01-27 02:56:16 +00:00
|
|
|
X86ELFWriterInfo ELFWriterInfo;
|
2007-12-22 09:40:20 +00:00
|
|
|
Reloc::Model DefRelocModel; // Reloc model before it's overridden.
|
2006-09-07 23:39:26 +00:00
|
|
|
|
2009-12-21 08:15:29 +00:00
|
|
|
private:
|
|
|
|
// We have specific defaults for X86.
|
|
|
|
virtual void setCodeModelForJIT();
|
|
|
|
virtual void setCodeModelForStatic();
|
|
|
|
|
2002-10-29 22:37:54 +00:00
|
|
|
public:
|
2009-08-02 23:37:13 +00:00
|
|
|
X86TargetMachine(const Target &T, const std::string &TT,
|
|
|
|
const std::string &FS, bool is64Bit);
|
2002-10-29 22:37:54 +00:00
|
|
|
|
2004-06-02 05:55:25 +00:00
|
|
|
virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
|
|
|
|
virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
|
2008-05-14 01:58:56 +00:00
|
|
|
virtual X86JITInfo *getJITInfo() { return &JITInfo; }
|
|
|
|
virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
|
2006-05-12 21:14:20 +00:00
|
|
|
virtual X86TargetLowering *getTargetLowering() const {
|
|
|
|
return const_cast<X86TargetLowering*>(&TLInfo);
|
|
|
|
}
|
2008-05-14 01:58:56 +00:00
|
|
|
virtual const X86RegisterInfo *getRegisterInfo() const {
|
2002-12-28 20:33:52 +00:00
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
2006-05-03 01:29:57 +00:00
|
|
|
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
2007-01-27 02:56:16 +00:00
|
|
|
virtual const X86ELFWriterInfo *getELFWriterInfo() const {
|
2007-02-08 01:39:44 +00:00
|
|
|
return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
|
2007-01-27 02:56:16 +00:00
|
|
|
}
|
2002-12-28 20:33:52 +00:00
|
|
|
|
2010-01-18 22:36:35 +00:00
|
|
|
/// getLSDAEncoding - Returns the LSDA pointer encoding. The choices are
|
|
|
|
/// 4-byte, 8-byte, and target default. The CIE is hard-coded to indicate that
|
|
|
|
/// the LSDA pointer in the FDE section is an "sdata4", and should be encoded
|
|
|
|
/// as a 4-byte pointer by default. However, some systems may require a
|
|
|
|
/// different size due to bugs or other conditions. We will default to a
|
|
|
|
/// 4-byte encoding unless the system tells us otherwise.
|
|
|
|
///
|
|
|
|
/// FIXME: This call-back isn't good! We should be using the correct encoding
|
|
|
|
/// regardless of the system. However, there are some systems which have bugs
|
|
|
|
/// that prevent this from occuring.
|
2010-01-16 01:40:55 +00:00
|
|
|
virtual DwarfLSDAEncoding::Encoding getLSDAEncoding() const;
|
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
// Set up the pass pipeline.
|
2009-04-29 23:29:43 +00:00
|
|
|
virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
|
|
|
|
virtual bool addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
|
|
|
|
virtual bool addPostRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
|
2009-05-30 20:51:52 +00:00
|
|
|
virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
|
2009-07-15 22:33:19 +00:00
|
|
|
JITCodeEmitter &JCE);
|
2002-10-29 22:37:54 +00:00
|
|
|
};
|
2006-09-08 06:48:29 +00:00
|
|
|
|
|
|
|
/// X86_32TargetMachine - X86 32-bit target machine.
|
|
|
|
///
|
|
|
|
class X86_32TargetMachine : public X86TargetMachine {
|
|
|
|
public:
|
2009-08-02 23:37:13 +00:00
|
|
|
X86_32TargetMachine(const Target &T, const std::string &M,
|
|
|
|
const std::string &FS);
|
2006-09-08 06:48:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// X86_64TargetMachine - X86 64-bit target machine.
|
|
|
|
///
|
|
|
|
class X86_64TargetMachine : public X86TargetMachine {
|
|
|
|
public:
|
2009-08-02 23:37:13 +00:00
|
|
|
X86_64TargetMachine(const Target &T, const std::string &TT,
|
|
|
|
const std::string &FS);
|
2006-09-08 06:48:29 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-10-29 22:37:54 +00:00
|
|
|
#endif
|