Add a new option to indicate we want the code generator to emit code quickly,not...
[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   virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
45                                           MachineCodeEmitter &MCE);
46
47   virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
48                                    CodeGenFileType FileType, bool Fast);
49
50   static unsigned getModuleMatchQuality(const Module &M);
51   static unsigned getJITMatchQuality();
52 };
53 } // End llvm namespace
54
55 #endif