Rip JIT specific stuff out of TargetMachine, as per PR176
[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 was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source 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 "llvm/Target/TargetMachine.h"
18 #include "llvm/Target/TargetFrameInfo.h"
19 #include "llvm/PassManager.h"
20 #include "X86InstrInfo.h"
21 #include "X86JITInfo.h"
22
23 namespace llvm {
24
25 class X86TargetMachine : public TargetMachine {
26   X86InstrInfo    InstrInfo;
27   TargetFrameInfo FrameInfo;
28   X86JITInfo      JITInfo;
29 public:
30   X86TargetMachine(const Module &M);
31
32   virtual const X86InstrInfo     &getInstrInfo() const { return InstrInfo; }
33   virtual const TargetFrameInfo  &getFrameInfo() const { return FrameInfo; }
34   virtual const MRegisterInfo *getRegisterInfo() const {
35     return &InstrInfo.getRegisterInfo();
36   }
37
38   virtual TargetJITInfo *getJITInfo() {
39     return &JITInfo;
40   }
41
42
43   virtual const TargetSchedInfo &getSchedInfo()  const { abort(); }
44   virtual const TargetRegInfo   &getRegInfo()    const { abort(); }
45   virtual const TargetCacheInfo  &getCacheInfo() const { abort(); }
46
47   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
48   /// get machine code emitted.  This uses a MachineCodeEmitter object to handle
49   /// actually outputting the machine code and resolving things like the address
50   /// of functions.  This method should returns true if machine code emission is
51   /// not supported.
52   ///
53   virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
54                                           MachineCodeEmitter &MCE);
55   
56   virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
57 };
58
59 } // End llvm namespace
60
61 #endif