blob: f9fb424e2d22d50d80010716a696a3b09339e2e3 [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"
Dan Gohmancfbb3232010-05-11 17:31:57 +000026#include "X86SelectionDAGInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027
28namespace llvm {
Owen Anderson847b99b2008-08-21 00:14:44 +000029
David Greene302008d2009-07-14 20:18:05 +000030class formatted_raw_ostream;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000031
32class X86TargetMachine : public LLVMTargetMachine {
33 X86Subtarget Subtarget;
34 const TargetData DataLayout; // Calculates type size & alignment
35 TargetFrameInfo FrameInfo;
36 X86InstrInfo InstrInfo;
37 X86JITInfo JITInfo;
38 X86TargetLowering TLInfo;
Dan Gohmancfbb3232010-05-11 17:31:57 +000039 X86SelectionDAGInfo TSInfo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040 X86ELFWriterInfo ELFWriterInfo;
Evan Cheng8ee6bab2007-12-22 09:40:20 +000041 Reloc::Model DefRelocModel; // Reloc model before it's overridden.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042
Eric Christopher7669c972009-12-21 08:15:29 +000043private:
44 // We have specific defaults for X86.
45 virtual void setCodeModelForJIT();
46 virtual void setCodeModelForStatic();
47
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000049 X86TargetMachine(const Target &T, const std::string &TT,
50 const std::string &FS, bool is64Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051
52 virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
53 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000054 virtual X86JITInfo *getJITInfo() { return &JITInfo; }
55 virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
Dan Gohmandbb121b2010-04-17 15:26:15 +000056 virtual const X86TargetLowering *getTargetLowering() const {
57 return &TLInfo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 }
Dan Gohmancfbb3232010-05-11 17:31:57 +000059 virtual const X86SelectionDAGInfo *getSelectionDAGInfo() const {
60 return &TSInfo;
61 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000062 virtual const X86RegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063 return &InstrInfo.getRegisterInfo();
64 }
65 virtual const TargetData *getTargetData() const { return &DataLayout; }
66 virtual const X86ELFWriterInfo *getELFWriterInfo() const {
67 return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
68 }
69
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 // Set up the pass pipeline.
Bill Wendling5ed22ac2009-04-29 23:29:43 +000071 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
72 virtual bool addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
73 virtual bool addPostRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Jakob Stoklund Olesen0ba75302010-03-25 17:25:00 +000074 virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000075 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000076 JITCodeEmitter &JCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077};
78
79/// X86_32TargetMachine - X86 32-bit target machine.
80///
81class X86_32TargetMachine : public X86TargetMachine {
82public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000083 X86_32TargetMachine(const Target &T, const std::string &M,
84 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085};
86
87/// X86_64TargetMachine - X86 64-bit target machine.
88///
89class X86_64TargetMachine : public X86TargetMachine {
90public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000091 X86_64TargetMachine(const Target &T, const std::string &TT,
92 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093};
94
95} // End llvm namespace
96
97#endif