Refactor TargetMachine, pushing handling of TargetData into the target-specific subcl...
[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/TargetFrameInfo.h"
19 #include "llvm/PassManager.h"
20 #include "AlphaInstrInfo.h"
21 #include "AlphaJITInfo.h"
22 #include "AlphaSubtarget.h"
23
24 namespace llvm {
25
26 class GlobalValue;
27
28 class AlphaTargetMachine : public TargetMachine {
29   const TargetData DataLayout;       // Calculates type size & alignment
30   AlphaInstrInfo InstrInfo;
31   TargetFrameInfo FrameInfo;
32   AlphaJITInfo JITInfo;
33   AlphaSubtarget Subtarget;
34   
35 public:
36   AlphaTargetMachine(const Module &M, const std::string &FS);
37
38   virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
39   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
40   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
41   virtual const MRegisterInfo *getRegisterInfo() const {
42     return &InstrInfo.getRegisterInfo();
43   }
44   virtual const TargetData       *getTargetData() const { return &DataLayout; }
45   virtual TargetJITInfo* getJITInfo() {
46     return &JITInfo;
47   }
48
49   static unsigned getJITMatchQuality();
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 };
59
60 } // end namespace llvm
61
62 #endif