Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / lib / Target / PowerPC / PPCSubtarget.h
blobed9d5f1ae56d2dece6dbb1bab381a6d0bfde36df
1 //===-- PPCSubtarget.h - Define Subtarget for the PPC ----------*- C++ -*--===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file declares the PowerPC specific subclass of TargetSubtargetInfo.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_POWERPC_PPCSUBTARGET_H
14 #define LLVM_LIB_TARGET_POWERPC_PPCSUBTARGET_H
16 #include "PPCFrameLowering.h"
17 #include "PPCISelLowering.h"
18 #include "PPCInstrInfo.h"
19 #include "llvm/ADT/Triple.h"
20 #include "llvm/CodeGen/SelectionDAGTargetInfo.h"
21 #include "llvm/CodeGen/TargetSubtargetInfo.h"
22 #include "llvm/IR/DataLayout.h"
23 #include "llvm/MC/MCInstrItineraries.h"
24 #include <string>
26 #define GET_SUBTARGETINFO_HEADER
27 #include "PPCGenSubtargetInfo.inc"
29 // GCC #defines PPC on Linux but we use it as our namespace name
30 #undef PPC
32 namespace llvm {
33 class StringRef;
35 namespace PPC {
36 // -m directive values.
37 enum {
38 DIR_NONE,
39 DIR_32,
40 DIR_440,
41 DIR_601,
42 DIR_602,
43 DIR_603,
44 DIR_7400,
45 DIR_750,
46 DIR_970,
47 DIR_A2,
48 DIR_E500,
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_PWR9,
60 DIR_64
64 class GlobalValue;
65 class TargetMachine;
67 class PPCSubtarget : public PPCGenSubtargetInfo {
68 public:
69 enum POPCNTDKind {
70 POPCNTD_Unavailable,
71 POPCNTD_Slow,
72 POPCNTD_Fast
75 protected:
76 /// TargetTriple - What processor and OS we're targeting.
77 Triple TargetTriple;
79 /// stackAlignment - The minimum alignment known to hold of the stack frame on
80 /// entry to the function and which must be maintained by every function.
81 unsigned StackAlignment;
83 /// Selected instruction itineraries (one entry per itinerary class.)
84 InstrItineraryData InstrItins;
86 /// Which cpu directive was used.
87 unsigned DarwinDirective;
89 /// Used by the ISel to turn in optimizations for POWER4-derived architectures
90 bool HasMFOCRF;
91 bool Has64BitSupport;
92 bool Use64BitRegs;
93 bool UseCRBits;
94 bool HasHardFloat;
95 bool IsPPC64;
96 bool HasAltivec;
97 bool HasFPU;
98 bool HasSPE;
99 bool HasQPX;
100 bool HasVSX;
101 bool HasP8Vector;
102 bool HasP8Altivec;
103 bool HasP8Crypto;
104 bool HasP9Vector;
105 bool HasP9Altivec;
106 bool HasFCPSGN;
107 bool HasFSQRT;
108 bool HasFRE, HasFRES, HasFRSQRTE, HasFRSQRTES;
109 bool HasRecipPrec;
110 bool HasSTFIWX;
111 bool HasLFIWAX;
112 bool HasFPRND;
113 bool HasFPCVT;
114 bool HasISEL;
115 bool HasBPERMD;
116 bool HasExtDiv;
117 bool HasCMPB;
118 bool HasLDBRX;
119 bool IsBookE;
120 bool HasOnlyMSYNC;
121 bool IsE500;
122 bool IsPPC4xx;
123 bool IsPPC6xx;
124 bool FeatureMFTB;
125 bool DeprecatedDST;
126 bool HasLazyResolverStubs;
127 bool IsLittleEndian;
128 bool HasICBT;
129 bool HasInvariantFunctionDescriptors;
130 bool HasPartwordAtomics;
131 bool HasDirectMove;
132 bool HasHTM;
133 bool HasFusion;
134 bool HasFloat128;
135 bool IsISA3_0;
136 bool UseLongCalls;
137 bool SecurePlt;
138 bool VectorsUseTwoUnits;
140 POPCNTDKind HasPOPCNTD;
142 /// When targeting QPX running a stock PPC64 Linux kernel where the stack
143 /// alignment has not been changed, we need to keep the 16-byte alignment
144 /// of the stack.
145 bool IsQPXStackUnaligned;
147 const PPCTargetMachine &TM;
148 PPCFrameLowering FrameLowering;
149 PPCInstrInfo InstrInfo;
150 PPCTargetLowering TLInfo;
151 SelectionDAGTargetInfo TSInfo;
153 public:
154 /// This constructor initializes the data members to match that
155 /// of the specified triple.
157 PPCSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS,
158 const PPCTargetMachine &TM);
160 /// ParseSubtargetFeatures - Parses features string setting specified
161 /// subtarget options. Definition of function is auto generated by tblgen.
162 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
164 /// getStackAlignment - Returns the minimum alignment known to hold of the
165 /// stack frame on entry to the function and which must be maintained by every
166 /// function for this subtarget.
167 unsigned getStackAlignment() const { return StackAlignment; }
169 /// getDarwinDirective - Returns the -m directive specified for the cpu.
171 unsigned getDarwinDirective() const { return DarwinDirective; }
173 /// getInstrItins - Return the instruction itineraries based on subtarget
174 /// selection.
175 const InstrItineraryData *getInstrItineraryData() const override {
176 return &InstrItins;
179 const PPCFrameLowering *getFrameLowering() const override {
180 return &FrameLowering;
182 const PPCInstrInfo *getInstrInfo() const override { return &InstrInfo; }
183 const PPCTargetLowering *getTargetLowering() const override {
184 return &TLInfo;
186 const SelectionDAGTargetInfo *getSelectionDAGInfo() const override {
187 return &TSInfo;
189 const PPCRegisterInfo *getRegisterInfo() const override {
190 return &getInstrInfo()->getRegisterInfo();
192 const PPCTargetMachine &getTargetMachine() const { return TM; }
194 /// initializeSubtargetDependencies - Initializes using a CPU and feature string
195 /// so that we can use initializer lists for subtarget initialization.
196 PPCSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
198 private:
199 void initializeEnvironment();
200 void initSubtargetFeatures(StringRef CPU, StringRef FS);
202 public:
203 /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
205 bool isPPC64() const;
207 /// has64BitSupport - Return true if the selected CPU supports 64-bit
208 /// instructions, regardless of whether we are in 32-bit or 64-bit mode.
209 bool has64BitSupport() const { return Has64BitSupport; }
210 // useSoftFloat - Return true if soft-float option is turned on.
211 bool useSoftFloat() const { return !HasHardFloat; }
213 /// use64BitRegs - Return true if in 64-bit mode or if we should use 64-bit
214 /// registers in 32-bit mode when possible. This can only true if
215 /// has64BitSupport() returns true.
216 bool use64BitRegs() const { return Use64BitRegs; }
218 /// useCRBits - Return true if we should store and manipulate i1 values in
219 /// the individual condition register bits.
220 bool useCRBits() const { return UseCRBits; }
222 /// hasLazyResolverStub - Return true if accesses to the specified global have
223 /// to go through a dyld lazy resolution stub. This means that an extra load
224 /// is required to get the address of the global.
225 bool hasLazyResolverStub(const GlobalValue *GV) const;
227 // isLittleEndian - True if generating little-endian code
228 bool isLittleEndian() const { return IsLittleEndian; }
230 // Specific obvious features.
231 bool hasFCPSGN() const { return HasFCPSGN; }
232 bool hasFSQRT() const { return HasFSQRT; }
233 bool hasFRE() const { return HasFRE; }
234 bool hasFRES() const { return HasFRES; }
235 bool hasFRSQRTE() const { return HasFRSQRTE; }
236 bool hasFRSQRTES() const { return HasFRSQRTES; }
237 bool hasRecipPrec() const { return HasRecipPrec; }
238 bool hasSTFIWX() const { return HasSTFIWX; }
239 bool hasLFIWAX() const { return HasLFIWAX; }
240 bool hasFPRND() const { return HasFPRND; }
241 bool hasFPCVT() const { return HasFPCVT; }
242 bool hasAltivec() const { return HasAltivec; }
243 bool hasSPE() const { return HasSPE; }
244 bool hasFPU() const { return HasFPU; }
245 bool hasQPX() const { return HasQPX; }
246 bool hasVSX() const { return HasVSX; }
247 bool hasP8Vector() const { return HasP8Vector; }
248 bool hasP8Altivec() const { return HasP8Altivec; }
249 bool hasP8Crypto() const { return HasP8Crypto; }
250 bool hasP9Vector() const { return HasP9Vector; }
251 bool hasP9Altivec() const { return HasP9Altivec; }
252 bool hasMFOCRF() const { return HasMFOCRF; }
253 bool hasISEL() const { return HasISEL; }
254 bool hasBPERMD() const { return HasBPERMD; }
255 bool hasExtDiv() const { return HasExtDiv; }
256 bool hasCMPB() const { return HasCMPB; }
257 bool hasLDBRX() const { return HasLDBRX; }
258 bool isBookE() const { return IsBookE; }
259 bool hasOnlyMSYNC() const { return HasOnlyMSYNC; }
260 bool isPPC4xx() const { return IsPPC4xx; }
261 bool isPPC6xx() const { return IsPPC6xx; }
262 bool isSecurePlt() const {return SecurePlt; }
263 bool vectorsUseTwoUnits() const {return VectorsUseTwoUnits; }
264 bool isE500() const { return IsE500; }
265 bool isFeatureMFTB() const { return FeatureMFTB; }
266 bool isDeprecatedDST() const { return DeprecatedDST; }
267 bool hasICBT() const { return HasICBT; }
268 bool hasInvariantFunctionDescriptors() const {
269 return HasInvariantFunctionDescriptors;
271 bool hasPartwordAtomics() const { return HasPartwordAtomics; }
272 bool hasDirectMove() const { return HasDirectMove; }
274 bool isQPXStackUnaligned() const { return IsQPXStackUnaligned; }
275 unsigned getPlatformStackAlignment() const {
276 if ((hasQPX() || isBGQ()) && !isQPXStackUnaligned())
277 return 32;
279 return 16;
282 // DarwinABI has a 224-byte red zone. PPC32 SVR4ABI(Non-DarwinABI) has no
283 // red zone and PPC64 SVR4ABI has a 288-byte red zone.
284 unsigned getRedZoneSize() const {
285 return isDarwinABI() ? 224 : (isPPC64() ? 288 : 0);
288 bool hasHTM() const { return HasHTM; }
289 bool hasFusion() const { return HasFusion; }
290 bool hasFloat128() const { return HasFloat128; }
291 bool isISA3_0() const { return IsISA3_0; }
292 bool useLongCalls() const { return UseLongCalls; }
293 bool needsSwapsForVSXMemOps() const {
294 return hasVSX() && isLittleEndian() && !hasP9Vector();
297 POPCNTDKind hasPOPCNTD() const { return HasPOPCNTD; }
299 const Triple &getTargetTriple() const { return TargetTriple; }
301 /// isDarwin - True if this is any darwin platform.
302 bool isDarwin() const { return TargetTriple.isMacOSX(); }
303 /// isBGQ - True if this is a BG/Q platform.
304 bool isBGQ() const { return TargetTriple.getVendor() == Triple::BGQ; }
306 bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
307 bool isTargetMachO() const { return TargetTriple.isOSBinFormatMachO(); }
308 bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
310 bool isDarwinABI() const { return isTargetMachO() || isDarwin(); }
311 bool isSVR4ABI() const { return !isDarwinABI(); }
312 bool isELFv2ABI() const;
314 /// Originally, this function return hasISEL(). Now we always enable it,
315 /// but may expand the ISEL instruction later.
316 bool enableEarlyIfConversion() const override { return true; }
318 // Scheduling customization.
319 bool enableMachineScheduler() const override;
320 // This overrides the PostRAScheduler bit in the SchedModel for each CPU.
321 bool enablePostRAScheduler() const override;
322 AntiDepBreakMode getAntiDepBreakMode() const override;
323 void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const override;
325 void overrideSchedPolicy(MachineSchedPolicy &Policy,
326 unsigned NumRegionInstrs) const override;
327 bool useAA() const override;
329 bool enableSubRegLiveness() const override;
331 /// classifyGlobalReference - Classify a global variable reference for the
332 /// current subtarget accourding to how we should reference it.
333 unsigned char classifyGlobalReference(const GlobalValue *GV) const;
335 bool isXRaySupported() const override { return IsPPC64 && IsLittleEndian; }
337 } // End llvm namespace
339 #endif