1. Use SubtargetFeatures in llc/lli.
[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                    const std::string &FS);
35
36   virtual const X86InstrInfo     *getInstrInfo() const { return &InstrInfo; }
37   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
38   virtual       TargetJITInfo    *getJITInfo()         { return &JITInfo; }
39   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
40   virtual const MRegisterInfo    *getRegisterInfo() const {
41     return &InstrInfo.getRegisterInfo();
42   }
43
44   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
45   /// get machine code emitted.  This uses a MachineCodeEmitter object to handle
46   /// actually outputting the machine code and resolving things like the address
47   /// of functions.  This method should returns true if machine code emission is
48   /// not supported.
49   ///
50   virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
51                                           MachineCodeEmitter &MCE);
52
53   virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
54                                    CodeGenFileType FileType);
55
56   static unsigned getModuleMatchQuality(const Module &M);
57   static unsigned getJITMatchQuality();
58 };
59 } // End llvm namespace
60
61 #endif