Allow itineraries to be passed through the Target Machine.
[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 "llvm/Target/TargetMachine.h"
22
23 namespace llvm {
24 class PassManager;
25 class IntrinsicLowering;
26 class GlobalValue;
27 class IntrinsicLowering;
28
29 class PPCTargetMachine : public TargetMachine {
30   PPCInstrInfo           InstrInfo;
31   PPCSubtarget           Subtarget;
32   PPCFrameInfo           FrameInfo;
33   PPCJITInfo             JITInfo;
34   InstrItineraryData     InstrItins;
35 public:
36   PPCTargetMachine(const Module &M, IntrinsicLowering *IL,
37                    const std::string &FS);
38
39   virtual const PPCInstrInfo     *getInstrInfo() const { return &InstrInfo; }
40   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
41   virtual       TargetJITInfo    *getJITInfo()         { return &JITInfo; }
42   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
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);
57   
58   bool addPassesToEmitMachineCode(FunctionPassManager &PM,
59                                   MachineCodeEmitter &MCE);
60 };
61   
62 } // end namespace llvm
63
64 #endif