Refactor a bunch of includes so that TargetMachine.h doesn't have to include
[oota-llvm.git] / lib / Target / Alpha / AlphaTargetMachine.h
1 //===-- AlphaTargetMachine.h - Define TargetMachine for Alpha ---*- 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 Alpha-specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef ALPHA_TARGETMACHINE_H
15 #define ALPHA_TARGETMACHINE_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 "AlphaInstrInfo.h"
22 #include "AlphaJITInfo.h"
23 #include "AlphaSubtarget.h"
24
25 namespace llvm {
26
27 class GlobalValue;
28
29 class AlphaTargetMachine : public TargetMachine {
30   const TargetData DataLayout;       // Calculates type size & alignment
31   AlphaInstrInfo InstrInfo;
32   TargetFrameInfo FrameInfo;
33   AlphaJITInfo JITInfo;
34   AlphaSubtarget Subtarget;
35   
36 public:
37   AlphaTargetMachine(const Module &M, const std::string &FS);
38
39   virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
40   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
41   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
42   virtual const MRegisterInfo *getRegisterInfo() const {
43     return &InstrInfo.getRegisterInfo();
44   }
45   virtual const TargetData       *getTargetData() const { return &DataLayout; }
46   virtual TargetJITInfo* getJITInfo() {
47     return &JITInfo;
48   }
49
50   static unsigned getJITMatchQuality();
51
52   virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
53                                           MachineCodeEmitter &MCE);
54
55   virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
56                                    CodeGenFileType FileType, bool Fast);
57
58   static unsigned getModuleMatchQuality(const Module &M);
59 };
60
61 } // end namespace llvm
62
63 #endif