Fix a build breaker.
[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/TargetData.h"
19 #include "llvm/Target/TargetFrameInfo.h"
20 #include "llvm/PassManager.h"
21 #include "X86.h"
22 #include "X86InstrInfo.h"
23 #include "X86JITInfo.h"
24 #include "X86Subtarget.h"
25 #include "X86ISelLowering.h"
26
27 namespace llvm {
28
29 class X86TargetMachine : public TargetMachine {
30   X86Subtarget      Subtarget;
31   const TargetData DataLayout;       // Calculates type size & alignment
32   TargetFrameInfo   FrameInfo;
33   X86InstrInfo      InstrInfo;
34   X86JITInfo        JITInfo;
35   X86TargetLowering TLInfo;
36 public:
37   X86TargetMachine(const Module &M, const std::string &FS);
38
39   virtual const X86InstrInfo     *getInstrInfo() const { return &InstrInfo; }
40   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
41   virtual       TargetJITInfo    *getJITInfo()         { return &JITInfo; }
42   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
43   virtual       X86TargetLowering *getTargetLowering() const { 
44     return const_cast<X86TargetLowering*>(&TLInfo); 
45   }
46   virtual const MRegisterInfo    *getRegisterInfo() const {
47     return &InstrInfo.getRegisterInfo();
48   }
49   virtual const TargetData       *getTargetData() const { return &DataLayout; }
50
51   virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
52                                           MachineCodeEmitter &MCE);
53
54   virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
55                                    CodeGenFileType FileType, bool Fast);
56
57   static unsigned getModuleMatchQuality(const Module &M);
58   static unsigned getJITMatchQuality();
59 };
60 } // End llvm namespace
61
62 #endif