Eliminate IntrinsicLowering from TargetMachine.
[oota-llvm.git] / lib / Target / PowerPC / PPCTargetMachine.h
1 //===-- PPCTargetMachine.h - Define TargetMachine for PowerPC -----*- 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 PowerPC specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef PPC_TARGETMACHINE_H
15 #define PPC_TARGETMACHINE_H
16
17 #include "PPCFrameInfo.h"
18 #include "PPCSubtarget.h"
19 #include "PPCJITInfo.h"
20 #include "PPCInstrInfo.h"
21 #include "PPCISelLowering.h"
22 #include "llvm/Target/TargetMachine.h"
23
24 namespace llvm {
25 class PassManager;
26 class GlobalValue;
27
28 class PPCTargetMachine : public TargetMachine {
29   PPCInstrInfo           InstrInfo;
30   PPCSubtarget           Subtarget;
31   PPCFrameInfo           FrameInfo;
32   PPCJITInfo             JITInfo;
33   PPCTargetLowering      TLInfo;
34   InstrItineraryData     InstrItins;
35 public:
36   PPCTargetMachine(const Module &M, const std::string &FS);
37
38   virtual const PPCInstrInfo     *getInstrInfo() const { return &InstrInfo; }
39   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
40   virtual       TargetJITInfo    *getJITInfo()         { return &JITInfo; }
41   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
42   virtual       PPCTargetLowering *getTargetLowering() { return &TLInfo; }
43   virtual const MRegisterInfo    *getRegisterInfo() const {
44     return &InstrInfo.getRegisterInfo();
45   }
46   virtual const InstrItineraryData getInstrItineraryData() const {  
47     return InstrItins;
48   }
49   
50
51   static unsigned getJITMatchQuality();
52
53   static unsigned getModuleMatchQuality(const Module &M);
54   
55   virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
56                                    CodeGenFileType FileType, bool Fast);
57   
58   bool addPassesToEmitMachineCode(FunctionPassManager &PM,
59                                   MachineCodeEmitter &MCE);
60 };
61   
62 } // end namespace llvm
63
64 #endif