1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
|
//===- SPIRVType.h - Class to represent a SPIR-V Type -----------*- C++ -*-===//
//
// The LLVM/SPIRV Translator
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
// Copyright (c) 2014 Advanced Micro Devices, Inc. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal with the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimers.
// Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimers in the documentation
// and/or other materials provided with the distribution.
// Neither the names of Advanced Micro Devices, Inc., nor the names of its
// contributors may be used to endorse or promote products derived from this
// Software without specific prior written permission.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH
// THE SOFTWARE.
//
//===----------------------------------------------------------------------===//
/// \file
///
/// This file defines the types defined in SPIRV spec with op codes.
///
/// The name of the SPIR-V types follow the op code name in the spec, e.g.
/// SPIR-V type with op code name OpTypeInt is named as SPIRVTypeInt. This is
/// for readability and ease of using macro to handle types.
///
//===----------------------------------------------------------------------===//
#ifndef SPIRV_LIBSPIRV_SPIRVTYPE_H
#define SPIRV_LIBSPIRV_SPIRVTYPE_H
#include "SPIRVEntry.h"
#include "SPIRVStream.h"
#include <cassert>
#include <tuple>
#include <vector>
namespace SPIRV {
class SPIRVType : public SPIRVEntry {
public:
// Complete constructor
SPIRVType(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, SPIRVId TheId)
: SPIRVEntry(M, TheWordCount, TheOpCode, TheId) {}
// Incomplete constructor
SPIRVType(Op TheOpCode) : SPIRVEntry(TheOpCode) {}
SPIRVType *getArrayElementType() const;
uint64_t getArrayLength() const;
unsigned getBitWidth() const;
unsigned getFloatBitWidth() const;
SPIRVType *getFunctionReturnType() const;
unsigned getIntegerBitWidth() const;
SPIRVType *getPointerElementType() const;
SPIRVStorageClassKind getPointerStorageClass() const;
SPIRVType *getStructMemberType(size_t) const;
SPIRVWord getStructMemberCount() const;
SPIRVWord getVectorComponentCount() const;
SPIRVType *getVectorComponentType() const;
SPIRVWord getMatrixColumnCount() const;
SPIRVType *getMatrixColumnType() const;
SPIRVType *getScalarType() const;
bool isTypeVoid() const;
bool isTypeArray() const;
bool isTypeBool() const;
bool isTypeComposite() const;
bool isTypeEvent() const;
bool isTypeDeviceEvent() const;
bool isTypeReserveId() const;
bool isTypeFloat(unsigned Bits = 0,
unsigned FloatingPointEncoding = FPEncodingMax) const;
bool isTypeImage() const;
bool isTypeOCLImage() const;
bool isTypePipe() const;
bool isTypePipeStorage() const;
bool isTypeInt(unsigned Bits = 0) const;
bool isTypeOpaque() const;
bool isTypePointer() const;
bool isTypeSampler() const;
bool isTypeSampledImage() const;
bool isTypeStruct() const;
bool isTypeVector() const;
bool isTypeJointMatrixINTEL() const;
bool isTypeCooperativeMatrixKHR() const;
bool isTypeVectorInt() const;
bool isTypeVectorFloat() const;
bool isTypeVectorBool() const;
bool isTypeVectorOrScalarInt() const;
bool isTypeVectorOrScalarFloat() const;
bool isTypeVectorOrScalarBool() const;
bool isTypeVectorPointer() const;
bool isTypeSubgroupAvcINTEL() const;
bool isTypeSubgroupAvcMceINTEL() const;
bool isTypeTaskSequenceINTEL() const;
};
class SPIRVTypeVoid : public SPIRVType {
public:
// Complete constructor
SPIRVTypeVoid(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, 2, OpTypeVoid, TheId) {}
// Incomplete constructor
SPIRVTypeVoid() : SPIRVType(OpTypeVoid) {}
protected:
_SPIRV_DEF_ENCDEC1(Id)
};
class SPIRVTypeBool : public SPIRVType {
public:
// Complete constructor
SPIRVTypeBool(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, 2, OpTypeBool, TheId) {}
// Incomplete constructor
SPIRVTypeBool() : SPIRVType(OpTypeBool) {}
protected:
_SPIRV_DEF_ENCDEC1(Id)
};
class SPIRVTypeInt : public SPIRVType {
public:
static const Op OC = OpTypeInt;
// Complete constructor
SPIRVTypeInt(SPIRVModule *M, SPIRVId TheId, unsigned TheBitWidth,
bool ItIsSigned)
: SPIRVType(M, 4, OC, TheId), BitWidth(TheBitWidth),
IsSigned(ItIsSigned) {
validate();
}
// Incomplete constructor
SPIRVTypeInt() : SPIRVType(OC), BitWidth(0), IsSigned(false) {}
unsigned getBitWidth() const { return BitWidth; }
bool isSigned() const { return IsSigned; }
SPIRVCapVec getRequiredCapability() const override {
SPIRVCapVec CV;
switch (BitWidth) {
case 8:
CV.push_back(CapabilityInt8);
break;
case 16:
CV.push_back(CapabilityInt16);
break;
case 32:
break;
case 64:
CV.push_back(CapabilityInt64);
break;
default:
if (Module->isAllowedToUseExtension(
ExtensionID::SPV_INTEL_arbitrary_precision_integers))
CV.push_back(CapabilityArbitraryPrecisionIntegersINTEL);
}
return CV;
}
std::optional<ExtensionID> getRequiredExtension() const override {
switch (BitWidth) {
case 8:
case 16:
case 32:
case 64:
return {};
default:
return ExtensionID::SPV_INTEL_arbitrary_precision_integers;
}
}
protected:
_SPIRV_DEF_ENCDEC3(Id, BitWidth, IsSigned)
void validate() const override {
SPIRVEntry::validate();
assert((BitWidth == 8 || BitWidth == 16 || BitWidth == 32 ||
BitWidth == 64 ||
Module->isAllowedToUseExtension(
ExtensionID::SPV_INTEL_arbitrary_precision_integers)) &&
"Invalid bit width");
}
private:
unsigned BitWidth; // Bit width
bool IsSigned; // Whether it is signed
};
class SPIRVTypeFloat : public SPIRVType {
public:
static const Op OC = OpTypeFloat;
// Complete constructor
SPIRVTypeFloat(SPIRVModule *M, SPIRVId TheId, unsigned TheBitWidth,
unsigned TheFloatingPointEncoding)
: SPIRVType(M, 3 + (TheFloatingPointEncoding != FPEncodingMax), OC,
TheId),
BitWidth(TheBitWidth), FloatingPointEncoding(TheFloatingPointEncoding) {
}
// Incomplete constructor
SPIRVTypeFloat()
: SPIRVType(OC), BitWidth(0), FloatingPointEncoding(FPEncodingMax) {}
unsigned getBitWidth() const { return BitWidth; }
unsigned getFloatingPointEncoding() const { return FloatingPointEncoding; }
std::optional<ExtensionID> getRequiredExtension() const override {
if (isTypeFloat(16, FPEncodingBFloat16KHR))
return ExtensionID::SPV_KHR_bfloat16;
return {};
}
SPIRVCapVec getRequiredCapability() const override {
SPIRVCapVec CV;
if (isTypeFloat(16, FPEncodingBFloat16KHR)) {
CV.push_back(CapabilityBFloat16TypeKHR);
} else if (isTypeFloat(16)) {
CV.push_back(CapabilityFloat16Buffer);
auto Extensions = getModule()->getSourceExtension();
if (std::any_of(Extensions.begin(), Extensions.end(),
[](const std::string &I) { return I == "cl_khr_fp16"; }))
CV.push_back(CapabilityFloat16);
} else if (isTypeFloat(64))
CV.push_back(CapabilityFloat64);
return CV;
}
protected:
void encode(spv_ostream &O) const override {
assert(WordCount == 3 || WordCount == 4);
auto Encoder = getEncoder(O);
Encoder << Id << BitWidth;
if (WordCount == 4)
Encoder << FloatingPointEncoding;
}
void decode(std::istream &I) override {
assert(WordCount == 3 || WordCount == 4);
auto Decoder = getDecoder(I);
Decoder >> Id >> BitWidth;
if (WordCount == 4)
Decoder >> FloatingPointEncoding;
}
void validate() const override {
SPIRVEntry::validate();
assert(BitWidth >= 16 && BitWidth <= 64 && "Invalid bit width");
assert(
(FloatingPointEncoding == FPEncodingMax ||
(BitWidth == 16 && FloatingPointEncoding == FPEncodingBFloat16KHR)) &&
"Invalid floating point encoding");
}
private:
unsigned BitWidth; // Bit width
unsigned FloatingPointEncoding;
};
class SPIRVTypePointer : public SPIRVType {
public:
// Complete constructor
SPIRVTypePointer(SPIRVModule *M, SPIRVId TheId,
SPIRVStorageClassKind TheStorageClass,
SPIRVType *ElementType)
: SPIRVType(M, 4, OpTypePointer, TheId),
ElemStorageClass(TheStorageClass), ElemTypeId(ElementType->getId()) {
validate();
}
// Incomplete constructor
SPIRVTypePointer()
: SPIRVType(OpTypePointer), ElemStorageClass(StorageClassFunction),
ElemTypeId(0) {}
SPIRVType *getElementType() const {
return static_cast<SPIRVType *>(getEntry(ElemTypeId));
}
SPIRVStorageClassKind getStorageClass() const { return ElemStorageClass; }
SPIRVCapVec getRequiredCapability() const override {
auto Cap = getVec(CapabilityAddresses);
if (getElementType()->isTypeFloat(16))
Cap.push_back(CapabilityFloat16Buffer);
auto C = getCapability(ElemStorageClass);
Cap.insert(Cap.end(), C.begin(), C.end());
return Cap;
}
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
return std::vector<SPIRVEntry *>(1, getEntry(ElemTypeId));
}
protected:
_SPIRV_DEF_ENCDEC3(Id, ElemStorageClass, ElemTypeId)
void validate() const override {
SPIRVEntry::validate();
assert(isValid(ElemStorageClass));
}
private:
SPIRVStorageClassKind ElemStorageClass; // Storage Class
SPIRVId ElemTypeId;
};
class SPIRVTypeForwardPointer : public SPIRVEntryNoId<OpTypeForwardPointer> {
public:
SPIRVTypeForwardPointer(SPIRVModule *M, SPIRVId PointerId,
SPIRVStorageClassKind SC)
: SPIRVEntryNoId(M, 3), PointerId(PointerId), SC(SC) {}
SPIRVTypeForwardPointer()
: PointerId(SPIRVID_INVALID), SC(StorageClassUniformConstant) {}
SPIRVId getPointerId() const { return PointerId; }
_SPIRV_DCL_ENCDEC
private:
SPIRVId PointerId;
SPIRVStorageClassKind SC;
};
class SPIRVTypeVector : public SPIRVType {
public:
// Complete constructor
SPIRVTypeVector(SPIRVModule *M, SPIRVId TheId, SPIRVType *TheCompType,
SPIRVWord TheCompCount)
: SPIRVType(M, 4, OpTypeVector, TheId), CompType(TheCompType),
CompCount(TheCompCount) {
validate();
}
// Incomplete constructor
SPIRVTypeVector()
: SPIRVType(OpTypeVector), CompType(nullptr), CompCount(0) {}
SPIRVType *getComponentType() const { return CompType; }
SPIRVWord getComponentCount() const { return CompCount; }
bool isValidIndex(SPIRVWord Index) const { return Index < CompCount; }
SPIRVCapVec getRequiredCapability() const override {
SPIRVCapVec V(getComponentType()->getRequiredCapability());
// Even though the capability name is "Vector16", it describes
// usage of 8-component or 16-component vectors.
if (CompCount == 8 || CompCount == 16)
V.push_back(CapabilityVector16);
if (Module->isAllowedToUseExtension(ExtensionID::SPV_INTEL_vector_compute))
if (CompCount == 1 || (CompCount > 4 && CompCount < 8) ||
(CompCount > 8 && CompCount < 16) || CompCount > 16)
V.push_back(CapabilityVectorAnyINTEL);
return V;
}
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
return std::vector<SPIRVEntry *>(1, CompType);
}
protected:
_SPIRV_DEF_ENCDEC3(Id, CompType, CompCount)
void validate() const override {
SPIRVEntry::validate();
CompType->validate();
#ifndef NDEBUG
if (!(Module->isAllowedToUseExtension(
ExtensionID::SPV_INTEL_vector_compute))) {
assert(CompCount == 2 || CompCount == 3 || CompCount == 4 ||
CompCount == 8 || CompCount == 16);
}
#endif // !NDEBUG
}
private:
SPIRVType *CompType; // Component Type
SPIRVWord CompCount; // Component Count
};
class SPIRVTypeMatrix : public SPIRVType {
public:
// Complete constructor
SPIRVTypeMatrix(SPIRVModule *M, SPIRVId TheId, SPIRVType *TheColType,
SPIRVWord TheColCount)
: SPIRVType(M, 4, OpTypeMatrix, TheId), ColType(TheColType),
ColCount(TheColCount) {
validate();
}
// Incomplete constructor
SPIRVTypeMatrix() : SPIRVType(OpTypeMatrix), ColType(nullptr), ColCount(0) {}
SPIRVType *getColumnType() const { return ColType; }
SPIRVWord getColumnCount() const { return ColCount; }
bool isValidIndex(SPIRVWord Index) const { return Index < ColCount; }
SPIRVCapVec getRequiredCapability() const override {
SPIRVCapVec V(getColumnType()->getRequiredCapability());
if (ColCount >= 8)
V.push_back(CapabilityVector16);
return V;
}
virtual std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
return std::vector<SPIRVEntry *>(1, ColType);
}
void validate() const override {
SPIRVEntry::validate();
ColType->validate();
assert(ColCount >= 2);
}
protected:
_SPIRV_DEF_ENCDEC3(Id, ColType, ColCount)
private:
SPIRVType *ColType; // Column Type
SPIRVWord ColCount; // Column Count
};
class SPIRVTypeArray : public SPIRVType {
public:
// Complete constructor
SPIRVTypeArray(SPIRVModule *M, SPIRVId TheId, SPIRVType *TheElemType,
SPIRVValue *TheLength);
// Incomplete constructor
SPIRVTypeArray()
: SPIRVType(OpTypeArray), ElemType(nullptr), Length(SPIRVID_INVALID) {}
SPIRVType *getElementType() const { return ElemType; }
SPIRVValue *getLength() const;
SPIRVCapVec getRequiredCapability() const override {
return getElementType()->getRequiredCapability();
}
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
std::vector<SPIRVEntry *> Operands(2, ElemType);
Operands[1] = (SPIRVEntry *)getLength();
return Operands;
}
protected:
_SPIRV_DCL_ENCDEC
void validate() const override;
private:
SPIRVType *ElemType; // Element Type
SPIRVId Length; // Array Length
};
class SPIRVTypeOpaque : public SPIRVType {
public:
// Complete constructor
SPIRVTypeOpaque(SPIRVModule *M, SPIRVId TheId, const std::string &TheName)
: SPIRVType(M, 2 + getSizeInWords(TheName), OpTypeOpaque, TheId) {
Name = TheName;
validate();
}
// Incomplete constructor
SPIRVTypeOpaque() : SPIRVType(OpTypeOpaque) {}
protected:
_SPIRV_DEF_ENCDEC2(Id, Name)
void validate() const override { SPIRVEntry::validate(); }
};
struct SPIRVTypeImageDescriptor {
SPIRVImageDimKind Dim;
SPIRVWord Depth;
SPIRVWord Arrayed;
SPIRVWord MS;
SPIRVWord Sampled;
SPIRVWord Format;
static std::tuple<
std::tuple<SPIRVImageDimKind, SPIRVWord, SPIRVWord, SPIRVWord, SPIRVWord>,
SPIRVWord>
getAsTuple(const SPIRVTypeImageDescriptor &Desc) {
return std::make_tuple(std::make_tuple(Desc.Dim, Desc.Depth, Desc.Arrayed,
Desc.MS, Desc.Sampled),
Desc.Format);
}
SPIRVTypeImageDescriptor()
: Dim(Dim1D), Depth(0), Arrayed(0), MS(0), Sampled(0), Format(0) {}
SPIRVTypeImageDescriptor(SPIRVImageDimKind Dim, SPIRVWord Cont, SPIRVWord Arr,
SPIRVWord Comp, SPIRVWord Mult, SPIRVWord F)
: Dim(Dim), Depth(Cont), Arrayed(Arr), MS(Comp), Sampled(Mult),
Format(F) {}
};
template <>
inline void SPIRVMap<std::string, SPIRVTypeImageDescriptor>::init() {
#define _SPIRV_OP(x, ...) \
{ \
SPIRVTypeImageDescriptor S(__VA_ARGS__); \
add(#x, S); \
}
_SPIRV_OP(image1d_t, Dim1D, 0, 0, 0, 0, 0)
_SPIRV_OP(image1d_buffer_t, DimBuffer, 0, 0, 0, 0, 0)
_SPIRV_OP(image1d_array_t, Dim1D, 0, 1, 0, 0, 0)
_SPIRV_OP(image2d_t, Dim2D, 0, 0, 0, 0, 0)
_SPIRV_OP(image2d_array_t, Dim2D, 0, 1, 0, 0, 0)
_SPIRV_OP(image2d_depth_t, Dim2D, 1, 0, 0, 0, 0)
_SPIRV_OP(image2d_array_depth_t, Dim2D, 1, 1, 0, 0, 0)
_SPIRV_OP(image2d_msaa_t, Dim2D, 0, 0, 1, 0, 0)
_SPIRV_OP(image2d_array_msaa_t, Dim2D, 0, 1, 1, 0, 0)
_SPIRV_OP(image2d_msaa_depth_t, Dim2D, 1, 0, 1, 0, 0)
_SPIRV_OP(image2d_array_msaa_depth_t, Dim2D, 1, 1, 1, 0, 0)
_SPIRV_OP(image3d_t, Dim3D, 0, 0, 0, 0, 0)
#undef _SPIRV_OP
}
typedef SPIRVMap<std::string, SPIRVTypeImageDescriptor> OCLSPIRVImageTypeMap;
// Comparision function required to use the struct as map key.
inline bool operator<(const SPIRVTypeImageDescriptor &A,
const SPIRVTypeImageDescriptor &B) {
return SPIRVTypeImageDescriptor::getAsTuple(A) <
SPIRVTypeImageDescriptor::getAsTuple(B);
}
class SPIRVTypeImage : public SPIRVType {
public:
const static Op OC = OpTypeImage;
constexpr static SPIRVWord FixedWC = 9;
SPIRVTypeImage(SPIRVModule *M, SPIRVId TheId, SPIRVId TheSampledType,
const SPIRVTypeImageDescriptor &TheDesc)
: SPIRVType(M, FixedWC, OC, TheId), SampledType(TheSampledType),
Desc(TheDesc) {
validate();
}
SPIRVTypeImage(SPIRVModule *M, SPIRVId TheId, SPIRVId TheSampledType,
const SPIRVTypeImageDescriptor &TheDesc,
SPIRVAccessQualifierKind TheAcc)
: SPIRVType(M, FixedWC + 1, OC, TheId), SampledType(TheSampledType),
Desc(TheDesc) {
Acc.push_back(TheAcc);
validate();
}
SPIRVTypeImage() : SPIRVType(OC), SampledType(SPIRVID_INVALID), Desc() {}
const SPIRVTypeImageDescriptor &getDescriptor() const { return Desc; }
bool isOCLImage() const { return Desc.Sampled == 0 && Desc.Format == 0; }
bool hasAccessQualifier() const { return !Acc.empty(); }
SPIRVAccessQualifierKind getAccessQualifier() const {
assert(hasAccessQualifier());
return Acc[0];
}
SPIRVCapVec getRequiredCapability() const override {
SPIRVCapVec CV;
CV.push_back(CapabilityImageBasic);
if (Desc.Dim == SPIRVImageDimKind::Dim1D)
CV.push_back(CapabilitySampled1D);
else if (Desc.Dim == SPIRVImageDimKind::DimBuffer)
CV.push_back(CapabilitySampledBuffer);
if (Acc.size() > 0 && Acc[0] == AccessQualifierReadWrite)
CV.push_back(CapabilityImageReadWrite);
if (Desc.MS)
CV.push_back(CapabilityImageMipmap);
return CV;
}
SPIRVType *getSampledType() const { return get<SPIRVType>(SampledType); }
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
return std::vector<SPIRVEntry *>(1, get<SPIRVType>(SampledType));
}
protected:
_SPIRV_DEF_ENCDEC9(Id, SampledType, Desc.Dim, Desc.Depth, Desc.Arrayed,
Desc.MS, Desc.Sampled, Desc.Format, Acc)
// The validation assumes OpenCL image or sampler type.
void validate() const override {
assert(OpCode == OC);
assert(WordCount == FixedWC + Acc.size());
assert(SampledType != SPIRVID_INVALID && "Invalid sampled type");
assert(Desc.Dim <= 5);
assert(Desc.Depth <= 1);
assert(Desc.Arrayed <= 1);
assert(Desc.MS <= 1);
assert(Desc.Sampled == 0); // For OCL only
assert(Desc.Format == 0); // For OCL only
assert(Acc.size() <= 1);
}
void setWordCount(SPIRVWord TheWC) override {
WordCount = TheWC;
Acc.resize(WordCount - FixedWC);
}
private:
SPIRVId SampledType;
SPIRVTypeImageDescriptor Desc;
std::vector<SPIRVAccessQualifierKind> Acc;
};
class SPIRVTypeSampler : public SPIRVType {
public:
const static Op OC = OpTypeSampler;
const static SPIRVWord FixedWC = 2;
SPIRVTypeSampler(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, FixedWC, OC, TheId) {
validate();
}
SPIRVTypeSampler() : SPIRVType(OC) {}
protected:
_SPIRV_DEF_ENCDEC1(Id)
void validate() const override {
assert(OpCode == OC);
assert(WordCount == FixedWC);
}
};
class SPIRVTypeSampledImage : public SPIRVType {
public:
const static Op OC = OpTypeSampledImage;
const static SPIRVWord FixedWC = 3;
SPIRVTypeSampledImage(SPIRVModule *M, SPIRVId TheId, SPIRVTypeImage *TheImgTy)
: SPIRVType(M, FixedWC, OC, TheId), ImgTy(TheImgTy) {
validate();
}
SPIRVTypeSampledImage() : SPIRVType(OC), ImgTy(nullptr) {}
const SPIRVTypeImage *getImageType() const { return ImgTy; }
void setImageType(SPIRVTypeImage *TheImgTy) { ImgTy = TheImgTy; }
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
return std::vector<SPIRVEntry *>(1, ImgTy);
}
protected:
SPIRVTypeImage *ImgTy;
_SPIRV_DEF_ENCDEC2(Id, ImgTy)
void validate() const override {
assert(OpCode == OC);
assert(WordCount == FixedWC);
assert(ImgTy && ImgTy->isTypeImage());
}
};
class SPIRVTypePipeStorage : public SPIRVType {
public:
const static Op OC = OpTypePipeStorage;
const static SPIRVWord FixedWC = 2;
SPIRVTypePipeStorage(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, FixedWC, OC, TheId) {
validate();
}
SPIRVTypePipeStorage() : SPIRVType(OC) {}
protected:
_SPIRV_DEF_ENCDEC1(Id)
void validate() const override {
assert(OpCode == OC);
assert(WordCount == FixedWC);
}
};
class SPIRVTypeStruct : public SPIRVType {
public:
const static Op OC = OpTypeStruct;
// There are always 2 words in this instruction except member types:
// 1) WordCount + OpCode
// 2) Result Id
constexpr static SPIRVWord FixedWC = 2;
using ContinuedInstType = typename InstToContinued<OC>::Type;
// Complete constructor
SPIRVTypeStruct(SPIRVModule *M, SPIRVId TheId,
const std::vector<SPIRVType *> &TheMemberTypes,
const std::string &TheName)
: SPIRVType(M, FixedWC + TheMemberTypes.size(), OC, TheId) {
MemberTypeIdVec.resize(TheMemberTypes.size());
for (auto &T : TheMemberTypes)
MemberTypeIdVec.push_back(T->getId());
Name = TheName;
validate();
}
SPIRVTypeStruct(SPIRVModule *M, SPIRVId TheId, unsigned NumMembers,
const std::string &TheName)
: SPIRVType(M, FixedWC + NumMembers, OC, TheId) {
Name = TheName;
validate();
MemberTypeIdVec.resize(NumMembers);
}
// Incomplete constructor
SPIRVTypeStruct() : SPIRVType(OC) {}
SPIRVWord getMemberCount() const { return MemberTypeIdVec.size(); }
SPIRVType *getMemberType(size_t I) const {
return static_cast<SPIRVType *>(getEntry(MemberTypeIdVec[I]));
}
void setMemberType(size_t I, SPIRVType *Ty) {
if (I >= MemberTypeIdVec.size() && !ContinuedInstructions.empty()) {
const size_t MaxNumElements = MaxWordCount - FixedWC;
I -= MaxNumElements; // Remove operands that included into OpTypeStruct
ContinuedInstructions[I / MaxNumElements]->setElementId(
I % MaxNumElements, Ty->getId());
} else {
MemberTypeIdVec[I] = Ty->getId();
}
}
bool isPacked() const;
void setPacked(bool Packed);
void setWordCount(SPIRVWord WordCount) override {
SPIRVType::setWordCount(WordCount);
MemberTypeIdVec.resize(WordCount - FixedWC);
}
// TODO: Should we attach operands of continued instructions as well?
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
std::vector<SPIRVEntry *> Operands(MemberTypeIdVec.size());
for (size_t I = 0, E = MemberTypeIdVec.size(); I < E; ++I)
Operands[I] = getEntry(MemberTypeIdVec[I]);
return Operands;
}
void addContinuedInstruction(ContinuedInstType Inst) {
ContinuedInstructions.push_back(Inst);
}
void encodeChildren(spv_ostream &O) const override {
O << SPIRVNL();
for (auto &I : ContinuedInstructions)
O << *I;
}
std::vector<ContinuedInstType> getContinuedInstructions() {
return ContinuedInstructions;
}
protected:
void encode(spv_ostream &O) const override {
getEncoder(O) << Id << MemberTypeIdVec;
}
void decode(std::istream &I) override {
SPIRVDecoder Decoder = getDecoder(I);
Decoder >> Id >> MemberTypeIdVec;
Module->add(this);
for (SPIRVEntry *E : Decoder.getContinuedInstructions(ContinuedOpCode)) {
addContinuedInstruction(static_cast<ContinuedInstType>(E));
}
}
void validate() const override { SPIRVEntry::validate(); }
private:
std::vector<SPIRVId> MemberTypeIdVec; // Member Type Ids
std::vector<ContinuedInstType> ContinuedInstructions;
const spv::Op ContinuedOpCode = InstToContinued<OC>::OpCode;
};
class SPIRVTypeFunction : public SPIRVType {
public:
// Complete constructor
SPIRVTypeFunction(SPIRVModule *M, SPIRVId TheId, SPIRVType *TheReturnType,
const std::vector<SPIRVType *> &TheParameterTypes)
: SPIRVType(M, 3 + TheParameterTypes.size(), OpTypeFunction, TheId),
ReturnType(TheReturnType) {
for (const SPIRVType *T : TheParameterTypes) {
ParamTypeIdVec.push_back(T->getId());
}
validate();
}
// Incomplete constructor
SPIRVTypeFunction() : SPIRVType(OpTypeFunction), ReturnType(NULL) {}
SPIRVType *getReturnType() const { return ReturnType; }
SPIRVWord getNumParameters() const { return ParamTypeIdVec.size(); }
SPIRVType *getParameterType(unsigned I) const {
return static_cast<SPIRVType *>(getEntry(ParamTypeIdVec[I]));
}
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
std::vector<SPIRVEntry *> Operands = {ReturnType};
for (SPIRVId I : ParamTypeIdVec)
Operands.push_back(getEntry(I));
return Operands;
}
protected:
_SPIRV_DEF_ENCDEC3(Id, ReturnType, ParamTypeIdVec)
void setWordCount(SPIRVWord WordCount) override {
SPIRVType::setWordCount(WordCount);
ParamTypeIdVec.resize(WordCount - 3);
}
void validate() const override {
SPIRVEntry::validate();
ReturnType->validate();
for (auto I : ParamTypeIdVec)
getEntry(I)->validate();
}
private:
SPIRVType *ReturnType; // Return Type
std::vector<SPIRVId> ParamTypeIdVec; // Parameter Type Ids
};
class SPIRVTypeOpaqueGeneric : public SPIRVType {
public:
// Complete constructor
SPIRVTypeOpaqueGeneric(Op TheOpCode, SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, 2, TheOpCode, TheId) {
validate();
}
// Incomplete constructor
SPIRVTypeOpaqueGeneric(Op TheOpCode)
: SPIRVType(TheOpCode), Opn(SPIRVID_INVALID) {}
SPIRVValue *getOperand() { return getValue(Opn); }
protected:
_SPIRV_DEF_ENCDEC1(Id)
void validate() const override { SPIRVEntry::validate(); }
SPIRVId Opn = SPIRVID_INVALID;
};
template <Op TheOpCode>
class SPIRVOpaqueGenericType : public SPIRVTypeOpaqueGeneric {
public:
// Complete constructor
SPIRVOpaqueGenericType(SPIRVModule *M, SPIRVId TheId)
: SPIRVTypeOpaqueGeneric(TheOpCode, M, TheId) {}
// Incomplete constructor
SPIRVOpaqueGenericType() : SPIRVTypeOpaqueGeneric(TheOpCode) {}
};
#define _SPIRV_OP(x) typedef SPIRVOpaqueGenericType<OpType##x> SPIRVType##x;
_SPIRV_OP(Event)
_SPIRV_OP(ReserveId)
#undef _SPIRV_OP
class SPIRVTypeDeviceEvent : public SPIRVType {
public:
// Complete constructor
SPIRVTypeDeviceEvent(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, 2, OpTypeDeviceEvent, TheId) {
validate();
}
// Incomplete constructor
SPIRVTypeDeviceEvent() : SPIRVType(OpTypeDeviceEvent) {}
SPIRVCapVec getRequiredCapability() const override {
return getVec(CapabilityDeviceEnqueue);
}
protected:
_SPIRV_DEF_ENCDEC1(Id)
void validate() const override { SPIRVEntry::validate(); }
};
class SPIRVTypeQueue : public SPIRVType {
public:
// Complete constructor
SPIRVTypeQueue(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, 2, OpTypeQueue, TheId) {
validate();
}
// Incomplete constructor
SPIRVTypeQueue() : SPIRVType(OpTypeQueue) {}
SPIRVCapVec getRequiredCapability() const override {
return getVec(CapabilityDeviceEnqueue);
}
protected:
_SPIRV_DEF_ENCDEC1(Id)
};
class SPIRVTypePipe : public SPIRVType {
public:
// Complete constructor
SPIRVTypePipe(SPIRVModule *M, SPIRVId TheId,
SPIRVAccessQualifierKind AccessQual = AccessQualifierReadOnly)
: SPIRVType(M, 3, OpTypePipe, TheId), AccessQualifier(AccessQual) {
validate();
}
// Incomplete constructor
SPIRVTypePipe()
: SPIRVType(OpTypePipe), AccessQualifier(AccessQualifierReadOnly) {}
SPIRVAccessQualifierKind getAccessQualifier() const {
return AccessQualifier;
}
void setPipeAcessQualifier(SPIRVAccessQualifierKind AccessQual) {
AccessQualifier = AccessQual;
assert(isValid(AccessQualifier));
}
SPIRVCapVec getRequiredCapability() const override {
return getVec(CapabilityPipes);
}
protected:
_SPIRV_DEF_ENCDEC2(Id, AccessQualifier)
void validate() const override { SPIRVEntry::validate(); }
private:
SPIRVAccessQualifierKind AccessQualifier; // Access Qualifier
};
template <typename T2, typename T1>
bool isType(const T1 *Ty, unsigned Bits = 0) {
bool Is = Ty->getOpCode() == T2::OC;
if (!Is)
return false;
if (Bits == 0)
return true;
return static_cast<const T2 *>(Ty)->getBitWidth() == Bits;
}
class SPIRVTypeBufferSurfaceINTEL : public SPIRVType {
public:
const static Op OC = OpTypeBufferSurfaceINTEL;
const static SPIRVWord FixedWC = 2;
SPIRVTypeBufferSurfaceINTEL(SPIRVModule *M, SPIRVId TheId,
SPIRVAccessQualifierKind TheAccess)
: SPIRVType(M, FixedWC + 1, OC, TheId), AccessKind(TheAccess) {
validate();
}
SPIRVTypeBufferSurfaceINTEL(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, FixedWC, OC, TheId) {
validate();
}
SPIRVTypeBufferSurfaceINTEL() : SPIRVType(OC) {}
SPIRVCapVec getRequiredCapability() const override {
return getVec(CapabilityVectorComputeINTEL);
}
std::optional<ExtensionID> getRequiredExtension() const override {
return {ExtensionID::SPV_INTEL_vector_compute};
}
bool hasAccessQualifier() const { return AccessKind.has_value(); }
SPIRVAccessQualifierKind getAccessQualifier() const {
assert(hasAccessQualifier());
return AccessKind.value();
}
protected:
_SPIRV_DEF_ENCDEC2(Id, AccessKind)
void validate() const override {
assert(OpCode == OC);
assert(WordCount == FixedWC + (AccessKind ? 1 : 0));
}
void setWordCount(SPIRVWord TheWC) override {
if (TheWC > FixedWC)
AccessKind = SPIRVAccessQualifierKind::AccessQualifierMax;
WordCount = TheWC;
}
private:
std::optional<SPIRVAccessQualifierKind> AccessKind;
};
// SPV_INTEL_device_side_avc_motion_estimation extension types
class SPIRVTypeVmeImageINTEL : public SPIRVType {
public:
const static Op OC = OpTypeVmeImageINTEL;
const static SPIRVWord FixedWC = 3;
SPIRVTypeVmeImageINTEL(SPIRVModule *M, SPIRVId TheId,
SPIRVTypeImage *TheImgTy)
: SPIRVType(M, FixedWC, OC, TheId), ImgTy(TheImgTy) {
validate();
}
SPIRVTypeVmeImageINTEL() : SPIRVType(OC), ImgTy(nullptr) {}
const SPIRVTypeImage *getImageType() const { return ImgTy; }
void setImageType(SPIRVTypeImage *TheImgTy) { ImgTy = TheImgTy; }
virtual std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
return std::vector<SPIRVEntry *>(1, ImgTy);
}
SPIRVCapVec getRequiredCapability() const override {
return getVec(CapabilitySubgroupAvcMotionEstimationINTEL);
}
std::optional<ExtensionID> getRequiredExtension() const override {
return ExtensionID::SPV_INTEL_device_side_avc_motion_estimation;
}
protected:
SPIRVTypeImage *ImgTy;
_SPIRV_DEF_ENCDEC2(Id, ImgTy)
void validate() const override {
assert(OpCode == OC);
assert(WordCount == FixedWC);
assert(ImgTy && ImgTy->isTypeImage());
}
};
class SPIRVTypeSubgroupINTEL;
template <>
inline void SPIRVMap<std::string, Op, SPIRVTypeSubgroupINTEL>::init() {
#define _SPIRV_OP(x, y) \
add("opencl.intel_sub_group_avc_" #x, OpTypeAvc##y##INTEL);
_SPIRV_OP(mce_payload_t, McePayload)
_SPIRV_OP(mce_result_t, MceResult)
_SPIRV_OP(sic_payload_t, SicPayload)
_SPIRV_OP(sic_result_t, SicResult)
_SPIRV_OP(ime_result_single_reference_streamout_t,
ImeResultSingleReferenceStreamout)
_SPIRV_OP(ime_result_dual_reference_streamout_t,
ImeResultDualReferenceStreamout)
_SPIRV_OP(ime_single_reference_streamin_t, ImeSingleReferenceStreamin)
_SPIRV_OP(ime_dual_reference_streamin_t, ImeDualReferenceStreamin)
_SPIRV_OP(ime_payload_t, ImePayload)
_SPIRV_OP(ime_result_t, ImeResult)
_SPIRV_OP(ref_payload_t, RefPayload)
_SPIRV_OP(ref_result_t, RefResult);
#undef _SPIRV_OP
}
typedef SPIRVMap<std::string, Op, SPIRVTypeSubgroupINTEL>
OCLSubgroupINTELTypeOpCodeMap;
class SPIRVTypeSubgroupAvcINTEL : public SPIRVType {
public:
// Complete constructor
SPIRVTypeSubgroupAvcINTEL(Op TheOpCode, SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, 2, TheOpCode, TheId) {
validate();
}
// Incomplete constructor
SPIRVTypeSubgroupAvcINTEL(Op TheOpCode)
: SPIRVType(TheOpCode), Opn(SPIRVID_INVALID) {}
SPIRVCapVec getRequiredCapability() const override {
return getVec(CapabilitySubgroupAvcMotionEstimationINTEL);
}
std::optional<ExtensionID> getRequiredExtension() const override {
return ExtensionID::SPV_INTEL_device_side_avc_motion_estimation;
}
SPIRVValue *getOperand() { return getValue(Opn); }
protected:
_SPIRV_DEF_ENCDEC1(Id)
void validate() const override { SPIRVEntry::validate(); }
SPIRVId Opn = SPIRVID_INVALID;
};
template <Op TheOpCode>
class SPIRVSubgroupAvcINTELType : public SPIRVTypeSubgroupAvcINTEL {
public:
// Complete constructor
SPIRVSubgroupAvcINTELType(SPIRVModule *M, SPIRVId TheId)
: SPIRVTypeSubgroupAvcINTEL(TheOpCode, M, TheId) {}
// Incomplete constructor
SPIRVSubgroupAvcINTELType() : SPIRVTypeSubgroupAvcINTEL(TheOpCode) {}
};
#define _SPIRV_OP(x) \
typedef SPIRVSubgroupAvcINTELType<OpType##x##INTEL> SPIRVType##x##INTEL;
_SPIRV_OP(AvcMcePayload)
_SPIRV_OP(AvcImePayload)
_SPIRV_OP(AvcRefPayload)
_SPIRV_OP(AvcSicPayload)
_SPIRV_OP(AvcMceResult)
_SPIRV_OP(AvcImeResult)
_SPIRV_OP(AvcImeResultSingleReferenceStreamout)
_SPIRV_OP(AvcImeResultDualReferenceStreamout)
_SPIRV_OP(AvcImeSingleReferenceStreamin)
_SPIRV_OP(AvcImeDualReferenceStreamin)
_SPIRV_OP(AvcRefResult)
_SPIRV_OP(AvcSicResult)
#undef _SPIRV_OP
class SPIRVTypeTokenINTEL : public SPIRVType {
public:
// Complete constructor
SPIRVTypeTokenINTEL(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, 2, internal::OpTypeTokenINTEL, TheId) {}
// Incomplete constructor
SPIRVTypeTokenINTEL() : SPIRVType(internal::OpTypeTokenINTEL) {}
SPIRVCapVec getRequiredCapability() const override {
return getVec(internal::CapabilityTokenTypeINTEL);
}
std::optional<ExtensionID> getRequiredExtension() const override {
return ExtensionID::SPV_INTEL_token_type;
}
protected:
_SPIRV_DEF_ENCDEC1(Id)
};
class SPIRVTypeJointMatrixINTEL : public SPIRVType {
SPIRVType *CompType;
std::vector<SPIRVValue *> Args;
public:
const static SPIRVWord FixedWC = 3;
// Complete constructor with non-default OC
SPIRVTypeJointMatrixINTEL(SPIRVModule *M, SPIRVId TheId, Op OC,
SPIRVType *CompType,
std::vector<SPIRVValue *> Args);
// Incomplete constructor for default OC
SPIRVTypeJointMatrixINTEL(SPIRVModule *M, SPIRVId TheId, SPIRVType *CompType,
std::vector<SPIRVValue *> Args);
// Incomplete constructor
SPIRVTypeJointMatrixINTEL();
_SPIRV_DCL_ENCDEC
std::optional<ExtensionID> getRequiredExtension() const override {
return ExtensionID::SPV_INTEL_joint_matrix;
}
SPIRVCapVec getRequiredCapability() const override {
return {internal::CapabilityJointMatrixINTEL};
}
void setWordCount(SPIRVWord WordCount) override {
SPIRVType::setWordCount(WordCount);
Args.resize(WordCount - FixedWC);
}
SPIRVType *getCompType() const { return CompType; }
SPIRVValue *getRows() const { return Args[0]; }
SPIRVValue *getColumns() const { return Args[1]; }
SPIRVValue *getLayout() const {
if (this->getOpCode() == internal::OpTypeJointMatrixINTEL)
return Args[2];
return nullptr;
}
SPIRVValue *getScope() const {
if (this->getOpCode() == internal::OpTypeJointMatrixINTEL)
return Args[3];
return Args[2];
}
SPIRVValue *getUse() const {
if (this->getOpCode() == internal::OpTypeJointMatrixINTEL)
return Args.size() > 4 ? Args[4] : nullptr;
return Args[3];
}
SPIRVValue *getComponentTypeInterpretation() const {
if (this->getOpCode() == internal::OpTypeJointMatrixINTEL)
return Args.size() > 5 ? Args[5] : nullptr;
return Args.size() > 4 ? Args[4] : nullptr;
}
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
return std::vector<SPIRVEntry *>(1, CompType);
}
};
class SPIRVTypeCooperativeMatrixKHR : public SPIRVType {
SPIRVType *CompType;
std::vector<SPIRVValue *> Args;
protected:
void validate() const override;
public:
const static Op OC = OpTypeCooperativeMatrixKHR;
const static SPIRVWord FixedWC = 7;
// Incomplete constructor
SPIRVTypeCooperativeMatrixKHR(SPIRVModule *M, SPIRVId TheId,
SPIRVType *CompType,
std::vector<SPIRVValue *> Args);
// Incomplete constructor
SPIRVTypeCooperativeMatrixKHR();
_SPIRV_DCL_ENCDEC
std::optional<ExtensionID> getRequiredExtension() const override {
return ExtensionID::SPV_KHR_cooperative_matrix;
}
SPIRVCapVec getRequiredCapability() const override {
auto CV = getVec(CapabilityCooperativeMatrixKHR);
if (CompType->isTypeFloat(16, FPEncodingBFloat16KHR))
CV.push_back(CapabilityBFloat16CooperativeMatrixKHR);
return CV;
}
SPIRVType *getCompType() const { return CompType; }
SPIRVValue *getScope() const { return Args[0]; }
SPIRVValue *getRows() const { return Args[1]; }
SPIRVValue *getColumns() const { return Args[2]; }
SPIRVValue *getUse() const { return Args[3]; }
std::vector<SPIRVEntry *> getNonLiteralOperands() const override {
return std::vector<SPIRVEntry *>(1, CompType);
}
};
class SPIRVTypeTaskSequenceINTEL : public SPIRVType {
public:
// Complete constructor
SPIRVTypeTaskSequenceINTEL(SPIRVModule *M, SPIRVId TheId)
: SPIRVType(M, 2, internal::OpTypeTaskSequenceINTEL, TheId) {}
// Incomplete constructor
SPIRVTypeTaskSequenceINTEL() : SPIRVType(internal::OpTypeTaskSequenceINTEL) {}
// _SPIRV_DCL_ENCDEC
SPIRVCapVec getRequiredCapability() const override {
return getVec(internal::CapabilityTaskSequenceINTEL);
}
std::optional<ExtensionID> getRequiredExtension() const override {
return ExtensionID::SPV_INTEL_task_sequence;
}
protected:
_SPIRV_DEF_ENCDEC1(Id)
};
} // namespace SPIRV
#endif // SPIRV_LIBSPIRV_SPIRVTYPE_H
|