Implement Subtarget support
[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 #include "X86Subtarget.h"
23
24 namespace llvm {
25 class IntrinsicLowering;
26
27 class X86TargetMachine : public TargetMachine {
28   X86InstrInfo    InstrInfo;
29   X86Subtarget    Subtarget;
30   TargetFrameInfo FrameInfo;
31   X86JITInfo      JITInfo;
32 public:
33   X86TargetMachine(const Module &M, IntrinsicLowering *IL);
34
35   virtual const X86InstrInfo     *getInstrInfo() const { return &InstrInfo; }
36   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
37   virtual       TargetJITInfo    *getJITInfo()         { return &JITInfo; }
38   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
39   virtual const MRegisterInfo    *getRegisterInfo() const {
40     return &InstrInfo.getRegisterInfo();
41   }
42
43   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
44   /// get machine code emitted.  This uses a MachineCodeEmitter object to handle
45   /// actually outputting the machine code and resolving things like the address
46   /// of functions.  This method should returns true if machine code emission is
47   /// not supported.
48   ///
49   virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
50                                           MachineCodeEmitter &MCE);
51
52   virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
53                                    CodeGenFileType FileType);
54
55   static unsigned getModuleMatchQuality(const Module &M);
56   static unsigned getJITMatchQuality();
57 };
58 } // End llvm namespace
59
60 #endif