try to match alpha pattern
[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
22 namespace llvm {
23
24 class GlobalValue;
25 class IntrinsicLowering;
26
27 class AlphaTargetMachine : public TargetMachine {
28   AlphaInstrInfo InstrInfo;
29   TargetFrameInfo FrameInfo;
30
31 public:
32   AlphaTargetMachine(const Module &M, IntrinsicLowering *IL);
33   
34   virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }    
35   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
36   virtual const MRegisterInfo *getRegisterInfo() const {
37     return &InstrInfo.getRegisterInfo();
38   }
39  
40   virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
41
42   static unsigned getModuleMatchQuality(const Module &M);
43 };
44
45 } // end namespace llvm
46
47 #endif