LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PPCSubtarget.h
Go to the documentation of this file.
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 "llvm/ADT/Triple.h"
20 #include <string>
21 
22 #define GET_SUBTARGETINFO_HEADER
23 #include "PPCGenSubtargetInfo.inc"
24 
25 // GCC #defines PPC on Linux but we use it as our namespace name
26 #undef PPC
27 
28 namespace llvm {
29 class StringRef;
30 
31 namespace PPC {
32  // -m directive values.
33  enum {
54  };
55 }
56 
57 class GlobalValue;
58 class TargetMachine;
59 
61 protected:
62  /// stackAlignment - The minimum alignment known to hold of the stack frame on
63  /// entry to the function and which must be maintained by every function.
64  unsigned StackAlignment;
65 
66  /// Selected instruction itineraries (one entry per itinerary class.)
68 
69  /// Which cpu directive was used.
70  unsigned DarwinDirective;
71 
72  /// Used by the ISel to turn in optimizations for POWER4-derived architectures
73  bool HasMFOCRF;
76  bool IsPPC64;
77  bool HasAltivec;
78  bool HasQPX;
79  bool HasVSX;
80  bool HasFCPSGN;
81  bool HasFSQRT;
84  bool HasSTFIWX;
85  bool HasLFIWAX;
86  bool HasFPRND;
87  bool HasFPCVT;
88  bool HasISEL;
89  bool HasPOPCNTD;
90  bool HasLDBRX;
91  bool IsBookE;
97 
98  /// TargetTriple - What processor and OS we're targeting.
100 
101 public:
102  /// This constructor initializes the data members to match that
103  /// of the specified triple.
104  ///
105  PPCSubtarget(const std::string &TT, const std::string &CPU,
106  const std::string &FS, bool is64Bit);
107 
108  /// ParseSubtargetFeatures - Parses features string setting specified
109  /// subtarget options. Definition of function is auto generated by tblgen.
111 
112  /// SetJITMode - This is called to inform the subtarget info that we are
113  /// producing code for the JIT.
114  void SetJITMode();
115 
116  /// getStackAlignment - Returns the minimum alignment known to hold of the
117  /// stack frame on entry to the function and which must be maintained by every
118  /// function for this subtarget.
119  unsigned getStackAlignment() const { return StackAlignment; }
120 
121  /// getDarwinDirective - Returns the -m directive specified for the cpu.
122  ///
123  unsigned getDarwinDirective() const { return DarwinDirective; }
124 
125  /// getInstrItins - Return the instruction itineraies based on subtarget
126  /// selection.
128 
129  /// getDataLayoutString - Return the pointer size and type alignment
130  /// properties of this subtarget.
131  const char *getDataLayoutString() const {
132  // Note, the alignment values for f64 and i64 on ppc64 in Darwin
133  // documentation are wrong; these are correct (i.e. "what gcc does").
134  if (isPPC64() && isSVR4ABI()) {
136  return "E-p:64:64-f64:64:64-i64:64:64-v128:128:128-n32:64";
137  else
138  return "E-p:64:64-f64:64:64-i64:64:64-f128:128:128-v128:128:128-n32:64";
139  }
140 
141  return isPPC64() ? "E-p:64:64-f64:64:64-i64:64:64-f128:64:128-n32:64"
142  : "E-p:32:32-f64:64:64-i64:64:64-f128:64:128-n32";
143  }
144 
145  /// \brief Reset the features for the PowerPC target.
146  virtual void resetSubtargetFeatures(const MachineFunction *MF);
147 private:
148  void initializeEnvironment();
150 
151 public:
152  /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
153  ///
154  bool isPPC64() const { return IsPPC64; }
155 
156  /// has64BitSupport - Return true if the selected CPU supports 64-bit
157  /// instructions, regardless of whether we are in 32-bit or 64-bit mode.
158  bool has64BitSupport() const { return Has64BitSupport; }
159 
160  /// use64BitRegs - Return true if in 64-bit mode or if we should use 64-bit
161  /// registers in 32-bit mode when possible. This can only true if
162  /// has64BitSupport() returns true.
163  bool use64BitRegs() const { return Use64BitRegs; }
164 
165  /// hasLazyResolverStub - Return true if accesses to the specified global have
166  /// to go through a dyld lazy resolution stub. This means that an extra load
167  /// is required to get the address of the global.
168  bool hasLazyResolverStub(const GlobalValue *GV,
169  const TargetMachine &TM) const;
170 
171  // isJITCodeModel - True if we're generating code for the JIT
172  bool isJITCodeModel() const { return IsJITCodeModel; }
173 
174  // isLittleEndian - True if generating little-endian code
175  bool isLittleEndian() const { return IsLittleEndian; }
176 
177  // Specific obvious features.
178  bool hasFCPSGN() const { return HasFCPSGN; }
179  bool hasFSQRT() const { return HasFSQRT; }
180  bool hasFRE() const { return HasFRE; }
181  bool hasFRES() const { return HasFRES; }
182  bool hasFRSQRTE() const { return HasFRSQRTE; }
183  bool hasFRSQRTES() const { return HasFRSQRTES; }
184  bool hasRecipPrec() const { return HasRecipPrec; }
185  bool hasSTFIWX() const { return HasSTFIWX; }
186  bool hasLFIWAX() const { return HasLFIWAX; }
187  bool hasFPRND() const { return HasFPRND; }
188  bool hasFPCVT() const { return HasFPCVT; }
189  bool hasAltivec() const { return HasAltivec; }
190  bool hasQPX() const { return HasQPX; }
191  bool hasMFOCRF() const { return HasMFOCRF; }
192  bool hasISEL() const { return HasISEL; }
193  bool hasPOPCNTD() const { return HasPOPCNTD; }
194  bool hasLDBRX() const { return HasLDBRX; }
195  bool isBookE() const { return IsBookE; }
196  bool isDeprecatedMFTB() const { return DeprecatedMFTB; }
197  bool isDeprecatedDST() const { return DeprecatedDST; }
198 
199  const Triple &getTargetTriple() const { return TargetTriple; }
200 
201  /// isDarwin - True if this is any darwin platform.
202  bool isDarwin() const { return TargetTriple.isMacOSX(); }
203  /// isBGP - True if this is a BG/P platform.
204  bool isBGP() const { return TargetTriple.getVendor() == Triple::BGP; }
205  /// isBGQ - True if this is a BG/Q platform.
206  bool isBGQ() const { return TargetTriple.getVendor() == Triple::BGQ; }
207 
208  bool isDarwinABI() const { return isDarwin(); }
209  bool isSVR4ABI() const { return !isDarwin(); }
210 
211  /// enablePostRAScheduler - True at 'More' optimization.
214  RegClassVector& CriticalPathRCs) const;
215 
216  // Scheduling customization.
217  bool enableMachineScheduler() const;
220  MachineInstr *end,
221  unsigned NumRegionInstrs) const;
222  bool useAA() const;
223 };
224 } // End llvm namespace
225 
226 #endif
OSType getOS() const
getOS - Get the parsed operating system type of this triple.
Definition: Triple.h:178
bool hasLDBRX() const
Definition: PPCSubtarget.h:194
const_iterator end(StringRef path)
Get end iterator over path.
Definition: Path.cpp:181
bool use64BitRegs() const
Definition: PPCSubtarget.h:163
bool hasPOPCNTD() const
Definition: PPCSubtarget.h:193
bool hasMFOCRF() const
Definition: PPCSubtarget.h:191
bool isLittleEndian() const
Definition: PPCSubtarget.h:175
void overrideSchedPolicy(MachineSchedPolicy &Policy, MachineInstr *begin, MachineInstr *end, unsigned NumRegionInstrs) const
bool isDarwinABI() const
Definition: PPCSubtarget.h:208
unsigned getStackAlignment() const
Definition: PPCSubtarget.h:119
bool hasISEL() const
Definition: PPCSubtarget.h:192
bool enableMachineScheduler() const
unsigned StackAlignment
Definition: PPCSubtarget.h:64
const_iterator begin(StringRef path)
Get begin iterator over path.
Definition: Path.cpp:173
bool isDarwin() const
isDarwin - True if this is any darwin platform.
Definition: PPCSubtarget.h:202
bool isBGP() const
isBGP - True if this is a BG/P platform.
Definition: PPCSubtarget.h:204
bool hasAltivec() const
Definition: PPCSubtarget.h:189
bool hasQPX() const
Definition: PPCSubtarget.h:190
bool hasLazyResolverStub(const GlobalValue *GV, const TargetMachine &TM) const
bool isMacOSX() const
Definition: Triple.h:303
bool hasFPRND() const
Definition: PPCSubtarget.h:187
bool isJITCodeModel() const
Definition: PPCSubtarget.h:172
unsigned DarwinDirective
Which cpu directive was used.
Definition: PPCSubtarget.h:70
bool enablePostRAScheduler(CodeGenOpt::Level OptLevel, TargetSubtargetInfo::AntiDepBreakMode &Mode, RegClassVector &CriticalPathRCs) const
enablePostRAScheduler - True at 'More' optimization.
bool isBGQ() const
isBGQ - True if this is a BG/Q platform.
Definition: PPCSubtarget.h:206
virtual void resetSubtargetFeatures(const MachineFunction *MF)
Reset the features for the PowerPC target.
const char * getDataLayoutString() const
Definition: PPCSubtarget.h:131
InstrItineraryData InstrItins
Selected instruction itineraries (one entry per itinerary class.)
Definition: PPCSubtarget.h:67
const InstrItineraryData & getInstrItineraryData() const
Definition: PPCSubtarget.h:127
const Triple & getTargetTriple() const
Definition: PPCSubtarget.h:199
bool useAA() const
bool isBookE() const
Definition: PPCSubtarget.h:195
bool hasFSQRT() const
Definition: PPCSubtarget.h:179
bool has64BitSupport() const
Definition: PPCSubtarget.h:158
bool hasFPCVT() const
Definition: PPCSubtarget.h:188
bool isSVR4ABI() const
Definition: PPCSubtarget.h:209
bool hasRecipPrec() const
Definition: PPCSubtarget.h:184
bool hasLFIWAX() const
Definition: PPCSubtarget.h:186
void ParseSubtargetFeatures(StringRef CPU, StringRef FS)
bool isPPC64() const
Definition: PPCSubtarget.h:154
Triple TargetTriple
TargetTriple - What processor and OS we're targeting.
Definition: PPCSubtarget.h:99
bool hasSTFIWX() const
Definition: PPCSubtarget.h:185
bool isDeprecatedMFTB() const
Definition: PPCSubtarget.h:196
bool isDeprecatedDST() const
Definition: PPCSubtarget.h:197
unsigned getDarwinDirective() const
Definition: PPCSubtarget.h:123
VendorType getVendor() const
getVendor - Get the parsed vendor type of this triple.
Definition: Triple.h:175
bool hasFRSQRTE() const
Definition: PPCSubtarget.h:182
bool hasFRES() const
Definition: PPCSubtarget.h:181
bool hasFCPSGN() const
Definition: PPCSubtarget.h:178
bool hasFRE() const
Definition: PPCSubtarget.h:180
bool HasMFOCRF
Used by the ISel to turn in optimizations for POWER4-derived architectures.
Definition: PPCSubtarget.h:73
PPCSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit)
bool hasFRSQRTES() const
Definition: PPCSubtarget.h:183