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
|
//===--- SwiftLookupTable.cpp - Swift Lookup Table ------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file implements support for Swift name lookup tables stored in Clang
// modules.
//
//===----------------------------------------------------------------------===//
#include "ImporterImpl.h"
#include "SwiftLookupTable.h"
#include "swift/AST/DiagnosticEngine.h"
#include "swift/AST/DiagnosticsClangImporter.h"
#include "swift/Basic/STLExtras.h"
#include "swift/Basic/Version.h"
#include "clang/AST/DeclCXX.h"
#include "clang/AST/DeclObjC.h"
#include "clang/Lex/MacroInfo.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Sema/Sema.h"
#include "clang/Serialization/ASTBitCodes.h"
#include "clang/Serialization/ASTReader.h"
#include "clang/Serialization/ASTWriter.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Bitcode/BitcodeConvenience.h"
#include "llvm/Bitstream/BitstreamReader.h"
#include "llvm/Bitstream/BitstreamWriter.h"
#include "llvm/Support/DJB.h"
#include "llvm/Support/OnDiskHashTable.h"
using namespace swift;
using namespace importer;
using namespace llvm::support;
/// Determine whether the new declarations matches an existing declaration.
static bool matchesExistingDecl(clang::Decl *decl, clang::Decl *existingDecl) {
// If the canonical declarations are equivalent, we have a match.
if (decl->getCanonicalDecl() == existingDecl->getCanonicalDecl()) {
return true;
}
return false;
}
namespace {
class BaseNameToEntitiesTableReaderInfo;
class GlobalsAsMembersTableReaderInfo;
using SerializedBaseNameToEntitiesTable =
llvm::OnDiskIterableChainedHashTable<BaseNameToEntitiesTableReaderInfo>;
using SerializedGlobalsAsMembersTable =
llvm::OnDiskIterableChainedHashTable<BaseNameToEntitiesTableReaderInfo>;
using SerializedGlobalsAsMembersIndex =
llvm::OnDiskIterableChainedHashTable<GlobalsAsMembersTableReaderInfo>;
} // end anonymous namespace
namespace swift {
/// Module file extension writer for the Swift lookup tables.
class SwiftLookupTableWriter : public clang::ModuleFileExtensionWriter {
clang::ASTWriter &Writer;
ASTContext &swiftCtx;
importer::ClangSourceBufferImporter &buffersForDiagnostics;
const PlatformAvailability &availability;
public:
SwiftLookupTableWriter(
clang::ModuleFileExtension *extension, clang::ASTWriter &writer,
ASTContext &ctx,
importer::ClangSourceBufferImporter &buffersForDiagnostics,
const PlatformAvailability &avail)
: ModuleFileExtensionWriter(extension), Writer(writer), swiftCtx(ctx),
buffersForDiagnostics(buffersForDiagnostics), availability(avail) {}
void writeExtensionContents(clang::Sema &sema,
llvm::BitstreamWriter &stream) override;
void populateTable(SwiftLookupTable &table, NameImporter &);
void populateTableWithDecl(SwiftLookupTable &table,
NameImporter &nameImporter, clang::Decl *decl);
};
/// Module file extension reader for the Swift lookup tables.
class SwiftLookupTableReader : public clang::ModuleFileExtensionReader {
clang::ASTReader &Reader;
clang::serialization::ModuleFile &ModuleFile;
std::function<void()> OnRemove;
std::unique_ptr<SerializedBaseNameToEntitiesTable> SerializedTable;
ArrayRef<clang::serialization::DeclID> Categories;
std::unique_ptr<SerializedGlobalsAsMembersTable> GlobalsAsMembersTable;
std::unique_ptr<SerializedGlobalsAsMembersIndex> GlobalsAsMembersIndex;
SwiftLookupTableReader(clang::ModuleFileExtension *extension,
clang::ASTReader &reader,
clang::serialization::ModuleFile &moduleFile,
std::function<void()> onRemove,
std::unique_ptr<SerializedBaseNameToEntitiesTable>
serializedTable,
ArrayRef<clang::serialization::DeclID> categories,
std::unique_ptr<SerializedGlobalsAsMembersTable>
globalsAsMembersTable,
std::unique_ptr<SerializedGlobalsAsMembersIndex>
globalsAsMembersIndex)
: ModuleFileExtensionReader(extension), Reader(reader),
ModuleFile(moduleFile), OnRemove(onRemove),
SerializedTable(std::move(serializedTable)), Categories(categories),
GlobalsAsMembersTable(std::move(globalsAsMembersTable)),
GlobalsAsMembersIndex(std::move(globalsAsMembersIndex)) {}
public:
/// Create a new lookup table reader for the given AST reader and stream
/// position.
static std::unique_ptr<SwiftLookupTableReader>
create(clang::ModuleFileExtension *extension, clang::ASTReader &reader,
clang::serialization::ModuleFile &moduleFile,
std::function<void()> onRemove, const llvm::BitstreamCursor &stream);
~SwiftLookupTableReader() override;
/// Retrieve the AST reader associated with this lookup table reader.
clang::ASTReader &getASTReader() const { return Reader; }
/// Retrieve the module file associated with this lookup table reader.
clang::serialization::ModuleFile &getModuleFile() { return ModuleFile; }
/// Retrieve the set of base names that are stored in the on-disk hash table.
SmallVector<SerializedSwiftName, 4> getBaseNames();
/// Retrieve the set of entries associated with the given base name.
///
/// \returns true if we found anything, false otherwise.
bool lookup(SerializedSwiftName baseName,
SmallVectorImpl<SwiftLookupTable::FullTableEntry> &entries);
/// Retrieve the declaration IDs of the categories.
ArrayRef<clang::serialization::DeclID> categories() const {
return Categories;
}
/// Retrieve the set of contexts that have globals-as-members
/// injected into them.
SmallVector<SwiftLookupTable::StoredContext, 4> getGlobalsAsMembersContexts();
SmallVector<SerializedSwiftName, 4> getGlobalsAsMembersBaseNames();
/// Retrieve the set of global declarations that are going to be
/// imported as members into the given context.
///
/// \returns true if we found anything, false otherwise.
bool lookupGlobalsAsMembersInContext(SwiftLookupTable::StoredContext context,
SmallVectorImpl<uint64_t> &entries);
/// Retrieve the set of global declarations that are going to be imported as members under the given
/// Swift base name.
///
/// \returns true if we found anything, false otherwise.
bool lookupGlobalsAsMembers(
SerializedSwiftName baseName,
SmallVectorImpl<SwiftLookupTable::FullTableEntry> &entries);
};
} // namespace swift
DeclBaseName SerializedSwiftName::toDeclBaseName(ASTContext &Context) const {
switch (Kind) {
case DeclBaseName::Kind::Normal:
return Context.getIdentifier(Name);
case DeclBaseName::Kind::Subscript:
return DeclBaseName::createSubscript();
case DeclBaseName::Kind::Constructor:
return DeclBaseName::createConstructor();
case DeclBaseName::Kind::Destructor:
return DeclBaseName::createDestructor();
}
llvm_unreachable("unhandled kind");
}
bool SwiftLookupTable::contextRequiresName(ContextKind kind) {
switch (kind) {
case ContextKind::ObjCClass:
case ContextKind::ObjCProtocol:
case ContextKind::Tag:
case ContextKind::Typedef:
return true;
case ContextKind::TranslationUnit:
return false;
}
llvm_unreachable("Invalid ContextKind.");
}
/// Try to translate the given Clang declaration into a context.
static std::optional<SwiftLookupTable::StoredContext>
translateDeclToContext(clang::NamedDecl *decl) {
// Tag declaration.
if (auto tag = dyn_cast<clang::TagDecl>(decl)) {
if (tag->getIdentifier())
return std::make_pair(SwiftLookupTable::ContextKind::Tag, tag->getName());
if (auto typedefDecl = tag->getTypedefNameForAnonDecl())
return std::make_pair(SwiftLookupTable::ContextKind::Tag,
typedefDecl->getName());
if (auto enumDecl = dyn_cast<clang::EnumDecl>(tag)) {
if (auto typedefType =
dyn_cast<clang::TypedefType>(getUnderlyingType(enumDecl))) {
if (importer::isUnavailableInSwift(typedefType->getDecl(), nullptr,
true)) {
return std::make_pair(SwiftLookupTable::ContextKind::Tag,
typedefType->getDecl()->getName());
}
}
}
return std::nullopt;
}
// Namespace declaration.
if (auto namespaceDecl = dyn_cast<clang::NamespaceDecl>(decl)) {
if (namespaceDecl->getIdentifier())
return std::make_pair(SwiftLookupTable::ContextKind::Tag,
namespaceDecl->getName());
return std::nullopt;
}
// Objective-C class context.
if (auto objcClass = dyn_cast<clang::ObjCInterfaceDecl>(decl))
return std::make_pair(SwiftLookupTable::ContextKind::ObjCClass,
objcClass->getName());
// Objective-C protocol context.
if (auto objcProtocol = dyn_cast<clang::ObjCProtocolDecl>(decl))
return std::make_pair(SwiftLookupTable::ContextKind::ObjCProtocol,
objcProtocol->getName());
// Typedefs.
if (auto typedefName = dyn_cast<clang::TypedefNameDecl>(decl)) {
// If this typedef is merely a restatement of a tag declaration's type,
// return the result for that tag.
if (auto tag = typedefName->getUnderlyingType()->getAsTagDecl())
return translateDeclToContext(const_cast<clang::TagDecl *>(tag));
// Otherwise, this must be a typedef mapped to a strong type.
return std::make_pair(SwiftLookupTable::ContextKind::Typedef,
typedefName->getName());
}
return std::nullopt;
}
auto SwiftLookupTable::translateDeclContext(const clang::DeclContext *dc)
-> std::optional<SwiftLookupTable::StoredContext> {
// Translation unit context.
if (dc->isTranslationUnit())
return std::make_pair(ContextKind::TranslationUnit, StringRef());
// Tag declaration context.
if (auto tag = dyn_cast<clang::TagDecl>(dc))
return translateDeclToContext(const_cast<clang::TagDecl *>(tag));
// Namespace declaration context.
if (auto namespaceDecl = dyn_cast<clang::NamespaceDecl>(dc))
return translateDeclToContext(
const_cast<clang::NamespaceDecl *>(namespaceDecl));
// Objective-C class context.
if (auto objcClass = dyn_cast<clang::ObjCInterfaceDecl>(dc))
return std::make_pair(ContextKind::ObjCClass, objcClass->getName());
// Objective-C protocol context.
if (auto objcProtocol = dyn_cast<clang::ObjCProtocolDecl>(dc))
return std::make_pair(ContextKind::ObjCProtocol, objcProtocol->getName());
return std::nullopt;
}
std::optional<SwiftLookupTable::StoredContext>
SwiftLookupTable::translateContext(EffectiveClangContext context) {
switch (context.getKind()) {
case EffectiveClangContext::DeclContext: {
return translateDeclContext(context.getAsDeclContext());
}
case EffectiveClangContext::TypedefContext:
return std::make_pair(ContextKind::Typedef,
context.getTypedefName()->getName());
case EffectiveClangContext::UnresolvedContext:
// Resolve the context.
if (auto decl = resolveContext(context.getUnresolvedName()))
return translateDeclToContext(decl);
return std::nullopt;
}
llvm_unreachable("Invalid EffectiveClangContext.");
}
/// Lookup an unresolved context name and resolve it to a Clang
/// declaration context or typedef name.
clang::NamedDecl *SwiftLookupTable::resolveContext(StringRef unresolvedName) {
// Look for a context with the given Swift name.
for (auto entry :
lookup(SerializedSwiftName(unresolvedName),
std::make_pair(ContextKind::TranslationUnit, StringRef()))) {
if (auto decl = entry.dyn_cast<clang::NamedDecl *>()) {
if (isa<clang::TagDecl>(decl) ||
isa<clang::ObjCInterfaceDecl>(decl) ||
isa<clang::TypedefNameDecl>(decl))
return decl;
}
}
// FIXME: Search imported modules to resolve the context.
return nullptr;
}
void SwiftLookupTable::addCategory(clang::ObjCCategoryDecl *category) {
// Force deserialization to occur before appending.
(void) categories();
// Add the category.
Categories.push_back(category);
}
bool SwiftLookupTable::resolveUnresolvedEntries(
SmallVectorImpl<SingleEntry> &unresolved) {
// Common case: nothing left to resolve.
unresolved.clear();
if (UnresolvedEntries.empty()) return false;
// Reprocess each of the unresolved entries to see if it can be
// resolved now that we're done. This occurs when a swift_name'd
// entity becomes a member of an entity that follows it in the
// translation unit, e.g., given:
//
// \code
// typedef enum FooSomeEnumeration __attribute__((Foo.SomeEnum)) {
// ...
// } FooSomeEnumeration;
//
// typedef struct Foo {
//
// } Foo;
// \endcode
//
// FooSomeEnumeration belongs inside "Foo", but we haven't actually
// seen "Foo" yet. Therefore, we will reprocess FooSomeEnumeration
// at the end, once "Foo" is available. There are several reasons
// this loop can execute:
//
// * Import-as-member places an entity inside of an another entity
// that comes later in the translation unit. The number of
// iterations that can be caused by this is bounded by the nesting
// depth. (At present, that depth is limited to 2).
//
// * An erroneous import-as-member will cause an extra iteration at
// the end, so that the loop can detect that nothing changed and
// return a failure.
while (true) {
// Take the list of unresolved entries to process.
auto prevNumUnresolvedEntries = UnresolvedEntries.size();
auto currentUnresolved = std::move(UnresolvedEntries);
UnresolvedEntries.clear();
// Process each of the currently-unresolved entries.
for (const auto &entry : currentUnresolved)
addEntry(std::get<0>(entry), std::get<1>(entry), std::get<2>(entry));
// Are we done?
if (UnresolvedEntries.empty()) return false;
// If nothing changed, fail: something is unresolvable, and the
// caller should complain.
if (UnresolvedEntries.size() == prevNumUnresolvedEntries) {
for (const auto &entry : UnresolvedEntries)
unresolved.push_back(std::get<1>(entry));
return true;
}
// Something got resolved, so loop again.
assert(UnresolvedEntries.size() < prevNumUnresolvedEntries);
}
}
/// Determine whether the entry is a global declaration that is being
/// mapped as a member of a particular type or extension thereof.
///
/// This should only return true when the entry isn't already nested
/// within a context. For example, it will return false for
/// enumerators, because those are naturally nested within the
/// enumeration declaration.
static bool isGlobalAsMember(SwiftLookupTable::SingleEntry entry,
SwiftLookupTable::StoredContext context) {
switch (context.first) {
case SwiftLookupTable::ContextKind::TranslationUnit:
// We're not mapping this as a member of anything.
return false;
case SwiftLookupTable::ContextKind::Tag:
case SwiftLookupTable::ContextKind::ObjCClass:
case SwiftLookupTable::ContextKind::ObjCProtocol:
case SwiftLookupTable::ContextKind::Typedef:
// We're mapping into a type context.
break;
}
// Macros are never stored within a non-translation-unit context in
// Clang.
if (entry.is<clang::MacroInfo *>()) return true;
// We have a declaration.
auto decl = entry.get<clang::NamedDecl *>();
// Enumerators have the translation unit as their redeclaration context,
// but members of anonymous enums are still allowed to be in the
// global-as-member category.
if (isa<clang::EnumConstantDecl>(decl)) {
const auto *theEnum = cast<clang::EnumDecl>(decl->getDeclContext());
return !theEnum->hasNameForLinkage();
}
// If the redeclaration context is namespace-scope, then we're
// mapping as a member.
return decl->getDeclContext()->getRedeclContext()->isFileContext();
}
bool SwiftLookupTable::addLocalEntry(SingleEntry newEntry,
SmallVectorImpl<uint64_t> &entries) {
// Check whether this entry matches any existing entry.
auto decl = newEntry.dyn_cast<clang::NamedDecl *>();
auto macro = newEntry.dyn_cast<clang::MacroInfo *>();
auto moduleMacro = newEntry.dyn_cast<clang::ModuleMacro *>();
for (auto &existingEntry : entries) {
// If it matches an existing declaration, there's nothing to do.
if (decl && isDeclEntry(existingEntry) &&
matchesExistingDecl(decl, mapStoredDecl(existingEntry)))
return false;
// If a textual macro matches an existing macro, just drop the new
// definition.
if (macro && isMacroEntry(existingEntry)) {
return false;
}
// If a module macro matches an existing macro, be a bit more discerning.
//
// Specifically, if the innermost explicit submodule containing the new
// macro contains the innermost explicit submodule containing the existing
// macro, the new one should replace the old one; if they're the same
// module, the old one should stay in place. Otherwise, they don't share an
// explicit module, and should be considered alternatives.
//
// Note that the above assumes that macro definitions are processed in
// reverse order, i.e. the first definition seen is the last in a
// translation unit.
if (moduleMacro && isMacroEntry(existingEntry)) {
SingleEntry decodedEntry = mapStoredMacro(existingEntry,
/*assumeModule*/true);
const auto *existingMacro = decodedEntry.get<clang::ModuleMacro *>();
const clang::Module *newModule = moduleMacro->getOwningModule();
const clang::Module *existingModule = existingMacro->getOwningModule();
// A simple redeclaration: drop the new definition.
if (existingModule == newModule)
return false;
// A broader-scoped redeclaration: drop the old definition.
if (existingModule->isSubModuleOf(newModule)) {
// FIXME: What if there are /multiple/ old definitions we should be
// dropping? What if one of the earlier early exits makes us miss
// entries later in the list that would match this?
existingEntry = encodeEntry(moduleMacro);
return false;
}
// Otherwise, just allow both definitions to coexist.
}
}
// Add an entry to this context.
if (decl)
entries.push_back(encodeEntry(decl));
else if (macro)
entries.push_back(encodeEntry(macro));
else
entries.push_back(encodeEntry(moduleMacro));
return true;
}
void SwiftLookupTable::addEntry(DeclName name, SingleEntry newEntry,
EffectiveClangContext effectiveContext) {
assert(newEntry);
// Translate the context.
auto contextOpt = translateContext(effectiveContext);
if (!contextOpt) {
// We might be able to resolve this later.
if (newEntry.is<clang::NamedDecl *>()) {
UnresolvedEntries.push_back(
std::make_tuple(name, newEntry, effectiveContext));
}
return;
}
auto updateTableWithEntry = [this](SingleEntry newEntry, StoredContext context,
TableType::value_type::second_type &entries){
for (auto &entry : entries) {
if (entry.Context == context) {
// We have entries for this context.
(void)addLocalEntry(newEntry, entry.DeclsOrMacros);
return;
} else {
(void)newEntry;
}
}
// This is a new context for this name. Add it.
auto decl = newEntry.dyn_cast<clang::NamedDecl *>();
auto macro = newEntry.dyn_cast<clang::MacroInfo *>();
auto moduleMacro = newEntry.dyn_cast<clang::ModuleMacro *>();
FullTableEntry entry;
entry.Context = context;
if (decl)
entry.DeclsOrMacros.push_back(encodeEntry(decl));
else if (macro)
entry.DeclsOrMacros.push_back(encodeEntry(macro));
else
entry.DeclsOrMacros.push_back(encodeEntry(moduleMacro));
entries.push_back(entry);
};
// If this is a global imported as a member, record is as such.
auto context = *contextOpt;
if (isGlobalAsMember(newEntry, context)) {
// Populate cache from reader if necessary.
findOrCreate(GlobalsAsMembers, name.getBaseName(),
[](auto &results, auto &Reader, auto Name) {
return (void)Reader.lookupGlobalsAsMembers(Name, results);
});
updateTableWithEntry(newEntry, context,
GlobalsAsMembers[name.getBaseName()]);
// Populate the index as well.
auto &entries = GlobalsAsMembersIndex[context];
(void)addLocalEntry(newEntry, entries);
}
// Populate cache from reader if necessary.
findOrCreate(LookupTable, name.getBaseName(),
[](auto &results, auto &Reader, auto Name) {
return (void)Reader.lookup(Name, results);
});
updateTableWithEntry(newEntry, context, LookupTable[name.getBaseName()]);
}
SwiftLookupTable::TableType::iterator
SwiftLookupTable::findOrCreate(TableType &Table,
SerializedSwiftName baseName,
llvm::function_ref<CacheCallback> create) {
// If there is no base name, there is nothing to find.
if (baseName.empty()) return Table.end();
// Find entries for this base name.
auto known = Table.find(baseName);
// If we found something, we're done.
if (known != Table.end()) return known;
// If there's no reader, we've found all there is to find.
if (!Reader) return known;
// Lookup this base name in the module file.
SmallVector<FullTableEntry, 2> results;
create(results, *Reader, baseName);
// Add an entry to the table so we don't look again.
known = Table.insert({ std::move(baseName), std::move(results) }).first;
return known;
}
SmallVector<SwiftLookupTable::SingleEntry, 4>
SwiftLookupTable::lookup(SerializedSwiftName baseName,
std::optional<StoredContext> searchContext) {
SmallVector<SwiftLookupTable::SingleEntry, 4> result;
// Find the lookup table entry for this base name.
auto known = findOrCreate(LookupTable, baseName,
[](auto &results, auto &Reader, auto Name) {
return (void)Reader.lookup(Name, results);
});
if (known == LookupTable.end()) return result;
// Walk each of the entries.
for (auto &entry : known->second) {
// If we're looking in a particular context and it doesn't match the
// entry context, we're done.
if (searchContext && entry.Context != *searchContext)
continue;
// Map each of the declarations.
for (auto &stored : entry.DeclsOrMacros)
if (auto entry = mapStored(stored))
result.push_back(entry);
}
return result;
}
SmallVector<SwiftLookupTable::SingleEntry, 4>
SwiftLookupTable::lookupGlobalsAsMembersImpl(
SerializedSwiftName baseName, std::optional<StoredContext> searchContext) {
SmallVector<SwiftLookupTable::SingleEntry, 4> result;
// Find entries for this base name.
auto known = findOrCreate(GlobalsAsMembers, baseName,
[](auto &results, auto &Reader, auto Name) {
return (void)Reader.lookupGlobalsAsMembers(Name, results);
});
if (known == GlobalsAsMembers.end()) return result;
// Walk each of the entries.
for (auto &entry : known->second) {
// If we're looking in a particular context and it doesn't match the
// entry context, we're done.
if (searchContext && entry.Context != *searchContext)
continue;
// Map each of the declarations.
for (auto &stored : entry.DeclsOrMacros)
if (auto entry = mapStored(stored))
result.push_back(entry);
}
return result;
}
SmallVector<SwiftLookupTable::SingleEntry, 4>
SwiftLookupTable::allGlobalsAsMembersInContext(StoredContext context) {
SmallVector<SwiftLookupTable::SingleEntry, 4> result;
// Find entries for this base name.
auto known = GlobalsAsMembersIndex.find(context);
// If we didn't find anything...
if (known == GlobalsAsMembersIndex.end()) {
// If there's no reader, we've found all there is to find.
if (!Reader) return result;
// Lookup this base name in the module extension file.
SmallVector<uint64_t, 2> results;
(void)Reader->lookupGlobalsAsMembersInContext(context, results);
// Add an entry to the table so we don't look again.
known = GlobalsAsMembersIndex.insert({ std::move(context),
std::move(results) }).first;
}
// Map each of the results.
for (auto &entry : known->second) {
result.push_back(mapStored(entry));
}
return result;
}
SmallVector<SwiftLookupTable::SingleEntry, 4>
SwiftLookupTable::lookupGlobalsAsMembers(SerializedSwiftName baseName,
EffectiveClangContext searchContext) {
// Propagate the null search context.
if (!searchContext)
return lookupGlobalsAsMembersImpl(baseName, std::nullopt);
std::optional<StoredContext> storedContext = translateContext(searchContext);
if (!storedContext) return { };
return lookupGlobalsAsMembersImpl(baseName, *storedContext);
}
SmallVector<SwiftLookupTable::SingleEntry, 4>
SwiftLookupTable::allGlobalsAsMembersInContext(EffectiveClangContext context) {
if (!context) return { };
std::optional<StoredContext> storedContext = translateContext(context);
if (!storedContext) return { };
return allGlobalsAsMembersInContext(*storedContext);
}
SmallVector<SwiftLookupTable::SingleEntry, 4>
SwiftLookupTable::allGlobalsAsMembers() {
// If we have a reader, deserialize all of the globals-as-members data.
if (Reader) {
for (auto context : Reader->getGlobalsAsMembersContexts()) {
(void)allGlobalsAsMembersInContext(context);
}
}
// Collect all of the keys and sort them.
SmallVector<StoredContext, 8> contexts;
for (const auto &globalAsMember : GlobalsAsMembersIndex) {
contexts.push_back(globalAsMember.first);
}
llvm::array_pod_sort(contexts.begin(), contexts.end());
// Collect all of the results in order.
SmallVector<SwiftLookupTable::SingleEntry, 4> results;
for (const auto &context : contexts) {
for (auto &entry : GlobalsAsMembersIndex[context])
results.push_back(mapStored(entry));
}
return results;
}
SmallVector<SwiftLookupTable::SingleEntry, 4>
SwiftLookupTable::lookup(SerializedSwiftName baseName,
EffectiveClangContext searchContext) {
// Translate context.
std::optional<StoredContext> context;
if (searchContext) {
context = translateContext(searchContext);
if (!context) return { };
}
return lookup(baseName, context);
}
SmallVector<SerializedSwiftName, 4> SwiftLookupTable::allBaseNames() {
// If we have a reader, enumerate its base names.
if (Reader) return Reader->getBaseNames();
// Otherwise, walk the lookup table.
SmallVector<SerializedSwiftName, 4> result;
for (const auto &entry : LookupTable) {
result.push_back(entry.first);
}
return result;
}
SmallVector<clang::NamedDecl *, 4>
SwiftLookupTable::lookupObjCMembers(SerializedSwiftName baseName) {
SmallVector<clang::NamedDecl *, 4> result;
// Find the lookup table entry for this base name.
auto known = findOrCreate(LookupTable, baseName,
[](auto &results, auto &Reader, auto Name) {
return (void)Reader.lookup(Name, results);
});
if (known == LookupTable.end()) return result;
// Walk each of the entries.
for (auto &entry : known->second) {
// If we're looking in a particular context and it doesn't match the
// entry context, we're done.
switch (entry.Context.first) {
case ContextKind::TranslationUnit:
case ContextKind::Tag:
continue;
case ContextKind::ObjCClass:
case ContextKind::ObjCProtocol:
case ContextKind::Typedef:
break;
}
// Map each of the declarations.
for (auto &stored : entry.DeclsOrMacros) {
assert(isDeclEntry(stored) && "Not a declaration?");
result.push_back(mapStoredDecl(stored));
}
}
return result;
}
SmallVector<clang::NamedDecl *, 4>
SwiftLookupTable::lookupMemberOperators(SerializedSwiftName baseName) {
SmallVector<clang::NamedDecl *, 4> result;
// Find the lookup table entry for this base name.
auto known = findOrCreate(LookupTable, baseName,
[](auto &results, auto &Reader, auto Name) {
return (void)Reader.lookup(Name, results);
});
if (known == LookupTable.end())
return result;
// Walk each of the entries.
for (auto &entry : known->second) {
// We're only looking for C++ operators
if (entry.Context.first != ContextKind::Tag) {
continue;
}
// Map each of the declarations.
for (auto &stored : entry.DeclsOrMacros) {
assert(isDeclEntry(stored) && "Not a declaration?");
result.push_back(mapStoredDecl(stored));
}
}
return result;
}
ArrayRef<clang::ObjCCategoryDecl *> SwiftLookupTable::categories() {
if (!Categories.empty() || !Reader) return Categories;
// Map categories known to the reader.
for (auto declID : Reader->categories()) {
auto category =
cast_or_null<clang::ObjCCategoryDecl>(
Reader->getASTReader().GetLocalDecl(Reader->getModuleFile(), declID));
if (category)
Categories.push_back(category);
}
return Categories;
}
static void printName(clang::NamedDecl *named, llvm::raw_ostream &out) {
// If there is a name, print it.
if (!named->getDeclName().isEmpty()) {
// If we have an Objective-C method, print the class name along
// with '+'/'-'.
if (auto objcMethod = dyn_cast<clang::ObjCMethodDecl>(named)) {
out << (objcMethod->isInstanceMethod() ? '-' : '+') << '[';
if (auto classDecl = objcMethod->getClassInterface()) {
classDecl->printName(out);
out << ' ';
} else if (auto proto = dyn_cast<clang::ObjCProtocolDecl>(
objcMethod->getDeclContext())) {
proto->printName(out);
out << ' ';
}
named->printName(out);
out << ']';
return;
}
// If we have an Objective-C property, print the class name along
// with the property name.
if (auto objcProperty = dyn_cast<clang::ObjCPropertyDecl>(named)) {
auto dc = objcProperty->getDeclContext();
if (auto classDecl = dyn_cast<clang::ObjCInterfaceDecl>(dc)) {
classDecl->printName(out);
out << '.';
} else if (auto categoryDecl = dyn_cast<clang::ObjCCategoryDecl>(dc)) {
categoryDecl->getClassInterface()->printName(out);
out << '.';
} else if (auto proto = dyn_cast<clang::ObjCProtocolDecl>(dc)) {
proto->printName(out);
out << '.';
}
named->printName(out);
return;
}
named->printName(out);
return;
}
// If this is an anonymous tag declaration with a typedef name, use that.
if (auto tag = dyn_cast<clang::TagDecl>(named)) {
if (auto typedefName = tag->getTypedefNameForAnonDecl()) {
printName(typedefName, out);
return;
}
}
}
void SwiftLookupTable::deserializeAll() {
if (!Reader) return;
for (auto baseName : Reader->getBaseNames()) {
(void)lookup(baseName, std::nullopt);
}
for (auto baseName : Reader->getGlobalsAsMembersBaseNames()) {
(void)lookupGlobalsAsMembersImpl(baseName, std::nullopt);
}
(void)categories();
for (auto context : Reader->getGlobalsAsMembersContexts()) {
(void)allGlobalsAsMembersInContext(context);
}
}
/// Print a stored context to the given output stream for debugging purposes.
static void printStoredContext(SwiftLookupTable::StoredContext context,
llvm::raw_ostream &out) {
switch (context.first) {
case SwiftLookupTable::ContextKind::TranslationUnit:
out << "TU";
break;
case SwiftLookupTable::ContextKind::Tag:
case SwiftLookupTable::ContextKind::ObjCClass:
case SwiftLookupTable::ContextKind::ObjCProtocol:
case SwiftLookupTable::ContextKind::Typedef:
out << context.second;
break;
}
}
static uint32_t getEncodedDeclID(uint64_t entry) {
assert(SwiftLookupTable::isSerializationIDEntry(entry));
assert(SwiftLookupTable::isDeclEntry(entry));
return entry >> 2;
}
namespace {
struct LocalMacroIDs {
uint32_t moduleID;
uint32_t nameOrMacroID;
};
}
static LocalMacroIDs getEncodedModuleMacroIDs(uint64_t entry) {
assert(SwiftLookupTable::isSerializationIDEntry(entry));
assert(SwiftLookupTable::isMacroEntry(entry));
return {static_cast<uint32_t>((entry & 0xFFFFFFFF) >> 2),
static_cast<uint32_t>(entry >> 32)};
}
/// Print a stored entry (Clang macro or declaration) for debugging purposes.
static void printStoredEntry(const SwiftLookupTable *table, uint64_t entry,
llvm::raw_ostream &out) {
if (SwiftLookupTable::isSerializationIDEntry(entry)) {
if (SwiftLookupTable::isDeclEntry(entry)) {
llvm::errs() << "decl ID #" << getEncodedDeclID(entry);
} else {
LocalMacroIDs macroIDs = getEncodedModuleMacroIDs(entry);
if (macroIDs.moduleID == 0) {
llvm::errs() << "macro ID #" << macroIDs.nameOrMacroID;
} else {
llvm::errs() << "macro with name ID #" << macroIDs.nameOrMacroID
<< "in submodule #" << macroIDs.moduleID;
}
}
} else if (SwiftLookupTable::isMacroEntry(entry)) {
llvm::errs() << "Macro";
} else {
auto decl = const_cast<SwiftLookupTable *>(table)->mapStoredDecl(entry);
printName(decl, llvm::errs());
}
}
void SwiftLookupTable::dump() const {
dump(llvm::errs());
}
void SwiftLookupTable::dump(raw_ostream &os) const {
// Dump the base name -> full table entry mappings.
SmallVector<SerializedSwiftName, 4> baseNames;
for (const auto &entry : LookupTable) {
baseNames.push_back(entry.first);
}
llvm::array_pod_sort(baseNames.begin(), baseNames.end());
os << "Base name -> entry mappings:\n";
for (auto baseName : baseNames) {
switch (baseName.Kind) {
case DeclBaseName::Kind::Normal:
os << " " << baseName.Name << ":\n";
break;
case DeclBaseName::Kind::Subscript:
os << " subscript:\n";
break;
case DeclBaseName::Kind::Constructor:
os << " init:\n";
break;
case DeclBaseName::Kind::Destructor:
os << " deinit:\n";
break;
}
const auto &entries = LookupTable.find(baseName)->second;
for (const auto &entry : entries) {
os << " ";
printStoredContext(entry.Context, os);
os << ": ";
llvm::interleave(
entry.DeclsOrMacros.begin(), entry.DeclsOrMacros.end(),
[this, &os](uint64_t entry) { printStoredEntry(this, entry, os); },
[&os] { os << ", "; });
os << "\n";
}
}
if (!Categories.empty()) {
os << "Categories: ";
llvm::interleave(
Categories.begin(), Categories.end(),
[&os](clang::ObjCCategoryDecl *category) {
os << category->getClassInterface()->getName() << "("
<< category->getName() << ")";
},
[&os] { os << ", "; });
os << "\n";
} else if (Reader && !Reader->categories().empty()) {
os << "Categories: ";
llvm::interleave(
Reader->categories().begin(), Reader->categories().end(),
[&os](clang::serialization::DeclID declID) {
os << "decl ID #" << declID;
},
[&os] { os << ", "; });
os << "\n";
}
if (!GlobalsAsMembersIndex.empty()) {
os << "Globals-as-members mapping:\n";
SmallVector<StoredContext, 4> contexts;
for (const auto &entry : GlobalsAsMembersIndex) {
contexts.push_back(entry.first);
}
llvm::array_pod_sort(contexts.begin(), contexts.end());
for (auto context : contexts) {
os << " ";
printStoredContext(context, os);
os << ": ";
const auto &entries = GlobalsAsMembersIndex.find(context)->second;
llvm::interleave(
entries.begin(), entries.end(),
[this, &os](uint64_t entry) { printStoredEntry(this, entry, os); },
[&os] { os << ", "; });
os << "\n";
}
}
}
// ---------------------------------------------------------------------------
// Serialization
// ---------------------------------------------------------------------------
using llvm::BCArray;
using llvm::BCBlob;
using llvm::BCFixed;
using llvm::BCGenericRecordLayout;
using llvm::BCRecordLayout;
using llvm::BCVBR;
namespace {
enum RecordTypes {
/// Record that contains the mapping from base names to entities with that
/// name.
BASE_NAME_TO_ENTITIES_RECORD_ID
= clang::serialization::FIRST_EXTENSION_RECORD_ID,
/// Record that contains the list of Objective-C category/extension IDs.
CATEGORIES_RECORD_ID,
/// Record that contains the mapping from contexts to the list of
/// globals that will be injected as members into those contexts.
GLOBALS_AS_MEMBERS_RECORD_ID,
/// Record that contains the mapping from contexts to the list of
/// globals that will be injected as members into those contexts.
GLOBALS_AS_MEMBERS_INDEX_RECORD_ID,
};
using BaseNameToEntitiesTableRecordLayout
= BCRecordLayout<BASE_NAME_TO_ENTITIES_RECORD_ID, BCVBR<16>, BCBlob>;
using CategoriesRecordLayout
= llvm::BCRecordLayout<CATEGORIES_RECORD_ID, BCBlob>;
using GlobalsAsMembersTableRecordLayout
= BCRecordLayout<GLOBALS_AS_MEMBERS_RECORD_ID, BCVBR<16>, BCBlob>;
using GlobalsAsMembersIndexRecordLayout
= BCRecordLayout<GLOBALS_AS_MEMBERS_INDEX_RECORD_ID, BCVBR<16>, BCBlob>;
/// Trait used to write the on-disk hash table for the base name -> entities
/// mapping.
class BaseNameToEntitiesTableWriterInfo {
static_assert(sizeof(DeclBaseName::Kind) <= sizeof(uint8_t),
"kind serialized as uint8_t");
SwiftLookupTable &Table;
clang::ASTWriter &Writer;
public:
using key_type = SerializedSwiftName;
using key_type_ref = key_type;
using data_type = SmallVector<SwiftLookupTable::FullTableEntry, 2>;
using data_type_ref = data_type &;
using hash_value_type = uint32_t;
using offset_type = unsigned;
BaseNameToEntitiesTableWriterInfo(SwiftLookupTable &table,
clang::ASTWriter &writer)
: Table(table), Writer(writer)
{
}
hash_value_type ComputeHash(key_type_ref key) {
return llvm::DenseMapInfo<SerializedSwiftName>::getHashValue(key);
}
std::pair<unsigned, unsigned> EmitKeyDataLength(raw_ostream &out,
key_type_ref key,
data_type_ref data) {
uint32_t keyLength = sizeof(uint8_t); // For the flag of the name's kind
if (key.Kind == DeclBaseName::Kind::Normal) {
keyLength += key.Name.size(); // The name's length
}
assert(keyLength == static_cast<uint16_t>(keyLength));
// # of entries
uint32_t dataLength = sizeof(uint16_t);
// Storage per entry.
for (const auto &entry : data) {
// Context info.
dataLength += 1;
if (SwiftLookupTable::contextRequiresName(entry.Context.first)) {
dataLength += sizeof(uint16_t) + entry.Context.second.size();
}
// # of entries.
dataLength += sizeof(uint16_t);
// Actual entries.
dataLength += (sizeof(uint64_t) * entry.DeclsOrMacros.size());
}
endian::Writer writer(out, little);
writer.write<uint16_t>(keyLength);
writer.write<uint32_t>(dataLength);
return { keyLength, dataLength };
}
void EmitKey(raw_ostream &out, key_type_ref key, unsigned len) {
endian::Writer writer(out, little);
writer.write<uint8_t>((uint8_t)key.Kind);
if (key.Kind == swift::DeclBaseName::Kind::Normal)
writer.OS << key.Name;
}
void EmitData(raw_ostream &out, key_type_ref key, data_type_ref data,
unsigned len) {
endian::Writer writer(out, little);
// # of entries
writer.write<uint16_t>(data.size());
assert(data.size() == static_cast<uint16_t>(data.size()));
bool isModule = Writer.getLangOpts().isCompilingModule();
for (auto &fullEntry : data) {
// Context.
writer.write<uint8_t>(static_cast<uint8_t>(fullEntry.Context.first));
if (SwiftLookupTable::contextRequiresName(fullEntry.Context.first)) {
writer.write<uint16_t>(fullEntry.Context.second.size());
out << fullEntry.Context.second;
}
// # of entries.
writer.write<uint16_t>(fullEntry.DeclsOrMacros.size());
// Write the declarations and macros.
for (auto &entry : fullEntry.DeclsOrMacros) {
uint64_t id;
auto mappedEntry = Table.mapStored(entry, isModule);
if (auto *decl = mappedEntry.dyn_cast<clang::NamedDecl *>()) {
id = (Writer.getDeclID(decl) << 2) | 0x02;
} else if (auto *macro = mappedEntry.dyn_cast<clang::MacroInfo *>()) {
id = static_cast<uint64_t>(Writer.getMacroID(macro)) << 32;
id |= 0x02 | 0x01;
} else {
auto *moduleMacro = mappedEntry.get<clang::ModuleMacro *>();
uint32_t nameID = Writer.getIdentifierRef(moduleMacro->getName());
uint32_t submoduleID = Writer.getLocalOrImportedSubmoduleID(
moduleMacro->getOwningModule());
id = (static_cast<uint64_t>(nameID) << 32) | (submoduleID << 2);
id |= 0x02 | 0x01;
}
writer.write<uint64_t>(id);
}
}
}
};
/// Trait used to write the on-disk hash table for the
/// globals-as-members mapping.
class GlobalsAsMembersTableWriterInfo {
SwiftLookupTable &Table;
clang::ASTWriter &Writer;
public:
using key_type = std::pair<SwiftLookupTable::ContextKind, StringRef>;
using key_type_ref = key_type;
using data_type = SmallVector<uint64_t, 2>;
using data_type_ref = data_type &;
using hash_value_type = uint32_t;
using offset_type = unsigned;
GlobalsAsMembersTableWriterInfo(SwiftLookupTable &table,
clang::ASTWriter &writer)
: Table(table), Writer(writer)
{
}
hash_value_type ComputeHash(key_type_ref key) {
return static_cast<unsigned>(key.first) + llvm::djbHash(key.second);
}
std::pair<unsigned, unsigned> EmitKeyDataLength(raw_ostream &out,
key_type_ref key,
data_type_ref data) {
// The length of the key.
uint32_t keyLength = 1;
if (SwiftLookupTable::contextRequiresName(key.first))
keyLength += key.second.size();
assert(keyLength == static_cast<uint16_t>(keyLength));
// # of entries
uint32_t dataLength =
sizeof(uint16_t) + sizeof(uint64_t) * data.size();
assert(dataLength == static_cast<uint32_t>(dataLength));
endian::Writer writer(out, little);
writer.write<uint16_t>(keyLength);
writer.write<uint32_t>(dataLength);
return { keyLength, dataLength };
}
void EmitKey(raw_ostream &out, key_type_ref key, unsigned len) {
endian::Writer writer(out, little);
writer.write<uint8_t>(static_cast<unsigned>(key.first) - 2);
if (SwiftLookupTable::contextRequiresName(key.first))
out << key.second;
}
void EmitData(raw_ostream &out, key_type_ref key, data_type_ref data,
unsigned len) {
endian::Writer writer(out, little);
// # of entries
writer.write<uint16_t>(data.size());
// Actual entries.
bool isModule = Writer.getLangOpts().isCompilingModule();
for (auto &entry : data) {
uint64_t id;
auto mappedEntry = Table.mapStored(entry, isModule);
if (auto *decl = mappedEntry.dyn_cast<clang::NamedDecl *>()) {
id = (Writer.getDeclID(decl) << 2) | 0x02;
} else if (auto *macro = mappedEntry.dyn_cast<clang::MacroInfo *>()) {
id = static_cast<uint64_t>(Writer.getMacroID(macro)) << 32;
id |= 0x02 | 0x01;
} else {
auto *moduleMacro = mappedEntry.get<clang::ModuleMacro *>();
uint32_t nameID = Writer.getIdentifierRef(moduleMacro->getName());
uint32_t submoduleID = Writer.getLocalOrImportedSubmoduleID(
moduleMacro->getOwningModule());
id = (static_cast<uint64_t>(nameID) << 32) | (submoduleID << 2);
id |= 0x02 | 0x01;
}
writer.write<uint64_t>(id);
}
}
};
} // end anonymous namespace
void SwiftLookupTableWriter::writeExtensionContents(
clang::Sema &sema,
llvm::BitstreamWriter &stream) {
NameImporter nameImporter(swiftCtx, availability, sema);
// Populate the lookup table.
SwiftLookupTable table(nullptr);
populateTable(table, nameImporter);
SmallVector<uint64_t, 64> ScratchRecord;
// First, gather the sorted list of base names.
SmallVector<SerializedSwiftName, 2> baseNames;
for (const auto &entry : table.LookupTable)
baseNames.push_back(entry.first);
llvm::array_pod_sort(baseNames.begin(), baseNames.end());
// Form the mapping from base names to entities with their context.
{
llvm::SmallString<4096> hashTableBlob;
uint32_t tableOffset;
{
llvm::OnDiskChainedHashTableGenerator<BaseNameToEntitiesTableWriterInfo>
generator;
BaseNameToEntitiesTableWriterInfo info(table, Writer);
for (auto baseName : baseNames)
generator.insert(baseName, table.LookupTable[baseName], info);
llvm::raw_svector_ostream blobStream(hashTableBlob);
// Make sure that no bucket is at offset 0
endian::write<uint32_t>(blobStream, 0, little);
tableOffset = generator.Emit(blobStream, info);
}
BaseNameToEntitiesTableRecordLayout layout(stream);
layout.emit(ScratchRecord, tableOffset, hashTableBlob);
}
// Write the categories, if there are any.
if (!table.Categories.empty()) {
SmallVector<clang::serialization::DeclID, 4> categoryIDs;
for (auto category : table.Categories) {
categoryIDs.push_back(Writer.getDeclID(category));
}
StringRef blob(reinterpret_cast<const char *>(categoryIDs.data()),
categoryIDs.size() * sizeof(clang::serialization::DeclID));
CategoriesRecordLayout layout(stream);
layout.emit(ScratchRecord, blob);
}
// Write the globals-as-members table, if non-empty.
if (!table.GlobalsAsMembers.empty()) {
// First, gather the sorted list of base names.
SmallVector<SerializedSwiftName, 2> baseNames;
for (const auto &entry : table.GlobalsAsMembers)
baseNames.push_back(entry.first);
llvm::array_pod_sort(baseNames.begin(), baseNames.end());
// Form the mapping from base names to entities with their context.
{
llvm::SmallString<4096> hashTableBlob;
uint32_t tableOffset;
{
llvm::OnDiskChainedHashTableGenerator<BaseNameToEntitiesTableWriterInfo>
generator;
BaseNameToEntitiesTableWriterInfo info(table, Writer);
for (auto baseName : baseNames)
generator.insert(baseName, table.GlobalsAsMembers[baseName], info);
llvm::raw_svector_ostream blobStream(hashTableBlob);
// Make sure that no bucket is at offset 0
endian::write<uint32_t>(blobStream, 0, little);
tableOffset = generator.Emit(blobStream, info);
}
GlobalsAsMembersTableRecordLayout layout(stream);
layout.emit(ScratchRecord, tableOffset, hashTableBlob);
}
}
// Write the globals-as-members index, if non-empty.
if (!table.GlobalsAsMembersIndex.empty()) {
// Sort the keys.
SmallVector<SwiftLookupTable::StoredContext, 4> contexts;
for (const auto &entry : table.GlobalsAsMembersIndex) {
contexts.push_back(entry.first);
}
llvm::array_pod_sort(contexts.begin(), contexts.end());
// Create the on-disk hash table.
llvm::SmallString<4096> hashTableBlob;
uint32_t tableOffset;
{
llvm::OnDiskChainedHashTableGenerator<GlobalsAsMembersTableWriterInfo>
generator;
GlobalsAsMembersTableWriterInfo info(table, Writer);
for (auto context : contexts)
generator.insert(context, table.GlobalsAsMembersIndex[context], info);
llvm::raw_svector_ostream blobStream(hashTableBlob);
// Make sure that no bucket is at offset 0
endian::write<uint32_t>(blobStream, 0, little);
tableOffset = generator.Emit(blobStream, info);
}
GlobalsAsMembersIndexRecordLayout layout(stream);
layout.emit(ScratchRecord, tableOffset, hashTableBlob);
}
}
namespace {
/// Used to deserialize the on-disk base name -> entities table.
class BaseNameToEntitiesTableReaderInfo {
public:
using internal_key_type = SerializedSwiftName;
using external_key_type = internal_key_type;
using data_type = SmallVector<SwiftLookupTable::FullTableEntry, 2>;
using hash_value_type = uint32_t;
using offset_type = unsigned;
internal_key_type GetInternalKey(external_key_type key) {
return key;
}
external_key_type GetExternalKey(internal_key_type key) {
return key;
}
hash_value_type ComputeHash(internal_key_type key) {
return llvm::DenseMapInfo<SerializedSwiftName>::getHashValue(key);
}
static bool EqualKey(internal_key_type lhs, internal_key_type rhs) {
return lhs == rhs;
}
static std::pair<unsigned, unsigned>
ReadKeyDataLength(const uint8_t *&data) {
unsigned keyLength = endian::readNext<uint16_t, little, unaligned>(data);
unsigned dataLength = endian::readNext<uint32_t, little, unaligned>(data);
return { keyLength, dataLength };
}
static internal_key_type ReadKey(const uint8_t *data, unsigned length) {
uint8_t kind = endian::readNext<uint8_t, little, unaligned>(data);
switch (kind) {
case (uint8_t)DeclBaseName::Kind::Normal: {
StringRef str(reinterpret_cast<const char *>(data),
length - sizeof(uint8_t));
return SerializedSwiftName(str);
}
case (uint8_t)DeclBaseName::Kind::Subscript:
return SerializedSwiftName(DeclBaseName::Kind::Subscript);
case (uint8_t)DeclBaseName::Kind::Constructor:
return SerializedSwiftName(DeclBaseName::Kind::Constructor);
case (uint8_t)DeclBaseName::Kind::Destructor:
return SerializedSwiftName(DeclBaseName::Kind::Destructor);
default:
llvm_unreachable("Unknown kind for DeclBaseName");
}
}
static data_type ReadData(internal_key_type key, const uint8_t *data,
unsigned length) {
data_type result;
// # of entries.
unsigned numEntries = endian::readNext<uint16_t, little, unaligned>(data);
result.reserve(numEntries);
// Read all of the entries.
while (numEntries--) {
SwiftLookupTable::FullTableEntry entry;
// Read the context.
entry.Context.first =
static_cast<SwiftLookupTable::ContextKind>(
endian::readNext<uint8_t, little, unaligned>(data));
if (SwiftLookupTable::contextRequiresName(entry.Context.first)) {
uint16_t length = endian::readNext<uint16_t, little, unaligned>(data);
entry.Context.second = StringRef((const char *)data, length);
data += length;
}
// Read the declarations and macros.
unsigned numDeclsOrMacros =
endian::readNext<uint16_t, little, unaligned>(data);
while (numDeclsOrMacros--) {
auto id = endian::readNext<uint64_t, little, unaligned>(data);
entry.DeclsOrMacros.push_back(id);
}
result.push_back(entry);
}
return result;
}
};
/// Used to deserialize the on-disk globals-as-members table.
class GlobalsAsMembersTableReaderInfo {
public:
using internal_key_type = SwiftLookupTable::StoredContext;
using external_key_type = internal_key_type;
using data_type = SmallVector<uint64_t, 2>;
using hash_value_type = uint32_t;
using offset_type = unsigned;
internal_key_type GetInternalKey(external_key_type key) {
return key;
}
external_key_type GetExternalKey(internal_key_type key) {
return key;
}
hash_value_type ComputeHash(internal_key_type key) {
return static_cast<unsigned>(key.first) + llvm::djbHash(key.second);
}
static bool EqualKey(internal_key_type lhs, internal_key_type rhs) {
return lhs == rhs;
}
static std::pair<unsigned, unsigned>
ReadKeyDataLength(const uint8_t *&data) {
unsigned keyLength = endian::readNext<uint16_t, little, unaligned>(data);
unsigned dataLength = endian::readNext<uint32_t, little, unaligned>(data);
return { keyLength, dataLength };
}
static internal_key_type ReadKey(const uint8_t *data, unsigned length) {
return internal_key_type(
static_cast<SwiftLookupTable::ContextKind>(*data + 2),
StringRef((const char *)data + 1, length - 1));
}
static data_type ReadData(internal_key_type key, const uint8_t *data,
unsigned length) {
data_type result;
// # of entries.
unsigned numEntries = endian::readNext<uint16_t, little, unaligned>(data);
result.reserve(numEntries);
// Read all of the entries.
while (numEntries--) {
auto id = endian::readNext<uint64_t, little, unaligned>(data);
result.push_back(id);
}
return result;
}
};
} // end anonymous namespace
clang::NamedDecl *SwiftLookupTable::mapStoredDecl(uint64_t &entry) {
assert(isDeclEntry(entry) && "Not a declaration entry");
// If we have an AST node here, just cast it.
if (isASTNodeEntry(entry)) {
return static_cast<clang::NamedDecl *>(getPointerFromEntry(entry));
}
// Otherwise, resolve the declaration.
assert(Reader && "Cannot resolve the declaration without a reader");
uint32_t declID = getEncodedDeclID(entry);
auto decl = cast_or_null<clang::NamedDecl>(
Reader->getASTReader().GetLocalDecl(Reader->getModuleFile(),
declID));
// Update the entry now that we've resolved the declaration.
entry = encodeEntry(decl);
return decl;
}
static bool isPCH(SwiftLookupTableReader &reader) {
return reader.getModuleFile().Kind == clang::serialization::MK_PCH;
}
SwiftLookupTable::SingleEntry
SwiftLookupTable::mapStoredMacro(uint64_t &entry, bool assumeModule) {
assert(isMacroEntry(entry) && "Not a macro entry");
// If we have an AST node here, just cast it.
if (isASTNodeEntry(entry)) {
if (assumeModule || (Reader && !isPCH(*Reader)))
return static_cast<clang::ModuleMacro *>(getPointerFromEntry(entry));
else
return static_cast<clang::MacroInfo *>(getPointerFromEntry(entry));
}
// Otherwise, resolve the macro.
assert(Reader && "Cannot resolve the macro without a reader");
clang::ASTReader &astReader = Reader->getASTReader();
LocalMacroIDs macroIDs = getEncodedModuleMacroIDs(entry);
if (!assumeModule && macroIDs.moduleID == 0) {
assert(isPCH(*Reader));
// Not a module, and the second key is actually a macroID.
auto macro =
astReader.getMacro(astReader.getGlobalMacroID(Reader->getModuleFile(),
macroIDs.nameOrMacroID));
// Update the entry now that we've resolved the macro.
entry = encodeEntry(macro);
return macro;
}
// FIXME: Clang should help us out here, but it doesn't. It can only give us
// MacroInfos and not ModuleMacros.
assert(!isPCH(*Reader));
clang::IdentifierInfo *name =
astReader.getLocalIdentifier(Reader->getModuleFile(),
macroIDs.nameOrMacroID);
auto submoduleID = astReader.getGlobalSubmoduleID(Reader->getModuleFile(),
macroIDs.moduleID);
clang::Module *submodule = astReader.getSubmodule(submoduleID);
assert(submodule);
clang::Preprocessor &pp = Reader->getASTReader().getPreprocessor();
// Force the ModuleMacro to be loaded if this module is visible.
(void)pp.getLeafModuleMacros(name);
clang::ModuleMacro *macro = pp.getModuleMacro(submodule, name);
// This might still be NULL if the module has been imported but not made
// visible. We need a better answer here.
if (macro)
entry = encodeEntry(macro);
return macro;
}
SwiftLookupTable::SingleEntry SwiftLookupTable::mapStored(uint64_t &entry,
bool assumeModule) {
if (isDeclEntry(entry))
return mapStoredDecl(entry);
return mapStoredMacro(entry, assumeModule);
}
SwiftLookupTableReader::~SwiftLookupTableReader() {
OnRemove();
}
std::unique_ptr<SwiftLookupTableReader>
SwiftLookupTableReader::create(clang::ModuleFileExtension *extension,
clang::ASTReader &reader,
clang::serialization::ModuleFile &moduleFile,
std::function<void()> onRemove,
const llvm::BitstreamCursor &stream)
{
// Look for the base name -> entities table record.
SmallVector<uint64_t, 64> scratch;
auto cursor = stream;
llvm::Expected<llvm::BitstreamEntry> maybeNext = cursor.advance();
if (!maybeNext) {
// FIXME this drops the error on the floor.
consumeError(maybeNext.takeError());
return nullptr;
}
llvm::BitstreamEntry next = maybeNext.get();
std::unique_ptr<SerializedBaseNameToEntitiesTable> serializedTable;
std::unique_ptr<SerializedGlobalsAsMembersIndex> globalsAsMembersIndex;
std::unique_ptr<SerializedGlobalsAsMembersTable> globalsAsMembersTable;
ArrayRef<clang::serialization::DeclID> categories;
while (next.Kind != llvm::BitstreamEntry::EndBlock) {
if (next.Kind == llvm::BitstreamEntry::Error)
return nullptr;
if (next.Kind == llvm::BitstreamEntry::SubBlock) {
// Unknown sub-block, possibly for use by a future version of the
// API notes format.
if (cursor.SkipBlock())
return nullptr;
maybeNext = cursor.advance();
if (!maybeNext) {
// FIXME this drops the error on the floor.
consumeError(maybeNext.takeError());
return nullptr;
}
next = maybeNext.get();
continue;
}
scratch.clear();
StringRef blobData;
llvm::Expected<unsigned> maybeKind =
cursor.readRecord(next.ID, scratch, &blobData);
if (!maybeKind) {
// FIXME this drops the error on the floor.
consumeError(maybeNext.takeError());
return nullptr;
}
unsigned kind = maybeKind.get();
switch (kind) {
case BASE_NAME_TO_ENTITIES_RECORD_ID: {
// Already saw base name -> entities table.
if (serializedTable)
return nullptr;
uint32_t tableOffset;
BaseNameToEntitiesTableRecordLayout::readRecord(scratch, tableOffset);
auto base = reinterpret_cast<const uint8_t *>(blobData.data());
serializedTable.reset(
SerializedBaseNameToEntitiesTable::Create(base + tableOffset,
base + sizeof(uint32_t),
base));
break;
}
case GLOBALS_AS_MEMBERS_INDEX_RECORD_ID: {
// Already saw globals as members index.
if (globalsAsMembersIndex)
return nullptr;
uint32_t tableOffset;
GlobalsAsMembersIndexRecordLayout::readRecord(scratch, tableOffset);
auto base = reinterpret_cast<const uint8_t *>(blobData.data());
globalsAsMembersIndex.reset(
SerializedGlobalsAsMembersIndex::Create(base + tableOffset,
base + sizeof(uint32_t),
base));
break;
}
case CATEGORIES_RECORD_ID: {
// Already saw categories; input is malformed.
if (!categories.empty()) return nullptr;
auto start =
reinterpret_cast<const clang::serialization::DeclID *>(blobData.data());
unsigned numElements
= blobData.size() / sizeof(clang::serialization::DeclID);
categories = llvm::ArrayRef(start, numElements);
break;
}
case GLOBALS_AS_MEMBERS_RECORD_ID: {
// Already saw globals-as-members table.
if (globalsAsMembersTable)
return nullptr;
uint32_t tableOffset;
GlobalsAsMembersTableRecordLayout::readRecord(scratch, tableOffset);
auto base = reinterpret_cast<const uint8_t *>(blobData.data());
globalsAsMembersTable.reset(
SerializedGlobalsAsMembersTable::Create(base + tableOffset,
base + sizeof(uint32_t),
base));
break;
}
default:
// Unknown record, possibly for use by a future version of the
// module format.
break;
}
maybeNext = cursor.advance();
if (!maybeNext) {
// FIXME this drops the error on the floor.
consumeError(maybeNext.takeError());
return nullptr;
}
next = maybeNext.get();
}
if (!serializedTable) return nullptr;
// Create the reader.
// Note: This doesn't use std::make_unique because the constructor is
// private.
return std::unique_ptr<SwiftLookupTableReader>(
new SwiftLookupTableReader(extension, reader, moduleFile, onRemove,
std::move(serializedTable), categories,
std::move(globalsAsMembersTable),
std::move(globalsAsMembersIndex)));
}
SmallVector<SerializedSwiftName, 4> SwiftLookupTableReader::getBaseNames() {
SmallVector<SerializedSwiftName, 4> results;
for (auto key : SerializedTable->keys()) {
results.push_back(key);
}
return results;
}
bool SwiftLookupTableReader::lookup(
SerializedSwiftName baseName,
SmallVectorImpl<SwiftLookupTable::FullTableEntry> &entries) {
// Look for an entry with this base name.
auto known = SerializedTable->find(baseName);
if (known == SerializedTable->end()) return false;
// Grab the results.
entries = std::move(*known);
return true;
}
SmallVector<SwiftLookupTable::StoredContext, 4>
SwiftLookupTableReader::getGlobalsAsMembersContexts() {
SmallVector<SwiftLookupTable::StoredContext, 4> results;
if (!GlobalsAsMembersIndex) return results;
for (auto key : GlobalsAsMembersIndex->keys()) {
results.push_back(key);
}
return results;
}
bool SwiftLookupTableReader::lookupGlobalsAsMembersInContext(
SwiftLookupTable::StoredContext context,
SmallVectorImpl<uint64_t> &entries) {
if (!GlobalsAsMembersIndex) return false;
// Look for an entry with this context name.
auto known = GlobalsAsMembersIndex->find(context);
if (known == GlobalsAsMembersIndex->end()) return false;
// Grab the results.
entries = std::move(*known);
return true;
}
SmallVector<SerializedSwiftName, 4>
SwiftLookupTableReader::getGlobalsAsMembersBaseNames() {
SmallVector<SerializedSwiftName, 4> results;
if (!GlobalsAsMembersTable) return {};
for (auto key : GlobalsAsMembersTable->keys()) {
results.push_back(key);
}
return results;
}
bool SwiftLookupTableReader::lookupGlobalsAsMembers(
SerializedSwiftName baseName,
SmallVectorImpl<SwiftLookupTable::FullTableEntry> &entries) {
if (!GlobalsAsMembersTable) return false;
// Look for an entry with this context name.
auto known = GlobalsAsMembersTable->find(baseName);
if (known == GlobalsAsMembersTable->end()) return false;
// Grab the results.
entries = std::move(*known);
return true;
}
clang::ModuleFileExtensionMetadata
SwiftNameLookupExtension::getExtensionMetadata() const {
clang::ModuleFileExtensionMetadata metadata;
metadata.BlockName = "swift.lookup";
metadata.MajorVersion = SWIFT_LOOKUP_TABLE_VERSION_MAJOR;
metadata.MinorVersion = SWIFT_LOOKUP_TABLE_VERSION_MINOR;
metadata.UserInfo =
version::getSwiftFullVersion(swiftCtx.LangOpts.EffectiveLanguageVersion);
return metadata;
}
void
SwiftNameLookupExtension::hashExtension(ExtensionHashBuilder &HBuilder) const {
HBuilder.add(StringRef("swift.lookup"));
HBuilder.add(SWIFT_LOOKUP_TABLE_VERSION_MAJOR);
HBuilder.add(SWIFT_LOOKUP_TABLE_VERSION_MINOR);
HBuilder.add(version::getSwiftFullVersion());
}
void importer::addEntryToLookupTable(SwiftLookupTable &table,
clang::NamedDecl *named,
NameImporter &nameImporter) {
clang::PrettyStackTraceDecl trace(
named, named->getLocation(),
nameImporter.getClangContext().getSourceManager(),
"while adding SwiftName lookup table entries for clang declaration");
// Determine whether this declaration is suppressed in Swift.
if (shouldSuppressDeclImport(named))
return;
// Leave incomplete struct/enum/union types out of the table; Swift only
// handles pointers to them.
// FIXME: At some point we probably want to be importing incomplete types,
// so that pointers to different incomplete types themselves have distinct
// types. At that time it will be necessary to make the decision of whether
// or not to import an incomplete type declaration based on whether it's
// actually the struct backing a CF type:
//
// typedef struct CGColor *CGColorRef;
//
// The best way to do this is probably to change CFDatabase.def to include
// struct names when relevant, not just pointer names. That way we can check
// both CFDatabase.def and the objc_bridge attribute and cover all our bases.
if (auto *tagDecl = dyn_cast<clang::TagDecl>(named)) {
// We add entries for ClassTemplateSpecializations that don't have
// definition. It's possible that the decl will be instantiated by
// SwiftDeclConverter later on. We cannot force instantiating
// ClassTemplateSPecializations here because we're currently writing the
// AST, so we cannot modify it.
if (!isa<clang::ClassTemplateSpecializationDecl>(named) &&
!tagDecl->getDefinition()) {
return;
}
}
// If we have a name to import as, add this entry to the table.
auto currentVersion =
ImportNameVersion::fromOptions(nameImporter.getLangOpts());
auto failed = nameImporter.forEachDistinctImportName(
named, currentVersion,
[&](ImportedName importedName, ImportNameVersion version) {
table.addEntry(importedName.getDeclName(), named,
importedName.getEffectiveContext());
// Also add the subscript entry, if needed.
if (version == currentVersion && importedName.isSubscriptAccessor()) {
table.addEntry(DeclName(nameImporter.getContext(),
DeclBaseName::createSubscript(),
{Identifier()}),
named, importedName.getEffectiveContext());
}
return true;
});
if (failed) {
if (auto category = dyn_cast<clang::ObjCCategoryDecl>(named)) {
// If the category is invalid, don't add it.
if (category->isInvalidDecl())
return;
table.addCategory(category);
}
}
// Class template instantiations are imported lazily, however, the lookup
// table must include their mangled name (__CxxTemplateInst...) to make it
// possible to find these decls during deserialization. For any C++ typedef
// that defines a name for a class template instantiation (e.g. std::string),
// import the mangled name of this instantiation, and add it to the table.
auto addTemplateSpecialization =
[&](clang::ClassTemplateSpecializationDecl *specializationDecl) {
auto name = nameImporter.importName(specializationDecl, currentVersion);
// Avoid adding duplicate entries into the table.
auto existingEntries =
table.lookup(DeclBaseName(name.getDeclName().getBaseName()),
name.getEffectiveContext());
if (existingEntries.empty()) {
table.addEntry(name.getDeclName(), specializationDecl,
name.getEffectiveContext());
}
};
if (auto typedefNameDecl = dyn_cast<clang::TypedefNameDecl>(named)) {
auto underlyingDecl = typedefNameDecl->getUnderlyingType()->getAsTagDecl();
if (auto specializationDecl =
dyn_cast_or_null<clang::ClassTemplateSpecializationDecl>(
underlyingDecl)) {
addTemplateSpecialization(specializationDecl);
}
}
if (auto valueDecl = dyn_cast<clang::ValueDecl>(named)) {
auto valueTypeDecl = valueDecl->getType()->getAsTagDecl();
if (auto specializationDecl =
dyn_cast_or_null<clang::ClassTemplateSpecializationDecl>(
valueTypeDecl)) {
addTemplateSpecialization(specializationDecl);
}
}
// Walk the members of any context that can have nested members.
if (isa<clang::TagDecl>(named) || isa<clang::ObjCInterfaceDecl>(named) ||
isa<clang::ObjCProtocolDecl>(named) ||
isa<clang::ObjCCategoryDecl>(named)) {
clang::DeclContext *dc = cast<clang::DeclContext>(named);
for (auto member : dc->decls()) {
if (auto friendDecl = dyn_cast<clang::FriendDecl>(member))
if (auto underlyingDecl = friendDecl->getFriendDecl())
member = underlyingDecl;
if (auto namedMember = dyn_cast<clang::NamedDecl>(member))
addEntryToLookupTable(table, namedMember, nameImporter);
}
}
if (isa<clang::NamespaceDecl>(named)) {
llvm::SmallPtrSet<clang::Decl *, 8> alreadyAdded;
alreadyAdded.insert(named->getCanonicalDecl());
auto dc = cast<clang::DeclContext>(named);
for (auto member : dc->decls()) {
auto canonicalMember = isa<clang::NamespaceDecl>(member)
? member
: member->getCanonicalDecl();
if (!alreadyAdded.insert(canonicalMember).second)
continue;
if (auto namedMember = dyn_cast<clang::NamedDecl>(canonicalMember)) {
// Make sure we're looking at the definition, otherwise, there won't
// be any members to add.
if (auto recordDecl = dyn_cast<clang::RecordDecl>(namedMember))
if (auto def = recordDecl->getDefinition())
namedMember = def;
addEntryToLookupTable(table, namedMember, nameImporter);
}
}
}
if (auto usingDecl = dyn_cast<clang::UsingDecl>(named)) {
for (auto usingShadowDecl : usingDecl->shadows()) {
if (isa<clang::CXXMethodDecl>(usingShadowDecl->getTargetDecl()))
addEntryToLookupTable(table, usingShadowDecl, nameImporter);
}
}
}
/// Returns the nearest parent of \p module that is marked \c explicit in its
/// module map. If \p module is itself explicit, it is returned; if no module
/// in the parent chain is explicit, the top-level module is returned.
static const clang::Module *
getExplicitParentModule(const clang::Module *module) {
while (!module->IsExplicit && module->Parent)
module = module->Parent;
return module;
}
void importer::addMacrosToLookupTable(SwiftLookupTable &table,
NameImporter &nameImporter) {
auto &pp = nameImporter.getClangPreprocessor();
auto *tu = nameImporter.getClangContext().getTranslationUnitDecl();
bool isModule = pp.getLangOpts().isCompilingModule();
for (const auto ¯o : pp.macros(false)) {
auto maybeAddMacro = [&](clang::MacroInfo *info,
clang::ModuleMacro *moduleMacro) {
// If this is a #undef, return.
if (!info)
return;
// If we hit a builtin macro, we're done.
if (info->isBuiltinMacro())
return;
// If we hit a macro with invalid or predefined location, we're done.
auto loc = info->getDefinitionLoc();
if (loc.isInvalid())
return;
if (pp.getSourceManager().getFileID(loc) == pp.getPredefinesFileID())
return;
// If we're in a module, we really need moduleMacro to be valid.
if (isModule && !moduleMacro) {
// FIXME: "public" visibility macros should actually be added to the
// table.
return;
}
// Add this entry.
auto name = nameImporter.importMacroName(macro.first, info);
if (name.empty())
return;
if (moduleMacro)
table.addEntry(name, moduleMacro, tu);
else
table.addEntry(name, info, tu);
};
ArrayRef<clang::ModuleMacro *> moduleMacros =
macro.second.getActiveModuleMacros(pp, macro.first);
if (moduleMacros.empty()) {
// Handle the bridging header case.
clang::MacroDirective *MD = pp.getLocalMacroDirective(macro.first);
if (!MD)
continue;
maybeAddMacro(MD->getMacroInfo(), nullptr);
} else {
clang::Module *currentModule = pp.getCurrentModule();
SmallVector<clang::ModuleMacro *, 8> worklist;
llvm::copy_if(moduleMacros, std::back_inserter(worklist),
[currentModule](const clang::ModuleMacro *next) -> bool {
return next->getOwningModule()->isSubModuleOf(currentModule);
});
while (!worklist.empty()) {
clang::ModuleMacro *moduleMacro = worklist.pop_back_val();
maybeAddMacro(moduleMacro->getMacroInfo(), moduleMacro);
// Also visit overridden macros that are in a different explicit
// submodule. This isn't a perfect way to tell if these two macros are
// supposed to be independent, but it's close enough in practice.
clang::Module *owningModule = moduleMacro->getOwningModule();
auto *explicitParent = getExplicitParentModule(owningModule);
llvm::copy_if(moduleMacro->overrides(), std::back_inserter(worklist),
[&](const clang::ModuleMacro *next) -> bool {
const clang::Module *nextModule =
getExplicitParentModule(next->getOwningModule());
if (!nextModule->isSubModuleOf(currentModule))
return false;
return nextModule != explicitParent;
});
}
}
}
}
void importer::finalizeLookupTable(
SwiftLookupTable &table, NameImporter &nameImporter,
ClangSourceBufferImporter &buffersForDiagnostics) {
// Resolve any unresolved entries.
SmallVector<SwiftLookupTable::SingleEntry, 4> unresolved;
if (table.resolveUnresolvedEntries(unresolved)) {
// Complain about unresolved entries that remain.
for (auto entry : unresolved) {
auto decl = entry.get<clang::NamedDecl *>();
auto swiftName = decl->getAttr<clang::SwiftNameAttr>();
if (swiftName
// Clang didn't previously attach SwiftNameAttrs to forward
// declarations, but this changed and we started diagnosing spurious
// warnings on @class declarations. Suppress them.
// FIXME: Can we avoid processing these decls in the first place?
&& !importer::isForwardDeclOfType(decl)) {
clang::SourceLocation diagLoc = swiftName->getLocation();
if (!diagLoc.isValid())
diagLoc = decl->getLocation();
SourceLoc swiftSourceLoc = buffersForDiagnostics.resolveSourceLocation(
nameImporter.getClangContext().getSourceManager(), diagLoc);
DiagnosticEngine &swiftDiags = nameImporter.getContext().Diags;
swiftDiags.diagnose(swiftSourceLoc, diag::unresolvable_clang_decl,
decl->getNameAsString(), swiftName->getName());
StringRef moduleName =
nameImporter.getClangContext().getLangOpts().CurrentModule;
if (!moduleName.empty()) {
swiftDiags.diagnose(swiftSourceLoc,
diag::unresolvable_clang_decl_is_a_framework_bug,
moduleName);
}
}
}
}
}
void SwiftLookupTableWriter::populateTableWithDecl(SwiftLookupTable &table,
NameImporter &nameImporter,
clang::Decl *decl) {
// Skip anything from an AST file.
if (decl->isFromASTFile())
return;
// Iterate into extern "C" {} type declarations.
if (auto linkageDecl = dyn_cast<clang::LinkageSpecDecl>(decl)) {
for (auto *decl : linkageDecl->noload_decls()) {
populateTableWithDecl(table, nameImporter, decl);
}
return;
}
// Skip non-named declarations.
auto named = dyn_cast<clang::NamedDecl>(decl);
if (!named)
return;
// Add this entry to the lookup table.
addEntryToLookupTable(table, named, nameImporter);
}
void SwiftLookupTableWriter::populateTable(SwiftLookupTable &table,
NameImporter &nameImporter) {
auto &sema = nameImporter.getClangSema();
for (auto decl : sema.Context.getTranslationUnitDecl()->noload_decls()) {
populateTableWithDecl(table, nameImporter, decl);
}
// Add macros to the lookup table.
addMacrosToLookupTable(table, nameImporter);
// Finalize the lookup table, which may fail.
finalizeLookupTable(table, nameImporter, buffersForDiagnostics);
}
std::unique_ptr<clang::ModuleFileExtensionWriter>
SwiftNameLookupExtension::createExtensionWriter(clang::ASTWriter &writer) {
return std::make_unique<SwiftLookupTableWriter>(this, writer, swiftCtx,
buffersForDiagnostics,
availability);
}
std::unique_ptr<clang::ModuleFileExtensionReader>
SwiftNameLookupExtension::createExtensionReader(
const clang::ModuleFileExtensionMetadata &metadata,
clang::ASTReader &reader, clang::serialization::ModuleFile &mod,
const llvm::BitstreamCursor &stream) {
// Make sure we have a compatible block. Since these values are part
// of the hash, it should never be wrong.
assert(metadata.BlockName == "swift.lookup");
assert(metadata.MajorVersion == SWIFT_LOOKUP_TABLE_VERSION_MAJOR);
assert(metadata.MinorVersion == SWIFT_LOOKUP_TABLE_VERSION_MINOR);
std::function<void()> onRemove = [](){};
std::unique_ptr<SwiftLookupTable> *target = nullptr;
if (mod.Kind == clang::serialization::MK_PCH) {
// PCH imports unconditionally overwrite the provided pchLookupTable.
target = &pchLookupTable;
} else {
// Check whether we already have an entry in the set of lookup tables.
target = &lookupTables[mod.ModuleName];
if (*target) return nullptr;
// Local function used to remove this entry when the reader goes away.
std::string moduleName = mod.ModuleName;
onRemove = [this, moduleName]() {
lookupTables.erase(moduleName);
};
}
// Create the reader.
auto tableReader = SwiftLookupTableReader::create(this, reader, mod, onRemove,
stream);
if (!tableReader) return nullptr;
// Create the lookup table.
target->reset(new SwiftLookupTable(tableReader.get()));
// Return the new reader.
return std::move(tableReader);
}
|