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
|
/*
* Copyright (C) 2011-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.
*
* 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 "Options.h"
#include "CPU.h"
#include "JITOperationValidation.h"
#include "LLIntCommon.h"
#include "MacroAssembler.h"
#include "MinimumReservedZoneSize.h"
#include <algorithm>
#include <limits>
#include <mutex>
#include <stdlib.h>
#include <string.h>
#include <wtf/ASCIICType.h>
#include <wtf/BitSet.h>
#include <wtf/Compiler.h>
#include <wtf/DataLog.h>
#include <wtf/Gigacage.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/NumberOfCores.h>
#include <wtf/StdLibExtras.h>
#include <wtf/TranslatedProcess.h>
#include <wtf/text/MakeString.h>
#include <wtf/text/StringBuilder.h>
#include <wtf/threads/Signals.h>
#if OS(DARWIN)
#include <wtf/darwin/OSLogPrintStream.h>
#endif
#if PLATFORM(COCOA)
#include <crt_externs.h>
#endif
#if ENABLE(JIT_CAGE)
#include <machine/cpu_capabilities.h>
#include <wtf/cocoa/Entitlements.h>
#endif
#if OS(LINUX)
#include <unistd.h>
extern "C" char **environ;
#endif
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
namespace JSC {
bool useOSLogOptionHasChanged = false;
Options::SandboxPolicy Options::machExceptionHandlerSandboxPolicy = Options::SandboxPolicy::Unknown;
namespace OptionsHelper {
// The purpose of Metadata is to hold transient info needed during initialization of
// Options. It will be released in Options::finalize(), and will not be kept during
// VM run time. For now, the only field it contains is a copy of Options defaults
// which are only used to provide more info for Options dumps.
struct Metadata {
// This struct does not need to be TZONE_ALLOCATED because it is only used for transient memory
// during Options initialization, and will not be re-allocated thereafter. See comment above.
WTF_MAKE_FAST_ALLOCATED(Metadata);
public:
OptionsStorage defaults;
};
static LazyNeverDestroyed<std::unique_ptr<Metadata>> g_metadata;
static LazyNeverDestroyed<WTF::BitSet<NumberOfOptions>> g_optionWasOverridden;
struct ConstMetaData {
ASCIILiteral name;
ASCIILiteral description;
Options::Type type;
Options::Availability availability;
uint16_t offsetOfOption;
};
// Realize the names for each of the options:
static const ConstMetaData g_constMetaData[NumberOfOptions] = {
#define FILL_OPTION_INFO(type_, name_, defaultValue_, availability_, description_) \
{ #name_ ## _s, description_, Options::Type::type_, Options::Availability::availability_, offsetof(OptionsStorage, name_) },
FOR_EACH_JSC_OPTION(FILL_OPTION_INFO)
#undef FILL_OPTION_INFO
};
class Option {
public:
void dump(StringBuilder&) const;
bool operator==(const Option&) const;
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
ASCIILiteral name() const { return g_constMetaData[m_id].name; }
ASCIILiteral description() const { return g_constMetaData[m_id].description; }
Options::Type type() const { return g_constMetaData[m_id].type; }
Options::Availability availability() const { return g_constMetaData[m_id].availability; }
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
Option(Options::ID id, void* addressOfValue)
: m_id(id)
{
initValue(addressOfValue);
}
void initValue(void* addressOfValue);
Options::ID m_id;
union {
bool m_bool;
unsigned m_unsigned;
double m_double;
int32_t m_int32;
size_t m_size;
OptionRange m_optionRange;
const char* m_optionString;
GCLogging::Level m_gcLogLevel;
OSLogType m_osLogType;
};
};
static void initialize()
{
g_optionWasOverridden.construct();
// Make a transient copy of the default option values into g_metadata before they get
// modified. The defaults are only needed to provide more info when dumping options.
// g_metadata will be released in Options::finalize() (see releaseMetadata()).
g_metadata.construct();
auto metadata = makeUnique<Metadata>();
memcpy(&metadata->defaults, &g_jscConfig.options, sizeof(OptionsStorage));
g_metadata.get() = WTFMove(metadata);
}
static void releaseMetadata()
{
g_metadata.get() = nullptr;
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
static const Option defaultFor(Options::ID id)
{
auto offset = g_constMetaData[id].offsetOfOption;
void* addressOfDefault = reinterpret_cast<uint8_t*>(&g_metadata.get()->defaults) + offset;
return Option(id, addressOfDefault);
}
inline static void* addressOfOption(Options::ID id)
{
auto offset = g_constMetaData[id].offsetOfOption;
return reinterpret_cast<uint8_t*>(&g_jscConfig.options) + offset;
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
static const Option optionFor(Options::ID id)
{
return Option(id, addressOfOption(id));
}
inline static bool hasMetadata()
{
return !!g_metadata.get();
}
inline static bool wasOverridden(Options::ID id)
{
ASSERT(id < NumberOfOptions);
return g_optionWasOverridden->get(id);
}
inline static void setWasOverridden(Options::ID id)
{
ASSERT(id < NumberOfOptions);
g_optionWasOverridden->set(id);
}
} // namespace OptionsHelper
template<typename T>
std::optional<T> parse(const char* string);
template<>
std::optional<OptionsStorage::Bool> parse(const char* string)
{
auto span = unsafeSpan(string);
if (equalLettersIgnoringASCIICase(span, "true"_s) || equalLettersIgnoringASCIICase(span, "yes"_s) || !strcmp(string, "1"))
return true;
if (equalLettersIgnoringASCIICase(span, "false"_s) || equalLettersIgnoringASCIICase(span, "no"_s) || !strcmp(string, "0"))
return false;
return std::nullopt;
}
template<>
std::optional<OptionsStorage::Int32> parse(const char* string)
{
int32_t value;
if (sscanf(string, "%d", &value) == 1)
return value;
return std::nullopt;
}
template<>
std::optional<OptionsStorage::Unsigned> parse(const char* string)
{
unsigned value;
if (sscanf(string, "%u", &value) == 1)
return value;
return std::nullopt;
}
#if CPU(ADDRESS64) || OS(DARWIN)
template<>
std::optional<OptionsStorage::Size> parse(const char* string)
{
size_t value;
if (sscanf(string, "%zu", &value) == 1)
return value;
return std::nullopt;
}
#endif // CPU(ADDRESS64) || OS(DARWIN)
template<>
std::optional<OptionsStorage::Double> parse(const char* string)
{
double value;
if (sscanf(string, "%lf", &value) == 1)
return value;
return std::nullopt;
}
template<>
std::optional<OptionsStorage::OptionRange> parse(const char* string)
{
OptionRange range;
if (range.init(string))
return range;
return std::nullopt;
}
template<>
std::optional<OptionsStorage::OptionString> parse(const char* string)
{
const char* value = nullptr;
if (!strlen(string))
return value;
// FIXME <https://webkit.org/b/169057>: This could leak if this option is set more than once.
// Given that Options are typically used for testing, this isn't considered to be a problem.
value = WTF::fastStrDup(string);
return value;
}
template<>
std::optional<OptionsStorage::GCLogLevel> parse(const char* string)
{
auto span = unsafeSpan(string);
if (equalLettersIgnoringASCIICase(span, "none"_s) || equalLettersIgnoringASCIICase(span, "no"_s) || equalLettersIgnoringASCIICase(span, "false"_s) || !strcmp(string, "0"))
return GCLogging::None;
if (equalLettersIgnoringASCIICase(span, "basic"_s) || equalLettersIgnoringASCIICase(span, "yes"_s) || equalLettersIgnoringASCIICase(span, "true"_s) || !strcmp(string, "1"))
return GCLogging::Basic;
if (equalLettersIgnoringASCIICase(span, "verbose"_s) || !strcmp(string, "2"))
return GCLogging::Verbose;
return std::nullopt;
}
template<>
std::optional<OptionsStorage::OSLogType> parse(const char* string)
{
std::optional<OptionsStorage::OSLogType> result;
auto span = unsafeSpan(string);
if (equalLettersIgnoringASCIICase(span, "none"_s) || equalLettersIgnoringASCIICase(span, "false"_s) || !strcmp(string, "0"))
result = OSLogType::None;
else if (equalLettersIgnoringASCIICase(span, "true"_s) || !strcmp(string, "1"))
result = OSLogType::Error;
else if (equalLettersIgnoringASCIICase(span, "default"_s))
result = OSLogType::Default;
else if (equalLettersIgnoringASCIICase(span, "info"_s))
result = OSLogType::Info;
else if (equalLettersIgnoringASCIICase(span, "debug"_s))
result = OSLogType::Debug;
else if (equalLettersIgnoringASCIICase(span, "error"_s))
result = OSLogType::Error;
else if (equalLettersIgnoringASCIICase(span, "fault"_s))
result = OSLogType::Fault;
if (result && result.value() != Options::useOSLog())
useOSLogOptionHasChanged = true;
return result;
}
#if OS(DARWIN)
static os_log_type_t asDarwinOSLogType(OSLogType type)
{
switch (type) {
case OSLogType::None:
RELEASE_ASSERT_NOT_REACHED();
case OSLogType::Default:
return OS_LOG_TYPE_DEFAULT;
case OSLogType::Info:
return OS_LOG_TYPE_INFO;
case OSLogType::Debug:
return OS_LOG_TYPE_DEBUG;
case OSLogType::Error:
return OS_LOG_TYPE_ERROR;
case OSLogType::Fault:
return OS_LOG_TYPE_FAULT;
}
RELEASE_ASSERT_NOT_REACHED();
return OS_LOG_TYPE_DEFAULT;
}
static void initializeDatafileToUseOSLog()
{
static bool alreadyInitialized = false;
RELEASE_ASSERT(!alreadyInitialized);
WTF::setDataFile(OSLogPrintStream::open("com.apple.JavaScriptCore", "DataLog", asDarwinOSLogType(Options::useOSLog())));
alreadyInitialized = true;
// Make sure no one jumped here for nefarious reasons...
RELEASE_ASSERT(Options::useOSLog() != OSLogType::None);
}
#endif // OS(DARWIN)
static ASCIILiteral asString(OSLogType type)
{
switch (type) {
case OSLogType::None:
return "none"_s;
case OSLogType::Default:
return "default"_s;
case OSLogType::Info:
return "info"_s;
case OSLogType::Debug:
return "debug"_s;
case OSLogType::Error:
return "error"_s;
case OSLogType::Fault:
return "fault"_s;
}
RELEASE_ASSERT_NOT_REACHED();
return nullptr;
}
bool Options::isAvailable(Options::ID id, Options::Availability availability)
{
if (availability == Availability::Restricted)
return g_jscConfig.restrictedOptionsEnabled;
ASSERT(availability == Availability::Configurable);
UNUSED_PARAM(id);
#if !defined(NDEBUG)
if (id == maxSingleAllocationSizeID)
return true;
#endif
#if ENABLE(ASSEMBLER) && (OS(LINUX) || OS(DARWIN))
if (id == logJITCodeForPerfID)
return true;
#endif
if (id == traceLLIntExecutionID)
return !!LLINT_TRACING;
if (id == traceLLIntSlowPathID)
return !!LLINT_TRACING;
if (id == traceWasmLLIntExecutionID)
return !!LLINT_TRACING;
if (id == validateVMEntryCalleeSavesID)
return !!ASSERT_ENABLED;
return false;
}
#if !PLATFORM(COCOA)
template<typename T>
bool overrideOptionWithHeuristic(T& variable, Options::ID id, const char* name, Options::Availability availability)
{
bool available = (availability == Options::Availability::Normal)
|| Options::isAvailable(id, availability);
const char* stringValue = getenv(name);
if (!stringValue)
return false;
if (available) {
std::optional<T> value = parse<T>(stringValue);
if (value) {
variable = value.value();
return true;
}
}
fprintf(stderr, "WARNING: failed to parse %s=%s\n", name, stringValue);
return false;
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
bool Options::overrideAliasedOptionWithHeuristic(const char* name)
{
const char* stringValue = getenv(name);
if (!stringValue)
return false;
auto aliasedOption = makeString(unsafeSpan(&name[4]), '=', unsafeSpan(stringValue));
if (Options::setOption(aliasedOption.utf8().data()))
return true;
fprintf(stderr, "WARNING: failed to parse %s=%s\n", name, stringValue);
return false;
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
#endif // !PLATFORM(COCOA)
unsigned Options::computeNumberOfWorkerThreads(int maxNumberOfWorkerThreads, int minimum)
{
int cpusToUse = std::min(kernTCSMAwareNumberOfProcessorCores(), maxNumberOfWorkerThreads);
// Be paranoid, it is the OS we're dealing with, after all.
ASSERT(cpusToUse >= 1);
return std::max(cpusToUse, minimum);
}
int32_t Options::computePriorityDeltaOfWorkerThreads(int32_t twoCorePriorityDelta, int32_t multiCorePriorityDelta)
{
if (kernTCSMAwareNumberOfProcessorCores() <= 2)
return twoCorePriorityDelta;
return multiCorePriorityDelta;
}
unsigned Options::computeNumberOfGCMarkers(unsigned maxNumberOfGCMarkers)
{
return computeNumberOfWorkerThreads(maxNumberOfGCMarkers);
}
bool Options::defaultTCSMValue()
{
return true;
}
const char* const OptionRange::s_nullRangeStr = "<null>";
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
bool OptionRange::init(const char* rangeString)
{
// rangeString should be in the form of [!]<low>[:<high>]
// where low and high are unsigned
bool invert = false;
if (!rangeString) {
m_state = InitError;
return false;
}
if (!strcmp(rangeString, s_nullRangeStr)) {
m_state = Uninitialized;
return true;
}
const char* p = rangeString;
if (*p == '!') {
invert = true;
p++;
}
int scanResult = sscanf(p, " %u:%u", &m_lowLimit, &m_highLimit);
if (!scanResult || scanResult == EOF) {
m_state = InitError;
return false;
}
if (scanResult == 1)
m_highLimit = m_lowLimit;
if (m_lowLimit > m_highLimit) {
m_state = InitError;
return false;
}
// FIXME <https://webkit.org/b/169057>: This could leak if this particular option is set more than once.
// Given that these options are used for testing, this isn't considered to be problem.
m_rangeString = WTF::fastStrDup(rangeString);
m_state = invert ? Inverted : Normal;
return true;
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
bool OptionRange::isInRange(unsigned count) const
{
if (m_state < Normal)
return true;
if ((m_lowLimit <= count) && (count <= m_highLimit))
return m_state == Normal ? true : false;
return m_state == Normal ? false : true;
}
void OptionRange::dump(PrintStream& out) const
{
out.print(m_rangeString);
}
static void scaleJITPolicy()
{
auto& scaleFactor = Options::jitPolicyScale();
if (scaleFactor > 1.0)
scaleFactor = 1.0;
else if (scaleFactor < 0.0)
scaleFactor = 0.0;
auto scaleOption = [&] (int32_t& optionValue, int32_t minValue) {
optionValue *= scaleFactor;
optionValue = std::max(optionValue, minValue);
};
scaleOption(Options::thresholdForJITAfterWarmUp(), 0);
scaleOption(Options::thresholdForJITSoon(), 0);
scaleOption(Options::thresholdForOptimizeAfterWarmUp(), 1);
scaleOption(Options::thresholdForOptimizeAfterLongWarmUp(), 1);
scaleOption(Options::thresholdForOptimizeSoon(), 1);
scaleOption(Options::thresholdForFTLOptimizeSoon(), 2);
scaleOption(Options::thresholdForFTLOptimizeAfterWarmUp(), 2);
scaleOption(Options::thresholdForBBQOptimizeAfterWarmUp(), 0);
scaleOption(Options::thresholdForBBQOptimizeSoon(), 0);
scaleOption(Options::thresholdForOMGOptimizeAfterWarmUp(), 1);
scaleOption(Options::thresholdForOMGOptimizeSoon(), 1);
}
#if OS(DARWIN)
static void disableAllSignalHandlerBasedOptions();
#endif
static void overrideDefaults()
{
#if OS(DARWIN)
if (Options::machExceptionHandlerSandboxPolicy == Options::SandboxPolicy::Block)
disableAllSignalHandlerBasedOptions();
#endif
#if !PLATFORM(IOS_FAMILY)
if (WTF::numberOfProcessorCores() < 4)
#endif
{
Options::maximumMutatorUtilization() = 0.6;
Options::concurrentGCMaxHeadroom() = 1.4;
Options::minimumGCPauseMS() = 1;
Options::useStochasticMutatorScheduler() = false;
if (WTF::numberOfProcessorCores() <= 1)
Options::gcIncrementScale() = 1;
else
Options::gcIncrementScale() = 0;
}
#if OS(DARWIN) && CPU(ARM64)
Options::numberOfGCMarkers() = std::min<unsigned>(4, kernTCSMAwareNumberOfProcessorCores());
Options::numberOfDFGCompilerThreads() = std::min<unsigned>(3, kernTCSMAwareNumberOfProcessorCores());
Options::numberOfFTLCompilerThreads() = std::min<unsigned>(3, kernTCSMAwareNumberOfProcessorCores());
#endif
#if OS(LINUX) && CPU(ARM)
Options::maximumFunctionForCallInlineCandidateBytecodeCostForDFG() = 77;
Options::maximumOptimizationCandidateBytecodeCost() = 42403;
Options::maximumFunctionForClosureCallInlineCandidateBytecodeCostForDFG() = 68;
Options::maximumInliningCallerBytecodeCost() = 9912;
Options::maximumInliningDepth() = 8;
Options::maximumInliningRecursion() = 3;
#endif
#if USE(BMALLOC_MEMORY_FOOTPRINT_API)
// On iOS and conditionally Linux, we control heap growth using process memory footprint. Therefore these values can be agressive.
Options::smallHeapRAMFraction() = 0.8;
Options::mediumHeapRAMFraction() = 0.9;
#endif
#if !ENABLE(SIGNAL_BASED_VM_TRAPS)
Options::usePollingTraps() = true;
#endif
#if !ENABLE(WEBASSEMBLY)
Options::useWasmFastMemory() = false;
Options::useWasmFaultSignalHandler() = false;
#endif
#if !HAVE(MACH_EXCEPTIONS)
Options::useMachForExceptions() = false;
#endif
#if ASAN_ENABLED
// This is a heuristic because ASAN builds are memory hogs in terms of stack frame usage.
// So, we need a much larger ReservedZoneSize to allow stack overflow handlers to execute.
Options::reservedZoneSize() = 3 * Options::reservedZoneSize();
#endif
}
bool Options::setAllJITCodeValidations(const char* valueStr)
{
auto value = parse<OptionsStorage::Bool>(valueStr);
if (!value)
return false;
setAllJITCodeValidations(value.value());
return true;
}
void Options::setAllJITCodeValidations(bool value)
{
Options::validateDFGClobberize() = value;
Options::validateDFGExceptionHandling() = value;
Options::validateDoesGC() = value;
Options::useJITAsserts() = value;
}
static inline void disableAllWasmJITOptions()
{
Options::useLLInt() = true;
Options::useWasmJIT() = false;
Options::useBBQJIT() = false;
Options::useOMGJIT() = false;
Options::useWasmSIMD() = false;
Options::dumpWasmDisassembly() = false;
Options::dumpBBQDisassembly() = false;
Options::dumpOMGDisassembly() = false;
}
static inline void disableAllWasmOptions()
{
disableAllWasmJITOptions();
Options::useWasm() = false;
Options::useWasmIPInt() = false;
Options::useWasmLLInt() = false;
Options::failToCompileWasmCode() = true;
Options::useWasmFastMemory() = false;
Options::useWasmFaultSignalHandler() = false;
Options::numberOfWasmCompilerThreads() = 0;
// SIMD is already disabled by JITOptions
Options::useWasmRelaxedSIMD() = false;
Options::useWasmTailCalls() = false;
}
static inline void disableAllJITOptions()
{
Options::useLLInt() = true;
Options::useJIT() = false;
Options::useWasmJIT() = false;
disableAllWasmJITOptions();
Options::useBaselineJIT() = false;
Options::useDFGJIT() = false;
Options::useFTLJIT() = false;
Options::useDOMJIT() = false;
Options::useRegExpJIT() = false;
Options::useJITCage() = false;
Options::useConcurrentJIT() = false;
Options::usePollingTraps() = true;
Options::dumpDisassembly() = false;
Options::asyncDisassembly() = false;
Options::dumpBaselineDisassembly() = false;
Options::dumpDFGDisassembly() = false;
Options::dumpFTLDisassembly() = false;
Options::dumpRegExpDisassembly() = false;
Options::needDisassemblySupport() = false;
}
#if OS(DARWIN)
static void disableAllSignalHandlerBasedOptions()
{
Options::usePollingTraps() = true;
Options::useSharedArrayBuffer() = false;
Options::useWasmFastMemory() = false;
Options::useWasmFaultSignalHandler() = false;
}
#endif
void Options::executeDumpOptions()
{
if (LIKELY(!Options::dumpOptions()))
return;
DumpLevel level = static_cast<DumpLevel>(Options::dumpOptions());
if (level > DumpLevel::Verbose)
level = DumpLevel::Verbose;
ASCIILiteral title;
switch (level) {
case DumpLevel::None:
break;
case DumpLevel::Overridden:
title = "Modified JSC options:"_s;
break;
case DumpLevel::All:
title = "All JSC options:"_s;
break;
case DumpLevel::Verbose:
title = "All JSC options with descriptions:"_s;
break;
}
StringBuilder builder;
dumpAllOptions(builder, level, title, nullptr, " "_s, "\n"_s, DumpDefaults);
dataLog(builder.toString());
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
void Options::notifyOptionsChanged()
{
AllowUnfinalizedAccessScope scope;
unsigned thresholdForGlobalLexicalBindingEpoch = Options::thresholdForGlobalLexicalBindingEpoch();
if (thresholdForGlobalLexicalBindingEpoch == 0 || thresholdForGlobalLexicalBindingEpoch == 1)
Options::thresholdForGlobalLexicalBindingEpoch() = UINT_MAX;
#if !ENABLE(JIT)
Options::useJIT() = false;
Options::useWasmJIT() = false;
#endif
#if !ENABLE(CONCURRENT_JS)
Options::useConcurrentJIT() = false;
#endif
#if !ENABLE(YARR_JIT)
Options::useRegExpJIT() = false;
#endif
#if !ENABLE(DFG_JIT)
Options::useDFGJIT() = false;
Options::useFTLJIT() = false;
#endif
#if !ENABLE(FTL_JIT)
Options::useFTLJIT() = false;
#endif
#if CPU(RISCV64)
// On RISCV64, JIT levels are enabled at build-time to simplify building JSC, avoiding
// otherwise rare combinations of build-time configuration. FTL on RISCV64 is disabled
// at runtime for now, until it gets int a proper working state.
// https://webkit.org/b/239707
Options::useFTLJIT() = false;
#endif
#if !CPU(X86_64) && !CPU(ARM64)
Options::useConcurrentGC() = false;
Options::forceUnlinkedDFG() = false;
Options::useWasmSIMD() = false;
#if !CPU(ARM_THUMB2)
Options::useBBQJIT() = false;
#endif
#endif
#if !CPU(ARM64)
Options::useRandomizingExecutableIslandAllocation() = false;
#endif
Options::useDataICInFTL() = false; // Currently, it is not completed. Disable forcefully.
Options::forceUnlinkedDFG() = false; // Currently, IC is rapidly changing. We disable this until we get the final form of Data IC.
if (!Options::allowDoubleShape())
Options::useJIT() = false; // We don't support JIT with !allowDoubleShape. So disable it.
if (!Options::useWasm())
disableAllWasmOptions();
if (!Options::useJIT())
Options::useWasmJIT() = false;
if (!Options::useWasmJIT())
disableAllWasmJITOptions();
if (!Options::useWasmLLInt() && !Options::useWasmIPInt())
Options::thresholdForBBQOptimizeAfterWarmUp() = 0; // Trigger immediate BBQ tier up.
// At initialization time, we may decide that useJIT should be false for any
// number of reasons (including failing to allocate JIT memory), and therefore,
// will / should not be able to enable any JIT related services.
if (!Options::useJIT()) {
disableAllJITOptions();
#if OS(DARWIN)
// If we don't know what the sandbox policy is on mach exception handler use is, we'll
// take the default behavior of blocking its use if the JIT is disabled. JIT disablement
// is a good proxy indicator for when mach exception handler use would also be blocked.
if (machExceptionHandlerSandboxPolicy == SandboxPolicy::Unknown)
disableAllSignalHandlerBasedOptions();
#endif
} else {
if (WTF::isX86BinaryRunningOnARM()) {
Options::useBaselineJIT() = false;
Options::useDFGJIT() = false;
Options::useFTLJIT() = false;
}
if (Options::dumpDisassembly()
|| Options::asyncDisassembly()
|| Options::dumpBaselineDisassembly()
|| Options::dumpDFGDisassembly()
|| Options::dumpFTLDisassembly()
|| Options::dumpRegExpDisassembly()
|| Options::dumpWasmDisassembly()
|| Options::dumpBBQDisassembly()
|| Options::dumpOMGDisassembly())
Options::needDisassemblySupport() = true;
if (Options::logJIT()
|| Options::needDisassemblySupport()
|| Options::dumpBytecodeAtDFGTime()
|| Options::dumpGraphAtEachPhase()
|| Options::dumpDFGGraphAtEachPhase()
|| Options::dumpDFGFTLGraphAtEachPhase()
|| Options::dumpB3GraphAtEachPhase()
|| Options::dumpAirGraphAtEachPhase()
|| Options::verboseCompilation()
|| Options::verboseFTLCompilation()
|| Options::logCompilationChanges()
|| Options::validateGraph()
|| Options::validateGraphAtEachPhase()
|| Options::verboseOSR()
|| Options::verboseCompilationQueue()
|| Options::reportCompileTimes()
|| Options::reportBaselineCompileTimes()
|| Options::reportDFGCompileTimes()
|| Options::reportFTLCompileTimes()
|| Options::logPhaseTimes()
|| Options::verboseCFA()
|| Options::verboseDFGFailure()
|| Options::verboseFTLFailure())
Options::alwaysComputeHash() = true;
if (OptionsHelper::wasOverridden(jitPolicyScaleID))
scaleJITPolicy();
if (Options::forceEagerCompilation()) {
Options::thresholdForJITAfterWarmUp() = 10;
Options::thresholdForJITSoon() = 10;
Options::thresholdForOptimizeAfterWarmUp() = 20;
Options::thresholdForOptimizeAfterLongWarmUp() = 20;
Options::thresholdForOptimizeSoon() = 20;
Options::thresholdForFTLOptimizeAfterWarmUp() = 20;
Options::thresholdForFTLOptimizeSoon() = 20;
Options::maximumEvalCacheableSourceLength() = 150000;
Options::useConcurrentJIT() = false;
}
// Compute the maximum value of the reoptimization retry counter. This is simply
// the largest value at which we don't overflow the execute counter, when using it
// to left-shift the execution counter by this amount. Currently the value ends
// up being 18, so this loop is not so terrible; it probably takes up ~100 cycles
// total on a 32-bit processor.
Options::reoptimizationRetryCounterMax() = 0;
while ((static_cast<int64_t>(Options::thresholdForOptimizeAfterLongWarmUp()) << (Options::reoptimizationRetryCounterMax() + 1)) <= static_cast<int64_t>(std::numeric_limits<int32_t>::max()))
Options::reoptimizationRetryCounterMax()++;
ASSERT((static_cast<int64_t>(Options::thresholdForOptimizeAfterLongWarmUp()) << Options::reoptimizationRetryCounterMax()) > 0);
ASSERT((static_cast<int64_t>(Options::thresholdForOptimizeAfterLongWarmUp()) << Options::reoptimizationRetryCounterMax()) <= static_cast<int64_t>(std::numeric_limits<int32_t>::max()));
if (isX86_64() && !isX86_64_AVX())
Options::useWasmSIMD() = false;
if (Options::forceAllFunctionsToUseSIMD() && !Options::useWasmSIMD())
Options::forceAllFunctionsToUseSIMD() = false;
if (Options::useWasmSIMD() && !(Options::useWasmLLInt() || Options::useWasmIPInt())) {
// The LLInt is responsible for discovering if functions use SIMD.
// If we can't run using it, then we should be conservative.
Options::forceAllFunctionsToUseSIMD() = true;
}
}
if (Options::dumpFuzzerAgentPredictions())
Options::alwaysComputeHash() = true;
if (!Options::useConcurrentGC())
Options::collectContinuously() = false;
if (Options::useProfiler())
Options::useConcurrentJIT() = false;
if (Options::alwaysUseShadowChicken())
Options::maximumInliningDepth() = 1;
#if !defined(NDEBUG)
if (Options::maxSingleAllocationSize())
fastSetMaxSingleAllocationSize(Options::maxSingleAllocationSize());
else
fastSetMaxSingleAllocationSize(std::numeric_limits<size_t>::max());
#endif
if (Options::useZombieMode()) {
Options::sweepSynchronously() = true;
Options::scribbleFreeCells() = true;
}
if (Options::reservedZoneSize() < minimumReservedZoneSize)
Options::reservedZoneSize() = minimumReservedZoneSize;
if (Options::softReservedZoneSize() < Options::reservedZoneSize() + minimumReservedZoneSize)
Options::softReservedZoneSize() = Options::reservedZoneSize() + minimumReservedZoneSize;
if (!Options::useCodeCache())
Options::diskCachePath() = nullptr;
if (Options::randomIntegrityAuditRate() < 0)
Options::randomIntegrityAuditRate() = 0;
else if (Options::randomIntegrityAuditRate() > 1.0)
Options::randomIntegrityAuditRate() = 1.0;
if (!Options::allowUnsupportedTiers()) {
#define DISABLE_TIERS(option, flags, ...) do { \
if (!Options::option()) \
break; \
if (!(flags & SupportsDFG)) \
Options::useDFGJIT() = false; \
if (!(flags & SupportsFTL)) \
Options::useFTLJIT() = false; \
} while (false);
FOR_EACH_JSC_EXPERIMENTAL_OPTION(DISABLE_TIERS);
}
#if OS(DARWIN)
if (useOSLogOptionHasChanged) {
initializeDatafileToUseOSLog();
useOSLogOptionHasChanged = false;
}
#endif
if (Options::verboseVerifyGC())
Options::verifyGC() = true;
#if ASAN_ENABLED && OS(LINUX)
if (Options::useWasmFaultSignalHandler()) {
const char* asanOptions = getenv("ASAN_OPTIONS");
bool okToUseWasmFastMemory = asanOptions
&& (strstr(asanOptions, "allow_user_segv_handler=1") || strstr(asanOptions, "handle_segv=0"));
if (!okToUseWasmFastMemory) {
dataLogLn("WARNING: ASAN interferes with JSC signal handlers; useWasmFastMemory and useWasmFaultSignalHandler will be disabled.");
Options::useWasmFaultSignalHandler() = false;
}
}
#endif
// We can't use our pacibsp system while using posix signals because the signal handler could trash our stack during reifyInlinedCallFrames.
// If we have JITCage we don't need to restrict ourselves to pacibsp.
if (!Options::useMachForExceptions() || Options::useJITCage())
Options::allowNonSPTagging() = true;
if (!Options::useWasmFaultSignalHandler())
Options::useWasmFastMemory() = false;
#if CPU(ADDRESS32) || PLATFORM(PLAYSTATION)
Options::useWasmFastMemory() = false;
#endif
// Do range checks where needed and make corrections to the options:
ASSERT(Options::thresholdForOptimizeAfterLongWarmUp() >= Options::thresholdForOptimizeAfterWarmUp());
ASSERT(Options::thresholdForOptimizeAfterWarmUp() >= 0);
ASSERT(Options::criticalGCMemoryThreshold() > 0.0 && Options::criticalGCMemoryThreshold() < 1.0);
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
#if OS(WINDOWS)
// FIXME: Use equalLettersIgnoringASCIICase.
inline bool strncasecmp(const char* str1, const char* str2, size_t n)
{
return _strnicmp(str1, str2, n);
}
#endif
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
void Options::initialize()
{
static std::once_flag initializeOptionsOnceFlag;
std::call_once(
initializeOptionsOnceFlag,
[] {
AllowUnfinalizedAccessScope scope;
// Sanity check that options address computation is working.
RELEASE_ASSERT(OptionsHelper::addressOfOption(useKernTCSMID) == &Options::useKernTCSM());
RELEASE_ASSERT(OptionsHelper::addressOfOption(gcMaxHeapSizeID) == &Options::gcMaxHeapSize());
RELEASE_ASSERT(OptionsHelper::addressOfOption(forceOSRExitToLLIntID) == &Options::forceOSRExitToLLInt());
#if ENABLE(JSC_RESTRICTED_OPTIONS_BY_DEFAULT)
Config::enableRestrictedOptions();
#endif
// Initialize each of the options with their default values:
#define INIT_OPTION(type_, name_, defaultValue_, availability_, description_) { \
name_() = defaultValue_; \
}
FOR_EACH_JSC_OPTION(INIT_OPTION)
#undef INIT_OPTION
OptionsHelper::initialize();
overrideDefaults();
// Allow environment vars to override options if applicable.
// The env var should be the name of the option prefixed with
// "JSC_".
#if PLATFORM(COCOA) || OS(LINUX)
bool hasBadOptions = false;
#if PLATFORM(COCOA)
char** envp = *_NSGetEnviron();
#else
char** envp = environ;
#endif
for (; *envp; envp++) {
const char* env = *envp;
if (!strncmp("JSC_", env, 4)) {
if (!Options::setOption(&env[4])) {
dataLog("ERROR: invalid option: ", *envp, "\n");
hasBadOptions = true;
}
}
}
if (hasBadOptions && Options::validateOptions())
CRASH();
#endif // PLATFORM(COCOA) || OS(LINUX)
#if !PLATFORM(COCOA)
#define OVERRIDE_OPTION_WITH_HEURISTICS(type_, name_, defaultValue_, availability_, description_) \
overrideOptionWithHeuristic(name_(), name_##ID, "JSC_" #name_, Availability::availability_);
FOR_EACH_JSC_OPTION(OVERRIDE_OPTION_WITH_HEURISTICS)
#undef OVERRIDE_OPTION_WITH_HEURISTICS
#define OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS(aliasedName_, unaliasedName_, equivalence_) \
overrideAliasedOptionWithHeuristic("JSC_" #aliasedName_);
FOR_EACH_JSC_ALIASED_OPTION(OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS)
#undef OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS
#endif // !PLATFORM(COCOA)
#if 0
; // Deconfuse editors that do auto indentation
#endif
#if CPU(X86_64) && OS(DARWIN)
Options::dumpZappedCellCrashData() =
(hwPhysicalCPUMax() >= 4) && (hwL3CacheSize() >= static_cast<int64_t>(6 * MB));
#endif
// No more options changes after this point. notifyOptionsChanged() will
// do sanity checks and fix up options as needed.
notifyOptionsChanged();
// The code below acts on options that have been finalized.
// Do not change any options here.
#if HAVE(MACH_EXCEPTIONS)
if (Options::useMachForExceptions())
handleSignalsWithMach();
#endif
});
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
void Options::finalize()
{
ASSERT(!g_jscConfig.options.allowUnfinalizedAccess);
g_jscConfig.options.isFinalized = true;
// The following should only be done at the end after all options
// have been initialized.
assertOptionsAreCoherent();
if (UNLIKELY(Options::dumpOptions()))
executeDumpOptions();
#if USE(LIBPAS)
if (Options::libpasForcePGMWithRate())
WTF::forceEnablePGM(Options::libpasForcePGMWithRate());
#endif
OptionsHelper::releaseMetadata();
}
static bool isSeparator(char c)
{
return isUnicodeCompatibleASCIIWhitespace(c) || (c == ',');
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
bool Options::setOptions(const char* optionsStr)
{
AllowUnfinalizedAccessScope scope;
RELEASE_ASSERT(!g_jscConfig.isPermanentlyFrozen());
Vector<char*> options;
size_t length = strlen(optionsStr);
char* optionsStrCopy = WTF::fastStrDup(optionsStr);
char* end = optionsStrCopy + length;
char* p = optionsStrCopy;
while (p < end) {
// Skip separators (white space or commas).
while (p < end && isSeparator(*p))
p++;
if (p == end)
break;
char* optionStart = p;
p = strchr(p, '=');
if (!p) {
dataLogF("'=' not found in option string: %p\n", optionStart);
WTF::fastFree(optionsStrCopy);
return false;
}
p++;
char* valueBegin = p;
bool hasStringValue = false;
const int minStringLength = 2; // The min is an empty string i.e. 2 double quotes.
if ((p + minStringLength < end) && (*p == '"')) {
p = strstr(p + 1, "\"");
if (!p) {
dataLogF("Missing trailing '\"' in option string: %p\n", optionStart);
WTF::fastFree(optionsStrCopy);
return false; // End of string not found.
}
hasStringValue = true;
}
// Find next separator (white space or commas).
while (p < end && !isSeparator(*p))
p++;
if (!p)
p = end; // No more " " separator. Hence, this is the last arg.
// If we have a well-formed string value, strip the quotes.
if (hasStringValue) {
char* valueEnd = p;
ASSERT((*valueBegin == '"') && ((valueEnd - valueBegin) >= minStringLength) && (valueEnd[-1] == '"'));
memmove(valueBegin, valueBegin + 1, valueEnd - valueBegin - minStringLength);
valueEnd[-minStringLength] = '\0';
}
// Strip leading -- if present.
if ((p - optionStart > 2) && optionStart[0] == '-' && optionStart[1] == '-')
optionStart += 2;
*p++ = '\0';
options.append(optionStart);
}
bool success = true;
for (auto& option : options) {
bool optionSuccess = setOption(option);
if (!optionSuccess) {
dataLogF("Failed to set option : %s\n", option);
success = false;
}
}
notifyOptionsChanged();
WTF::fastFree(optionsStrCopy);
return success;
}
// Parses a single command line option in the format "<optionName>=<value>"
// (no spaces allowed) and set the specified option if appropriate.
bool Options::setOptionWithoutAlias(const char* arg, bool verify)
{
// arg should look like this:
// <jscOptionName>=<appropriate value>
const char* equalStr = strchr(arg, '=');
if (!equalStr)
return false;
const char* valueStr = equalStr + 1;
// For each option, check if the specified arg is a match. If so, set the arg
// if the value makes sense. Otherwise, move on to checking the next option.
#define SET_OPTION_IF_MATCH(type_, name_, defaultValue_, availability_, description_) \
if (strlen(#name_) == static_cast<size_t>(equalStr - arg) \
&& !strncasecmp(arg, #name_, equalStr - arg)) { \
if (Availability::availability_ != Availability::Normal \
&& !isAvailable(name_##ID, Availability::availability_)) \
return false; \
std::optional<OptionsStorage::type_> value; \
value = parse<OptionsStorage::type_>(valueStr); \
if (value) { \
OptionsHelper::setWasOverridden(name_##ID); \
name_() = value.value(); \
if (verify) notifyOptionsChanged(); \
return true; \
} \
return false; \
}
FOR_EACH_JSC_OPTION(SET_OPTION_IF_MATCH)
#undef SET_OPTION_IF_MATCH
return false; // No option matched.
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
static ASCIILiteral invertBoolOptionValue(const char* valueStr)
{
std::optional<OptionsStorage::Bool> value = parse<OptionsStorage::Bool>(valueStr);
if (!value)
return { };
return value.value() ? "false"_s : "true"_s;
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
bool Options::setAliasedOption(const char* arg, bool verify)
{
// arg should look like this:
// <jscOptionName>=<appropriate value>
const char* equalStr = strchr(arg, '=');
if (!equalStr)
return false;
IGNORE_WARNINGS_BEGIN("tautological-compare")
// For each option, check if the specify arg is a match. If so, set the arg
// if the value makes sense. Otherwise, move on to checking the next option.
#define FOR_EACH_OPTION(aliasedName_, unaliasedName_, equivalence) \
if (strlen(#aliasedName_) == static_cast<size_t>(equalStr - arg) \
&& !strncasecmp(arg, #aliasedName_, equalStr - arg)) { \
auto unaliasedOption = String::fromLatin1(#unaliasedName_); \
if (equivalence == SameOption) \
unaliasedOption = makeString(unaliasedOption, unsafeSpan(equalStr)); \
else { \
ASSERT(equivalence == InvertedOption); \
auto invertedValueStr = invertBoolOptionValue(equalStr + 1); \
if (invertedValueStr.isNull()) \
return false; \
unaliasedOption = makeString(unaliasedOption, '=', invertedValueStr); \
} \
return setOptionWithoutAlias(unaliasedOption.utf8().data(), verify); \
}
FOR_EACH_JSC_ALIASED_OPTION(FOR_EACH_OPTION)
#undef FOR_EACH_OPTION
IGNORE_WARNINGS_END
return false; // No option matched.
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
bool Options::setOption(const char* arg, bool verify)
{
AllowUnfinalizedAccessScope scope;
bool success = setOptionWithoutAlias(arg, verify);
if (success)
return true;
return setAliasedOption(arg, verify);
}
void Options::dumpAllOptions(StringBuilder& builder, DumpLevel level, ASCIILiteral title,
ASCIILiteral separator, ASCIILiteral optionHeader, ASCIILiteral optionFooter, DumpDefaultsOption dumpDefaultsOption)
{
AllowUnfinalizedAccessScope scope;
if (!title.isNull()) {
builder.append(title);
builder.append('\n');
}
for (size_t id = 0; id < NumberOfOptions; ++id) {
if (separator && id)
builder.append(separator);
dumpOption(builder, level, static_cast<ID>(id), optionHeader, optionFooter, dumpDefaultsOption);
}
}
void Options::dumpAllOptionsInALine(StringBuilder& builder)
{
dumpAllOptions(builder, DumpLevel::All, { }, " "_s, { }, { }, DontDumpDefaults);
}
void Options::dumpAllOptions(DumpLevel level, ASCIILiteral title)
{
StringBuilder builder;
dumpAllOptions(builder, level, title, { }, " "_s, "\n"_s, DumpDefaults);
dataLog(builder.toString().utf8().data());
}
void Options::dumpOption(StringBuilder& builder, DumpLevel level, Options::ID id,
ASCIILiteral header, ASCIILiteral footer, DumpDefaultsOption dumpDefaultsOption)
{
RELEASE_ASSERT(static_cast<size_t>(id) < NumberOfOptions);
auto option = OptionsHelper::optionFor(id);
Availability availability = option.availability();
if (availability != Availability::Normal && !isAvailable(id, availability))
return;
bool wasOverridden = OptionsHelper::wasOverridden(id);
bool needsDescription = (level == DumpLevel::Verbose && option.description());
if (level == DumpLevel::Overridden && !wasOverridden)
return;
if (!header.isNull())
builder.append(header);
builder.append(option.name(), '=');
option.dump(builder);
if (wasOverridden && (dumpDefaultsOption == DumpDefaults) && OptionsHelper::hasMetadata()) {
auto defaultOption = OptionsHelper::defaultFor(id);
builder.append(" (default: "_s);
defaultOption.dump(builder);
builder.append(')');
}
if (needsDescription)
builder.append(" ... "_s, option.description());
builder.append(footer);
}
void Options::assertOptionsAreCoherent()
{
AllowUnfinalizedAccessScope scope;
bool coherent = true;
if (!(useLLInt() || useJIT())) {
coherent = false;
dataLog("INCOHERENT OPTIONS: at least one of useLLInt or useJIT must be true\n");
}
if (useWasm() && !(useWasmLLInt() || useBBQJIT())) {
coherent = false;
dataLog("INCOHERENT OPTIONS: at least one of useWasmLLInt or useBBQJIT must be true\n");
}
if (useProfiler() && useConcurrentJIT()) {
coherent = false;
dataLogLn("Bytecode profiler is not concurrent JIT safe.");
}
if (!allowNonSPTagging() && !useMachForExceptions()) {
coherent = false;
dataLog("INCOHERENT OPTIONS: can't restrict pointer tagging to pacibsp and use posix signals");
}
if (!coherent)
CRASH();
}
namespace OptionsHelper {
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
void Option::initValue(void* addressOfValue)
{
Options::Type type = g_constMetaData[m_id].type;
switch (type) {
case Options::Type::Bool:
memcpy(&m_bool, addressOfValue, sizeof(OptionsStorage::Bool));
break;
case Options::Type::Unsigned:
memcpy(&m_unsigned, addressOfValue, sizeof(OptionsStorage::Unsigned));
break;
case Options::Type::Double:
memcpy(&m_double, addressOfValue, sizeof(OptionsStorage::Double));
break;
case Options::Type::Int32:
memcpy(&m_int32, addressOfValue, sizeof(OptionsStorage::Int32));
break;
case Options::Type::Size:
memcpy(&m_size, addressOfValue, sizeof(OptionsStorage::Size));
break;
case Options::Type::OptionRange:
memcpy(&m_optionRange, addressOfValue, sizeof(OptionsStorage::OptionRange));
break;
case Options::Type::OptionString:
memcpy(&m_optionString, addressOfValue, sizeof(OptionsStorage::OptionString));
break;
case Options::Type::GCLogLevel:
memcpy(&m_gcLogLevel, addressOfValue, sizeof(OptionsStorage::GCLogLevel));
break;
case Options::Type::OSLogType:
memcpy(&m_osLogType, addressOfValue, sizeof(OptionsStorage::OSLogType));
break;
}
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
void Option::dump(StringBuilder& builder) const
{
switch (type()) {
case Options::Type::Bool:
builder.append(m_bool ? "true"_s : "false"_s);
break;
case Options::Type::Unsigned:
builder.append(m_unsigned);
break;
case Options::Type::Size:
builder.append(m_size);
break;
case Options::Type::Double:
builder.append(m_double);
break;
case Options::Type::Int32:
builder.append(m_int32);
break;
case Options::Type::OptionRange:
builder.append(unsafeSpan(m_optionRange.rangeString()));
break;
case Options::Type::OptionString:
builder.append('"', m_optionString ? unsafeSpan8(m_optionString) : ""_span8, '"');
break;
case Options::Type::GCLogLevel:
builder.append(m_gcLogLevel);
break;
case Options::Type::OSLogType:
builder.append(asString(m_osLogType));
break;
}
}
bool Option::operator==(const Option& other) const
{
ASSERT(type() == other.type());
switch (type()) {
case Options::Type::Bool:
return m_bool == other.m_bool;
case Options::Type::Unsigned:
return m_unsigned == other.m_unsigned;
case Options::Type::Size:
return m_size == other.m_size;
case Options::Type::Double:
return (m_double == other.m_double) || (std::isnan(m_double) && std::isnan(other.m_double));
case Options::Type::Int32:
return m_int32 == other.m_int32;
case Options::Type::OptionRange:
return m_optionRange.rangeString() == other.m_optionRange.rangeString();
case Options::Type::OptionString:
return (m_optionString == other.m_optionString)
|| (m_optionString && other.m_optionString && !strcmp(m_optionString, other.m_optionString));
case Options::Type::GCLogLevel:
return m_gcLogLevel == other.m_gcLogLevel;
case Options::Type::OSLogType:
return m_osLogType == other.m_osLogType;
}
return false;
}
} // namespace OptionsHelper
#if ENABLE(JIT_CAGE)
SUPPRESS_ASAN bool canUseJITCage()
{
if (JSC_FORCE_USE_JIT_CAGE)
return true;
return JSC_JIT_CAGE_VERSION() && !ASAN_ENABLED && WTF::processHasEntitlement("com.apple.private.verified-jit"_s);
}
#else
bool canUseJITCage() { return false; }
#endif
bool canUseHandlerIC()
{
#if USE(JSVALUE64)
return true;
#else
return false;
#endif
}
bool canUseWasm()
{
#if ENABLE(WEBASSEMBLY) && !PLATFORM(WATCHOS)
return true;
#else
return false;
#endif
}
bool hasCapacityToUseLargeGigacage()
{
// Gigacage::hasCapacityToUseLargeGigacage is determined based on EFFECTIVE_ADDRESS_WIDTH.
// If we have enough address range to potentially use a large gigacage,
// then we have enough address range to useWasmFastMemory.
return Gigacage::hasCapacityToUseLargeGigacage;
}
} // namespace JSC
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
|