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 {
|
|
|
|
|
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
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual const TargetAsmInfo *createTargetAsmInfo() const;
|
|
|
|
|
2002-10-29 22:37:54 +00:00
|
|
|
public:
|
2006-09-08 06:48:29 +00:00
|
|
|
X86TargetMachine(const Module &M, 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; }
|
2004-03-01 06:43:29 +00:00
|
|
|
virtual TargetJITInfo *getJITInfo() { return &JITInfo; }
|
2005-07-12 01:41:54 +00:00
|
|
|
virtual const TargetSubtarget *getSubtargetImpl() const{ return &Subtarget; }
|
2006-05-12 21:14:20 +00:00
|
|
|
virtual X86TargetLowering *getTargetLowering() const {
|
|
|
|
return const_cast<X86TargetLowering*>(&TLInfo);
|
|
|
|
}
|
2008-02-10 18:45:23 +00:00
|
|
|
virtual const TargetRegisterInfo *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
|
|
|
|
2004-07-11 02:48:49 +00:00
|
|
|
static unsigned getModuleMatchQuality(const Module &M);
|
|
|
|
static unsigned getJITMatchQuality();
|
2006-09-04 04:14:57 +00:00
|
|
|
|
|
|
|
// Set up the pass pipeline.
|
2008-03-11 22:29:46 +00:00
|
|
|
virtual bool addInstSelector(PassManagerBase &PM, bool Fast);
|
|
|
|
virtual bool addPostRegAlloc(PassManagerBase &PM, bool Fast);
|
|
|
|
virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast,
|
2006-09-04 04:14:57 +00:00
|
|
|
std::ostream &Out);
|
2008-03-11 22:29:46 +00:00
|
|
|
virtual bool addCodeEmitter(PassManagerBase &PM, bool Fast,
|
2007-07-20 21:56:13 +00:00
|
|
|
bool DumpAsm, MachineCodeEmitter &MCE);
|
2008-03-11 22:29:46 +00:00
|
|
|
virtual bool addSimpleCodeEmitter(PassManagerBase &PM, bool Fast,
|
2007-07-20 21:56:13 +00:00
|
|
|
bool DumpAsm, MachineCodeEmitter &MCE);
|
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:
|
|
|
|
X86_32TargetMachine(const Module &M, const std::string &FS);
|
|
|
|
|
|
|
|
static unsigned getJITMatchQuality();
|
|
|
|
static unsigned getModuleMatchQuality(const Module &M);
|
|
|
|
};
|
|
|
|
|
|
|
|
/// X86_64TargetMachine - X86 64-bit target machine.
|
|
|
|
///
|
|
|
|
class X86_64TargetMachine : public X86TargetMachine {
|
|
|
|
public:
|
|
|
|
X86_64TargetMachine(const Module &M, const std::string &FS);
|
|
|
|
|
|
|
|
static unsigned getJITMatchQuality();
|
|
|
|
static unsigned getModuleMatchQuality(const Module &M);
|
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-10-29 22:37:54 +00:00
|
|
|
#endif
|