Added TargetPassConfig. The first little step toward configuring codegen passes.
[oota-llvm.git] / lib / Target / Mips / MipsTargetMachine.h
1 //===-- MipsTargetMachine.h - Define TargetMachine for Mips -00--*- 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 Mips specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MIPSTARGETMACHINE_H
15 #define MIPSTARGETMACHINE_H
16
17 #include "MipsSubtarget.h"
18 #include "MipsInstrInfo.h"
19 #include "MipsISelLowering.h"
20 #include "MipsFrameLowering.h"
21 #include "MipsSelectionDAGInfo.h"
22 #include "llvm/Target/TargetMachine.h"
23 #include "llvm/Target/TargetData.h"
24 #include "llvm/Target/TargetFrameLowering.h"
25 #include "MipsJITInfo.h"
26
27 namespace llvm {
28   class formatted_raw_ostream;
29
30   class MipsTargetMachine : public LLVMTargetMachine {
31     MipsSubtarget       Subtarget;
32     const TargetData    DataLayout; // Calculates type size & alignment
33     MipsInstrInfo       InstrInfo;
34     MipsFrameLowering   FrameLowering;
35     MipsTargetLowering  TLInfo;
36     MipsSelectionDAGInfo TSInfo;
37     MipsJITInfo JITInfo;
38
39   public:
40     MipsTargetMachine(const Target &T, StringRef TT,
41                       StringRef CPU, StringRef FS, const TargetOptions &Options,
42                       Reloc::Model RM, CodeModel::Model CM,
43                       CodeGenOpt::Level OL,
44                       bool isLittle);
45
46     virtual const MipsInstrInfo   *getInstrInfo()     const
47     { return &InstrInfo; }
48     virtual const TargetFrameLowering *getFrameLowering()     const
49     { return &FrameLowering; }
50     virtual const MipsSubtarget   *getSubtargetImpl() const
51     { return &Subtarget; }
52     virtual const TargetData      *getTargetData()    const
53     { return &DataLayout;}
54     virtual MipsJITInfo *getJITInfo()
55     { return &JITInfo; }
56
57
58     virtual const MipsRegisterInfo *getRegisterInfo()  const {
59       return &InstrInfo.getRegisterInfo();
60     }
61
62     virtual const MipsTargetLowering *getTargetLowering() const {
63       return &TLInfo;
64     }
65
66     virtual const MipsSelectionDAGInfo* getSelectionDAGInfo() const {
67       return &TSInfo;
68     }
69
70     // Pass Pipeline Configuration
71     virtual TargetPassConfig *createPassConfig(PassManagerBase &PM,
72                                                bool DisableVerify);
73     virtual bool addCodeEmitter(PassManagerBase &PM,
74                                  JITCodeEmitter &JCE);
75
76   };
77
78 /// MipsebTargetMachine - Mips32 big endian target machine.
79 ///
80 class MipsebTargetMachine : public MipsTargetMachine {
81   virtual void anchor();
82 public:
83   MipsebTargetMachine(const Target &T, StringRef TT,
84                       StringRef CPU, StringRef FS, const TargetOptions &Options,
85                       Reloc::Model RM, CodeModel::Model CM,
86                       CodeGenOpt::Level OL);
87 };
88
89 /// MipselTargetMachine - Mips32 little endian target machine.
90 ///
91 class MipselTargetMachine : public MipsTargetMachine {
92   virtual void anchor();
93 public:
94   MipselTargetMachine(const Target &T, StringRef TT,
95                       StringRef CPU, StringRef FS, const TargetOptions &Options,
96                       Reloc::Model RM, CodeModel::Model CM,
97                       CodeGenOpt::Level OL);
98 };
99
100 /// Mips64ebTargetMachine - Mips64 big endian target machine.
101 ///
102 class Mips64ebTargetMachine : public MipsTargetMachine {
103   virtual void anchor();
104 public:
105   Mips64ebTargetMachine(const Target &T, StringRef TT,
106                         StringRef CPU, StringRef FS,
107                         const TargetOptions &Options,
108                         Reloc::Model RM, CodeModel::Model CM,
109                         CodeGenOpt::Level OL);
110 };
111
112 /// Mips64elTargetMachine - Mips64 little endian target machine.
113 ///
114 class Mips64elTargetMachine : public MipsTargetMachine {
115   virtual void anchor();
116 public:
117   Mips64elTargetMachine(const Target &T, StringRef TT,
118                         StringRef CPU, StringRef FS,
119                         const TargetOptions &Options,
120                         Reloc::Model RM, CodeModel::Model CM,
121                         CodeGenOpt::Level OL);
122 };
123 } // End llvm namespace
124
125 #endif