Temporarily Revert "Nuke the old JIT." as it's not quite ready to
[oota-llvm.git] / lib / Target / PowerPC / PPCSubtarget.h
1 //===-- PPCSubtarget.h - Define Subtarget for the PPC ----------*- 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 PowerPC specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef POWERPCSUBTARGET_H
15 #define POWERPCSUBTARGET_H
16
17 #include "PPCFrameLowering.h"
18 #include "PPCInstrInfo.h"
19 #include "PPCISelLowering.h"
20 #include "PPCJITInfo.h"
21 #include "PPCSelectionDAGInfo.h"
22 #include "llvm/ADT/Triple.h"
23 #include "llvm/IR/DataLayout.h"
24 #include "llvm/MC/MCInstrItineraries.h"
25 #include "llvm/Target/TargetSubtargetInfo.h"
26 #include <string>
27
28 #define GET_SUBTARGETINFO_HEADER
29 #include "PPCGenSubtargetInfo.inc"
30
31 // GCC #defines PPC on Linux but we use it as our namespace name
32 #undef PPC
33
34 namespace llvm {
35 class StringRef;
36
37 namespace PPC {
38   // -m directive values.
39   enum {
40     DIR_NONE,
41     DIR_32,
42     DIR_440,
43     DIR_601,
44     DIR_602,
45     DIR_603,
46     DIR_7400,
47     DIR_750,
48     DIR_970,
49     DIR_A2,
50     DIR_E500mc,
51     DIR_E5500,
52     DIR_PWR3,
53     DIR_PWR4,
54     DIR_PWR5,
55     DIR_PWR5X,
56     DIR_PWR6,
57     DIR_PWR6X,
58     DIR_PWR7,
59     DIR_PWR8,
60     DIR_64
61   };
62 }
63
64 class GlobalValue;
65 class TargetMachine;
66
67 class PPCSubtarget : public PPCGenSubtargetInfo {
68 protected:
69   /// stackAlignment - The minimum alignment known to hold of the stack frame on
70   /// entry to the function and which must be maintained by every function.
71   unsigned StackAlignment;
72
73   /// Selected instruction itineraries (one entry per itinerary class.)
74   InstrItineraryData InstrItins;
75
76   /// Which cpu directive was used.
77   unsigned DarwinDirective;
78
79   /// Used by the ISel to turn in optimizations for POWER4-derived architectures
80   bool HasMFOCRF;
81   bool Has64BitSupport;
82   bool Use64BitRegs;
83   bool UseCRBits;
84   bool IsPPC64;
85   bool HasAltivec;
86   bool HasSPE;
87   bool HasQPX;
88   bool HasVSX;
89   bool HasFCPSGN;
90   bool HasFSQRT;
91   bool HasFRE, HasFRES, HasFRSQRTE, HasFRSQRTES;
92   bool HasRecipPrec;
93   bool HasSTFIWX;
94   bool HasLFIWAX;
95   bool HasFPRND;
96   bool HasFPCVT;
97   bool HasISEL;
98   bool HasPOPCNTD;
99   bool HasLDBRX;
100   bool IsBookE;
101   bool IsE500;
102   bool IsPPC4xx;
103   bool IsPPC6xx;
104   bool DeprecatedMFTB;
105   bool DeprecatedDST;
106   bool HasLazyResolverStubs;
107   bool IsJITCodeModel;
108   bool IsLittleEndian;
109
110   /// TargetTriple - What processor and OS we're targeting.
111   Triple TargetTriple;
112
113   /// OptLevel - What default optimization level we're emitting code for.
114   CodeGenOpt::Level OptLevel;
115
116   enum {
117     PPC_ABI_UNKNOWN,
118     PPC_ABI_ELFv1,
119     PPC_ABI_ELFv2
120   } TargetABI;
121
122   PPCFrameLowering FrameLowering;
123   const DataLayout DL;
124   PPCInstrInfo InstrInfo;
125   PPCJITInfo JITInfo;
126   PPCTargetLowering TLInfo;
127   PPCSelectionDAGInfo TSInfo;
128
129 public:
130   /// This constructor initializes the data members to match that
131   /// of the specified triple.
132   ///
133   PPCSubtarget(const std::string &TT, const std::string &CPU,
134                const std::string &FS, PPCTargetMachine &TM, bool is64Bit,
135                CodeGenOpt::Level OptLevel);
136
137   /// ParseSubtargetFeatures - Parses features string setting specified
138   /// subtarget options.  Definition of function is auto generated by tblgen.
139   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
140
141   /// SetJITMode - This is called to inform the subtarget info that we are
142   /// producing code for the JIT.
143   void SetJITMode();
144
145   /// getStackAlignment - Returns the minimum alignment known to hold of the
146   /// stack frame on entry to the function and which must be maintained by every
147   /// function for this subtarget.
148   unsigned getStackAlignment() const { return StackAlignment; }
149
150   /// getDarwinDirective - Returns the -m directive specified for the cpu.
151   ///
152   unsigned getDarwinDirective() const { return DarwinDirective; }
153
154   /// getInstrItins - Return the instruction itineraries based on subtarget
155   /// selection.
156   const InstrItineraryData *getInstrItineraryData() const override {
157     return &InstrItins;
158   }
159
160   const PPCFrameLowering *getFrameLowering() const override {
161     return &FrameLowering;
162   }
163   const DataLayout *getDataLayout() const override { return &DL; }
164   const PPCInstrInfo *getInstrInfo() const override { return &InstrInfo; }
165   PPCJITInfo *getJITInfo() override { return &JITInfo; }
166   const PPCTargetLowering *getTargetLowering() const override {
167     return &TLInfo;
168   }
169   const PPCSelectionDAGInfo *getSelectionDAGInfo() const override {
170     return &TSInfo;
171   }
172   const PPCRegisterInfo *getRegisterInfo() const override {
173     return &getInstrInfo()->getRegisterInfo();
174   }
175
176   /// initializeSubtargetDependencies - Initializes using a CPU and feature string
177   /// so that we can use initializer lists for subtarget initialization.
178   PPCSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
179
180   /// \brief Reset the features for the PowerPC target.
181   void resetSubtargetFeatures(const MachineFunction *MF) override;
182 private:
183   void initializeEnvironment();
184   void resetSubtargetFeatures(StringRef CPU, StringRef FS);
185
186 public:
187   /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
188   ///
189   bool isPPC64() const { return IsPPC64; }
190
191   /// has64BitSupport - Return true if the selected CPU supports 64-bit
192   /// instructions, regardless of whether we are in 32-bit or 64-bit mode.
193   bool has64BitSupport() const { return Has64BitSupport; }
194
195   /// use64BitRegs - Return true if in 64-bit mode or if we should use 64-bit
196   /// registers in 32-bit mode when possible.  This can only true if
197   /// has64BitSupport() returns true.
198   bool use64BitRegs() const { return Use64BitRegs; }
199
200   /// useCRBits - Return true if we should store and manipulate i1 values in
201   /// the individual condition register bits.
202   bool useCRBits() const { return UseCRBits; }
203
204   /// hasLazyResolverStub - Return true if accesses to the specified global have
205   /// to go through a dyld lazy resolution stub.  This means that an extra load
206   /// is required to get the address of the global.
207   bool hasLazyResolverStub(const GlobalValue *GV,
208                            const TargetMachine &TM) const;
209
210   // isJITCodeModel - True if we're generating code for the JIT
211   bool isJITCodeModel() const { return IsJITCodeModel; }
212
213   // isLittleEndian - True if generating little-endian code
214   bool isLittleEndian() const { return IsLittleEndian; }
215
216   // Specific obvious features.
217   bool hasFCPSGN() const { return HasFCPSGN; }
218   bool hasFSQRT() const { return HasFSQRT; }
219   bool hasFRE() const { return HasFRE; }
220   bool hasFRES() const { return HasFRES; }
221   bool hasFRSQRTE() const { return HasFRSQRTE; }
222   bool hasFRSQRTES() const { return HasFRSQRTES; }
223   bool hasRecipPrec() const { return HasRecipPrec; }
224   bool hasSTFIWX() const { return HasSTFIWX; }
225   bool hasLFIWAX() const { return HasLFIWAX; }
226   bool hasFPRND() const { return HasFPRND; }
227   bool hasFPCVT() const { return HasFPCVT; }
228   bool hasAltivec() const { return HasAltivec; }
229   bool hasSPE() const { return HasSPE; }
230   bool hasQPX() const { return HasQPX; }
231   bool hasVSX() const { return HasVSX; }
232   bool hasMFOCRF() const { return HasMFOCRF; }
233   bool hasISEL() const { return HasISEL; }
234   bool hasPOPCNTD() const { return HasPOPCNTD; }
235   bool hasLDBRX() const { return HasLDBRX; }
236   bool isBookE() const { return IsBookE; }
237   bool isPPC4xx() const { return IsPPC4xx; }
238   bool isPPC6xx() const { return IsPPC6xx; }
239   bool isE500() const { return IsE500; }
240   bool isDeprecatedMFTB() const { return DeprecatedMFTB; }
241   bool isDeprecatedDST() const { return DeprecatedDST; }
242
243   const Triple &getTargetTriple() const { return TargetTriple; }
244
245   /// isDarwin - True if this is any darwin platform.
246   bool isDarwin() const { return TargetTriple.isMacOSX(); }
247   /// isBGQ - True if this is a BG/Q platform.
248   bool isBGQ() const { return TargetTriple.getVendor() == Triple::BGQ; }
249
250   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
251   bool isTargetMachO() const { return TargetTriple.isOSBinFormatMachO(); }
252
253   bool isDarwinABI() const { return isDarwin(); }
254   bool isSVR4ABI() const { return !isDarwin(); }
255   bool isELFv2ABI() const { return TargetABI == PPC_ABI_ELFv2; }
256
257   bool enableEarlyIfConversion() const override { return hasISEL(); }
258
259   // Scheduling customization.
260   bool enableMachineScheduler() const override;
261   // This overrides the PostRAScheduler bit in the SchedModel for each CPU.
262   bool enablePostMachineScheduler() const override;
263   AntiDepBreakMode getAntiDepBreakMode() const override;
264   void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const override;
265
266   void overrideSchedPolicy(MachineSchedPolicy &Policy,
267                            MachineInstr *begin,
268                            MachineInstr *end,
269                            unsigned NumRegionInstrs) const override;
270   bool useAA() const override;
271 };
272 } // End llvm namespace
273
274 #endif