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
|
|
|
|
|
|
|
class 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
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual const TargetAsmInfo *createTargetAsmInfo() const;
|
2008-08-17 13:53:59 +00:00
|
|
|
|
|
|
|
// To avoid having target depend on the asmprinter stuff libraries, asmprinter
|
|
|
|
// set this functions to ctor pointer at startup time if they are linked in.
|
2008-08-21 00:14:44 +00:00
|
|
|
typedef FunctionPass *(*AsmPrinterCtorFn)(raw_ostream &o,
|
2009-02-24 08:30:20 +00:00
|
|
|
X86TargetMachine &tm,
|
2009-03-25 01:47:28 +00:00
|
|
|
bool fast, bool verbose);
|
2008-08-17 13:53:59 +00:00
|
|
|
static AsmPrinterCtorFn AsmPrinterCtor;
|
|
|
|
|
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; }
|
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
|
|
|
|
2004-07-11 02:48:49 +00:00
|
|
|
static unsigned getModuleMatchQuality(const Module &M);
|
|
|
|
static unsigned getJITMatchQuality();
|
2008-08-17 13:53:59 +00:00
|
|
|
|
|
|
|
static void registerAsmPrinter(AsmPrinterCtorFn F) {
|
|
|
|
AsmPrinterCtor = F;
|
|
|
|
}
|
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
// Set up the pass pipeline.
|
2008-04-23 18:23:05 +00:00
|
|
|
virtual bool addInstSelector(PassManagerBase &PM, bool Fast);
|
|
|
|
virtual bool addPreRegAlloc(PassManagerBase &PM, bool Fast);
|
2008-03-11 22:29:46 +00:00
|
|
|
virtual bool addPostRegAlloc(PassManagerBase &PM, bool Fast);
|
|
|
|
virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast,
|
2009-03-25 01:47:28 +00:00
|
|
|
bool Verbose, raw_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);
|
2008-09-26 19:15:30 +00:00
|
|
|
|
2009-02-09 18:12:09 +00:00
|
|
|
/// symbolicAddressesAreRIPRel - Return true if symbolic addresses are
|
|
|
|
/// RIP-relative on this machine, taking into consideration the relocation
|
|
|
|
/// model and subtarget. RIP-relative addresses cannot have a separate
|
|
|
|
/// base or index register.
|
2008-09-26 19:15:30 +00:00
|
|
|
bool symbolicAddressesAreRIPRel() const;
|
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
|