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