Make target asm info a property of the target machine.
[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 "AlphaInstrInfo.h"
21 #include "AlphaJITInfo.h"
22 #include "AlphaSubtarget.h"
23 #include "AlphaTargetAsmInfo.h"
24
25 namespace llvm {
26
27 class GlobalValue;
28
29 class AlphaTargetMachine : public LLVMTargetMachine {
30   const TargetData DataLayout;       // Calculates type size & alignment
31   AlphaInstrInfo InstrInfo;
32   TargetFrameInfo FrameInfo;
33   AlphaJITInfo JITInfo;
34   AlphaSubtarget Subtarget;
35   AlphaTargetAsmInfo *AsmInfo;
36   
37 public:
38   AlphaTargetMachine(const Module &M, const std::string &FS);
39   ~AlphaTargetMachine() {
40     if (AsmInfo) delete AsmInfo;
41   }
42
43   virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
44   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
45   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
46   virtual const MRegisterInfo *getRegisterInfo() const {
47     return &InstrInfo.getRegisterInfo();
48   }
49   virtual const TargetData       *getTargetData() const { return &DataLayout; }
50   virtual TargetJITInfo* getJITInfo() {
51     return &JITInfo;
52   }
53
54   virtual const TargetAsmInfo *createTargetAsmInfo() const {
55     return static_cast<const TargetAsmInfo *>(new AlphaTargetAsmInfo(*this));
56   }
57
58   static unsigned getJITMatchQuality();
59   static unsigned getModuleMatchQuality(const Module &M);
60   
61   // Pass Pipeline Configuration
62   virtual bool addInstSelector(FunctionPassManager &PM, bool Fast);
63   virtual bool addPreEmitPass(FunctionPassManager &PM, bool Fast);
64   virtual bool addAssemblyEmitter(FunctionPassManager &PM, bool Fast, 
65                                   std::ostream &Out);
66   virtual bool addCodeEmitter(FunctionPassManager &PM, bool Fast,
67                               MachineCodeEmitter &MCE);
68 };
69
70 } // end namespace llvm
71
72 #endif