2002-10-30 06:37:54 +08:00
|
|
|
//===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
|
2005-04-22 07:38:14 +08:00
|
|
|
//
|
2003-10-21 23:17:13 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:38:14 +08:00
|
|
|
//
|
2003-10-21 23:17:13 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-22 07:38:14 +08:00
|
|
|
//
|
2002-10-30 06:37:54 +08:00
|
|
|
// This file declares the X86 specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86TARGETMACHINE_H
|
|
|
|
#define X86TARGETMACHINE_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2006-05-12 14:33:49 +08:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2002-12-29 05:00:25 +08:00
|
|
|
#include "llvm/Target/TargetFrameInfo.h"
|
2006-03-14 07:20:37 +08:00
|
|
|
#include "X86.h"
|
2007-01-27 10:56:16 +08:00
|
|
|
#include "X86ELFWriterInfo.h"
|
2002-10-30 06:37:54 +08:00
|
|
|
#include "X86InstrInfo.h"
|
2003-12-20 09:22:19 +08:00
|
|
|
#include "X86JITInfo.h"
|
2005-07-12 09:41:54 +08:00
|
|
|
#include "X86Subtarget.h"
|
2006-03-14 07:20:37 +08:00
|
|
|
#include "X86ISelLowering.h"
|
2002-10-30 06:37:54 +08:00
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
namespace llvm {
|
2008-08-21 08:14:44 +08:00
|
|
|
|
2009-07-15 04:18:05 +08:00
|
|
|
class formatted_raw_ostream;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
class X86TargetMachine : public LLVMTargetMachine {
|
2006-03-14 07:20:37 +08:00
|
|
|
X86Subtarget Subtarget;
|
2007-01-27 10:56:16 +08:00
|
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
2006-03-14 07:20:37 +08:00
|
|
|
TargetFrameInfo FrameInfo;
|
2006-05-31 05:45:53 +08:00
|
|
|
X86InstrInfo InstrInfo;
|
2006-03-14 07:20:37 +08:00
|
|
|
X86JITInfo JITInfo;
|
|
|
|
X86TargetLowering TLInfo;
|
2007-01-27 10:56:16 +08:00
|
|
|
X86ELFWriterInfo ELFWriterInfo;
|
2007-12-22 17:40:20 +08:00
|
|
|
Reloc::Model DefRelocModel; // Reloc model before it's overridden.
|
2006-09-08 07:39:26 +08:00
|
|
|
|
2009-12-21 16:15:29 +08:00
|
|
|
private:
|
|
|
|
// We have specific defaults for X86.
|
|
|
|
virtual void setCodeModelForJIT();
|
|
|
|
virtual void setCodeModelForStatic();
|
|
|
|
|
2002-10-30 06:37:54 +08:00
|
|
|
public:
|
2009-08-03 07:37:13 +08:00
|
|
|
X86TargetMachine(const Target &T, const std::string &TT,
|
|
|
|
const std::string &FS, bool is64Bit);
|
2002-10-30 06:37:54 +08:00
|
|
|
|
2004-06-02 13:55:25 +08:00
|
|
|
virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
|
|
|
|
virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
|
2008-05-14 09:58:56 +08:00
|
|
|
virtual X86JITInfo *getJITInfo() { return &JITInfo; }
|
|
|
|
virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
|
2010-04-17 23:26:15 +08:00
|
|
|
virtual const X86TargetLowering *getTargetLowering() const {
|
|
|
|
return &TLInfo;
|
2006-05-13 05:14:20 +08:00
|
|
|
}
|
2008-05-14 09:58:56 +08:00
|
|
|
virtual const X86RegisterInfo *getRegisterInfo() const {
|
2002-12-29 04:33:52 +08:00
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
2006-05-03 09:29:57 +08:00
|
|
|
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
2007-01-27 10:56:16 +08:00
|
|
|
virtual const X86ELFWriterInfo *getELFWriterInfo() const {
|
2007-02-08 09:39:44 +08:00
|
|
|
return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
|
2007-01-27 10:56:16 +08:00
|
|
|
}
|
2002-12-29 04:33:52 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
// Set up the pass pipeline.
|
2009-04-30 07:29:43 +08: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);
|
2010-03-26 01:25:00 +08:00
|
|
|
virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
|
2009-05-31 04:51:52 +08:00
|
|
|
virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
|
2009-07-16 06:33:19 +08:00
|
|
|
JITCodeEmitter &JCE);
|
2002-10-30 06:37:54 +08:00
|
|
|
};
|
2006-09-08 14:48:29 +08:00
|
|
|
|
|
|
|
/// X86_32TargetMachine - X86 32-bit target machine.
|
|
|
|
///
|
|
|
|
class X86_32TargetMachine : public X86TargetMachine {
|
|
|
|
public:
|
2009-08-03 07:37:13 +08:00
|
|
|
X86_32TargetMachine(const Target &T, const std::string &M,
|
|
|
|
const std::string &FS);
|
2006-09-08 14:48:29 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/// X86_64TargetMachine - X86 64-bit target machine.
|
|
|
|
///
|
|
|
|
class X86_64TargetMachine : public X86TargetMachine {
|
|
|
|
public:
|
2009-08-03 07:37:13 +08:00
|
|
|
X86_64TargetMachine(const Target &T, const std::string &TT,
|
|
|
|
const std::string &FS);
|
2006-09-08 14:48:29 +08:00
|
|
|
};
|
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-10-30 06:37:54 +08:00
|
|
|
#endif
|