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 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
/*========================== begin_copyright_notice ============================
This file is distributed under the University of Illinois Open Source License.
See LICENSE.TXT for details.
============================= end_copyright_notice ===========================*/
//===----------------------------------------------------------------------===//
//
// This file defines classes that make it really easy to deal with intrinsic
// functions with the isa/dyncast family of functions. In particular, this
// allows you to do things like:
//
// if (MemCpyInst *MCI = dyn_cast<MemCpyInst>(Inst))
// ... MCI->getDest() ... MCI->getSource() ...
//
// All intrinsic function calls are instances of the call instruction, so these
// are all subclasses of the CallInst class. Note that none of these classes
// has state or virtual methods, which is an important part of this gross/neat
// hack working.
//
//===----------------------------------------------------------------------===//
#pragma once
#include "common/LLVMWarningsPush.hpp"
#include "llvm/IR/Constants.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/Module.h"
#include "common/LLVMWarningsPop.hpp"
#include "Compiler/CodeGenPublicEnums.h"
#include "common/EmUtils.h"
#include "common/Types.hpp"
#include "GenIntrinsics.h"
#include "Probe/Assertion.h"
#include "llvmWrapper/IR/Instructions.h"
namespace llvm {
/// IntrinsicInst - A useful wrapper class for inspecting calls to intrinsic
/// functions. This allows the standard isa/dyncast/cast functionality to
/// work with calls to intrinsic functions.
class GenIntrinsicInst : public CallInst {
GenIntrinsicInst() = delete;
GenIntrinsicInst(const GenIntrinsicInst&) = delete;
void operator=(const GenIntrinsicInst&) = delete;
protected:
inline uint64_t valueToImm64(Value* cv) const
{
return cast<ConstantInt>(cv)->getZExtValue();
}
inline uint32_t valueToImm32(Value* cv) const
{
uint64_t v = valueToImm64(cv);
return int_cast<uint32_t>(v);
}
public:
/// getIntrinsicID - Return the intrinsic ID of this intrinsic.
///
GenISAIntrinsic::ID getIntrinsicID() const {
return GenISAIntrinsic::getIntrinsicID(getCalledFunction());
}
bool isGenIntrinsic(GenISAIntrinsic::ID intrinID) const {
return getIntrinsicID() == intrinID;
}
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const CallInst *I) {
if (const Function *CF = I->getCalledFunction()) {
return (CF->getName().startswith(GenISAIntrinsic::getGenIntrinsicPrefix()));
}
return false;
}
static inline bool classof(const Value *V) {
return isa<CallInst>(V) && classof(cast<CallInst>(V));
}
uint64_t getImm64Operand(unsigned idx) const {
IGC_ASSERT(isa<ConstantInt>(getOperand(idx)));
return valueToImm64(getOperand(idx));
}
};
class RTWritIntrinsic : public GenIntrinsicInst {
protected:
Value* getOperand(unsigned i) const { return GenIntrinsicInst::getOperand(i); }
void setOperand(unsigned i, Value* v) { return GenIntrinsicInst::setOperand(i, v); }
public:
inline Value* getSource0Alpha() const { return getOperand(0); }
inline Value* getOMask() const { return getOperand(1); }
inline Value* getPMask() const { return getOperand(2); }
inline void setPMask(Value* pmask) { setOperand(2, pmask); }
inline Value* getRed() const { return getOperand(3); }
inline Value* getGreen() const { return getOperand(4); }
inline Value* getBlue() const { return getOperand(5); }
inline Value* getAlpha() const { return getOperand(6); }
inline Value* getDepth() const { return getOperand(7); }
inline Value* getStencil() const { return getOperand(8); }
inline Value* getRTIndex() const { return getOperand(9); }
inline Value* getBlendStateIndex() const { return getOperand(10); }
inline Value* getSampleIndex() const { return getOperand(15); }
inline bool isImmRTIndex() const
{ return llvm::isa<llvm::ConstantInt>(getRTIndex()); }
inline int getRTIndexImm() const
{ return (int)llvm::cast<llvm::ConstantInt>(getRTIndex())->getZExtValue(); }
inline bool hasMask() const
{
return valueToImm64(getOperand(11)) != 0;
}
inline bool hasDepth() const
{
return valueToImm64(getOperand(12)) != 0;
}
inline bool hasStencil() const
{
return valueToImm64(getOperand(13)) != 0;
}
inline bool perSample() const
{
return valueToImm64(getOperand(14)) != 0;
}
void setPerSample()
{
Value* btrue = ConstantInt::get(
Type::getInt1Ty(this->getParent()->getContext()), 1);
setOperand(14, btrue);
}
void setSampleIndex(Value* v) { setOperand(15, v); }
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
switch (I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_RTWrite:
return true;
default: return false;
}
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class RTDualBlendSourceIntrinsic : public GenIntrinsicInst {
protected:
Value* getOperand(unsigned i) const { return GenIntrinsicInst::getOperand(i); }
void setOperand(unsigned i, Value* v) { return GenIntrinsicInst::setOperand(i, v); }
public:
inline Value* getSource0Alpha() const { return nullptr; }
inline Value* getOMask() const { return getOperand(0); }
inline Value* getPMask() const { return getOperand(1); }
inline void setPMask(Value* mask) { setOperand(1, mask); }
inline Value* getRed0() const { return getOperand(2); }
inline Value* getGreen0() const { return getOperand(3); }
inline Value* getBlue0() const { return getOperand(4); }
inline Value* getAlpha0() const { return getOperand(5); }
inline Value* getRed1() const { return getOperand(6); }
inline Value* getGreen1() const { return getOperand(7); }
inline Value* getBlue1() const { return getOperand(8); }
inline Value* getAlpha1() const { return getOperand(9); }
inline Value* getDepth() const { return getOperand(10); }
inline Value* getStencil() const { return getOperand(11); }
inline Value* getRTIndex() const { return getOperand(12); }
inline Value* getSampleIndex() const { return getOperand(17); }
inline int getRTIndexImm() const
{ return (int)llvm::cast<llvm::ConstantInt>(getRTIndex())->getZExtValue(); }
inline bool hasMask() const
{
return valueToImm64(getOperand(13)) != 0;
}
inline bool hasDepth() const
{
return valueToImm64(getOperand(14)) != 0;
}
inline bool hasStencil() const
{
return valueToImm64(getOperand(15)) != 0;
}
inline bool perSample() const
{
return valueToImm64(getOperand(16)) != 0;
}
void setPerSample()
{
Value* btrue = ConstantInt::get(
Type::getInt1Ty(this->getParent()->getContext()), 1);
setOperand(16, btrue);
}
void setSampleIndex(Value* v) { setOperand(17, v); }
static inline bool classof(const GenIntrinsicInst *I) {
switch (I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_RTDualBlendSource:
return true;
default: return false;
}
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class SamplerGatherIntrinsic : public GenIntrinsicInst {
public:
bool hasRef() const
{
switch (getIntrinsicID())
{
case GenISAIntrinsic::GenISA_gather4Cptr:
case GenISAIntrinsic::GenISA_gather4POCptr:
return true;
default:
break;
}
return false;
}
inline unsigned int getTextureIndex() const { return getNumOperands() - 7; }
inline unsigned int getSamplerIndex() const { return getNumOperands() - 6; }
inline Value* getTextureValue() const { return getOperand(getTextureIndex()); }
inline Value* getSamplerValue() const { return getOperand(getSamplerIndex()); }
static inline bool classof(const GenIntrinsicInst *I) {
switch(I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_gather4ptr:
case GenISAIntrinsic::GenISA_gather4Cptr:
case GenISAIntrinsic::GenISA_gather4POptr:
case GenISAIntrinsic::GenISA_gather4POCptr:
return true;
default: return false;
}
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class InfoIntrinsic : public GenIntrinsicInst {
public:
static inline bool classof(const GenIntrinsicInst *I) {
switch (I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_sampleinfoptr:
case GenISAIntrinsic::GenISA_resinfoptr:
return true;
default: return false;
}
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class SamplerLoadIntrinsic : public GenIntrinsicInst {
public:
inline unsigned int getCoordinateIndex(unsigned int i) const
{
if (i == 2)
{
return 3;
}
else if (i < 2)
{
return i;
}
else
{
IGC_ASSERT(0);
return UINT_MAX;
}
}
inline unsigned int getTextureIndex() const { return getNumOperands() - 5; }
inline unsigned int getOffsetIndex(unsigned int i) const
{
return 5 + i;
}
inline Value* getTextureValue() const { return getOperand(getTextureIndex()); }
inline Value* getCoordinateValue(unsigned int i) const { return getOperand(getCoordinateIndex(i)); }
inline void setCoordinateValue(unsigned int i, Value* val) { setOperand(getCoordinateIndex(i), val); }
inline Value* getOffsetValue(unsigned int i) const { return getOperand(getOffsetIndex(i)); }
inline void setOffsetValue(unsigned int i, Value* val) { setOperand(getOffsetIndex(i), val); }
static inline bool classof(const GenIntrinsicInst *I) {
switch(I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_ldptr:
case GenISAIntrinsic::GenISA_ldmsptr:
case GenISAIntrinsic::GenISA_ldmcsptr:
return true;
default: return false;
}
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class LdMSIntrinsic : public SamplerLoadIntrinsic {
public:
inline Value* getImmOffset(unsigned int i)
{
return getOperand(arg_size() - 3 + i);
}
inline void setImmOffset(unsigned int i, Value* val)
{
return setOperand(arg_size() - 3 + i, val);
}
inline Value* getCoordinate(unsigned int i)
{
return getOperand(arg_size() - 8 + i);
}
inline void setCoordinate(unsigned int i, Value* val)
{
return setOperand(arg_size() - 8 + i, val);
}
static inline bool classof(const GenIntrinsicInst *I) {
switch(I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_ldmsptr:
return true;
default: return false;
}
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class LdmcsInstrinsic : public SamplerLoadIntrinsic
{
public:
static inline bool classof(const GenIntrinsicInst *I) {
switch(I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_ldmcsptr:
return true;
default: return false;
}
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class LdmsInstrinsic : public SamplerLoadIntrinsic
{
public:
static inline bool classof(const GenIntrinsicInst *I) {
switch(I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_ldmsptr:
return true;
default: return false;
}
}
unsigned int getNumMcsOperands()
{
return 2;
}
Value* getMcsOperand(unsigned int i) { return getOperand(i + 1); }
Value* getSampleIndexValue() { return getOperand(0); }
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class SampleIntrinsic : public GenIntrinsicInst {
public:
bool hasRef() const
{
switch (getIntrinsicID())
{
case GenISAIntrinsic::GenISA_sampleCptr:
case GenISAIntrinsic::GenISA_sampleDCptr:
case GenISAIntrinsic::GenISA_sampleLCptr:
case GenISAIntrinsic::GenISA_sampleBCptr:
return true;
default:
break;
}
return false;
}
bool hasBias() const
{
switch (getIntrinsicID())
{
case GenISAIntrinsic::GenISA_sampleBptr:
case GenISAIntrinsic::GenISA_sampleBCptr:
return true;
default:
break;
}
return false;
}
unsigned int getBiasIndex() const
{
unsigned int shift = hasRef() ? 1 : 0;
return hasBias() ? shift : std::numeric_limits<unsigned int>::max();
}
Value* getBiasValue() const
{
unsigned int index = getBiasIndex();
return hasBias() ? getOperand(index) : nullptr;
}
bool hasLod() const
{
switch (getIntrinsicID())
{
case GenISAIntrinsic::GenISA_sampleLptr:
case GenISAIntrinsic::GenISA_sampleLCptr:
return true;
default:
break;
}
return false;
}
unsigned int getLodIndex() const
{
unsigned int shift = hasRef() ? 1 : 0;
return hasLod() ? shift : std::numeric_limits<unsigned int>::max();
}
Value* getLodValue() const
{
unsigned int index = getLodIndex();
return hasLod() ? getOperand(index) : nullptr;
}
bool hasImmediateOffsets() const
{
return true;
}
unsigned int getImmediateOffsetsIndex() const
{
return hasImmediateOffsets() ?
getNumOperands() - 4 : std::numeric_limits<unsigned int>::max();
}
Value* getImmediateOffsetsValue(unsigned int coordIndex) const
{
unsigned int operandCoordIndex = getImmediateOffsetsIndex() + coordIndex;
return hasImmediateOffsets() ? getOperand(operandCoordIndex) : nullptr;
}
inline Value* getSamplerValue() const
{
unsigned int index = getSamplerIndex();
return getOperand(index);
}
inline Value* getTextureValue() const
{
unsigned int index = getTextureIndex();
return getOperand(index);
}
inline unsigned int getTextureIndex() const
{
unsigned int index = getNumOperands() - 6;
if (IsLODInst())
{
index = getNumOperands() - 3;
}
return index;
}
inline int getSamplerIndex() const
{
unsigned int index = getNumOperands() - 5;
if(IsLODInst())
{
index = getNumOperands() - 2;
}
return index;
}
inline bool IsLODInst() const
{
return getIntrinsicID() == GenISAIntrinsic::GenISA_lodptr;
}
bool ZeroLOD() const
{
if(getIntrinsicID() == GenISAIntrinsic::GenISA_sampleLptr)
{
if(ConstantFP* lod = dyn_cast<ConstantFP>(getOperand(0)))
{
return lod->isZero();
}
}
else if(getIntrinsicID() == GenISAIntrinsic::GenISA_sampleLCptr)
{
if(ConstantFP* lod = dyn_cast<ConstantFP>(getOperand(1)))
{
return lod->isZero();
}
}
return false;
}
bool IsDerivative() const
{
switch(getIntrinsicID())
{
case GenISAIntrinsic::GenISA_sampleptr:
case GenISAIntrinsic::GenISA_sampleKillPix:
case GenISAIntrinsic::GenISA_sampleBptr:
case GenISAIntrinsic::GenISA_sampleCptr:
case GenISAIntrinsic::GenISA_sampleBCptr:
case GenISAIntrinsic::GenISA_lodptr:
return true;
default:
break;
}
return false;
}
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
switch(I->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_sampleptr:
case GenISAIntrinsic::GenISA_sampleBptr:
case GenISAIntrinsic::GenISA_sampleCptr:
case GenISAIntrinsic::GenISA_sampleDptr:
case GenISAIntrinsic::GenISA_sampleDCptr:
case GenISAIntrinsic::GenISA_sampleLptr:
case GenISAIntrinsic::GenISA_sampleLCptr:
case GenISAIntrinsic::GenISA_sampleBCptr:
case GenISAIntrinsic::GenISA_lodptr:
case GenISAIntrinsic::GenISA_sampleKillPix:
return true;
default: return false;
}
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class LdRawIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
if(ID == GenISAIntrinsic::GenISA_ldraw_indexed ||
ID == GenISAIntrinsic::GenISA_ldrawvector_indexed)
{
return true;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
inline Value* getOffsetValue() const
{
return getOperand(1);
}
inline Value* getResourceValue() const{
return getOperand(0);
}
inline Value* getAlignmentValue() const {
return getOperand(2);
}
inline unsigned int getAlignment() const {
return static_cast<unsigned int>(cast<ConstantInt>(getAlignmentValue())->getZExtValue());
}
inline bool isVolatile() const {
IGC_ASSERT(isa<ConstantInt>(getOperand(3)));
ConstantInt* val = dyn_cast<ConstantInt>(getOperand(3));
const bool isVolatile = val ? val->getZExtValue() : false;
return isVolatile;
}
inline void setAlignment(unsigned int alignment)
{
Value* newAlignment = ConstantInt::get(getOperand(2)->getType(), alignment);
setOperand(2, newAlignment);
}
inline void setOffsetValue(Value* V){
setOperand(1, V);
}
};
class StoreRawIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
if (ID == GenISAIntrinsic::GenISA_storeraw_indexed ||
ID == GenISAIntrinsic::GenISA_storerawvector_indexed)
{
return true;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
inline Value* getAlignmentValue() const {
return getOperand(3);
}
inline Value* getOffsetValue() const
{
return getOperand(1);
}
inline Value* getResourceValue() const {
return getOperand(0);
}
inline Value* getStoreValue() const {
return getOperand(2);
}
inline unsigned int getAlignment() const {
IGC_ASSERT(isa<ConstantInt>(getAlignmentValue()));
ConstantInt* val = dyn_cast<ConstantInt>(getAlignmentValue());
const unsigned int alignment = val ? int_cast<unsigned int>(val->getZExtValue()) : 1;
return alignment;
}
inline bool isVolatile() const {
IGC_ASSERT(isa<ConstantInt>(getOperand(4)));
ConstantInt* val = dyn_cast<ConstantInt>(getOperand(4));
const bool isVolatile = val ? val->getZExtValue() : false;
return isVolatile;
}
inline void setOffsetValue(Value* V) {
setOperand(1, V);
}
inline void setAlignment(unsigned int alignment)
{
Value* newAlignment = ConstantInt::get(getOperand(3)->getType(), alignment);
setOperand(3, newAlignment);
}
};
class AtomicRawIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
if (ID == GenISAIntrinsic::GenISA_intatomicraw ||
ID == GenISAIntrinsic::GenISA_intatomicrawA64 ||
ID == GenISAIntrinsic::GenISA_floatatomicraw ||
ID == GenISAIntrinsic::GenISA_floatatomicrawA64 ||
ID == GenISAIntrinsic::GenISA_icmpxchgatomicraw ||
ID == GenISAIntrinsic::GenISA_icmpxchgatomicrawA64 ||
ID == GenISAIntrinsic::GenISA_fcmpxchgatomicraw ||
ID == GenISAIntrinsic::GenISA_fcmpxchgatomicrawA64)
{
return true;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
inline Value* getResourceValue() const {
return getOperand(0);
}
inline IGC::AtomicOp getAtomicOp() const {
GenISAIntrinsic::ID ID = getIntrinsicID();
switch (ID)
{
case GenISAIntrinsic::GenISA_intatomicraw:
case GenISAIntrinsic::GenISA_intatomicrawA64:
case GenISAIntrinsic::GenISA_floatatomicraw:
case GenISAIntrinsic::GenISA_floatatomicrawA64:
return static_cast<IGC::AtomicOp>(getImm64Operand(3));
case GenISAIntrinsic::GenISA_icmpxchgatomicraw:
return IGC::EATOMIC_CMPXCHG;
case GenISAIntrinsic::GenISA_icmpxchgatomicrawA64:
return IGC::EATOMIC_CMPXCHG64;
case GenISAIntrinsic::GenISA_fcmpxchgatomicraw:
case GenISAIntrinsic::GenISA_fcmpxchgatomicrawA64:
return IGC::EATOMIC_FCMPWR;
default:
IGC_ASSERT_MESSAGE(false, "Unexpected atomic raw intrinisc!");
}
return IGC::EATOMIC_UNDEF;
}
};
class AtomicStructuredIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
if (ID == GenISAIntrinsic::GenISA_dwordatomicstructured ||
ID == GenISAIntrinsic::GenISA_floatatomicstructured ||
ID == GenISAIntrinsic::GenISA_cmpxchgatomicstructured ||
ID == GenISAIntrinsic::GenISA_fcmpxchgatomicstructured)
{
return true;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
inline Value* getResourceValue() const {
return getOperand(0);
}
inline Value* getArrayIdx() const {
return getOperand(1);
}
inline void setOffsetValue(Value* V) {
setOperand(1, V);
}
};
class AtomicTypedIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
if (ID == GenISAIntrinsic::GenISA_intatomictyped ||
ID == GenISAIntrinsic::GenISA_icmpxchgatomictyped )
{
return true;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
inline Value* getResourceValue() const {
return getOperand(0);
}
};
class AtomicCounterIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
if (ID == GenISAIntrinsic::GenISA_atomiccounterinc ||
ID == GenISAIntrinsic::GenISA_atomiccounterpredec)
{
return true;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
inline Value* getResourceValue() const {
return getOperand(0);
}
};
class SGVIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
if(ID == GenISAIntrinsic::GenISA_DCL_GSsystemValue ||
ID == GenISAIntrinsic::GenISA_DCL_SystemValue)
{
return true;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
inline IGC::SGVUsage getUsage() const
{
IGC::SGVUsage usage;
if(getIntrinsicID() == GenISAIntrinsic::GenISA_DCL_GSsystemValue)
{
// TODO: deprecate usage of GSSystemValue intrinsic
usage = static_cast<IGC::SGVUsage>(
llvm::cast<llvm::ConstantInt>(getOperand(1))->getZExtValue());
}
else
{
usage = static_cast<IGC::SGVUsage>(
llvm::cast<llvm::ConstantInt>(getOperand(0))->getZExtValue());
}
return usage;
}
inline llvm::Value* getVertexIndex() const
{
llvm::Value* pVertexIndex = nullptr;
if (getIntrinsicID() == GenISAIntrinsic::GenISA_DCL_GSsystemValue)
{
// TODO: deprecate usage of GSSystemValue intrinsic
pVertexIndex = getOperand(0);
}
return pVertexIndex;
}
};
class WavePrefixIntrinsic : public GenIntrinsicInst
{
public:
Value *getSrc() const { return getOperand(0); }
IGC::WaveOps getOpKind() const
{
return static_cast<IGC::WaveOps>(getImm64Operand(1));
}
bool isInclusiveScan() const
{
return getImm64Operand(2) != 0;
}
Value *getMask() const { return getOperand(3); }
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
return I->getIntrinsicID() == GenISAIntrinsic::GenISA_WavePrefix;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class QuadPrefixIntrinsic : public GenIntrinsicInst
{
public:
Value *getSrc() const { return getOperand(0); }
IGC::WaveOps getOpKind() const
{
return static_cast<IGC::WaveOps>(getImm64Operand(1));
}
bool isInclusiveScan() const
{
return getImm64Operand(2) != 0;
}
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
return I->getIntrinsicID() == GenISAIntrinsic::GenISA_QuadPrefix;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
// This is just a meta intrinsic that encapsulates the idea of intrinsics
// that contain continuation IDs.
class ContinuationHLIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
switch (ID)
{
case GenISAIntrinsic::GenISA_TraceRayAsyncHL:
case GenISAIntrinsic::GenISA_CallShaderHL:
return true;
default:
break;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
uint32_t getContinuationID() const {
return (uint32_t)cast<ConstantInt>(getOperand(0))->getZExtValue();
}
void setContinuationID(uint32_t ID) {
IRBuilder<> IRB(this->getContext());
setOperand(0, IRB.getInt32(ID));
}
bool isValidContinuationID() const {
return getContinuationID() != (uint32_t)-1;
}
Function* getContinuationFn() const {
return cast<Function>(getOperand(1)->stripPointerCasts());
}
void setContinuationFn(Function *F) {
IRBuilder<> IRB(this->getContext());
auto* Ty = getOperand(1)->getType();
auto* Cast = IRB.CreatePointerBitCastOrAddrSpaceCast(F, Ty);
setOperand(1, Cast);
}
bool isValidContinuationFn() const {
return isa<Function>(getContinuationFn());
}
};
class TraceRayAsyncHLIntrinsic : public ContinuationHLIntrinsic {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const ContinuationHLIntrinsic *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayAsyncHL;
}
static inline bool classof(const Value *V) {
return isa<ContinuationHLIntrinsic>(V) &&
classof(cast<ContinuationHLIntrinsic>(V));
}
Value* getBVH() const { return getOperand(2); }
Value* getFlag() const { return getOperand(3); }
Value* getMask() const { return getOperand(4); }
Value* getRayContributionToHitGroupIndex() const {
return getOperand(5);
}
Value* getMultiplierForGeometryContributionToHitGroupIndex() const {
return getOperand(6);
}
Value* getMissShaderIndex() const { return getOperand(7); }
Value* getRayInfo(uint32_t Idx) const {
IGC_ASSERT_MESSAGE(Idx < 8, "Index out of range!");
return getOperand(8 + Idx);
}
// Get the 0 - X, 1 - Y, or 2 - Z component of the ray origin
Value* getRayOrig(uint32_t Dim) const {
IGC_ASSERT_MESSAGE(Dim < 3, "Dim out of range!");
return getOperand(8 + Dim);
}
// Get the 0 - X, 1 - Y, or 2 - Z component of the ray direction
Value* getRayDir(uint32_t Dim) const {
IGC_ASSERT_MESSAGE(Dim < 3, "Dim out of range!");
return getOperand(11 + Dim);
}
Value* getTMin() const { return getOperand(14); }
Value* getTMax() const { return getOperand(15); }
Value* getPayload() const { return getOperand(16); }
};
class CallShaderHLIntrinsic : public ContinuationHLIntrinsic {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const ContinuationHLIntrinsic* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_CallShaderHL;
}
static inline bool classof(const Value* V) {
return isa<ContinuationHLIntrinsic>(V) &&
classof(cast<ContinuationHLIntrinsic>(V));
}
Value* getShaderIndex() const { return getOperand(2); }
Value* getParameter() const { return getOperand(3); }
};
class TraceRayIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
switch (ID)
{
case GenISAIntrinsic::GenISA_TraceRaySync:
case GenISAIntrinsic::GenISA_TraceRayAsync:
return true;
default:
break;
}
return false;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getGlobalBufferPointer() const { return getOperand(0); }
Value* getPayload() const { return getOperand(1); }
};
class TraceRayAsyncIntrinsic : public TraceRayIntrinsic {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayAsync;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class TraceRaySyncIntrinsic : public TraceRayIntrinsic {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRaySync;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class BTDIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_BindlessThreadDispatch;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getGlobalBufferPointer() const { return getOperand(0); }
Value* getStackID() const { return getOperand(1); }
Value* getShaderRecordAddress() const { return getOperand(2); }
};
class StackIDReleaseIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_StackIDRelease;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getStackID() const { return getOperand(0); }
Value* getPredicate() const { return getOperand(1); }
};
class ReportHitHLIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_ReportHitHL;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getTHit() const { return getOperand(0); }
Value* getHitKind() const { return getOperand(1); }
Value* getAttributes() const { return getOperand(2); }
};
class SpillValueIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_SpillValue;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
unsigned getDataIdx() const { return 0; }
unsigned getOffsetIdx() const { return 1; }
Value* getData() const { return getOperand(getDataIdx()); }
void setData(Value *V) { setOperand(getDataIdx(), V); }
uint64_t getOffset() const {
return cast<ConstantInt>(getOperand(getOffsetIdx()))->getZExtValue();
}
void setOffset(uint64_t Offset) {
Type* Ty = getOperand(getOffsetIdx())->getType();
setOperand(1, ConstantInt::get(Ty, Offset));
}
};
class RayInfoIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_RayInfo ||
ID == GenISAIntrinsic::GenISA_RayTCurrent;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
IGC::DISPATCH_SHADER_RAY_INFO_TYPE getInfoKind() const {
uint64_t Val = cast<ConstantInt>(getOperand(0))->getZExtValue();
return (IGC::DISPATCH_SHADER_RAY_INFO_TYPE)Val;
}
uint32_t getDim() const {
return (uint32_t)cast<ConstantInt>(getOperand(1))->getZExtValue();
}
};
class FillValueIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_FillValue;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
uint64_t getOffset() const {
return cast<ConstantInt>(getOperand(0))->getZExtValue();
}
void setOffset(uint64_t Offset) {
Type* Ty = getOperand(0)->getType();
setOperand(0, ConstantInt::get(Ty, Offset));
}
};
class AllocaNumberIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_AllocaNumber;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
uint64_t getNumber() const {
return cast<ConstantInt>(getOperand(0))->getZExtValue();
}
};
class LocalBufferPointerIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_LocalBufferPointer;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class GlobalBufferPointerIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_GlobalBufferPointer;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class InlineDataIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_InlinedData;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
uint64_t getArg() const {
return cast<ConstantInt>(getOperand(0))->getZExtValue();
}
};
// Common methods for X and Y components
class TileIntrinsic : public GenIntrinsicInst {
public:
Value* getTID() const { return getOperand(0); }
uint32_t getTileXDim() const {
return (uint32_t)cast<ConstantInt>(getOperand(1))->getZExtValue();
}
uint32_t getSubtileXDim() const {
return (uint32_t)cast<ConstantInt>(getOperand(2))->getZExtValue();
}
uint32_t getSubtileYDim() const {
return (uint32_t)cast<ConstantInt>(getOperand(3))->getZExtValue();
}
};
class TileXIntrinsic : public TileIntrinsic {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TileXOffset;
}
static inline bool classof(const Value* V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class TileYIntrinsic : public TileIntrinsic {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TileYOffset;
}
static inline bool classof(const Value* V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class SWStackPtrIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_SWStackPtr;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getAddr() const { return getOperand(0); }
};
class HitKindIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_HitKind;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
};
class AllocateRayQueryIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_AllocateRayQuery;
}
static inline bool classof(const Value* V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getFlags() const { return getOperand(0); }
};
class RayQueryInstrisicBase : public GenIntrinsicInst
{
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
switch (ID)
{
case GenISAIntrinsic::GenISA_TraceRayInlineHL:
case GenISAIntrinsic::GenISA_TraceRaySyncProceedHL:
case GenISAIntrinsic::GenISA_TraceRaySyncProceed:
case GenISAIntrinsic::GenISA_ShadowMemoryToSyncStack:
case GenISAIntrinsic::GenISA_SyncStackToShadowMemory:
case GenISAIntrinsic::GenISA_TraceRayInlineAbort:
case GenISAIntrinsic::GenISA_TraceRayInlineCommittedStatus:
case GenISAIntrinsic::GenISA_TraceRayInlineCandidateType:
case GenISAIntrinsic::GenISA_TraceRayInlineRayInfo:
case GenISAIntrinsic::GenISA_TraceRayInlineCommitNonOpaqueTriangleHit:
case GenISAIntrinsic::GenISA_TraceRayInlineCommitProceduralPrimitiveHit:
return true;
default:
break;
}
return false;
}
static inline bool classof(const Value* V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getQueryObjIndex() const { return getOperand(0); }
};
class TraceRayInlineHLIntrinsic : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayInlineHL;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
Value* getBVH() const { return getOperand(1); }
Value* getFlag() const { return getOperand(2); }
Value* getMask() const { return getOperand(3); }
Value* getRayInfo(uint32_t Idx) const {
IGC_ASSERT_MESSAGE(Idx < 8, "Index out of range!");
return getOperand(4 + Idx);
}
// Get the 0 - X, 1 - Y, or 2 - Z component of the ray origin
Value* getRayOrig(uint32_t Dim) const {
IGC_ASSERT_MESSAGE(Dim < 3, "Dim out of range!");
return getOperand(4 + Dim);
}
// Get the 0 - X, 1 - Y, or 2 - Z component of the ray direction
Value* getRayDir(uint32_t Dim) const {
IGC_ASSERT_MESSAGE(Dim < 3, "Dim out of range!");
return getOperand(7 + Dim);
}
Value* getTMin() const { return getOperand(10); }
Value* getTMax() const { return getOperand(11); }
};
class TraceRaySyncProceedHLIntrinsic : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRaySyncProceedHL;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
};
class TraceRaySyncProceedIntrinsic : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRaySyncProceed;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
};
class RayQueryAbortIntrinsic : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayInlineAbort;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
};
class RayQueryCommittedStatusIntrinsic : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayInlineCommittedStatus;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
};
class RayQueryCandidateTypeIntrinsic : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayInlineCandidateType;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
};
class RayQueryCommitNonOpaqueTriangleHit : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayInlineCommitNonOpaqueTriangleHit;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
};
class RayQueryCommitProceduralPrimitiveHit : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayInlineCommitProceduralPrimitiveHit;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
Value* getTHit() { return getOperand(1); }
};
class RayQueryInfoIntrinsic : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_TraceRayInlineRayInfo;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
uint32_t getInfoKind() const {
return (uint32_t)cast<ConstantInt>(getOperand(1))->getZExtValue();
}
Value* getDim() const {return getOperand(2);}
};
class RayQueryShadowMemoryToSyncStack : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_ShadowMemoryToSyncStack;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
};
class RayQuerySyncStackToShadowMemory : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_SyncStackToShadowMemory;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
Value* getProceedReturnVal() const { return getOperand(1); }
};
class RayQueryReadTraceRaySync : public RayQueryInstrisicBase {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const RayQueryInstrisicBase* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_ReadTraceRaySync;
}
static inline bool classof(const Value* V) {
return isa<RayQueryInstrisicBase>(V) && classof(cast<RayQueryInstrisicBase>(V));
}
};
class GetShaderRecordPtrIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_GetShaderRecordPtr;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Function* getContinuationFn() const {
return cast<Function>(getOperand(0)->stripPointerCasts());
}
};
class PayloadPtrIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_PayloadPtr;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getPayloadPtr() const { return getOperand(0); }
void setPayloadPtr(Value *V) { return setOperand(0, V); }
Value* getFrameAddr() const { return getOperand(1); }
};
class ContinuationSignpostIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_ContinuationSignpost;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getFrameAddr() const { return getOperand(0); }
Value* getOffset() const { return getOperand(1); }
void setOffset(uint32_t Offset) {
auto& C = this->getContext();
setOperand(1, ConstantInt::get(Type::getInt32Ty(C), Offset));
}
};
class SpillAnchorIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst *I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_rt_spill_anchor;
}
static inline bool classof(const Value *V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
Value* getValue() const { return getOperand(0); }
};
class StaticConstantPatchIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
return ID == GenISAIntrinsic::GenISA_staticConstantPatchValue;
}
static inline bool classof(const Value* V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
llvm::StringRef getPatchName() const
{
llvm::ConstantDataArray* constantVal = llvm::dyn_cast<llvm::ConstantDataArray>(getOperand(0));
return constantVal->getAsString();
}
};
class FPBinaryOperatorIntrinsic : public GenIntrinsicInst {
public:
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GenIntrinsicInst* I) {
GenISAIntrinsic::ID ID = I->getIntrinsicID();
if (ID == GenISAIntrinsic::GenISA_FPBinaryOperator)
{
return true;
}
return false;
}
static inline bool classof(const Value* V) {
return isa<GenIntrinsicInst>(V) && classof(cast<GenIntrinsicInst>(V));
}
inline Value* getLValue() const
{
return getOperand(0);
}
inline Value* getRValue() const {
return getOperand(1);
}
inline uint32_t getFPInstOpcode() const {
return (uint32_t)cast<ConstantInt>(getOperand(2))->getZExtValue();
}
inline bool isFast() const {
return cast<ConstantInt>(getOperand(3))->isOne();
}
enum class FPBinaryOperators : uint32_t
{
FAdd,
FSub,
FMul,
FDiv,
FRem
};
};
template <class X, class Y>
inline bool isa(const Y &Val, GenISAIntrinsic::ID id)
{
if (isa<X>(Val))
{
X* r = cast<X>(Val);
if (r->getIntrinsicID() == id)
{
return true;
}
}
return false;
}
template <class X, class Y>
inline typename cast_retty<X, Y *>::ret_type
dyn_cast(Y *Val, GenISAIntrinsic::ID id)
{
if (isa<X>(Val))
{
X* r = cast<X>(Val);
if (r->getIntrinsicID() == id)
{
return r;
}
}
return nullptr;
}
template <class X, class Y>
inline typename cast_retty<X, Y>::ret_type
dyn_cast(Y &Val, GenISAIntrinsic::ID id)
{
if (isa<X>(Val))
{
typename cast_retty<X, Y>::ret_type r = cast<X>(Val);
if (r->getIntrinsicID() == id)
{
return r;
}
}
return nullptr;
}
// TODO: add more classes to make our intrinsics easier to use
}
|