blob: bf57f43902d18c09bf0f17a79b96713aeeedce04 [file] [log] [blame]
Sander de Smalen5087ace2020-03-15 14:29:45 +00001//===- SveEmitter.cpp - Generate arm_sve.h for use with clang -*- 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 tablegen backend is responsible for emitting arm_sve.h, which includes
10// a declaration and definition of each function specified by the ARM C/C++
11// Language Extensions (ACLE).
12//
13// For details, visit:
14// https://developer.arm.com/architectures/system-architectures/software-standards/acle
15//
16// Each SVE instruction is implemented in terms of 1 or more functions which
17// are suffixed with the element type of the input vectors. Functions may be
18// implemented in terms of generic vector operations such as +, *, -, etc. or
19// by calling a __builtin_-prefixed function which will be handled by clang's
20// CodeGen library.
21//
22// See also the documentation in include/clang/Basic/arm_sve.td.
23//
24//===----------------------------------------------------------------------===//
25
26#include "llvm/ADT/STLExtras.h"
Sander de Smalenc5b81462020-03-18 11:07:20 +000027#include "llvm/ADT/StringMap.h"
Sander de Smalen5087ace2020-03-15 14:29:45 +000028#include "llvm/ADT/ArrayRef.h"
29#include "llvm/ADT/StringExtras.h"
30#include "llvm/TableGen/Record.h"
31#include "llvm/TableGen/Error.h"
32#include <string>
33#include <sstream>
34#include <set>
35#include <cctype>
Eric Fiselieraf2968e2020-04-16 18:35:31 -040036#include <tuple>
Sander de Smalen5087ace2020-03-15 14:29:45 +000037
38using namespace llvm;
39
Sander de Smalenc5b81462020-03-18 11:07:20 +000040enum ClassKind {
41 ClassNone,
42 ClassS, // signed/unsigned, e.g., "_s8", "_u8" suffix
43 ClassG, // Overloaded name without type suffix
44};
45
46using TypeSpec = std::string;
Sander de Smalen5087ace2020-03-15 14:29:45 +000047
48namespace {
49
Sander de Smalenc8a5b302020-04-14 15:56:36 +010050class ImmCheck {
51 unsigned Arg;
52 unsigned Kind;
53 unsigned ElementSizeInBits;
54
55public:
56 ImmCheck(unsigned Arg, unsigned Kind, unsigned ElementSizeInBits = 0)
57 : Arg(Arg), Kind(Kind), ElementSizeInBits(ElementSizeInBits) {}
58 ImmCheck(const ImmCheck &Other) = default;
59 ~ImmCheck() = default;
60
61 unsigned getArg() const { return Arg; }
62 unsigned getKind() const { return Kind; }
63 unsigned getElementSizeInBits() const { return ElementSizeInBits; }
64};
65
Sander de Smalenc5b81462020-03-18 11:07:20 +000066class SVEType {
67 TypeSpec TS;
68 bool Float, Signed, Immediate, Void, Constant, Pointer;
69 bool DefaultType, IsScalable, Predicate, PredicatePattern, PrefetchOp;
70 unsigned Bitwidth, ElementBitwidth, NumVectors;
71
Sander de Smalen8b409ea2020-03-16 10:14:05 +000072public:
Sander de Smalenc5b81462020-03-18 11:07:20 +000073 SVEType() : SVEType(TypeSpec(), 'v') {}
74
75 SVEType(TypeSpec TS, char CharMod)
76 : TS(TS), Float(false), Signed(true), Immediate(false), Void(false),
77 Constant(false), Pointer(false), DefaultType(false), IsScalable(true),
78 Predicate(false), PredicatePattern(false), PrefetchOp(false),
79 Bitwidth(128), ElementBitwidth(~0U), NumVectors(1) {
80 if (!TS.empty())
81 applyTypespec();
82 applyModifier(CharMod);
83 }
84
Sander de Smalenc5b81462020-03-18 11:07:20 +000085 bool isPointer() const { return Pointer; }
86 bool isVoidPointer() const { return Pointer && Void; }
87 bool isSigned() const { return Signed; }
88 bool isImmediate() const { return Immediate; }
89 bool isScalar() const { return NumVectors == 0; }
90 bool isVector() const { return NumVectors > 0; }
91 bool isScalableVector() const { return isVector() && IsScalable; }
92 bool isChar() const { return ElementBitwidth == 8; }
93 bool isVoid() const { return Void & !Pointer; }
94 bool isDefault() const { return DefaultType; }
95 bool isFloat() const { return Float; }
96 bool isInteger() const { return !Float && !Predicate; }
97 bool isScalarPredicate() const { return !Float && ElementBitwidth == 1; }
98 bool isPredicateVector() const { return Predicate; }
99 bool isPredicatePattern() const { return PredicatePattern; }
100 bool isPrefetchOp() const { return PrefetchOp; }
101 bool isConstant() const { return Constant; }
102 unsigned getElementSizeInBits() const { return ElementBitwidth; }
103 unsigned getNumVectors() const { return NumVectors; }
104
105 unsigned getNumElements() const {
106 assert(ElementBitwidth != ~0U);
107 return Bitwidth / ElementBitwidth;
108 }
109 unsigned getSizeInBits() const {
110 return Bitwidth;
111 }
112
113 /// Return the string representation of a type, which is an encoded
114 /// string for passing to the BUILTIN() macro in Builtins.def.
115 std::string builtin_str() const;
116
Sander de Smalen981f0802020-03-18 15:05:08 +0000117 /// Return the C/C++ string representation of a type for use in the
118 /// arm_sve.h header file.
119 std::string str() const;
120
Sander de Smalenc5b81462020-03-18 11:07:20 +0000121private:
122 /// Creates the type based on the typespec string in TS.
123 void applyTypespec();
124
125 /// Applies a prototype modifier to the type.
126 void applyModifier(char Mod);
127};
128
129
130class SVEEmitter;
131
132/// The main grunt class. This represents an instantiation of an intrinsic with
133/// a particular typespec and prototype.
134class Intrinsic {
135 /// The unmangled name.
136 std::string Name;
137
138 /// The name of the corresponding LLVM IR intrinsic.
139 std::string LLVMName;
140
141 /// Intrinsic prototype.
142 std::string Proto;
143
144 /// The base type spec for this intrinsic.
145 TypeSpec BaseTypeSpec;
146
147 /// The base class kind. Most intrinsics use ClassS, which has full type
148 /// info for integers (_s32/_u32), or ClassG which is used for overloaded
149 /// intrinsics.
150 ClassKind Class;
151
152 /// The architectural #ifdef guard.
153 std::string Guard;
154
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100155 // The merge suffix such as _m, _x or _z.
156 std::string MergeSuffix;
157
Sander de Smalenc5b81462020-03-18 11:07:20 +0000158 /// The types of return value [0] and parameters [1..].
159 std::vector<SVEType> Types;
160
161 /// The "base type", which is VarType('d', BaseTypeSpec).
162 SVEType BaseType;
163
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100164 uint64_t Flags;
Sander de Smalenc5b81462020-03-18 11:07:20 +0000165
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100166 SmallVector<ImmCheck, 2> ImmChecks;
167
Sander de Smalenc5b81462020-03-18 11:07:20 +0000168public:
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100169 Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy,
170 StringRef MergeSuffix, uint64_t MemoryElementTy, StringRef LLVMName,
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100171 uint64_t Flags, ArrayRef<ImmCheck> ImmChecks, TypeSpec BT,
172 ClassKind Class, SVEEmitter &Emitter, StringRef Guard);
Sander de Smalenc5b81462020-03-18 11:07:20 +0000173
174 ~Intrinsic()=default;
175
176 std::string getName() const { return Name; }
177 std::string getLLVMName() const { return LLVMName; }
178 std::string getProto() const { return Proto; }
179 TypeSpec getBaseTypeSpec() const { return BaseTypeSpec; }
180 SVEType getBaseType() const { return BaseType; }
181
182 StringRef getGuard() const { return Guard; }
183 ClassKind getClassKind() const { return Class; }
Sander de Smalenc5b81462020-03-18 11:07:20 +0000184
185 SVEType getReturnType() const { return Types[0]; }
186 ArrayRef<SVEType> getTypes() const { return Types; }
187 SVEType getParamType(unsigned I) const { return Types[I + 1]; }
188 unsigned getNumParams() const { return Proto.size() - 1; }
189
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100190 uint64_t getFlags() const { return Flags; }
Sander de Smalenc5b81462020-03-18 11:07:20 +0000191 bool isFlagSet(uint64_t Flag) const { return Flags & Flag;}
192
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100193 ArrayRef<ImmCheck> getImmChecks() const { return ImmChecks; }
194
Sander de Smalenc5b81462020-03-18 11:07:20 +0000195 /// Return the type string for a BUILTIN() macro in Builtins.def.
196 std::string getBuiltinTypeStr();
197
198 /// Return the name, mangled with type information. The name is mangled for
199 /// ClassS, so will add type suffixes such as _u32/_s32.
200 std::string getMangledName() const { return mangleName(ClassS); }
201
202 /// Returns true if the intrinsic is overloaded, in that it should also generate
203 /// a short form without the type-specifiers, e.g. 'svld1(..)' instead of
204 /// 'svld1_u32(..)'.
205 static bool isOverloadedIntrinsic(StringRef Name) {
206 auto BrOpen = Name.find("[");
207 auto BrClose = Name.find(']');
208 return BrOpen != std::string::npos && BrClose != std::string::npos;
209 }
210
Sander de Smalen41d52662020-04-22 13:58:35 +0100211 /// Return true if the intrinsic takes a splat operand.
212 bool hasSplat() const {
213 // These prototype modifiers are described in arm_sve.td.
214 return Proto.find_first_of("ajfrKLR") != std::string::npos;
215 }
216
217 /// Return the parameter index of the splat operand.
218 unsigned getSplatIdx() const {
219 // These prototype modifiers are described in arm_sve.td.
220 auto Idx = Proto.find_first_of("ajfrKLR");
221 assert(Idx != std::string::npos && Idx > 0 &&
222 "Prototype has no splat operand");
223 return Idx - 1;
224 }
225
Sander de Smalenc5b81462020-03-18 11:07:20 +0000226 /// Emits the intrinsic declaration to the ostream.
227 void emitIntrinsic(raw_ostream &OS) const;
228
229private:
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100230 std::string getMergeSuffix() const { return MergeSuffix; }
Sander de Smalenc5b81462020-03-18 11:07:20 +0000231 std::string mangleName(ClassKind LocalCK) const;
232 std::string replaceTemplatedArgs(std::string Name, TypeSpec TS,
233 std::string Proto) const;
234};
235
236class SVEEmitter {
237private:
238 RecordKeeper &Records;
239 llvm::StringMap<uint64_t> EltTypes;
240 llvm::StringMap<uint64_t> MemEltTypes;
241 llvm::StringMap<uint64_t> FlagTypes;
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100242 llvm::StringMap<uint64_t> MergeTypes;
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100243 llvm::StringMap<uint64_t> ImmCheckTypes;
Sander de Smalenc5b81462020-03-18 11:07:20 +0000244
Sander de Smalenc5b81462020-03-18 11:07:20 +0000245public:
246 SVEEmitter(RecordKeeper &R) : Records(R) {
247 for (auto *RV : Records.getAllDerivedDefinitions("EltType"))
248 EltTypes[RV->getNameInitAsString()] = RV->getValueAsInt("Value");
249 for (auto *RV : Records.getAllDerivedDefinitions("MemEltType"))
250 MemEltTypes[RV->getNameInitAsString()] = RV->getValueAsInt("Value");
251 for (auto *RV : Records.getAllDerivedDefinitions("FlagType"))
252 FlagTypes[RV->getNameInitAsString()] = RV->getValueAsInt("Value");
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100253 for (auto *RV : Records.getAllDerivedDefinitions("MergeType"))
254 MergeTypes[RV->getNameInitAsString()] = RV->getValueAsInt("Value");
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100255 for (auto *RV : Records.getAllDerivedDefinitions("ImmCheckType"))
256 ImmCheckTypes[RV->getNameInitAsString()] = RV->getValueAsInt("Value");
257 }
258
259 /// Returns the enum value for the immcheck type
260 unsigned getEnumValueForImmCheck(StringRef C) const {
261 auto It = ImmCheckTypes.find(C);
262 if (It != ImmCheckTypes.end())
263 return It->getValue();
264 llvm_unreachable("Unsupported imm check");
Sander de Smalenc5b81462020-03-18 11:07:20 +0000265 }
266
Sander de Smalen662cbaf2020-04-22 15:00:01 +0100267 /// Returns the enum value for the flag type
268 uint64_t getEnumValueForFlag(StringRef C) const {
269 auto Res = FlagTypes.find(C);
270 if (Res != FlagTypes.end())
271 return Res->getValue();
272 llvm_unreachable("Unsupported flag");
273 }
274
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100275 // Returns the SVETypeFlags for a given value and mask.
276 uint64_t encodeFlag(uint64_t V, StringRef MaskName) const {
277 auto It = FlagTypes.find(MaskName);
278 if (It != FlagTypes.end()) {
279 uint64_t Mask = It->getValue();
280 unsigned Shift = llvm::countTrailingZeros(Mask);
281 return (V << Shift) & Mask;
282 }
283 llvm_unreachable("Unsupported flag");
284 }
285
286 // Returns the SVETypeFlags for the given element type.
287 uint64_t encodeEltType(StringRef EltName) {
288 auto It = EltTypes.find(EltName);
289 if (It != EltTypes.end())
290 return encodeFlag(It->getValue(), "EltTypeMask");
291 llvm_unreachable("Unsupported EltType");
292 }
293
294 // Returns the SVETypeFlags for the given memory element type.
295 uint64_t encodeMemoryElementType(uint64_t MT) {
296 return encodeFlag(MT, "MemEltTypeMask");
297 }
298
299 // Returns the SVETypeFlags for the given merge type.
300 uint64_t encodeMergeType(uint64_t MT) {
301 return encodeFlag(MT, "MergeTypeMask");
302 }
303
Sander de Smalen41d52662020-04-22 13:58:35 +0100304 // Returns the SVETypeFlags for the given splat operand.
305 unsigned encodeSplatOperand(unsigned SplatIdx) {
306 assert(SplatIdx < 7 && "SplatIdx out of encodable range");
307 return encodeFlag(SplatIdx + 1, "SplatOperandMask");
308 }
309
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100310 // Returns the SVETypeFlags value for the given SVEType.
311 uint64_t encodeTypeFlags(const SVEType &T);
312
Sander de Smalenc5b81462020-03-18 11:07:20 +0000313 /// Emit arm_sve.h.
314 void createHeader(raw_ostream &o);
315
316 /// Emit all the __builtin prototypes and code needed by Sema.
317 void createBuiltins(raw_ostream &o);
318
319 /// Emit all the information needed to map builtin -> LLVM IR intrinsic.
320 void createCodeGenMap(raw_ostream &o);
321
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100322 /// Emit all the range checks for the immediates.
323 void createRangeChecks(raw_ostream &o);
324
Sander de Smalenc5b81462020-03-18 11:07:20 +0000325 /// Create the SVETypeFlags used in CGBuiltins
326 void createTypeFlags(raw_ostream &o);
327
328 /// Create intrinsic and add it to \p Out
329 void createIntrinsic(Record *R, SmallVectorImpl<std::unique_ptr<Intrinsic>> &Out);
Sander de Smalen5087ace2020-03-15 14:29:45 +0000330};
331
332} // end anonymous namespace
333
334
335//===----------------------------------------------------------------------===//
Sander de Smalenc5b81462020-03-18 11:07:20 +0000336// Type implementation
Sander de Smalen8b409ea2020-03-16 10:14:05 +0000337//===----------------------------------------------------------------------===//
Sander de Smalen8b409ea2020-03-16 10:14:05 +0000338
Sander de Smalenc5b81462020-03-18 11:07:20 +0000339std::string SVEType::builtin_str() const {
340 std::string S;
341 if (isVoid())
342 return "v";
343
344 if (isVoidPointer())
345 S += "v";
346 else if (!Float)
347 switch (ElementBitwidth) {
348 case 1: S += "b"; break;
349 case 8: S += "c"; break;
350 case 16: S += "s"; break;
351 case 32: S += "i"; break;
352 case 64: S += "Wi"; break;
353 case 128: S += "LLLi"; break;
354 default: llvm_unreachable("Unhandled case!");
355 }
356 else
357 switch (ElementBitwidth) {
358 case 16: S += "h"; break;
359 case 32: S += "f"; break;
360 case 64: S += "d"; break;
361 default: llvm_unreachable("Unhandled case!");
362 }
363
364 if (!isFloat()) {
365 if ((isChar() || isPointer()) && !isVoidPointer()) {
366 // Make chars and typed pointers explicitly signed.
367 if (Signed)
368 S = "S" + S;
369 else if (!Signed)
370 S = "U" + S;
371 } else if (!isVoidPointer() && !Signed) {
372 S = "U" + S;
373 }
374 }
375
376 // Constant indices are "int", but have the "constant expression" modifier.
377 if (isImmediate()) {
378 assert(!isFloat() && "fp immediates are not supported");
379 S = "I" + S;
380 }
381
382 if (isScalar()) {
383 if (Constant) S += "C";
384 if (Pointer) S += "*";
385 return S;
386 }
387
388 assert(isScalableVector() && "Unsupported type");
389 return "q" + utostr(getNumElements() * NumVectors) + S;
390}
391
Sander de Smalen981f0802020-03-18 15:05:08 +0000392std::string SVEType::str() const {
393 if (isPredicatePattern())
394 return "sv_pattern";
395
396 if (isPrefetchOp())
397 return "sv_prfop";
398
399 std::string S;
400 if (Void)
401 S += "void";
402 else {
403 if (isScalableVector())
404 S += "sv";
405 if (!Signed && !Float)
406 S += "u";
407
408 if (Float)
409 S += "float";
410 else if (isScalarPredicate())
411 S += "bool";
412 else
413 S += "int";
414
415 if (!isScalarPredicate())
416 S += utostr(ElementBitwidth);
417 if (!isScalableVector() && isVector())
418 S += "x" + utostr(getNumElements());
419 if (NumVectors > 1)
420 S += "x" + utostr(NumVectors);
421 S += "_t";
422 }
423
424 if (Constant)
425 S += " const";
426 if (Pointer)
427 S += " *";
428
429 return S;
430}
Sander de Smalenc5b81462020-03-18 11:07:20 +0000431void SVEType::applyTypespec() {
432 for (char I : TS) {
433 switch (I) {
434 case 'P':
435 Predicate = true;
436 ElementBitwidth = 1;
437 break;
438 case 'U':
439 Signed = false;
440 break;
441 case 'c':
442 ElementBitwidth = 8;
443 break;
444 case 's':
445 ElementBitwidth = 16;
446 break;
447 case 'i':
448 ElementBitwidth = 32;
449 break;
450 case 'l':
451 ElementBitwidth = 64;
452 break;
453 case 'h':
454 Float = true;
455 ElementBitwidth = 16;
456 break;
457 case 'f':
458 Float = true;
459 ElementBitwidth = 32;
460 break;
461 case 'd':
462 Float = true;
463 ElementBitwidth = 64;
464 break;
465 default:
466 llvm_unreachable("Unhandled type code!");
467 }
468 }
469 assert(ElementBitwidth != ~0U && "Bad element bitwidth!");
470}
471
472void SVEType::applyModifier(char Mod) {
473 switch (Mod) {
474 case 'v':
475 Void = true;
476 break;
477 case 'd':
478 DefaultType = true;
479 break;
480 case 'c':
481 Constant = true;
482 LLVM_FALLTHROUGH;
483 case 'p':
484 Pointer = true;
485 Bitwidth = ElementBitwidth;
486 NumVectors = 0;
487 break;
Sander de Smalenfc645392020-04-20 14:57:13 +0100488 case 'e':
489 Signed = false;
490 ElementBitwidth /= 2;
491 break;
Sander de Smalen515020c2020-04-20 14:41:58 +0100492 case 'h':
493 ElementBitwidth /= 2;
494 break;
Sander de Smalenfc645392020-04-20 14:57:13 +0100495 case 'q':
496 ElementBitwidth /= 4;
497 break;
498 case 'o':
499 ElementBitwidth *= 4;
500 break;
Sander de Smalenc5b81462020-03-18 11:07:20 +0000501 case 'P':
502 Signed = true;
503 Float = false;
504 Predicate = true;
505 Bitwidth = 16;
506 ElementBitwidth = 1;
507 break;
Sander de Smalen41d52662020-04-22 13:58:35 +0100508 case 'a':
509 Bitwidth = ElementBitwidth;
510 NumVectors = 0;
511 break;
Sander de Smalen515020c2020-04-20 14:41:58 +0100512 case 'u':
513 Predicate = false;
514 Signed = false;
515 Float = false;
516 break;
Andrzej Warzynski72f56582020-04-07 11:09:01 +0100517 case 'x':
518 Predicate = false;
519 Signed = true;
520 Float = false;
521 break;
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100522 case 'i':
523 Predicate = false;
524 Float = false;
525 ElementBitwidth = Bitwidth = 64;
526 NumVectors = 0;
527 Signed = false;
528 Immediate = true;
529 break;
530 case 'I':
531 Predicate = false;
532 Float = false;
533 ElementBitwidth = Bitwidth = 32;
534 NumVectors = 0;
535 Signed = true;
536 Immediate = true;
537 PredicatePattern = true;
538 break;
Sander de Smalen662cbaf2020-04-22 15:00:01 +0100539 case 'k':
540 Predicate = false;
541 Signed = true;
542 Float = false;
543 ElementBitwidth = Bitwidth = 32;
544 NumVectors = 0;
545 break;
Sander de Smalen17a68c62020-04-14 13:17:52 +0100546 case 'l':
547 Predicate = false;
548 Signed = true;
549 Float = false;
550 ElementBitwidth = Bitwidth = 64;
551 NumVectors = 0;
552 break;
Sander de Smalen662cbaf2020-04-22 15:00:01 +0100553 case 'm':
554 Predicate = false;
555 Signed = false;
556 Float = false;
557 ElementBitwidth = Bitwidth = 32;
558 NumVectors = 0;
559 break;
560 case 'n':
561 Predicate = false;
562 Signed = false;
563 Float = false;
564 ElementBitwidth = Bitwidth = 64;
565 NumVectors = 0;
566 break;
Sander de Smalen00216442020-04-23 10:45:13 +0100567 case 'O':
568 Predicate = false;
569 Float = true;
570 ElementBitwidth = 16;
571 break;
572 case 'M':
573 Predicate = false;
574 Float = true;
575 ElementBitwidth = 32;
576 break;
577 case 'N':
578 Predicate = false;
579 Float = true;
580 ElementBitwidth = 64;
581 break;
Sander de Smalen17a68c62020-04-14 13:17:52 +0100582 case 'S':
583 Constant = true;
584 Pointer = true;
585 ElementBitwidth = Bitwidth = 8;
586 NumVectors = 0;
587 Signed = true;
588 break;
589 case 'W':
590 Constant = true;
591 Pointer = true;
592 ElementBitwidth = Bitwidth = 8;
593 NumVectors = 0;
594 Signed = false;
595 break;
596 case 'T':
597 Constant = true;
598 Pointer = true;
599 ElementBitwidth = Bitwidth = 16;
600 NumVectors = 0;
601 Signed = true;
602 break;
603 case 'X':
604 Constant = true;
605 Pointer = true;
606 ElementBitwidth = Bitwidth = 16;
607 NumVectors = 0;
608 Signed = false;
609 break;
610 case 'Y':
611 Constant = true;
612 Pointer = true;
613 ElementBitwidth = Bitwidth = 32;
614 NumVectors = 0;
615 Signed = false;
616 break;
617 case 'U':
618 Constant = true;
619 Pointer = true;
620 ElementBitwidth = Bitwidth = 32;
621 NumVectors = 0;
622 Signed = true;
623 break;
624 case 'A':
625 Pointer = true;
626 ElementBitwidth = Bitwidth = 8;
627 NumVectors = 0;
628 Signed = true;
629 break;
630 case 'B':
631 Pointer = true;
632 ElementBitwidth = Bitwidth = 16;
633 NumVectors = 0;
634 Signed = true;
635 break;
636 case 'C':
637 Pointer = true;
638 ElementBitwidth = Bitwidth = 32;
639 NumVectors = 0;
640 Signed = true;
641 break;
642 case 'D':
643 Pointer = true;
644 ElementBitwidth = Bitwidth = 64;
645 NumVectors = 0;
646 Signed = true;
647 break;
648 case 'E':
649 Pointer = true;
650 ElementBitwidth = Bitwidth = 8;
651 NumVectors = 0;
652 Signed = false;
653 break;
654 case 'F':
655 Pointer = true;
656 ElementBitwidth = Bitwidth = 16;
657 NumVectors = 0;
658 Signed = false;
659 break;
660 case 'G':
661 Pointer = true;
662 ElementBitwidth = Bitwidth = 32;
663 NumVectors = 0;
664 Signed = false;
665 break;
Sander de Smalenc5b81462020-03-18 11:07:20 +0000666 default:
667 llvm_unreachable("Unhandled character!");
668 }
669}
670
671
672//===----------------------------------------------------------------------===//
673// Intrinsic implementation
674//===----------------------------------------------------------------------===//
675
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100676Intrinsic::Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy,
677 StringRef MergeSuffix, uint64_t MemoryElementTy,
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100678 StringRef LLVMName, uint64_t Flags,
679 ArrayRef<ImmCheck> Checks, TypeSpec BT, ClassKind Class,
680 SVEEmitter &Emitter, StringRef Guard)
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100681 : Name(Name.str()), LLVMName(LLVMName), Proto(Proto.str()),
682 BaseTypeSpec(BT), Class(Class), Guard(Guard.str()),
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100683 MergeSuffix(MergeSuffix.str()), BaseType(BT, 'd'), Flags(Flags),
684 ImmChecks(Checks.begin(), Checks.end()) {
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100685
686 // Types[0] is the return value.
687 for (unsigned I = 0; I < Proto.size(); ++I) {
688 SVEType T(BaseTypeSpec, Proto[I]);
689 Types.push_back(T);
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100690
691 // Add range checks for immediates
692 if (I > 0) {
693 if (T.isPredicatePattern())
694 ImmChecks.emplace_back(
695 I - 1, Emitter.getEnumValueForImmCheck("ImmCheck0_31"));
696 }
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100697 }
698
699 // Set flags based on properties
700 this->Flags |= Emitter.encodeTypeFlags(BaseType);
701 this->Flags |= Emitter.encodeMemoryElementType(MemoryElementTy);
702 this->Flags |= Emitter.encodeMergeType(MergeTy);
Sander de Smalen41d52662020-04-22 13:58:35 +0100703 if (hasSplat())
704 this->Flags |= Emitter.encodeSplatOperand(getSplatIdx());
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100705}
706
Sander de Smalenc5b81462020-03-18 11:07:20 +0000707std::string Intrinsic::getBuiltinTypeStr() {
708 std::string S;
709
710 SVEType RetT = getReturnType();
711 // Since the return value must be one type, return a vector type of the
712 // appropriate width which we will bitcast. An exception is made for
713 // returning structs of 2, 3, or 4 vectors which are returned in a sret-like
714 // fashion, storing them to a pointer arg.
715 if (RetT.getNumVectors() > 1) {
716 S += "vv*"; // void result with void* first argument
717 } else
718 S += RetT.builtin_str();
719
720 for (unsigned I = 0; I < getNumParams(); ++I)
721 S += getParamType(I).builtin_str();
722
723 return S;
724}
725
726std::string Intrinsic::replaceTemplatedArgs(std::string Name, TypeSpec TS,
727 std::string Proto) const {
728 std::string Ret = Name;
729 while (Ret.find('{') != std::string::npos) {
730 size_t Pos = Ret.find('{');
731 size_t End = Ret.find('}');
732 unsigned NumChars = End - Pos + 1;
733 assert(NumChars == 3 && "Unexpected template argument");
734
735 SVEType T;
736 char C = Ret[Pos+1];
737 switch(C) {
738 default:
739 llvm_unreachable("Unknown predication specifier");
740 case 'd':
741 T = SVEType(TS, 'd');
742 break;
743 case '0':
744 case '1':
745 case '2':
746 case '3':
747 T = SVEType(TS, Proto[C - '0']);
748 break;
749 }
750
751 // Replace templated arg with the right suffix (e.g. u32)
752 std::string TypeCode;
753 if (T.isInteger())
754 TypeCode = T.isSigned() ? 's' : 'u';
755 else if (T.isPredicateVector())
756 TypeCode = 'b';
757 else
758 TypeCode = 'f';
759 Ret.replace(Pos, NumChars, TypeCode + utostr(T.getElementSizeInBits()));
760 }
761
762 return Ret;
763}
764
Sander de Smalenc5b81462020-03-18 11:07:20 +0000765std::string Intrinsic::mangleName(ClassKind LocalCK) const {
766 std::string S = getName();
767
768 if (LocalCK == ClassG) {
769 // Remove the square brackets and everything in between.
770 while (S.find("[") != std::string::npos) {
771 auto Start = S.find("[");
772 auto End = S.find(']');
773 S.erase(Start, (End-Start)+1);
774 }
775 } else {
776 // Remove the square brackets.
777 while (S.find("[") != std::string::npos) {
778 auto BrPos = S.find('[');
779 if (BrPos != std::string::npos)
780 S.erase(BrPos, 1);
781 BrPos = S.find(']');
782 if (BrPos != std::string::npos)
783 S.erase(BrPos, 1);
784 }
785 }
786
787 // Replace all {d} like expressions with e.g. 'u32'
788 return replaceTemplatedArgs(S, getBaseTypeSpec(), getProto()) +
789 getMergeSuffix();
790}
791
792void Intrinsic::emitIntrinsic(raw_ostream &OS) const {
793 // Use the preprocessor to
794 if (getClassKind() != ClassG || getProto().size() <= 1) {
795 OS << "#define " << mangleName(getClassKind())
796 << "(...) __builtin_sve_" << mangleName(ClassS)
797 << "(__VA_ARGS__)\n";
798 } else {
Sander de Smalen981f0802020-03-18 15:05:08 +0000799 std::string FullName = mangleName(ClassS);
800 std::string ProtoName = mangleName(ClassG);
801
802 OS << "__aio __attribute__((__clang_arm_builtin_alias("
803 << "__builtin_sve_" << FullName << ")))\n";
804
805 OS << getTypes()[0].str() << " " << ProtoName << "(";
806 for (unsigned I = 0; I < getTypes().size() - 1; ++I) {
807 if (I != 0)
808 OS << ", ";
809 OS << getTypes()[I + 1].str();
810 }
811 OS << ");\n";
Sander de Smalenc5b81462020-03-18 11:07:20 +0000812 }
813}
814
815//===----------------------------------------------------------------------===//
816// SVEEmitter implementation
817//===----------------------------------------------------------------------===//
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100818uint64_t SVEEmitter::encodeTypeFlags(const SVEType &T) {
819 if (T.isFloat()) {
820 switch (T.getElementSizeInBits()) {
821 case 16:
822 return encodeEltType("EltTyFloat16");
823 case 32:
824 return encodeEltType("EltTyFloat32");
825 case 64:
826 return encodeEltType("EltTyFloat64");
827 default:
828 llvm_unreachable("Unhandled float element bitwidth!");
829 }
830 }
831
832 if (T.isPredicateVector()) {
833 switch (T.getElementSizeInBits()) {
834 case 8:
835 return encodeEltType("EltTyBool8");
836 case 16:
837 return encodeEltType("EltTyBool16");
838 case 32:
839 return encodeEltType("EltTyBool32");
840 case 64:
841 return encodeEltType("EltTyBool64");
842 default:
843 llvm_unreachable("Unhandled predicate element bitwidth!");
844 }
845 }
846
847 switch (T.getElementSizeInBits()) {
848 case 8:
849 return encodeEltType("EltTyInt8");
850 case 16:
851 return encodeEltType("EltTyInt16");
852 case 32:
853 return encodeEltType("EltTyInt32");
854 case 64:
855 return encodeEltType("EltTyInt64");
856 default:
857 llvm_unreachable("Unhandled integer element bitwidth!");
858 }
859}
860
Sander de Smalenc5b81462020-03-18 11:07:20 +0000861void SVEEmitter::createIntrinsic(
862 Record *R, SmallVectorImpl<std::unique_ptr<Intrinsic>> &Out) {
863 StringRef Name = R->getValueAsString("Name");
864 StringRef Proto = R->getValueAsString("Prototype");
865 StringRef Types = R->getValueAsString("Types");
866 StringRef Guard = R->getValueAsString("ArchGuard");
867 StringRef LLVMName = R->getValueAsString("LLVMIntrinsic");
Sander de Smalenf6ea0262020-04-14 15:31:20 +0100868 uint64_t Merge = R->getValueAsInt("Merge");
869 StringRef MergeSuffix = R->getValueAsString("MergeSuffix");
870 uint64_t MemEltType = R->getValueAsInt("MemEltType");
Sander de Smalenc5b81462020-03-18 11:07:20 +0000871 std::vector<Record*> FlagsList = R->getValueAsListOfDefs("Flags");
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100872 std::vector<Record*> ImmCheckList = R->getValueAsListOfDefs("ImmChecks");
Sander de Smalenc5b81462020-03-18 11:07:20 +0000873
874 int64_t Flags = 0;
875 for (auto FlagRec : FlagsList)
876 Flags |= FlagRec->getValueAsInt("Value");
Sander de Smalenc5b81462020-03-18 11:07:20 +0000877
Sander de Smalen662cbaf2020-04-22 15:00:01 +0100878 // Create a dummy TypeSpec for non-overloaded builtins.
879 if (Types.empty()) {
880 assert((Flags & getEnumValueForFlag("IsOverloadNone")) &&
881 "Expect TypeSpec for overloaded builtin!");
882 Types = "i";
883 }
884
Sander de Smalenc5b81462020-03-18 11:07:20 +0000885 // Extract type specs from string
886 SmallVector<TypeSpec, 8> TypeSpecs;
887 TypeSpec Acc;
888 for (char I : Types) {
889 Acc.push_back(I);
890 if (islower(I)) {
891 TypeSpecs.push_back(TypeSpec(Acc));
892 Acc.clear();
893 }
894 }
895
896 // Remove duplicate type specs.
Benjamin Kramer4065e922020-03-28 19:19:55 +0100897 llvm::sort(TypeSpecs);
Sander de Smalenc5b81462020-03-18 11:07:20 +0000898 TypeSpecs.erase(std::unique(TypeSpecs.begin(), TypeSpecs.end()),
899 TypeSpecs.end());
900
901 // Create an Intrinsic for each type spec.
902 for (auto TS : TypeSpecs) {
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100903 // Collate a list of range/option checks for the immediates.
904 SmallVector<ImmCheck, 2> ImmChecks;
905 for (auto *R : ImmCheckList) {
Christopher Tetreault464a0692020-04-15 15:16:17 -0700906 int64_t Arg = R->getValueAsInt("Arg");
907 int64_t EltSizeArg = R->getValueAsInt("EltSizeArg");
908 int64_t Kind = R->getValueAsDef("Kind")->getValueAsInt("Value");
909 assert(Arg >= 0 && Kind >= 0 && "Arg and Kind must be nonnegative");
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100910
911 unsigned ElementSizeInBits = 0;
912 if (EltSizeArg >= 0)
913 ElementSizeInBits =
914 SVEType(TS, Proto[EltSizeArg + /* offset by return arg */ 1])
915 .getElementSizeInBits();
916 ImmChecks.push_back(ImmCheck(Arg, Kind, ElementSizeInBits));
917 }
918
919 Out.push_back(std::make_unique<Intrinsic>(
920 Name, Proto, Merge, MergeSuffix, MemEltType, LLVMName, Flags, ImmChecks,
921 TS, ClassS, *this, Guard));
Sander de Smalen981f0802020-03-18 15:05:08 +0000922
923 // Also generate the short-form (e.g. svadd_m) for the given type-spec.
924 if (Intrinsic::isOverloadedIntrinsic(Name))
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100925 Out.push_back(std::make_unique<Intrinsic>(
926 Name, Proto, Merge, MergeSuffix, MemEltType, LLVMName, Flags,
927 ImmChecks, TS, ClassG, *this, Guard));
Sander de Smalenc5b81462020-03-18 11:07:20 +0000928 }
929}
930
931void SVEEmitter::createHeader(raw_ostream &OS) {
Sander de Smalen5087ace2020-03-15 14:29:45 +0000932 OS << "/*===---- arm_sve.h - ARM SVE intrinsics "
933 "-----------------------------------===\n"
934 " *\n"
935 " *\n"
936 " * Part of the LLVM Project, under the Apache License v2.0 with LLVM "
937 "Exceptions.\n"
938 " * See https://llvm.org/LICENSE.txt for license information.\n"
939 " * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception\n"
940 " *\n"
941 " *===-----------------------------------------------------------------"
942 "------===\n"
943 " */\n\n";
944
945 OS << "#ifndef __ARM_SVE_H\n";
946 OS << "#define __ARM_SVE_H\n\n";
947
948 OS << "#if !defined(__ARM_FEATURE_SVE)\n";
949 OS << "#error \"SVE support not enabled\"\n";
950 OS << "#else\n\n";
951
952 OS << "#include <stdint.h>\n\n";
Sander de Smalenc5b81462020-03-18 11:07:20 +0000953 OS << "#ifdef __cplusplus\n";
954 OS << "extern \"C\" {\n";
955 OS << "#else\n";
Sander de Smalen5087ace2020-03-15 14:29:45 +0000956 OS << "#include <stdbool.h>\n";
957 OS << "#endif\n\n";
958
959 OS << "typedef __fp16 float16_t;\n";
960 OS << "typedef float float32_t;\n";
961 OS << "typedef double float64_t;\n";
962 OS << "typedef bool bool_t;\n\n";
963
964 OS << "typedef __SVInt8_t svint8_t;\n";
965 OS << "typedef __SVInt16_t svint16_t;\n";
966 OS << "typedef __SVInt32_t svint32_t;\n";
967 OS << "typedef __SVInt64_t svint64_t;\n";
968 OS << "typedef __SVUint8_t svuint8_t;\n";
969 OS << "typedef __SVUint16_t svuint16_t;\n";
970 OS << "typedef __SVUint32_t svuint32_t;\n";
971 OS << "typedef __SVUint64_t svuint64_t;\n";
972 OS << "typedef __SVFloat16_t svfloat16_t;\n";
973 OS << "typedef __SVFloat32_t svfloat32_t;\n";
974 OS << "typedef __SVFloat64_t svfloat64_t;\n";
975 OS << "typedef __SVBool_t svbool_t;\n\n";
976
Sander de Smalenc8a5b302020-04-14 15:56:36 +0100977 OS << "typedef enum\n";
978 OS << "{\n";
979 OS << " SV_POW2 = 0,\n";
980 OS << " SV_VL1 = 1,\n";
981 OS << " SV_VL2 = 2,\n";
982 OS << " SV_VL3 = 3,\n";
983 OS << " SV_VL4 = 4,\n";
984 OS << " SV_VL5 = 5,\n";
985 OS << " SV_VL6 = 6,\n";
986 OS << " SV_VL7 = 7,\n";
987 OS << " SV_VL8 = 8,\n";
988 OS << " SV_VL16 = 9,\n";
989 OS << " SV_VL32 = 10,\n";
990 OS << " SV_VL64 = 11,\n";
991 OS << " SV_VL128 = 12,\n";
992 OS << " SV_VL256 = 13,\n";
993 OS << " SV_MUL4 = 29,\n";
994 OS << " SV_MUL3 = 30,\n";
995 OS << " SV_ALL = 31\n";
996 OS << "} sv_pattern;\n\n";
997
Sander de Smalen981f0802020-03-18 15:05:08 +0000998 OS << "/* Function attributes */\n";
999 OS << "#define __aio static inline __attribute__((__always_inline__, "
1000 "__nodebug__, __overloadable__))\n\n";
1001
Sander de Smalenc5b81462020-03-18 11:07:20 +00001002 SmallVector<std::unique_ptr<Intrinsic>, 128> Defs;
1003 std::vector<Record *> RV = Records.getAllDerivedDefinitions("Inst");
1004 for (auto *R : RV)
1005 createIntrinsic(R, Defs);
Sander de Smalen5087ace2020-03-15 14:29:45 +00001006
Sander de Smalenc5b81462020-03-18 11:07:20 +00001007 // Sort intrinsics in header file by following order/priority:
1008 // - Architectural guard (i.e. does it require SVE2 or SVE2_AES)
1009 // - Class (is intrinsic overloaded or not)
1010 // - Intrinsic name
1011 std::stable_sort(
1012 Defs.begin(), Defs.end(), [](const std::unique_ptr<Intrinsic> &A,
1013 const std::unique_ptr<Intrinsic> &B) {
Eric Fiselieraf2968e2020-04-16 18:35:31 -04001014 auto ToTuple = [](const std::unique_ptr<Intrinsic> &I) {
1015 return std::make_tuple(I->getGuard(), (unsigned)I->getClassKind(), I->getName());
1016 };
1017 return ToTuple(A) < ToTuple(B);
Sander de Smalenc5b81462020-03-18 11:07:20 +00001018 });
1019
1020 StringRef InGuard = "";
1021 for (auto &I : Defs) {
1022 // Emit #endif/#if pair if needed.
1023 if (I->getGuard() != InGuard) {
1024 if (!InGuard.empty())
1025 OS << "#endif //" << InGuard << "\n";
1026 InGuard = I->getGuard();
1027 if (!InGuard.empty())
1028 OS << "\n#if " << InGuard << "\n";
1029 }
1030
1031 // Actually emit the intrinsic declaration.
1032 I->emitIntrinsic(OS);
1033 }
1034
1035 if (!InGuard.empty())
1036 OS << "#endif //" << InGuard << "\n";
1037
Sander de Smalen00216442020-04-23 10:45:13 +01001038 OS << "#if defined(__ARM_FEATURE_SVE2)\n";
1039 OS << "#define svcvtnt_f16_x svcvtnt_f16_m\n";
1040 OS << "#define svcvtnt_f16_f32_x svcvtnt_f16_f32_m\n";
1041 OS << "#define svcvtnt_f32_x svcvtnt_f32_m\n";
1042 OS << "#define svcvtnt_f32_f64_x svcvtnt_f32_f64_m\n\n";
1043
1044 OS << "#define svcvtxnt_f32_x svcvtxnt_f32_m\n";
1045 OS << "#define svcvtxnt_f32_f64_x svcvtxnt_f32_f64_m\n\n";
1046
1047 OS << "#endif /*__ARM_FEATURE_SVE2 */\n\n";
1048
Sander de Smalenc5b81462020-03-18 11:07:20 +00001049 OS << "#ifdef __cplusplus\n";
1050 OS << "} // extern \"C\"\n";
1051 OS << "#endif\n\n";
1052 OS << "#endif /*__ARM_FEATURE_SVE */\n\n";
Sander de Smalen5087ace2020-03-15 14:29:45 +00001053 OS << "#endif /* __ARM_SVE_H */\n";
1054}
1055
Sander de Smalenc5b81462020-03-18 11:07:20 +00001056void SVEEmitter::createBuiltins(raw_ostream &OS) {
1057 std::vector<Record *> RV = Records.getAllDerivedDefinitions("Inst");
1058 SmallVector<std::unique_ptr<Intrinsic>, 128> Defs;
1059 for (auto *R : RV)
1060 createIntrinsic(R, Defs);
1061
1062 // The mappings must be sorted based on BuiltinID.
1063 llvm::sort(Defs, [](const std::unique_ptr<Intrinsic> &A,
1064 const std::unique_ptr<Intrinsic> &B) {
1065 return A->getMangledName() < B->getMangledName();
1066 });
1067
1068 OS << "#ifdef GET_SVE_BUILTINS\n";
1069 for (auto &Def : Defs) {
1070 // Only create BUILTINs for non-overloaded intrinsics, as overloaded
1071 // declarations only live in the header file.
1072 if (Def->getClassKind() != ClassG)
1073 OS << "BUILTIN(__builtin_sve_" << Def->getMangledName() << ", \""
1074 << Def->getBuiltinTypeStr() << "\", \"n\")\n";
1075 }
1076 OS << "#endif\n\n";
1077}
1078
1079void SVEEmitter::createCodeGenMap(raw_ostream &OS) {
1080 std::vector<Record *> RV = Records.getAllDerivedDefinitions("Inst");
1081 SmallVector<std::unique_ptr<Intrinsic>, 128> Defs;
1082 for (auto *R : RV)
1083 createIntrinsic(R, Defs);
1084
1085 // The mappings must be sorted based on BuiltinID.
1086 llvm::sort(Defs, [](const std::unique_ptr<Intrinsic> &A,
1087 const std::unique_ptr<Intrinsic> &B) {
1088 return A->getMangledName() < B->getMangledName();
1089 });
1090
1091 OS << "#ifdef GET_SVE_LLVM_INTRINSIC_MAP\n";
1092 for (auto &Def : Defs) {
1093 // Builtins only exist for non-overloaded intrinsics, overloaded
1094 // declarations only live in the header file.
1095 if (Def->getClassKind() == ClassG)
1096 continue;
1097
Sander de Smalenf6ea0262020-04-14 15:31:20 +01001098 uint64_t Flags = Def->getFlags();
Sander de Smalenc5b81462020-03-18 11:07:20 +00001099 auto FlagString = std::to_string(Flags);
1100
1101 std::string LLVMName = Def->getLLVMName();
1102 std::string Builtin = Def->getMangledName();
1103 if (!LLVMName.empty())
1104 OS << "SVEMAP1(" << Builtin << ", " << LLVMName << ", " << FlagString
1105 << "),\n";
1106 else
1107 OS << "SVEMAP2(" << Builtin << ", " << FlagString << "),\n";
1108 }
1109 OS << "#endif\n\n";
1110}
1111
Sander de Smalenc8a5b302020-04-14 15:56:36 +01001112void SVEEmitter::createRangeChecks(raw_ostream &OS) {
1113 std::vector<Record *> RV = Records.getAllDerivedDefinitions("Inst");
1114 SmallVector<std::unique_ptr<Intrinsic>, 128> Defs;
1115 for (auto *R : RV)
1116 createIntrinsic(R, Defs);
1117
1118 // The mappings must be sorted based on BuiltinID.
1119 llvm::sort(Defs, [](const std::unique_ptr<Intrinsic> &A,
1120 const std::unique_ptr<Intrinsic> &B) {
1121 return A->getMangledName() < B->getMangledName();
1122 });
1123
1124
1125 OS << "#ifdef GET_SVE_IMMEDIATE_CHECK\n";
1126
1127 // Ensure these are only emitted once.
1128 std::set<std::string> Emitted;
1129
1130 for (auto &Def : Defs) {
1131 if (Emitted.find(Def->getMangledName()) != Emitted.end() ||
1132 Def->getImmChecks().empty())
1133 continue;
1134
1135 OS << "case SVE::BI__builtin_sve_" << Def->getMangledName() << ":\n";
1136 for (auto &Check : Def->getImmChecks())
1137 OS << "ImmChecks.push_back(std::make_tuple(" << Check.getArg() << ", "
1138 << Check.getKind() << ", " << Check.getElementSizeInBits() << "));\n";
1139 OS << " break;\n";
1140
1141 Emitted.insert(Def->getMangledName());
1142 }
1143
1144 OS << "#endif\n\n";
1145}
1146
Sander de Smalenc5b81462020-03-18 11:07:20 +00001147/// Create the SVETypeFlags used in CGBuiltins
1148void SVEEmitter::createTypeFlags(raw_ostream &OS) {
1149 OS << "#ifdef LLVM_GET_SVE_TYPEFLAGS\n";
1150 for (auto &KV : FlagTypes)
1151 OS << "const uint64_t " << KV.getKey() << " = " << KV.getValue() << ";\n";
1152 OS << "#endif\n\n";
1153
1154 OS << "#ifdef LLVM_GET_SVE_ELTTYPES\n";
1155 for (auto &KV : EltTypes)
1156 OS << " " << KV.getKey() << " = " << KV.getValue() << ",\n";
1157 OS << "#endif\n\n";
1158
1159 OS << "#ifdef LLVM_GET_SVE_MEMELTTYPES\n";
1160 for (auto &KV : MemEltTypes)
1161 OS << " " << KV.getKey() << " = " << KV.getValue() << ",\n";
1162 OS << "#endif\n\n";
Sander de Smalenf6ea0262020-04-14 15:31:20 +01001163
1164 OS << "#ifdef LLVM_GET_SVE_MERGETYPES\n";
1165 for (auto &KV : MergeTypes)
1166 OS << " " << KV.getKey() << " = " << KV.getValue() << ",\n";
1167 OS << "#endif\n\n";
Sander de Smalenc8a5b302020-04-14 15:56:36 +01001168
1169 OS << "#ifdef LLVM_GET_SVE_IMMCHECKTYPES\n";
1170 for (auto &KV : ImmCheckTypes)
1171 OS << " " << KV.getKey() << " = " << KV.getValue() << ",\n";
1172 OS << "#endif\n\n";
Sander de Smalenc5b81462020-03-18 11:07:20 +00001173}
1174
Sander de Smalen5087ace2020-03-15 14:29:45 +00001175namespace clang {
1176void EmitSveHeader(RecordKeeper &Records, raw_ostream &OS) {
Sander de Smalenc5b81462020-03-18 11:07:20 +00001177 SVEEmitter(Records).createHeader(OS);
1178}
1179
1180void EmitSveBuiltins(RecordKeeper &Records, raw_ostream &OS) {
1181 SVEEmitter(Records).createBuiltins(OS);
1182}
1183
1184void EmitSveBuiltinCG(RecordKeeper &Records, raw_ostream &OS) {
1185 SVEEmitter(Records).createCodeGenMap(OS);
1186}
Sander de Smalenc8a5b302020-04-14 15:56:36 +01001187
1188void EmitSveRangeChecks(RecordKeeper &Records, raw_ostream &OS) {
1189 SVEEmitter(Records).createRangeChecks(OS);
1190}
1191
Sander de Smalenc5b81462020-03-18 11:07:20 +00001192void EmitSveTypeFlags(RecordKeeper &Records, raw_ostream &OS) {
1193 SVEEmitter(Records).createTypeFlags(OS);
Sander de Smalen5087ace2020-03-15 14:29:45 +00001194}
1195
1196} // End namespace clang