Clean up a lot of the code I added yesterday by exposing the IntrinsicLowering
[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 class IntrinsicLowering;
25
26 class X86TargetMachine : public TargetMachine {
27   X86InstrInfo    InstrInfo;
28   TargetFrameInfo FrameInfo;
29   X86JITInfo      JITInfo;
30 public:
31   X86TargetMachine(const Module &M, IntrinsicLowering *IL);
32
33   virtual const X86InstrInfo     &getInstrInfo() const { return InstrInfo; }
34   virtual const TargetFrameInfo  &getFrameInfo() const { return FrameInfo; }
35   virtual const MRegisterInfo *getRegisterInfo() const {
36     return &InstrInfo.getRegisterInfo();
37   }
38
39   virtual TargetJITInfo *getJITInfo() {
40     return &JITInfo;
41   }
42
43
44   virtual const TargetSchedInfo &getSchedInfo()  const { abort(); }
45   virtual const TargetRegInfo   &getRegInfo()    const { abort(); }
46   virtual const TargetCacheInfo  &getCacheInfo() const { abort(); }
47
48   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
49   /// get machine code emitted.  This uses a MachineCodeEmitter object to handle
50   /// actually outputting the machine code and resolving things like the address
51   /// of functions.  This method should returns true if machine code emission is
52   /// not supported.
53   ///
54   virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
55                                           MachineCodeEmitter &MCE);
56   
57   virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
58 };
59
60 } // End llvm namespace
61
62 #endif