9a77a4fcb89a320791071965e96b69d48265f90c
[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 #include "llvm/Target/TargetData.h"
24
25 namespace llvm {
26 class PassManager;
27 class GlobalValue;
28
29 /// PPCTargetMachine - Common code between 32-bit and 64-bit PowerPC targets.
30 ///
31 class PPCTargetMachine : public LLVMTargetMachine {
32   PPCSubtarget        Subtarget;
33   const TargetData    DataLayout;       // Calculates type size & alignment
34   PPCInstrInfo        InstrInfo;
35   PPCFrameInfo        FrameInfo;
36   PPCJITInfo          JITInfo;
37   PPCTargetLowering   TLInfo;
38   InstrItineraryData  InstrItins;
39 public:
40   PPCTargetMachine(const Module &M, const std::string &FS, bool is64Bit);
41
42   virtual const PPCInstrInfo     *getInstrInfo() const { return &InstrInfo; }
43   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
44   virtual       TargetJITInfo    *getJITInfo()         { return &JITInfo; }
45   virtual       PPCTargetLowering *getTargetLowering() const { 
46    return const_cast<PPCTargetLowering*>(&TLInfo); 
47   }
48   virtual const MRegisterInfo    *getRegisterInfo() const {
49     return &InstrInfo.getRegisterInfo();
50   }
51   
52   virtual const TargetData    *getTargetData() const    { return &DataLayout; }
53   virtual const PPCSubtarget  *getSubtargetImpl() const { return &Subtarget; }
54   virtual const InstrItineraryData getInstrItineraryData() const {  
55     return InstrItins;
56   }
57   
58   
59   // Pass Pipeline Configuration
60   virtual bool addInstSelector(FunctionPassManager &PM, bool Fast);
61   virtual bool addPreEmitPass(FunctionPassManager &PM, bool Fast);
62   virtual bool addAssemblyEmitter(FunctionPassManager &PM, bool Fast, 
63                                   std::ostream &Out);
64   virtual bool addObjectWriter(FunctionPassManager &PM, bool Fast,
65                                std::ostream &Out);
66   virtual bool addCodeEmitter(FunctionPassManager &PM, bool Fast,
67                               MachineCodeEmitter &MCE);
68 };
69
70 /// PPC32TargetMachine - PowerPC 32-bit target machine.
71 ///
72 class PPC32TargetMachine : public PPCTargetMachine {
73 public:
74   PPC32TargetMachine(const Module &M, const std::string &FS);
75   
76   static unsigned getJITMatchQuality();
77   static unsigned getModuleMatchQuality(const Module &M);
78 };
79
80 /// PPC64TargetMachine - PowerPC 64-bit target machine.
81 ///
82 class PPC64TargetMachine : public PPCTargetMachine {
83 public:
84   PPC64TargetMachine(const Module &M, const std::string &FS);
85   
86   static unsigned getJITMatchQuality();
87   static unsigned getModuleMatchQuality(const Module &M);
88 };
89
90 } // end namespace llvm
91
92 #endif