blob: 2bb54544d408b8ee2d88aaa525c58f103fe35767 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the X86 specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef X86TARGETMACHINE_H
15#define X86TARGETMACHINE_H
16
17#include "llvm/Target/TargetMachine.h"
18#include "llvm/Target/TargetData.h"
19#include "llvm/Target/TargetFrameInfo.h"
20#include "X86.h"
21#include "X86ELFWriterInfo.h"
22#include "X86InstrInfo.h"
23#include "X86JITInfo.h"
24#include "X86Subtarget.h"
25#include "X86ISelLowering.h"
26
27namespace llvm {
Owen Anderson847b99b2008-08-21 00:14:44 +000028
David Greene302008d2009-07-14 20:18:05 +000029class formatted_raw_ostream;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030
31class X86TargetMachine : public LLVMTargetMachine {
32 X86Subtarget Subtarget;
33 const TargetData DataLayout; // Calculates type size & alignment
34 TargetFrameInfo FrameInfo;
35 X86InstrInfo InstrInfo;
36 X86JITInfo JITInfo;
37 X86TargetLowering TLInfo;
38 X86ELFWriterInfo ELFWriterInfo;
Evan Cheng8ee6bab2007-12-22 09:40:20 +000039 Reloc::Model DefRelocModel; // Reloc model before it's overridden.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040
Eric Christopher7669c972009-12-21 08:15:29 +000041private:
42 // We have specific defaults for X86.
43 virtual void setCodeModelForJIT();
44 virtual void setCodeModelForStatic();
45
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000047 X86TargetMachine(const Target &T, const std::string &TT,
48 const std::string &FS, bool is64Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049
50 virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
51 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000052 virtual X86JITInfo *getJITInfo() { return &JITInfo; }
53 virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054 virtual X86TargetLowering *getTargetLowering() const {
55 return const_cast<X86TargetLowering*>(&TLInfo);
56 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000057 virtual const X86RegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 return &InstrInfo.getRegisterInfo();
59 }
60 virtual const TargetData *getTargetData() const { return &DataLayout; }
61 virtual const X86ELFWriterInfo *getELFWriterInfo() const {
62 return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
63 }
64
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065 // Set up the pass pipeline.
Bill Wendling5ed22ac2009-04-29 23:29:43 +000066 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
67 virtual bool addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
68 virtual bool addPostRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000069 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000070 JITCodeEmitter &JCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071};
72
73/// X86_32TargetMachine - X86 32-bit target machine.
74///
75class X86_32TargetMachine : public X86TargetMachine {
76public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000077 X86_32TargetMachine(const Target &T, const std::string &M,
78 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079};
80
81/// X86_64TargetMachine - X86 64-bit target machine.
82///
83class X86_64TargetMachine : public X86TargetMachine {
84public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000085 X86_64TargetMachine(const Target &T, const std::string &TT,
86 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087};
88
89} // End llvm namespace
90
91#endif