Add a new interface to allow IR-level passes to access codegen-specific information.
[oota-llvm.git] / lib / Target / X86 / X86TargetMachine.h
1 //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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 "X86.h"
18 #include "X86ELFWriterInfo.h"
19 #include "X86InstrInfo.h"
20 #include "X86ISelLowering.h"
21 #include "X86FrameLowering.h"
22 #include "X86JITInfo.h"
23 #include "X86SelectionDAGInfo.h"
24 #include "X86Subtarget.h"
25 #include "llvm/Target/TargetMachine.h"
26 #include "llvm/DataLayout.h"
27 #include "llvm/Target/TargetFrameLowering.h"
28 #include "llvm/Target/TargetTransformImpl.h"
29
30 namespace llvm {
31
32 class StringRef;
33
34 class X86TargetMachine : public LLVMTargetMachine {
35   X86Subtarget       Subtarget;
36   X86FrameLowering   FrameLowering;
37   X86ELFWriterInfo   ELFWriterInfo;
38   InstrItineraryData InstrItins;
39
40 public:
41   X86TargetMachine(const Target &T, StringRef TT,
42                    StringRef CPU, StringRef FS, const TargetOptions &Options,
43                    Reloc::Model RM, CodeModel::Model CM,
44                    CodeGenOpt::Level OL,
45                    bool is64Bit);
46
47   virtual const X86InstrInfo     *getInstrInfo() const {
48     llvm_unreachable("getInstrInfo not implemented");
49   }
50   virtual const TargetFrameLowering  *getFrameLowering() const {
51     return &FrameLowering;
52   }
53   virtual       X86JITInfo       *getJITInfo()         {
54     llvm_unreachable("getJITInfo not implemented");
55   }
56   virtual const X86Subtarget     *getSubtargetImpl() const{ return &Subtarget; }
57   virtual const X86TargetLowering *getTargetLowering() const {
58     llvm_unreachable("getTargetLowering not implemented");
59   }
60   virtual const X86SelectionDAGInfo *getSelectionDAGInfo() const {
61     llvm_unreachable("getSelectionDAGInfo not implemented");
62   }
63   virtual const X86RegisterInfo  *getRegisterInfo() const {
64     return &getInstrInfo()->getRegisterInfo();
65   }
66   virtual const X86ELFWriterInfo *getELFWriterInfo() const {
67     return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
68   }
69   virtual const InstrItineraryData *getInstrItineraryData() const {
70     return &InstrItins;
71   }
72
73   // Set up the pass pipeline.
74   virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
75
76   virtual bool addCodeEmitter(PassManagerBase &PM,
77                               JITCodeEmitter &JCE);
78 };
79
80 /// X86_32TargetMachine - X86 32-bit target machine.
81 ///
82 class X86_32TargetMachine : public X86TargetMachine {
83   virtual void anchor();
84   const DataLayout  DL; // Calculates type size & alignment
85   X86InstrInfo      InstrInfo;
86   X86SelectionDAGInfo TSInfo;
87   X86TargetLowering TLInfo;
88   X86JITInfo        JITInfo;
89   ScalarTargetTransformImpl STTI;
90   VectorTargetTransformImpl VTTI;
91 public:
92   X86_32TargetMachine(const Target &T, StringRef TT,
93                       StringRef CPU, StringRef FS, const TargetOptions &Options,
94                       Reloc::Model RM, CodeModel::Model CM,
95                       CodeGenOpt::Level OL);
96   virtual const DataLayout *getDataLayout() const { return &DL; }
97   virtual const X86TargetLowering *getTargetLowering() const {
98     return &TLInfo;
99   }
100   virtual const X86SelectionDAGInfo *getSelectionDAGInfo() const {
101     return &TSInfo;
102   }
103   virtual const X86InstrInfo     *getInstrInfo() const {
104     return &InstrInfo;
105   }
106   virtual       X86JITInfo       *getJITInfo()         {
107     return &JITInfo;
108   }
109   virtual const ScalarTargetTransformInfo *getScalarTargetTransformInfo()const {
110     return &STTI;
111   }
112   virtual const VectorTargetTransformInfo *getVectorTargetTransformInfo()const {
113     return &VTTI;
114   }
115 };
116
117 /// X86_64TargetMachine - X86 64-bit target machine.
118 ///
119 class X86_64TargetMachine : public X86TargetMachine {
120   virtual void anchor();
121   const DataLayout  DL; // Calculates type size & alignment
122   X86InstrInfo      InstrInfo;
123   X86SelectionDAGInfo TSInfo;
124   X86TargetLowering TLInfo;
125   X86JITInfo        JITInfo;
126   ScalarTargetTransformImpl STTI;
127   VectorTargetTransformImpl VTTI;
128 public:
129   X86_64TargetMachine(const Target &T, StringRef TT,
130                       StringRef CPU, StringRef FS, const TargetOptions &Options,
131                       Reloc::Model RM, CodeModel::Model CM,
132                       CodeGenOpt::Level OL);
133   virtual const DataLayout *getDataLayout() const { return &DL; }
134   virtual const X86TargetLowering *getTargetLowering() const {
135     return &TLInfo;
136   }
137   virtual const X86SelectionDAGInfo *getSelectionDAGInfo() const {
138     return &TSInfo;
139   }
140   virtual const X86InstrInfo     *getInstrInfo() const {
141     return &InstrInfo;
142   }
143   virtual       X86JITInfo       *getJITInfo()         {
144     return &JITInfo;
145   }
146   virtual const ScalarTargetTransformInfo *getScalarTargetTransformInfo()const {
147     return &STTI;
148   }
149   virtual const VectorTargetTransformInfo *getVectorTargetTransformInfo()const {
150     return &VTTI;
151   }
152 };
153
154 } // End llvm namespace
155
156 #endif