[PowerPC] Support ELFv1/ELFv2 ABI selection via features
[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 HasQPX;
87   bool HasVSX;
88   bool HasFCPSGN;
89   bool HasFSQRT;
90   bool HasFRE, HasFRES, HasFRSQRTE, HasFRSQRTES;
91   bool HasRecipPrec;
92   bool HasSTFIWX;
93   bool HasLFIWAX;
94   bool HasFPRND;
95   bool HasFPCVT;
96   bool HasISEL;
97   bool HasPOPCNTD;
98   bool HasLDBRX;
99   bool IsBookE;
100   bool DeprecatedMFTB;
101   bool DeprecatedDST;
102   bool HasLazyResolverStubs;
103   bool IsJITCodeModel;
104   bool IsLittleEndian;
105
106   /// TargetTriple - What processor and OS we're targeting.
107   Triple TargetTriple;
108
109   /// OptLevel - What default optimization level we're emitting code for.
110   CodeGenOpt::Level OptLevel;
111
112   enum {
113     PPC_ABI_UNKNOWN,
114     PPC_ABI_ELFv1,
115     PPC_ABI_ELFv2
116   } TargetABI;
117
118   PPCFrameLowering FrameLowering;
119   const DataLayout DL;
120   PPCInstrInfo InstrInfo;
121   PPCJITInfo JITInfo;
122   PPCTargetLowering TLInfo;
123   PPCSelectionDAGInfo TSInfo;
124
125 public:
126   /// This constructor initializes the data members to match that
127   /// of the specified triple.
128   ///
129   PPCSubtarget(const std::string &TT, const std::string &CPU,
130                const std::string &FS, PPCTargetMachine &TM, bool is64Bit,
131                CodeGenOpt::Level OptLevel);
132
133   /// ParseSubtargetFeatures - Parses features string setting specified
134   /// subtarget options.  Definition of function is auto generated by tblgen.
135   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
136
137   /// SetJITMode - This is called to inform the subtarget info that we are
138   /// producing code for the JIT.
139   void SetJITMode();
140
141   /// getStackAlignment - Returns the minimum alignment known to hold of the
142   /// stack frame on entry to the function and which must be maintained by every
143   /// function for this subtarget.
144   unsigned getStackAlignment() const { return StackAlignment; }
145
146   /// getDarwinDirective - Returns the -m directive specified for the cpu.
147   ///
148   unsigned getDarwinDirective() const { return DarwinDirective; }
149
150   /// getInstrItins - Return the instruction itineraries based on subtarget
151   /// selection.
152   const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
153
154   const PPCFrameLowering *getFrameLowering() const { return &FrameLowering; }
155   const DataLayout *getDataLayout() const { return &DL; }
156   const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
157   PPCJITInfo *getJITInfo() { return &JITInfo; }
158   const PPCTargetLowering *getTargetLowering() const { return &TLInfo; }
159   const PPCSelectionDAGInfo *getSelectionDAGInfo() const { return &TSInfo; }
160
161   /// initializeSubtargetDependencies - Initializes using a CPU and feature string
162   /// so that we can use initializer lists for subtarget initialization.
163   PPCSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
164
165   /// \brief Reset the features for the PowerPC target.
166   void resetSubtargetFeatures(const MachineFunction *MF) override;
167 private:
168   void initializeEnvironment();
169   void resetSubtargetFeatures(StringRef CPU, StringRef FS);
170
171 public:
172   /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
173   ///
174   bool isPPC64() const { return IsPPC64; }
175
176   /// has64BitSupport - Return true if the selected CPU supports 64-bit
177   /// instructions, regardless of whether we are in 32-bit or 64-bit mode.
178   bool has64BitSupport() const { return Has64BitSupport; }
179
180   /// use64BitRegs - Return true if in 64-bit mode or if we should use 64-bit
181   /// registers in 32-bit mode when possible.  This can only true if
182   /// has64BitSupport() returns true.
183   bool use64BitRegs() const { return Use64BitRegs; }
184
185   /// useCRBits - Return true if we should store and manipulate i1 values in
186   /// the individual condition register bits.
187   bool useCRBits() const { return UseCRBits; }
188
189   /// hasLazyResolverStub - Return true if accesses to the specified global have
190   /// to go through a dyld lazy resolution stub.  This means that an extra load
191   /// is required to get the address of the global.
192   bool hasLazyResolverStub(const GlobalValue *GV,
193                            const TargetMachine &TM) const;
194
195   // isJITCodeModel - True if we're generating code for the JIT
196   bool isJITCodeModel() const { return IsJITCodeModel; }
197
198   // isLittleEndian - True if generating little-endian code
199   bool isLittleEndian() const { return IsLittleEndian; }
200
201   // Specific obvious features.
202   bool hasFCPSGN() const { return HasFCPSGN; }
203   bool hasFSQRT() const { return HasFSQRT; }
204   bool hasFRE() const { return HasFRE; }
205   bool hasFRES() const { return HasFRES; }
206   bool hasFRSQRTE() const { return HasFRSQRTE; }
207   bool hasFRSQRTES() const { return HasFRSQRTES; }
208   bool hasRecipPrec() const { return HasRecipPrec; }
209   bool hasSTFIWX() const { return HasSTFIWX; }
210   bool hasLFIWAX() const { return HasLFIWAX; }
211   bool hasFPRND() const { return HasFPRND; }
212   bool hasFPCVT() const { return HasFPCVT; }
213   bool hasAltivec() const { return HasAltivec; }
214   bool hasQPX() const { return HasQPX; }
215   bool hasVSX() const { return HasVSX; }
216   bool hasMFOCRF() const { return HasMFOCRF; }
217   bool hasISEL() const { return HasISEL; }
218   bool hasPOPCNTD() const { return HasPOPCNTD; }
219   bool hasLDBRX() const { return HasLDBRX; }
220   bool isBookE() const { return IsBookE; }
221   bool isDeprecatedMFTB() const { return DeprecatedMFTB; }
222   bool isDeprecatedDST() const { return DeprecatedDST; }
223
224   const Triple &getTargetTriple() const { return TargetTriple; }
225
226   /// isDarwin - True if this is any darwin platform.
227   bool isDarwin() const { return TargetTriple.isMacOSX(); }
228   /// isBGQ - True if this is a BG/Q platform.
229   bool isBGQ() const { return TargetTriple.getVendor() == Triple::BGQ; }
230
231   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
232   bool isTargetMachO() const { return TargetTriple.isOSBinFormatMachO(); }
233
234   bool isDarwinABI() const { return isDarwin(); }
235   bool isSVR4ABI() const { return !isDarwin(); }
236   bool isELFv2ABI() const { return TargetABI == PPC_ABI_ELFv2; }
237
238   bool enableEarlyIfConversion() const override { return hasISEL(); }
239
240   // Scheduling customization.
241   bool enableMachineScheduler() const override;
242   // This overrides the PostRAScheduler bit in the SchedModel for each CPU.
243   bool enablePostMachineScheduler() const override;
244   AntiDepBreakMode getAntiDepBreakMode() const override;
245   void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const override;
246
247   void overrideSchedPolicy(MachineSchedPolicy &Policy,
248                            MachineInstr *begin,
249                            MachineInstr *end,
250                            unsigned NumRegionInstrs) const override;
251   bool useAA() const override;
252 };
253 } // End llvm namespace
254
255 #endif