blob: 97d04af998299e8bc45683d764dc9333b9161f54 [file] [log] [blame]
Erich Keaneebba5922017-07-21 22:37:03 +00001//===--- PPC.h - Declare PPC target feature support -------------*- 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 PPC TargetInfo objects.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_LIB_BASIC_TARGETS_PPC_H
15#define LLVM_CLANG_LIB_BASIC_TARGETS_PPC_H
16
17#include "OSTargets.h"
18#include "clang/Basic/TargetInfo.h"
19#include "clang/Basic/TargetOptions.h"
20#include "llvm/ADT/Triple.h"
Stefan Pintiliea6ce3fe2018-06-13 16:05:05 +000021#include "llvm/ADT/StringSwitch.h"
Erich Keaneebba5922017-07-21 22:37:03 +000022#include "llvm/Support/Compiler.h"
23
24namespace clang {
25namespace targets {
26
27// PPC abstract base class
28class LLVM_LIBRARY_VISIBILITY PPCTargetInfo : public TargetInfo {
Stefan Pintiliea6ce3fe2018-06-13 16:05:05 +000029
30 /// Flags for architecture specific defines.
31 typedef enum {
32 ArchDefineNone = 0,
33 ArchDefineName = 1 << 0, // <name> is substituted for arch name.
34 ArchDefinePpcgr = 1 << 1,
35 ArchDefinePpcsq = 1 << 2,
36 ArchDefine440 = 1 << 3,
37 ArchDefine603 = 1 << 4,
38 ArchDefine604 = 1 << 5,
39 ArchDefinePwr4 = 1 << 6,
40 ArchDefinePwr5 = 1 << 7,
41 ArchDefinePwr5x = 1 << 8,
42 ArchDefinePwr6 = 1 << 9,
43 ArchDefinePwr6x = 1 << 10,
44 ArchDefinePwr7 = 1 << 11,
45 ArchDefinePwr8 = 1 << 12,
46 ArchDefinePwr9 = 1 << 13,
47 ArchDefineA2 = 1 << 14,
48 ArchDefineA2q = 1 << 15
49 } ArchDefineTypes;
50
51
Benjamin Kramerffe60e02018-06-13 16:45:12 +000052 ArchDefineTypes ArchDefs = ArchDefineNone;
Erich Keaneebba5922017-07-21 22:37:03 +000053 static const Builtin::Info BuiltinInfo[];
54 static const char *const GCCRegNames[];
55 static const TargetInfo::GCCRegAlias GCCRegAliases[];
56 std::string CPU;
57
58 // Target cpu features.
Benjamin Kramerffe60e02018-06-13 16:45:12 +000059 bool HasAltivec = false;
60 bool HasVSX = false;
61 bool HasP8Vector = false;
62 bool HasP8Crypto = false;
63 bool HasDirectMove = false;
64 bool HasQPX = false;
65 bool HasHTM = false;
66 bool HasBPERMD = false;
67 bool HasExtDiv = false;
68 bool HasP9Vector = false;
Erich Keaneebba5922017-07-21 22:37:03 +000069
70protected:
71 std::string ABI;
72
73public:
74 PPCTargetInfo(const llvm::Triple &Triple, const TargetOptions &)
Benjamin Kramerffe60e02018-06-13 16:45:12 +000075 : TargetInfo(Triple) {
Erich Keaneebba5922017-07-21 22:37:03 +000076 SuitableAlign = 128;
77 SimdDefaultAlign = 128;
78 LongDoubleWidth = LongDoubleAlign = 128;
79 LongDoubleFormat = &llvm::APFloat::PPCDoubleDouble();
80 }
81
Erich Keaneebba5922017-07-21 22:37:03 +000082 // Set the language option for altivec based on our value.
83 void adjust(LangOptions &Opts) override;
84
85 // Note: GCC recognizes the following additional cpus:
86 // 401, 403, 405, 405fp, 440fp, 464, 464fp, 476, 476fp, 505, 740, 801,
87 // 821, 823, 8540, 8548, e300c2, e300c3, e500mc64, e6500, 860, cell,
88 // titan, rs64.
89 bool isValidCPUName(StringRef Name) const override;
Erich Keanee44bdb32018-02-08 23:16:55 +000090 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
Erich Keaneebba5922017-07-21 22:37:03 +000091
92 bool setCPU(const std::string &Name) override {
93 bool CPUKnown = isValidCPUName(Name);
Stefan Pintiliea6ce3fe2018-06-13 16:05:05 +000094 if (CPUKnown) {
Erich Keaneebba5922017-07-21 22:37:03 +000095 CPU = Name;
Stefan Pintiliea6ce3fe2018-06-13 16:05:05 +000096
97 // CPU identification.
98 ArchDefs =
99 (ArchDefineTypes)llvm::StringSwitch<int>(CPU)
100 .Case("440", ArchDefineName)
101 .Case("450", ArchDefineName | ArchDefine440)
102 .Case("601", ArchDefineName)
103 .Case("602", ArchDefineName | ArchDefinePpcgr)
104 .Case("603", ArchDefineName | ArchDefinePpcgr)
105 .Case("603e", ArchDefineName | ArchDefine603 | ArchDefinePpcgr)
106 .Case("603ev", ArchDefineName | ArchDefine603 | ArchDefinePpcgr)
107 .Case("604", ArchDefineName | ArchDefinePpcgr)
108 .Case("604e", ArchDefineName | ArchDefine604 | ArchDefinePpcgr)
109 .Case("620", ArchDefineName | ArchDefinePpcgr)
110 .Case("630", ArchDefineName | ArchDefinePpcgr)
111 .Case("7400", ArchDefineName | ArchDefinePpcgr)
112 .Case("7450", ArchDefineName | ArchDefinePpcgr)
113 .Case("750", ArchDefineName | ArchDefinePpcgr)
114 .Case("970", ArchDefineName | ArchDefinePwr4 | ArchDefinePpcgr |
115 ArchDefinePpcsq)
116 .Case("a2", ArchDefineA2)
117 .Case("a2q", ArchDefineName | ArchDefineA2 | ArchDefineA2q)
118 .Cases("power3", "pwr3", ArchDefinePpcgr)
119 .Cases("power4", "pwr4",
120 ArchDefinePwr4 | ArchDefinePpcgr | ArchDefinePpcsq)
121 .Cases("power5", "pwr5",
122 ArchDefinePwr5 | ArchDefinePwr4 | ArchDefinePpcgr |
123 ArchDefinePpcsq)
124 .Cases("power5x", "pwr5x",
125 ArchDefinePwr5x | ArchDefinePwr5 | ArchDefinePwr4 |
126 ArchDefinePpcgr | ArchDefinePpcsq)
127 .Cases("power6", "pwr6",
128 ArchDefinePwr6 | ArchDefinePwr5x | ArchDefinePwr5 |
129 ArchDefinePwr4 | ArchDefinePpcgr | ArchDefinePpcsq)
130 .Cases("power6x", "pwr6x",
131 ArchDefinePwr6x | ArchDefinePwr6 | ArchDefinePwr5x |
132 ArchDefinePwr5 | ArchDefinePwr4 | ArchDefinePpcgr |
133 ArchDefinePpcsq)
134 .Cases("power7", "pwr7",
135 ArchDefinePwr7 | ArchDefinePwr6x | ArchDefinePwr6 |
136 ArchDefinePwr5x | ArchDefinePwr5 | ArchDefinePwr4 |
137 ArchDefinePpcgr | ArchDefinePpcsq)
138 // powerpc64le automatically defaults to at least power8.
139 .Cases("power8", "pwr8", "ppc64le",
140 ArchDefinePwr8 | ArchDefinePwr7 | ArchDefinePwr6x |
141 ArchDefinePwr6 | ArchDefinePwr5x | ArchDefinePwr5 |
142 ArchDefinePwr4 | ArchDefinePpcgr | ArchDefinePpcsq)
143 .Cases("power9", "pwr9",
144 ArchDefinePwr9 | ArchDefinePwr8 | ArchDefinePwr7 |
145 ArchDefinePwr6x | ArchDefinePwr6 | ArchDefinePwr5x |
146 ArchDefinePwr5 | ArchDefinePwr4 | ArchDefinePpcgr |
147 ArchDefinePpcsq)
148 .Default(ArchDefineNone);
149 }
Erich Keaneebba5922017-07-21 22:37:03 +0000150 return CPUKnown;
151 }
152
153 StringRef getABI() const override { return ABI; }
154
155 ArrayRef<Builtin::Info> getTargetBuiltins() const override;
156
157 bool isCLZForZeroUndef() const override { return false; }
158
159 void getTargetDefines(const LangOptions &Opts,
160 MacroBuilder &Builder) const override;
161
162 bool
163 initFeatureMap(llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags,
164 StringRef CPU,
165 const std::vector<std::string> &FeaturesVec) const override;
166
167 bool handleTargetFeatures(std::vector<std::string> &Features,
168 DiagnosticsEngine &Diags) override;
169
170 bool hasFeature(StringRef Feature) const override;
171
172 void setFeatureEnabled(llvm::StringMap<bool> &Features, StringRef Name,
173 bool Enabled) const override;
174
175 ArrayRef<const char *> getGCCRegNames() const override;
176
177 ArrayRef<TargetInfo::GCCRegAlias> getGCCRegAliases() const override;
178
179 bool validateAsmConstraint(const char *&Name,
180 TargetInfo::ConstraintInfo &Info) const override {
181 switch (*Name) {
182 default:
183 return false;
184 case 'O': // Zero
185 break;
186 case 'b': // Base register
187 case 'f': // Floating point register
188 Info.setAllowsRegister();
189 break;
190 // FIXME: The following are added to allow parsing.
191 // I just took a guess at what the actions should be.
192 // Also, is more specific checking needed? I.e. specific registers?
193 case 'd': // Floating point register (containing 64-bit value)
194 case 'v': // Altivec vector register
195 Info.setAllowsRegister();
196 break;
197 case 'w':
198 switch (Name[1]) {
199 case 'd': // VSX vector register to hold vector double data
200 case 'f': // VSX vector register to hold vector float data
201 case 's': // VSX vector register to hold scalar float data
202 case 'a': // Any VSX register
203 case 'c': // An individual CR bit
Li Jia Hebbaedf22018-11-01 02:32:49 +0000204 case 'i': // FP or VSX register to hold 64-bit integers data
Erich Keaneebba5922017-07-21 22:37:03 +0000205 break;
206 default:
207 return false;
208 }
209 Info.setAllowsRegister();
210 Name++; // Skip over 'w'.
211 break;
212 case 'h': // `MQ', `CTR', or `LINK' register
213 case 'q': // `MQ' register
214 case 'c': // `CTR' register
215 case 'l': // `LINK' register
216 case 'x': // `CR' register (condition register) number 0
217 case 'y': // `CR' register (condition register)
218 case 'z': // `XER[CA]' carry bit (part of the XER register)
219 Info.setAllowsRegister();
220 break;
221 case 'I': // Signed 16-bit constant
222 case 'J': // Unsigned 16-bit constant shifted left 16 bits
223 // (use `L' instead for SImode constants)
224 case 'K': // Unsigned 16-bit constant
225 case 'L': // Signed 16-bit constant shifted left 16 bits
226 case 'M': // Constant larger than 31
227 case 'N': // Exact power of 2
228 case 'P': // Constant whose negation is a signed 16-bit constant
229 case 'G': // Floating point constant that can be loaded into a
230 // register with one instruction per word
231 case 'H': // Integer/Floating point constant that can be loaded
232 // into a register using three instructions
233 break;
234 case 'm': // Memory operand. Note that on PowerPC targets, m can
235 // include addresses that update the base register. It
236 // is therefore only safe to use `m' in an asm statement
237 // if that asm statement accesses the operand exactly once.
238 // The asm statement must also use `%U<opno>' as a
239 // placeholder for the "update" flag in the corresponding
240 // load or store instruction. For example:
241 // asm ("st%U0 %1,%0" : "=m" (mem) : "r" (val));
242 // is correct but:
243 // asm ("st %1,%0" : "=m" (mem) : "r" (val));
244 // is not. Use es rather than m if you don't want the base
245 // register to be updated.
246 case 'e':
247 if (Name[1] != 's')
248 return false;
249 // es: A "stable" memory operand; that is, one which does not
250 // include any automodification of the base register. Unlike
251 // `m', this constraint can be used in asm statements that
252 // might access the operand several times, or that might not
253 // access it at all.
254 Info.setAllowsMemory();
255 Name++; // Skip over 'e'.
256 break;
257 case 'Q': // Memory operand that is an offset from a register (it is
258 // usually better to use `m' or `es' in asm statements)
259 case 'Z': // Memory operand that is an indexed or indirect from a
260 // register (it is usually better to use `m' or `es' in
261 // asm statements)
262 Info.setAllowsMemory();
263 Info.setAllowsRegister();
264 break;
265 case 'R': // AIX TOC entry
266 case 'a': // Address operand that is an indexed or indirect from a
267 // register (`p' is preferable for asm statements)
268 case 'S': // Constant suitable as a 64-bit mask operand
269 case 'T': // Constant suitable as a 32-bit mask operand
270 case 'U': // System V Release 4 small data area reference
271 case 't': // AND masks that can be performed by two rldic{l, r}
272 // instructions
273 case 'W': // Vector constant that does not require memory
274 case 'j': // Vector constant that is all zeros.
275 break;
276 // End FIXME.
277 }
278 return true;
279 }
280
281 std::string convertConstraint(const char *&Constraint) const override {
282 std::string R;
283 switch (*Constraint) {
284 case 'e':
285 case 'w':
286 // Two-character constraint; add "^" hint for later parsing.
287 R = std::string("^") + std::string(Constraint, 2);
288 Constraint++;
289 break;
290 default:
291 return TargetInfo::convertConstraint(Constraint);
292 }
293 return R;
294 }
295
296 const char *getClobbers() const override { return ""; }
297 int getEHDataRegisterNumber(unsigned RegNo) const override {
298 if (RegNo == 0)
299 return 3;
300 if (RegNo == 1)
301 return 4;
302 return -1;
303 }
304
305 bool hasSjLjLowering() const override { return true; }
306
307 bool useFloat128ManglingForLongDouble() const override {
308 return LongDoubleWidth == 128 &&
309 LongDoubleFormat == &llvm::APFloat::PPCDoubleDouble() &&
310 getTriple().isOSBinFormatELF();
311 }
312};
313
314class LLVM_LIBRARY_VISIBILITY PPC32TargetInfo : public PPCTargetInfo {
315public:
316 PPC32TargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
317 : PPCTargetInfo(Triple, Opts) {
318 resetDataLayout("E-m:e-p:32:32-i64:64-n32");
319
320 switch (getTriple().getOS()) {
321 case llvm::Triple::Linux:
322 case llvm::Triple::FreeBSD:
323 case llvm::Triple::NetBSD:
324 SizeType = UnsignedInt;
325 PtrDiffType = SignedInt;
326 IntPtrType = SignedInt;
327 break;
328 default:
329 break;
330 }
331
332 if (getTriple().getOS() == llvm::Triple::FreeBSD) {
333 LongDoubleWidth = LongDoubleAlign = 64;
334 LongDoubleFormat = &llvm::APFloat::IEEEdouble();
335 }
336
337 // PPC32 supports atomics up to 4 bytes.
338 MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 32;
339 }
340
341 BuiltinVaListKind getBuiltinVaListKind() const override {
342 // This is the ELF definition, and is overridden by the Darwin sub-target
343 return TargetInfo::PowerABIBuiltinVaList;
344 }
345};
346
347// Note: ABI differences may eventually require us to have a separate
348// TargetInfo for little endian.
349class LLVM_LIBRARY_VISIBILITY PPC64TargetInfo : public PPCTargetInfo {
350public:
351 PPC64TargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
352 : PPCTargetInfo(Triple, Opts) {
353 LongWidth = LongAlign = PointerWidth = PointerAlign = 64;
354 IntMaxType = SignedLong;
355 Int64Type = SignedLong;
356
357 if ((Triple.getArch() == llvm::Triple::ppc64le)) {
358 resetDataLayout("e-m:e-i64:64-n32:64");
359 ABI = "elfv2";
360 } else {
361 resetDataLayout("E-m:e-i64:64-n32:64");
362 ABI = "elfv1";
363 }
364
365 switch (getTriple().getOS()) {
366 case llvm::Triple::FreeBSD:
367 LongDoubleWidth = LongDoubleAlign = 64;
368 LongDoubleFormat = &llvm::APFloat::IEEEdouble();
369 break;
Erich Keaneebba5922017-07-21 22:37:03 +0000370 default:
371 break;
372 }
373
374 // PPC64 supports atomics up to 8 bytes.
375 MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 64;
376 }
377
378 BuiltinVaListKind getBuiltinVaListKind() const override {
379 return TargetInfo::CharPtrBuiltinVaList;
380 }
381
382 // PPC64 Linux-specific ABI options.
383 bool setABI(const std::string &Name) override {
384 if (Name == "elfv1" || Name == "elfv1-qpx" || Name == "elfv2") {
385 ABI = Name;
386 return true;
387 }
388 return false;
389 }
Bob Wilsonfa84fc92018-05-25 21:26:03 +0000390
391 CallingConvCheckResult checkCallingConvention(CallingConv CC) const override {
392 switch (CC) {
393 case CC_Swift:
394 return CCCR_OK;
395 default:
396 return CCCR_Warning;
397 }
398 }
Erich Keaneebba5922017-07-21 22:37:03 +0000399};
400
401class LLVM_LIBRARY_VISIBILITY DarwinPPC32TargetInfo
402 : public DarwinTargetInfo<PPC32TargetInfo> {
403public:
404 DarwinPPC32TargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
405 : DarwinTargetInfo<PPC32TargetInfo>(Triple, Opts) {
406 HasAlignMac68kSupport = true;
407 BoolWidth = BoolAlign = 32; // XXX support -mone-byte-bool?
408 PtrDiffType = SignedInt; // for http://llvm.org/bugs/show_bug.cgi?id=15726
409 LongLongAlign = 32;
410 resetDataLayout("E-m:o-p:32:32-f64:32:64-n32");
411 }
412
413 BuiltinVaListKind getBuiltinVaListKind() const override {
414 return TargetInfo::CharPtrBuiltinVaList;
415 }
416};
417
418class LLVM_LIBRARY_VISIBILITY DarwinPPC64TargetInfo
419 : public DarwinTargetInfo<PPC64TargetInfo> {
420public:
421 DarwinPPC64TargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
422 : DarwinTargetInfo<PPC64TargetInfo>(Triple, Opts) {
423 HasAlignMac68kSupport = true;
424 resetDataLayout("E-m:o-i64:64-n32:64");
425 }
426};
427
428} // namespace targets
429} // namespace clang
430#endif // LLVM_CLANG_LIB_BASIC_TARGETS_PPC_H