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
|
/*
* Copyright (C) 2008-2021 Apple Inc. All rights reserved.
* Copyright (C) 2020 Alexey Shvayka <shvaikalesh@gmail.com>.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "Structure.h"
#include "BrandedStructure.h"
#include "BuiltinNames.h"
#include "DumpContext.h"
#include "JSCInlines.h"
#include "PropertyNameArray.h"
#include "PropertyTable.h"
#include <wtf/CommaPrinter.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/RefPtr.h>
#define DUMP_STRUCTURE_ID_STATISTICS 0
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
namespace JSC {
#if DUMP_STRUCTURE_ID_STATISTICS
static UncheckedKeyHashSet<Structure*>& liveStructureSet = *(new UncheckedKeyHashSet<Structure*>);
#endif
inline void StructureTransitionTable::setSingleTransition(VM& vm, JSCell* owner, Structure* structure)
{
ASSERT(isUsingSingleSlot());
m_data = std::bit_cast<intptr_t>(structure) | UsingSingleSlotFlag;
vm.writeBarrier(owner, structure);
}
bool StructureTransitionTable::contains(PointerKey rep, unsigned attributes, TransitionKind transitionKind) const
{
if (isUsingSingleSlot()) {
Structure* transition = trySingleTransition();
return transition && transition->m_transitionPropertyName == rep.pointer() && transition->transitionPropertyAttributes() == attributes && transition->transitionKind() == transitionKind;
}
return map()->get(StructureTransitionTable::Hash::createKey(rep, attributes, transitionKind));
}
void StructureTransitionTable::add(VM& vm, JSCell* owner, Structure* structure)
{
if (isUsingSingleSlot()) {
Structure* existingTransition = trySingleTransition();
// This handles the first transition being added.
if (!existingTransition) {
setSingleTransition(vm, owner, structure);
return;
}
// This handles the second transition being added
// (or the first transition being despecified!)
setMap(new TransitionMap(vm));
add(vm, owner, existingTransition);
}
// Add the structure to the map.
map()->set(StructureTransitionTable::Hash::createFromStructure(structure), structure);
}
void Structure::dumpStatistics()
{
#if DUMP_STRUCTURE_ID_STATISTICS
unsigned numberLeaf = 0;
unsigned numberUsingSingleSlot = 0;
unsigned numberSingletons = 0;
unsigned numberWithPropertyTables = 0;
unsigned totalPropertyTablesSize = 0;
for (auto* structure : liveStructureSet) {
switch (structure->m_transitionTable.size()) {
case 0:
++numberLeaf;
if (!structure->previousID())
++numberSingletons;
break;
case 1:
++numberUsingSingleSlot;
break;
}
if (PropertyTable* table = structure->propertyTableOrNull()) {
++numberWithPropertyTables;
totalPropertyTablesSize += table->sizeInMemory();
}
}
dataLogF("Number of live Structures: %d\n", liveStructureSet.size());
dataLogF("Number of Structures using the single item optimization for transition map: %d\n", numberUsingSingleSlot);
dataLogF("Number of Structures that are leaf nodes: %d\n", numberLeaf);
dataLogF("Number of Structures that singletons: %d\n", numberSingletons);
dataLogF("Number of Structures with PropertyTables: %d\n", numberWithPropertyTables);
dataLogF("Size of a single Structures: %d\n", static_cast<unsigned>(sizeof(Structure)));
dataLogF("Size of sum of all property maps: %d\n", totalPropertyTablesSize);
dataLogF("Size of average of all property maps: %f\n", static_cast<double>(totalPropertyTablesSize) / static_cast<double>(liveStructureSet.size()));
#else
dataLogF("Dumping Structure statistics is not enabled.\n");
#endif
}
#if ASSERT_ENABLED
void Structure::validateFlags()
{
bool hasStaticPropertyTable = false;
for (const ClassInfo* ci = classInfoForCells(); ci; ci = ci->parentClass) {
if (ci->staticPropHashTable)
hasStaticPropertyTable = true;
}
RELEASE_ASSERT(hasStaticPropertyTable == typeInfo().hasStaticPropertyTable());
const MethodTable& methodTable = m_classInfo->methodTable;
bool overridesGetCallData = methodTable.getCallData != JSCell::getCallData;
RELEASE_ASSERT(overridesGetCallData == typeInfo().overridesGetCallData());
bool overridesGetOwnPropertySlot =
methodTable.getOwnPropertySlot != JSObject::getOwnPropertySlot
&& methodTable.getOwnPropertySlot != JSCell::getOwnPropertySlot;
// We can strengthen this into an equivalence test if there are no classes
// that specifies this flag without overriding getOwnPropertySlot.
// FIXME: https://bugs.webkit.org/show_bug.cgi?id=212956
if (overridesGetOwnPropertySlot)
RELEASE_ASSERT(typeInfo().overridesGetOwnPropertySlot());
bool overridesGetOwnPropertySlotByIndex =
methodTable.getOwnPropertySlotByIndex != JSObject::getOwnPropertySlotByIndex
&& methodTable.getOwnPropertySlotByIndex != JSCell::getOwnPropertySlotByIndex;
// We can strengthen this into an equivalence test if there are no classes
// that specifies this flag without overriding getOwnPropertySlotByIndex.
// FIXME: https://bugs.webkit.org/show_bug.cgi?id=212958
if (overridesGetOwnPropertySlotByIndex)
RELEASE_ASSERT(typeInfo().interceptsGetOwnPropertySlotByIndexEvenWhenLengthIsNotZero());
bool overridesGetOwnPropertyNames =
methodTable.getOwnPropertyNames != JSObject::getOwnPropertyNames
&& methodTable.getOwnPropertyNames != JSCell::getOwnPropertyNames;
RELEASE_ASSERT(overridesGetOwnPropertyNames == typeInfo().overridesGetOwnPropertyNames());
bool overridesGetOwnSpecialPropertyNames =
methodTable.getOwnSpecialPropertyNames != JSObject::getOwnSpecialPropertyNames
&& methodTable.getOwnSpecialPropertyNames != JSCell::getOwnSpecialPropertyNames;
RELEASE_ASSERT(overridesGetOwnSpecialPropertyNames == typeInfo().overridesGetOwnSpecialPropertyNames());
bool overridesGetPrototype =
methodTable.getPrototype != static_cast<MethodTable::GetPrototypeFunctionPtr>(JSObject::getPrototype)
&& methodTable.getPrototype != JSCell::getPrototype;
RELEASE_ASSERT(overridesGetPrototype == typeInfo().overridesGetPrototype());
bool overridesPut = methodTable.put != JSObject::put && ((typeInfo().type() == StringType || typeInfo().type() == SymbolType || typeInfo().type() == HeapBigIntType) || methodTable.put != JSCell::put);
RELEASE_ASSERT(overridesPut == typeInfo().overridesPut());
bool overridesIsExtensible =
methodTable.isExtensible != static_cast<MethodTable::IsExtensibleFunctionPtr>(JSObject::isExtensible)
&& methodTable.isExtensible != JSCell::isExtensible;
RELEASE_ASSERT(overridesIsExtensible == typeInfo().overridesIsExtensible());
}
#else
inline void Structure::validateFlags() { }
#endif
Structure::Structure(VM& vm, JSGlobalObject* globalObject, JSValue prototype, const TypeInfo& typeInfo, const ClassInfo* classInfo, IndexingType indexingType, unsigned inlineCapacity)
: JSCell(vm, vm.structureStructure.get())
, m_blob(indexingType, typeInfo)
, m_outOfLineTypeFlags(typeInfo.outOfLineTypeFlags())
, m_inlineCapacity(inlineCapacity)
, m_bitField(0)
, m_propertyHash(0)
, m_globalObject(globalObject, WriteBarrierEarlyInit)
, m_prototype(prototype, WriteBarrierEarlyInit)
, m_classInfo(classInfo)
, m_transitionWatchpointSet(IsWatched)
{
bool hasStaticNonEnumerableProperty = m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::DontEnum));
bool hasStaticNonConfigurableProperty = m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::DontDelete));
setDictionaryKind(NoneDictionaryKind);
setIsPinnedPropertyTable(false);
setHasAnyKindOfGetterSetterProperties(classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::AccessorOrCustomAccessorOrValue)));
setHasReadOnlyOrGetterSetterPropertiesExcludingProto(hasAnyKindOfGetterSetterProperties() || classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::ReadOnly)));
setHasNonEnumerableProperties(hasStaticNonEnumerableProperty || typeInfo.overridesGetOwnPropertySlot());
setHasNonConfigurableProperties(hasStaticNonConfigurableProperty || typeInfo.overridesGetOwnPropertySlot());
setHasNonConfigurableReadOnlyOrGetterSetterProperties(hasStaticNonConfigurableProperty || (typeInfo.overridesGetOwnPropertySlot() && typeInfo.type() != ArrayType));
setHasUnderscoreProtoPropertyExcludingOriginalProto(false);
setIsQuickPropertyAccessAllowedForEnumeration(true);
setTransitionPropertyAttributes(0);
setTransitionKind(TransitionKind::Unknown);
setMayBePrototype(false);
setDidPreventExtensions(typeInfo.overridesIsExtensible());
setDidTransition(false);
setStaticPropertiesReified(false);
setTransitionWatchpointIsLikelyToBeFired(false);
setHasBeenDictionary(false);
setProtectPropertyTableWhileTransitioning(false);
setTransitionOffset(vm, invalidOffset);
setMaxOffset(vm, invalidOffset);
ASSERT(inlineCapacity <= JSFinalObject::maxInlineCapacity);
ASSERT(static_cast<PropertyOffset>(inlineCapacity) < firstOutOfLineOffset);
ASSERT(!hasRareData());
ASSERT(hasAnyKindOfGetterSetterProperties() == m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::AccessorOrCustomAccessorOrValue)));
ASSERT(hasReadOnlyOrGetterSetterPropertiesExcludingProto() == m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::ReadOnlyOrAccessorOrCustomAccessorOrValue)));
validateFlags();
#if ENABLE(STRUCTURE_ID_WITH_SHIFT)
ASSERT(WTF::roundUpToMultipleOf<Structure::atomSize>(this) == this);
#endif
}
const ClassInfo Structure::s_info = { "Structure"_s, nullptr, nullptr, nullptr, CREATE_METHOD_TABLE(Structure) };
Structure::Structure(VM& vm, CreatingEarlyCellTag)
: JSCell(CreatingEarlyCell)
, m_inlineCapacity(0)
, m_bitField(0)
, m_propertyHash(0)
, m_prototype(jsNull(), WriteBarrierEarlyInit)
, m_classInfo(info())
, m_transitionWatchpointSet(IsWatched)
{
TypeInfo typeInfo { StructureType, StructureFlags };
bool hasStaticNonEnumerableProperty = m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::DontEnum));
bool hasStaticNonConfigurableProperty = m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::DontDelete));
setDictionaryKind(NoneDictionaryKind);
setIsPinnedPropertyTable(false);
setHasAnyKindOfGetterSetterProperties(m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::AccessorOrCustomAccessorOrValue)));
setHasReadOnlyOrGetterSetterPropertiesExcludingProto(hasAnyKindOfGetterSetterProperties() || m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::ReadOnly)));
setHasNonEnumerableProperties(hasStaticNonEnumerableProperty || typeInfo.overridesGetOwnPropertySlot());
setHasNonConfigurableProperties(hasStaticNonConfigurableProperty || typeInfo.overridesGetOwnPropertySlot());
setHasNonConfigurableReadOnlyOrGetterSetterProperties(hasStaticNonConfigurableProperty || (typeInfo.overridesGetOwnPropertySlot() && typeInfo.type() != ArrayType));
setHasUnderscoreProtoPropertyExcludingOriginalProto(false);
setIsQuickPropertyAccessAllowedForEnumeration(true);
setTransitionPropertyAttributes(0);
setTransitionKind(TransitionKind::Unknown);
setMayBePrototype(false);
setDidPreventExtensions(typeInfo.overridesIsExtensible());
setDidTransition(false);
setStaticPropertiesReified(false);
setTransitionWatchpointIsLikelyToBeFired(false);
setHasBeenDictionary(false);
setProtectPropertyTableWhileTransitioning(false);
setTransitionOffset(vm, invalidOffset);
setMaxOffset(vm, invalidOffset);
m_blob = TypeInfoBlob(0, typeInfo);
m_outOfLineTypeFlags = typeInfo.outOfLineTypeFlags();
ASSERT(hasAnyKindOfGetterSetterProperties() == m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::AccessorOrCustomAccessorOrValue)));
ASSERT(hasReadOnlyOrGetterSetterPropertiesExcludingProto() == m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::ReadOnlyOrAccessorOrCustomAccessorOrValue)));
ASSERT(!this->typeInfo().overridesGetCallData() || m_classInfo->methodTable.getCallData != &JSCell::getCallData);
#if ENABLE(STRUCTURE_ID_WITH_SHIFT)
ASSERT(WTF::roundUpToMultipleOf<Structure::atomSize>(this) == this);
#endif
}
Structure::Structure(VM& vm, Structure* previous)
: JSCell(vm, vm.structureStructure.get())
, m_inlineCapacity(previous->m_inlineCapacity)
, m_bitField(0)
, m_propertyHash(previous->m_propertyHash)
, m_seenProperties(previous->m_seenProperties)
, m_prototype(previous->m_prototype.get(), WriteBarrierEarlyInit)
, m_classInfo(previous->m_classInfo)
, m_transitionWatchpointSet(IsWatched)
{
setDictionaryKind(previous->dictionaryKind());
setIsPinnedPropertyTable(false);
setHasBeenFlattenedBefore(previous->hasBeenFlattenedBefore());
setHasAnyKindOfGetterSetterProperties(previous->hasAnyKindOfGetterSetterProperties());
setHasReadOnlyOrGetterSetterPropertiesExcludingProto(previous->hasReadOnlyOrGetterSetterPropertiesExcludingProto());
setHasNonEnumerableProperties(previous->hasNonEnumerableProperties());
setHasNonConfigurableProperties(previous->hasNonConfigurableProperties());
setHasNonConfigurableReadOnlyOrGetterSetterProperties(previous->hasNonConfigurableReadOnlyOrGetterSetterProperties());
setHasUnderscoreProtoPropertyExcludingOriginalProto(previous->hasUnderscoreProtoPropertyExcludingOriginalProto());
setIsQuickPropertyAccessAllowedForEnumeration(previous->isQuickPropertyAccessAllowedForEnumeration());
setTransitionPropertyAttributes(0);
setTransitionKind(TransitionKind::Unknown);
setMayBePrototype(previous->mayBePrototype());
setDidPreventExtensions(previous->didPreventExtensions());
setDidTransition(true);
setStaticPropertiesReified(previous->staticPropertiesReified());
setHasBeenDictionary(previous->hasBeenDictionary());
setProtectPropertyTableWhileTransitioning(false);
setTransitionOffset(vm, invalidOffset);
setMaxOffset(vm, invalidOffset);
TypeInfo typeInfo = previous->typeInfo();
m_blob = TypeInfoBlob(previous->indexingModeIncludingHistory(), typeInfo);
m_outOfLineTypeFlags = typeInfo.outOfLineTypeFlags();
ASSERT(!previous->typeInfo().structureIsImmortal());
setPreviousID(vm, previous);
// Do not fire watchpoint inside Structure constructor since watchpoint can involve further heap allocations.
// We fire watchpoint separately in Structure::finishCreation.
previous->didTransitionFromThisStructureWithoutFiringWatchpoint();
// Copy this bit now, in case previous was being watched.
setTransitionWatchpointIsLikelyToBeFired(previous->transitionWatchpointIsLikelyToBeFired());
if (previous->m_globalObject)
m_globalObject.set(vm, this, previous->m_globalObject.get());
ASSERT(hasAnyKindOfGetterSetterProperties() || !m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::AccessorOrCustomAccessorOrValue)));
ASSERT(hasReadOnlyOrGetterSetterPropertiesExcludingProto() || !m_classInfo->hasStaticPropertyWithAnyOfAttributes(static_cast<uint8_t>(PropertyAttribute::ReadOnlyOrAccessorOrCustomAccessorOrValue)));
ASSERT(!this->typeInfo().overridesGetCallData() || m_classInfo->methodTable.getCallData != &JSCell::getCallData);
#if ENABLE(STRUCTURE_ID_WITH_SHIFT)
ASSERT(WTF::roundUpToMultipleOf<Structure::atomSize>(this) == this);
#endif
}
Structure::~Structure()
{
if (typeInfo().structureIsImmortal())
return;
if (isBrandedStructure())
static_cast<BrandedStructure*>(this)->destruct();
}
void Structure::destroy(JSCell* cell)
{
static_cast<Structure*>(cell)->Structure::~Structure();
}
Structure* Structure::create(PolyProtoTag, VM& vm, JSGlobalObject* globalObject, JSObject* prototype, const TypeInfo& typeInfo, const ClassInfo* classInfo, IndexingType indexingType, unsigned inlineCapacity)
{
Structure* result = Structure::create(vm, globalObject, prototype, typeInfo, classInfo, indexingType, inlineCapacity);
unsigned oldOutOfLineCapacity = result->outOfLineCapacity();
result->addPropertyWithoutTransition(
vm, vm.propertyNames->builtinNames().polyProtoName(), static_cast<unsigned>(PropertyAttribute::DontEnum),
[&] (const GCSafeConcurrentJSLocker&, PropertyOffset offset, PropertyOffset newMaxOffset) {
RELEASE_ASSERT(Structure::outOfLineCapacity(newMaxOffset) == oldOutOfLineCapacity);
RELEASE_ASSERT(offset == knownPolyProtoOffset);
RELEASE_ASSERT(isInlineOffset(knownPolyProtoOffset));
result->m_prototype.setWithoutWriteBarrier(JSValue());
result->setMaxOffset(vm, newMaxOffset);
});
ASSERT(result->type() == StructureType);
return result;
}
bool Structure::isValidPrototype(JSValue prototype)
{
return prototype.isNull() || (prototype.isObject() && prototype.getObject()->mayBePrototype());
}
bool Structure::findStructuresAndMapForMaterialization(Vector<Structure*, 8>& structures, Structure*& structure, PropertyTable*& table)
{
ASSERT(structures.isEmpty());
table = nullptr;
for (structure = this; structure; structure = structure->previousID()) {
structure->m_lock.lock();
table = structure->propertyTableOrNull();
if (table) {
// Leave the structure locked, so that the caller can do things to it atomically
// before it loses its property table.
return true;
}
structures.append(structure);
structure->m_lock.unlock();
}
ASSERT(!structure);
ASSERT(!table);
return false;
}
PropertyTable* Structure::materializePropertyTable(VM& vm, bool setPropertyTable)
{
ASSERT(!isCompilationThread());
ASSERT(structure()->classInfoForCells() == info());
ASSERT(!protectPropertyTableWhileTransitioning());
DeferGC deferGC(vm);
Vector<Structure*, 8> structures;
Structure* structure;
PropertyTable* table;
bool didFindStructure = findStructuresAndMapForMaterialization(structures, structure, table);
unsigned capacity = numberOfSlotsForMaxOffset(maxOffset(), m_inlineCapacity);
if (didFindStructure) {
table = table->copy(vm, capacity);
structure->m_lock.unlock();
} else
table = PropertyTable::create(vm, capacity);
// Must hold the lock on this structure, since we will be modifying this structure's
// property map. We don't want getConcurrently() to see the property map in a half-baked
// state.
GCSafeConcurrentJSLocker locker(m_lock, vm);
if (setPropertyTable)
this->setPropertyTable(vm, table);
for (size_t i = structures.size(); i--;) {
structure = structures[i];
if (!structure->m_transitionPropertyName)
continue;
switch (structure->transitionKind()) {
case TransitionKind::PropertyAddition: {
PropertyTableEntry entry(structure->m_transitionPropertyName.get(), structure->transitionOffset(), structure->transitionPropertyAttributes());
auto nextOffset = table->nextOffset(structure->inlineCapacity());
ASSERT_UNUSED(nextOffset, nextOffset == structure->transitionOffset());
auto [offset, attribute, result] = table->add(vm, entry);
ASSERT_UNUSED(result, result);
ASSERT_UNUSED(offset, offset == nextOffset);
UNUSED_VARIABLE(attribute);
break;
}
case TransitionKind::PropertyDeletion: {
auto [offset, attributes] = table->take(vm, structure->m_transitionPropertyName.get());
ASSERT_UNUSED(offset, offset != invalidOffset);
UNUSED_VARIABLE(attributes);
table->addDeletedOffset(structure->transitionOffset());
break;
}
case TransitionKind::PropertyAttributeChange: {
PropertyOffset offset = table->updateAttributeIfExists(structure->m_transitionPropertyName.get(), structure->transitionPropertyAttributes());
ASSERT_UNUSED(offset, offset == structure->transitionOffset());
break;
}
case TransitionKind::SetBrand: {
continue;
}
default:
ASSERT_NOT_REACHED();
break;
}
}
checkOffsetConsistency(
table,
[&] () {
dataLog("Detected in materializePropertyTable.\n");
dataLog("Found structure = ", RawPointer(structure), "\n");
dataLog("structures = ");
CommaPrinter comma;
for (Structure* structure : structures)
dataLog(comma, RawPointer(structure));
dataLog("\n");
});
return table;
}
bool Structure::holesMustForwardToPrototypeSlow(JSObject* base) const
{
ASSERT(base->structure() == this);
if (this->mayInterceptIndexedAccesses())
return true;
JSValue prototype = this->storedPrototype(base);
if (!prototype.isObject())
return false;
JSObject* object = asObject(prototype);
while (true) {
Structure& structure = *object->structure();
if (hasIndexedProperties(object->indexingType()) || structure.mayInterceptIndexedAccesses())
return true;
prototype = structure.storedPrototype(object);
if (!prototype.isObject())
return false;
object = asObject(prototype);
}
RELEASE_ASSERT_NOT_REACHED();
return false;
}
Structure* Structure::addPropertyTransition(VM& vm, Structure* structure, PropertyName propertyName, unsigned attributes, PropertyOffset& offset)
{
Structure* newStructure = addPropertyTransitionToExistingStructure(structure, propertyName, attributes, offset);
if (newStructure)
return newStructure;
return addNewPropertyTransition(vm, structure, propertyName, attributes, offset, PutPropertySlot::UnknownContext);
}
Structure* Structure::addNewPropertyTransition(VM& vm, Structure* structure, PropertyName propertyName, unsigned attributes, PropertyOffset& offset, PutPropertySlot::Context context, DeferredStructureTransitionWatchpointFire* deferred)
{
ASSERT(!structure->isDictionary());
ASSERT(structure->isObject());
ASSERT(!Structure::addPropertyTransitionToExistingStructure(structure, propertyName, attributes, offset));
if (structure->shouldDoCacheableDictionaryTransitionForAdd(context)) {
ASSERT(!isCopyOnWrite(structure->indexingMode()));
Structure* transition = toCacheableDictionaryTransition(vm, structure, deferred);
ASSERT(structure != transition);
offset = transition->add(vm, propertyName, attributes);
return transition;
}
Structure* transition = Structure::create(vm, structure, deferred);
transition->m_cachedPrototypeChain.setMayBeNull(vm, transition, structure->m_cachedPrototypeChain.get());
// While we are adding the property, rematerializing the property table is super weird: we already
// have a m_transitionPropertyName and transitionPropertyAttributes but the m_transitionOffset is still wrong. If the
// materialization algorithm runs, it'll build a property table that already has the property but
// at a bogus offset. Rather than try to teach the materialization code how to create a table under
// those conditions, we just tell the GC not to blow the table away during this period of time.
// Holding the lock ensures that we either do this before the GC starts scanning the structure, in
// which case the GC will not blow the table away, or we do it after the GC already ran in which
// case all is well. If it wasn't for the lock, the GC would have TOCTOU: if could read
// protectPropertyTableWhileTransitioning before we set it to true, and then blow the table away after.
{
ConcurrentJSLocker locker(transition->m_lock);
transition->setProtectPropertyTableWhileTransitioning(true);
}
transition->m_blob.setIndexingModeIncludingHistory(structure->indexingModeIncludingHistory() & ~CopyOnWrite);
transition->m_transitionPropertyName = propertyName.uid();
transition->setTransitionPropertyAttributes(attributes);
transition->setTransitionKind(TransitionKind::PropertyAddition);
transition->setPropertyTable(vm, structure->takePropertyTableOrCloneIfPinned(vm));
transition->setMaxOffset(vm, structure->maxOffset());
offset = transition->add(vm, propertyName, attributes);
transition->setTransitionOffset(vm, offset);
// Now that everything is fine with the new structure's bookkeeping, the GC is free to blow the
// table away if it wants. We can now rebuild it fine.
WTF::storeStoreFence();
transition->setProtectPropertyTableWhileTransitioning(false);
checkOffset(transition->transitionOffset(), transition->inlineCapacity());
if (!structure->hasBeenDictionary()) {
GCSafeConcurrentJSLocker locker(structure->m_lock, vm);
structure->m_transitionTable.add(vm, structure, transition);
}
transition->checkOffsetConsistency();
structure->checkOffsetConsistency();
return transition;
}
Structure* Structure::removePropertyTransition(VM& vm, Structure* structure, PropertyName propertyName, PropertyOffset& offset, DeferredStructureTransitionWatchpointFire* deferred)
{
Structure* newStructure = removePropertyTransitionFromExistingStructure(structure, propertyName, offset);
if (newStructure)
return newStructure;
return removeNewPropertyTransition(
vm, structure, propertyName, offset, deferred);
}
Structure* Structure::removePropertyTransitionFromExistingStructureImpl(Structure* structure, PropertyName propertyName, unsigned attributes, PropertyOffset& offset)
{
ASSERT(!structure->isUncacheableDictionary());
ASSERT(structure->isObject());
offset = invalidOffset;
if (structure->hasBeenDictionary())
return nullptr;
if (Structure* existingTransition = structure->m_transitionTable.get(propertyName.uid(), attributes, TransitionKind::PropertyDeletion)) {
validateOffset(existingTransition->transitionOffset(), existingTransition->inlineCapacity());
offset = existingTransition->transitionOffset();
return existingTransition;
}
return nullptr;
}
Structure* Structure::removePropertyTransitionFromExistingStructure(Structure* structure, PropertyName propertyName, PropertyOffset& offset)
{
ASSERT(!isCompilationThread());
unsigned attributes = 0;
if (structure->getConcurrently(propertyName.uid(), attributes) == invalidOffset)
return nullptr;
return removePropertyTransitionFromExistingStructureImpl(structure, propertyName, attributes, offset);
}
Structure* Structure::removePropertyTransitionFromExistingStructureConcurrently(Structure* structure, PropertyName propertyName, PropertyOffset& offset)
{
unsigned attributes = 0;
if (structure->getConcurrently(propertyName.uid(), attributes) == invalidOffset)
return nullptr;
ConcurrentJSLocker locker(structure->m_lock);
return removePropertyTransitionFromExistingStructureImpl(structure, propertyName, attributes, offset);
}
Structure* Structure::removeNewPropertyTransition(VM& vm, Structure* structure, PropertyName propertyName, PropertyOffset& offset, DeferredStructureTransitionWatchpointFire* deferred)
{
ASSERT(!isCompilationThread());
ASSERT(!structure->isUncacheableDictionary());
ASSERT(structure->isObject());
ASSERT(!Structure::removePropertyTransitionFromExistingStructure(structure, propertyName, offset));
ASSERT(structure->getConcurrently(propertyName.uid()) != invalidOffset);
if (structure->shouldDoCacheableDictionaryTransitionForRemoveAndAttributeChange()) {
ASSERT(!isCopyOnWrite(structure->indexingMode()));
Structure* transition = toUncacheableDictionaryTransition(vm, structure, deferred);
ASSERT(structure != transition);
offset = transition->remove(vm, propertyName);
return transition;
}
Structure* transition = Structure::create(vm, structure, deferred);
transition->m_cachedPrototypeChain.setMayBeNull(vm, transition, structure->m_cachedPrototypeChain.get());
// While we are deleting the property, we need to make sure the table is not cleared.
{
ConcurrentJSLocker locker(transition->m_lock);
transition->setProtectPropertyTableWhileTransitioning(true);
}
transition->m_blob.setIndexingModeIncludingHistory(structure->indexingModeIncludingHistory() & ~CopyOnWrite);
transition->m_transitionPropertyName = propertyName.uid();
transition->setTransitionKind(TransitionKind::PropertyDeletion);
transition->setPropertyTable(vm, structure->takePropertyTableOrCloneIfPinned(vm));
transition->setMaxOffset(vm, structure->maxOffset());
offset = transition->remove(vm, propertyName);
ASSERT(offset != invalidOffset);
transition->setTransitionOffset(vm, offset);
// Now that everything is fine with the new structure's bookkeeping, the GC is free to blow the
// table away if it wants. We can now rebuild it fine.
WTF::storeStoreFence();
transition->setProtectPropertyTableWhileTransitioning(false);
checkOffset(transition->transitionOffset(), transition->inlineCapacity());
if (!structure->hasBeenDictionary()) {
GCSafeConcurrentJSLocker locker(structure->m_lock, vm);
structure->m_transitionTable.add(vm, structure, transition);
}
transition->checkOffsetConsistency();
structure->checkOffsetConsistency();
return transition;
}
Structure* Structure::changePrototypeTransition(VM& vm, Structure* structure, JSValue prototype, DeferredStructureTransitionWatchpointFire& deferred)
{
ASSERT(isValidPrototype(prototype));
DeferGC deferGC(vm);
JSObject* key = prototype.isNull() ? nullptr : asObject(prototype);
bool shouldChain = !structure->hasPolyProto() && structure->typeInfo().type() != GlobalObjectType && !structure->hasBeenDictionary();
if (shouldChain) {
ASSERT(structure->isObject());
if (Structure* existingTransition = structure->m_transitionTable.get(key, 0, TransitionKind::ChangePrototype)) {
ASSERT(!existingTransition->hasPolyProto());
existingTransition->checkOffsetConsistency();
return existingTransition;
}
}
// Changing [[Prototype]] means that we refresh this object completely.
// This is very likely that this object will behaves differently from the previous one.
// Let's pin the table and break the edge to the previous Structure.
Structure* transition = Structure::create(vm, structure, &deferred);
PropertyTable* table = structure->copyPropertyTableForPinning(vm);
transition->pin(Locker { transition->m_lock }, vm, table);
transition->m_prototype.set(vm, transition, prototype);
transition->setTransitionKind(TransitionKind::ChangePrototype);
transition->setMaxOffset(vm, structure->maxOffset());
checkOffset(transition->transitionOffset(), transition->inlineCapacity());
if (shouldChain) {
GCSafeConcurrentJSLocker locker(structure->m_lock, vm);
structure->m_transitionTable.add(vm, structure, transition);
}
transition->checkOffsetConsistency();
structure->checkOffsetConsistency();
return transition;
}
Structure* Structure::changeGlobalProxyTargetTransition(VM& vm, Structure* structure, JSGlobalObject* globalObject, DeferredStructureTransitionWatchpointFire& deferred)
{
DeferGC deferGC(vm);
Structure* transition = Structure::create(vm, structure, &deferred);
transition->setGlobalObject(vm, globalObject);
PropertyTable* table = structure->copyPropertyTableForPinning(vm);
transition->pin(Locker { transition->m_lock }, vm, table);
transition->setMaxOffset(vm, structure->maxOffset());
transition->checkOffsetConsistency();
return transition;
}
Structure* Structure::attributeChangeTransitionToExistingStructureImpl(Structure* structure, PropertyName propertyName, unsigned attributes, PropertyOffset& offset)
{
ASSERT(structure->isObject());
offset = invalidOffset;
if (structure->hasBeenDictionary())
return nullptr;
if (Structure* existingTransition = structure->m_transitionTable.get(propertyName.uid(), attributes, TransitionKind::PropertyAttributeChange)) {
validateOffset(existingTransition->transitionOffset(), existingTransition->inlineCapacity());
offset = existingTransition->transitionOffset();
return existingTransition;
}
return nullptr;
}
Structure* Structure::attributeChangeTransitionToExistingStructure(Structure* structure, PropertyName propertyName, unsigned attributes, PropertyOffset& offset)
{
ASSERT(!isCompilationThread());
return attributeChangeTransitionToExistingStructureImpl(structure, propertyName, attributes, offset);
}
Structure* Structure::attributeChangeTransitionToExistingStructureConcurrently(Structure* structure, PropertyName propertyName, unsigned attributes, PropertyOffset& offset)
{
ConcurrentJSLocker locker(structure->m_lock);
return attributeChangeTransitionToExistingStructureImpl(structure, propertyName, attributes, offset);
}
Structure* Structure::attributeChangeTransition(VM& vm, Structure* structure, PropertyName propertyName, unsigned attributes, DeferredStructureTransitionWatchpointFire* deferred)
{
if (structure->isUncacheableDictionary()) {
structure->attributeChangeWithoutTransition(vm, propertyName, attributes, [](const GCSafeConcurrentJSLocker&, PropertyOffset, PropertyOffset) { });
structure->checkOffsetConsistency();
return structure;
}
ASSERT(!structure->isUncacheableDictionary());
PropertyOffset offset = invalidOffset;
if (Structure* existingTransition = attributeChangeTransitionToExistingStructure(structure, propertyName, attributes, offset)) {
validateOffset(existingTransition->transitionOffset(), existingTransition->inlineCapacity());
existingTransition->checkOffsetConsistency();
return existingTransition;
}
if (structure->shouldDoCacheableDictionaryTransitionForRemoveAndAttributeChange()) {
ASSERT(!isCopyOnWrite(structure->indexingMode()));
Structure* transition = toUncacheableDictionaryTransition(vm, structure, deferred);
ASSERT(structure != transition);
transition->attributeChange(vm, propertyName, attributes);
return transition;
}
// Even if the current structure is dictionary, we should perform transition since this changes attributes of existing properties to keep
// structure still cacheable.
Structure* transition = Structure::create(vm, structure, deferred);
transition->m_cachedPrototypeChain.setMayBeNull(vm, transition, structure->m_cachedPrototypeChain.get());
{
ConcurrentJSLocker locker(transition->m_lock);
transition->setProtectPropertyTableWhileTransitioning(true);
}
transition->m_blob.setIndexingModeIncludingHistory(structure->indexingModeIncludingHistory() & ~CopyOnWrite);
transition->m_transitionPropertyName = propertyName.uid();
transition->setTransitionPropertyAttributes(attributes);
transition->setTransitionKind(TransitionKind::PropertyAttributeChange);
transition->setPropertyTable(vm, structure->takePropertyTableOrCloneIfPinned(vm));
transition->setMaxOffset(vm, structure->maxOffset());
offset = transition->attributeChange(vm, propertyName, attributes);
transition->setTransitionOffset(vm, offset);
// Now that everything is fine with the new structure's bookkeeping, the GC is free to blow the
// table away if it wants. We can now rebuild it fine.
WTF::storeStoreFence();
transition->setProtectPropertyTableWhileTransitioning(false);
checkOffset(transition->transitionOffset(), transition->inlineCapacity());
if (!structure->hasBeenDictionary()) {
GCSafeConcurrentJSLocker locker(structure->m_lock, vm);
structure->m_transitionTable.add(vm, structure, transition);
}
transition->checkOffsetConsistency();
structure->checkOffsetConsistency();
return transition;
}
Structure* Structure::toDictionaryTransition(VM& vm, Structure* structure, DictionaryKind kind, DeferredStructureTransitionWatchpointFire* deferred)
{
ASSERT(!structure->isUncacheableDictionary());
DeferGC deferGC(vm);
Structure* transition = Structure::create(vm, structure, deferred);
PropertyTable* table = structure->copyPropertyTableForPinning(vm);
transition->pin(Locker { transition->m_lock }, vm, table);
transition->setMaxOffset(vm, structure->maxOffset());
transition->setDictionaryKind(kind);
transition->setHasBeenDictionary(true);
transition->checkOffsetConsistency();
return transition;
}
Structure* Structure::toCacheableDictionaryTransition(VM& vm, Structure* structure, DeferredStructureTransitionWatchpointFire* deferred)
{
return toDictionaryTransition(vm, structure, CachedDictionaryKind, deferred);
}
Structure* Structure::toUncacheableDictionaryTransition(VM& vm, Structure* structure, DeferredStructureTransitionWatchpointFire* deferred)
{
return toDictionaryTransition(vm, structure, UncachedDictionaryKind, deferred);
}
Structure* Structure::sealTransition(VM& vm, Structure* structure, DeferredStructureTransitionWatchpointFire* deferred)
{
return nonPropertyTransition(vm, structure, TransitionKind::Seal, deferred);
}
Structure* Structure::freezeTransition(VM& vm, Structure* structure, DeferredStructureTransitionWatchpointFire* deferred)
{
return nonPropertyTransition(vm, structure, TransitionKind::Freeze, deferred);
}
Structure* Structure::preventExtensionsTransition(VM& vm, Structure* structure, DeferredStructureTransitionWatchpointFire* deferred)
{
return nonPropertyTransition(vm, structure, TransitionKind::PreventExtensions, deferred);
}
Structure* Structure::becomePrototypeTransition(VM& vm, Structure* structure, DeferredStructureTransitionWatchpointFire* deferred)
{
return nonPropertyTransition(vm, structure, TransitionKind::BecomePrototype, deferred);
}
PropertyTable* Structure::takePropertyTableOrCloneIfPinned(VM& vm)
{
// This must always return a property table. It can't return null.
PropertyTable* result = propertyTableOrNull();
if (result) {
if (isPinnedPropertyTable())
return result->copy(vm, result->size() + 1);
ConcurrentJSLocker locker(m_lock);
setPropertyTable(vm, nullptr);
return result;
}
bool setPropertyTable = false;
return materializePropertyTable(vm, setPropertyTable);
}
Structure* Structure::nonPropertyTransitionSlow(VM& vm, Structure* structure, TransitionKind transitionKind, DeferredStructureTransitionWatchpointFire* deferred)
{
IndexingType indexingModeIncludingHistory = newIndexingType(structure->indexingModeIncludingHistory(), transitionKind);
if (!structure->isDictionary()) {
if (Structure* existingTransition = structure->m_transitionTable.get(nullptr, 0, transitionKind)) {
ASSERT(existingTransition->transitionKind() == transitionKind);
ASSERT(existingTransition->indexingModeIncludingHistory() == indexingModeIncludingHistory);
return existingTransition;
}
}
DeferGC deferGC(vm);
Structure* transition = Structure::create(vm, structure, deferred);
transition->setTransitionKind(transitionKind);
transition->m_blob.setIndexingModeIncludingHistory(indexingModeIncludingHistory);
if (changesIndexingType(transitionKind) && hasAnyArrayStorage(indexingModeIncludingHistory)) {
transition->setHasNonEnumerableProperties(true);
transition->setHasNonConfigurableProperties(true);
transition->setHasNonConfigurableReadOnlyOrGetterSetterProperties(true);
}
if (preventsExtensions(transitionKind))
transition->setDidPreventExtensions(true);
if (transitionKind == TransitionKind::BecomePrototype)
transition->setMayBePrototype(true);
if (setsDontDeleteOnAllProperties(transitionKind) || setsReadOnlyOnNonAccessorProperties(transitionKind)) {
// We pin the property table on transitions that do wholesale editing of the property
// table, since our logic for walking the property transition chain to rematerialize the
// table doesn't know how to take into account such wholesale edits.
ASSERT(transitionKind == TransitionKind::Seal || transitionKind == TransitionKind::Freeze);
PropertyTable* table = structure->copyPropertyTableForPinning(vm);
transition->pinForCaching(Locker { transition->m_lock }, vm, table);
transition->setMaxOffset(vm, structure->maxOffset());
table = transition->propertyTableOrNull();
RELEASE_ASSERT(table);
if (transitionKind == TransitionKind::Seal)
table->seal();
else
table->freeze();
transition->setHasNonEnumerableProperties(true);
transition->setHasNonConfigurableProperties(true);
transition->setHasNonConfigurableReadOnlyOrGetterSetterProperties(true);
} else {
transition->setPropertyTable(vm, structure->takePropertyTableOrCloneIfPinned(vm));
transition->setMaxOffset(vm, structure->maxOffset());
checkOffset(transition->maxOffset(), transition->inlineCapacity());
}
if (setsReadOnlyOnNonAccessorProperties(transitionKind)
&& !transition->propertyTableOrNull()->isEmpty())
transition->setHasReadOnlyOrGetterSetterPropertiesExcludingProto(true);
if (structure->isDictionary()) {
PropertyTable* table = transition->ensurePropertyTable(vm);
transition->pin(Locker { transition->m_lock }, vm, table);
} else {
Locker locker { structure->m_lock };
structure->m_transitionTable.add(vm, structure, transition);
}
transition->checkOffsetConsistency();
return transition;
}
// In future we may want to cache this property.
bool Structure::isSealed(VM& vm)
{
if (isStructureExtensible())
return false;
PropertyTable* table = ensurePropertyTableIfNotEmpty(vm);
if (!table)
return true;
return table->isSealed();
}
// In future we may want to cache this property.
bool Structure::isFrozen(VM& vm)
{
if (isStructureExtensible())
return false;
PropertyTable* table = ensurePropertyTableIfNotEmpty(vm);
if (!table)
return true;
return table->isFrozen();
}
Structure* Structure::flattenDictionaryStructure(VM& vm, JSObject* object)
{
ASSERT(!isCompilationThread());
checkOffsetConsistency();
ASSERT(isDictionary());
ASSERT(object->structure() == this);
Locker<JSCellLock> cellLocker(NoLockingNecessary);
PropertyTable* table = nullptr;
size_t beforeOutOfLineCapacity = this->outOfLineCapacity();
size_t afterOutOfLineCapacity = beforeOutOfLineCapacity;
if (isUncacheableDictionary()) {
table = propertyTableOrNull();
ASSERT(table);
PropertyOffset maxOffset = invalidOffset;
if (unsigned propertyCount = table->size())
maxOffset = offsetForPropertyNumber(propertyCount - 1, m_inlineCapacity);
afterOutOfLineCapacity = outOfLineCapacity(maxOffset);
}
// This is the only case we shrink butterfly in this function. We should take a cell lock to protect against concurrent access to the butterfly.
if (beforeOutOfLineCapacity != afterOutOfLineCapacity)
cellLocker = Locker { object->cellLock() };
GCSafeConcurrentJSLocker locker(m_lock, vm);
object->setStructureIDDirectly(id().nuke());
WTF::storeStoreFence();
if (isUncacheableDictionary()) {
size_t propertyCount = table->size();
// Holds our values compacted by insertion order. This is OK since GC is deferred.
Vector<JSValue> values(propertyCount);
// Copies out our values from their hashed locations, compacting property table offsets as we go.
PropertyOffset offset = table->renumberPropertyOffsets(object, m_inlineCapacity, values);
setMaxOffset(vm, offset);
ASSERT(transitionOffset() == invalidOffset);
// Copies in our values to their compacted locations.
for (unsigned i = 0; i < propertyCount; i++)
object->putDirectOffset(vm, offsetForPropertyNumber(i, m_inlineCapacity), values[i]);
// We need to zero our unused property space; otherwise the GC might see a
// stale pointer when we add properties in the future.
gcSafeZeroMemory(
object->inlineStorageUnsafe() + inlineSize(),
(inlineCapacity() - inlineSize()) * sizeof(EncodedJSValue));
Butterfly* butterfly = object->butterfly();
size_t preCapacity = butterfly->indexingHeader()->preCapacity(this);
void* base = butterfly->base(preCapacity, beforeOutOfLineCapacity);
void* startOfPropertyStorageSlots = reinterpret_cast<EncodedJSValue*>(base) + preCapacity;
gcSafeZeroMemory(static_cast<JSValue*>(startOfPropertyStorageSlots), (beforeOutOfLineCapacity - outOfLineSize()) * sizeof(EncodedJSValue));
checkOffsetConsistency();
}
setDictionaryKind(NoneDictionaryKind);
setHasBeenFlattenedBefore(true);
ASSERT(this->outOfLineCapacity() == afterOutOfLineCapacity);
if (object->butterfly() && beforeOutOfLineCapacity != afterOutOfLineCapacity) {
ASSERT(beforeOutOfLineCapacity > afterOutOfLineCapacity);
// If the object had a Butterfly but after flattening/compacting we no longer have need of it,
// we need to zero it out because the collector depends on the Structure to know the size for copying.
if (!afterOutOfLineCapacity && !this->hasIndexingHeader(object))
object->setButterfly(vm, nullptr);
// If the object was down-sized to the point where the base of the Butterfly is no longer within the
// first CopiedBlock::blockSize bytes, we'll get the wrong answer if we try to mask the base back to
// the CopiedBlock header. To prevent this case we need to memmove the Butterfly down.
else
object->shiftButterflyAfterFlattening(locker, vm, this, afterOutOfLineCapacity);
}
WTF::storeStoreFence();
object->setStructureIDDirectly(id());
// We need to do a writebarrier here because the GC thread might be scanning the butterfly while
// we are shuffling properties around. See: https://bugs.webkit.org/show_bug.cgi?id=166989
vm.writeBarrier(object);
return this;
}
void Structure::pinForCaching(const AbstractLocker&, VM& vm, PropertyTable* table)
{
setIsPinnedPropertyTable(true);
setPropertyTable(vm, table);
m_transitionPropertyName = nullptr;
}
void Structure::allocateRareData(VM& vm)
{
ASSERT(!hasRareData());
StructureRareData* rareData = StructureRareData::create(vm, previousID());
WTF::storeStoreFence();
m_previousOrRareData.set(vm, this, rareData);
ASSERT(hasRareData());
}
WatchpointSet* Structure::ensurePropertyReplacementWatchpointSet(VM& vm, PropertyOffset offset)
{
ASSERT(!isUncacheableDictionary());
// In some places it's convenient to call this with an invalid offset. So, we do the check here.
if (!isValidOffset(offset))
return nullptr;
if (!hasRareData())
allocateRareData(vm);
ConcurrentJSLocker locker(m_lock);
Structure* structure = this;
StructureRareData* rareData = structure->rareData();
auto result = rareData->m_replacementWatchpointSets.add(offset, nullptr);
if (result.isNewEntry) {
result.iterator->value = WatchpointSet::create(IsWatched);
rareData->incrementActiveReplacementWatchpointSet();
structure->setIsWatchingReplacement(true);
}
return result.iterator->value.get();
}
WatchpointSet* Structure::firePropertyReplacementWatchpointSet(VM& vm, PropertyOffset offset, const char* reason)
{
ASSERT(!isCompilationThread());
auto* structure = this;
auto* watchpointSet = structure->ensurePropertyReplacementWatchpointSet(vm, offset);
if (watchpointSet && watchpointSet->state() == IsWatched) {
StructureRareData* rareData = structure->rareData();
watchpointSet->fireAll(vm, reason);
if (!rareData->decrementActiveReplacementWatchpointSet())
structure->setIsWatchingReplacement(false);
}
return watchpointSet;
}
void Structure::startWatchingPropertyForReplacements(VM& vm, PropertyName propertyName)
{
ASSERT(!isUncacheableDictionary());
startWatchingPropertyForReplacements(vm, get(vm, propertyName));
}
void Structure::didReplacePropertySlow(PropertyOffset offset)
{
firePropertyReplacementWatchpointSet(vm(), offset, "Property did get replaced");
}
void Structure::startWatchingInternalProperties(VM& vm)
{
if (!isUncacheableDictionary()) {
startWatchingPropertyForReplacements(vm, vm.propertyNames->toString);
startWatchingPropertyForReplacements(vm, vm.propertyNames->valueOf);
}
setDidWatchInternalProperties(true);
}
#if DUMP_PROPERTYMAP_STATS
PropertyTableStats* propertyTableStats = 0;
struct PropertyTableStatisticsExitLogger {
PropertyTableStatisticsExitLogger();
~PropertyTableStatisticsExitLogger();
};
DEFINE_GLOBAL_FOR_LOGGING(PropertyTableStatisticsExitLogger, logger, { });
PropertyTableStatisticsExitLogger::PropertyTableStatisticsExitLogger()
{
propertyTableStats = adoptPtr(new PropertyTableStats()).leakPtr();
}
PropertyTableStatisticsExitLogger::~PropertyTableStatisticsExitLogger()
{
unsigned finds = propertyTableStats->numFinds;
unsigned collisions = propertyTableStats->numCollisions;
dataLogF("\nJSC::PropertyTable statistics for process %d\n\n", getCurrentProcessID());
dataLogF("%d finds\n", finds);
dataLogF("%d collisions (%.1f%%)\n", collisions, 100.0 * collisions / finds);
dataLogF("%d lookups\n", propertyTableStats->numLookups.load());
dataLogF("%d lookup probings\n", propertyTableStats->numLookupProbing.load());
dataLogF("%d adds\n", propertyTableStats->numAdds.load());
dataLogF("%d removes\n", propertyTableStats->numRemoves.load());
dataLogF("%d rehashes\n", propertyTableStats->numRehashes.load());
dataLogF("%d reinserts\n", propertyTableStats->numReinserts.load());
}
#endif
PropertyTable* Structure::copyPropertyTableForPinning(VM& vm)
{
if (PropertyTable* table = propertyTableOrNull())
return PropertyTable::clone(vm, *table);
bool setPropertyTable = false;
return materializePropertyTable(vm, setPropertyTable);
}
PropertyOffset Structure::getConcurrently(UniquedStringImpl* uid, unsigned& attributes)
{
Vector<Structure*, 8> structures;
Structure* tableStructure;
PropertyTable* table;
bool didFindStructure = findStructuresAndMapForMaterialization(structures, tableStructure, table);
for (auto* structure : structures) {
if (!structure->m_transitionPropertyName)
continue;
switch (structure->transitionKind()) {
case TransitionKind::PropertyAddition:
case TransitionKind::PropertyAttributeChange:
break;
case TransitionKind::PropertyDeletion:
if (structure->m_transitionPropertyName.get() == uid) {
if (didFindStructure) {
assertIsHeld(tableStructure->m_lock); // Sadly Clang needs some help here.
tableStructure->m_lock.unlock();
}
return invalidOffset;
}
continue;
case TransitionKind::SetBrand:
continue;
default:
ASSERT_NOT_REACHED();
break;
}
if (structure->m_transitionPropertyName.get() == uid) {
PropertyOffset result = structure->transitionOffset();
attributes = structure->transitionPropertyAttributes();
if (didFindStructure) {
assertIsHeld(tableStructure->m_lock); // Sadly Clang needs some help here.
tableStructure->m_lock.unlock();
}
return result;
}
}
PropertyOffset result = invalidOffset;
if (didFindStructure) {
assertIsHeld(tableStructure->m_lock); // Sadly Clang needs some help here.
// Because uid is UniquedStringImpl, it is guaranteed that the hash is already computed.
// So we can use PropertyTable::get even from the concurrent compilers.
// Even though taking a lock, all you can do is getting value from this table. We must not modify the table
// from non mutator thread.
auto [offset, entryAttributes] = table->get(uid);
if (offset != invalidOffset) {
result = offset;
attributes = entryAttributes;
}
tableStructure->m_lock.unlock();
}
return result;
}
Vector<PropertyTableEntry> Structure::getPropertiesConcurrently()
{
Vector<PropertyTableEntry> result;
forEachPropertyConcurrently(
[&] (const PropertyTableEntry& entry) -> bool {
result.append(entry);
return true;
});
return result;
}
PropertyOffset Structure::add(VM& vm, PropertyName propertyName, unsigned attributes)
{
return add<ShouldPin::No>(
vm, propertyName, attributes,
[this, &vm] (const GCSafeConcurrentJSLocker&, PropertyOffset, PropertyOffset newMaxOffset) {
setMaxOffset(vm, newMaxOffset);
});
}
PropertyOffset Structure::remove(VM& vm, PropertyName propertyName)
{
return remove<ShouldPin::No>(vm, propertyName, [this, &vm] (const GCSafeConcurrentJSLocker&, PropertyOffset, PropertyOffset newMaxOffset) {
setMaxOffset(vm, newMaxOffset);
});
}
PropertyOffset Structure::attributeChange(VM& vm, PropertyName propertyName, unsigned attributes)
{
return attributeChange<ShouldPin::No>(
vm, propertyName, attributes,
[this, &vm] (const GCSafeConcurrentJSLocker&, PropertyOffset, PropertyOffset newMaxOffset) {
setMaxOffset(vm, newMaxOffset);
});
}
void Structure::getPropertyNamesFromStructure(VM& vm, PropertyNameArray& propertyNames, DontEnumPropertiesMode mode)
{
PropertyTable* table = ensurePropertyTableIfNotEmpty(vm);
if (!table)
return;
bool knownUnique = propertyNames.canAddKnownUniqueForStructure();
bool foundSymbol = false;
auto checkDontEnumAndAdd = [&](const auto& entry) {
if (mode == DontEnumPropertiesMode::Include || !(entry.attributes() & PropertyAttribute::DontEnum)) {
if (knownUnique)
propertyNames.addUnchecked(entry.key());
else
propertyNames.add(entry.key());
}
};
table->forEachProperty([&](const auto& entry) {
ASSERT(!isQuickPropertyAccessAllowedForEnumeration() || !(entry.attributes() & PropertyAttribute::DontEnum));
ASSERT(!isQuickPropertyAccessAllowedForEnumeration() || !entry.key()->isSymbol());
if (entry.key()->isSymbol()) {
foundSymbol = true;
if (propertyNames.propertyNameMode() != PropertyNameMode::Symbols)
return IterationStatus::Continue;
}
checkDontEnumAndAdd(entry);
return IterationStatus::Continue;
});
if (foundSymbol && propertyNames.propertyNameMode() == PropertyNameMode::StringsAndSymbols) {
// To ensure the order defined in the spec, we append symbols at the last elements of keys.
// https://tc39.es/ecma262/#sec-ordinaryownpropertykeys
table->forEachProperty([&](const auto& entry) {
if (entry.key()->isSymbol())
checkDontEnumAndAdd(entry);
return IterationStatus::Continue;
});
}
}
void StructureFireDetail::dump(PrintStream& out) const
{
out.print("Structure transition from ", *m_structure);
}
void Structure::didTransitionFromThisStructureWithoutFiringWatchpoint() const
{
// If the structure is being watched, and this is the kind of structure that the DFG would
// like to watch, then make sure to note for all future versions of this structure that it's
// unwise to watch it.
if (m_transitionWatchpointSet.isBeingWatched())
const_cast<Structure*>(this)->setTransitionWatchpointIsLikelyToBeFired(true);
}
void Structure::fireStructureTransitionWatchpoint(DeferredStructureTransitionWatchpointFire* deferred) const
{
if (deferred) {
ASSERT(deferred->structure() == this);
m_transitionWatchpointSet.fireAll(vm(), deferred);
} else
m_transitionWatchpointSet.fireAll(vm(), StructureFireDetail(this));
}
void Structure::didTransitionFromThisStructure(DeferredStructureTransitionWatchpointFire* deferred) const
{
didTransitionFromThisStructureWithoutFiringWatchpoint();
fireStructureTransitionWatchpoint(deferred);
}
template<typename Visitor>
void Structure::visitChildrenImpl(JSCell* cell, Visitor& visitor)
{
Structure* thisObject = jsCast<Structure*>(cell);
ASSERT_GC_OBJECT_INHERITS(thisObject, info());
Base::visitChildren(thisObject, visitor);
ConcurrentJSLocker locker(thisObject->m_lock);
visitor.append(thisObject->m_globalObject);
if (!thisObject->isObject()) {
// We do not need to clear JSPropertyNameEnumerator since it is never cached for non-object Structure.
// We do not have code clearing JSPropertyNameEnumerator since this function can be called concurrently.
thisObject->m_cachedPrototypeChain.clear();
#if ASSERT_ENABLED
if (auto* rareData = thisObject->tryRareData())
ASSERT(!rareData->cachedPropertyNameEnumerator());
#endif
} else {
visitor.append(thisObject->m_prototype);
visitor.append(thisObject->m_cachedPrototypeChain);
}
visitor.append(thisObject->m_previousOrRareData);
if (thisObject->isPinnedPropertyTable() || thisObject->protectPropertyTableWhileTransitioning()) {
// NOTE: This can interleave in pin(), in which case it may see a null property table.
// That's fine, because then the barrier will fire and we will scan this again.
visitor.append(thisObject->m_propertyTableUnsafe);
} else if (visitor.vm().isAnalyzingHeap())
visitor.append(thisObject->m_propertyTableUnsafe);
else if (thisObject->m_propertyTableUnsafe)
thisObject->m_propertyTableUnsafe.clear();
if (thisObject->isBrandedStructure())
BrandedStructure::visitAdditionalChildren(cell, visitor);
// Mark only in non Full collection. In full collection, we handle it as a weak-link.
if (!(visitor.heap()->collectionScope() == CollectionScope::Full)) {
if (auto* transition = thisObject->m_transitionTable.trySingleTransition())
visitor.appendUnbarriered(transition);
}
}
DEFINE_VISIT_CHILDREN(Structure);
template<typename Visitor>
ALWAYS_INLINE bool Structure::isCheapDuringGC(Visitor& visitor)
{
// FIXME: We could make this even safer by returning false if this structure's property table
// has any large property names.
// https://bugs.webkit.org/show_bug.cgi?id=157334
return (!m_globalObject || visitor.isMarked(m_globalObject.get()))
&& (hasPolyProto() || !storedPrototypeObject() || visitor.isMarked(storedPrototypeObject()));
}
template<typename Visitor>
bool Structure::markIfCheap(Visitor& visitor)
{
if (!isCheapDuringGC(visitor))
return visitor.isMarked(this);
visitor.appendUnbarriered(this);
return true;
}
template bool Structure::markIfCheap(AbstractSlotVisitor&);
template bool Structure::markIfCheap(SlotVisitor&);
Ref<StructureShape> Structure::toStructureShape(JSValue value, bool& sawPolyProtoStructure)
{
Ref<StructureShape> baseShape = StructureShape::create();
RefPtr<StructureShape> curShape = baseShape.ptr();
Structure* curStructure = this;
JSValue curValue = value;
sawPolyProtoStructure = false;
while (curStructure) {
sawPolyProtoStructure |= curStructure->hasPolyProto();
curStructure->forEachPropertyConcurrently(
[&] (const PropertyTableEntry& entry) -> bool {
if (!PropertyName(entry.key()).isPrivateName())
curShape->addProperty(*entry.key());
return true;
});
if (JSObject* curObject = curValue.getObject())
curShape->setConstructorName(JSObject::calculatedClassName(curObject));
else
curShape->setConstructorName(curStructure->classInfoForCells()->className);
if (curStructure->isDictionary())
curShape->enterDictionaryMode();
curShape->markAsFinal();
if (!curValue.isObject())
break;
JSObject* object = asObject(curValue);
JSObject* prototypeObject = object->structure()->storedPrototypeObject(object);
if (!prototypeObject)
break;
auto newShape = StructureShape::create();
curShape->setProto(newShape.copyRef());
curShape = WTFMove(newShape);
curValue = prototypeObject;
curStructure = prototypeObject->structure();
}
return baseShape;
}
void Structure::dump(PrintStream& out) const
{
auto* structureID = reinterpret_cast<void*>(id().bits());
out.print(RawPointer(this), ":[", RawPointer(structureID),
"/", (uint32_t)(reinterpret_cast<uintptr_t>(structureID)), ", ",
classInfoForCells()->className, ", (", inlineSize(), "/", inlineCapacity(), ", ",
outOfLineSize(), "/", outOfLineCapacity(), "){");
CommaPrinter comma;
const_cast<Structure*>(this)->forEachPropertyConcurrently(
[&] (const PropertyTableEntry& entry) -> bool {
out.print(comma, entry.key(), ":"_s, static_cast<int>(entry.offset()));
return true;
});
out.print("}, "_s, IndexingTypeDump(indexingMode()));
out.print(", "_s, TransitionKindDump(transitionKind()));
if (hasPolyProto())
out.print(", PolyProto offset:"_s, knownPolyProtoOffset);
else if (m_prototype.get().isCell())
out.print(", Proto:"_s, RawPointer(m_prototype.get().asCell()));
switch (dictionaryKind()) {
case NoneDictionaryKind:
if (hasBeenDictionary())
out.print(", Has been dictionary"_s);
break;
case CachedDictionaryKind:
out.print(", Dictionary"_s);
break;
case UncachedDictionaryKind:
out.print(", UncacheableDictionary"_s);
break;
}
if (transitionWatchpointSetIsStillValid())
out.print(", Leaf"_s);
else if (transitionWatchpointIsLikelyToBeFired())
out.print(", Shady leaf"_s);
if (transitionWatchpointSet().isBeingWatched())
out.print(" (Watched)"_s);
out.print("]"_s);
}
void Structure::dumpInContext(PrintStream& out, DumpContext* context) const
{
if (context)
context->structures.dumpBrief(this, out);
else
dump(out);
}
void Structure::dumpBrief(PrintStream& out, const CString& string) const
{
out.print("%", string, ":", classInfoForCells()->className);
if (indexingType() & IndexingShapeMask)
out.print(",", IndexingTypeDump(indexingType()));
}
void Structure::dumpContextHeader(PrintStream& out)
{
out.print("Structures:");
}
bool ClassInfo::hasStaticPropertyWithAnyOfAttributes(uint8_t attributes) const
{
for (const ClassInfo* ci = this; ci; ci = ci->parentClass) {
if (const HashTable* table = ci->staticPropHashTable) {
if (table->seenPropertyAttributes & attributes)
return true;
}
}
return false;
}
void Structure::setCachedPropertyNameEnumerator(VM& vm, JSPropertyNameEnumerator* enumerator, StructureChain* chain)
{
ASSERT(typeInfo().isObject());
ASSERT(!isDictionary());
if (!hasRareData())
allocateRareData(vm);
ASSERT(chain == m_cachedPrototypeChain.get());
rareData()->setCachedPropertyNameEnumerator(vm, this, enumerator, chain);
}
JSPropertyNameEnumerator* Structure::cachedPropertyNameEnumerator() const
{
if (!hasRareData())
return nullptr;
return rareData()->cachedPropertyNameEnumerator();
}
uintptr_t Structure::cachedPropertyNameEnumeratorAndFlag() const
{
if (!hasRareData())
return 0;
return rareData()->cachedPropertyNameEnumeratorAndFlag();
}
bool Structure::canCachePropertyNameEnumerator(VM&) const
{
if (!this->canCacheOwnPropertyNames())
return false;
StructureChain* structureChain = m_cachedPrototypeChain.get();
ASSERT(structureChain);
StructureID* currentStructureID = structureChain->head();
while (true) {
StructureID structureID = *currentStructureID;
if (!structureID)
return true;
Structure* structure = structureID.decode();
if (!structure->canCacheOwnPropertyNames())
return false;
currentStructureID++;
}
ASSERT_NOT_REACHED();
return true;
}
bool Structure::canAccessPropertiesQuicklyForEnumeration() const
{
if (!isQuickPropertyAccessAllowedForEnumeration())
return false;
if (hasAnyKindOfGetterSetterProperties())
return false;
if (isUncacheableDictionary())
return false;
if (typeInfo().overridesGetOwnPropertyNames())
return false;
return true;
}
auto Structure::findPropertyHashEntry(PropertyName propertyName) const -> std::optional<PropertyHashEntry>
{
for (const ClassInfo* info = classInfoForCells(); info; info = info->parentClass) {
if (const HashTable* propHashTable = info->staticPropHashTable) {
if (const HashTableValue* entry = propHashTable->entry(propertyName))
return PropertyHashEntry { propHashTable, entry };
}
}
return std::nullopt;
}
Structure* Structure::setBrandTransitionFromExistingStructureImpl(Structure* structure, UniquedStringImpl* brandID)
{
ASSERT(structure->isObject());
if (structure->hasBeenDictionary())
return nullptr;
if (Structure* existingTransition = structure->m_transitionTable.get(brandID, 0, TransitionKind::SetBrand))
return existingTransition;
return nullptr;
}
Structure* Structure::setBrandTransitionFromExistingStructureConcurrently(Structure* structure, UniquedStringImpl* brandID)
{
ConcurrentJSLocker locker(structure->m_lock);
return setBrandTransitionFromExistingStructureImpl(structure, brandID);
}
Structure* Structure::setBrandTransition(VM& vm, Structure* structure, Symbol* brand, DeferredStructureTransitionWatchpointFire* deferred)
{
Structure* existingTransition = setBrandTransitionFromExistingStructureImpl(structure, &brand->uid());
if (existingTransition)
return existingTransition;
Structure* transition = BrandedStructure::create(vm, structure, &brand->uid(), deferred);
transition->setTransitionKind(TransitionKind::SetBrand);
transition->m_cachedPrototypeChain.setMayBeNull(vm, transition, structure->m_cachedPrototypeChain.get());
transition->m_blob.setIndexingModeIncludingHistory(structure->indexingModeIncludingHistory());
transition->m_transitionPropertyName = &brand->uid();
transition->setTransitionPropertyAttributes(0);
transition->setPropertyTable(vm, structure->takePropertyTableOrCloneIfPinned(vm));
transition->setMaxOffset(vm, structure->maxOffset());
checkOffset(transition->maxOffset(), transition->inlineCapacity());
if (structure->isDictionary()) {
PropertyTable* table = transition->ensurePropertyTable(vm);
transition->pin(Locker { transition->m_lock }, vm, table);
} else {
Locker locker { structure->m_lock };
structure->m_transitionTable.add(vm, structure, transition);
}
transition->checkOffsetConsistency();
return transition;
}
void DeferredStructureTransitionWatchpointFire::fireAllSlow()
{
StructureFireDetail detail(m_structure);
watchpointsToFire().fireAll(m_vm, detail);
}
void Structure::finalizeUnconditionally(VM& vm, CollectionScope collectionScope)
{
m_transitionTable.finalizeUnconditionally(vm, collectionScope);
}
void dumpTransitionKind(PrintStream& out, TransitionKind kind)
{
const char* kindName;
switch (kind) {
case TransitionKind::Unknown:
kindName = "Unknown";
break;
case TransitionKind::PropertyAddition:
kindName = "PropertyAddition";
break;
case TransitionKind::PropertyDeletion:
kindName = "PropertyDeletion";
break;
case TransitionKind::PropertyAttributeChange:
kindName = "PropertyAttributeChange";
break;
case TransitionKind::AllocateUndecided:
kindName = "AllocateUndecided";
break;
case TransitionKind::AllocateInt32:
kindName = "AllocateInt32";
break;
case TransitionKind::AllocateDouble:
kindName = "AllocateDouble";
break;
case TransitionKind::AllocateContiguous:
kindName = "AllocateContiguous";
break;
case TransitionKind::AllocateArrayStorage:
kindName = "AllocateArrayStorage";
break;
case TransitionKind::AllocateSlowPutArrayStorage:
kindName = "AllocateSlowPutArrayStorage";
break;
case TransitionKind::SwitchToSlowPutArrayStorage:
kindName = "SwitchToSlowPutArrayStorage";
break;
case TransitionKind::AddIndexedAccessors:
kindName = "AddIndexedAccessors";
break;
case TransitionKind::PreventExtensions:
kindName = "PreventExtensions";
break;
case TransitionKind::Seal:
kindName = "Seal";
break;
case TransitionKind::Freeze:
kindName = "Freeze";
break;
case TransitionKind::BecomePrototype:
kindName = "BecomePrototype";
break;
case TransitionKind::ChangePrototype:
kindName = "ChangePrototype";
break;
case TransitionKind::SetBrand:
kindName = "SetBrand";
break;
}
out.print(kindName);
}
} // namespace JSC
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
|