Instruction scheduling itinerary for Intel Atom.
[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/Target/TargetData.h"
27 #include "llvm/Target/TargetFrameLowering.h"
28
29 namespace llvm {
30   
31 class formatted_raw_ostream;
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 bool addInstSelector(PassManagerBase &PM);
75   virtual bool addPreRegAlloc(PassManagerBase &PM);
76   virtual bool addPostRegAlloc(PassManagerBase &PM);
77   virtual bool addPreEmitPass(PassManagerBase &PM);
78   virtual bool addCodeEmitter(PassManagerBase &PM,
79                               JITCodeEmitter &JCE);
80 };
81
82 /// X86_32TargetMachine - X86 32-bit target machine.
83 ///
84 class X86_32TargetMachine : public X86TargetMachine {
85   virtual void anchor();
86   const TargetData  DataLayout; // Calculates type size & alignment
87   X86InstrInfo      InstrInfo;
88   X86SelectionDAGInfo TSInfo;
89   X86TargetLowering TLInfo;
90   X86JITInfo        JITInfo;
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 TargetData *getTargetData() const { return &DataLayout; }
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 };
110
111 /// X86_64TargetMachine - X86 64-bit target machine.
112 ///
113 class X86_64TargetMachine : public X86TargetMachine {
114   virtual void anchor();
115   const TargetData  DataLayout; // Calculates type size & alignment
116   X86InstrInfo      InstrInfo;
117   X86SelectionDAGInfo TSInfo;
118   X86TargetLowering TLInfo;
119   X86JITInfo        JITInfo;
120 public:
121   X86_64TargetMachine(const Target &T, StringRef TT,
122                       StringRef CPU, StringRef FS, const TargetOptions &Options,
123                       Reloc::Model RM, CodeModel::Model CM,
124                       CodeGenOpt::Level OL);
125   virtual const TargetData *getTargetData() const { return &DataLayout; }
126   virtual const X86TargetLowering *getTargetLowering() const {
127     return &TLInfo;
128   }
129   virtual const X86SelectionDAGInfo *getSelectionDAGInfo() const { 
130     return &TSInfo;
131   }
132   virtual const X86InstrInfo     *getInstrInfo() const {
133     return &InstrInfo;
134   }
135   virtual       X86JITInfo       *getJITInfo()         {
136     return &JITInfo;
137   }
138 };
139
140 } // End llvm namespace
141
142 #endif