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