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 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2022 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#ifndef __GRAPHCOLOR_H__
#define __GRAPHCOLOR_H__
#include "Assertions.h"
#include "BitSet.h"
#include "G4_IR.hpp"
#include "RPE.h"
#include "SpillManagerGMRF.h"
#include "VarSplit.h"
// clang-format off
#include "common/LLVMWarningsPush.hpp"
#include "llvm/Support/Allocator.h"
#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/SetVector.h"
#include "common/LLVMWarningsPop.hpp"
// clang-format on
#include <limits>
#include <list>
#include <map>
#include <memory>
#include <queue>
#include <unordered_set>
#include <vector>
#define BITS_DWORD 32
#define ROUND(x, y) ((x) + ((y - x % y) % y))
namespace vISA {
const float MAXSPILLCOST = (std::numeric_limits<float>::max());
const float MINSPILLCOST = -(std::numeric_limits<float>::max());
enum BankConflict {
BANK_CONFLICT_NONE,
BANK_CONFLICT_FIRST_HALF_EVEN,
BANK_CONFLICT_FIRST_HALF_ODD,
BANK_CONFLICT_SECOND_HALF_EVEN,
BANK_CONFLICT_SECOND_HALF_ODD
};
class VarSplit;
class SpillAnalysis;
class BankConflictPass {
private:
GlobalRA &gra;
bool forGlobal;
BankConflict setupBankAccordingToSiblingOperand(BankConflict assignedBank,
unsigned offset,
bool oneGRFBank);
void setupEvenOddBankConflictsForDecls(G4_Declare *dcl_1, G4_Declare *dcl_2,
unsigned offset1, unsigned offset2,
BankConflict &srcBC1,
BankConflict &srcBC2);
void setupBankConflictsOneGRFOld(G4_INST *inst, int &bank1RegNum,
int &bank2RegNum, float GRFRatio,
unsigned &internalConflict);
bool isOddOffset(unsigned offset) const;
void setupBankConflictsforDPAS(G4_INST *inst);
bool hasDpasInst = false;
void setupBankConflictsforTwoGRFs(G4_INST *inst);
void setupBankConflictsforMad(G4_INST *inst);
void setupBundleConflictsforTwoSrcsInst(G4_INST *inst);
void setupBankConflictsForBB(G4_BB *bb, unsigned &threeSourceInstNum,
unsigned &sendInstNum, unsigned numRegLRA,
unsigned &internalConflict);
void setupBankConflictsForBBTGL(G4_BB *bb, unsigned &threeSourceInstNum,
unsigned &sendInstNum, unsigned numRegLRA,
unsigned &internalConflict);
bool hasInternalConflict3Srcs(BankConflict *srcBC);
void setupBankForSrc0(G4_INST *inst, G4_INST *prevInst);
void getBanks(G4_INST *inst, BankConflict *srcBC, G4_Declare **dcls,
G4_Declare **opndDcls, unsigned *offset);
void getPrevBanks(G4_INST *inst, BankConflict *srcBC, G4_Declare **dcls,
G4_Declare **opndDcls, unsigned *offset);
public:
bool setupBankConflictsForKernel(bool doLocalRR, bool &threeSourceCandidate,
unsigned numRegLRA,
bool &highInternalConflict);
BankConflictPass(GlobalRA &g, bool global) : gra(g), forGlobal(global) {}
};
// A LiveRange's Register Class (RC) is expressed as a bitset of
// forbidden physical registers that it cannot be assigned to.
// -- Address and Flag live ranges currently all belong to same RC
// (FBD_ADDR/FBD_FLAG) as there are no restrictions on their assignment.
// -- The rest of RCs are for GRF live ranges. By default such live ranges have
// FBD_RESERVEDGRF, which reserves a number of GRFs such as r0/r1/RN-1 based on
// kernel type and user options.
// -- The other GRF RCs (e.g., FBD_EOT) reserves additional GRFs on top of
// FDB_RESERVEDGRF base on their usage in the kernel.
// -- RCs must be pre-defined, dynamic creation of new RCs is not supported. If
// your live range belongs to more than one RC, you should add a new RC and
// initialize it in generateForbiddenTemplates()
enum class forbiddenKind {
FBD_ADDR = 0,
FBD_FLAG = 1,
FBD_SCALAR,
FBD_RESERVEDGRF,
FBD_EOT,
FBD_LASTGRF,
FBD_EOTLASTGRF,
FBD_CALLERSAVE,
FBD_CALLEESAVE,
FBD_UNASSIGNED, // This should only ever exist in between rounds of
// incremental RA.
};
constexpr bool isGRFRegClass(forbiddenKind kind) {
return kind == forbiddenKind::FBD_RESERVEDGRF ||
kind == forbiddenKind::FBD_EOT || kind == forbiddenKind::FBD_LASTGRF ||
kind == forbiddenKind::FBD_EOTLASTGRF ||
kind == forbiddenKind::FBD_CALLERSAVE ||
kind == forbiddenKind::FBD_CALLEESAVE;
}
// Return true if k1 is a sub RC of k2, i.e., all of k2's forbidden registers
// are also forbidden in k1.
constexpr bool isSubRegClass(forbiddenKind k1, forbiddenKind k2) {
if (k1 == k2)
return true;
if (k2 == forbiddenKind::FBD_UNASSIGNED)
return true;
if (k2 == forbiddenKind::FBD_RESERVEDGRF && isGRFRegClass(k1))
return true;
if (k1 == forbiddenKind::FBD_EOTLASTGRF)
return k2 == forbiddenKind::FBD_EOT || k2 == forbiddenKind::FBD_LASTGRF;
return false;
}
enum class AugmentationMasks {
Undetermined = 0,
Default16Bit = 1,
Default32Bit = 2,
Default64Bit = 3,
DefaultPredicateMask = 4,
NonDefault = 5,
};
class LiveRange final {
G4_RegVar *const var;
G4_Declare *const dcl;
const G4_RegFileKind regKind;
forbiddenKind forbiddenType = forbiddenKind::FBD_UNASSIGNED;
BitSet *forbidden = nullptr;
bool spilled = false;
bool isUnconstrained = false;
GlobalRA &gra;
unsigned numRegNeeded;
unsigned degree = 0;
unsigned refCount = 0;
unsigned parentLRID = 0;
AssignedReg reg;
float spillCost = 0.0f;
BankConflict bc = BANK_CONFLICT_NONE;
union {
uint16_t bunch = 0;
struct {
uint16_t calleeSaveBias : 1; // indicates if the var is biased to get a
// callee-save assignment or not
uint16_t callerSaveBias : 1; // indicates if the var is biased to get a
// caller-save assignment or not
uint16_t isEOTSrc : 1; // Gen7 only, Whether the liveRange is the message
// source of an EOT send
uint16_t retIp : 1; // variable is the return ip and should not be spilled
uint16_t active : 1;
uint16_t isInfiniteCost : 1;
uint16_t isCandidate : 1;
uint16_t isPseudoNode : 1;
uint16_t isPartialDeclare : 1;
uint16_t isSplittedDeclare : 1;
};
};
LiveRange(G4_RegVar *v, GlobalRA &);
public:
static LiveRange *createNewLiveRange(G4_Declare *dcl, GlobalRA &gra);
void initialize();
void initializeForbidden();
void *operator new(size_t sz, llvm::SpecificBumpPtrAllocator<LiveRange> &m) {
return m.Allocate();
}
void setBitFieldUnionValue(uint16_t v) { bunch = v; }
void setDegree(unsigned d) { degree = d; }
unsigned getDegree() const { return degree; }
void setUnconstrained(bool d) { isUnconstrained = d; }
bool getIsUnconstrained() const { return isUnconstrained; }
unsigned getNumRegNeeded() const { return numRegNeeded; }
void subtractDegree(unsigned d) {
vISA_ASSERT(d <= degree, ERROR_INTERNAL_ARGUMENT);
degree -= d;
}
void setActive(bool v) { active = v; }
bool getActive() const { return active; }
void emit(std::ostream &output) const {
output << getVar()->getDeclare()->getName();
if (reg.phyReg != NULL) {
output << "(";
reg.phyReg->emit(output);
output << '.' << reg.subRegOff << ':';
output << TypeSymbol(getVar()->getDeclare()->getElemType()) << ")";
}
output << "(size = " << getDcl()->getByteSize()
<< ", spill cost = " << getSpillCost()
<< ", degree = " << getDegree() << ")";
}
unsigned getRefCount() const { return refCount; }
void setRefCount(unsigned count) { refCount = count; }
float getSpillCost() const { return spillCost; }
void setSpillCost(float cost) { spillCost = cost; }
bool getIsInfiniteSpillCost() const { return isInfiniteCost; }
void checkForInfiniteSpillCost(G4_BB *bb,
std::list<G4_INST *>::reverse_iterator &it);
G4_VarBase *getPhyReg() const { return reg.phyReg; }
unsigned getPhyRegOff() const { return reg.subRegOff; }
void setPhyReg(G4_VarBase *pr, unsigned off) {
vISA_ASSERT(pr->isPhyReg(), ERROR_UNKNOWN);
reg.phyReg = pr;
reg.subRegOff = off;
}
void resetPhyReg() {
reg.phyReg = nullptr;
reg.subRegOff = 0;
}
bool getIsPseudoNode() const { return isPseudoNode; }
void setIsPseudoNode() { isPseudoNode = true; }
bool getIsPartialDcl() const { return isPartialDeclare; }
void setIsPartialDcl() { isPartialDeclare = true; }
bool getIsSplittedDcl() const { return isSplittedDeclare; }
void setIsSplittedDcl(bool v) { isSplittedDeclare = v; }
BankConflict getBC() const { return bc; }
void setBC(BankConflict c) { bc = c; }
void setParentLRID(int id) { parentLRID = id; }
unsigned getParentLRID() const { return parentLRID; }
// From VarBasis
public:
void setForbidden(forbiddenKind f);
void markForbidden(vISA::Mem_Manager &GCMem, int reg, int numReg);
const BitSet *getForbidden();
int getNumForbidden();
G4_RegVar *getVar() const { return var; }
G4_Declare *getDcl() const { return dcl; }
G4_RegFileKind getRegKind() const { return regKind; }
void dump() const;
void setCalleeSaveBias(bool v) { calleeSaveBias = v; }
bool getCalleeSaveBias() const { return calleeSaveBias; }
void setCallerSaveBias(bool v) { callerSaveBias = v; }
bool getCallerSaveBias() const { return callerSaveBias; }
void setEOTSrc() { isEOTSrc = true; }
bool getEOTSrc() const { return isEOTSrc; }
void setRetIp() { retIp = true; }
bool isRetIp() const { return retIp; }
bool isSpilled() const { return spilled; }
void setSpilled(bool v) { spilled = v; }
void setCandidate(bool v) { isCandidate = v; }
bool getCandidate() const { return isCandidate; }
void resetForbidden() {
forbidden = nullptr;
forbiddenType = forbiddenKind::FBD_UNASSIGNED;
}
private:
// const Options *m_options;
unsigned getForbiddenVectorSize() const;
}; // class LiveRange
} // namespace vISA
using LIVERANGE_LIST = std::list<vISA::LiveRange *>;
using LIVERANGE_LIST_ITER = LIVERANGE_LIST::iterator;
using LiveRangeVec = std::vector<vISA::LiveRange *>;
// A mapping from the pseudo decl created for caller save/restore, to the ret
// val This is used in augmentIntfGraph to prune interference edges for fcall
// ret val
typedef std::map<vISA::G4_Declare *, vISA::G4_Declare *> FCALL_RET_MAP;
typedef std::map<vISA::G4_Declare *, std::pair<vISA::G4_INST *, unsigned>>
CALL_DECL_MAP;
namespace vISA {
typedef struct Interval {
G4_INST *start = nullptr;
G4_INST *end = nullptr;
~Interval() = default;
Interval() = default;
Interval(const Interval &) = default;
Interval &operator=(const Interval &) = default;
bool operator!=(const Interval &Other) {
return start != Other.start || end != Other.end;
}
Interval(G4_INST *s, G4_INST *e) {
start = s;
end = e;
}
bool intervalsOverlap(const Interval &second) const;
} Interval;
// Used as entry in priority queue for storing default, non-default
// intervals.
struct QueueEntry {
G4_Declare *dcl;
Interval interval;
~QueueEntry() = default;
QueueEntry() = default;
QueueEntry(const QueueEntry &) = default;
QueueEntry &operator=(const QueueEntry &) = default;
QueueEntry(G4_Declare *d, const Interval &i) {
dcl = d;
interval = i;
}
};
using AllIntervals = std::vector<QueueEntry>;
struct criticalCmpForEndInterval {
GlobalRA &gra;
criticalCmpForEndInterval(GlobalRA &g);
bool operator()(const QueueEntry &A, const QueueEntry &B) const;
};
struct AugmentPriorityQueue
: std::priority_queue<QueueEntry, std::vector<QueueEntry>,
criticalCmpForEndInterval> {
AugmentPriorityQueue(criticalCmpForEndInterval cmp);
auto begin() const { return c.begin(); }
auto end() const { return c.end(); }
};
} // namespace vISA
//
// A bit array records all interference information.
// (2D matrix is flatten to 1D array)
// Since the interference information is symmetric, we can use only
// half of the size. To simplify the implementation, we use the full
// size of the bit array.
//
namespace vISA {
class Augmentation {
private:
// pair of default mask, non-default mask
using MaskDeclares = std::pair<llvm::DenseSet<unsigned int>, llvm::DenseSet<unsigned int>>;
G4_Kernel &kernel;
Interference &intf;
GlobalRA &gra;
const LivenessAnalysis &liveAnalysis;
const LiveRangeVec &lrs;
FCALL_RET_MAP &fcallRetMap;
CALL_DECL_MAP callDclMap;
std::unordered_map<FuncInfo *, PhyRegSummary> localSummaryOfCallee;
AllIntervals sortedIntervals;
AugmentPriorityQueue defaultMaskQueue{criticalCmpForEndInterval(gra)};
AugmentPriorityQueue nonDefaultMaskQueue{criticalCmpForEndInterval(gra)};
// overlapDclsWithFunc holds default and non-default range live across
// all call sites of func.
std::unordered_map<FuncInfo *, MaskDeclares> overlapDclsWithFunc;
std::unordered_map<G4_Declare *, MaskDeclares> retDeclares;
VarReferences refs;
bool useGenericAugAlign = false;
enum class ArgType {
Init = 0,
// arg may be defined in callee or may be defined once
// and used by multiple call sites. This is different
// than other types as the def may appear anywhere other
// than entry BB. This is a corner case. Live-interval
// of such args span complete function wherever the
// variable is referenced.
Unknown = 1,
// Standard arg that's fully defined before each call site
// in same BB.
DefBeforeEachCall = 2,
// Args that are input to kernel or defined once in entry
// BB but used throughout program belong to this type.
LiveThrough = 3,
};
enum class RetValType {
Init = 0,
// retval pattern irregular. Live-interval of such retval
// span complete function wherever the variable is referenced.
Unknown = 1,
// retval pattern regular. It's defined in callee and
// used in BB immediate after call.
Regular = 2,
};
class ArgRetValInfo {
public:
ArgType argType = ArgType::Init;
RetValType retValType = RetValType::Init;
// Struct to store type of arg/retval and subroutines where it appears.
// We use a set because variables such as HWTID are defined once in
// kernel and used in several subroutines.
std::unordered_set<const FuncInfo *> subroutines;
};
class BBWrapper {
public:
G4_BB *bb = nullptr;
bool endsWithCall = false;
FuncInfo *calleeInfo = nullptr;
};
std::unordered_map<G4_Declare *, ArgRetValInfo> argsRetVal;
std::unordered_map<FuncInfo*, std::unordered_set<G4_Declare*>> argsPerSub;
std::unordered_map<FuncInfo *, std::unordered_set<G4_Declare *>> retValPerSub;
std::unordered_map<G4_Declare *, std::unordered_set<FuncInfo *>> unknownArgRetvalRefs;
std::unordered_map<G4_Declare *, std::unordered_set<FuncInfo *>> nonGRFRefs;
std::vector<BBWrapper> bbCache;
// Store home function for given variable. Home function is defined as
// function that contains explicit def or use of the variable. Each regular
// variable has a unique home function. Arg/retval don't have a unique home
// function as they're usually defined in caller and used in callee, ie
// they're referenced in different functions.
//
// This vector is indexed by G4_Declare's dclId.
//
// It's assumed that augmentation doesn't require resizing this vector
// despite inserting new SCALL dcls as they're all function local.
std::vector<FuncInfo *> homeFunc;
// Sadly, we don't have a way to map G4_INST to containing G4_BB.
// So we create it in Augmentation using below vector. To get
// FuncInfo* for a G4_INST, we dereference instToFunc using
// lexical id of the instruction. We use vector instead of a
// map because it's used often, is faster than map, and
// importantly it's dense so there's no savings to be had with a map.
std::vector<FuncInfo *> instToFunc;
const bool hasSubroutines = false;
void populateBBCache();
void populateFuncMaps();
void populateHomeFunc();
bool isSubroutineArg(G4_Declare *dcl) const {
auto it = argsRetVal.find(dcl);
if (it == argsRetVal.end())
return false;
if ((*it).second.argType != ArgType::Init) {
vISA_ASSERT((*it).second.retValType == RetValType::Init,
"expecting retval type");
return true;
}
return false;
}
bool isSubroutineRetVal(G4_Declare *dcl) const {
auto it = argsRetVal.find(dcl);
if (it == argsRetVal.end())
return false;
if ((*it).second.retValType != RetValType::Init) {
vISA_ASSERT((*it).second.argType == ArgType::Init,
"expecting retval type");
return true;
}
return false;
}
template <ArgType Type> bool isArgType(G4_Declare *dcl) const {
auto it = argsRetVal.find(dcl);
if (it == argsRetVal.end())
return false;
return (*it).second.argType == Type;
}
template <RetValType Type> bool isRetvalType(G4_Declare *dcl) const {
auto it = argsRetVal.find(dcl);
if (it == argsRetVal.end())
return false;
return (*it).second.retValType == Type;
}
bool isLiveThroughArg(G4_Declare *dcl) const;
bool isDefBeforeEachCallArg(G4_Declare *dcl) const;
bool isUnknownArg(G4_Declare *dcl) const;
bool isSingleDefInEntryBB(G4_Declare* dcl) const;
bool isUnknownRetVal(G4_Declare *dcl) const;
bool isRegularRetVal(G4_Declare *dcl) const;
bool isUnknownArgOrRetval(G4_Declare *dcl) const;
FuncInfo *computeHomeFunc(G4_Declare *dcl);
bool hasUniqueFuncHome(G4_Declare *dcl) const;
FuncInfo *getUniqueFuncHome(G4_Declare *dcl) const;
void verifyHomeLocation();
bool updateDstMaskForGather(G4_INST *inst, std::vector<unsigned char> &mask);
bool updateDstMaskForGatherRaw(G4_INST *inst,
std::vector<unsigned char> &mask,
const G4_SendDescRaw *rawDesc);
void updateDstMask(G4_INST *inst, bool checkCmodOnly);
static unsigned getByteSizeFromMask(AugmentationMasks type);
bool isDefaultMaskDcl(G4_Declare *dcl, unsigned simdSize,
AugmentationMasks type);
bool isDefaultMaskSubDeclare(unsigned char *mask, unsigned lb, unsigned rb,
G4_Declare *dcl, unsigned simdSize);
bool verifyMaskIfInit(G4_Declare *dcl, AugmentationMasks mask);
bool checkGRFPattern3(G4_Declare *dcl, G4_DstRegRegion *dst, unsigned maskOff,
unsigned lb, unsigned rb, unsigned execSize);
bool checkGRFPattern2(G4_Declare *dcl, G4_DstRegRegion *dst, unsigned maskOff,
unsigned lb, unsigned rb, unsigned execSize);
bool checkGRFPattern1(G4_Declare *dcl, G4_DstRegRegion *dst, unsigned maskOff,
unsigned lb, unsigned rb, unsigned execSize);
void markNonDefaultDstRgn(G4_INST *inst, G4_Operand *opnd);
bool markNonDefaultMaskDef();
void updateStartIntervalForSubDcl(G4_Declare *dcl, G4_INST *curInst,
G4_Operand *opnd);
void updateEndIntervalForSubDcl(G4_Declare *dcl, G4_INST *curInst,
G4_Operand *opnd);
void updateStartInterval(const G4_Declare *dcl, G4_INST *curInst);
void updateEndInterval(const G4_Declare *dcl, G4_INST *curInst);
void updateStartIntervalForLocal(G4_Declare *dcl, G4_INST *curInst,
G4_Operand *opnd);
void updateEndIntervalForLocal(G4_Declare *dcl, G4_INST *curInst,
G4_Operand *opnd);
void buildUnknownArgRetval();
void buildLiveIntervals(FuncInfo* func);
void buildLiveIntervals();
void sortLiveIntervals();
void startIntervalForLiveIn(FuncInfo *funcInfo, G4_BB *bb);
void handleCallSite(G4_BB *curBB, unsigned int &funcCnt);
void handleDstOpnd(FuncInfo *funcInfo, G4_BB *curBB, G4_INST *inst);
void handleCondMod(FuncInfo* funcInfo, G4_INST *inst);
void endIntervalForLiveOut(FuncInfo *funcInfo, G4_BB *bb);
void handleSrcOpnd(FuncInfo *funcInfo, G4_BB *curBB, G4_Operand *src);
void handlePred(FuncInfo* funcInfo, G4_INST *inst);
void handleNonReducibleExtension(FuncInfo *funcInfo);
void handleLoopExtension(FuncInfo *funcInfo);
std::unordered_set<G4_BB *> getAllJIPTargetBBs(FuncInfo *funcInfo);
std::vector<std::pair<G4_BB *, G4_BB *>>
getNonLoopBackEdges(FuncInfo *funcInfo);
void handleNonLoopBackEdges(FuncInfo *funcInfo);
void extendVarLiveness(FuncInfo *funcInfo, G4_BB *bb, G4_INST *inst);
unsigned getEnd(const G4_Declare *dcl) const;
bool isNoMask(const G4_Declare *dcl, unsigned size) const;
bool isConsecutiveBits(const G4_Declare *dcl, unsigned size) const;
bool isCompatible(const G4_Declare *testDcl,
const G4_Declare *biggerDcl) const;
void buildInterferenceIncompatibleMask();
void buildInteferenceForCallSiteOrRetDeclare(std::vector<G4_Declare*>& dcls,
MaskDeclares *mask);
void buildInteferenceForCallsite(FuncInfo *func);
void buildInteferenceForRetDeclares();
void buildSummaryForCallees();
void expireIntervals(unsigned startIdx);
void buildSIMDIntfDcl(G4_Declare *newDcl);
void storeOverlapWithCallRet(G4_Declare *newDcl,
const std::vector<bool> &globalVars);
void handleSIMDIntf(G4_Declare *firstDcl, G4_Declare *secondDcl, bool isCall);
bool weakEdgeNeeded(AugmentationMasks, AugmentationMasks);
void addSIMDIntfDclForCallSite(G4_BB *callBB,
const std::vector<bool> &globalVars);
void addSIMDIntfForRetDclares(G4_Declare *newDcl,
const std::vector<bool> &globalVars);
void discoverArgs(FuncInfo *func);
void discoverRetVal(FuncInfo *func);
ArgType computeArgType(FuncInfo *func, G4_Declare *arg);
RetValType computeRetValType(FuncInfo *func, G4_Declare *retVal);
// Functions used for verification
void dumpSortedIntervals();
void dumpArgs(SparseBitVector &subArgs);
void dumpRetVal(SparseBitVector &subRetVal);
public:
Augmentation(Interference &i, const LivenessAnalysis &l, GlobalRA &g);
~Augmentation();
Augmentation(const Augmentation&) = delete;
Augmentation& operator=(const Augmentation&) = delete;
void augmentIntfGraph();
const auto &getSortedLiveIntervals() const { return sortedIntervals; }
};
// This class stores base matrices used for interference building for graph coloring.
struct InterferenceMatrixStorage {
// This member is a half triangle representation of interference graph implemented
// as a sparse bitvector. Interference construction uses this member. When
// incremental RA is enabled, this member is updated incrementally.
std::vector<SparseBitVector> sparseMatrix;
// This member is constructed after SIMT and SIMD interference are computed.
// It's a full triangle representation of interference matrix with trivial
// traversal. This member is reconstructed in each graph color iteration.
std::vector<std::vector<unsigned>> sparseIntf;
};
// This class contains implementation of various methods to implement
// incremental intf computation. Instance of this class is created
// once and stored in GlobalRA. This class should therefore not
// hold pointer to GraphColor/Interference or such other short-living
// instances.
class IncrementalRA {
friend Interference;
const SparseBitVector &getSparseMatrix(unsigned int id) {
return sparseMatrix[id];
}
private:
GlobalRA &gra;
G4_Kernel &kernel;
LiveRangeVec lrs;
std::vector<SparseBitVector>& sparseMatrix;
std::vector<std::vector<unsigned>>& sparseIntf;
G4_RegFileKind selectedRF = G4_RegFileKind::G4_UndefinedRF;
unsigned int level = 0;
std::unordered_set<G4_Declare *> needIntfUpdate;
std::unordered_set<G4_Declare *> evenAlignCache;
unsigned int maxDclId = 0;
// Map of root G4_Declare* -> id assigned to its G4_RegVar
// This allows us to reuse ids from previous iteration.
std::unordered_map<G4_Declare *, unsigned int> varIdx;
unsigned int maxVarIdx = 0;
// Only BBs present in this set have interference computation
// done for them. It's assumed other BBs have no change in
// liveness so no change in interference is expected.
std::unordered_set<const G4_BB *> updateIntfForBB;
bool updateIntfForBBValid = false;
// Reset state to mark start of new type of GRA (eg, from flag to GRF)
void reset();
// During incremental update we need to remove edges between each
// incremental intf candidate and their neighbor.
void resetEdges();
// Compute BBs needing incremental update in current iteration.
// List of BBs needing update is stored in updateIntfForBB set.
void collectBBs(const LivenessAnalysis *liveness);
// Special variables such as r0 that are live-out have their
// interference marked already. So these should never be treated as
// incremental RA candidates.
void eraseLiveOutsFromIncrementalUpdate();
public:
llvm::SpecificBumpPtrAllocator<LiveRange> mem;
IncrementalRA(GlobalRA &g);
bool isEnabled() const { return level > 0; }
bool isEnabledWithVerification() const { return level == 2; }
static bool isEnabled(G4_Kernel &kernel) {
// 0 - disabled
// 1 - enabled
// 2 - enabled with verification
return kernel.getOptions()->getuInt32Option(vISA_IncrementalRA) >= 1;
}
static bool isEnabledWithVerification(G4_Kernel &kernel) {
return kernel.getOptions()->getuInt32Option(vISA_IncrementalRA) == 2;
}
void registerNextIter(G4_RegFileKind rf,
const LivenessAnalysis *liveness,
const Interference *intf);
// After computing interference incrementally, GraphColor needs to clear
// candidate list to prepare for new incremental RA temps.
void clearCandidates() {
needIntfUpdate.clear();
updateIntfForBB.clear();
updateIntfForBBValid = false;
for (auto* evenAlignCandidate : evenAlignCache) {
if (!evenAlignCandidate->getAliasDeclare())
needIntfUpdate.insert(evenAlignCandidate);
}
evenAlignCache.clear();
}
LiveRangeVec &getLRs() { return lrs; }
G4_RegFileKind getSelectedRF() const { return selectedRF; }
// This method is invoked when a new G4_Declare is created and a
// LiveRange instance needs to be added for it.
void addNewRAVariable(G4_Declare *dcl);
// This method is invoked when an existing RA variable is either
// removed from the program or a change is expected in liveness
// of a variable due to optimization.
void markForIntfUpdate(G4_Declare *dcl);
void skipIncrementalRANextIter();
void moveFromHybridToGlobalGRF() {
varIdx.clear();
maxVarIdx = 0;
reset();
}
// Return idx of a G4_RegVar if it was given an id in previous
// iteration. If dcl was present in previous id assign phase
// return pair <true, id>. When dcl is seen for first time,
// return <false, X>. Second field of pair contains legal value
// only if first field is true.
std::pair<bool, unsigned int> getIdFromPrevIter(G4_Declare *dcl);
// Record new dcl and id assigned to its G4_RegVar. Update
// maxVarIdx so we know first free id in next RA iteration.
void recordVarId(G4_Declare *dcl, unsigned int id);
// Return next id that can be assigned to a new variable. In 1st
// RA iteration, this returns 0 because no variables exist in
// incremental RA. In 2nd RA iteration, this method returns
// first available index that can be assigned to new variable.
unsigned int getNextVarId(unsigned char RF) {
if ((RF & selectedRF) == 0) {
varIdx.clear();
maxVarIdx = 0;
}
if (varIdx.size() == 0)
return 0;
return maxVarIdx + 1;
}
// Handle local split here. reduceBy argument tells us how many
// G4_Declares were removed by resetGlobalRAStates().
// TODO: Deprecate this method once we stop erasing old partial
// dcls from kernel.Declares
void reduceMaxDclId(unsigned int reduceBy) {
if (!level)
return;
if (maxDclId > 0) {
vISA_ASSERT(maxDclId >= reduceBy, "error removing partial dcls");
maxDclId -= reduceBy;
}
}
void resetPartialDcls();
bool intfNeededForBB(const G4_BB *bb) const {
// If incremental RA is not enabled then all BBs need intf update.
if (!isEnabled() || !updateIntfForBBValid)
return true;
// If incremental RA is enabled then check whether we need to run
// intf for BB.
return updateIntfForBB.count(bb) > 0;
}
bool hasAnyCandidates() const { return needIntfUpdate.size() > 0; }
bool intfNeededForVar(G4_Declare *dcl) const {
if (needIntfUpdate.size() == 0)
return true;
return needIntfUpdate.count(dcl) > 0;
}
void evenAlignUpdate(G4_Declare *dcl) { evenAlignCache.insert(dcl); }
private:
// For verification only
std::vector<SparseBitVector> def_in;
std::vector<SparseBitVector> def_out;
std::vector<SparseBitVector> use_in;
std::vector<SparseBitVector> use_out;
std::vector<SparseBitVector> use_gen;
std::vector<SparseBitVector> use_kill;
std::unique_ptr<VarReferences> prevIterRefs;
// Return true if verification passes, false otherwise
bool verify(const LivenessAnalysis *curLiveness) const;
// Copy over liveness sets from current iteration's liveness
void copyLiveness(const LivenessAnalysis *liveness);
public:
std::unordered_set<G4_Declare *> unassignedVars;
// Compute variables that are left over in sorted list when
// computing color order. This is to aid debugging only.
void computeLeftOverUnassigned(const LiveRangeVec &sorted,
const LivenessAnalysis &liveAnalysis);
};
class Interference {
friend class Augmentation;
// This stores compatible ranges for each variable. Such
// compatible ranges will not be present in sparseIntf set.
// We store G4_Declare* instead of id is because variables
// allocated by LRA will not have a valid id.
std::unordered_map<G4_Declare *, llvm::SmallSetVector<G4_Declare *, 16>>
compatibleSparseIntf;
GlobalRA &gra;
G4_Kernel &kernel;
const LiveRangeVec &lrs;
IR_Builder &builder;
const unsigned maxId;
const unsigned rowSize;
const unsigned splitStartId;
const unsigned splitNum;
unsigned *matrix = nullptr;
const LivenessAnalysis *const liveAnalysis;
Augmentation aug;
IncrementalRA &incRA;
std::vector<std::vector<unsigned>>& sparseIntf;
// sparse interference matrix.
// we don't directly update sparseIntf to ensure uniqueness
// like dense matrix, interference is not symmetric (that is, if v1 and v2
// interfere and v1 < v2, we insert (v1, v2) but not (v2, v1)) for better
// cache behavior
std::vector<SparseBitVector>& sparseMatrix;
unsigned int denseMatrixLimit = 0;
static void updateLiveness(SparseBitVector &live, uint32_t id, bool val) {
if (val) {
live.set(id);
} else {
live.reset(id);
}
}
G4_Declare *getGRFDclForHRA(int GRFNum) const;
// Only upper-half matrix is now used in intf graph.
inline void safeSetInterference(unsigned v1, unsigned v2) {
// Assume v1 < v2
if (useDenseMatrix()) {
unsigned col = v2 / BITS_DWORD;
matrix[v1 * rowSize + col] |= 1 << (v2 % BITS_DWORD);
} else {
sparseMatrix[v1].set(v2);
}
}
inline void safeClearInterference(unsigned v1, unsigned v2) {
// Assume v1 < v2
if (useDenseMatrix()) {
unsigned col = v2 / BITS_DWORD;
matrix[v1 * rowSize + col] &= ~(1 << (v2 % BITS_DWORD));
} else {
sparseMatrix[v1].reset(v2);
}
}
inline void setBlockInterferencesOneWay(unsigned v1, unsigned col,
unsigned block) {
if (useDenseMatrix()) {
#ifdef _DEBUG
vISA_ASSERT(
sparseIntf.size() == 0,
"Updating intf graph matrix after populating sparse intf graph");
#endif
matrix[v1 * rowSize + col] |= block;
} else {
auto &&intfSet = sparseMatrix[v1];
for (int i = 0; i < BITS_DWORD; ++i) {
if (block & (1 << i)) {
uint32_t v2 = col * BITS_DWORD + i;
intfSet.set(v2);
}
}
}
}
unsigned getInterferenceBlk(unsigned idx) const {
vISA_ASSERT(useDenseMatrix(), "matrix is not initialized");
return matrix[idx];
}
void addCalleeSaveBias(const SparseBitVector &live);
void buildInterferenceAtBBExit(const G4_BB *bb, SparseBitVector &live);
void buildInterferenceWithinBB(G4_BB *bb, SparseBitVector &live);
void buildInterferenceForDst(G4_BB *bb, SparseBitVector &live, G4_INST *inst,
std::list<G4_INST *>::reverse_iterator i,
G4_DstRegRegion *dst);
void buildInterferenceForFcall(G4_BB *bb, SparseBitVector &live,
G4_INST *inst,
std::list<G4_INST *>::reverse_iterator i,
const G4_VarBase *regVar);
inline void filterSplitDclares(unsigned startIdx, unsigned endIdx, unsigned n,
unsigned col, unsigned &elt, bool is_split);
void buildInterferenceWithLive(const SparseBitVector &live, unsigned i);
void buildInterferenceWithSubDcl(unsigned lr_id, G4_Operand *opnd,
SparseBitVector &live, bool setLive,
bool setIntf);
void buildInterferenceWithAllSubDcl(unsigned v1, unsigned v2);
void markInterferenceForSend(G4_BB *bb, G4_INST *inst, G4_DstRegRegion *dst);
void setOutOfBoundForbidden(G4_Operand *opnd);
void setForbiddenGRFNumForSVMScatter(G4_INST *inst);
void buildInterferenceWithLocalRA(G4_BB *bb);
void buildInterferenceAmongLiveOuts();
void buildInterferenceAmongLiveIns();
void markInterferenceToAvoidDstSrcOverlap(G4_BB *bb, G4_INST *inst);
void generateSparseIntfGraph();
void countNeighbors();
void setupLRs(G4_BB *bb);
public:
Interference(const LivenessAnalysis *l, GlobalRA &g);
~Interference() {
if (useDenseMatrix()) {
delete[] matrix;
}
}
Interference(const Interference&) = delete;
Interference& operator=(const Interference&) = delete;
bool useDenseMatrix() const {
// The size check is added to prevent offset overflow in
// generateSparseIntfGraph() and help avoid out-of-memory
// issue in dense matrix allocation.
unsigned long long size = static_cast<unsigned long long>(rowSize) *
static_cast<unsigned long long>(maxId);
unsigned long long max = std::numeric_limits<unsigned int>::max();
return (maxId < denseMatrixLimit) && (size < max);
}
const llvm::SmallSetVector<G4_Declare *, 16> *
getCompatibleSparseIntf(G4_Declare *d) const {
if (compatibleSparseIntf.size() > 0) {
auto it = compatibleSparseIntf.find(d);
if (it == compatibleSparseIntf.end()) {
return nullptr;
}
return &it->second;
}
return nullptr;
}
size_t numVarsWithWeakEdges() const { return compatibleSparseIntf.size(); }
void init() {
if (useDenseMatrix()) {
auto N = (size_t)rowSize * (size_t)maxId;
matrix = new uint32_t[N](); // zero-initialize
} else {
sparseMatrix.resize(maxId);
}
}
void computeInterference();
void getNormIntfNum();
void applyPartitionBias();
bool interfereBetween(unsigned v1, unsigned v2) const;
const std::vector<unsigned> &getSparseIntfForVar(unsigned id) const {
return sparseIntf[id];
}
inline bool varSplitCheckBeforeIntf(unsigned v1, unsigned v2) const;
void checkAndSetIntf(unsigned v1, unsigned v2) {
if (v1 < v2) {
safeSetInterference(v1, v2);
} else if (v1 > v2) {
safeSetInterference(v2, v1);
}
}
void dumpInterference() const;
void dumpVarInterference() const;
bool dumpIntf(const char *) const;
void interferenceVerificationForSplit() const;
bool linearScanVerify() const;
bool isStrongEdgeBetween(const G4_Declare *, const G4_Declare *) const;
const Augmentation &getAugmentation() const { return aug; }
};
// Class to compute reg chart dump and dump it to ostream.
// Used only when -dumpregchart is passed.
class RegChartDump {
const GlobalRA &gra;
AllIntervals sortedLiveIntervals;
std::unordered_map<G4_Declare *, std::pair<G4_INST *, G4_INST *>> startEnd;
public:
void recordLiveIntervals(const AllIntervals &dcls);
void dumpRegChart(std::ostream &, const LiveRangeVec &lrs, unsigned numLRs);
RegChartDump(const GlobalRA &g) : gra(g) {}
};
class GraphColor {
GlobalRA &gra;
// Same as GRF count in G4_Kernel.
const unsigned totalGRFRegCount;
const unsigned numVar;
// The original code has no comments whatsoever (sigh), but best as I can tell
// this vector is used to track the active values held by each of A0's
// phyiscal subreg. The values themselves correspond to a word in the
// GRF home location of a spilled address variable. Each GRF home location is
// represented by its allocation order and assumed to be 16-word wide
// regardless of its actual size; in other words,
// AddrSpillLoc0 has [0-15],
// AddrSpillLoc1 has [16-31],
// and so on.
// When the clean up code sees a address fill of the form
// mov (N) a0.i AddrSpillLoc(K).S<1;1,0>:uw
// it updates spAddrRegSig[i, i+N) = [K*16+S, K*16+S+N)
// When it sees a write to AddrSpillLoc, i.e., a spill of the form
// mov (N) AddrSpillLoc(k) a0.i<1;1,0>:uw
// it clears spAddrRegSig's entries that hold AddrSpillLoc(k).
// If it encounters a non-fill write to A0 (e.g., send message descriptor
// write), it also clears the corresponding bits in spAddrRegSig.
//
// FIXME: This code is very likely to be buggy, since its initial value is 0
// and this conflicts with AddrSpillLoc0's first word.
std::vector<unsigned> spAddrRegSig;
Interference intf;
PhyRegPool ®Pool;
IR_Builder &builder;
LiveRangeVec &lrs;
bool isHybrid;
LIVERANGE_LIST spilledLRs;
bool forceSpill;
vISA::Mem_Manager GCMem;
const Options *m_options;
unsigned evenTotalDegree = 1;
unsigned oddTotalDegree = 1;
unsigned evenTotalRegNum = 1;
unsigned oddTotalRegNum = 1;
unsigned evenMaxRegNum = 1;
unsigned oddMaxRegNum = 1;
G4_Kernel &kernel;
LivenessAnalysis &liveAnalysis;
LiveRangeVec colorOrder;
LIVERANGE_LIST unconstrainedWorklist;
LIVERANGE_LIST constrainedWorklist;
unsigned numColor = 0;
bool failSafeIter = false;
// Reserved GRF count for fail-safe RA
unsigned reserveSpillGRFCount = 0;
template<bool Support4GRFAlign>
unsigned edgeWeightGRF(const LiveRange *lr1, const LiveRange *lr2);
unsigned edgeWeightARF(const LiveRange *lr1, const LiveRange *lr2);
static unsigned edgeWeightGRF(bool lr1EvenAlign, bool lr2EvenAlign,
unsigned lr1_nreg, unsigned lr2_nreg) {
unsigned sum = lr1_nreg + lr2_nreg;
if (!lr1EvenAlign) {
return sum - 1;
}
if (!lr2EvenAlign)
return sum + 1 - ((sum) % 2);
return sum - 1 + (lr1_nreg % 2) + (lr2_nreg % 2);
}
static unsigned edgeWeightWith4GRF(int lr1Align, int lr2Align,
unsigned lr1_nreg, unsigned lr2_nreg) {
if (lr1Align < 4 && lr2Align < 4)
return edgeWeightGRF(lr1Align == 2, lr2Align == 2, lr1_nreg, lr2_nreg);
if (lr2Align == 4) {
if (lr1Align < 2)
return lr1_nreg + lr2_nreg - 1;
if (lr1Align == 2) {
// if (lr2_nreg % 2 == 0) -- lr2 size is even
// return lr2_nreg + lr1_nreg;
// if (lr2_nreg % 2 == 1) -- lr2 size is odd
// return lr2_nreg + lr1_nreg + 1;
return lr1_nreg + lr2_nreg + (lr2_nreg % 2);
} else if (lr1Align == 4) {
if (lr2_nreg % 4 == 0)
// lr2 size is multiple of 4
return lr1_nreg + lr2_nreg;
// if lr2_nreg % 4 == 1 -- lr2 size is 1 + (4*n)
// return lr1_nreg + lr2_nreg + 3;
// if lr2_nreg % 2 == 0 -- lr2 size is 2 + (4*n)
// return lr2_nreg + lr1_nreg + 2;
// if lr2_nreg % 4 == 3 -- lr2 size is 3 + (4*n)
// return lr2_nreg + lr1_nreg + 1;
return lr1_nreg + lr2_nreg + 4 - (lr2_nreg % 4);
}
}
vISA_ASSERT(lr1Align == 4, "unexpected condition");
return edgeWeightWith4GRF(lr2Align, lr1Align, lr2_nreg, lr1_nreg);
}
void inline relax(LiveRange *lr1, unsigned int w) {
// relax degree between 2 nodes
VISA_DEBUG_VERBOSE({
std::cout << "\t relax ";
lr1->dump();
std::cout << " degree(" << lr1->getDegree() << ") - " << w << "\n";
});
lr1->subtractDegree(w);
unsigned availColor = numColor;
availColor = numColor - lr1->getNumForbidden();
if (lr1->getDegree() + lr1->getNumRegNeeded() <= availColor) {
unconstrainedWorklist.push_back(lr1);
lr1->setActive(false);
}
}
template <bool Support4GRFAlign>
void computeDegreeForGRF();
void computeDegreeForARF();
void computeSpillCosts(bool useSplitLLRHeuristic, const RPE *rpe);
void determineColorOrdering();
void removeConstrained();
void relaxNeighborDegreeGRF(LiveRange *lr);
void relaxNeighborDegreeARF(LiveRange *lr);
bool assignColors(ColorHeuristic heuristicGRF, bool doBankConflict,
bool highInternalConflict, bool doBundleConflict = false);
bool assignColors(ColorHeuristic h) {
// Do graph coloring without bank conflict reduction.
return assignColors(h, false, false);
}
void clearSpillAddrLocSignature() {
std::fill(spAddrRegSig.begin(), spAddrRegSig.end(), 0);
}
void pruneActiveSpillAddrLocs(G4_DstRegRegion *, unsigned, G4_Type);
void updateActiveSpillAddrLocs(G4_DstRegRegion *, G4_SrcRegRegion *,
unsigned execSize);
bool redundantAddrFill(G4_DstRegRegion *, G4_SrcRegRegion *,
unsigned execSize);
void gatherScatterForbiddenWA();
void preAssignSpillHeader();
public:
void getExtraInterferenceInfo();
GraphColor(LivenessAnalysis &live, bool hybrid, bool forceSpill_);
const Options *getOptions() const { return m_options; }
bool regAlloc(bool doBankConflictReduction, bool highInternalConflict,
const RPE *rpe);
bool requireSpillCode() const { return !spilledLRs.empty(); }
const Interference *getIntf() const { return &intf; }
void createLiveRanges();
const LiveRangeVec &getLiveRanges() const { return lrs; }
const LIVERANGE_LIST &getSpilledLiveRanges() const { return spilledLRs; }
void confirmRegisterAssignments();
void resetTemporaryRegisterAssignments();
void cleanupRedundantARFFillCode();
void getCalleeSaveRegisters();
void addA0SaveRestoreCode();
void addFlagSaveRestoreCode();
void getSaveRestoreRegister();
void getCallerSaveRegisters();
void dumpRegisterPressure(std::ostream&);
void dumpRPEToFile();
GlobalRA &getGRA() { return gra; }
G4_SrcRegRegion *getScratchSurface() const;
unsigned int getNumVars() const { return numVar; }
float getSpillRatio() const { return (float)spilledLRs.size() / numVar; }
void markFailSafeIter(bool f) { failSafeIter = f; }
void setReserveSpillGRFCount(unsigned c) { reserveSpillGRFCount = c; }
};
struct BundleConflict {
const G4_Declare *const dcl;
const int offset;
BundleConflict(const G4_Declare *dcl, int offset)
: dcl(dcl), offset(offset) {}
};
struct RAVarInfo {
unsigned numSplit = 0;
unsigned bb_id = UINT_MAX; // block local variable's block id.
G4_Declare *splittedDCL = nullptr;
LocalLiveRange *localLR = nullptr;
LSLiveRange *LSLR = nullptr;
unsigned numRefs = 0;
BankConflict conflict =
BANK_CONFLICT_NONE; // used to indicate bank that should be assigned to
// dcl if possible
// Store intervals over which variable is live. Note that
// intervals are used only for subroutine arguments. For
// all other variables, it's expected that intervals contains
// a single entry.
std::vector<Interval> intervals;
std::vector<unsigned char> mask;
std::vector<const G4_Declare *> subDclList;
unsigned subOff = 0;
std::vector<BundleConflict> bundleConflicts;
G4_SubReg_Align subAlign = G4_SubReg_Align::Any;
int augAlignInGRF = 0;
AugmentationMasks augMask = AugmentationMasks::Undetermined;
};
struct CustomHash {
size_t operator()(const Interval &seg) const {
return seg.start->getLexicalId();
}
};
[[maybe_unused]]
static bool operator==(const Interval &first, const Interval &second) {
return first.start->getLexicalId() == second.start->getLexicalId();
}
class VerifyAugmentation {
private:
G4_Kernel *kernel = nullptr;
GlobalRA *gra = nullptr;
AllIntervals sortedLiveRanges;
std::unordered_map<const G4_Declare *,
std::tuple<LiveRange *, AugmentationMasks,
std::unordered_set<Interval, CustomHash>>>
masks;
LiveRangeVec lrs;
unsigned numVars = 0;
const Interference *intf = nullptr;
std::unordered_map<G4_Declare *, LiveRange *> DclLRMap;
std::unordered_map<G4_BB *, std::string> bbLabels;
std::vector<std::tuple<G4_BB *, unsigned, unsigned>> BBLexId;
CALL_DECL_MAP callDclMap;
static const char *getStr(AugmentationMasks a) {
if (a == AugmentationMasks::Default16Bit)
return "Default16Bit";
else if (a == AugmentationMasks::Default32Bit)
return "Default32Bit";
else if (a == AugmentationMasks::Default64Bit)
return "Default64Bit";
else if (a == AugmentationMasks::NonDefault)
return "NonDefault";
else if (a == AugmentationMasks::Undetermined)
return "Undetermined";
return "-----";
};
void labelBBs();
void populateBBLexId();
bool interfereBetween(G4_Declare *, G4_Declare *);
void verifyAlign(G4_Declare *dcl);
unsigned getGRFBaseOffset(const G4_Declare *dcl) const;
public:
void verify();
void reset() {
sortedLiveRanges.clear();
masks.clear();
kernel = nullptr;
gra = nullptr;
numVars = 0;
intf = nullptr;
DclLRMap.clear();
bbLabels.clear();
BBLexId.clear();
}
void loadAugData(AllIntervals &s, const LiveRangeVec &l, const CALL_DECL_MAP& c,
unsigned n, const Interference *i, GlobalRA &g);
void dump(const char *dclName);
bool isClobbered(LiveRange *lr, std::string &msg);
};
class PointsToAnalysis;
class ForbiddenRegs {
IR_Builder &builder;
std::vector<BitSet> forbiddenVec;
public:
ForbiddenRegs(IR_Builder &b) : builder(b) {
// Initialize forbidden bits
forbiddenVec.resize((size_t)forbiddenKind::FBD_UNASSIGNED);
forbiddenVec[(size_t)forbiddenKind::FBD_ADDR].resize(
getForbiddenVectorSize(G4_ADDRESS));
forbiddenVec[(size_t)forbiddenKind::FBD_FLAG].resize(
getForbiddenVectorSize(G4_FLAG));
forbiddenVec[(size_t)forbiddenKind::FBD_SCALAR].resize(
getForbiddenVectorSize(G4_SCALAR));
};
unsigned getForbiddenVectorSize(G4_RegFileKind regKind) const;
void generateReservedGRFForbidden(unsigned reserveSpillSize);
void generateLastGRFForbidden();
void generateEOTGRFForbidden();
void generateEOTLastGRFForbidden();
void generateCallerSaveGRFForbidden();
void generateCalleeSaveGRFForbidden();
BitSet *getForbiddenRegs(forbiddenKind type) {
return &forbiddenVec[(size_t)type];
}
};
class GlobalRA {
private:
std::unordered_set<G4_INST *> EUFusionCallWAInsts;
bool m_EUFusionCallWANeeded;
std::unordered_set<G4_INST *> EUFusionNoMaskWAInsts;
public:
bool EUFusionCallWANeeded() const { return m_EUFusionCallWANeeded; }
void addEUFusionCallWAInst(G4_INST *inst);
void removeEUFusionCallWAInst(G4_INST *inst) {
EUFusionCallWAInsts.erase(inst);
}
const std::unordered_set<G4_INST *> &getEUFusionCallWAInsts() {
return EUFusionCallWAInsts;
}
bool EUFusionNoMaskWANeeded() const { return builder.hasFusedEUNoMaskWA(); }
void addEUFusionNoMaskWAInst(G4_BB *BB, G4_INST *Inst);
void removeEUFusionNoMaskWAInst(G4_INST *Inst);
const std::unordered_set<G4_INST *> &getEUFusionNoMaskWAInsts() {
return EUFusionNoMaskWAInsts;
}
public:
std::unique_ptr<VerifyAugmentation> verifyAugmentation;
std::unique_ptr<RegChartDump> regChart;
std::unique_ptr<SpillAnalysis> spillAnalysis;
static bool useGenericAugAlign(PlatformGen gen) {
if (gen == PlatformGen::GEN9 || gen == PlatformGen::GEN8)
return false;
return true;
}
static const char StackCallStr[];
// The pre assigned forbidden register bits for different kinds
ForbiddenRegs fbdRegs;
const bool use4GRFAlign = false;
// [-2^16...2^16) in bytes
// (frame pointer is biased 2^16 so that -2^16 references scratch[0x0])
static constexpr unsigned SPILL_FILL_IMMOFF_MAX = 0x10000; // 64k
static bool LSCUsesImmOff(IR_Builder &builder) {
const auto scratchAddrType = VISA_LSC_IMMOFF_ADDR_TYPE_SS;
const uint32_t immOffOpts =
builder.getuint32Option(vISA_lscEnableImmOffsFor);
return
// HW supports it
builder.getPlatform() >= Xe2 &&
// the spill/fill is enabled in options
(immOffOpts & (1 << VISA_LSC_IMMOFF_SPILL_FILL)) != 0 &&
// address type is also enabled in options
(immOffOpts & (1 << scratchAddrType)) != 0;
}
private:
template <class REGION_TYPE>
static unsigned getRegionDisp(REGION_TYPE *region, const IR_Builder &irb);
unsigned getRegionByteSize(G4_DstRegRegion *region, unsigned execSize);
static bool owordAligned(unsigned offset) { return offset % 16 == 0; }
template <class REGION_TYPE>
bool isUnalignedRegion(REGION_TYPE *region, unsigned execSize);
bool shouldPreloadDst(G4_INST *instContext, G4_BB *curBB);
bool livenessCandidate(const G4_Declare *decl) const;
void updateDefSet(std::set<G4_Declare *> &defs, G4_Declare *referencedDcl);
void detectUndefinedUses(LivenessAnalysis &liveAnalysis, G4_Kernel &kernel);
void markBlockLocalVar(G4_RegVar *var, unsigned bbId);
void markBlockLocalVars();
void fixAlignment();
// Updates `slot1SetR0` and `slot1ResetR0` with hword spill/fill instructions
// that need to update r0.5 to address slot 1 scratch space.
void markSlot1HwordSpillFill(G4_BB *);
void expandSpillIntrinsic(G4_BB *);
void expandFillIntrinsic(G4_BB *);
void expandSpillFillIntrinsics(unsigned);
void saveRestoreA0(G4_BB *);
void initAddrRegForImmOffUseNonStackCall();
static const RAVarInfo defaultValues;
std::vector<RAVarInfo> vars;
std::vector<G4_Declare *> UndeclaredVars;
std::vector<G4_Declare *> UndefinedCmpVars;
// fake declares for each GRF reg, used by HRA
// note only GRFs that are used by LRA get a declare
std::vector<G4_Declare *> GRFDclsForHRA;
// Store all LocalLiveRange instances created so they're
// appropriately destroyed alongwith instance of GlobalRA.
// This needs to be a list because we'll take address of
// its elements and std::vector cannot be used due to its
// reallocation policy.
std::list<LocalLiveRange> localLiveRanges;
std::unordered_map<const G4_BB *, unsigned> subretloc;
// map ret location to declare for call/ret
std::map<uint32_t, G4_Declare *> retDecls;
// store instructions that shouldnt be rematerialized.
std::unordered_set<G4_INST *> dontRemat;
// map each BB to its local RA GRF usage summary, populated in local RA.
std::map<G4_BB *, PhyRegSummary *> bbLocalRAMap;
llvm::SpecificBumpPtrAllocator<PhyRegSummary> PRSAlloc;
RAVarInfo &allocVar(const G4_Declare *dcl) {
auto dclid = dcl->getDeclId();
if (dclid >= vars.size())
vars.resize(dclid + 1);
return vars[dclid];
}
const RAVarInfo &getVar(const G4_Declare *dcl) const {
// It's assumed that dcl has already been added to vars vector. To add newly
// created RA variables to the vector pre-RA, addVarToRA() can be used.
auto dclid = dcl->getDeclId();
return vars[dclid];
}
// temp variable storing the FP dcl's old value
// created in addStoreRestoreForFP
G4_Declare *oldFPDcl = nullptr;
// instruction to save/restore vISA FP, only present in functions
G4_INST *saveBE_FPInst = nullptr;
G4_INST *restoreBE_FPInst = nullptr;
// instruction go update BE_FP, BE_SP, only present in functions
G4_INST *setupBE_FP = nullptr;
G4_INST *setupBE_SP = nullptr;
// new temps for each reference of spilled address/flag decls
std::unordered_set<G4_Declare *> addrFlagSpillDcls;
// track spill/fill code in basic blocks
std::unordered_set<G4_BB *> BBsWithSpillCode;
// store iteration number for GRA loop
unsigned iterNo = 0;
uint32_t numGRFSpill = 0;
uint32_t numGRFFill = 0;
bool canUseLscImmediateOffsetSpillFill = false;
unsigned int numReservedGRFsFailSafe = BoundedRA::NOT_FOUND;
// For hword scratch messages, when using separate scratch space for spills,
// r0.5 needs to be updated before spill/fill to point to slot 1 space.
// These maps mark which spills/fills need to set/reset r0.5.
std::unordered_set<G4_INST *> slot1SetR0;
std::unordered_set<G4_INST *> slot1ResetR0;
void insertSlot1HwordR0Set(G4_BB *bb, INST_LIST_ITER &instIt);
void insertSlot1HwordR0Reset(G4_BB *bb, INST_LIST_ITER &instIt);
bool spillFillIntrinUsesLSC(G4_INST *spillFillIntrin);
void expandFillLSC(G4_BB *bb, INST_LIST_ITER &instIt);
void expandSpillLSC(G4_BB *bb, INST_LIST_ITER &instIt);
void expandScatterSpillLSC(G4_BB *bb, INST_LIST_ITER &instIt);
void expandFillNonStackcall(uint32_t numRows, uint32_t offset,
short rowOffset, G4_SrcRegRegion *header,
G4_DstRegRegion *resultRgn, G4_BB *bb,
INST_LIST_ITER &instIt);
void expandSpillNonStackcall(uint32_t numRows, uint32_t offset,
short rowOffset, G4_SrcRegRegion *header,
G4_SrcRegRegion *payload, G4_BB *bb,
INST_LIST_ITER &instIt);
void expandFillStackcall(uint32_t numRows, uint32_t offset, short rowOffset,
G4_SrcRegRegion *header, G4_DstRegRegion *resultRgn,
G4_BB *bb, INST_LIST_ITER &instIt);
void expandSpillStackcall(uint32_t numRows, uint32_t offset, short rowOffset,
G4_SrcRegRegion *payload, G4_BB *bb,
INST_LIST_ITER &instIt);
bool stopAfter(const char *subpass) const {
auto passName = builder.getOptions()->getOptionCstr(vISA_StopAfterPass);
return passName && strcmp(passName, subpass) == 0;
}
public:
static unsigned sendBlockSizeCode(unsigned owordSize);
// For current program, store caller/callee save/restore instructions
std::unordered_set<G4_INST *> calleeSaveInsts;
std::unordered_set<G4_INST *> calleeRestoreInsts;
std::unordered_map<G4_INST *, std::unordered_set<G4_INST *>> callerSaveInsts;
std::unordered_map<G4_INST *, std::unordered_set<G4_INST *>>
callerRestoreInsts;
std::unordered_map<G4_BB *, std::vector<bool>> callerSaveRegsMap;
std::unordered_map<G4_BB *, unsigned> callerSaveRegCountMap;
std::unordered_map<G4_BB *, std::vector<bool>> retRegsMap;
std::vector<bool> calleeSaveRegs;
unsigned calleeSaveRegCount = 0;
std::unordered_map<G4_Declare *, SplitResults> splitResults;
G4_Kernel &kernel;
IR_Builder &builder;
PhyRegPool ®Pool;
PointsToAnalysis &pointsToAnalysis;
FCALL_RET_MAP fcallRetMap;
const bool useLscForSpillFill;
const bool useLscForScatterSpill;
const bool useLscForNonStackCallSpillFill;
bool useFastRA = false;
bool useHybridRAwithSpill = false;
bool useLocalRA = false;
bool forceBCR = false;
bool twoSrcBundleBCR = false;
uint32_t nextSpillOffset = 0;
uint32_t scratchOffset = 0;
InterferenceMatrixStorage intfStorage;
IncrementalRA incRA;
bool didGRFIncrease = false;
bool avoidBundleConflict = false;
unsigned getSubRetLoc(const G4_BB *bb) {
auto it = subretloc.find(bb);
if (it == subretloc.end())
return UNDEFINED_VAL;
return it->second;
}
void setSubRetLoc(const G4_BB *bb, unsigned s) { subretloc[bb] = s; }
const G4_Declare *getRetDcl(unsigned int retLoc) const {
auto it = retDecls.find(retLoc);
if (it == retDecls.end())
return nullptr;
return it->second;
}
bool isSubRetLocConflict(G4_BB *bb, std::vector<unsigned> &usedLoc,
unsigned stackTop);
void assignLocForReturnAddr();
unsigned determineReturnAddrLoc(unsigned entryId,
std::vector<unsigned> &retLoc, G4_BB *bb);
void insertCallReturnVar();
void insertSaveAddr(G4_BB *);
void insertRestoreAddr(G4_BB *);
void setIterNo(unsigned i) { iterNo = i; }
unsigned getIterNo() const { return iterNo; }
void fixSrc0IndirFcall();
G4_Declare *getRetDecl(uint32_t retLoc) {
auto result = retDecls.find(retLoc);
if (result != retDecls.end()) {
return result->second;
}
const char *name = builder.getNameString(24, "RET__loc%d", retLoc);
G4_Declare *dcl = builder.createDeclare(
name, G4_GRF, builder.getCallRetOpndSize(), 1, Type_UD);
// call destination must still be QWord aligned
auto callDstAlign = Four_Word;
dcl->setSubRegAlign(callDstAlign);
setSubRegAlign(dcl, callDstAlign);
retDecls[retLoc] = dcl;
return dcl;
}
G4_INST *getSaveBE_FPInst() const { return saveBE_FPInst; };
G4_INST *getRestoreBE_FPInst() const { return restoreBE_FPInst; };
static unsigned owordToGRFSize(unsigned numOwords, const IR_Builder &builder);
static unsigned hwordToGRFSize(unsigned numHwords, const IR_Builder &builder);
static unsigned GRFToHwordSize(unsigned numGRFs, const IR_Builder &builder);
static unsigned GRFSizeToOwords(unsigned numGRFs, const IR_Builder &builder);
static unsigned getHWordByteSize();
// RA specific fields
G4_Declare *getGRFDclForHRA(int GRFNum) const {
return GRFDclsForHRA[GRFNum];
}
G4_Declare *getOldFPDcl() const { return oldFPDcl; }
bool isAddrFlagSpillDcl(G4_Declare *dcl) const {
return addrFlagSpillDcls.count(dcl) != 0;
}
void addAddrFlagSpillDcl(G4_Declare *dcl) { addrFlagSpillDcls.insert(dcl); }
bool hasSpillCodeInBB(G4_BB *bb) const {
return BBsWithSpillCode.find(bb) != BBsWithSpillCode.end();
}
void addSpillCodeInBB(G4_BB *bb) { BBsWithSpillCode.insert(bb); }
void addUndefinedDcl(G4_Declare *dcl) { UndeclaredVars.push_back(dcl); }
void addUndefinedCmpDcl(G4_Declare *dcl) { UndefinedCmpVars.push_back(dcl); }
bool isUndefinedDcl(const G4_Declare *dcl) const {
return std::find(UndeclaredVars.begin(), UndeclaredVars.end(), dcl) !=
UndeclaredVars.end();
}
RAVarInfo &addVarToRA(const G4_Declare *dcl) { return allocVar(dcl); }
unsigned getSplitVarNum(const G4_Declare *dcl) const {
return getVar(dcl).numSplit;
}
void setSplitVarNum(const G4_Declare *dcl, unsigned val) {
allocVar(dcl).numSplit = val;
}
unsigned getBBId(const G4_Declare *dcl) const { return getVar(dcl).bb_id; }
void setBBId(const G4_Declare *dcl, unsigned id) { allocVar(dcl).bb_id = id; }
bool isBlockLocal(const G4_Declare *dcl) const {
return getBBId(dcl) < (UINT_MAX - 1);
}
G4_Declare *getSplittedDeclare(const G4_Declare *dcl) const {
return getVar(dcl).splittedDCL;
}
void setSplittedDeclare(const G4_Declare *dcl, G4_Declare *sd) {
allocVar(dcl).splittedDCL = sd;
}
LocalLiveRange *getLocalLR(const G4_Declare *dcl) const {
return getVar(dcl).localLR;
}
void setLocalLR(G4_Declare *dcl, LocalLiveRange *lr) {
RAVarInfo &var = allocVar(dcl);
vISA_ASSERT(var.localLR == NULL,
"Local live range already allocated for declaration");
var.localLR = lr;
lr->setTopDcl(dcl);
}
LSLiveRange *getSafeLSLR(const G4_Declare *dcl) const {
auto dclid = dcl->getDeclId();
if (dclid < vars.size()) {
return vars[dclid].LSLR;
} else {
return nullptr;
}
}
LSLiveRange *getLSLR(const G4_Declare *dcl) const { return getVar(dcl).LSLR; }
void setLSLR(G4_Declare *dcl, LSLiveRange *lr) {
RAVarInfo &var = allocVar(dcl);
vISA_ASSERT(var.LSLR == NULL,
"Local live range already allocated for declaration");
var.LSLR = lr;
lr->setTopDcl(dcl);
}
void resetLSLR(const G4_Declare *dcl) { allocVar(dcl).LSLR = nullptr; }
void resetLocalLR(const G4_Declare *dcl) { allocVar(dcl).localLR = nullptr; }
void clearStaleLiveRanges() {
for (auto dcl : kernel.Declares) {
setBBId(dcl, UINT_MAX);
resetLocalLR(dcl);
}
UndefinedCmpVars.clear();
}
void clearLocalLiveRanges() {
for (auto dcl : kernel.Declares) {
resetLocalLR(dcl);
}
}
void recordRef(const G4_Declare *dcl) { allocVar(dcl).numRefs++; }
unsigned getNumRefs(const G4_Declare *dcl) const {
return getVar(dcl).numRefs;
}
void setNumRefs(const G4_Declare *dcl, unsigned refs) {
allocVar(dcl).numRefs = refs;
}
BankConflict getBankConflict(const G4_Declare *dcl) const {
return getVar(dcl).conflict;
}
void setBankConflict(const G4_Declare *dcl, BankConflict c) {
allocVar(dcl).conflict = c;
}
G4_INST *getStartInterval(const G4_Declare *dcl) const {
return getLastStartInterval(dcl);
}
void setStartInterval(const G4_Declare *dcl, G4_INST *inst) {
setLastStartInterval(dcl, inst);
}
G4_INST *getEndInterval(const G4_Declare *dcl) const {
return getLastEndInterval(dcl);
}
void setEndInterval(const G4_Declare *dcl, G4_INST *inst) {
setLastEndInterval(dcl, inst);
}
void clearIntervals(G4_Declare *dcl) {
auto &intervals = allocVar(dcl).intervals;
intervals.clear();
}
// Used to create new interval for subroutine arg/retval
void pushBackNewInterval(const G4_Declare* dcl) {
auto &intervals = allocVar(dcl).intervals;
intervals.push_back({nullptr, nullptr});
}
const Interval getInterval(const G4_Declare *dcl, unsigned int i) const {
if (i < getNumIntervals(dcl)) {
return getAllIntervals(dcl)[i];
}
vISA_ASSERT(false, "OOB access");
return {};
}
unsigned int getNumIntervals(const G4_Declare *dcl) const {
return getAllIntervals(dcl).size();
}
const G4_INST *getIntervalStart(const Interval &interval) const {
return interval.start;
}
const G4_INST *getIntervalEnd(const Interval &interval) const {
return interval.end;
}
const std::vector<Interval>& getAllIntervals(const G4_Declare *dcl) const {
return getVar(dcl).intervals;
}
G4_INST *getLastStartInterval(const G4_Declare *dcl) const {
auto& intervals = getVar(dcl).intervals;
if (intervals.empty())
return nullptr;
return intervals.back().start;
}
void setLastStartInterval(const G4_Declare *dcl, G4_INST *inst) {
auto &intervals = allocVar(dcl).intervals;
if(intervals.empty())
intervals.resize(1);
intervals.back().start = inst;
}
G4_INST *getLastEndInterval(const G4_Declare *dcl) const {
auto &intervals = getVar(dcl).intervals;
if (intervals.empty())
return nullptr;
return intervals.back().end;
}
void setLastEndInterval(const G4_Declare *dcl, G4_INST *inst) {
auto &intervals = allocVar(dcl).intervals;
if(intervals.empty())
intervals.resize(1);
intervals.back().end = inst;
}
const std::vector<unsigned char> &getMask(const G4_Declare *dcl) const {
return getVar(dcl).mask;
}
void setMask(const G4_Declare *dcl, const std::vector<unsigned char>& m) {
allocVar(dcl).mask = m;
}
AugmentationMasks getAugmentationMask(const G4_Declare *dcl) const {
return getVar(dcl).augMask;
}
void setAugmentationMask(const G4_Declare *dcl, AugmentationMasks m) {
allocVar(dcl).augMask = m;
if (dcl->getIsSplittedDcl()) {
for (const G4_Declare *subDcl : getSubDclList(dcl)) {
setAugmentationMask(subDcl, m);
}
}
}
bool getHasNonDefaultMaskDef(const G4_Declare *dcl) const {
return (getAugmentationMask(dcl) == AugmentationMasks::NonDefault);
}
void addBundleConflictDcl(const G4_Declare *dcl, const G4_Declare *subDcl,
int offset) {
allocVar(dcl).bundleConflicts.emplace_back(subDcl, offset);
}
void clearBundleConflictDcl(const G4_Declare *dcl) {
allocVar(dcl).bundleConflicts.clear();
}
const std::vector<BundleConflict> &
getBundleConflicts(const G4_Declare *dcl) const {
return getVar(dcl).bundleConflicts;
}
unsigned get_bundle(unsigned baseReg, int offset) const {
if (builder.has64bundleSize2GRFPerBank()) {
return (((baseReg + offset) % 32) / 4);
}
if (builder.hasPartialInt64Support()) {
return (((baseReg + offset) % 32) / 2);
}
if (builder.has64bundleSize()) {
return (((baseReg + offset) % 16) / 2);
}
return (((baseReg + offset) % 64) / 4);
}
unsigned get_bank(unsigned baseReg, int offset) {
int bankID = (baseReg + offset) % 2;
if (builder.hasTwoGRFBank16Bundles()) {
bankID = ((baseReg + offset) % 4) / 2;
}
if (builder.has64bundleSize2GRFPerBank()) {
bankID = ((baseReg + offset) % 4) / 2;
}
if (builder.hasOneGRFBank16Bundles()) {
bankID = (baseReg + offset) % 2;
}
if (builder.has64bundleSize()) {
bankID = (baseReg + offset) % 2;
}
return bankID;
}
void addSubDcl(const G4_Declare *dcl, G4_Declare *subDcl) {
allocVar(dcl).subDclList.push_back(subDcl);
}
void clearSubDcl(const G4_Declare *dcl) { allocVar(dcl).subDclList.clear(); }
const std::vector<const G4_Declare *> &
getSubDclList(const G4_Declare *dcl) const {
return getVar(dcl).subDclList;
}
unsigned getSubOffset(const G4_Declare *dcl) const {
return getVar(dcl).subOff;
}
void setSubOffset(const G4_Declare *dcl, unsigned offset) {
allocVar(dcl).subOff = offset;
}
G4_SubReg_Align getSubRegAlign(const G4_Declare *dcl) const {
return getVar(dcl).subAlign;
}
void setSubRegAlign(const G4_Declare *dcl, G4_SubReg_Align subAlg) {
auto &subAlign = allocVar(dcl).subAlign;
// sub reg alignment can only be more restricted than prior setting
vISA_ASSERT(subAlign == Any || subAlign == subAlg || subAlign % 2 == 0,
ERROR_UNKNOWN);
if (subAlign > subAlg) {
vISA_ASSERT(subAlign % subAlg == 0, "Sub reg alignment conflict");
// do nothing; keep the original alignment (more restricted)
} else {
vISA_ASSERT(subAlg % subAlign == 0, "Sub reg alignment conflict");
subAlign = subAlg;
}
}
bool hasAlignSetup(const G4_Declare *dcl) const {
if (getVar(dcl).subAlign == G4_SubReg_Align::Any &&
dcl->getSubRegAlign() != G4_SubReg_Align::Any)
return false;
return true;
}
bool isQuadAligned(const G4_Declare *dcl) const {
auto augAlign = getAugAlign(dcl);
return augAlign == 4;
}
template <bool Support4GRFAlign = true>
bool isEvenAligned(const G4_Declare* dcl) const {
auto augAlign = getAugAlign(dcl);
if constexpr (Support4GRFAlign)
return augAlign > 0 && augAlign % 2 == 0;
else
return (augAlign > 0);
}
int getAugAlign(const G4_Declare *dcl) const {
return getVar(dcl).augAlignInGRF;
}
void forceQuadAlign(const G4_Declare *dcl) { setAugAlign(dcl, 4); }
void resetAlign(const G4_Declare *dcl) { setAugAlign(dcl, 0); }
// Due to legacy usage, this method takes a boolean that, when set,
// causes alignment to be set to Even (2). When boolean flag is
// reset, it also resets alignment to Either (0).
void setEvenAligned(const G4_Declare *dcl, bool align) {
setAugAlign(dcl, align ? 2 : 0);
}
void setAugAlign(const G4_Declare *dcl, int align) {
vISA_ASSERT(align <= 2 || use4GRFAlign, "unexpected alignment");
vISA_ASSERT(align <= 4, "unsupported alignment");
allocVar(dcl).augAlignInGRF = align;
}
BankAlign getBankAlign(const G4_Declare *) const;
bool areAllDefsNoMask(G4_Declare *);
void removeUnreferencedDcls();
LocalLiveRange *GetOrCreateLocalLiveRange(G4_Declare *topdcl);
GlobalRA(G4_Kernel& k, PhyRegPool& r, PointsToAnalysis& p2a)
: fbdRegs(*k.fg.builder),
use4GRFAlign(k.fg.builder->supports4GRFAlign()),
kernel(k), builder(*k.fg.builder), regPool(r),
pointsToAnalysis(p2a),
useLscForSpillFill(k.fg.builder->supportsLSC()),
useLscForScatterSpill(k.fg.builder->supportsLSC() &&
k.fg.builder->getOption(vISA_scatterSpill)),
useLscForNonStackCallSpillFill(
k.fg.builder->useLscForNonStackSpillFill()),
incRA(*this)
{
vars.resize(k.Declares.size());
if (kernel.getOptions()->getOption(vISA_VerifyAugmentation)) {
verifyAugmentation = std::make_unique<VerifyAugmentation>();
}
forceBCR = kernel.getOption(vISA_forceBCR);
twoSrcBundleBCR = kernel.getOption(vISA_twoSrcBundleBCR);
// Set callWA condition.
// Call return ip and mask need wa only for non-entry functions. As call
// WA also needs a temp, we conservatively add WA for
// caller-save/callee-save code too, which applies to all functions,
// including the entry function.
m_EUFusionCallWANeeded =
builder.hasFusedEU() &&
builder.getuint32Option(vISA_fusedCallWA) == 1 &&
(kernel.fg.getHasStackCalls() || kernel.hasIndirectCall());
}
void emitFGWithLiveness(const LivenessAnalysis &liveAnalysis) const;
void reportSpillInfo(const LivenessAnalysis &liveness,
const GraphColor &coloring) const;
static uint32_t getRefCount(int loopNestLevel);
bool canIncreaseGRF(unsigned spillSize, bool infCostSpilled);
void updateSubRegAlignment(G4_SubReg_Align subAlign);
bool isChannelSliced();
// Used by LRA/GRA/hybrid RA
void augAlign();
int getAlignFromAugBucket(G4_Declare *);
void getBankAlignment(LiveRange *lr, BankAlign &align);
void printLiveIntervals();
void reportUndefinedUses(LivenessAnalysis &liveAnalysis, G4_BB *bb,
G4_INST *inst, G4_Declare *referencedDcl,
std::set<G4_Declare *> &defs,
Gen4_Operand_Number opndNum);
void detectNeverDefinedUses();
void determineSpillRegSize(unsigned &spillRegSize,
unsigned &indrSpillRegSize);
G4_Imm *createMsgDesc(unsigned owordSize, bool writeType, bool isSplitSend);
void stackCallProlog();
void saveRegs(unsigned startReg, unsigned owordSize,
G4_Declare *scratchRegDcl, G4_Declare *framePtr,
unsigned frameOwordOffset, G4_BB *bb, INST_LIST_ITER insertIt,
std::unordered_set<G4_INST *> &group);
void saveActiveRegs(std::vector<bool> &saveRegs, unsigned startReg,
unsigned frameOffset, G4_BB *bb, INST_LIST_ITER insertIt,
std::unordered_set<G4_INST *> &group);
void addrRegAlloc();
void flagRegAlloc();
void scalarRegAlloc();
void selectScalarCandidates();
void fastRADecision();
bool tryHybridRA();
bool hybridRA(LocalRA &lra);
void assignRegForAliasDcl();
void removeSplitDecl();
std::pair<unsigned, unsigned> reserveGRFSpillReg(GraphColor &coloring);
void generateForbiddenTemplates(unsigned reserveSpillSize);
void createVariablesForHybridRAWithSpill();
BitSet *getForbiddenRegs(forbiddenKind type) {
return fbdRegs.getForbiddenRegs(type);
}
unsigned getForbiddenVectorSize(G4_RegFileKind regKind) {
return fbdRegs.getForbiddenVectorSize(regKind);
}
int coloringRegAlloc();
void restoreRegs(unsigned startReg, unsigned owordSize,
G4_Declare *scratchRegDcl, G4_Declare *framePtr,
unsigned frameOwordOffset, G4_BB *bb,
INST_LIST_ITER insertIt,
std::unordered_set<G4_INST *> &group, bool caller);
void restoreActiveRegs(std::vector<bool> &restoreRegs, unsigned startReg,
unsigned frameOffset, G4_BB *bb,
INST_LIST_ITER insertIt,
std::unordered_set<G4_INST *> &group, bool caller);
void OptimizeActiveRegsFootprint(std::vector<bool> &saveRegs);
void OptimizeActiveRegsFootprint(std::vector<bool> &saveRegs,
std::vector<bool> &retRegs);
void addCallerSaveRestoreCode();
void addCalleeSaveRestoreCode();
void addGenxMainStackSetupCode();
void addCalleeStackSetupCode();
void addSaveRestoreCode(unsigned localSpillAreaOwordSize);
void addCallerSavePseudoCode();
void addCalleeSavePseudoCode();
void addStoreRestoreToReturn();
void storeCEInProlog();
void setUndefinedVarCmp();
void markGraphBlockLocalVars();
void verifyRA(LivenessAnalysis &liveAnalysis);
void verifySpillFill();
void resetGlobalRAStates();
bool canSkipFDE() const;
void initSRAsScratch() const;
void insertPhyRegDecls();
void copyMissingAlignment() {
// Insert alignment for vars created in RA
for (auto dcl : kernel.Declares) {
if (dcl->getAliasDeclare())
continue;
if (dcl->getDeclId() >= vars.size()) {
allocVar(dcl);
}
if (!hasAlignSetup(dcl)) {
// Var may be temp created in RA
setSubRegAlign(dcl, dcl->getSubRegAlign());
setEvenAligned(dcl, dcl->isEvenAlign());
}
}
}
void copyAlignment(G4_Declare *dst, G4_Declare *src) {
setAugAlign(dst, getAugAlign(src));
setSubRegAlign(dst, getSubRegAlign(src));
}
void copyAlignment() {
for (auto dcl : kernel.Declares) {
if (dcl->getAliasDeclare())
continue;
setSubRegAlign(dcl, dcl->getSubRegAlign());
setEvenAligned(dcl, dcl->isEvenAlign());
}
}
bool isNoRemat(G4_INST *inst) {
return dontRemat.find(inst) != dontRemat.end();
}
void addNoRemat(G4_INST *inst) { dontRemat.insert(inst); }
unsigned int getNumReservedGRFs() {
// Return # GRFs reserved for new fail safe mechanism
// 1. If fail safe mechanism is invoked before coloring then
// # reserved GRFs is updated explicitly before this method
// is invoked.
// 2. If a regular (ie, non-fail safe) RA iteration spill
// very little then we may convert it to fail safe but with
// 0 reserved GRFs as it it too late to reserve a GRF after
// coloring.
if (numReservedGRFsFailSafe == BoundedRA::NOT_FOUND)
numReservedGRFsFailSafe =
kernel.getSimdSize() == kernel.numEltPerGRF<Type_UD>() ? 1 : 2;
return numReservedGRFsFailSafe;
}
void setNumReservedGRFsFailSafe(unsigned int num) {
numReservedGRFsFailSafe = num;
}
PhyRegSummary *createPhyRegSummary() {
auto PRSMem = PRSAlloc.Allocate();
return new (PRSMem) PhyRegSummary(&builder, kernel.getNumRegTotal());
}
void addBBLRASummary(G4_BB *bb, PhyRegSummary *summary) {
bbLocalRAMap.insert(std::make_pair(bb, summary));
}
void clearBBLRASummaries() { bbLocalRAMap.clear(); }
PhyRegSummary *getBBLRASummary(G4_BB *bb) const {
auto &&iter = bbLocalRAMap.find(bb);
return iter != bbLocalRAMap.end() ? iter->second : nullptr;
}
unsigned computeSpillSize(const LIVERANGE_LIST &spilledLRs);
unsigned computeSpillSize(std::list<LSLiveRange *> &spilledLRs);
bool spillSpaceCompression(int spillSize,
const int globalScratchOffset);
bool kernelUsesDpas() const;
public:
// Store new variables created when inserting scalar imm
// spill/fill code. Such variables are not infinite spill
// cost. So if the variable spills again, we shouldn't
// get in an infinite loop by retrying same spill/fill.
std::unordered_set<G4_Declare *> scalarSpills;
private:
// Following methods are invoked from coloringRegAlloc() method. Any
// operation needed in global graph coloring loop should be extracted to a
// method instead of inlining logic in code directly in interest of keeping
// the loop maintainable.
void stackCallSaveRestore(bool hasStackCall);
int doGlobalLinearScanRA();
void incRABookKeeping();
// return pair <whether remat modified program, rematDone>
std::pair<bool, bool> remat(bool fastCompile, bool rematDone,
LivenessAnalysis &liveAnalysis,
GraphColor &coloring, RPE &rpe);
// rerun GRA, alignedScalarSplitDone, isEarlyExit
std::tuple<bool, bool, bool> alignedScalarSplit(bool fastCompile,
bool alignedScalarSplitDone,
GraphColor &coloring);
bool globalSplit(VarSplit &splitPass, GraphColor &coloring);
int localSplit(bool fastCompile, VarSplit &splitPass);
// return <doBCReduction, highInternalConflict>
std::pair<bool, bool> bankConflict();
// return reserveSpillReg
bool setupFailSafeIfNeeded(bool fastCompile, bool hasStackCall,
unsigned int maxRAIterations,
unsigned int failSafeRAIteration);
void undefinedUses(bool rematDone, LivenessAnalysis &liveAnalysis);
void writeVerboseStatsNumVars(LivenessAnalysis &liveAnalysis,
FINALIZER_INFO *jitInfo);
void writeVerboseRPEStats(RPE &rpe);
bool VRTIncreasedGRF(GraphColor &coloring);
bool canVRTIncreasedGRF(GraphColor &coloring);
void splitOnSpill(bool fastCompile, GraphColor &coloring,
LivenessAnalysis &livenessAnalysis);
bool convertToFailSafe(bool reserveSpillReg, GraphColor &coloring,
LivenessAnalysis &liveAnalysis,
unsigned int nextSpillOffset);
unsigned int instCount() const {
unsigned int instNum = 0;
for (auto bb : kernel.fg) {
instNum += (int)bb->size();
}
return instNum;
}
// tuple of abort, updated GRFSpillFillCount, updated spillSize
std::tuple<bool, unsigned int, unsigned int>
abortOnSpill(unsigned int GRFSpillFillCount, unsigned int spillSize,
GraphColor &coloring);
void verifyNoInfCostSpill(GraphColor &coloring, bool reserveSpillReg);
void setupA0Dot2OnSpill(bool hasStackCall, unsigned int nextSpillOffset,
int globalScratchOffset);
// isEarlyExit
bool spillCleanup(bool fastCompile, bool useScratchMsgForSpill,
bool hasStackCall, bool reserveSpillReg, RPE &rpe,
GraphColor &coloring, LivenessAnalysis &liveAnalysis,
SpillManagerGRF &spillGRF);
// success, enableSpillSpaceCompression, isEarlyExit, scratchOffset,
// nextSpillOffset
std::tuple<bool, bool, bool, unsigned int, unsigned int>
insertSpillCode(bool enableSpillSpaceCompression, GraphColor &coloring,
LivenessAnalysis &liveAnalysis, RPE &rpe,
unsigned int scratchOffset, bool fastCompile,
bool hasStackCall, int globalScratchOffset,
unsigned int nextSpillOffset, bool reserveSpillReg,
unsigned int spillRegSize, unsigned int indrSpillRegSize,
bool useScratchMsgForSpill);
bool rerunGRAIter(bool rerunGRA);
};
inline G4_Declare *Interference::getGRFDclForHRA(int GRFNum) const {
return gra.getGRFDclForHRA(GRFNum);
}
class VarSplit {
private:
G4_Kernel &kernel;
GlobalRA &gra;
VarRange *splitVarRange(VarRange *src1, VarRange *src2,
std::stack<VarRange *> *toDelete);
void rangeListSpliting(VAR_RANGE_LIST *rangeList, G4_Operand *opnd,
std::stack<VarRange *> *toDelete);
void getHeightWidth(G4_Type type, unsigned numberElements,
unsigned short &dclWidth, unsigned short &dclHeight,
int &totalByteSize) const;
void createSubDcls(G4_Kernel &kernel, G4_Declare *oldDcl,
std::vector<G4_Declare *> &splitDclList);
void insertMovesToTemp(IR_Builder &builder, G4_Declare *oldDcl,
G4_Operand *dstOpnd, G4_BB *bb,
INST_LIST_ITER instIter,
std::vector<G4_Declare *> &splitDclList);
void insertMovesFromTemp(G4_Kernel &kernel, G4_Declare *oldDcl, int index,
G4_Operand *srcOpnd, int pos, G4_BB *bb,
INST_LIST_ITER instIter,
std::vector<G4_Declare *> &splitDclList);
public:
bool didLocalSplit = false;
bool didGlobalSplit = false;
int localSplit(IR_Builder &builder, G4_BB *bb);
void globalSplit(IR_Builder &builder, G4_Kernel &kernel);
bool canDoGlobalSplit(IR_Builder &builder, G4_Kernel &kernel,
uint32_t sendSpillRefCount);
VarSplit(GlobalRA &g) : kernel(g.kernel), gra(g) {}
};
class DynPerfModel {
private:
std::string Buffer;
public:
G4_Kernel &Kernel;
unsigned int NumSpills = 0;
unsigned int NumFills = 0;
unsigned int NumRAIters = 0;
unsigned long long TotalDynInst = 0;
unsigned long long FillDynInst = 0;
unsigned long long SpillDynInst = 0;
// vector item at index i corresponds to nesting level i
// #Loops at this nesting level, #Spills, #Fills
std::vector<std::tuple<unsigned int, unsigned int, unsigned int>>
SpillFillPerNestingLevel;
DynPerfModel(G4_Kernel &K) : Kernel(K) {}
void run();
void dump();
};
// Class used to analyze spill/fill decisions
class SpillAnalysis {
public:
SpillAnalysis() = default;
~SpillAnalysis();
SpillAnalysis(const SpillAnalysis &) = delete;
SpillAnalysis &operator=(const SpillAnalysis &) = delete;
void Dump(std::ostream &OS = std::cerr);
void DumpHistogram(std::ostream &OS = std::cerr);
unsigned int GetDistance(G4_Declare *Dcl);
void LoadAugIntervals(AllIntervals &, GlobalRA &);
void LoadDegree(G4_Declare *Dcl, unsigned int degree);
void SetLivenessAnalysis(LivenessAnalysis *L) { LA = L; }
void SetGraphColor(GraphColor *C) { GC = C; }
void SetSpillManager(SpillManagerGRF *S) { SM = S; }
void Clear();
void Do(LivenessAnalysis *L, GraphColor *C, SpillManagerGRF *S);
private:
VarReferences *Refs = nullptr;
LivenessAnalysis *LA = nullptr;
GraphColor *GC = nullptr;
SpillManagerGRF *SM = nullptr;
std::unordered_map<G4_Declare *, std::pair<G4_INST *, G4_INST *>>
AugIntervals;
std::unordered_map<G4_Declare *, unsigned int> DclDegree;
std::vector<G4_BB *> GetLiveBBs(G4_Declare *,
std::unordered_map<G4_INST *, G4_BB *> &);
std::vector<G4_BB *>
GetIntervalBBs(G4_INST *Start, G4_INST *End,
std::unordered_map<G4_INST *, G4_BB *> &InstBBMap);
};
} // namespace vISA
#endif // __GRAPHCOLOR_H__
|