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
|
/*
* Copyright (C) 2008-2024 Apple Inc. All rights reserved.
*
* 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.
* 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "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 OR ITS 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 "VM.h"
#include "AbortReason.h"
#include "AccessCase.h"
#include "AggregateError.h"
#include "ArgList.h"
#include "BuiltinExecutables.h"
#include "BytecodeIntrinsicRegistry.h"
#include "CheckpointOSRExitSideState.h"
#include "CodeBlock.h"
#include "CodeCache.h"
#include "CommonIdentifiers.h"
#include "ControlFlowProfiler.h"
#include "CustomGetterSetterInlines.h"
#include "DOMAttributeGetterSetterInlines.h"
#include "Debugger.h"
#include "DeferredWorkTimer.h"
#include "Disassembler.h"
#include "DoublePredictionFuzzerAgent.h"
#include "ErrorInstance.h"
#include "EvalCodeBlockInlines.h"
#include "EvalExecutableInlines.h"
#include "Exception.h"
#include "FTLThunks.h"
#include "FileBasedFuzzerAgent.h"
#include "FunctionCodeBlockInlines.h"
#include "FunctionExecutableInlines.h"
#include "GetterSetterInlines.h"
#include "GigacageAlignedMemoryAllocator.h"
#include "HasOwnPropertyCache.h"
#include "Heap.h"
#include "HeapProfiler.h"
#include "IncrementalSweeper.h"
#include "Interpreter.h"
#include "IntlCache.h"
#include "JITCode.h"
#include "JITOperationList.h"
#include "JITSizeStatistics.h"
#include "JITThunks.h"
#include "JITWorklist.h"
#include "JSAPIValueWrapper.h"
#include "JSBigInt.h"
#include "JSGlobalObject.h"
#include "JSImmutableButterflyInlines.h"
#include "JSIterator.h"
#include "JSLock.h"
#include "JSMap.h"
#include "JSMicrotask.h"
#include "JSPromise.h"
#include "JSPropertyNameEnumeratorInlines.h"
#include "JSScriptFetchParametersInlines.h"
#include "JSScriptFetcherInlines.h"
#include "JSSet.h"
#include "JSSourceCodeInlines.h"
#include "JSTemplateObjectDescriptorInlines.h"
#include "JSToWasm.h"
#include "LLIntData.h"
#include "LLIntExceptions.h"
#include "MarkedBlockInlines.h"
#include "MegamorphicCache.h"
#include "MinimumReservedZoneSize.h"
#include "ModuleProgramCodeBlockInlines.h"
#include "ModuleProgramExecutableInlines.h"
#include "NarrowingNumberPredictionFuzzerAgent.h"
#include "NativeExecutable.h"
#include "NumberObject.h"
#include "PredictionFileCreatingFuzzerAgent.h"
#include "ProfilerDatabase.h"
#include "ProgramCodeBlockInlines.h"
#include "ProgramExecutableInlines.h"
#include "PropertyTableInlines.h"
#include "RandomizingFuzzerAgent.h"
#include "RegExpCache.h"
#include "RegExpInlines.h"
#include "ResourceExhaustion.h"
#include "SamplingProfiler.h"
#include "ScopedArguments.h"
#include "ShadowChicken.h"
#include "SharedJITStubSet.h"
#include "SideDataRepository.h"
#include "SimpleTypedArrayController.h"
#include "SourceProviderCache.h"
#include "StrongInlines.h"
#include "StructureChainInlines.h"
#include "StructureInlines.h"
#include "StructureStubInfo.h"
#include "SubspaceInlines.h"
#include "SymbolInlines.h"
#include "SymbolTableInlines.h"
#include "TestRunnerUtils.h"
#include "ThunkGenerators.h"
#include "TypeProfiler.h"
#include "TypeProfilerLog.h"
#include "UnlinkedEvalCodeBlockInlines.h"
#include "UnlinkedFunctionCodeBlockInlines.h"
#include "UnlinkedFunctionExecutableInlines.h"
#include "UnlinkedModuleProgramCodeBlockInlines.h"
#include "UnlinkedProgramCodeBlockInlines.h"
#include "VMEntryScopeInlines.h"
#include "VMInlines.h"
#include "VMInspector.h"
#include "VariableEnvironment.h"
#include "WaiterListManager.h"
#include "WasmWorklist.h"
#include "Watchdog.h"
#include "WeakGCMapInlines.h"
#include "WideningNumberPredictionFuzzerAgent.h"
#include <wtf/CryptographicallyRandomNumber.h>
#include <wtf/ProcessID.h>
#include <wtf/ReadWriteLock.h>
#include <wtf/SimpleStats.h>
#include <wtf/StackTrace.h>
#include <wtf/StringPrintStream.h>
#include <wtf/SystemTracing.h>
#include <wtf/Threading.h>
#include <wtf/text/AtomStringTable.h>
#include <wtf/text/StringToIntegerConversion.h>
#if ENABLE(C_LOOP)
#include "CLoopStackInlines.h"
#endif
#if ENABLE(DFG_JIT)
#include "ConservativeRoots.h"
#endif
#if ENABLE(REGEXP_TRACING)
#include "RegExp.h"
#endif
#if ENABLE(WEBASSEMBLY)
#include "JSWebAssemblyInstance.h"
#endif
namespace JSC {
DEFINE_ALLOCATOR_WITH_HEAP_IDENTIFIER(VM);
// Note: Platform.h will enforce that ENABLE(ASSEMBLER) is true if either
// ENABLE(JIT) or ENABLE(YARR_JIT) or both are enabled. The code below
// just checks for ENABLE(JIT) or ENABLE(YARR_JIT) with this premise in mind.
#if ENABLE(ASSEMBLER)
static bool enableAssembler()
{
if (!Options::useJIT())
return false;
auto canUseJITString = unsafeSpan(getenv("JavaScriptCoreUseJIT"));
if (canUseJITString.data() && !parseInteger<int>(canUseJITString).value_or(0))
return false;
ExecutableAllocator::initializeUnderlyingAllocator();
if (!ExecutableAllocator::singleton().isValid()) {
if (Options::crashIfCantAllocateJITMemory())
CRASH();
return false;
}
return true;
}
#endif // ENABLE(!ASSEMBLER)
bool VM::canUseAssembler()
{
#if ENABLE(ASSEMBLER)
static std::once_flag onceKey;
static bool enabled = false;
std::call_once(onceKey, [] {
enabled = enableAssembler();
});
return enabled;
#else
return false; // interpreter only
#endif
}
void VM::computeCanUseJIT()
{
#if ENABLE(JIT)
#if ASSERT_ENABLED
RELEASE_ASSERT(!g_jscConfig.vm.canUseJITIsSet);
g_jscConfig.vm.canUseJITIsSet = true;
#endif
g_jscConfig.vm.canUseJIT = VM::canUseAssembler() && Options::useJIT();
#endif
}
static bool vmCreationShouldCrash = false;
VM::VM(VMType vmType, HeapType heapType, WTF::RunLoop* runLoop, bool* success)
: topCallFrame(CallFrame::noCaller())
, m_identifier(VMIdentifier::generate())
, m_apiLock(adoptRef(*new JSLock(this)))
, m_runLoop(runLoop ? *runLoop : WTF::RunLoop::current())
, m_random(Options::seedOfVMRandomForFuzzer() ? Options::seedOfVMRandomForFuzzer() : cryptographicallyRandomNumber<uint32_t>())
, m_heapRandom(Options::seedOfVMRandomForFuzzer() ? Options::seedOfVMRandomForFuzzer() : cryptographicallyRandomNumber<uint32_t>())
, m_integrityRandom(*this)
, heap(*this, heapType)
, clientHeap(heap)
, vmType(vmType)
, deferredWorkTimer(DeferredWorkTimer::create(*this))
, m_atomStringTable(vmType == VMType::Default ? Thread::current().atomStringTable() : new AtomStringTable)
, emptyList(new ArgList)
, machineCodeBytesPerBytecodeWordForBaselineJIT(makeUnique<SimpleStats>())
, symbolImplToSymbolMap(*this)
, m_regExpCache(makeUnique<RegExpCache>())
, m_compactVariableMap(adoptRef(*new CompactTDZEnvironmentMap))
, m_codeCache(makeUnique<CodeCache>())
, m_intlCache(makeUnique<IntlCache>())
, m_builtinExecutables(makeUnique<BuiltinExecutables>(*this))
, m_syncWaiter(adoptRef(*new Waiter(this)))
{
if (UNLIKELY(vmCreationShouldCrash || g_jscConfig.vmCreationDisallowed))
CRASH_WITH_EXTRA_SECURITY_IMPLICATION_AND_INFO(VMCreationDisallowed, "VM creation disallowed"_s, 0x4242424220202020, 0xbadbeef0badbeef, 0x1234123412341234, 0x1337133713371337);
VMInspector::singleton().add(this);
// Set up lazy initializers.
{
m_hasOwnPropertyCache.initLater([](VM&, auto& ref) {
ref.set(HasOwnPropertyCache::create());
});
m_megamorphicCache.initLater([](VM&, auto& ref) {
ref.set(makeUniqueRef<MegamorphicCache>());
});
m_shadowChicken.initLater([](VM&, auto& ref) {
ref.set(makeUniqueRef<ShadowChicken>());
});
m_heapProfiler.initLater([](VM& vm, auto& ref) {
ref.set(makeUniqueRef<HeapProfiler>(vm));
});
m_stringSearcherTables.initLater([](VM&, auto& ref) {
ref.set(makeUniqueRef<AdaptiveStringSearcherTables>());
});
m_watchdog.initLater([](VM& vm, auto& ref) {
ref.set(adoptRef(*new Watchdog(&vm)));
vm.ensureTerminationException();
vm.requestEntryScopeService(EntryScopeService::Watchdog);
});
}
updateSoftReservedZoneSize(Options::softReservedZoneSize());
setLastStackTop(Thread::current());
stringSplitIndice.reserveInitialCapacity(256);
JSRunLoopTimer::Manager::singleton().registerVM(*this);
// Need to be careful to keep everything consistent here
JSLockHolder lock(this);
AtomStringTable* existingEntryAtomStringTable = Thread::current().setCurrentAtomStringTable(m_atomStringTable);
structureStructure.setWithoutWriteBarrier(Structure::createStructure(*this));
structureRareDataStructure.setWithoutWriteBarrier(StructureRareData::createStructure(*this, nullptr, jsNull()));
stringStructure.setWithoutWriteBarrier(JSString::createStructure(*this, nullptr, jsNull()));
smallStrings.initializeCommonStrings(*this);
numericStrings.initializeSmallIntCache(*this);
propertyNames = new CommonIdentifiers(*this);
propertyNameEnumeratorStructure.setWithoutWriteBarrier(JSPropertyNameEnumerator::createStructure(*this, nullptr, jsNull()));
getterSetterStructure.setWithoutWriteBarrier(GetterSetter::createStructure(*this, nullptr, jsNull()));
customGetterSetterStructure.setWithoutWriteBarrier(CustomGetterSetter::createStructure(*this, nullptr, jsNull()));
domAttributeGetterSetterStructure.setWithoutWriteBarrier(DOMAttributeGetterSetter::createStructure(*this, nullptr, jsNull()));
scopedArgumentsTableStructure.setWithoutWriteBarrier(ScopedArgumentsTable::createStructure(*this, nullptr, jsNull()));
apiWrapperStructure.setWithoutWriteBarrier(JSAPIValueWrapper::createStructure(*this, nullptr, jsNull()));
nativeExecutableStructure.setWithoutWriteBarrier(NativeExecutable::createStructure(*this, nullptr, jsNull()));
evalExecutableStructure.setWithoutWriteBarrier(EvalExecutable::createStructure(*this, nullptr, jsNull()));
programExecutableStructure.setWithoutWriteBarrier(ProgramExecutable::createStructure(*this, nullptr, jsNull()));
functionExecutableStructure.setWithoutWriteBarrier(FunctionExecutable::createStructure(*this, nullptr, jsNull()));
moduleProgramExecutableStructure.setWithoutWriteBarrier(ModuleProgramExecutable::createStructure(*this, nullptr, jsNull()));
regExpStructure.setWithoutWriteBarrier(RegExp::createStructure(*this, nullptr, jsNull()));
symbolStructure.setWithoutWriteBarrier(Symbol::createStructure(*this, nullptr, jsNull()));
symbolTableStructure.setWithoutWriteBarrier(SymbolTable::createStructure(*this, nullptr, jsNull()));
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
rawImmutableButterflyStructure(CopyOnWriteArrayWithInt32).setWithoutWriteBarrier(JSImmutableButterfly::createStructure(*this, nullptr, jsNull(), CopyOnWriteArrayWithInt32));
Structure* copyOnWriteArrayWithContiguousStructure = JSImmutableButterfly::createStructure(*this, nullptr, jsNull(), CopyOnWriteArrayWithContiguous);
rawImmutableButterflyStructure(CopyOnWriteArrayWithDouble).setWithoutWriteBarrier(Options::allowDoubleShape() ? JSImmutableButterfly::createStructure(*this, nullptr, jsNull(), CopyOnWriteArrayWithDouble) : copyOnWriteArrayWithContiguousStructure);
rawImmutableButterflyStructure(CopyOnWriteArrayWithContiguous).setWithoutWriteBarrier(copyOnWriteArrayWithContiguousStructure);
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
sourceCodeStructure.setWithoutWriteBarrier(JSSourceCode::createStructure(*this, nullptr, jsNull()));
scriptFetcherStructure.setWithoutWriteBarrier(JSScriptFetcher::createStructure(*this, nullptr, jsNull()));
scriptFetchParametersStructure.setWithoutWriteBarrier(JSScriptFetchParameters::createStructure(*this, nullptr, jsNull()));
structureChainStructure.setWithoutWriteBarrier(StructureChain::createStructure(*this, nullptr, jsNull()));
sparseArrayValueMapStructure.setWithoutWriteBarrier(SparseArrayValueMap::createStructure(*this, nullptr, jsNull()));
templateObjectDescriptorStructure.setWithoutWriteBarrier(JSTemplateObjectDescriptor::createStructure(*this, nullptr, jsNull()));
unlinkedFunctionExecutableStructure.setWithoutWriteBarrier(UnlinkedFunctionExecutable::createStructure(*this, nullptr, jsNull()));
unlinkedProgramCodeBlockStructure.setWithoutWriteBarrier(UnlinkedProgramCodeBlock::createStructure(*this, nullptr, jsNull()));
unlinkedEvalCodeBlockStructure.setWithoutWriteBarrier(UnlinkedEvalCodeBlock::createStructure(*this, nullptr, jsNull()));
unlinkedFunctionCodeBlockStructure.setWithoutWriteBarrier(UnlinkedFunctionCodeBlock::createStructure(*this, nullptr, jsNull()));
unlinkedModuleProgramCodeBlockStructure.setWithoutWriteBarrier(UnlinkedModuleProgramCodeBlock::createStructure(*this, nullptr, jsNull()));
propertyTableStructure.setWithoutWriteBarrier(PropertyTable::createStructure(*this, nullptr, jsNull()));
functionRareDataStructure.setWithoutWriteBarrier(FunctionRareData::createStructure(*this, nullptr, jsNull()));
exceptionStructure.setWithoutWriteBarrier(Exception::createStructure(*this, nullptr, jsNull()));
programCodeBlockStructure.setWithoutWriteBarrier(ProgramCodeBlock::createStructure(*this, nullptr, jsNull()));
moduleProgramCodeBlockStructure.setWithoutWriteBarrier(ModuleProgramCodeBlock::createStructure(*this, nullptr, jsNull()));
evalCodeBlockStructure.setWithoutWriteBarrier(EvalCodeBlock::createStructure(*this, nullptr, jsNull()));
functionCodeBlockStructure.setWithoutWriteBarrier(FunctionCodeBlock::createStructure(*this, nullptr, jsNull()));
bigIntStructure.setWithoutWriteBarrier(JSBigInt::createStructure(*this, nullptr, jsNull()));
// Eagerly initialize constant cells since the concurrent compiler can access them.
if (Options::useJIT()) {
orderedHashTableDeletedValue();
orderedHashTableSentinel();
emptyPropertyNameEnumerator();
ensureMegamorphicCache();
}
{
auto* bigInt = JSBigInt::tryCreateFrom(*this, 1);
if (bigInt)
heapBigIntConstantOne.setWithoutWriteBarrier(bigInt);
else {
if (success)
*success = false;
else
RELEASE_ASSERT_RESOURCE_AVAILABLE(bigInt, MemoryExhaustion, "Crash intentionally because memory is exhausted.");
}
}
Thread::current().setCurrentAtomStringTable(existingEntryAtomStringTable);
Gigacage::addPrimitiveDisableCallback(primitiveGigacageDisabledCallback, this);
heap.notifyIsSafeToCollect();
if (UNLIKELY(Options::useProfiler())) {
m_perBytecodeProfiler = makeUnique<Profiler::Database>(*this);
if (UNLIKELY(Options::dumpProfilerDataAtExit())) {
StringPrintStream pathOut;
const char* profilerPath = getenv("JSC_PROFILER_PATH");
if (profilerPath)
pathOut.print(profilerPath, "/");
pathOut.print("JSCProfile-", getCurrentProcessID(), "-", m_perBytecodeProfiler->databaseID(), ".json");
m_perBytecodeProfiler->registerToSaveAtExit(pathOut.toCString().data());
}
}
// Initialize this last, as a free way of asserting that VM initialization itself
// won't use this.
m_typedArrayController = adoptRef(new SimpleTypedArrayController());
m_bytecodeIntrinsicRegistry = makeUnique<BytecodeIntrinsicRegistry>(*this);
if (Options::useTypeProfiler())
enableTypeProfiler();
if (Options::useControlFlowProfiler())
enableControlFlowProfiler();
#if ENABLE(SAMPLING_PROFILER)
if (Options::useSamplingProfiler()) {
setShouldBuildPCToCodeOriginMapping();
Ref<Stopwatch> stopwatch = Stopwatch::create();
stopwatch->start();
ensureSamplingProfiler(WTFMove(stopwatch));
if (Options::samplingProfilerPath())
m_samplingProfiler->registerForReportAtExit();
m_samplingProfiler->start();
}
#endif // ENABLE(SAMPLING_PROFILER)
if (Options::useRandomizingFuzzerAgent())
setFuzzerAgent(makeUnique<RandomizingFuzzerAgent>(*this));
if (Options::useDoublePredictionFuzzerAgent())
setFuzzerAgent(makeUnique<DoublePredictionFuzzerAgent>(*this));
if (Options::useFileBasedFuzzerAgent())
setFuzzerAgent(makeUnique<FileBasedFuzzerAgent>(*this));
if (Options::usePredictionFileCreatingFuzzerAgent())
setFuzzerAgent(makeUnique<PredictionFileCreatingFuzzerAgent>(*this));
if (Options::useNarrowingNumberPredictionFuzzerAgent())
setFuzzerAgent(makeUnique<NarrowingNumberPredictionFuzzerAgent>(*this));
if (Options::useWideningNumberPredictionFuzzerAgent())
setFuzzerAgent(makeUnique<WideningNumberPredictionFuzzerAgent>(*this));
if (Options::alwaysGeneratePCToCodeOriginMap())
setShouldBuildPCToCodeOriginMapping();
if (Options::watchdog()) {
Ref watchdog = ensureWatchdog();
watchdog->setTimeLimit(Seconds::fromMilliseconds(Options::watchdog()));
}
if (Options::useTracePoints())
requestEntryScopeService(EntryScopeService::TracePoints);
#if ENABLE(JIT)
// Make sure that any stubs that the JIT is going to use are initialized in non-compilation threads.
if (Options::useJIT()) {
jitStubs = makeUnique<JITThunks>();
jitStubs->initialize(*this);
#if ENABLE(FTL_JIT)
ftlThunks = makeUnique<FTL::Thunks>();
#endif // ENABLE(FTL_JIT)
m_sharedJITStubs = makeUnique<SharedJITStubSet>();
getBoundFunction(/* isJSFunction */ true);
}
#endif // ENABLE(JIT)
if (Options::forceDebuggerBytecodeGeneration() || Options::alwaysUseShadowChicken())
ensureShadowChicken();
#if ENABLE(JIT)
if (Options::dumpBaselineJITSizeStatistics() || Options::dumpDFGJITSizeStatistics())
jitSizeStatistics = makeUnique<JITSizeStatistics>();
#endif
Config::finalize();
// We must set this at the end only after the VM is fully initialized.
WTF::storeStoreFence();
m_isInService = true;
}
static ReadWriteLock s_destructionLock;
void waitForVMDestruction()
{
Locker locker { s_destructionLock.write() };
}
VM::~VM()
{
Locker destructionLocker { s_destructionLock.read() };
if (vmType == VMType::Default)
WaiterListManager::singleton().unregister(this);
Gigacage::removePrimitiveDisableCallback(primitiveGigacageDisabledCallback, this);
deferredWorkTimer->stopRunningTasks();
#if ENABLE(WEBASSEMBLY)
if (Wasm::Worklist* worklist = Wasm::existingWorklistOrNull())
worklist->stopAllPlansForContext(*this);
#endif
if (RefPtr watchdog = this->watchdog(); UNLIKELY(watchdog))
watchdog->willDestroyVM(this);
m_traps.willDestroyVM();
m_isInService = false;
WTF::storeStoreFence();
if (m_hasSideData)
sideDataRepository().deleteAll(this);
// Never GC, ever again.
heap.incrementDeferralDepth();
#if ENABLE(SAMPLING_PROFILER)
if (m_samplingProfiler) {
m_samplingProfiler->reportDataToOptionFile();
m_samplingProfiler->shutdown();
}
#endif // ENABLE(SAMPLING_PROFILER)
#if ENABLE(JIT)
if (JITWorklist* worklist = JITWorklist::existingGlobalWorklistOrNull())
worklist->cancelAllPlansForVM(*this);
#endif // ENABLE(JIT)
waitForAsynchronousDisassembly();
// Clear this first to ensure that nobody tries to remove themselves from it.
m_perBytecodeProfiler = nullptr;
ASSERT(currentThreadIsHoldingAPILock());
m_apiLock->willDestroyVM(this);
smallStrings.setIsInitialized(false);
heap.lastChanceToFinalize();
JSRunLoopTimer::Manager::singleton().unregisterVM(*this);
VMInspector::singleton().remove(this);
delete emptyList;
delete propertyNames;
if (vmType != VMType::Default)
delete m_atomStringTable;
delete clientData;
m_regExpCache.reset();
#if ENABLE(DFG_JIT)
for (unsigned i = 0; i < m_scratchBuffers.size(); ++i)
VMMalloc::free(m_scratchBuffers[i]);
#endif
#if ENABLE(JIT)
m_sharedJITStubs = nullptr;
#endif
}
void VM::primitiveGigacageDisabledCallback(void* argument)
{
static_cast<VM*>(argument)->primitiveGigacageDisabled();
}
void VM::primitiveGigacageDisabled()
{
if (m_apiLock->currentThreadIsHoldingLock()) {
m_primitiveGigacageEnabled.fireAll(*this, "Primitive gigacage disabled");
return;
}
// This is totally racy, and that's OK. The point is, it's up to the user to ensure that they pass the
// uncaged buffer in a nicely synchronized manner.
requestEntryScopeService(EntryScopeService::FirePrimitiveGigacageEnabled);
}
void VM::setLastStackTop(const Thread& thread)
{
m_lastStackTop = thread.savedLastStackTop();
auto& stack = thread.stack();
RELEASE_ASSERT(stack.contains(m_lastStackTop), 0x5510, m_lastStackTop, stack.origin(), stack.end());
}
Ref<VM> VM::createContextGroup(HeapType heapType)
{
return adoptRef(*new VM(VMType::APIContextGroup, heapType));
}
Ref<VM> VM::create(HeapType heapType, WTF::RunLoop* runLoop)
{
return adoptRef(*new VM(VMType::Default, heapType, runLoop));
}
RefPtr<VM> VM::tryCreate(HeapType heapType, WTF::RunLoop* runLoop)
{
bool success = true;
RefPtr<VM> vm = adoptRef(new VM(VMType::Default, heapType, runLoop, &success));
if (!success) {
// Here, we're destructing a partially constructed VM and we know that
// no one else can be using it at the same time. So, acquiring the lock
// is superflous. However, we don't want to change how VMs are destructed.
// Just going through the motion of acquiring the lock here allows us to
// use the standard destruction process.
// VM expects us to be holding the VM lock when destructing it. Acquiring
// the lock also puts the VM in a state (e.g. acquiring heap access) that
// is needed for destruction. The lock will hold the last reference to
// the VM after we nullify the refPtr below. The VM will actually be
// destructed in JSLockHolder's destructor.
JSLockHolder lock(vm.get());
vm = nullptr;
}
return vm;
}
#if ENABLE(SAMPLING_PROFILER)
SamplingProfiler& VM::ensureSamplingProfiler(Ref<Stopwatch>&& stopwatch)
{
if (!m_samplingProfiler) {
lazyInitialize(m_samplingProfiler, adoptRef(*new SamplingProfiler(*this, WTFMove(stopwatch))));
requestEntryScopeService(EntryScopeService::SamplingProfiler);
}
return *m_samplingProfiler;
}
void VM::enableSamplingProfiler()
{
RefPtr profiler = samplingProfiler();
if (!profiler)
profiler = &ensureSamplingProfiler(Stopwatch::create());
profiler->start();
}
void VM::disableSamplingProfiler()
{
RefPtr profiler = samplingProfiler();
if (!profiler)
profiler = &ensureSamplingProfiler(Stopwatch::create());
{
Locker locker { profiler->getLock() };
profiler->pause();
}
}
RefPtr<JSON::Value> VM::takeSamplingProfilerSamplesAsJSON()
{
RefPtr profiler = samplingProfiler();
return profiler ? RefPtr { profiler->stackTracesAsJSON() } : nullptr;
}
#endif // ENABLE(SAMPLING_PROFILER)
static StringImpl::StaticStringImpl terminationErrorString { "JavaScript execution terminated." };
Exception* VM::ensureTerminationException()
{
if (!m_terminationException) {
JSString* terminationError = jsNontrivialString(*this, terminationErrorString);
m_terminationException = Exception::create(*this, terminationError, Exception::DoNotCaptureStack);
}
return m_terminationException;
}
#if ENABLE(JIT)
static ThunkGenerator thunkGeneratorForIntrinsic(Intrinsic intrinsic)
{
switch (intrinsic) {
case CharCodeAtIntrinsic:
return charCodeAtThunkGenerator;
case CharAtIntrinsic:
return charAtThunkGenerator;
case StringPrototypeCodePointAtIntrinsic:
return stringPrototypeCodePointAtThunkGenerator;
case Clz32Intrinsic:
return clz32ThunkGenerator;
case FromCharCodeIntrinsic:
return fromCharCodeThunkGenerator;
case GlobalIsNaNIntrinsic:
return globalIsNaNThunkGenerator;
case NumberIsNaNIntrinsic:
return numberIsNaNThunkGenerator;
case SqrtIntrinsic:
return sqrtThunkGenerator;
case AbsIntrinsic:
return absThunkGenerator;
case FloorIntrinsic:
return floorThunkGenerator;
case CeilIntrinsic:
return ceilThunkGenerator;
case TruncIntrinsic:
return truncThunkGenerator;
case RoundIntrinsic:
return roundThunkGenerator;
case ExpIntrinsic:
return expThunkGenerator;
case LogIntrinsic:
return logThunkGenerator;
case IMulIntrinsic:
return imulThunkGenerator;
case RandomIntrinsic:
return randomThunkGenerator;
#if USE(JSVALUE64)
case ObjectIsIntrinsic:
return objectIsThunkGenerator;
#endif
case BoundFunctionCallIntrinsic:
return boundFunctionCallGenerator;
case RemoteFunctionCallIntrinsic:
return remoteFunctionCallGenerator;
case NumberConstructorIntrinsic:
return numberConstructorCallThunkGenerator;
case StringConstructorIntrinsic:
return stringConstructorCallThunkGenerator;
case ToIntegerOrInfinityIntrinsic:
return toIntegerOrInfinityThunkGenerator;
case ToLengthIntrinsic:
return toLengthThunkGenerator;
case WasmFunctionIntrinsic:
#if ENABLE(WEBASSEMBLY) && ENABLE(JIT)
return Wasm::wasmFunctionThunkGenerator;
#else
return nullptr;
#endif
default:
return nullptr;
}
}
MacroAssemblerCodeRef<JITThunkPtrTag> VM::getCTIStub(ThunkGenerator generator)
{
return jitStubs->ctiStub(*this, generator);
}
MacroAssemblerCodeRef<JITThunkPtrTag> VM::getCTIStub(CommonJITThunkID thunkID)
{
return jitStubs->ctiStub(thunkID);
}
#endif // ENABLE(JIT)
NativeExecutable* VM::getHostFunction(NativeFunction function, ImplementationVisibility implementationVisibility, NativeFunction constructor, const String& name)
{
return getHostFunction(function, implementationVisibility, NoIntrinsic, constructor, nullptr, name);
}
static Ref<NativeJITCode> jitCodeForCallTrampoline(Intrinsic intrinsic)
{
switch (intrinsic) {
#if ENABLE(WEBASSEMBLY)
case WasmFunctionIntrinsic: {
static LazyNeverDestroyed<Ref<NativeJITCode>> result;
static std::once_flag onceKey;
std::call_once(onceKey, [&] {
result.construct(adoptRef(*new NativeJITCode(LLInt::getCodeRef<JSEntryPtrTag>(js_to_wasm_wrapper_entry), JITType::HostCallThunk, intrinsic)));
});
return result.get();
}
#endif
default: {
static LazyNeverDestroyed<Ref<NativeJITCode>> result;
static std::once_flag onceKey;
std::call_once(onceKey, [&] {
result.construct(adoptRef(*new NativeJITCode(LLInt::getCodeRef<JSEntryPtrTag>(llint_native_call_trampoline), JITType::HostCallThunk, NoIntrinsic)));
});
return result.get();
}
}
}
static Ref<NativeJITCode> jitCodeForConstructTrampoline()
{
static LazyNeverDestroyed<Ref<NativeJITCode>> result;
static std::once_flag onceKey;
std::call_once(onceKey, [&] {
result.construct(adoptRef(*new NativeJITCode(LLInt::getCodeRef<JSEntryPtrTag>(llint_native_construct_trampoline), JITType::HostCallThunk, NoIntrinsic)));
});
return result.get();
}
NativeExecutable* VM::getHostFunction(NativeFunction function, ImplementationVisibility implementationVisibility, Intrinsic intrinsic, NativeFunction constructor, const DOMJIT::Signature* signature, const String& name)
{
#if ENABLE(JIT)
if (Options::useJIT()) {
return jitStubs->hostFunctionStub(
*this, toTagged(function), toTagged(constructor),
intrinsic != NoIntrinsic ? thunkGeneratorForIntrinsic(intrinsic) : nullptr,
implementationVisibility, intrinsic, signature, name);
}
#endif // ENABLE(JIT)
UNUSED_PARAM(intrinsic);
UNUSED_PARAM(signature);
return NativeExecutable::create(*this, jitCodeForCallTrampoline(intrinsic), toTagged(function), jitCodeForConstructTrampoline(), toTagged(constructor), implementationVisibility, name);
}
NativeExecutable* VM::getBoundFunction(bool isJSFunction)
{
bool slowCase = !isJSFunction;
auto getOrCreate = [&](WriteBarrier<NativeExecutable>& slot) -> NativeExecutable* {
if (auto* cached = slot.get())
return cached;
NativeExecutable* result = getHostFunction(
slowCase ? boundFunctionCall : boundThisNoArgsFunctionCall,
ImplementationVisibility::Private, // Bound function's visibility is private on the stack.
slowCase ? NoIntrinsic : BoundFunctionCallIntrinsic,
boundFunctionConstruct, nullptr, String());
slot.setWithoutWriteBarrier(result);
return result;
};
if (slowCase)
return getOrCreate(m_slowCanConstructBoundExecutable);
return getOrCreate(m_fastCanConstructBoundExecutable);
}
NativeExecutable* VM::getRemoteFunction(bool isJSFunction)
{
bool slowCase = !isJSFunction;
auto getOrCreate = [&] (Weak<NativeExecutable>& slot) -> NativeExecutable* {
if (auto* cached = slot.get())
return cached;
Intrinsic intrinsic = NoIntrinsic;
if (!slowCase)
intrinsic = RemoteFunctionCallIntrinsic;
NativeExecutable* result = getHostFunction(
slowCase ? remoteFunctionCallGeneric : remoteFunctionCallForJSFunction,
ImplementationVisibility::Public, intrinsic,
callHostFunctionAsConstructor, nullptr, String());
slot = Weak<NativeExecutable>(result);
return result;
};
if (slowCase)
return getOrCreate(m_slowRemoteFunctionExecutable);
return getOrCreate(m_fastRemoteFunctionExecutable);
}
CodePtr<JSEntryPtrTag> VM::getCTIInternalFunctionTrampolineFor(CodeSpecializationKind kind)
{
#if ENABLE(JIT)
if (Options::useJIT()) {
if (kind == CodeForCall)
return jitStubs->ctiInternalFunctionCall(*this).retagged<JSEntryPtrTag>();
return jitStubs->ctiInternalFunctionConstruct(*this).retagged<JSEntryPtrTag>();
}
#endif
if (kind == CodeForCall)
return LLInt::getCodePtr<JSEntryPtrTag>(llint_internal_function_call_trampoline);
return LLInt::getCodePtr<JSEntryPtrTag>(llint_internal_function_construct_trampoline);
}
MacroAssemblerCodeRef<JSEntryPtrTag> VM::getCTIThrowExceptionFromCallSlowPath()
{
#if ENABLE(JIT)
if (Options::useJIT())
return getCTIStub(CommonJITThunkID::ThrowExceptionFromCallSlowPath).template retagged<JSEntryPtrTag>();
#endif
return LLInt::callToThrow(*this).template retagged<JSEntryPtrTag>();
}
MacroAssemblerCodeRef<JITStubRoutinePtrTag> VM::getCTIVirtualCall(CallMode callMode)
{
#if ENABLE(JIT)
if (Options::useJIT()) {
switch (callMode) {
case CallMode::Regular:
return getCTIStub(CommonJITThunkID::VirtualThunkForRegularCall).template retagged<JITStubRoutinePtrTag>();
case CallMode::Tail:
return getCTIStub(CommonJITThunkID::VirtualThunkForTailCall).template retagged<JITStubRoutinePtrTag>();
case CallMode::Construct:
return getCTIStub(CommonJITThunkID::VirtualThunkForConstruct).template retagged<JITStubRoutinePtrTag>();
}
RELEASE_ASSERT_NOT_REACHED();
}
#endif
switch (callMode) {
case CallMode::Regular:
return LLInt::getCodeRef<JITStubRoutinePtrTag>(llint_virtual_call_trampoline);
case CallMode::Tail:
return LLInt::getCodeRef<JITStubRoutinePtrTag>(llint_virtual_tail_call_trampoline);
case CallMode::Construct:
return LLInt::getCodeRef<JITStubRoutinePtrTag>(llint_virtual_construct_trampoline);
}
return LLInt::getCodeRef<JITStubRoutinePtrTag>(llint_virtual_call_trampoline);
}
void VM::whenIdle(Function<void()>&& callback)
{
if (!entryScope) {
callback();
return;
}
m_didPopListeners.append(WTFMove(callback));
requestEntryScopeService(EntryScopeService::PopListeners);
}
void VM::deleteAllLinkedCode(DeleteAllCodeEffort effort)
{
whenIdle([=, this] () {
heap.deleteAllCodeBlocks(effort);
});
}
void VM::deleteAllCode(DeleteAllCodeEffort effort)
{
whenIdle([=, this] () {
m_codeCache->clear();
m_builtinExecutables->clear();
m_regExpCache->deleteAllCode();
heap.deleteAllCodeBlocks(effort);
heap.deleteAllUnlinkedCodeBlocks(effort);
heap.reportAbandonedObjectGraph();
});
}
void VM::shrinkFootprintWhenIdle()
{
whenIdle([=, this] () {
sanitizeStackForVM(*this);
deleteAllCode(DeleteAllCodeIfNotCollecting);
heap.collectNow(Synchronousness::Sync, CollectionScope::Full);
// FIXME: Consider stopping various automatic threads here.
// https://bugs.webkit.org/show_bug.cgi?id=185447
WTF::releaseFastMallocFreeMemory();
});
}
SourceProviderCache* VM::addSourceProviderCache(SourceProvider* sourceProvider)
{
auto addResult = sourceProviderCacheMap.add(sourceProvider, nullptr);
if (addResult.isNewEntry)
addResult.iterator->value = adoptRef(new SourceProviderCache);
return addResult.iterator->value.get();
}
void VM::clearSourceProviderCaches()
{
sourceProviderCacheMap.clear();
}
bool VM::hasExceptionsAfterHandlingTraps()
{
if (UNLIKELY(traps().needHandling(VMTraps::NonDebuggerAsyncEvents)))
m_traps.handleTraps(VMTraps::NonDebuggerAsyncEvents);
return exception();
}
void VM::clearException()
{
#if ENABLE(EXCEPTION_SCOPE_VERIFICATION)
m_needExceptionCheck = false;
m_nativeStackTraceOfLastThrow = nullptr;
m_throwingThread = nullptr;
#endif
m_exception = nullptr;
traps().clearTrapBit(VMTraps::NeedExceptionHandling);
}
void VM::setException(Exception* exception)
{
ASSERT(!exception || !isTerminationException(exception) || hasTerminationRequest());
m_exception = exception;
m_lastException = exception;
if (exception)
traps().setTrapBit(VMTraps::NeedExceptionHandling);
}
void VM::throwTerminationException()
{
ASSERT(hasTerminationRequest());
ASSERT(!m_traps.isDeferringTermination());
setException(terminationException());
if (m_executionForbiddenOnTermination)
setExecutionForbidden();
}
Exception* VM::throwException(JSGlobalObject* globalObject, Exception* exceptionToThrow)
{
// The TerminationException should never be overridden.
if (hasPendingTerminationException())
return m_exception;
// The TerminationException is not like ordinary exceptions that should be
// reported to the debugger. The fact that the TerminationException uses the
// exception handling mechanism is just a VM internal implementation detail.
// It is not meaningful to report it to the debugger as an exception.
if (isTerminationException(exceptionToThrow)) {
// Note: we can only get here is we're just re-throwing the TerminationException
// from C++ functions to propagate it. If we're throwing it for the first
// time, we would have gone through VM::throwTerminationException().
setException(exceptionToThrow);
return exceptionToThrow;
}
CallFrame* throwOriginFrame = topJSCallFrame();
if (UNLIKELY(Options::breakOnThrow())) {
CodeBlock* codeBlock = throwOriginFrame && !throwOriginFrame->isNativeCalleeFrame() ? throwOriginFrame->codeBlock() : nullptr;
dataLog("Throwing exception in call frame ", RawPointer(throwOriginFrame), " for code block ", codeBlock, "\n");
WTFBreakpointTrap();
}
interpreter.notifyDebuggerOfExceptionToBeThrown(*this, globalObject, throwOriginFrame, exceptionToThrow);
setException(exceptionToThrow);
#if ENABLE(EXCEPTION_SCOPE_VERIFICATION)
m_nativeStackTraceOfLastThrow = StackTrace::captureStackTrace(Options::unexpectedExceptionStackTraceLimit());
m_throwingThread = &Thread::current();
#endif
return exceptionToThrow;
}
Exception* VM::throwException(JSGlobalObject* globalObject, JSValue thrownValue)
{
Exception* exception = jsDynamicCast<Exception*>(thrownValue);
if (!exception)
exception = Exception::create(*this, thrownValue);
return throwException(globalObject, exception);
}
Exception* VM::throwException(JSGlobalObject* globalObject, JSObject* error)
{
return throwException(globalObject, JSValue(error));
}
void VM::setStackPointerAtVMEntry(void* sp)
{
m_stackPointerAtVMEntry = sp;
updateStackLimits();
}
size_t VM::updateSoftReservedZoneSize(size_t softReservedZoneSize)
{
size_t oldSoftReservedZoneSize = m_currentSoftReservedZoneSize;
m_currentSoftReservedZoneSize = softReservedZoneSize;
#if ENABLE(C_LOOP)
interpreter.cloopStack().setSoftReservedZoneSize(softReservedZoneSize);
#endif
updateStackLimits();
return oldSoftReservedZoneSize;
}
#if OS(WINDOWS)
// On Windows the reserved stack space consists of committed memory, a guard page, and uncommitted memory,
// where the guard page is a barrier between committed and uncommitted memory.
// When data from the guard page is read or written, the guard page is moved, and memory is committed.
// This is how the system grows the stack.
// When using the C stack on Windows we need to precommit the needed stack space.
// Otherwise we might crash later if we access uncommitted stack memory.
// This can happen if we allocate stack space larger than the page guard size (4K).
// The system does not get the chance to move the guard page, and commit more memory,
// and we crash if uncommitted memory is accessed.
// The MSVC compiler fixes this by inserting a call to the _chkstk() function,
// when needed, see http://support.microsoft.com/kb/100775.
// By touching every page up to the stack limit with a dummy operation,
// we force the system to move the guard page, and commit memory.
static void preCommitStackMemory(void* stackLimit)
{
const int pageSize = 4096;
for (volatile char* p = reinterpret_cast<char*>(&stackLimit); p > stackLimit; p -= pageSize) {
char ch = *p;
*p = ch;
}
}
#endif
void VM::updateStackLimits()
{
void* lastSoftStackLimit = m_softStackLimit;
const StackBounds& stack = Thread::current().stack();
size_t reservedZoneSize = Options::reservedZoneSize();
// We should have already ensured that Options::reservedZoneSize() >= minimumReserveZoneSize at
// options initialization time, and the option value should not have been changed thereafter.
// We don't have the ability to assert here that it hasn't changed, but we can at least assert
// that the value is sane.
RELEASE_ASSERT(reservedZoneSize >= minimumReservedZoneSize);
if (m_stackPointerAtVMEntry) {
char* startOfStack = reinterpret_cast<char*>(m_stackPointerAtVMEntry);
m_softStackLimit = stack.recursionLimit(startOfStack, Options::maxPerThreadStackUsage(), m_currentSoftReservedZoneSize);
m_stackLimit = stack.recursionLimit(startOfStack, Options::maxPerThreadStackUsage(), reservedZoneSize);
} else {
m_softStackLimit = stack.recursionLimit(m_currentSoftReservedZoneSize);
m_stackLimit = stack.recursionLimit(reservedZoneSize);
}
if (lastSoftStackLimit != m_softStackLimit) {
#if OS(WINDOWS)
// We only need to precommit stack memory dictated by the VM::m_softStackLimit limit.
// This is because VM::m_softStackLimit applies to stack usage by LLINT asm or JIT
// generated code which can allocate stack space that the C++ compiler does not know
// about. As such, we have to precommit that stack memory manually.
//
// In contrast, we do not need to worry about VM::m_stackLimit because that limit is
// used exclusively by C++ code, and the C++ compiler will automatically commit the
// needed stack pages.
preCommitStackMemory(m_softStackLimit);
#endif
#if ENABLE(WEBASSEMBLY)
// PreciseAllocations are always eagerly swept so we don't have to worry about handling instances pending destruction thus need a HeapIterationScope
if (heap.m_webAssemblyInstanceSpace) {
heap.m_webAssemblyInstanceSpace->forEachLiveCell([&] (HeapCell* cell, HeapCell::Kind kind) {
ASSERT_UNUSED(kind, kind == HeapCell::JSCell);
SUPPRESS_MEMORY_UNSAFE_CAST static_cast<JSWebAssemblyInstance*>(cell)->updateSoftStackLimit(m_softStackLimit);
});
}
#endif
}
}
#if ENABLE(DFG_JIT)
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
void VM::gatherScratchBufferRoots(ConservativeRoots& conservativeRoots)
{
Locker locker { m_scratchBufferLock };
for (auto* scratchBuffer : m_scratchBuffers) {
if (scratchBuffer->activeLength()) {
void* bufferStart = scratchBuffer->dataBuffer();
conservativeRoots.add(bufferStart, static_cast<void*>(static_cast<char*>(bufferStart) + scratchBuffer->activeLength()));
}
}
}
void VM::scanSideState(ConservativeRoots& roots) const
{
ASSERT(heap.worldIsStopped());
for (const auto& sideState : m_checkpointSideState) {
static_assert(sizeof(sideState->tmps) / sizeof(JSValue) == maxNumCheckpointTmps);
roots.add(sideState->tmps, sideState->tmps + maxNumCheckpointTmps);
}
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
#endif // ENABLE(DFG_JIT)
void VM::pushCheckpointOSRSideState(std::unique_ptr<CheckpointOSRExitSideState>&& payload)
{
ASSERT(currentThreadIsHoldingAPILock());
ASSERT(payload->associatedCallFrame);
#if ASSERT_ENABLED
for (const auto& sideState : m_checkpointSideState)
ASSERT(sideState->associatedCallFrame != payload->associatedCallFrame);
#endif
m_checkpointSideState.append(WTFMove(payload));
#if ASSERT_ENABLED
auto bounds = StackBounds::currentThreadStackBounds();
void* previousCallFrame = bounds.end();
for (size_t i = m_checkpointSideState.size(); i--;) {
auto* callFrame = m_checkpointSideState[i]->associatedCallFrame;
if (!bounds.contains(callFrame))
break;
ASSERT(previousCallFrame < callFrame);
previousCallFrame = callFrame;
}
#endif
}
std::unique_ptr<CheckpointOSRExitSideState> VM::popCheckpointOSRSideState(CallFrame* expectedCallFrame)
{
ASSERT(currentThreadIsHoldingAPILock());
auto sideState = m_checkpointSideState.takeLast();
RELEASE_ASSERT(sideState->associatedCallFrame == expectedCallFrame);
return sideState;
}
void VM::popAllCheckpointOSRSideStateUntil(CallFrame* target)
{
ASSERT(currentThreadIsHoldingAPILock());
auto bounds = StackBounds::currentThreadStackBounds().withSoftOrigin(target);
ASSERT(bounds.contains(target));
// We have to worry about migrating from another thread since there may be no checkpoints in our thread but one in the other threads.
while (m_checkpointSideState.size() && bounds.contains(m_checkpointSideState.last()->associatedCallFrame))
m_checkpointSideState.takeLast();
m_checkpointSideState.shrinkToFit();
}
static void logSanitizeStack(VM& vm)
{
if (UNLIKELY(Options::verboseSanitizeStack())) {
auto& stackBounds = Thread::current().stack();
dataLogLn("Sanitizing stack for VM = ", RawPointer(&vm), ", current stack pointer at ", RawPointer(currentStackPointer()), ", last stack top = ", RawPointer(vm.lastStackTop()), ", in stack range (", RawPointer(stackBounds.end()), ", ", RawPointer(stackBounds.origin()), "]");
}
}
#if ENABLE(YARR_JIT_ALL_PARENS_EXPRESSIONS)
char* VM::acquireRegExpPatternContexBuffer()
{
m_regExpPatternContextLock.lock();
ASSERT(m_regExpPatternContextLock.isLocked());
if (!m_regExpPatternContexBuffer)
m_regExpPatternContexBuffer = makeUniqueArray<char>(VM::patternContextBufferSize);
return m_regExpPatternContexBuffer.get();
}
void VM::releaseRegExpPatternContexBuffer()
{
ASSERT(m_regExpPatternContextLock.isLocked());
m_regExpPatternContextLock.unlock();
}
#endif
#if ENABLE(REGEXP_TRACING)
void VM::addRegExpToTrace(RegExp* regExp)
{
gcProtect(regExp);
m_rtTraceList.add(regExp);
}
void VM::dumpRegExpTrace()
{
if (m_rtTraceList.size() <= 1)
return;
// The first RegExp object is ignored. It is created by the RegExpPrototype ctor and not used.
RTTraceList::iterator iter = ++m_rtTraceList.begin();
if (iter != m_rtTraceList.end()) {
RegExp::printTraceHeader();
unsigned reCount = 0;
for (; iter != m_rtTraceList.end(); ++iter, ++reCount) {
(*iter)->printTraceData();
gcUnprotect(*iter);
}
dataLogF("%d Regular Expressions\n", reCount);
}
m_rtTraceList.clear();
}
#endif
WatchpointSet* VM::ensureWatchpointSetForImpureProperty(UniquedStringImpl* propertyName)
{
auto result = m_impurePropertyWatchpointSets.add(propertyName, nullptr);
if (result.isNewEntry)
result.iterator->value = WatchpointSet::create(IsWatched);
return result.iterator->value.get();
}
void VM::addImpureProperty(UniquedStringImpl* propertyName)
{
if (RefPtr<WatchpointSet> watchpointSet = m_impurePropertyWatchpointSets.take(propertyName))
watchpointSet->fireAll(*this, "Impure property added");
}
template<typename Func>
static bool enableProfilerWithRespectToCount(unsigned& counter, const Func& doEnableWork)
{
bool needsToRecompile = false;
if (!counter) {
doEnableWork();
needsToRecompile = true;
}
counter++;
return needsToRecompile;
}
template<typename Func>
static bool disableProfilerWithRespectToCount(unsigned& counter, const Func& doDisableWork)
{
RELEASE_ASSERT(counter > 0);
bool needsToRecompile = false;
counter--;
if (!counter) {
doDisableWork();
needsToRecompile = true;
}
return needsToRecompile;
}
bool VM::enableTypeProfiler()
{
auto enableTypeProfiler = [this] () {
this->m_typeProfiler = makeUnique<TypeProfiler>();
this->m_typeProfilerLog = makeUnique<TypeProfilerLog>(*this);
};
return enableProfilerWithRespectToCount(m_typeProfilerEnabledCount, enableTypeProfiler);
}
bool VM::disableTypeProfiler()
{
auto disableTypeProfiler = [this] () {
this->m_typeProfiler.reset(nullptr);
this->m_typeProfilerLog.reset(nullptr);
};
return disableProfilerWithRespectToCount(m_typeProfilerEnabledCount, disableTypeProfiler);
}
bool VM::enableControlFlowProfiler()
{
auto enableControlFlowProfiler = [this] () {
this->m_controlFlowProfiler = makeUnique<ControlFlowProfiler>();
};
return enableProfilerWithRespectToCount(m_controlFlowProfilerEnabledCount, enableControlFlowProfiler);
}
bool VM::disableControlFlowProfiler()
{
auto disableControlFlowProfiler = [this] () {
this->m_controlFlowProfiler.reset(nullptr);
};
return disableProfilerWithRespectToCount(m_controlFlowProfilerEnabledCount, disableControlFlowProfiler);
}
void VM::dumpTypeProfilerData()
{
if (!typeProfiler())
return;
typeProfilerLog()->processLogEntries(*this, "VM Dump Types"_s);
typeProfiler()->dumpTypeProfilerData(*this);
}
void VM::queueMicrotask(QueuedTask&& task)
{
m_microtaskQueue.enqueue(WTFMove(task));
}
void VM::callPromiseRejectionCallback(Strong<JSPromise>& promise)
{
JSObject* callback = promise->globalObject()->unhandledRejectionCallback();
if (!callback)
return;
auto scope = DECLARE_CATCH_SCOPE(*this);
auto callData = JSC::getCallData(callback);
ASSERT(callData.type != CallData::Type::None);
MarkedArgumentBuffer args;
args.append(promise.get());
args.append(promise->result(*this));
ASSERT(!args.hasOverflowed());
call(promise->globalObject(), callback, callData, jsNull(), args);
scope.clearException();
}
void VM::didExhaustMicrotaskQueue()
{
do {
auto unhandledRejections = WTFMove(m_aboutToBeNotifiedRejectedPromises);
for (auto& promise : unhandledRejections) {
if (promise->isHandled(*this))
continue;
callPromiseRejectionCallback(promise);
if (UNLIKELY(hasPendingTerminationException()))
return;
}
} while (!m_aboutToBeNotifiedRejectedPromises.isEmpty());
}
void VM::promiseRejected(JSPromise* promise)
{
m_aboutToBeNotifiedRejectedPromises.constructAndAppend(*this, promise);
}
void VM::drainMicrotasks()
{
if (UNLIKELY(m_drainMicrotaskDelayScopeCount))
return;
if (UNLIKELY(executionForbidden()))
m_microtaskQueue.clear();
else {
do {
while (!m_microtaskQueue.isEmpty()) {
auto task = m_microtaskQueue.dequeue();
task.run();
if (UNLIKELY(hasPendingTerminationException()))
return;
if (m_onEachMicrotaskTick)
m_onEachMicrotaskTick(*this);
}
didExhaustMicrotaskQueue();
if (UNLIKELY(hasPendingTerminationException()))
return;
} while (!m_microtaskQueue.isEmpty());
}
finalizeSynchronousJSExecution();
}
void sanitizeStackForVM(VM& vm)
{
Ref thread = Thread::current();
auto& stack = thread->stack();
if (!vm.currentThreadIsHoldingAPILock())
return; // vm.lastStackTop() may not be set up correctly if JSLock is not held.
logSanitizeStack(vm);
RELEASE_ASSERT(stack.contains(vm.lastStackTop()), 0xaa10, vm.lastStackTop(), stack.origin(), stack.end());
#if ENABLE(C_LOOP)
vm.interpreter.cloopStack().sanitizeStack();
#else
sanitizeStackForVMImpl(&vm);
#endif
RELEASE_ASSERT(stack.contains(vm.lastStackTop()), 0xaa20, vm.lastStackTop(), stack.origin(), stack.end());
}
size_t VM::committedStackByteCount()
{
#if !ENABLE(C_LOOP)
// When using the C stack, we don't know how many stack pages are actually
// committed. So, we use the current stack usage as an estimate.
uint8_t* current = std::bit_cast<uint8_t*>(currentStackPointer());
uint8_t* high = std::bit_cast<uint8_t*>(Thread::current().stack().origin());
return high - current;
#else
return CLoopStack::committedByteCount();
#endif
}
#if ENABLE(C_LOOP)
bool VM::ensureStackCapacityForCLoop(Register* newTopOfStack)
{
return interpreter.cloopStack().ensureCapacityFor(newTopOfStack);
}
bool VM::isSafeToRecurseSoftCLoop() const
{
return interpreter.cloopStack().isSafeToRecurse();
}
void* VM::currentCLoopStackPointer() const
{
return interpreter.cloopStack().currentStackPointer();
}
#endif // ENABLE(C_LOOP)
#if ENABLE(EXCEPTION_SCOPE_VERIFICATION)
void VM::verifyExceptionCheckNeedIsSatisfied(unsigned recursionDepth, ExceptionEventLocation& location)
{
if (!Options::validateExceptionChecks())
return;
if (UNLIKELY(m_needExceptionCheck)) {
auto throwDepth = m_simulatedThrowPointRecursionDepth;
auto& throwLocation = m_simulatedThrowPointLocation;
dataLog(
"ERROR: Unchecked JS exception:\n"
" This scope can throw a JS exception: ", throwLocation, "\n"
" (ExceptionScope::m_recursionDepth was ", throwDepth, ")\n"
" But the exception was unchecked as of this scope: ", location, "\n"
" (ExceptionScope::m_recursionDepth was ", recursionDepth, ")\n"
"\n");
StringPrintStream out;
std::unique_ptr<StackTrace> currentTrace = StackTrace::captureStackTrace(Options::unexpectedExceptionStackTraceLimit());
if (Options::dumpSimulatedThrows()) {
out.println("The simulated exception was thrown at:");
out.println(StackTracePrinter { *m_nativeStackTraceOfLastSimulatedThrow, " " });
}
out.println("Unchecked exception detected at:");
out.println(StackTracePrinter { *currentTrace, " " });
dataLog(out.toCString());
RELEASE_ASSERT(!m_needExceptionCheck);
}
}
#endif
ScratchBuffer* VM::scratchBufferForSize(size_t size)
{
if (!size)
return nullptr;
Locker locker { m_scratchBufferLock };
if (size > m_sizeOfLastScratchBuffer) {
// Protect against a N^2 memory usage pathology by ensuring
// that at worst, we get a geometric series, meaning that the
// total memory usage is somewhere around
// max(scratch buffer size) * 4.
m_sizeOfLastScratchBuffer = size * 2;
ScratchBuffer* newBuffer = ScratchBuffer::create(m_sizeOfLastScratchBuffer);
RELEASE_ASSERT(newBuffer);
m_scratchBuffers.append(newBuffer);
}
ScratchBuffer* result = m_scratchBuffers.last();
return result;
}
void VM::clearScratchBuffers()
{
Locker locker { m_scratchBufferLock };
for (auto* scratchBuffer : m_scratchBuffers)
scratchBuffer->setActiveLength(0);
clearEntryScopeService(EntryScopeService::ClearScratchBuffers);
}
bool VM::isScratchBuffer(void* ptr)
{
Locker locker { m_scratchBufferLock };
for (auto* scratchBuffer : m_scratchBuffers) {
if (scratchBuffer->dataBuffer() == ptr)
return true;
}
return false;
}
Ref<Waiter> VM::syncWaiter()
{
return m_syncWaiter;
}
JSCell* VM::orderedHashTableDeletedValueSlow()
{
ASSERT(!m_orderedHashTableDeletedValue);
Symbol* deleted = OrderedHashMap::createDeletedValue(*this);
m_orderedHashTableDeletedValue.setWithoutWriteBarrier(deleted);
return deleted;
}
JSCell* VM::orderedHashTableSentinelSlow()
{
ASSERT(!m_orderedHashTableSentinel);
JSCell* sentinel = OrderedHashMap::createSentinel(*this);
m_orderedHashTableSentinel.setWithoutWriteBarrier(sentinel);
return sentinel;
}
JSPropertyNameEnumerator* VM::emptyPropertyNameEnumeratorSlow()
{
ASSERT(!m_emptyPropertyNameEnumerator);
PropertyNameArray propertyNames(*this, PropertyNameMode::Strings, PrivateSymbolMode::Exclude);
auto* enumerator = JSPropertyNameEnumerator::create(*this, nullptr, 0, 0, WTFMove(propertyNames));
m_emptyPropertyNameEnumerator.setWithoutWriteBarrier(enumerator);
return enumerator;
}
void VM::executeEntryScopeServicesOnEntry()
{
if (UNLIKELY(hasEntryScopeServiceRequest(EntryScopeService::FirePrimitiveGigacageEnabled))) {
m_primitiveGigacageEnabled.fireAll(*this, "Primitive gigacage disabled asynchronously");
clearEntryScopeService(EntryScopeService::FirePrimitiveGigacageEnabled);
}
// Reset the date cache between JS invocations to force the VM to
// observe time zone changes.
dateCache.resetIfNecessary();
RefPtr watchdog = this->watchdog();
if (UNLIKELY(watchdog))
watchdog->enteredVM();
#if ENABLE(SAMPLING_PROFILER)
RefPtr samplingProfiler = this->samplingProfiler();
if (UNLIKELY(samplingProfiler))
samplingProfiler->noticeVMEntry();
#endif
if (UNLIKELY(Options::useTracePoints()))
tracePoint(VMEntryScopeStart);
}
void VM::executeEntryScopeServicesOnExit()
{
if (UNLIKELY(Options::useTracePoints()))
tracePoint(VMEntryScopeEnd);
RefPtr watchdog = this->watchdog();
if (UNLIKELY(watchdog))
watchdog->exitedVM();
if (hasEntryScopeServiceRequest(EntryScopeService::PopListeners)) {
auto listeners = WTFMove(m_didPopListeners);
for (auto& listener : listeners)
listener();
clearEntryScopeService(EntryScopeService::PopListeners);
}
// Normally, we want to clear the hasTerminationRequest flag here. However, if the
// VMTraps::NeedTermination bit is still set at this point, then it means that
// VMTraps::handleTraps() has not yet been called for this termination request. As a
// result, the TerminationException has not been thrown yet. Some client code relies
// on detecting the presence of the TerminationException in order to signal that a
// termination was requested. Hence, don't clear the hasTerminationRequest flag until
// VMTraps::handleTraps() has been called, and the TerminationException is thrown.
//
// Note: perhaps there's a better way for the client to know that a termination was
// requested (after all, the request came from the client). However, this is how the
// client code currently works. Changing that will take some significant effort to hunt
// down all the places in client code that currently rely on this behavior.
if (!traps().needHandling(VMTraps::NeedTermination))
clearHasTerminationRequest();
clearScratchBuffers();
}
JSGlobalObject* VM::deprecatedVMEntryGlobalObject(JSGlobalObject* globalObject) const
{
if (entryScope)
return entryScope->globalObject();
return globalObject;
}
void VM::setCrashOnVMCreation(bool shouldCrash)
{
vmCreationShouldCrash = shouldCrash;
}
void VM::addLoopHintExecutionCounter(const JSInstruction* instruction)
{
Locker locker { m_loopHintExecutionCountLock };
auto addResult = m_loopHintExecutionCounts.add(instruction, std::pair<unsigned, std::unique_ptr<uintptr_t>>(0, nullptr));
if (addResult.isNewEntry) {
auto ptr = WTF::makeUniqueWithoutFastMallocCheck<uintptr_t>();
*ptr = 0;
addResult.iterator->value.second = WTFMove(ptr);
}
++addResult.iterator->value.first;
}
uintptr_t* VM::getLoopHintExecutionCounter(const JSInstruction* instruction)
{
Locker locker { m_loopHintExecutionCountLock };
auto iter = m_loopHintExecutionCounts.find(instruction);
return iter->value.second.get();
}
void VM::removeLoopHintExecutionCounter(const JSInstruction* instruction)
{
Locker locker { m_loopHintExecutionCountLock };
auto iter = m_loopHintExecutionCounts.find(instruction);
RELEASE_ASSERT(!!iter->value.first);
--iter->value.first;
if (!iter->value.first)
m_loopHintExecutionCounts.remove(iter);
}
void VM::beginMarking()
{
m_microtaskQueue.beginMarking();
}
template<typename Visitor>
void VM::visitAggregateImpl(Visitor& visitor)
{
m_microtaskQueue.visitAggregate(visitor);
numericStrings.visitAggregate(visitor);
m_builtinExecutables->visitAggregate(visitor);
m_regExpCache->visitAggregate(visitor);
if (heap.collectionScope() != CollectionScope::Full)
stringReplaceCache.visitAggregate(visitor);
visitor.append(structureStructure);
visitor.append(structureRareDataStructure);
visitor.append(stringStructure);
visitor.append(propertyNameEnumeratorStructure);
visitor.append(getterSetterStructure);
visitor.append(customGetterSetterStructure);
visitor.append(domAttributeGetterSetterStructure);
visitor.append(scopedArgumentsTableStructure);
visitor.append(apiWrapperStructure);
visitor.append(nativeExecutableStructure);
visitor.append(evalExecutableStructure);
visitor.append(programExecutableStructure);
visitor.append(functionExecutableStructure);
#if ENABLE(WEBASSEMBLY)
visitor.append(webAssemblyCalleeGroupStructure);
#endif
visitor.append(moduleProgramExecutableStructure);
visitor.append(regExpStructure);
visitor.append(symbolStructure);
visitor.append(symbolTableStructure);
for (auto& structure : immutableButterflyStructures)
visitor.append(structure);
visitor.append(sourceCodeStructure);
visitor.append(scriptFetcherStructure);
visitor.append(scriptFetchParametersStructure);
visitor.append(structureChainStructure);
visitor.append(sparseArrayValueMapStructure);
visitor.append(templateObjectDescriptorStructure);
visitor.append(unlinkedFunctionExecutableStructure);
visitor.append(unlinkedProgramCodeBlockStructure);
visitor.append(unlinkedEvalCodeBlockStructure);
visitor.append(unlinkedFunctionCodeBlockStructure);
visitor.append(unlinkedModuleProgramCodeBlockStructure);
visitor.append(propertyTableStructure);
visitor.append(functionRareDataStructure);
visitor.append(exceptionStructure);
visitor.append(programCodeBlockStructure);
visitor.append(moduleProgramCodeBlockStructure);
visitor.append(evalCodeBlockStructure);
visitor.append(functionCodeBlockStructure);
visitor.append(hashMapBucketSetStructure);
visitor.append(hashMapBucketMapStructure);
visitor.append(bigIntStructure);
visitor.append(m_emptyPropertyNameEnumerator);
visitor.append(m_orderedHashTableDeletedValue);
visitor.append(m_orderedHashTableSentinel);
visitor.append(m_fastCanConstructBoundExecutable);
visitor.append(m_slowCanConstructBoundExecutable);
visitor.append(lastCachedString);
visitor.append(heapBigIntConstantOne);
}
DEFINE_VISIT_AGGREGATE(VM);
void VM::addDebugger(Debugger& debugger)
{
m_debuggers.append(&debugger);
}
void VM::removeDebugger(Debugger& debugger)
{
m_debuggers.remove(&debugger);
}
void VM::performOpportunisticallyScheduledTasks(MonotonicTime deadline, OptionSet<SchedulerOptions> options)
{
constexpr bool verbose = false;
dataLogLnIf(verbose, "[OPPORTUNISTIC TASK] QUERY", " signpost:(", JSC::activeJSGlobalObjectSignpostIntervalCount.load(), ")");
JSLockHolder locker { *this };
if (deferredWorkTimer->hasImminentlyScheduledWork()) {
dataLogLnIf(verbose, "[OPPORTUNISTIC TASK] GaveUp: DeferredWorkTimer hasImminentlyScheduledWork signpost:(", JSC::activeJSGlobalObjectSignpostIntervalCount.load(), ")");
return;
}
SetForScope insideOpportunisticTaskScope { heap.m_isInOpportunisticTask, true };
[&] {
auto secondsSinceEpoch = ApproximateTime::now().secondsSinceEpoch();
auto remainingTime = deadline.secondsSinceEpoch() - secondsSinceEpoch;
if (options.contains(SchedulerOptions::HasImminentlyScheduledWork)) {
dataLogLnIf(verbose, "[OPPORTUNISTIC TASK] GaveUp: HasImminentlyScheduledWork ", remainingTime, " signpost:(", JSC::activeJSGlobalObjectSignpostIntervalCount.load(), ")");
return;
}
static constexpr auto minimumDelayBeforeOpportunisticFullGC = 30_ms;
static constexpr auto minimumDelayBeforeOpportunisticEdenGC = 10_ms;
static constexpr auto extraDurationToAvoidExceedingDeadlineDuringFullGC = 2_ms;
static constexpr auto extraDurationToAvoidExceedingDeadlineDuringEdenGC = 1_ms;
auto timeSinceFinishingLastFullGC = secondsSinceEpoch - heap.m_lastFullGCEndTime.secondsSinceEpoch();
if (timeSinceFinishingLastFullGC > minimumDelayBeforeOpportunisticFullGC && heap.m_shouldDoOpportunisticFullCollection && heap.m_totalBytesVisitedAfterLastFullCollect) {
auto estimatedGCDuration = (heap.lastFullGCLength() * heap.m_totalBytesVisited) / heap.m_totalBytesVisitedAfterLastFullCollect;
if (estimatedGCDuration + extraDurationToAvoidExceedingDeadlineDuringFullGC < remainingTime) {
dataLogLnIf(verbose, "[OPPORTUNISTIC TASK] FULL", " signpost:(", JSC::activeJSGlobalObjectSignpostIntervalCount.load(), ")");
heap.collectSync(CollectionScope::Full);
heap.m_shouldDoOpportunisticFullCollection = false;
return;
}
}
auto timeSinceLastGC = secondsSinceEpoch - std::max(heap.m_lastGCEndTime, heap.m_currentGCStartTime).secondsSinceEpoch();
if (timeSinceLastGC > minimumDelayBeforeOpportunisticEdenGC && heap.totalBytesAllocatedThisCycle() && heap.m_bytesAllocatedBeforeLastEdenCollect) {
auto estimatedGCDuration = (heap.lastEdenGCLength() * heap.totalBytesAllocatedThisCycle()) / heap.m_bytesAllocatedBeforeLastEdenCollect;
if (estimatedGCDuration + extraDurationToAvoidExceedingDeadlineDuringEdenGC < remainingTime) {
dataLogLnIf(verbose, "[OPPORTUNISTIC TASK] EDEN: ", timeSinceFinishingLastFullGC, " ", timeSinceLastGC, " ", heap.m_shouldDoOpportunisticFullCollection, " ", heap.m_totalBytesVisitedAfterLastFullCollect, " ", heap.totalBytesAllocatedThisCycle(), " ", heap.m_bytesAllocatedBeforeLastEdenCollect, " ", heap.m_lastGCEndTime, " ", heap.m_currentGCStartTime, " ", (heap.lastFullGCLength() * heap.m_totalBytesVisited) / heap.m_totalBytesVisitedAfterLastFullCollect, " ", remainingTime, " ", (heap.lastEdenGCLength() * heap.totalBytesAllocatedThisCycle()) / heap.m_bytesAllocatedBeforeLastEdenCollect, " signpost:(", JSC::activeJSGlobalObjectSignpostIntervalCount.load(), ")");
heap.collectSync(CollectionScope::Eden);
heap.m_shouldDoOpportunisticFullCollection = false;
return;
}
}
dataLogLnIf(verbose, "[OPPORTUNISTIC TASK] GaveUp: nothing met. ", timeSinceFinishingLastFullGC, " ", timeSinceLastGC, " ", heap.m_shouldDoOpportunisticFullCollection, " ", heap.m_totalBytesVisitedAfterLastFullCollect, " ", heap.totalBytesAllocatedThisCycle(), " ", heap.m_bytesAllocatedBeforeLastEdenCollect, " ", heap.m_lastGCEndTime, " ", heap.m_currentGCStartTime, " ", (heap.lastFullGCLength() * heap.m_totalBytesVisited) / heap.m_totalBytesVisitedAfterLastFullCollect, " ", remainingTime, " ", (heap.lastEdenGCLength() * heap.totalBytesAllocatedThisCycle()) / heap.m_bytesAllocatedBeforeLastEdenCollect, " signpost:(", JSC::activeJSGlobalObjectSignpostIntervalCount.load(), ")");
}();
heap.sweeper().doWorkUntil(*this, deadline);
}
void QueuedTask::run()
{
if (!m_job.isObject())
return;
JSObject* job = jsCast<JSObject*>(m_job);
JSGlobalObject* globalObject = job->globalObject();
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
runJSMicrotask(globalObject, m_identifier, job, m_arguments[0], m_arguments[1], m_arguments[2], m_arguments[3]);
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
}
template<typename Visitor>
void MicrotaskQueue::visitAggregateImpl(Visitor& visitor)
{
// Because content in the queue will not be changed, we need to scan it only once per an entry during one GC cycle.
// We record the previous scan's index, and restart scanning again in CollectorPhase::FixPoint from that.
// When new GC phase begins, this cursor is reset to zero (beginMarking). This optimization is introduced because
// some of application have massive size of MicrotaskQueue depth. For example, in parallel-promises-es2015-native.js
// benchmark, it becomes 251670 at most.
// This cursor is adjusted when an entry is dequeued. And we do not use any locking here, and that's fine: these
// values are read by GC when CollectorPhase::FixPoint and CollectorPhase::Begin, and both suspend the mutator, thus,
// there is no concurrency issue.
for (auto iterator = m_queue.begin() + m_markedBefore, end = m_queue.end(); iterator != end; ++iterator) {
auto& task = *iterator;
visitor.appendUnbarriered(task.m_job);
visitor.appendUnbarriered(task.m_arguments, QueuedTask::maxArguments);
}
m_markedBefore = m_queue.size();
}
DEFINE_VISIT_AGGREGATE(MicrotaskQueue);
void VM::invalidateStructureChainIntegrity(StructureChainIntegrityEvent)
{
if (auto* megamorphicCache = this->megamorphicCache())
megamorphicCache->bumpEpoch();
}
VM::DrainMicrotaskDelayScope::DrainMicrotaskDelayScope(VM& vm)
: m_vm(&vm)
{
increment();
}
VM::DrainMicrotaskDelayScope::~DrainMicrotaskDelayScope()
{
decrement();
}
VM::DrainMicrotaskDelayScope::DrainMicrotaskDelayScope(const VM::DrainMicrotaskDelayScope& other)
: m_vm(other.m_vm)
{
increment();
}
VM::DrainMicrotaskDelayScope& VM::DrainMicrotaskDelayScope::operator=(const VM::DrainMicrotaskDelayScope& other)
{
if (this == &other)
return *this;
decrement();
m_vm = other.m_vm;
increment();
return *this;
}
VM::DrainMicrotaskDelayScope& VM::DrainMicrotaskDelayScope::operator=(VM::DrainMicrotaskDelayScope&& other)
{
decrement();
m_vm = std::exchange(other.m_vm, nullptr);
increment();
return *this;
}
void VM::DrainMicrotaskDelayScope::increment()
{
if (m_vm)
++m_vm->m_drainMicrotaskDelayScopeCount;
}
void VM::DrainMicrotaskDelayScope::decrement()
{
if (!m_vm)
return;
ASSERT(m_vm->m_drainMicrotaskDelayScopeCount);
if (!--m_vm->m_drainMicrotaskDelayScopeCount) {
JSLockHolder locker(*m_vm);
m_vm->drainMicrotasks();
}
}
} // namespace JSC
|