Change target-specific classes to use more precise static types.
[oota-llvm.git] / lib / Target / IA64 / IA64TargetMachine.h
1 //===-- IA64TargetMachine.h - Define TargetMachine for IA64 ---*- C++ -*---===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the IA64 specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TARGET_IA64TARGETMACHINE_H
15 #define LLVM_TARGET_IA64TARGETMACHINE_H
16
17 #include "llvm/Target/TargetMachine.h"
18 #include "llvm/Target/TargetData.h"
19 #include "llvm/Target/TargetFrameInfo.h"
20 #include "IA64InstrInfo.h"
21 #include "IA64ISelLowering.h"
22
23 namespace llvm {
24
25 class IA64TargetMachine : public LLVMTargetMachine {
26   const TargetData DataLayout;       // Calculates type size & alignment
27   IA64InstrInfo      InstrInfo;
28   TargetFrameInfo    FrameInfo;
29   //IA64JITInfo      JITInfo;
30   IA64TargetLowering TLInfo;
31   
32 protected:
33   virtual const TargetAsmInfo *createTargetAsmInfo() const;
34
35 public:
36   IA64TargetMachine(const Module &M, const std::string &FS);
37
38   virtual const IA64InstrInfo      *getInstrInfo() const { return &InstrInfo; }
39   virtual const TargetFrameInfo    *getFrameInfo() const { return &FrameInfo; }
40   virtual       IA64TargetLowering *getTargetLowering() const { 
41     return const_cast<IA64TargetLowering*>(&TLInfo);
42   }
43   virtual const IA64RegisterInfo   *getRegisterInfo() const {
44     return &InstrInfo.getRegisterInfo();
45   }
46   virtual const TargetData       *getTargetData() const { return &DataLayout; }
47   
48   static unsigned getModuleMatchQuality(const Module &M);
49
50   // Pass Pipeline Configuration
51   virtual bool addInstSelector(PassManagerBase &PM, bool Fast);
52   virtual bool addPreEmitPass(PassManagerBase &PM, bool Fast);
53   virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast, 
54                                   std::ostream &Out);
55 };
56 } // End llvm namespace
57
58 #endif
59
60