clang 19.0.0git
RISCVVIntrinsicUtils.h
Go to the documentation of this file.
1//===--- RISCVVIntrinsicUtils.h - RISC-V Vector Intrinsic Utils -*- 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#ifndef CLANG_SUPPORT_RISCVVINTRINSICUTILS_H
10#define CLANG_SUPPORT_RISCVVINTRINSICUTILS_H
11
12#include "llvm/ADT/ArrayRef.h"
13#include "llvm/ADT/BitmaskEnum.h"
14#include "llvm/ADT/SmallVector.h"
15#include "llvm/ADT/StringRef.h"
16#include <cstdint>
17#include <optional>
18#include <set>
19#include <string>
20#include <unordered_map>
21#include <vector>
22
23namespace llvm {
24class raw_ostream;
25} // end namespace llvm
26
27namespace clang {
28namespace RISCV {
29
30using VScaleVal = std::optional<unsigned>;
31
32// Modifier for vector type.
33enum class VectorTypeModifier : uint8_t {
68 Tuple2,
69 Tuple3,
70 Tuple4,
71 Tuple5,
72 Tuple6,
73 Tuple7,
74 Tuple8,
75};
76
77// Similar to basic type but used to describe what's kind of type related to
78// basic vector type, used to compute type info of arguments.
79enum class BaseTypeModifier : uint8_t {
80 Invalid,
81 Scalar,
82 Vector,
83 Void,
84 SizeT,
85 Ptrdiff,
89};
90
91// Modifier for type, used for both scalar and vector types.
92enum class TypeModifier : uint8_t {
93 NoModifier = 0,
94 Pointer = 1 << 0,
95 Const = 1 << 1,
96 Immediate = 1 << 2,
97 UnsignedInteger = 1 << 3,
98 SignedInteger = 1 << 4,
99 Float = 1 << 5,
100 BFloat = 1 << 6,
101 // LMUL1 should be kind of VectorTypeModifier, but that might come with
102 // Widening2XVector for widening reduction.
103 // However that might require VectorTypeModifier become bitmask rather than
104 // simple enum, so we decide keek LMUL1 in TypeModifier for code size
105 // optimization of clang binary size.
106 LMUL1 = 1 << 7,
107 MaxOffset = 7,
109};
110
111class Policy {
112public:
116 };
117
118private:
119 // The default assumption for an RVV instruction is TAMA, as an undisturbed
120 // policy generally will affect the performance of an out-of-order core.
121 const PolicyType TailPolicy = Agnostic;
122 const PolicyType MaskPolicy = Agnostic;
123
124public:
125 Policy() = default;
126 Policy(PolicyType TailPolicy) : TailPolicy(TailPolicy) {}
127 Policy(PolicyType TailPolicy, PolicyType MaskPolicy)
128 : TailPolicy(TailPolicy), MaskPolicy(MaskPolicy) {}
129
130 bool isTAMAPolicy() const {
131 return TailPolicy == Agnostic && MaskPolicy == Agnostic;
132 }
133
134 bool isTAMUPolicy() const {
135 return TailPolicy == Agnostic && MaskPolicy == Undisturbed;
136 }
137
138 bool isTUMAPolicy() const {
139 return TailPolicy == Undisturbed && MaskPolicy == Agnostic;
140 }
141
142 bool isTUMUPolicy() const {
143 return TailPolicy == Undisturbed && MaskPolicy == Undisturbed;
144 }
145
146 bool isTAPolicy() const { return TailPolicy == Agnostic; }
147
148 bool isTUPolicy() const { return TailPolicy == Undisturbed; }
149
150 bool isMAPolicy() const { return MaskPolicy == Agnostic; }
151
152 bool isMUPolicy() const { return MaskPolicy == Undisturbed; }
153
154 bool operator==(const Policy &Other) const {
155 return TailPolicy == Other.TailPolicy && MaskPolicy == Other.MaskPolicy;
156 }
157
158 bool operator!=(const Policy &Other) const { return !(*this == Other); }
159
160 bool operator<(const Policy &Other) const {
161 // Just for maintain the old order for quick test.
162 if (MaskPolicy != Other.MaskPolicy)
163 return Other.MaskPolicy < MaskPolicy;
164 return TailPolicy < Other.TailPolicy;
165 }
166};
167
168// PrototypeDescriptor is used to compute type info of arguments or return
169// value.
171 constexpr PrototypeDescriptor() = default;
176 : PT(static_cast<uint8_t>(PT)), VTM(static_cast<uint8_t>(VTM)),
177 TM(static_cast<uint8_t>(TM)) {}
178 constexpr PrototypeDescriptor(uint8_t PT, uint8_t VTM, uint8_t TM)
179 : PT(PT), VTM(VTM), TM(TM) {}
180
181 uint8_t PT = static_cast<uint8_t>(BaseTypeModifier::Invalid);
182 uint8_t VTM = static_cast<uint8_t>(VectorTypeModifier::NoModifier);
183 uint8_t TM = static_cast<uint8_t>(TypeModifier::NoModifier);
184
185 bool operator!=(const PrototypeDescriptor &PD) const {
186 return !(*this == PD);
187 }
188 bool operator==(const PrototypeDescriptor &PD) const {
189 return PD.PT == PT && PD.VTM == VTM && PD.TM == TM;
190 }
191 bool operator<(const PrototypeDescriptor &PD) const {
192 return std::tie(PT, VTM, TM) < std::tie(PD.PT, PD.VTM, PD.TM);
193 }
197 static std::optional<PrototypeDescriptor>
198 parsePrototypeDescriptor(llvm::StringRef PrototypeStr);
199};
200
202parsePrototypes(llvm::StringRef Prototypes);
203
204// Basic type of vector type.
205enum class BasicType : uint8_t {
206 Unknown = 0,
207 Int8 = 1 << 0,
208 Int16 = 1 << 1,
209 Int32 = 1 << 2,
210 Int64 = 1 << 3,
211 BFloat16 = 1 << 4,
212 Float16 = 1 << 5,
213 Float32 = 1 << 6,
214 Float64 = 1 << 7,
215 MaxOffset = 7,
217};
218
219// Type of vector type.
220enum ScalarTypeKind : uint8_t {
233};
234
235// Exponential LMUL
236struct LMULType {
238 LMULType(int Log2LMUL);
239 // Return the C/C++ string representation of LMUL
240 std::string str() const;
241 std::optional<unsigned> getScale(unsigned ElementBitwidth) const;
242 void MulLog2LMUL(int Log2LMUL);
243};
244
245class RVVType;
247using RVVTypes = std::vector<RVVTypePtr>;
248class RVVTypeCache;
249
250// This class is compact representation of a valid and invalid RVVType.
251class RVVType {
252 friend class RVVTypeCache;
253
254 BasicType BT;
255 ScalarTypeKind ScalarType = Undefined;
256 LMULType LMUL;
257 bool IsPointer = false;
258 // IsConstant indices are "int", but have the constant expression.
259 bool IsImmediate = false;
260 // Const qualifier for pointer to const object or object of const type.
261 bool IsConstant = false;
262 unsigned ElementBitwidth = 0;
263 VScaleVal Scale = 0;
264 bool Valid;
265 bool IsTuple = false;
266 unsigned NF = 0;
267
268 std::string BuiltinStr;
269 std::string ClangBuiltinStr;
270 std::string Str;
271 std::string ShortStr;
272
273 enum class FixedLMULType { LargerThan, SmallerThan, SmallerOrEqual };
274
275 RVVType(BasicType BT, int Log2LMUL, const PrototypeDescriptor &Profile);
276
277public:
278 // Return the string representation of a type, which is an encoded string for
279 // passing to the BUILTIN() macro in Builtins.def.
280 const std::string &getBuiltinStr() const { return BuiltinStr; }
281
282 // Return the clang builtin type for RVV vector type which are used in the
283 // riscv_vector.h header file.
284 const std::string &getClangBuiltinStr() const { return ClangBuiltinStr; }
285
286 // Return the C/C++ string representation of a type for use in the
287 // riscv_vector.h header file.
288 const std::string &getTypeStr() const { return Str; }
289
290 // Return the short name of a type for C/C++ name suffix.
291 const std::string &getShortStr() {
292 // Not all types are used in short name, so compute the short name by
293 // demanded.
294 if (ShortStr.empty())
295 initShortStr();
296 return ShortStr;
297 }
298
299 bool isValid() const { return Valid; }
300 bool isScalar() const { return Scale && *Scale == 0; }
301 bool isVector() const { return Scale && *Scale != 0; }
302 bool isVector(unsigned Width) const {
303 return isVector() && ElementBitwidth == Width;
304 }
305 bool isFloat() const { return ScalarType == ScalarTypeKind::Float; }
306 bool isBFloat() const { return ScalarType == ScalarTypeKind::BFloat; }
307 bool isSignedInteger() const {
308 return ScalarType == ScalarTypeKind::SignedInteger;
309 }
310 bool isFloatVector(unsigned Width) const {
311 return isVector() && isFloat() && ElementBitwidth == Width;
312 }
313 bool isFloat(unsigned Width) const {
314 return isFloat() && ElementBitwidth == Width;
315 }
316 bool isConstant() const { return IsConstant; }
317 bool isPointer() const { return IsPointer; }
318 bool isTuple() const { return IsTuple; }
319 unsigned getElementBitwidth() const { return ElementBitwidth; }
320
321 ScalarTypeKind getScalarType() const { return ScalarType; }
322 VScaleVal getScale() const { return Scale; }
323 unsigned getNF() const {
324 assert(NF > 1 && NF <= 8 && "Only legal NF should be fetched");
325 return NF;
326 }
327
328private:
329 // Verify RVV vector type and set Valid.
330 bool verifyType() const;
331
332 // Creates a type based on basic types of TypeRange
333 void applyBasicType();
334
335 // Applies a prototype modifier to the current type. The result maybe an
336 // invalid type.
337 void applyModifier(const PrototypeDescriptor &prototype);
338
339 void applyLog2EEW(unsigned Log2EEW);
340 void applyFixedSEW(unsigned NewSEW);
341 void applyFixedLog2LMUL(int Log2LMUL, enum FixedLMULType Type);
342
343 // Compute and record a string for legal type.
344 void initBuiltinStr();
345 // Compute and record a builtin RVV vector type string.
346 void initClangBuiltinStr();
347 // Compute and record a type string for used in the header.
348 void initTypeStr();
349 // Compute and record a short name of a type for C/C++ name suffix.
350 void initShortStr();
351};
352
353// This class is used to manage RVVType, RVVType should only created by this
354// class, also provided thread-safe cache capability.
356private:
357 std::unordered_map<uint64_t, RVVType> LegalTypes;
358 std::set<uint64_t> IllegalTypes;
359
360public:
361 /// Compute output and input types by applying different config (basic type
362 /// and LMUL with type transformers). It also record result of type in legal
363 /// or illegal set to avoid compute the same config again. The result maybe
364 /// have illegal RVVType.
365 std::optional<RVVTypes>
366 computeTypes(BasicType BT, int Log2LMUL, unsigned NF,
368 std::optional<RVVTypePtr> computeType(BasicType BT, int Log2LMUL,
369 PrototypeDescriptor Proto);
370};
371
372enum PolicyScheme : uint8_t {
374 // Passthru operand is at first parameter in C builtin.
377};
378
379// TODO refactor RVVIntrinsic class design after support all intrinsic
380// combination. This represents an instantiation of an intrinsic with a
381// particular type and prototype
383
384private:
385 std::string BuiltinName; // Builtin name
386 std::string Name; // C intrinsic name.
387 std::string OverloadedName;
388 std::string IRName;
389 bool IsMasked;
390 bool HasMaskedOffOperand;
391 bool HasVL;
392 PolicyScheme Scheme;
393 bool SupportOverloading;
394 bool HasBuiltinAlias;
395 std::string ManualCodegen;
396 RVVTypePtr OutputType; // Builtin output type
397 RVVTypes InputTypes; // Builtin input types
398 // The types we use to obtain the specific LLVM intrinsic. They are index of
399 // InputTypes. -1 means the return type.
400 std::vector<int64_t> IntrinsicTypes;
401 unsigned NF = 1;
402 Policy PolicyAttrs;
403
404public:
405 RVVIntrinsic(llvm::StringRef Name, llvm::StringRef Suffix,
406 llvm::StringRef OverloadedName, llvm::StringRef OverloadedSuffix,
407 llvm::StringRef IRName, bool IsMasked, bool HasMaskedOffOperand,
408 bool HasVL, PolicyScheme Scheme, bool SupportOverloading,
409 bool HasBuiltinAlias, llvm::StringRef ManualCodegen,
410 const RVVTypes &Types,
411 const std::vector<int64_t> &IntrinsicTypes,
412 const std::vector<llvm::StringRef> &RequiredFeatures,
413 unsigned NF, Policy PolicyAttrs, bool HasFRMRoundModeOp);
414 ~RVVIntrinsic() = default;
415
416 RVVTypePtr getOutputType() const { return OutputType; }
417 const RVVTypes &getInputTypes() const { return InputTypes; }
418 llvm::StringRef getBuiltinName() const { return BuiltinName; }
419 bool hasMaskedOffOperand() const { return HasMaskedOffOperand; }
420 bool hasVL() const { return HasVL; }
421 bool hasPolicy() const { return Scheme != PolicyScheme::SchemeNone; }
422 bool hasPassthruOperand() const {
423 return Scheme == PolicyScheme::HasPassthruOperand;
424 }
425 bool hasPolicyOperand() const {
426 return Scheme == PolicyScheme::HasPolicyOperand;
427 }
428 bool supportOverloading() const { return SupportOverloading; }
429 bool hasBuiltinAlias() const { return HasBuiltinAlias; }
430 bool hasManualCodegen() const { return !ManualCodegen.empty(); }
431 bool isMasked() const { return IsMasked; }
432 llvm::StringRef getIRName() const { return IRName; }
433 llvm::StringRef getManualCodegen() const { return ManualCodegen; }
434 PolicyScheme getPolicyScheme() const { return Scheme; }
435 unsigned getNF() const { return NF; }
436 const std::vector<int64_t> &getIntrinsicTypes() const {
437 return IntrinsicTypes;
438 }
440 return PolicyAttrs;
441 }
442 unsigned getPolicyAttrsBits() const {
443 // CGBuiltin.cpp
444 // The 0th bit simulates the `vta` of RVV
445 // The 1st bit simulates the `vma` of RVV
446 // int PolicyAttrs = 0;
447
448 if (PolicyAttrs.isTUMAPolicy())
449 return 2;
450 if (PolicyAttrs.isTAMAPolicy())
451 return 3;
452 if (PolicyAttrs.isTUMUPolicy())
453 return 0;
454 if (PolicyAttrs.isTAMUPolicy())
455 return 1;
456
457 llvm_unreachable("unsupport policy");
458 return 0;
459 }
460
461 // Return the type string for a BUILTIN() macro in Builtins.def.
462 std::string getBuiltinTypeStr() const;
463
464 static std::string
465 getSuffixStr(RVVTypeCache &TypeCache, BasicType Type, int Log2LMUL,
466 llvm::ArrayRef<PrototypeDescriptor> PrototypeDescriptors);
467
470 bool IsMasked, bool HasMaskedOffOperand, bool HasVL,
471 unsigned NF, PolicyScheme DefaultScheme,
472 Policy PolicyAttrs, bool IsTuple);
473
476 getSupportedMaskedPolicies(bool HasTailPolicy, bool HasMaskPolicy);
477
478 static void updateNamesAndPolicy(bool IsMasked, bool HasPolicy,
479 std::string &Name, std::string &BuiltinName,
480 std::string &OverloadedName,
481 Policy &PolicyAttrs, bool HasFRMRoundModeOp);
482};
483
484// RVVRequire should be sync'ed with target features, but only
485// required features used in riscv_vector.td.
486enum RVVRequire : uint32_t {
488 RVV_REQ_RV64 = 1 << 0,
495 RVV_REQ_Zvbb = 1 << 7,
496 RVV_REQ_Zvbc = 1 << 8,
497 RVV_REQ_Zvkb = 1 << 9,
498 RVV_REQ_Zvkg = 1 << 10,
499 RVV_REQ_Zvkned = 1 << 11,
500 RVV_REQ_Zvknha = 1 << 12,
501 RVV_REQ_Zvknhb = 1 << 13,
502 RVV_REQ_Zvksed = 1 << 14,
503 RVV_REQ_Zvksh = 1 << 15,
506
508};
509
510// Raw RVV intrinsic info, used to expand later.
511// This struct is highly compact for minimized code size.
513 // Intrinsic name, e.g. vadd_vv
514 const char *Name;
515
516 // Overloaded intrinsic name, could be empty if it can be computed from Name.
517 // e.g. vadd
518 const char *OverloadedName;
519
520 // Prototype for this intrinsic, index of RVVSignatureTable.
522
523 // Suffix of intrinsic name, index of RVVSignatureTable.
524 uint16_t SuffixIndex;
525
526 // Suffix of overloaded intrinsic name, index of RVVSignatureTable.
528
529 // Length of the prototype.
531
532 // Length of intrinsic name suffix.
534
535 // Length of overloaded intrinsic suffix.
537
538 // Required target features for this intrinsic.
540
541 // Supported type, mask of BasicType.
543
544 // Supported LMUL.
546
547 // Number of fields, greater than 1 if it's segment load/store.
548 uint8_t NF;
549
550 bool HasMasked : 1;
551 bool HasVL : 1;
556 bool IsTuple : 1;
557 LLVM_PREFERRED_TYPE(PolicyScheme)
559 LLVM_PREFERRED_TYPE(PolicyScheme)
561};
562
563llvm::raw_ostream &operator<<(llvm::raw_ostream &OS,
564 const RVVIntrinsicRecord &RVVInstrRecord);
565
567} // end namespace RISCV
568
569} // end namespace clang
570
571#endif // CLANG_SUPPORT_RISCVVINTRINSICUTILS_H
Policy(PolicyType TailPolicy)
bool operator==(const Policy &Other) const
bool operator!=(const Policy &Other) const
bool operator<(const Policy &Other) const
Policy(PolicyType TailPolicy, PolicyType MaskPolicy)
static llvm::SmallVector< Policy > getSupportedMaskedPolicies(bool HasTailPolicy, bool HasMaskPolicy)
llvm::StringRef getBuiltinName() const
llvm::StringRef getIRName() const
const std::vector< int64_t > & getIntrinsicTypes() const
static llvm::SmallVector< PrototypeDescriptor > computeBuiltinTypes(llvm::ArrayRef< PrototypeDescriptor > Prototype, bool IsMasked, bool HasMaskedOffOperand, bool HasVL, unsigned NF, PolicyScheme DefaultScheme, Policy PolicyAttrs, bool IsTuple)
static void updateNamesAndPolicy(bool IsMasked, bool HasPolicy, std::string &Name, std::string &BuiltinName, std::string &OverloadedName, Policy &PolicyAttrs, bool HasFRMRoundModeOp)
static std::string getSuffixStr(RVVTypeCache &TypeCache, BasicType Type, int Log2LMUL, llvm::ArrayRef< PrototypeDescriptor > PrototypeDescriptors)
static llvm::SmallVector< Policy > getSupportedUnMaskedPolicies()
llvm::StringRef getManualCodegen() const
const RVVTypes & getInputTypes() const
PolicyScheme getPolicyScheme() const
std::optional< RVVTypePtr > computeType(BasicType BT, int Log2LMUL, PrototypeDescriptor Proto)
std::optional< RVVTypes > computeTypes(BasicType BT, int Log2LMUL, unsigned NF, llvm::ArrayRef< PrototypeDescriptor > Prototype)
Compute output and input types by applying different config (basic type and LMUL with type transforme...
const std::string & getTypeStr() const
ScalarTypeKind getScalarType() const
bool isFloatVector(unsigned Width) const
const std::string & getShortStr()
const std::string & getClangBuiltinStr() const
VScaleVal getScale() const
bool isFloat(unsigned Width) const
bool isVector(unsigned Width) const
unsigned getElementBitwidth() const
const std::string & getBuiltinStr() const
The base class of the type hierarchy.
Definition: Type.h:1607
llvm::SmallVector< PrototypeDescriptor > parsePrototypes(llvm::StringRef Prototypes)
LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE()
std::optional< unsigned > VScaleVal
std::vector< RVVTypePtr > RVVTypes
The JSON file list parser is used to communicate input to InstallAPI.
@ Other
Other implicit parameter.
Diagnostic wrappers for TextAPI types for error reporting.
Definition: Dominators.h:30
std::optional< unsigned > getScale(unsigned ElementBitwidth) const
void MulLog2LMUL(int Log2LMUL)
bool operator!=(const PrototypeDescriptor &PD) const
static std::optional< PrototypeDescriptor > parsePrototypeDescriptor(llvm::StringRef PrototypeStr)
static const PrototypeDescriptor VL
constexpr PrototypeDescriptor()=default
static const PrototypeDescriptor Mask
constexpr PrototypeDescriptor(uint8_t PT, uint8_t VTM, uint8_t TM)
static const PrototypeDescriptor Vector
constexpr PrototypeDescriptor(BaseTypeModifier PT, VectorTypeModifier VTM=VectorTypeModifier::NoModifier, TypeModifier TM=TypeModifier::NoModifier)
bool operator==(const PrototypeDescriptor &PD) const
bool operator<(const PrototypeDescriptor &PD) const