Changeset 249808 in webkit
- Timestamp:
- Sep 12, 2019, 8:04:29 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 54 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/JSTests/ChangeLog ¶
r249780 r249808 1 2019-09-12 Mark Lam <mark.lam@apple.com> 2 3 Harden JSC against the abuse of runtime options. 4 https://bugs.webkit.org/show_bug.cgi?id=201597 5 <rdar://problem/55167068> 6 7 Reviewed by Filip Pizlo. 8 9 Remove the call to forceGCSlowPaths(). This utility function will be removed. 10 The modern way to set the required option is to use //@ requireOptions. 11 12 * stress/ftl-try-catch-oom-error-lazy-slow-path.js: 13 1 14 2019-09-11 Yusuke Suzuki <ysuzuki@apple.com> 2 15 -
TabularUnified trunk/JSTests/stress/ftl-try-catch-oom-error-lazy-slow-path.js ¶
r192203 r249808 1 forceGCSlowPaths(); // Force OOM error in FTL MakeRope to happen in a lazy slow path. 1 //@ requireOptions("--forceGCSlowPaths=true") 2 3 // We require --forceGCSlowPaths=true to force OOM error in FTL MakeRope to happen in a lazy slow path. 2 4 3 5 function assert(b) { -
TabularUnified trunk/Source/JavaScriptCore/API/glib/JSCOptions.cpp ¶
r243603 r249808 32 32 * 33 33 * JavaScript options allow changing the behavior of the JavaScript engine. 34 * They affect the way the engine works, so it's encouraged to set the options34 * They affect the way the engine works, so the options must be set 35 35 * at the very beginning of the program execution, before any other JavaScript 36 36 * API call. Most of the options are only useful for testing and debugging. … … 167 167 static gboolean jscOptionsSetValue(const char* option, const GValue* value) 168 168 { 169 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \169 #define SET_OPTION_VALUE(type_, name_, defaultValue_, availability_, description_) \ 170 170 if (!g_strcmp0(#name_, option)) { \ 171 type_ valueToSet;\171 OptionEntry::type_ valueToSet; \ 172 172 if (!valueFromGValue(value, valueToSet)) \ 173 173 return FALSE; \ … … 177 177 178 178 Options::initialize(); 179 JSC_OPTIONS(FOR_EACH_OPTION)180 #undef FOR_EACH_OPTION179 FOR_EACH_JSC_OPTION(SET_OPTION_VALUE) 180 #undef SET_OPTION_VALUE 181 181 182 182 return FALSE; … … 185 185 static gboolean jscOptionsGetValue(const char* option, GValue* value) 186 186 { 187 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \187 #define GET_OPTION_VALUE(type_, name_, defaultValue_, availability_, description_) \ 188 188 if (!g_strcmp0(#name_, option)) { \ 189 type_ valueToGet = Options::name_();\189 OptionEntry::type_ valueToGet = Options::name_(); \ 190 190 valueToGValue(valueToGet, value); \ 191 191 return TRUE; \ … … 193 193 194 194 Options::initialize(); 195 JSC_OPTIONS(FOR_EACH_OPTION)196 #undef FOR_EACH_OPTION195 FOR_EACH_JSC_OPTION(GET_OPTION_VALUE) 196 #undef GET_OPTION_VALUE 197 197 198 198 return FALSE; … … 615 615 g_return_if_fail(function); 616 616 617 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \617 #define VISIT_OPTION(type_, name_, defaultValue_, availability_, description_) \ 618 618 if (Options::Availability::availability_ == Options::Availability::Normal \ 619 619 || Options::isAvailable(Options::name_##ID, Options::Availability::availability_)) { \ 620 type_ defaultValue { };\620 OptionEntry::type_ defaultValue { }; \ 621 621 auto optionType = jscOptionsType(defaultValue); \ 622 622 if (function (#name_, optionType, description_, userData)) \ … … 625 625 626 626 Options::initialize(); 627 JSC_OPTIONS(FOR_EACH_OPTION)628 #undef FOR_EACH_OPTION627 FOR_EACH_JSC_OPTION(VISIT_OPTION) 628 #undef VISIT_OPTION 629 629 } 630 630 … … 665 665 666 666 GArray* entries = g_array_new(TRUE, TRUE, sizeof(GOptionEntry)); 667 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \667 #define REGISTER_OPTION(type_, name_, defaultValue_, availability_, description_) \ 668 668 if (Options::Availability::availability_ == Options::Availability::Normal \ 669 669 || Options::isAvailable(Options::name_##ID, Options::Availability::availability_)) { \ … … 679 679 680 680 Options::initialize(); 681 JSC_OPTIONS(FOR_EACH_OPTION)682 #undef FOR_EACH_OPTION681 FOR_EACH_JSC_OPTION(REGISTER_OPTION) 682 #undef REGISTER_OPTION 683 683 684 684 g_option_group_add_entries(group, reinterpret_cast<GOptionEntry*>(entries->data)); -
TabularUnified trunk/Source/JavaScriptCore/API/tests/testapi.c ¶
r247488 r249808 1 1 /* 2 * Copyright (C) 2006-201 7Apple Inc. All rights reserved.2 * Copyright (C) 2006-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 78 78 #endif 79 79 80 void configureJSCForTesting(void); 80 81 int testCAPIViaCpp(const char* filter); 81 82 … … 1387 1388 SetErrorMode(0); 1388 1389 #endif 1390 1391 configureJSCForTesting(); 1389 1392 1390 1393 #if !OS(WINDOWS) -
TabularUnified trunk/Source/JavaScriptCore/API/tests/testapi.cpp ¶
r249073 r249808 1 1 /* 2 * Copyright (C) 2017 Apple Inc. All rights reserved.2 * Copyright (C) 2017-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 40 40 #include <wtf/text/StringCommon.h> 41 41 42 extern "C" void configureJSCForTesting(); 42 43 extern "C" int testCAPIViaCpp(const char* filter); 43 44 … … 588 589 callFunction("(function () { const p = Promise.reject(); Promise.resolve().then(() => { p.catch(() => {}); }); })"); 589 590 check(!callbackCalled, "unhandled rejection callback should not be called for asynchronous early-handled rejection"); 591 } 592 593 void configureJSCForTesting() 594 { 595 JSC::Config::configureForTesting(); 590 596 } 591 597 -
TabularUnified trunk/Source/JavaScriptCore/CMakeLists.txt ¶
r249547 r249808 843 843 runtime/JSArrayBufferViewInlines.h 844 844 runtime/JSBigInt.h 845 runtime/JSCConfig.h 845 846 runtime/JSCInlines.h 846 847 runtime/JSCJSValue.h … … 919 920 runtime/ObjectPrototype.h 920 921 runtime/Operations.h 922 runtime/OptionEntry.h 921 923 runtime/Options.h 924 runtime/OptionsList.h 922 925 runtime/ParseInt.h 923 926 runtime/PrivateName.h -
TabularUnified trunk/Source/JavaScriptCore/ChangeLog ¶
r249786 r249808 1 2019-09-12 Mark Lam <mark.lam@apple.com> 2 3 Harden JSC against the abuse of runtime options. 4 https://bugs.webkit.org/show_bug.cgi?id=201597 5 <rdar://problem/55167068> 6 7 Reviewed by Filip Pizlo. 8 9 Linux parts contributed by Carlos Garcia Campos <cgarcia@igalia.com>. 10 11 1. Introduce a JSC::Config struct that will be protected as ReadOnly once the 12 first VM instance is constructed. The end of the VM constructor calls 13 Config::permanentlyFreeze() which will make the Config ReadOnly. 14 15 Note: this is currently only supported for OS(DARWIN) and OS(LINUX). 16 OS(WINDOWS) will need to implement some missing pieces before it can enable 17 this hardening (see FIXME in JSCConfig.cpp). 18 19 The hardening strategy here is to put immutable global values into the Config. 20 Any modifications that need to be made to these values must be done before the 21 first VM instance is done instantiating. This ensures that no script will 22 ever run while the Config is still writable. 23 24 Also, the policy for this hardening is that a process is opted in by default. 25 If there's a valid need to disable this hardening (e.g. for some test 26 environments), the relevant process will need to opt itself out by calling 27 Config::configureForTesting(). 28 29 The jsc shell, WK2 UI and WebContent processes are opted in by default. 30 Only test processes may be opt out. 31 32 2. Put all JSC::Options in the Config. This enforces the invariant that options 33 can only be changed before we instantiate a VM. Once a VM is instantiated, 34 the options are immutable. 35 36 3. Remove functionForceGCSlowPaths() from the jsc shell. Setting 37 Options::forceGCSlowPaths this way is no longer allowed. 38 39 4. Re-factored the Options code (Options.h) into: 40 - OptionEntry.h: the data structure that stores the option values. 41 - OptionsList.h: the list of options. 42 - Options.h: the Options singleton object which is the interface for accessing options. 43 44 Renamed the JSC_OPTIONS macro to FOR_EACH_JSC_OPTION, because 45 "FOR_EACH_JSC_OPTION(SET_OPTION_VALUE)" reads a lot better than 46 "JSC_OPTIONS(FOR_EACH_OPTION)". 47 48 5. Change testapi to call Config::configureForTesting(). Parts of testapi makes 49 use of setting options in its tests. Hence, this hardening is disabled for 50 testapi. 51 52 Note: the jsc shell does enable this hardening. 53 54 6. Put ExecutableAllocator's immutable globals in the Config. 55 56 7. RELEASE_ASSERT that restrictedOptionsEnabled in order to use the 57 FunctionOverrides test utility. 58 59 8. RELEASE_ASSERT that Options::useDollarVM() is enabled in order to use the $vm. 60 61 We must RELEASE_ASSERT(Options::useDollarVM()) in all JSDollarVM functions 62 that are non-trivial at an eye's glance. This includes (but is not limited to): 63 constructors 64 create() factory 65 createStructure() factory 66 finishCreation() 67 HOST_CALL or operation functions 68 Constructors and methods of utility and test classes 69 70 The only exception are some constexpr constructors used for instantiating 71 globals (since these must have trivial constructors) e.g. DOMJITAttribute. 72 Instead, these constructors should always be ALWAYS_INLINE. 73 74 * API/glib/JSCOptions.cpp: 75 (jscOptionsSetValue): 76 (jscOptionsGetValue): 77 (jsc_options_foreach): 78 (jsc_options_get_option_group): 79 * API/tests/testapi.c: 80 (main): 81 * API/tests/testapi.cpp: 82 (configureJSCForTesting): 83 * CMakeLists.txt: 84 * JavaScriptCore.xcodeproj/project.pbxproj: 85 * Sources.txt: 86 * jit/ExecutableAllocator.cpp: 87 (JSC::isJITEnabled): 88 (JSC::ExecutableAllocator::setJITEnabled): 89 (JSC::ExecutableAllocator::initializeUnderlyingAllocator): 90 (JSC::ExecutableAllocator::isValid const): 91 (JSC::ExecutableAllocator::underMemoryPressure): 92 (JSC::ExecutableAllocator::memoryPressureMultiplier): 93 (JSC::ExecutableAllocator::allocate): 94 (JSC::ExecutableAllocator::isValidExecutableMemory): 95 (JSC::ExecutableAllocator::getLock const): 96 (JSC::ExecutableAllocator::committedByteCount): 97 (JSC::ExecutableAllocator::dumpProfile): 98 (JSC::startOfFixedExecutableMemoryPoolImpl): 99 (JSC::endOfFixedExecutableMemoryPoolImpl): 100 (JSC::isJITPC): 101 (JSC::dumpJITMemory): 102 (JSC::ExecutableAllocator::initialize): 103 (JSC::ExecutableAllocator::singleton): 104 * jit/ExecutableAllocator.h: 105 (JSC::performJITMemcpy): 106 * jsc.cpp: 107 (GlobalObject::finishCreation): 108 (functionJSCOptions): 109 (jscmain): 110 (functionForceGCSlowPaths): Deleted. 111 * runtime/ConfigFile.cpp: 112 (JSC::ConfigFile::parse): 113 * runtime/InitializeThreading.cpp: 114 (JSC::initializeThreading): 115 * runtime/JSCConfig.cpp: Added. 116 (JSC::Config::disableFreezingForTesting): 117 (JSC::Config::enableRestrictedOptions): 118 (JSC::Config::permanentlyFreeze): 119 * runtime/JSCConfig.h: Added. 120 (JSC::Config::configureForTesting): 121 * runtime/JSGlobalObject.cpp: 122 (JSC::JSGlobalObject::exposeDollarVM): 123 * runtime/OptionEntry.h: Added. 124 (JSC::OptionRange::operator= ): 125 (JSC::OptionRange::rangeString const): 126 * runtime/Options.cpp: 127 (JSC::Options::isAvailable): 128 (JSC::scaleJITPolicy): 129 (JSC::Options::initialize): 130 (JSC::Options::setOptions): 131 (JSC::Options::setOptionWithoutAlias): 132 (JSC::Options::setAliasedOption): 133 (JSC::Option::dump const): 134 (JSC::Option::operator== const): 135 (): Deleted. 136 (JSC::Options::enableRestrictedOptions): Deleted. 137 * runtime/Options.h: 138 (JSC::Option::Option): 139 (JSC::Option::defaultOption const): 140 (JSC::Option::boolVal): 141 (JSC::Option::unsignedVal): 142 (JSC::Option::doubleVal): 143 (JSC::Option::int32Val): 144 (JSC::Option::optionRangeVal): 145 (JSC::Option::optionStringVal): 146 (JSC::Option::gcLogLevelVal): 147 (JSC::OptionRange::operator= ): Deleted. 148 (JSC::OptionRange::rangeString const): Deleted. 149 * runtime/OptionsList.h: Added. 150 (JSC::countNumberOfJSCOptions): 151 * runtime/VM.cpp: 152 (JSC::VM::VM): 153 * tools/FunctionOverrides.cpp: 154 (JSC::FunctionOverrides::FunctionOverrides): 155 (JSC::FunctionOverrides::reinstallOverrides): 156 (JSC::FunctionOverrides::initializeOverrideFor): 157 (JSC::FunctionOverrides::parseOverridesInFile): 158 * tools/JSDollarVM.cpp: 159 (JSC::JSDollarVMCallFrame::JSDollarVMCallFrame): 160 (JSC::JSDollarVMCallFrame::createStructure): 161 (JSC::JSDollarVMCallFrame::create): 162 (JSC::JSDollarVMCallFrame::finishCreation): 163 (JSC::JSDollarVMCallFrame::addProperty): 164 (JSC::Element::Element): 165 (JSC::Element::create): 166 (JSC::Element::createStructure): 167 (JSC::Root::Root): 168 (JSC::Root::create): 169 (JSC::Root::createStructure): 170 (JSC::SimpleObject::SimpleObject): 171 (JSC::SimpleObject::create): 172 (JSC::SimpleObject::createStructure): 173 (JSC::ImpureGetter::ImpureGetter): 174 (JSC::ImpureGetter::createStructure): 175 (JSC::ImpureGetter::create): 176 (JSC::ImpureGetter::finishCreation): 177 (JSC::ImpureGetter::getOwnPropertySlot): 178 (JSC::CustomGetter::CustomGetter): 179 (JSC::CustomGetter::createStructure): 180 (JSC::CustomGetter::create): 181 (JSC::CustomGetter::getOwnPropertySlot): 182 (JSC::CustomGetter::customGetter): 183 (JSC::CustomGetter::customGetterAcessor): 184 (JSC::RuntimeArray::create): 185 (JSC::RuntimeArray::destroy): 186 (JSC::RuntimeArray::getOwnPropertySlot): 187 (JSC::RuntimeArray::getOwnPropertySlotByIndex): 188 (JSC::RuntimeArray::createPrototype): 189 (JSC::RuntimeArray::createStructure): 190 (JSC::RuntimeArray::finishCreation): 191 (JSC::RuntimeArray::RuntimeArray): 192 (JSC::RuntimeArray::lengthGetter): 193 (JSC::DOMJITNode::DOMJITNode): 194 (JSC::DOMJITNode::createStructure): 195 (JSC::DOMJITNode::checkSubClassSnippet): 196 (JSC::DOMJITNode::create): 197 (JSC::DOMJITGetter::DOMJITGetter): 198 (JSC::DOMJITGetter::createStructure): 199 (JSC::DOMJITGetter::create): 200 (JSC::DOMJITGetter::DOMJITAttribute::DOMJITAttribute): 201 (JSC::DOMJITGetter::DOMJITAttribute::slowCall): 202 (JSC::DOMJITGetter::DOMJITAttribute::callDOMGetter): 203 (JSC::DOMJITGetter::customGetter): 204 (JSC::DOMJITGetter::finishCreation): 205 (JSC::DOMJITGetterComplex::DOMJITGetterComplex): 206 (JSC::DOMJITGetterComplex::createStructure): 207 (JSC::DOMJITGetterComplex::create): 208 (JSC::DOMJITGetterComplex::DOMJITAttribute::DOMJITAttribute): 209 (JSC::DOMJITGetterComplex::DOMJITAttribute::slowCall): 210 (JSC::DOMJITGetterComplex::DOMJITAttribute::callDOMGetter): 211 (JSC::DOMJITGetterComplex::functionEnableException): 212 (JSC::DOMJITGetterComplex::customGetter): 213 (JSC::DOMJITGetterComplex::finishCreation): 214 (JSC::DOMJITFunctionObject::DOMJITFunctionObject): 215 (JSC::DOMJITFunctionObject::createStructure): 216 (JSC::DOMJITFunctionObject::create): 217 (JSC::DOMJITFunctionObject::functionWithTypeCheck): 218 (JSC::DOMJITFunctionObject::functionWithoutTypeCheck): 219 (JSC::DOMJITFunctionObject::checkSubClassSnippet): 220 (JSC::DOMJITFunctionObject::finishCreation): 221 (JSC::DOMJITCheckSubClassObject::DOMJITCheckSubClassObject): 222 (JSC::DOMJITCheckSubClassObject::createStructure): 223 (JSC::DOMJITCheckSubClassObject::create): 224 (JSC::DOMJITCheckSubClassObject::functionWithTypeCheck): 225 (JSC::DOMJITCheckSubClassObject::functionWithoutTypeCheck): 226 (JSC::DOMJITCheckSubClassObject::finishCreation): 227 (JSC::DOMJITGetterBaseJSObject::DOMJITGetterBaseJSObject): 228 (JSC::DOMJITGetterBaseJSObject::createStructure): 229 (JSC::DOMJITGetterBaseJSObject::create): 230 (JSC::DOMJITGetterBaseJSObject::DOMJITAttribute::DOMJITAttribute): 231 (JSC::DOMJITGetterBaseJSObject::DOMJITAttribute::slowCall): 232 (JSC::DOMJITGetterBaseJSObject::DOMJITAttribute::callDOMGetter): 233 (JSC::DOMJITGetterBaseJSObject::customGetter): 234 (JSC::DOMJITGetterBaseJSObject::finishCreation): 235 (JSC::JSTestCustomGetterSetter::JSTestCustomGetterSetter): 236 (JSC::JSTestCustomGetterSetter::create): 237 (JSC::JSTestCustomGetterSetter::createStructure): 238 (JSC::customSetAccessor): 239 (JSC::customSetValue): 240 (JSC::JSTestCustomGetterSetter::finishCreation): 241 (JSC::Element::handleOwner): 242 (JSC::Element::finishCreation): 243 (JSC::WasmStreamingParser::WasmStreamingParser): 244 (JSC::WasmStreamingParser::create): 245 (JSC::WasmStreamingParser::createStructure): 246 (JSC::WasmStreamingParser::finishCreation): 247 (JSC::functionWasmStreamingParserAddBytes): 248 (JSC::functionWasmStreamingParserFinalize): 249 (JSC::functionCrash): 250 (JSC::functionBreakpoint): 251 (JSC::functionDFGTrue): 252 (JSC::functionFTLTrue): 253 (JSC::functionCpuMfence): 254 (JSC::functionCpuRdtsc): 255 (JSC::functionCpuCpuid): 256 (JSC::functionCpuPause): 257 (JSC::functionCpuClflush): 258 (JSC::CallerFrameJITTypeFunctor::CallerFrameJITTypeFunctor): 259 (JSC::getExecutableForFunction): 260 (JSC::functionLLintTrue): 261 (JSC::functionJITTrue): 262 (JSC::functionNoInline): 263 (JSC::functionGC): 264 (JSC::functionEdenGC): 265 (JSC::functionDumpSubspaceHashes): 266 (JSC::functionCallFrame): 267 (JSC::functionCodeBlockForFrame): 268 (JSC::codeBlockFromArg): 269 (JSC::functionCodeBlockFor): 270 (JSC::functionDumpSourceFor): 271 (JSC::functionDumpBytecodeFor): 272 (JSC::doPrint): 273 (JSC::functionDataLog): 274 (JSC::functionPrint): 275 (JSC::functionDumpCallFrame): 276 (JSC::functionDumpStack): 277 (JSC::functionDumpRegisters): 278 (JSC::functionDumpCell): 279 (JSC::functionIndexingMode): 280 (JSC::functionInlineCapacity): 281 (JSC::functionValue): 282 (JSC::functionGetPID): 283 (JSC::functionHaveABadTime): 284 (JSC::functionIsHavingABadTime): 285 (JSC::functionCreateGlobalObject): 286 (JSC::functionCreateProxy): 287 (JSC::functionCreateRuntimeArray): 288 (JSC::functionCreateNullRopeString): 289 (JSC::functionCreateImpureGetter): 290 (JSC::functionCreateCustomGetterObject): 291 (JSC::functionCreateDOMJITNodeObject): 292 (JSC::functionCreateDOMJITGetterObject): 293 (JSC::functionCreateDOMJITGetterComplexObject): 294 (JSC::functionCreateDOMJITFunctionObject): 295 (JSC::functionCreateDOMJITCheckSubClassObject): 296 (JSC::functionCreateDOMJITGetterBaseJSObject): 297 (JSC::functionCreateWasmStreamingParser): 298 (JSC::functionSetImpureGetterDelegate): 299 (JSC::functionCreateBuiltin): 300 (JSC::functionGetPrivateProperty): 301 (JSC::functionCreateRoot): 302 (JSC::functionCreateElement): 303 (JSC::functionGetElement): 304 (JSC::functionCreateSimpleObject): 305 (JSC::functionGetHiddenValue): 306 (JSC::functionSetHiddenValue): 307 (JSC::functionShadowChickenFunctionsOnStack): 308 (JSC::functionSetGlobalConstRedeclarationShouldNotThrow): 309 (JSC::functionFindTypeForExpression): 310 (JSC::functionReturnTypeFor): 311 (JSC::functionFlattenDictionaryObject): 312 (JSC::functionDumpBasicBlockExecutionRanges): 313 (JSC::functionHasBasicBlockExecuted): 314 (JSC::functionBasicBlockExecutionCount): 315 (JSC::functionEnableExceptionFuzz): 316 (JSC::changeDebuggerModeWhenIdle): 317 (JSC::functionEnableDebuggerModeWhenIdle): 318 (JSC::functionDisableDebuggerModeWhenIdle): 319 (JSC::functionDeleteAllCodeWhenIdle): 320 (JSC::functionGlobalObjectCount): 321 (JSC::functionGlobalObjectForObject): 322 (JSC::functionGetGetterSetter): 323 (JSC::functionLoadGetterFromGetterSetter): 324 (JSC::functionCreateCustomTestGetterSetter): 325 (JSC::functionDeltaBetweenButterflies): 326 (JSC::functionTotalGCTime): 327 (JSC::functionParseCount): 328 (JSC::functionIsWasmSupported): 329 (JSC::JSDollarVM::finishCreation): 330 (JSC::JSDollarVM::addFunction): 331 (JSC::JSDollarVM::addConstructibleFunction): 332 * tools/JSDollarVM.h: 333 1 334 2019-09-11 Devin Rousso <drousso@apple.com> 2 335 -
TabularUnified trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj ¶
r249708 r249808 114 114 E1AC2E2720F7B94C00B0897D /* Unlock Keychain */ = { 115 115 isa = PBXAggregateTarget; 116 buildConfigurationList = 14CFB10523035EF300F0048C /* Build configuration list */;116 buildConfigurationList = 14CFB10523035EF300F0048C /* Build configuration list for PBXAggregateTarget "Unlock Keychain" */; 117 117 buildPhases = ( 118 118 E1AC2E2C20F7B95800B0897D /* Unlock Keychain */, … … 1872 1872 FE318FE01CAC982F00DFCC54 /* ECMAScriptSpecInternalFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = FE318FDE1CAC8C5300DFCC54 /* ECMAScriptSpecInternalFunctions.h */; }; 1873 1873 FE3422121D6B81C30032BE88 /* ThrowScope.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3422111D6B818C0032BE88 /* ThrowScope.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1874 FE3842322324D51B009DD445 /* OptionEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3842302324D51A009DD445 /* OptionEntry.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1875 FE3842332324D51B009DD445 /* OptionsList.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3842312324D51B009DD445 /* OptionsList.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1874 1876 FE384EE61ADDB7AD0055DE2C /* JSDollarVM.h in Headers */ = {isa = PBXBuildFile; fileRef = FE384EE21ADDB7AD0055DE2C /* JSDollarVM.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1875 1877 FE3A06A61C10B72D00390FDD /* JITBitOrGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3A06A41C10B70800390FDD /* JITBitOrGenerator.h */; }; … … 1880 1882 FE3A06C01C11041A00390FDD /* JITRightShiftGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3A06B91C1103D900390FDD /* JITRightShiftGenerator.h */; }; 1881 1883 FE476FF4207E85D50093CA2D /* JITCodeMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FE476FF3207E85D40093CA2D /* JITCodeMap.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1884 FE48BD4423245E9300F136D0 /* JSCConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FE48BD4223245E8700F136D0 /* JSCConfig.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1882 1885 FE48E6381EB118D2005D7A96 /* ObjectInitializationScope.h in Headers */ = {isa = PBXBuildFile; fileRef = FE48E6361EB1188F005D7A96 /* ObjectInitializationScope.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1883 1886 FE4BFF2C1AD476E700088F87 /* FunctionOverrides.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4BFF2A1AD476E700088F87 /* FunctionOverrides.h */; }; … … 1922 1925 filePatterns = "*.h"; 1923 1926 fileType = pattern.proxy; 1927 inputFiles = ( 1928 ); 1924 1929 isEditable = 1; 1925 1930 outputFiles = ( … … 5063 5068 FE35C2FB21B1E6C7000F4CA8 /* OpcodeGroup.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = OpcodeGroup.rb; sourceTree = "<group>"; }; 5064 5069 FE35C2FC21B1E6C7000F4CA8 /* Metadata.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = Metadata.rb; sourceTree = "<group>"; }; 5070 FE3842302324D51A009DD445 /* OptionEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OptionEntry.h; sourceTree = "<group>"; }; 5071 FE3842312324D51B009DD445 /* OptionsList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OptionsList.h; sourceTree = "<group>"; }; 5065 5072 FE384EE11ADDB7AD0055DE2C /* JSDollarVM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSDollarVM.cpp; sourceTree = "<group>"; }; 5066 5073 FE384EE21ADDB7AD0055DE2C /* JSDollarVM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSDollarVM.h; sourceTree = "<group>"; }; … … 5078 5085 FE42388F1BE18C1200514737 /* JITSubGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JITSubGenerator.cpp; sourceTree = "<group>"; }; 5079 5086 FE476FF3207E85D40093CA2D /* JITCodeMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JITCodeMap.h; sourceTree = "<group>"; }; 5087 FE48BD4223245E8700F136D0 /* JSCConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JSCConfig.h; sourceTree = "<group>"; }; 5088 FE48BD4323245E8700F136D0 /* JSCConfig.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = JSCConfig.cpp; sourceTree = "<group>"; }; 5080 5089 FE48E6361EB1188F005D7A96 /* ObjectInitializationScope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObjectInitializationScope.h; sourceTree = "<group>"; }; 5081 5090 FE48E6371EB118AD005D7A96 /* ObjectInitializationScope.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ObjectInitializationScope.cpp; sourceTree = "<group>"; }; … … 7135 7144 86FA9E8F142BBB2D001773B7 /* JSBoundFunction.cpp */, 7136 7145 86FA9E90142BBB2E001773B7 /* JSBoundFunction.h */, 7146 FE48BD4323245E8700F136D0 /* JSCConfig.cpp */, 7147 FE48BD4223245E8700F136D0 /* JSCConfig.h */, 7137 7148 657CF45619BF6662004ACBF2 /* JSCallee.cpp */, 7138 7149 657CF45719BF6662004ACBF2 /* JSCallee.h */, … … 7355 7366 F692A8770255597D01FF60F7 /* Operations.cpp */, 7356 7367 F692A8780255597D01FF60F7 /* Operations.h */, 7368 FE3842302324D51A009DD445 /* OptionEntry.h */, 7357 7369 0FE228EA1436AB2300196C48 /* Options.cpp */, 7358 7370 0FE228EB1436AB2300196C48 /* Options.h */, 7371 FE3842312324D51B009DD445 /* OptionsList.h */, 7359 7372 37C738D11EDB5672003F2B0B /* ParseInt.h */, 7360 7373 868916A9155F285400CB2B9A /* PrivateName.h */, … … 9336 9349 A7D89D0217A0B90400773AD8 /* FTLLoweredNodeValue.h in Headers */, 9337 9350 0F2B9CF919D0BAC100B1D1B5 /* FTLOperations.h in Headers */, 9351 FE3842322324D51B009DD445 /* OptionEntry.h in Headers */, 9338 9352 0FD8A31C17D51F2200CA2C40 /* FTLOSREntry.h in Headers */, 9339 9353 0F235BDD17178E1C00690C7F /* FTLOSRExit.h in Headers */, … … 9525 9539 A125846F1B45A36000CC7F6C /* IntlNumberFormatPrototype.lut.h in Headers */, 9526 9540 A12BBFF21B044A8B00664B69 /* IntlObject.h in Headers */, 9541 FE48BD4423245E9300F136D0 /* JSCConfig.h in Headers */, 9527 9542 708EBE241CE8F35800453146 /* IntlObjectInlines.h in Headers */, 9528 9543 860BD801148EA6F200112B2F /* Intrinsic.h in Headers */, … … 9978 9993 0FE050291AA9095600D33B33 /* ScopedArgumentsTable.h in Headers */, 9979 9994 0FE0502B1AA9095600D33B33 /* ScopeOffset.h in Headers */, 9995 FE3842332324D51B009DD445 /* OptionsList.h in Headers */, 9980 9996 0F24E55217EE274900ABB217 /* ScratchRegisterAllocator.h in Headers */, 9981 9997 A5FD0068189AFE9C00633231 /* ScriptArguments.h in Headers */, … … 12192 12208 defaultConfigurationName = Production; 12193 12209 }; 12194 14CFB10523035EF300F0048C /* Build configuration list */ = {12210 14CFB10523035EF300F0048C /* Build configuration list for PBXAggregateTarget "Unlock Keychain" */ = { 12195 12211 isa = XCConfigurationList; 12196 12212 buildConfigurations = ( -
TabularUnified trunk/Source/JavaScriptCore/Sources.txt ¶
r249708 r249808 734 734 runtime/CommonSlowPaths.cpp 735 735 runtime/CompilationResult.cpp 736 tools/CompilerTimingScope.cpp737 736 runtime/Completion.cpp 738 737 runtime/ConfigFile.cpp … … 814 813 runtime/JSBigInt.cpp 815 814 runtime/JSBoundFunction.cpp 815 runtime/JSCConfig.cpp 816 816 runtime/JSCJSValue.cpp 817 817 runtime/JSCPtrTag.cpp … … 985 985 tools/CodeProfile.cpp 986 986 tools/CodeProfiling.cpp 987 tools/CompilerTimingScope.cpp 987 988 tools/FunctionOverrides.cpp 988 989 tools/FunctionWhitelist.cpp -
TabularUnified trunk/Source/JavaScriptCore/jit/ExecutableAllocator.cpp ¶
r248687 r249808 93 93 94 94 #if defined(FIXED_EXECUTABLE_MEMORY_POOL_SIZE_IN_MB) && FIXED_EXECUTABLE_MEMORY_POOL_SIZE_IN_MB > 0 95 static const size_t fixedExecutableMemoryPoolSize = FIXED_EXECUTABLE_MEMORY_POOL_SIZE_IN_MB * 1024 * 1024;95 static constexpr size_t fixedExecutableMemoryPoolSize = FIXED_EXECUTABLE_MEMORY_POOL_SIZE_IN_MB * 1024 * 1024; 96 96 #elif CPU(ARM) 97 static const size_t fixedExecutableMemoryPoolSize = 16 * 1024 * 1024;97 static constexpr size_t fixedExecutableMemoryPoolSize = 16 * 1024 * 1024; 98 98 #elif CPU(ARM64) 99 static const size_t fixedExecutableMemoryPoolSize = 128 * 1024 * 1024;99 static constexpr size_t fixedExecutableMemoryPoolSize = 128 * 1024 * 1024; 100 100 #elif CPU(X86_64) 101 static const size_t fixedExecutableMemoryPoolSize = 1024 * 1024 * 1024;101 static constexpr size_t fixedExecutableMemoryPoolSize = 1024 * 1024 * 1024; 102 102 #else 103 static const size_t fixedExecutableMemoryPoolSize = 32 * 1024 * 1024;103 static constexpr size_t fixedExecutableMemoryPoolSize = 32 * 1024 * 1024; 104 104 #endif 105 105 106 106 #if CPU(ARM) 107 static const double executablePoolReservationFraction = 0.15;107 static constexpr double executablePoolReservationFraction = 0.15; 108 108 #else 109 static const double executablePoolReservationFraction = 0.25; 110 #endif 111 112 #if ENABLE(SEPARATED_WX_HEAP) 113 JS_EXPORT_PRIVATE bool useFastPermisionsJITCopy { false }; 114 JS_EXPORT_PRIVATE JITWriteSeparateHeapsFunction jitWriteSeparateHeapsFunction; 115 #endif 116 117 #if !USE(EXECUTE_ONLY_JIT_WRITE_FUNCTION) && HAVE(REMAP_JIT) 118 static uintptr_t startOfFixedWritableMemoryPool; 119 #endif 120 121 class FixedVMPoolExecutableAllocator; 122 static FixedVMPoolExecutableAllocator* allocator = nullptr; 123 124 static bool s_isJITEnabled = true; 109 static constexpr double executablePoolReservationFraction = 0.25; 110 #endif 111 125 112 static bool isJITEnabled() 126 113 { 114 bool jitEnabled = !g_jscConfig.jitDisabled; 127 115 #if PLATFORM(IOS_FAMILY) && (CPU(ARM64) || CPU(ARM)) 128 return processHasEntitlement("dynamic-codesigning") && s_isJITEnabled;116 return processHasEntitlement("dynamic-codesigning") && jitEnabled; 129 117 #else 130 return s_isJITEnabled;118 return jitEnabled; 131 119 #endif 132 120 } … … 134 122 void ExecutableAllocator::setJITEnabled(bool enabled) 135 123 { 136 ASSERT(!allocator); 137 if (s_isJITEnabled == enabled) 124 bool jitEnabled = !g_jscConfig.jitDisabled; 125 ASSERT(!g_jscConfig.fixedVMPoolExecutableAllocator); 126 if (jitEnabled == enabled) 138 127 return; 139 128 140 s_isJITEnabled =enabled;129 g_jscConfig.jitDisabled = !enabled; 141 130 142 131 #if PLATFORM(IOS_FAMILY) && (CPU(ARM64) || CPU(ARM)) … … 194 183 #if ENABLE(FAST_JIT_PERMISSIONS) 195 184 if (os_thread_self_restrict_rwx_is_supported()) { 196 useFastPermisionsJITCopy = true;185 g_jscConfig.useFastPermisionsJITCopy = true; 197 186 os_thread_self_restrict_rwx_to_rx(); 198 187 } else … … 213 202 void* reservationEnd = reinterpret_cast<uint8_t*>(reservationBase) + reservationSize; 214 203 215 m_memoryStart = MacroAssemblerCodePtr<ExecutableMemoryPtrTag>(tagCodePtr<ExecutableMemoryPtrTag>(reservationBase));216 m_memoryEnd = MacroAssemblerCodePtr<ExecutableMemoryPtrTag>(tagCodePtr<ExecutableMemoryPtrTag>(reservationEnd));204 g_jscConfig.startExecutableMemory = tagCodePtr<ExecutableMemoryPtrTag>(reservationBase); 205 g_jscConfig.endExecutableMemory = tagCodePtr<ExecutableMemoryPtrTag>(reservationEnd); 217 206 } 218 207 } … … 220 209 virtual ~FixedVMPoolExecutableAllocator(); 221 210 222 void* memoryStart() { return m_memoryStart.untaggedExecutableAddress(); }223 void* memoryEnd() { return m_memoryEnd.untaggedExecutableAddress(); }211 void* memoryStart() { return untagCodePtr<ExecutableMemoryPtrTag>(g_jscConfig.startExecutableMemory); } 212 void* memoryEnd() { return untagCodePtr<ExecutableMemoryPtrTag>(g_jscConfig.endExecutableMemory); } 224 213 bool isJITPC(void* pc) { return memoryStart() <= pc && pc < memoryEnd(); } 225 214 … … 303 292 304 293 #if ENABLE(SEPARATED_WX_HEAP) 305 jitWriteSeparateHeapsFunction= reinterpret_cast<JITWriteSeparateHeapsFunction>(writeThunk.code().executableAddress());294 g_jscConfig.jitWriteSeparateHeaps = reinterpret_cast<JITWriteSeparateHeapsFunction>(writeThunk.code().executableAddress()); 306 295 #endif 307 296 } … … 382 371 static void genericWriteToJITRegion(off_t offset, const void* data, size_t dataSize) 383 372 { 384 memcpy((void*)( startOfFixedWritableMemoryPool + offset), data, dataSize);373 memcpy((void*)(g_jscConfig.startOfFixedWritableMemoryPool + offset), data, dataSize); 385 374 } 386 375 387 376 MacroAssemblerCodeRef<JITThunkPtrTag> jitWriteThunkGenerator(void* address, void*, size_t) 388 377 { 389 startOfFixedWritableMemoryPool = reinterpret_cast<uintptr_t>(address);378 g_jscConfig.startOfFixedWritableMemoryPool = reinterpret_cast<uintptr_t>(address); 390 379 void* function = reinterpret_cast<void*>(&genericWriteToJITRegion); 391 380 #if CPU(ARM_THUMB2) … … 408 397 private: 409 398 PageReservation m_reservation; 410 MacroAssemblerCodePtr<ExecutableMemoryPtrTag> m_memoryStart;411 MacroAssemblerCodePtr<ExecutableMemoryPtrTag> m_memoryEnd;412 399 }; 413 400 … … 419 406 void ExecutableAllocator::initializeUnderlyingAllocator() 420 407 { 421 ASSERT(!allocator);422 allocator = new FixedVMPoolExecutableAllocator();423 CodeProfiling::notifyAllocator( allocator);408 RELEASE_ASSERT(!g_jscConfig.fixedVMPoolExecutableAllocator); 409 g_jscConfig.fixedVMPoolExecutableAllocator = new FixedVMPoolExecutableAllocator(); 410 CodeProfiling::notifyAllocator(g_jscConfig.fixedVMPoolExecutableAllocator); 424 411 } 425 412 426 413 bool ExecutableAllocator::isValid() const 427 414 { 415 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 428 416 if (!allocator) 429 417 return Base::isValid(); … … 433 421 bool ExecutableAllocator::underMemoryPressure() 434 422 { 423 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 435 424 if (!allocator) 436 425 return Base::underMemoryPressure(); … … 440 429 double ExecutableAllocator::memoryPressureMultiplier(size_t addedMemoryUsage) 441 430 { 431 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 442 432 if (!allocator) 443 433 return Base::memoryPressureMultiplier(addedMemoryUsage); … … 459 449 RefPtr<ExecutableMemoryHandle> ExecutableAllocator::allocate(size_t sizeInBytes, void* ownerUID, JITCompilationEffort effort) 460 450 { 451 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 461 452 if (!allocator) 462 453 return Base::allocate(sizeInBytes, ownerUID, effort); … … 496 487 } 497 488 498 #if CPU(ARM64E)499 489 void* start = allocator->memoryStart(); 500 490 void* end = allocator->memoryEnd(); … … 503 493 RELEASE_ASSERT(start <= resultStart && resultStart < end); 504 494 RELEASE_ASSERT(start < resultEnd && resultEnd <= end); 505 #endif506 495 return result; 507 496 } … … 509 498 bool ExecutableAllocator::isValidExecutableMemory(const AbstractLocker& locker, void* address) 510 499 { 500 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 511 501 if (!allocator) 512 502 return Base::isValidExecutableMemory(locker, address); … … 516 506 Lock& ExecutableAllocator::getLock() const 517 507 { 508 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 518 509 if (!allocator) 519 510 return Base::getLock(); … … 523 514 size_t ExecutableAllocator::committedByteCount() 524 515 { 516 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 525 517 if (!allocator) 526 518 return Base::committedByteCount(); … … 531 523 void ExecutableAllocator::dumpProfile() 532 524 { 525 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 533 526 if (!allocator) 534 527 return; … … 539 532 void* startOfFixedExecutableMemoryPoolImpl() 540 533 { 534 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 541 535 if (!allocator) 542 536 return nullptr; … … 546 540 void* endOfFixedExecutableMemoryPoolImpl() 547 541 { 542 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 548 543 if (!allocator) 549 544 return nullptr; … … 553 548 bool isJITPC(void* pc) 554 549 { 550 auto* allocator = g_jscConfig.fixedVMPoolExecutableAllocator; 555 551 return allocator && allocator->isJITPC(pc); 556 552 } … … 558 554 void dumpJITMemory(const void* dst, const void* src, size_t size) 559 555 { 560 ASSERT(Options::dumpJITMemoryPath());556 RELEASE_ASSERT(Options::dumpJITMemoryPath()); 561 557 562 558 #if OS(DARWIN) … … 636 632 namespace JSC { 637 633 638 static ExecutableAllocator* executableAllocator;639 640 634 void ExecutableAllocator::initialize() 641 635 { 642 executableAllocator = new ExecutableAllocator;636 g_jscConfig.executableAllocator = new ExecutableAllocator; 643 637 } 644 638 645 639 ExecutableAllocator& ExecutableAllocator::singleton() 646 640 { 647 ASSERT( executableAllocator);648 return * executableAllocator;641 ASSERT(g_jscConfig.executableAllocator); 642 return *g_jscConfig.executableAllocator; 649 643 } 650 644 -
TabularUnified trunk/Source/JavaScriptCore/jit/ExecutableAllocator.h ¶
r249613 r249808 1 1 /* 2 * Copyright (C) 2008-201 8Apple Inc. All rights reserved.2 * Copyright (C) 2008-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 27 27 28 28 #include "JITCompilationEffort.h" 29 #include "JSCConfig.h" 29 30 #include "JSCPtrTag.h" 30 31 #include "Options.h" … … 116 117 JS_EXPORT_PRIVATE void dumpJITMemory(const void*, const void*, size_t); 117 118 118 #if ENABLE(SEPARATED_WX_HEAP)119 120 typedef void (*JITWriteSeparateHeapsFunction)(off_t, const void*, size_t);121 extern JS_EXPORT_PRIVATE JITWriteSeparateHeapsFunction jitWriteSeparateHeapsFunction;122 extern JS_EXPORT_PRIVATE bool useFastPermisionsJITCopy;123 124 #endif // ENABLE(SEPARATED_WX_HEAP)125 126 119 static ALWAYS_INLINE void* performJITMemcpy(void *dst, const void *src, size_t n) 127 120 { … … 139 132 #if ENABLE(FAST_JIT_PERMISSIONS) 140 133 #if ENABLE(SEPARATED_WX_HEAP) 141 if ( useFastPermisionsJITCopy)134 if (g_jscConfig.useFastPermisionsJITCopy) 142 135 #endif 143 136 { … … 150 143 151 144 #if ENABLE(SEPARATED_WX_HEAP) 152 if ( jitWriteSeparateHeapsFunction) {145 if (g_jscConfig.jitWriteSeparateHeaps) { 153 146 // Use execute-only write thunk for writes inside the JIT region. This is a variant of 154 147 // memcpy that takes an offset into the JIT region as its destination (first) parameter. 155 148 off_t offset = (off_t)((uintptr_t)dst - startOfFixedExecutableMemoryPool<uintptr_t>()); 156 retagCodePtr<JITThunkPtrTag, CFunctionPtrTag>( jitWriteSeparateHeapsFunction)(offset, src, n);149 retagCodePtr<JITThunkPtrTag, CFunctionPtrTag>(g_jscConfig.jitWriteSeparateHeaps)(offset, src, n); 157 150 return dst; 158 151 } -
TabularUnified trunk/Source/JavaScriptCore/jsc.cpp ¶
r249661 r249808 302 302 static EncodedJSValue JSC_HOST_CALL functionFullGC(ExecState*); 303 303 static EncodedJSValue JSC_HOST_CALL functionEdenGC(ExecState*); 304 static EncodedJSValue JSC_HOST_CALL functionForceGCSlowPaths(ExecState*);305 304 static EncodedJSValue JSC_HOST_CALL functionHeapSize(ExecState*); 306 305 static EncodedJSValue JSC_HOST_CALL functionCreateMemoryFootprint(ExecState*); … … 521 520 addFunction(vm, "fullGC", functionFullGC, 0); 522 521 addFunction(vm, "edenGC", functionEdenGC, 0); 523 addFunction(vm, "forceGCSlowPaths", functionForceGCSlowPaths, 0);524 522 addFunction(vm, "gcHeapSize", functionHeapSize, 0); 525 523 addFunction(vm, "MemoryFootprint", functionCreateMemoryFootprint, 0); … … 1371 1369 } 1372 1370 1373 EncodedJSValue JSC_HOST_CALL functionForceGCSlowPaths(ExecState*)1374 {1375 // It's best for this to be the first thing called in the1376 // JS program so the option is set to true before we JIT.1377 Options::forceGCSlowPaths() = true;1378 return JSValue::encode(jsUndefined());1379 }1380 1381 1371 EncodedJSValue JSC_HOST_CALL functionHeapSize(ExecState* exec) 1382 1372 { … … 2124 2114 VM& vm = exec->vm(); 2125 2115 JSObject* optionsObject = constructEmptyObject(exec); 2126 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \2116 #define READ_OPTION(type_, name_, defaultValue_, availability_, description_) \ 2127 2117 addOption(vm, optionsObject, Identifier::fromString(vm, #name_), Options::name_()); 2128 JSC_OPTIONS(FOR_EACH_OPTION)2129 #undef FOR_EACH_OPTION2118 FOR_EACH_JSC_OPTION(READ_OPTION) 2119 #undef READ_OPTION 2130 2120 return JSValue::encode(optionsObject); 2131 2121 } … … 3099 3089 { 3100 3090 // Need to override and enable restricted options before we start parsing options below. 3101 Options::enableRestrictedOptions(true);3091 Config::enableRestrictedOptions(); 3102 3092 3103 3093 WTF::initializeMainThread(); -
TabularUnified trunk/Source/JavaScriptCore/runtime/ConfigFile.cpp ¶
r248552 r249808 466 466 467 467 if (!jscOptionsBuilder.isEmpty()) { 468 Options::enableRestrictedOptions(true);468 JSC::Config::enableRestrictedOptions(); 469 469 Options::setOptions(jscOptionsBuilder.toString().utf8().data()); 470 470 } -
TabularUnified trunk/Source/JavaScriptCore/runtime/InitializeThreading.cpp ¶
r248187 r249808 34 34 #include "Heap.h" 35 35 #include "Identifier.h" 36 #include "JSCConfig.h" 36 37 #include "JSCPtrTag.h" 37 38 #include "JSDateMath.h" … … 63 64 64 65 std::call_once(initializeThreadingOnceFlag, []{ 66 RELEASE_ASSERT(!g_jscConfig.initializeThreadingHasBeenCalled); 67 g_jscConfig.initializeThreadingHasBeenCalled = true; 68 65 69 WTF::initializeThreading(); 66 70 Options::initialize(); -
TabularUnified trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp ¶
r249509 r249808 1823 1823 void JSGlobalObject::exposeDollarVM(VM& vm) 1824 1824 { 1825 RELEASE_ASSERT(g_jscConfig.restrictedOptionsEnabled && Options::useDollarVM()); 1825 1826 if (hasOwnProperty(globalExec(), vm.propertyNames->builtinNames().dollarVMPrivateName())) 1826 1827 return; -
TabularUnified trunk/Source/JavaScriptCore/runtime/Options.cpp ¶
r249075 r249808 57 57 namespace JSC { 58 58 59 namespace {60 #ifdef NDEBUG61 bool restrictedOptionsEnabled = false;62 #else63 bool restrictedOptionsEnabled = true;64 #endif65 }66 67 void Options::enableRestrictedOptions(bool enableOrNot)68 {69 restrictedOptionsEnabled = enableOrNot;70 }71 72 59 static bool parse(const char* string, bool& value) 73 60 { … … 149 136 { 150 137 if (availability == Availability::Restricted) 151 return restrictedOptionsEnabled;138 return g_jscConfig.restrictedOptionsEnabled; 152 139 ASSERT(availability == Availability::Configurable); 153 140 … … 296 283 } 297 284 298 Options::Entry Options::s_options[Options::numberOfOptions];299 Options::Entry Options::s_defaultOptions[Options::numberOfOptions];300 301 285 // Realize the names for each of the options: 302 286 const Options::EntryInfo Options::s_optionsInfo[Options::numberOfOptions] = { 303 #define F OR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \304 { #name_, description_, Options::Type::type_ ##Type, Availability::availability_ },305 JSC_OPTIONS(FOR_EACH_OPTION)306 #undef F OR_EACH_OPTION287 #define FILL_OPTION_INFO(type_, name_, defaultValue_, availability_, description_) \ 288 { #name_, description_, Options::Type::type_, Availability::availability_ }, 289 FOR_EACH_JSC_OPTION(FILL_OPTION_INFO) 290 #undef FILL_OPTION_INFO 307 291 }; 308 292 … … 333 317 for (int i = 0; i < numberOfOptionsToScale; i++) { 334 318 Option option(optionsToScale[i].id); 335 ASSERT(option.type() == Options::Type:: int32Type);319 ASSERT(option.type() == Options::Type::Int32); 336 320 option.int32Val() *= scaleFactor; 337 321 option.int32Val() = std::max(option.int32Val(), optionsToScale[i].minVal); … … 530 514 initializeOptionsOnceFlag, 531 515 [] { 516 #ifndef NDEBUG 517 Config::enableRestrictedOptions(); 518 #endif 532 519 // Initialize each of the options with their default values: 533 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \534 name_() = defaultValue_; 520 #define INIT_OPTION(type_, name_, defaultValue_, availability_, description_) \ 521 name_() = defaultValue_; \ 535 522 name_##Default() = defaultValue_; 536 JSC_OPTIONS(FOR_EACH_OPTION)537 #undef FOR_EACH_OPTION523 FOR_EACH_JSC_OPTION(INIT_OPTION) 524 #undef INIT_OPTION 538 525 539 526 overrideDefaults(); … … 556 543 CRASH(); 557 544 #else // PLATFORM(COCOA) 558 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \545 #define OVERRIDE_OPTION_WITH_HEURISTICS(type_, name_, defaultValue_, availability_, description_) \ 559 546 overrideOptionWithHeuristic(name_(), name_##ID, "JSC_" #name_, Availability::availability_); 560 JSC_OPTIONS(FOR_EACH_OPTION)561 #undef FOR_EACH_OPTION547 FOR_EACH_JSC_OPTION(OVERRIDE_OPTION_WITH_HEURISTICS) 548 #undef OVERRIDE_OPTION_WITH_HEURISTICS 562 549 #endif // PLATFORM(COCOA) 563 550 564 #define FOR_EACH_OPTION(aliasedName_, unaliasedName_, equivalence_) \551 #define OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS(aliasedName_, unaliasedName_, equivalence_) \ 565 552 overrideAliasedOptionWithHeuristic("JSC_" #aliasedName_); 566 JSC_ALIASED_OPTIONS(FOR_EACH_OPTION)567 #undef FOR_EACH_OPTION553 FOR_EACH_JSC_ALIASED_OPTION(OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS) 554 #undef OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS 568 555 569 556 #if 0 … … 643 630 bool Options::setOptions(const char* optionsStr) 644 631 { 632 RELEASE_ASSERT(!g_jscConfig.isPermanentlyFrozen); 645 633 Vector<char*> options; 646 634 … … 737 725 // For each option, check if the specify arg is a match. If so, set the arg 738 726 // if the value makes sense. Otherwise, move on to checking the next option. 739 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \727 #define SET_OPTION_IF_MATCH(type_, name_, defaultValue_, availability_, description_) \ 740 728 if (strlen(#name_) == static_cast<size_t>(equalStr - arg) \ 741 729 && !strncmp(arg, #name_, equalStr - arg)) { \ … … 743 731 && !isAvailable(name_##ID, Availability::availability_)) \ 744 732 return false; \ 745 type_ value;\733 OptionEntry::type_ value; \ 746 734 value = (defaultValue_); \ 747 735 bool success = parse(valueStr, value); \ … … 755 743 } 756 744 757 JSC_OPTIONS(FOR_EACH_OPTION)758 #undef FOR_EACH_OPTION745 FOR_EACH_JSC_OPTION(SET_OPTION_IF_MATCH) 746 #undef SET_OPTION_IF_MATCH 759 747 760 748 return false; // No option matched. … … 799 787 } 800 788 801 JSC_ALIASED_OPTIONS(FOR_EACH_OPTION)789 FOR_EACH_JSC_ALIASED_OPTION(FOR_EACH_OPTION) 802 790 #undef FOR_EACH_OPTION 803 791 … … 891 879 { 892 880 switch (type()) { 893 case Options::Type:: boolType:894 builder.append(m_entry. boolVal ? "true" : "false");881 case Options::Type::Bool: 882 builder.append(m_entry.valBool ? "true" : "false"); 895 883 break; 896 case Options::Type:: unsignedType:897 builder.appendNumber(m_entry. unsignedVal);884 case Options::Type::Unsigned: 885 builder.appendNumber(m_entry.valUnsigned); 898 886 break; 899 case Options::Type:: sizeType:900 builder.appendNumber(m_entry. sizeVal);887 case Options::Type::Size: 888 builder.appendNumber(m_entry.valSize); 901 889 break; 902 case Options::Type:: doubleType:903 builder.appendFixedPrecisionNumber(m_entry. doubleVal);890 case Options::Type::Double: 891 builder.appendFixedPrecisionNumber(m_entry.valDouble); 904 892 break; 905 case Options::Type:: int32Type:906 builder.appendNumber(m_entry. int32Val);893 case Options::Type::Int32: 894 builder.appendNumber(m_entry.valInt32); 907 895 break; 908 case Options::Type:: optionRangeType:909 builder.append(m_entry. optionRangeVal.rangeString());896 case Options::Type::OptionRange: 897 builder.append(m_entry.valOptionRange.rangeString()); 910 898 break; 911 case Options::Type:: optionStringType: {912 const char* option = m_entry. optionStringVal;899 case Options::Type::OptionString: { 900 const char* option = m_entry.valOptionString; 913 901 if (!option) 914 902 option = ""; … … 918 906 break; 919 907 } 920 case Options::Type:: gcLogLevelType: {921 builder.append(GCLogging::levelAsString(m_entry. gcLogLevelVal));908 case Options::Type::GCLogLevel: { 909 builder.append(GCLogging::levelAsString(m_entry.valGCLogLevel)); 922 910 break; 923 911 } … … 928 916 { 929 917 switch (type()) { 930 case Options::Type:: boolType:931 return m_entry. boolVal == other.m_entry.boolVal;932 case Options::Type:: unsignedType:933 return m_entry. unsignedVal == other.m_entry.unsignedVal;934 case Options::Type:: sizeType:935 return m_entry. sizeVal == other.m_entry.sizeVal;936 case Options::Type:: doubleType:937 return (m_entry. doubleVal == other.m_entry.doubleVal) || (std::isnan(m_entry.doubleVal) && std::isnan(other.m_entry.doubleVal));938 case Options::Type:: int32Type:939 return m_entry. int32Val == other.m_entry.int32Val;940 case Options::Type:: optionRangeType:941 return m_entry. optionRangeVal.rangeString() == other.m_entry.optionRangeVal.rangeString();942 case Options::Type:: optionStringType:943 return (m_entry. optionStringVal == other.m_entry.optionStringVal)944 || (m_entry. optionStringVal && other.m_entry.optionStringVal && !strcmp(m_entry.optionStringVal, other.m_entry.optionStringVal));945 case Options::Type:: gcLogLevelType:946 return m_entry. gcLogLevelVal == other.m_entry.gcLogLevelVal;918 case Options::Type::Bool: 919 return m_entry.valBool == other.m_entry.valBool; 920 case Options::Type::Unsigned: 921 return m_entry.valUnsigned == other.m_entry.valUnsigned; 922 case Options::Type::Size: 923 return m_entry.valSize == other.m_entry.valSize; 924 case Options::Type::Double: 925 return (m_entry.valDouble == other.m_entry.valDouble) || (std::isnan(m_entry.valDouble) && std::isnan(other.m_entry.valDouble)); 926 case Options::Type::Int32: 927 return m_entry.valInt32 == other.m_entry.valInt32; 928 case Options::Type::OptionRange: 929 return m_entry.valOptionRange.rangeString() == other.m_entry.valOptionRange.rangeString(); 930 case Options::Type::OptionString: 931 return (m_entry.valOptionString == other.m_entry.valOptionString) 932 || (m_entry.valOptionString && other.m_entry.valOptionString && !strcmp(m_entry.valOptionString, other.m_entry.valOptionString)); 933 case Options::Type::GCLogLevel: 934 return m_entry.valGCLogLevel == other.m_entry.valGCLogLevel; 947 935 } 948 936 return false; … … 950 938 951 939 } // namespace JSC 952 -
TabularUnified trunk/Source/JavaScriptCore/runtime/Options.h ¶
r249075 r249808 26 26 #pragma once 27 27 28 #include " GCLogging.h"28 #include "JSCConfig.h" 29 29 #include "JSExportMacros.h" 30 30 #include <stdint.h> … … 42 42 // How do JSC VM options work? 43 43 // =========================== 44 // The JSC_OPTIONS() macro below defines a list of all JSC options in use,44 // The FOR_EACH_JSC_OPTION() macro below defines a list of all JSC options in use, 45 45 // along with their types and default values. The options values are actually 46 // realized as an array of Option s::Entry elements.46 // realized as an array of OptionEntry elements in JSC::Config. 47 47 // 48 48 // Options::initialize() will initialize the array of options values with 49 // the defaults specified in JSC_OPTIONS() below. After that, the values can49 // the defaults specified in FOR_EACH_JSC_OPTION() below. After that, the values can 50 50 // be programmatically read and written to using an accessor method with the 51 51 // same name as the option. For example, the option "useJIT" can be read and … … 68 68 // ensure that the new values set are sane and reasonable for your own run. 69 69 70 class OptionRange {71 private:72 enum RangeState { Uninitialized, InitError, Normal, Inverted };73 public:74 OptionRange& operator= (const int& rhs)75 { // Only needed for initialization76 if (!rhs) {77 m_state = Uninitialized;78 m_rangeString = 0;79 m_lowLimit = 0;80 m_highLimit = 0;81 }82 return *this;83 }84 85 bool init(const char*);86 bool isInRange(unsigned);87 const char* rangeString() const { return (m_state > InitError) ? m_rangeString : s_nullRangeStr; }88 89 void dump(PrintStream& out) const;90 91 private:92 static const char* const s_nullRangeStr;93 94 RangeState m_state;95 const char* m_rangeString;96 unsigned m_lowLimit;97 unsigned m_highLimit;98 };99 100 typedef OptionRange optionRange;101 typedef const char* optionString;102 103 70 #if PLATFORM(IOS_FAMILY) 104 71 #define MAXIMUM_NUMBER_OF_FTL_COMPILER_THREADS 2 … … 112 79 constexpr bool enableWebAssemblyStreamingApi = false; 113 80 #endif 114 115 #define JSC_OPTIONS(v) \116 v(bool, useKernTCSM, true, Normal, "Note: this needs to go before other options since they depend on this value.") \117 v(bool, validateOptions, false, Normal, "crashes if mis-typed JSC options were passed to the VM") \118 v(unsigned, dumpOptions, 0, Normal, "dumps JSC options (0 = None, 1 = Overridden only, 2 = All, 3 = Verbose)") \119 v(optionString, configFile, nullptr, Normal, "file to configure JSC options and logging location") \120 \121 v(bool, useLLInt, true, Normal, "allows the LLINT to be used if true") \122 v(bool, useJIT, jitEnabledByDefault(), Normal, "allows the executable pages to be allocated for JIT and thunks if true") \123 v(bool, useBaselineJIT, true, Normal, "allows the baseline JIT to be used if true") \124 v(bool, useDFGJIT, true, Normal, "allows the DFG JIT to be used if true") \125 v(bool, useRegExpJIT, jitEnabledByDefault(), Normal, "allows the RegExp JIT to be used if true") \126 v(bool, useDOMJIT, is64Bit(), Normal, "allows the DOMJIT to be used if true") \127 \128 v(bool, reportMustSucceedExecutableAllocations, false, Normal, nullptr) \129 \130 v(unsigned, maxPerThreadStackUsage, 4 * MB, Normal, "Max allowed stack usage by the VM") \131 v(unsigned, softReservedZoneSize, 128 * KB, Normal, "A buffer greater than reservedZoneSize that reserves space for stringifying exceptions.") \132 v(unsigned, reservedZoneSize, 64 * KB, Normal, "The amount of stack space we guarantee to our clients (and to interal VM code that does not call out to clients).") \133 \134 v(bool, crashIfCantAllocateJITMemory, false, Normal, nullptr) \135 v(unsigned, jitMemoryReservationSize, 0, Normal, "Set this number to change the executable allocation size in ExecutableAllocatorFixedVMPool. (In bytes.)") \136 v(bool, useSeparatedWXHeap, false, Normal, nullptr) \137 \138 v(bool, forceCodeBlockLiveness, false, Normal, nullptr) \139 v(bool, forceICFailure, false, Normal, nullptr) \140 \141 v(unsigned, repatchCountForCoolDown, 8, Normal, nullptr) \142 v(unsigned, initialCoolDownCount, 20, Normal, nullptr) \143 v(unsigned, repatchBufferingCountdown, 8, Normal, nullptr) \144 \145 v(bool, dumpGeneratedBytecodes, false, Normal, nullptr) \146 v(bool, dumpBytecodeLivenessResults, false, Normal, nullptr) \147 v(bool, validateBytecode, false, Normal, nullptr) \148 v(bool, forceDebuggerBytecodeGeneration, false, Normal, nullptr) \149 v(bool, dumpBytecodesBeforeGeneratorification, false, Normal, nullptr) \150 \151 v(bool, useFunctionDotArguments, true, Normal, nullptr) \152 v(bool, useTailCalls, true, Normal, nullptr) \153 v(bool, optimizeRecursiveTailCalls, true, Normal, nullptr) \154 v(bool, alwaysUseShadowChicken, false, Normal, nullptr) \155 v(unsigned, shadowChickenLogSize, 1000, Normal, nullptr) \156 v(unsigned, shadowChickenMaxTailDeletedFramesSize, 128, Normal, nullptr) \157 \158 /* dumpDisassembly implies dumpDFGDisassembly. */ \159 v(bool, dumpDisassembly, false, Normal, "dumps disassembly of all JIT compiled code upon compilation") \160 v(bool, asyncDisassembly, false, Normal, nullptr) \161 v(bool, dumpDFGDisassembly, false, Normal, "dumps disassembly of DFG function upon compilation") \162 v(bool, dumpFTLDisassembly, false, Normal, "dumps disassembly of FTL function upon compilation") \163 v(bool, dumpRegExpDisassembly, false, Normal, "dumps disassembly of RegExp upon compilation") \164 v(bool, dumpAllDFGNodes, false, Normal, nullptr) \165 v(bool, logJITCodeForPerf, false, Configurable, nullptr) \166 v(optionRange, bytecodeRangeToJITCompile, 0, Normal, "bytecode size range to allow compilation on, e.g. 1:100") \167 v(optionRange, bytecodeRangeToDFGCompile, 0, Normal, "bytecode size range to allow DFG compilation on, e.g. 1:100") \168 v(optionRange, bytecodeRangeToFTLCompile, 0, Normal, "bytecode size range to allow FTL compilation on, e.g. 1:100") \169 v(optionString, jitWhitelist, nullptr, Normal, "file with list of function signatures to allow compilation on") \170 v(optionString, dfgWhitelist, nullptr, Normal, "file with list of function signatures to allow DFG compilation on") \171 v(optionString, ftlWhitelist, nullptr, Normal, "file with list of function signatures to allow FTL compilation on") \172 v(bool, dumpSourceAtDFGTime, false, Normal, "dumps source code of JS function being DFG compiled") \173 v(bool, dumpBytecodeAtDFGTime, false, Normal, "dumps bytecode of JS function being DFG compiled") \174 v(bool, dumpGraphAfterParsing, false, Normal, nullptr) \175 v(bool, dumpGraphAtEachPhase, false, Normal, nullptr) \176 v(bool, dumpDFGGraphAtEachPhase, false, Normal, "dumps the DFG graph at each phase of DFG compilation (note this excludes DFG graphs during FTL compilation)") \177 v(bool, dumpDFGFTLGraphAtEachPhase, false, Normal, "dumps the DFG graph at each phase of DFG compilation when compiling FTL code") \178 v(bool, dumpB3GraphAtEachPhase, false, Normal, "dumps the B3 graph at each phase of compilation") \179 v(bool, dumpAirGraphAtEachPhase, false, Normal, "dumps the Air graph at each phase of compilation") \180 v(bool, verboseDFGBytecodeParsing, false, Normal, nullptr) \181 v(bool, safepointBeforeEachPhase, true, Normal, nullptr) \182 v(bool, verboseCompilation, false, Normal, nullptr) \183 v(bool, verboseFTLCompilation, false, Normal, nullptr) \184 v(bool, logCompilationChanges, false, Normal, nullptr) \185 v(bool, useProbeOSRExit, false, Normal, nullptr) \186 v(bool, printEachOSRExit, false, Normal, nullptr) \187 v(bool, validateGraph, false, Normal, nullptr) \188 v(bool, validateGraphAtEachPhase, false, Normal, nullptr) \189 v(bool, verboseValidationFailure, false, Normal, nullptr) \190 v(bool, verboseOSR, false, Normal, nullptr) \191 v(bool, verboseDFGOSRExit, false, Normal, nullptr) \192 v(bool, verboseFTLOSRExit, false, Normal, nullptr) \193 v(bool, verboseCallLink, false, Normal, nullptr) \194 v(bool, verboseCompilationQueue, false, Normal, nullptr) \195 v(bool, reportCompileTimes, false, Normal, "dumps JS function signature and the time it took to compile in all tiers") \196 v(bool, reportBaselineCompileTimes, false, Normal, "dumps JS function signature and the time it took to BaselineJIT compile") \197 v(bool, reportDFGCompileTimes, false, Normal, "dumps JS function signature and the time it took to DFG and FTL compile") \198 v(bool, reportFTLCompileTimes, false, Normal, "dumps JS function signature and the time it took to FTL compile") \199 v(bool, reportTotalCompileTimes, false, Normal, nullptr) \200 v(bool, reportParseTimes, false, Normal, "dumps JS function signature and the time it took to parse") \201 v(bool, reportBytecodeCompileTimes, false, Normal, "dumps JS function signature and the time it took to bytecode compile") \202 v(bool, countParseTimes, false, Normal, "counts parse times") \203 v(bool, verboseExitProfile, false, Normal, nullptr) \204 v(bool, verboseCFA, false, Normal, nullptr) \205 v(bool, verboseDFGFailure, false, Normal, nullptr) \206 v(bool, verboseFTLToJSThunk, false, Normal, nullptr) \207 v(bool, verboseFTLFailure, false, Normal, nullptr) \208 v(bool, alwaysComputeHash, false, Normal, nullptr) \209 v(bool, testTheFTL, false, Normal, nullptr) \210 v(bool, verboseSanitizeStack, false, Normal, nullptr) \211 v(bool, useGenerationalGC, true, Normal, nullptr) \212 v(bool, useConcurrentGC, true, Normal, nullptr) \213 v(bool, collectContinuously, false, Normal, nullptr) \214 v(double, collectContinuouslyPeriodMS, 1, Normal, nullptr) \215 v(bool, forceFencedBarrier, false, Normal, nullptr) \216 v(bool, verboseVisitRace, false, Normal, nullptr) \217 v(bool, optimizeParallelSlotVisitorsForStoppedMutator, false, Normal, nullptr) \218 v(unsigned, largeHeapSize, 32 * 1024 * 1024, Normal, nullptr) \219 v(unsigned, smallHeapSize, 1 * 1024 * 1024, Normal, nullptr) \220 v(double, smallHeapRAMFraction, 0.25, Normal, nullptr) \221 v(double, smallHeapGrowthFactor, 2, Normal, nullptr) \222 v(double, mediumHeapRAMFraction, 0.5, Normal, nullptr) \223 v(double, mediumHeapGrowthFactor, 1.5, Normal, nullptr) \224 v(double, largeHeapGrowthFactor, 1.24, Normal, nullptr) \225 v(double, miniVMHeapGrowthFactor, 1.27, Normal, nullptr) \226 v(double, criticalGCMemoryThreshold, 0.80, Normal, "percent memory in use the GC considers critical. The collector is much more aggressive above this threshold") \227 v(double, minimumMutatorUtilization, 0, Normal, nullptr) \228 v(double, maximumMutatorUtilization, 0.7, Normal, nullptr) \229 v(double, epsilonMutatorUtilization, 0.01, Normal, nullptr) \230 v(double, concurrentGCMaxHeadroom, 1.5, Normal, nullptr) \231 v(double, concurrentGCPeriodMS, 2, Normal, nullptr) \232 v(bool, useStochasticMutatorScheduler, true, Normal, nullptr) \233 v(double, minimumGCPauseMS, 0.3, Normal, nullptr) \234 v(double, gcPauseScale, 0.3, Normal, nullptr) \235 v(double, gcIncrementBytes, 10000, Normal, nullptr) \236 v(double, gcIncrementMaxBytes, 100000, Normal, nullptr) \237 v(double, gcIncrementScale, 0, Normal, nullptr) \238 v(bool, scribbleFreeCells, false, Normal, nullptr) \239 v(double, sizeClassProgression, 1.4, Normal, nullptr) \240 v(unsigned, largeAllocationCutoff, 100000, Normal, nullptr) \241 v(bool, dumpSizeClasses, false, Normal, nullptr) \242 v(bool, useBumpAllocator, true, Normal, nullptr) \243 v(bool, stealEmptyBlocksFromOtherAllocators, true, Normal, nullptr) \244 v(bool, eagerlyUpdateTopCallFrame, false, Normal, nullptr) \245 v(bool, dumpZappedCellCrashData, false, Normal, nullptr) \246 \247 v(bool, useOSREntryToDFG, true, Normal, nullptr) \248 v(bool, useOSREntryToFTL, true, Normal, nullptr) \249 \250 v(bool, useFTLJIT, true, Normal, "allows the FTL JIT to be used if true") \251 v(bool, useFTLTBAA, true, Normal, nullptr) \252 v(bool, validateFTLOSRExitLiveness, false, Normal, nullptr) \253 v(unsigned, defaultB3OptLevel, 2, Normal, nullptr) \254 v(bool, b3AlwaysFailsBeforeCompile, false, Normal, nullptr) \255 v(bool, b3AlwaysFailsBeforeLink, false, Normal, nullptr) \256 v(bool, ftlCrashes, false, Normal, nullptr) /* fool-proof way of checking that you ended up in the FTL. ;-) */\257 v(bool, clobberAllRegsInFTLICSlowPath, !ASSERT_DISABLED, Normal, nullptr) \258 v(bool, enableJITDebugAssertions, !ASSERT_DISABLED, Normal, nullptr) \259 v(bool, useAccessInlining, true, Normal, nullptr) \260 v(unsigned, maxAccessVariantListSize, 8, Normal, nullptr) \261 v(bool, usePolyvariantDevirtualization, true, Normal, nullptr) \262 v(bool, usePolymorphicAccessInlining, true, Normal, nullptr) \263 v(unsigned, maxPolymorphicAccessInliningListSize, 8, Normal, nullptr) \264 v(bool, usePolymorphicCallInlining, true, Normal, nullptr) \265 v(bool, usePolymorphicCallInliningForNonStubStatus, false, Normal, nullptr) \266 v(unsigned, maxPolymorphicCallVariantListSize, 15, Normal, nullptr) \267 v(unsigned, maxPolymorphicCallVariantListSizeForTopTier, 5, Normal, nullptr) \268 v(unsigned, maxPolymorphicCallVariantListSizeForWebAssemblyToJS, 5, Normal, nullptr) \269 v(unsigned, maxPolymorphicCallVariantsForInlining, 5, Normal, nullptr) \270 v(unsigned, frequentCallThreshold, 2, Normal, nullptr) \271 v(double, minimumCallToKnownRate, 0.51, Normal, nullptr) \272 v(bool, createPreHeaders, true, Normal, nullptr) \273 v(bool, useMovHintRemoval, true, Normal, nullptr) \274 v(bool, usePutStackSinking, true, Normal, nullptr) \275 v(bool, useObjectAllocationSinking, true, Normal, nullptr) \276 v(bool, useValueRepElimination, true, Normal, nullptr) \277 v(bool, useArityFixupInlining, true, Normal, nullptr) \278 v(bool, logExecutableAllocation, false, Normal, nullptr) \279 v(unsigned, maxDFGNodesInBasicBlockForPreciseAnalysis, 20000, Normal, "Disable precise but costly analysis and give conservative results if the number of DFG nodes in a block exceeds this threshold") \280 \281 v(bool, useConcurrentJIT, true, Normal, "allows the DFG / FTL compilation in threads other than the executing JS thread") \282 v(unsigned, numberOfDFGCompilerThreads, computeNumberOfWorkerThreads(3, 2) - 1, Normal, nullptr) \283 v(unsigned, numberOfFTLCompilerThreads, computeNumberOfWorkerThreads(MAXIMUM_NUMBER_OF_FTL_COMPILER_THREADS, 2) - 1, Normal, nullptr) \284 v(int32, priorityDeltaOfDFGCompilerThreads, computePriorityDeltaOfWorkerThreads(-1, 0), Normal, nullptr) \285 v(int32, priorityDeltaOfFTLCompilerThreads, computePriorityDeltaOfWorkerThreads(-2, 0), Normal, nullptr) \286 v(int32, priorityDeltaOfWasmCompilerThreads, computePriorityDeltaOfWorkerThreads(-1, 0), Normal, nullptr) \287 \288 v(bool, useProfiler, false, Normal, nullptr) \289 v(bool, disassembleBaselineForProfiler, true, Normal, nullptr) \290 \291 v(bool, useArchitectureSpecificOptimizations, true, Normal, nullptr) \292 \293 v(bool, breakOnThrow, false, Normal, nullptr) \294 \295 v(unsigned, maximumOptimizationCandidateBytecodeCost, 100000, Normal, nullptr) \296 \297 v(unsigned, maximumFunctionForCallInlineCandidateBytecodeCost, 120, Normal, nullptr) \298 v(unsigned, maximumFunctionForClosureCallInlineCandidateBytecodeCost, 100, Normal, nullptr) \299 v(unsigned, maximumFunctionForConstructInlineCandidateBytecoodeCost, 100, Normal, nullptr) \300 \301 v(unsigned, maximumFTLCandidateBytecodeCost, 20000, Normal, nullptr) \302 \303 /* Depth of inline stack, so 1 = no inlining, 2 = one level, etc. */ \304 v(unsigned, maximumInliningDepth, 5, Normal, "maximum allowed inlining depth. Depth of 1 means no inlining") \305 v(unsigned, maximumInliningRecursion, 2, Normal, nullptr) \306 \307 /* Maximum size of a caller for enabling inlining. This is purely to protect us */\308 /* from super long compiles that take a lot of memory. */\309 v(unsigned, maximumInliningCallerBytecodeCost, 10000, Normal, nullptr) \310 \311 v(unsigned, maximumVarargsForInlining, 100, Normal, nullptr) \312 \313 v(unsigned, maximumBinaryStringSwitchCaseLength, 50, Normal, nullptr) \314 v(unsigned, maximumBinaryStringSwitchTotalLength, 2000, Normal, nullptr) \315 \316 v(double, jitPolicyScale, 1.0, Normal, "scale JIT thresholds to this specified ratio between 0.0 (compile ASAP) and 1.0 (compile like normal).") \317 v(bool, forceEagerCompilation, false, Normal, nullptr) \318 v(int32, thresholdForJITAfterWarmUp, 500, Normal, nullptr) \319 v(int32, thresholdForJITSoon, 100, Normal, nullptr) \320 \321 v(int32, thresholdForOptimizeAfterWarmUp, 1000, Normal, nullptr) \322 v(int32, thresholdForOptimizeAfterLongWarmUp, 1000, Normal, nullptr) \323 v(int32, thresholdForOptimizeSoon, 1000, Normal, nullptr) \324 v(int32, executionCounterIncrementForLoop, 1, Normal, nullptr) \325 v(int32, executionCounterIncrementForEntry, 15, Normal, nullptr) \326 \327 v(int32, thresholdForFTLOptimizeAfterWarmUp, 100000, Normal, nullptr) \328 v(int32, thresholdForFTLOptimizeSoon, 1000, Normal, nullptr) \329 v(int32, ftlTierUpCounterIncrementForLoop, 1, Normal, nullptr) \330 v(int32, ftlTierUpCounterIncrementForReturn, 15, Normal, nullptr) \331 v(unsigned, ftlOSREntryFailureCountForReoptimization, 15, Normal, nullptr) \332 v(unsigned, ftlOSREntryRetryThreshold, 100, Normal, nullptr) \333 \334 v(int32, evalThresholdMultiplier, 10, Normal, nullptr) \335 v(unsigned, maximumEvalCacheableSourceLength, 256, Normal, nullptr) \336 \337 v(bool, randomizeExecutionCountsBetweenCheckpoints, false, Normal, nullptr) \338 v(int32, maximumExecutionCountsBetweenCheckpointsForBaseline, 1000, Normal, nullptr) \339 v(int32, maximumExecutionCountsBetweenCheckpointsForUpperTiers, 50000, Normal, nullptr) \340 \341 v(unsigned, likelyToTakeSlowCaseMinimumCount, 20, Normal, nullptr) \342 v(unsigned, couldTakeSlowCaseMinimumCount, 10, Normal, nullptr) \343 \344 v(unsigned, osrExitCountForReoptimization, 100, Normal, nullptr) \345 v(unsigned, osrExitCountForReoptimizationFromLoop, 5, Normal, nullptr) \346 \347 v(unsigned, reoptimizationRetryCounterMax, 0, Normal, nullptr) \348 \349 v(unsigned, minimumOptimizationDelay, 1, Normal, nullptr) \350 v(unsigned, maximumOptimizationDelay, 5, Normal, nullptr) \351 v(double, desiredProfileLivenessRate, 0.75, Normal, nullptr) \352 v(double, desiredProfileFullnessRate, 0.35, Normal, nullptr) \353 \354 v(double, doubleVoteRatioForDoubleFormat, 2, Normal, nullptr) \355 v(double, structureCheckVoteRatioForHoisting, 1, Normal, nullptr) \356 v(double, checkArrayVoteRatioForHoisting, 1, Normal, nullptr) \357 \358 v(unsigned, maximumDirectCallStackSize, 200, Normal, nullptr) \359 \360 v(unsigned, minimumNumberOfScansBetweenRebalance, 100, Normal, nullptr) \361 v(unsigned, numberOfGCMarkers, computeNumberOfGCMarkers(8), Normal, nullptr) \362 v(bool, useParallelMarkingConstraintSolver, true, Normal, nullptr) \363 v(unsigned, opaqueRootMergeThreshold, 1000, Normal, nullptr) \364 v(double, minHeapUtilization, 0.8, Normal, nullptr) \365 v(double, minMarkedBlockUtilization, 0.9, Normal, nullptr) \366 v(unsigned, slowPathAllocsBetweenGCs, 0, Normal, "force a GC on every Nth slow path alloc, where N is specified by this option") \367 \368 v(double, percentCPUPerMBForFullTimer, 0.0003125, Normal, nullptr) \369 v(double, percentCPUPerMBForEdenTimer, 0.0025, Normal, nullptr) \370 v(double, collectionTimerMaxPercentCPU, 0.05, Normal, nullptr) \371 \372 v(bool, forceWeakRandomSeed, false, Normal, nullptr) \373 v(unsigned, forcedWeakRandomSeed, 0, Normal, nullptr) \374 \375 v(bool, useZombieMode, false, Normal, "debugging option to scribble over dead objects with 0xbadbeef0") \376 v(bool, useImmortalObjects, false, Normal, "debugging option to keep all objects alive forever") \377 v(bool, sweepSynchronously, false, Normal, "debugging option to sweep all dead objects synchronously at GC end before resuming mutator") \378 v(unsigned, maxSingleAllocationSize, 0, Configurable, "debugging option to limit individual allocations to a max size (0 = limit not set, N = limit size in bytes)") \379 \380 v(gcLogLevel, logGC, GCLogging::None, Normal, "debugging option to log GC activity (0 = None, 1 = Basic, 2 = Verbose)") \381 v(bool, useGC, true, Normal, nullptr) \382 v(bool, gcAtEnd, false, Normal, "If true, the jsc CLI will do a GC before exiting") \383 v(bool, forceGCSlowPaths, false, Normal, "If true, we will force all JIT fast allocations down their slow paths.") \384 v(unsigned, gcMaxHeapSize, 0, Normal, nullptr) \385 v(unsigned, forceRAMSize, 0, Normal, nullptr) \386 v(bool, recordGCPauseTimes, false, Normal, nullptr) \387 v(bool, dumpHeapStatisticsAtVMDestruction, false, Normal, nullptr) \388 v(bool, forceCodeBlockToJettisonDueToOldAge, false, Normal, "If true, this means that anytime we can jettison a CodeBlock due to old age, we do.") \389 v(bool, useEagerCodeBlockJettisonTiming, false, Normal, "If true, the time slices for jettisoning a CodeBlock due to old age are shrunk significantly.") \390 \391 v(bool, useTypeProfiler, false, Normal, nullptr) \392 v(bool, useControlFlowProfiler, false, Normal, nullptr) \393 \394 v(bool, useSamplingProfiler, false, Normal, nullptr) \395 v(unsigned, sampleInterval, 1000, Normal, "Time between stack traces in microseconds.") \396 v(bool, collectSamplingProfilerDataForJSCShell, false, Normal, "This corresponds to the JSC shell's --sample option.") \397 v(unsigned, samplingProfilerTopFunctionsCount, 12, Normal, "Number of top functions to report when using the command line interface.") \398 v(unsigned, samplingProfilerTopBytecodesCount, 40, Normal, "Number of top bytecodes to report when using the command line interface.") \399 v(optionString, samplingProfilerPath, nullptr, Normal, "The path to the directory to write sampiling profiler output to. This probably will not work with WK2 unless the path is in the whitelist.") \400 v(bool, sampleCCode, false, Normal, "Causes the sampling profiler to record profiling data for C frames.") \401 \402 v(bool, alwaysGeneratePCToCodeOriginMap, false, Normal, "This will make sure we always generate a PCToCodeOriginMap for JITed code.") \403 \404 v(bool, verifyHeap, false, Normal, nullptr) \405 v(unsigned, numberOfGCCyclesToRecordForVerification, 3, Normal, nullptr) \406 \407 v(unsigned, exceptionStackTraceLimit, 100, Normal, "Stack trace limit for internal Exception object") \408 v(unsigned, defaultErrorStackTraceLimit, 100, Normal, "The default value for Error.stackTraceLimit") \409 v(bool, useExceptionFuzz, false, Normal, nullptr) \410 v(unsigned, fireExceptionFuzzAt, 0, Normal, nullptr) \411 v(bool, validateDFGExceptionHandling, false, Normal, "Causes the DFG to emit code validating exception handling for each node that can exit") /* This is true by default on Debug builds */\412 v(bool, dumpSimulatedThrows, false, Normal, "Dumps the call stack of the last simulated throw if exception scope verification fails") \413 v(bool, validateExceptionChecks, false, Normal, "Verifies that needed exception checks are performed.") \414 v(unsigned, unexpectedExceptionStackTraceLimit, 100, Normal, "Stack trace limit for debugging unexpected exceptions observed in the VM") \415 \416 v(bool, useExecutableAllocationFuzz, false, Normal, nullptr) \417 v(unsigned, fireExecutableAllocationFuzzAt, 0, Normal, nullptr) \418 v(unsigned, fireExecutableAllocationFuzzAtOrAfter, 0, Normal, nullptr) \419 v(bool, verboseExecutableAllocationFuzz, false, Normal, nullptr) \420 \421 v(bool, useOSRExitFuzz, false, Normal, nullptr) \422 v(unsigned, fireOSRExitFuzzAtStatic, 0, Normal, nullptr) \423 v(unsigned, fireOSRExitFuzzAt, 0, Normal, nullptr) \424 v(unsigned, fireOSRExitFuzzAtOrAfter, 0, Normal, nullptr) \425 \426 v(bool, useRandomizingFuzzerAgent, false, Normal, nullptr) \427 v(unsigned, seedOfRandomizingFuzzerAgent, 1, Normal, nullptr) \428 v(bool, dumpRandomizingFuzzerAgentPredictions, false, Normal, nullptr) \429 v(bool, useDoublePredictionFuzzerAgent, false, Normal, nullptr) \430 \431 v(bool, logPhaseTimes, false, Normal, nullptr) \432 v(double, rareBlockPenalty, 0.001, Normal, nullptr) \433 v(bool, airLinearScanVerbose, false, Normal, nullptr) \434 v(bool, airLinearScanSpillsEverything, false, Normal, nullptr) \435 v(bool, airForceBriggsAllocator, false, Normal, nullptr) \436 v(bool, airForceIRCAllocator, false, Normal, nullptr) \437 v(bool, airRandomizeRegs, false, Normal, nullptr) \438 v(unsigned, airRandomizeRegsSeed, 0, Normal, nullptr) \439 v(bool, coalesceSpillSlots, true, Normal, nullptr) \440 v(bool, logAirRegisterPressure, false, Normal, nullptr) \441 v(bool, useB3TailDup, true, Normal, nullptr) \442 v(unsigned, maxB3TailDupBlockSize, 3, Normal, nullptr) \443 v(unsigned, maxB3TailDupBlockSuccessors, 3, Normal, nullptr) \444 \445 v(bool, useDollarVM, false, Restricted, "installs the $vm debugging tool in global objects") \446 v(optionString, functionOverrides, nullptr, Restricted, "file with debugging overrides for function bodies") \447 v(bool, useSigillCrashAnalyzer, false, Configurable, "logs data about SIGILL crashes") \448 \449 v(unsigned, watchdog, 0, Normal, "watchdog timeout (0 = Disabled, N = a timeout period of N milliseconds)") \450 v(bool, usePollingTraps, false, Normal, "use polling (instead of signalling) VM traps") \451 \452 v(bool, useMachForExceptions, true, Normal, "Use mach exceptions rather than signals to handle faults and pass thread messages. (This does nothing on platforms without mach)") \453 \454 v(bool, useICStats, false, Normal, nullptr) \455 \456 v(unsigned, prototypeHitCountForLLIntCaching, 2, Normal, "Number of prototype property hits before caching a prototype in the LLInt. A count of 0 means never cache.") \457 \458 v(bool, dumpCompiledRegExpPatterns, false, Normal, nullptr) \459 \460 v(bool, dumpModuleRecord, false, Normal, nullptr) \461 v(bool, dumpModuleLoadingState, false, Normal, nullptr) \462 v(bool, exposeInternalModuleLoader, false, Normal, "expose the internal module loader object to the global space for debugging") \463 \464 v(bool, useSuperSampler, false, Normal, nullptr) \465 \466 v(bool, useSourceProviderCache, true, Normal, "If false, the parser will not use the source provider cache. It's good to verify everything works when this is false. Because the cache is so successful, it can mask bugs.") \467 v(bool, useCodeCache, true, Normal, "If false, the unlinked byte code cache will not be used.") \468 \469 v(bool, useWebAssembly, true, Normal, "Expose the WebAssembly global object.") \470 \471 v(bool, enableSpectreMitigations, true, Restricted, "Enable Spectre mitigations.") \472 v(bool, enableSpectreGadgets, false, Restricted, "enable gadgets to test Spectre mitigations.") \473 v(bool, zeroStackFrame, false, Normal, "Zero stack frame on entry to a function.") \474 \475 v(bool, failToCompileWebAssemblyCode, false, Normal, "If true, no Wasm::Plan will sucessfully compile a function.") \476 v(size, webAssemblyPartialCompileLimit, 5000, Normal, "Limit on the number of bytes a Wasm::Plan::compile should attempt before checking for other work.") \477 v(unsigned, webAssemblyBBQAirOptimizationLevel, 0, Normal, "Air Optimization level for BBQ Web Assembly module compilations.") \478 v(unsigned, webAssemblyBBQB3OptimizationLevel, 1, Normal, "B3 Optimization level for BBQ Web Assembly module compilations.") \479 v(unsigned, webAssemblyOMGOptimizationLevel, Options::defaultB3OptLevel(), Normal, "B3 Optimization level for OMG Web Assembly module compilations.") \480 \481 v(bool, useBBQTierUpChecks, true, Normal, "Enables tier up checks for our BBQ code.") \482 v(bool, useWebAssemblyOSR, true, Normal, nullptr) \483 v(int32, thresholdForOMGOptimizeAfterWarmUp, 50000, Normal, "The count before we tier up a function to OMG.") \484 v(int32, thresholdForOMGOptimizeSoon, 500, Normal, nullptr) \485 v(int32, omgTierUpCounterIncrementForLoop, 1, Normal, "The amount the tier up counter is incremented on each loop backedge.") \486 v(int32, omgTierUpCounterIncrementForEntry, 15, Normal, "The amount the tier up counter is incremented on each function entry.") \487 /* FIXME: enable fast memories on iOS and pre-allocate them. https://bugs.webkit.org/show_bug.cgi?id=170774 */ \488 v(bool, useWebAssemblyFastMemory, !isIOS(), Normal, "If true, we will try to use a 32-bit address space with a signal handler to bounds check wasm memory.") \489 v(bool, logWebAssemblyMemory, false, Normal, nullptr) \490 v(unsigned, webAssemblyFastMemoryRedzonePages, 128, Normal, "WebAssembly fast memories use 4GiB virtual allocations, plus a redzone (counted as multiple of 64KiB WebAssembly pages) at the end to catch reg+imm accesses which exceed 32-bit, anything beyond the redzone is explicitly bounds-checked") \491 v(bool, crashIfWebAssemblyCantFastMemory, false, Normal, "If true, we will crash if we can't obtain fast memory for wasm.") \492 v(unsigned, maxNumWebAssemblyFastMemories, 4, Normal, nullptr) \493 v(bool, useFastTLSForWasmContext, true, Normal, "If true, we will store context in fast TLS. If false, we will pin it to a register.") \494 v(bool, wasmBBQUsesAir, true, Normal, nullptr) \495 v(size, webAssemblyBBQAirModeThreshold, isIOS() ? (10 * MB) : 0, Normal, "If 0, we always use BBQ Air. If Wasm module code size hits this threshold, we compile Wasm module with B3 BBQ mode.") \496 v(bool, useWebAssemblyStreamingApi, enableWebAssemblyStreamingApi, Normal, "Allow to run WebAssembly's Streaming API") \497 v(bool, useCallICsForWebAssemblyToJSCalls, true, Normal, "If true, we will use CallLinkInfo to inline cache Wasm to JS calls.") \498 v(bool, useEagerWebAssemblyModuleHashing, false, Normal, "Unnamed WebAssembly modules are identified in backtraces through their hash, if available.") \499 v(bool, useWebAssemblyReferences, true, Normal, "Allow types from the wasm references spec.") \500 v(bool, useWeakRefs, false, Normal, "Expose the WeakRef constructor.") \501 v(bool, useBigInt, false, Normal, "If true, we will enable BigInt support.") \502 v(bool, useNullishAwareOperators, false, Normal, "Enable support for ?. and ?? operators.") \503 v(bool, useArrayAllocationProfiling, true, Normal, "If true, we will use our normal array allocation profiling. If false, the allocation profile will always claim to be undecided.") \504 v(bool, forcePolyProto, false, Normal, "If true, create_this will always create an object with a poly proto structure.") \505 v(bool, forceMiniVMMode, false, Normal, "If true, it will force mini VM mode on.") \506 v(bool, useTracePoints, false, Normal, nullptr) \507 v(bool, traceLLIntExecution, false, Configurable, nullptr) \508 v(bool, traceLLIntSlowPath, false, Configurable, nullptr) \509 v(bool, traceBaselineJITExecution, false, Normal, nullptr) \510 v(unsigned, thresholdForGlobalLexicalBindingEpoch, UINT_MAX, Normal, "Threshold for global lexical binding epoch. If the epoch reaches to this value, CodeBlock metadata for scope operations will be revised globally. It needs to be greater than 1.") \511 v(optionString, diskCachePath, nullptr, Restricted, nullptr) \512 v(bool, forceDiskCache, false, Restricted, nullptr) \513 v(bool, validateAbstractInterpreterState, false, Restricted, nullptr) \514 v(double, validateAbstractInterpreterStateProbability, 0.5, Normal, nullptr) \515 v(optionString, dumpJITMemoryPath, nullptr, Restricted, nullptr) \516 v(double, dumpJITMemoryFlushInterval, 10, Restricted, "Maximum time in between flushes of the JIT memory dump in seconds.") \517 v(bool, useUnlinkedCodeBlockJettisoning, false, Normal, "If true, UnlinkedCodeBlock can be jettisoned.") \518 519 520 enum OptionEquivalence {521 SameOption,522 InvertedOption,523 };524 525 #define JSC_ALIASED_OPTIONS(v) \526 v(enableFunctionDotArguments, useFunctionDotArguments, SameOption) \527 v(enableTailCalls, useTailCalls, SameOption) \528 v(showDisassembly, dumpDisassembly, SameOption) \529 v(showDFGDisassembly, dumpDFGDisassembly, SameOption) \530 v(showFTLDisassembly, dumpFTLDisassembly, SameOption) \531 v(showAllDFGNodes, dumpAllDFGNodes, SameOption) \532 v(alwaysDoFullCollection, useGenerationalGC, InvertedOption) \533 v(enableOSREntryToDFG, useOSREntryToDFG, SameOption) \534 v(enableOSREntryToFTL, useOSREntryToFTL, SameOption) \535 v(enableAccessInlining, useAccessInlining, SameOption) \536 v(enablePolyvariantDevirtualization, usePolyvariantDevirtualization, SameOption) \537 v(enablePolymorphicAccessInlining, usePolymorphicAccessInlining, SameOption) \538 v(enablePolymorphicCallInlining, usePolymorphicCallInlining, SameOption) \539 v(enableMovHintRemoval, useMovHintRemoval, SameOption) \540 v(enableObjectAllocationSinking, useObjectAllocationSinking, SameOption) \541 v(enableConcurrentJIT, useConcurrentJIT, SameOption) \542 v(enableProfiler, useProfiler, SameOption) \543 v(enableArchitectureSpecificOptimizations, useArchitectureSpecificOptimizations, SameOption) \544 v(enablePolyvariantCallInlining, usePolyvariantCallInlining, SameOption) \545 v(enablePolyvariantByIdInlining, usePolyvariantByIdInlining, SameOption) \546 v(objectsAreImmortal, useImmortalObjects, SameOption) \547 v(showObjectStatistics, dumpObjectStatistics, SameOption) \548 v(disableGC, useGC, InvertedOption) \549 v(enableTypeProfiler, useTypeProfiler, SameOption) \550 v(enableControlFlowProfiler, useControlFlowProfiler, SameOption) \551 v(enableExceptionFuzz, useExceptionFuzz, SameOption) \552 v(enableExecutableAllocationFuzz, useExecutableAllocationFuzz, SameOption) \553 v(enableOSRExitFuzz, useOSRExitFuzz, SameOption) \554 v(enableDollarVM, useDollarVM, SameOption) \555 v(enableWebAssembly, useWebAssembly, SameOption) \556 v(verboseDFGByteCodeParsing, verboseDFGBytecodeParsing, SameOption) \557 v(maximumOptimizationCandidateInstructionCount, maximumOptimizationCandidateBytecodeCost, SameOption) \558 v(maximumFunctionForCallInlineCandidateInstructionCount, maximumFunctionForCallInlineCandidateBytecodeCost, SameOption) \559 v(maximumFunctionForClosureCallInlineCandidateInstructionCount, maximumFunctionForClosureCallInlineCandidateBytecodeCost, SameOption) \560 v(maximumFunctionForConstructInlineCandidateInstructionCount, maximumFunctionForConstructInlineCandidateBytecoodeCost, SameOption) \561 v(maximumFTLCandidateInstructionCount, maximumFTLCandidateBytecodeCost, SameOption) \562 v(maximumInliningCallerSize, maximumInliningCallerBytecodeCost, SameOption) \563 564 81 565 82 class Options { … … 578 95 }; 579 96 580 // This typedef is to allow us to eliminate the '_' in the field name in 581 // union inside Entry. This is needed to keep the style checker happy. 582 typedef int32_t int32; 583 typedef size_t size; 584 585 // Declare the option IDs: 97 #define DECLARE_OPTION_ID(type_, name_, defaultValue_, availability_, description_) \ 98 name_##ID, 99 586 100 enum ID { 587 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \ 588 name_##ID, 589 JSC_OPTIONS(FOR_EACH_OPTION) 590 #undef FOR_EACH_OPTION 101 FOR_EACH_JSC_OPTION(DECLARE_OPTION_ID) 591 102 numberOfOptions 592 103 }; 104 #undef DECLARE_OPTION_ID 593 105 594 106 enum class Type { 595 boolType,596 unsignedType,597 doubleType,598 int32Type,599 sizeType,600 optionRangeType,601 optionStringType,602 gcLogLevelType,107 Bool, 108 Unsigned, 109 Double, 110 Int32, 111 Size, 112 OptionRange, 113 OptionString, 114 GCLogLevel, 603 115 }; 604 116 … … 618 130 JS_EXPORT_PRIVATE static void ensureOptionsAreCoherent(); 619 131 620 JS_EXPORT_PRIVATE static void enableRestrictedOptions(bool enableOrNot); 621 622 // Declare accessors for each option: 623 #define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \ 624 ALWAYS_INLINE static type_& name_() { return s_options[name_##ID].type_##Val; } \ 625 ALWAYS_INLINE static type_& name_##Default() { return s_defaultOptions[name_##ID].type_##Val; } 626 627 JSC_OPTIONS(FOR_EACH_OPTION) 628 #undef FOR_EACH_OPTION 132 #define DECLARE_OPTION_ACCESSORS(type_, name_, defaultValue_, availability_, description_) \ 133 ALWAYS_INLINE static OptionEntry::type_& name_() { return g_jscConfig.options[name_##ID].val##type_; } \ 134 ALWAYS_INLINE static OptionEntry::type_& name_##Default() { return g_jscConfig.defaultOptions[name_##ID].val##type_; } 135 136 FOR_EACH_JSC_OPTION(DECLARE_OPTION_ACCESSORS) 137 #undef DECLARE_OPTION_ACCESSORS 629 138 630 139 static bool isAvailable(ID, Availability); 631 140 632 141 private: 633 // For storing for an option value:634 union Entry {635 bool boolVal;636 unsigned unsignedVal;637 double doubleVal;638 int32 int32Val;639 size sizeVal;640 OptionRange optionRangeVal;641 const char* optionStringVal;642 GCLogging::Level gcLogLevelVal;643 };644 142 645 143 // For storing constant meta data about each option: … … 667 165 static bool overrideAliasedOptionWithHeuristic(const char* name); 668 166 669 // Declare the singleton instance of the options store:670 JS_EXPORT_PRIVATE static Entry s_options[numberOfOptions];671 JS_EXPORT_PRIVATE static Entry s_defaultOptions[numberOfOptions];672 167 static const EntryInfo s_optionsInfo[numberOfOptions]; 673 168 … … 679 174 Option(Options::ID id) 680 175 : m_id(id) 681 , m_entry( Options::s_options[m_id])176 , m_entry(g_jscConfig.options[m_id]) 682 177 { 683 178 } … … 706 201 private: 707 202 // Only used for constructing default Options. 708 Option(Options::ID id, Option s::Entry& entry)203 Option(Options::ID id, OptionEntry& entry) 709 204 : m_id(id) 710 205 , m_entry(entry) … … 713 208 714 209 Options::ID m_id; 715 Option s::Entry& m_entry;210 OptionEntry& m_entry; 716 211 }; 717 212 … … 743 238 inline const Option Option::defaultOption() const 744 239 { 745 return Option(m_id, Options::s_defaultOptions[m_id]);240 return Option(m_id, g_jscConfig.defaultOptions[m_id]); 746 241 } 747 242 748 243 inline bool& Option::boolVal() 749 244 { 750 return m_entry. boolVal;245 return m_entry.valBool; 751 246 } 752 247 753 248 inline unsigned& Option::unsignedVal() 754 249 { 755 return m_entry. unsignedVal;250 return m_entry.valUnsigned; 756 251 } 757 252 758 253 inline double& Option::doubleVal() 759 254 { 760 return m_entry. doubleVal;255 return m_entry.valDouble; 761 256 } 762 257 763 258 inline int32_t& Option::int32Val() 764 259 { 765 return m_entry. int32Val;260 return m_entry.valInt32; 766 261 } 767 262 768 263 inline OptionRange Option::optionRangeVal() 769 264 { 770 return m_entry. optionRangeVal;265 return m_entry.valOptionRange; 771 266 } 772 267 773 268 inline const char* Option::optionStringVal() 774 269 { 775 return m_entry. optionStringVal;270 return m_entry.valOptionString; 776 271 } 777 272 778 273 inline GCLogging::Level& Option::gcLogLevelVal() 779 274 { 780 return m_entry. gcLogLevelVal;275 return m_entry.valGCLogLevel; 781 276 } 782 277 -
TabularUnified trunk/Source/JavaScriptCore/runtime/VM.cpp ¶
r249780 r249808 471 471 472 472 VMInspector::instance().add(this); 473 474 if (!g_jscConfig.disabledFreezingForTesting) 475 Config::permanentlyFreeze(); 473 476 } 474 477 -
TabularUnified trunk/Source/JavaScriptCore/tools/FunctionOverrides.cpp ¶
r249518 r249808 1 1 /* 2 * Copyright (C) 2015-201 6Apple Inc. All rights reserved.2 * Copyright (C) 2015-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 103 103 FunctionOverrides::FunctionOverrides(const char* overridesFileName) 104 104 { 105 RELEASE_ASSERT(g_jscConfig.restrictedOptionsEnabled); 105 106 parseOverridesInFile(holdLock(m_lock), overridesFileName); 106 107 } … … 108 109 void FunctionOverrides::reinstallOverrides() 109 110 { 111 RELEASE_ASSERT(g_jscConfig.restrictedOptionsEnabled); 110 112 FunctionOverrides& overrides = FunctionOverrides::overrides(); 111 113 auto locker = holdLock(overrides.m_lock); … … 144 146 bool FunctionOverrides::initializeOverrideFor(const SourceCode& origCode, FunctionOverrides::OverrideInfo& result) 145 147 { 146 ASSERT(Options::functionOverrides()); 148 RELEASE_ASSERT(g_jscConfig.restrictedOptionsEnabled); 149 RELEASE_ASSERT(Options::functionOverrides()); 147 150 FunctionOverrides& overrides = FunctionOverrides::overrides(); 148 151 … … 236 239 void FunctionOverrides::parseOverridesInFile(const AbstractLocker&, const char* fileName) 237 240 { 241 RELEASE_ASSERT(g_jscConfig.restrictedOptionsEnabled); 238 242 if (!fileName) 239 243 return; -
TabularUnified trunk/Source/JavaScriptCore/tools/JSDollarVM.cpp ¶
r249708 r249808 31 31 #include "DOMAttributeGetterSetter.h" 32 32 #include "DOMJITGetterSetter.h" 33 #include "Debugger.h" 33 34 #include "FrameTracers.h" 34 35 #include "FunctionCodeBlock.h" … … 41 42 #include "JSProxy.h" 42 43 #include "JSString.h" 44 #include "Options.h" 43 45 #include "Parser.h" 44 46 #include "ShadowChicken.h" … … 63 65 namespace { 64 66 67 // We must RELEASE_ASSERT(Options::useDollarVM()) in all JSDollarVM functions 68 // that are non-trivial at an eye's glance. This includes (but is not limited to): 69 // constructors 70 // create() factory 71 // createStructure() factory 72 // finishCreation() 73 // HOST_CALL or operation functions 74 // Constructors and methods of utility and test classes 75 // 76 // The only exception are some constexpr constructors used for instantiating 77 // globals (since these must have trivial constructors) e.g. DOMJITAttribute. 78 // Instead, these constructors should always be ALWAYS_INLINE. 79 65 80 class JSDollarVMCallFrame : public JSDestructibleObject { 66 81 using Base = JSDestructibleObject; … … 68 83 JSDollarVMCallFrame(VM& vm, Structure* structure) 69 84 : Base(vm, structure) 70 { } 85 { 86 RELEASE_ASSERT(Options::useDollarVM()); 87 } 71 88 72 89 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 73 90 { 91 RELEASE_ASSERT(Options::useDollarVM()); 74 92 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 75 93 } … … 77 95 static JSDollarVMCallFrame* create(ExecState* exec, unsigned requestedFrameIndex) 78 96 { 97 RELEASE_ASSERT(Options::useDollarVM()); 79 98 VM& vm = exec->vm(); 80 99 JSGlobalObject* globalObject = exec->lexicalGlobalObject(); … … 87 106 void finishCreation(VM& vm, CallFrame* frame, unsigned requestedFrameIndex) 88 107 { 108 RELEASE_ASSERT(Options::useDollarVM()); 89 109 Base::finishCreation(vm); 90 110 … … 124 144 void addProperty(VM& vm, const char* name, JSValue value) 125 145 { 146 RELEASE_ASSERT(Options::useDollarVM()); 126 147 Identifier identifier = Identifier::fromString(vm, name); 127 148 putDirect(vm, identifier, value); … … 139 160 : Base(vm, structure) 140 161 { 162 RELEASE_ASSERT(Options::useDollarVM()); 141 163 } 142 164 … … 148 170 static Element* create(VM& vm, JSGlobalObject* globalObject, Root* root) 149 171 { 172 RELEASE_ASSERT(Options::useDollarVM()); 150 173 Structure* structure = createStructure(vm, globalObject, jsNull()); 151 174 Element* element = new (NotNull, allocateCell<Element>(vm.heap)) Element(vm, structure); … … 168 191 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 169 192 { 193 RELEASE_ASSERT(Options::useDollarVM()); 170 194 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 171 195 } … … 194 218 : Base(vm, structure) 195 219 { 220 RELEASE_ASSERT(Options::useDollarVM()); 196 221 } 197 222 … … 209 234 static Root* create(VM& vm, JSGlobalObject* globalObject) 210 235 { 236 RELEASE_ASSERT(Options::useDollarVM()); 211 237 Structure* structure = createStructure(vm, globalObject, jsNull()); 212 238 Root* root = new (NotNull, allocateCell<Root>(vm.heap)) Root(vm, structure); … … 221 247 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 222 248 { 249 RELEASE_ASSERT(Options::useDollarVM()); 223 250 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 224 251 } … … 240 267 : Base(vm, structure) 241 268 { 269 RELEASE_ASSERT(Options::useDollarVM()); 242 270 } 243 271 … … 247 275 static SimpleObject* create(VM& vm, JSGlobalObject* globalObject) 248 276 { 277 RELEASE_ASSERT(Options::useDollarVM()); 249 278 Structure* structure = createStructure(vm, globalObject, jsNull()); 250 279 SimpleObject* simpleObject = new (NotNull, allocateCell<SimpleObject>(vm.heap)) SimpleObject(vm, structure); … … 263 292 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 264 293 { 294 RELEASE_ASSERT(Options::useDollarVM()); 265 295 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 266 296 } … … 288 318 : Base(vm, structure) 289 319 { 320 RELEASE_ASSERT(Options::useDollarVM()); 290 321 } 291 322 … … 296 327 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 297 328 { 329 RELEASE_ASSERT(Options::useDollarVM()); 298 330 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 299 331 } … … 301 333 static ImpureGetter* create(VM& vm, Structure* structure, JSObject* delegate) 302 334 { 335 RELEASE_ASSERT(Options::useDollarVM()); 303 336 ImpureGetter* getter = new (NotNull, allocateCell<ImpureGetter>(vm.heap)) ImpureGetter(vm, structure); 304 337 getter->finishCreation(vm, delegate); … … 308 341 void finishCreation(VM& vm, JSObject* delegate) 309 342 { 343 RELEASE_ASSERT(Options::useDollarVM()); 310 344 Base::finishCreation(vm); 311 345 if (delegate) … … 315 349 static bool getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName name, PropertySlot& slot) 316 350 { 351 RELEASE_ASSERT(Options::useDollarVM()); 317 352 VM& vm = exec->vm(); 318 353 auto scope = DECLARE_THROW_SCOPE(vm); … … 350 385 : Base(vm, structure) 351 386 { 387 RELEASE_ASSERT(Options::useDollarVM()); 352 388 } 353 389 … … 358 394 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 359 395 { 396 RELEASE_ASSERT(Options::useDollarVM()); 360 397 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 361 398 } … … 363 400 static CustomGetter* create(VM& vm, Structure* structure) 364 401 { 402 RELEASE_ASSERT(Options::useDollarVM()); 365 403 CustomGetter* getter = new (NotNull, allocateCell<CustomGetter>(vm.heap)) CustomGetter(vm, structure); 366 404 getter->finishCreation(vm); … … 370 408 static bool getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot) 371 409 { 410 RELEASE_ASSERT(Options::useDollarVM()); 372 411 VM& vm = exec->vm(); 373 412 CustomGetter* thisObject = jsCast<CustomGetter*>(object); … … 388 427 static EncodedJSValue customGetter(ExecState* exec, EncodedJSValue thisValue, PropertyName) 389 428 { 429 RELEASE_ASSERT(Options::useDollarVM()); 390 430 VM& vm = exec->vm(); 391 431 auto scope = DECLARE_THROW_SCOPE(vm); … … 403 443 static EncodedJSValue customGetterAcessor(ExecState* exec, EncodedJSValue thisValue, PropertyName) 404 444 { 445 RELEASE_ASSERT(Options::useDollarVM()); 405 446 VM& vm = exec->vm(); 406 447 auto scope = DECLARE_THROW_SCOPE(vm); … … 424 465 static RuntimeArray* create(ExecState* exec) 425 466 { 467 RELEASE_ASSERT(Options::useDollarVM()); 426 468 VM& vm = exec->vm(); 427 469 JSGlobalObject* globalObject = exec->lexicalGlobalObject(); … … 437 479 static void destroy(JSCell* cell) 438 480 { 481 RELEASE_ASSERT(Options::useDollarVM()); 439 482 static_cast<RuntimeArray*>(cell)->RuntimeArray::~RuntimeArray(); 440 483 } … … 444 487 static bool getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot) 445 488 { 489 RELEASE_ASSERT(Options::useDollarVM()); 446 490 VM& vm = exec->vm(); 447 491 RuntimeArray* thisObject = jsCast<RuntimeArray*>(object); … … 462 506 static bool getOwnPropertySlotByIndex(JSObject* object, ExecState* exec, unsigned index, PropertySlot& slot) 463 507 { 508 RELEASE_ASSERT(Options::useDollarVM()); 464 509 RuntimeArray* thisObject = jsCast<RuntimeArray*>(object); 465 510 if (index < thisObject->getLength()) { … … 487 532 static ArrayPrototype* createPrototype(VM&, JSGlobalObject* globalObject) 488 533 { 534 RELEASE_ASSERT(Options::useDollarVM()); 489 535 return globalObject->arrayPrototype(); 490 536 } … … 492 538 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 493 539 { 540 RELEASE_ASSERT(Options::useDollarVM()); 494 541 return Structure::create(vm, globalObject, prototype, TypeInfo(DerivedArrayType, StructureFlags), info(), ArrayClass); 495 542 } … … 498 545 void finishCreation(ExecState* exec) 499 546 { 547 RELEASE_ASSERT(Options::useDollarVM()); 500 548 VM& vm = exec->vm(); 501 549 Base::finishCreation(vm); … … 510 558 : JSArray(exec->vm(), structure, 0) 511 559 { 560 RELEASE_ASSERT(Options::useDollarVM()); 512 561 } 513 562 514 563 static EncodedJSValue lengthGetter(ExecState* exec, EncodedJSValue thisValue, PropertyName) 515 564 { 565 RELEASE_ASSERT(Options::useDollarVM()); 516 566 VM& vm = exec->vm(); 517 567 auto scope = DECLARE_THROW_SCOPE(vm); … … 531 581 : Base(vm, structure) 532 582 { 583 RELEASE_ASSERT(Options::useDollarVM()); 533 584 } 534 585 … … 539 590 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 540 591 { 592 RELEASE_ASSERT(Options::useDollarVM()); 541 593 return Structure::create(vm, globalObject, prototype, TypeInfo(JSC::JSType(LastJSCObjectType + 1), StructureFlags), info()); 542 594 } … … 545 597 static Ref<Snippet> checkSubClassSnippet() 546 598 { 599 RELEASE_ASSERT(Options::useDollarVM()); 547 600 Ref<Snippet> snippet = Snippet::create(); 548 601 snippet->setGenerator([=](CCallHelpers& jit, SnippetParams& params) { … … 557 610 static DOMJITNode* create(VM& vm, Structure* structure) 558 611 { 612 RELEASE_ASSERT(Options::useDollarVM()); 559 613 DOMJITNode* getter = new (NotNull, allocateCell<DOMJITNode>(vm.heap)) DOMJITNode(vm, structure); 560 614 getter->finishCreation(vm); … … 578 632 : Base(vm, structure) 579 633 { 634 RELEASE_ASSERT(Options::useDollarVM()); 580 635 } 581 636 … … 586 641 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 587 642 { 643 RELEASE_ASSERT(Options::useDollarVM()); 588 644 return Structure::create(vm, globalObject, prototype, TypeInfo(JSC::JSType(LastJSCObjectType + 1), StructureFlags), info()); 589 645 } … … 591 647 static DOMJITGetter* create(VM& vm, Structure* structure) 592 648 { 649 RELEASE_ASSERT(Options::useDollarVM()); 593 650 DOMJITGetter* getter = new (NotNull, allocateCell<DOMJITGetter>(vm.heap)) DOMJITGetter(vm, structure); 594 651 getter->finishCreation(vm); … … 598 655 class DOMJITAttribute : public DOMJIT::GetterSetter { 599 656 public: 600 constexpr DOMJITAttribute()657 ALWAYS_INLINE constexpr DOMJITAttribute() 601 658 : DOMJIT::GetterSetter( 602 659 DOMJITGetter::customGetter, … … 613 670 static EncodedJSValue JIT_OPERATION slowCall(ExecState* exec, void* pointer) 614 671 { 672 RELEASE_ASSERT(Options::useDollarVM()); 615 673 VM& vm = exec->vm(); 616 674 NativeCallFrameTracer tracer(vm, exec); … … 620 678 static Ref<DOMJIT::CallDOMGetterSnippet> callDOMGetter() 621 679 { 680 RELEASE_ASSERT(Options::useDollarVM()); 622 681 Ref<DOMJIT::CallDOMGetterSnippet> snippet = DOMJIT::CallDOMGetterSnippet::create(); 623 682 snippet->requireGlobalObject = false; … … 639 698 static EncodedJSValue customGetter(ExecState* exec, EncodedJSValue thisValue, PropertyName) 640 699 { 700 RELEASE_ASSERT(Options::useDollarVM()); 641 701 VM& vm = exec->vm(); 642 702 DOMJITNode* thisObject = jsDynamicCast<DOMJITNode*>(vm, JSValue::decode(thisValue)); … … 650 710 void DOMJITGetter::finishCreation(VM& vm) 651 711 { 712 RELEASE_ASSERT(Options::useDollarVM()); 652 713 Base::finishCreation(vm); 653 714 const DOMJIT::GetterSetter* domJIT = &DOMJITGetterDOMJIT; … … 661 722 : Base(vm, structure) 662 723 { 724 RELEASE_ASSERT(Options::useDollarVM()); 663 725 } 664 726 … … 669 731 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 670 732 { 733 RELEASE_ASSERT(Options::useDollarVM()); 671 734 return Structure::create(vm, globalObject, prototype, TypeInfo(JSC::JSType(LastJSCObjectType + 1), StructureFlags), info()); 672 735 } … … 674 737 static DOMJITGetterComplex* create(VM& vm, JSGlobalObject* globalObject, Structure* structure) 675 738 { 739 RELEASE_ASSERT(Options::useDollarVM()); 676 740 DOMJITGetterComplex* getter = new (NotNull, allocateCell<DOMJITGetterComplex>(vm.heap)) DOMJITGetterComplex(vm, structure); 677 741 getter->finishCreation(vm, globalObject); … … 681 745 class DOMJITAttribute : public DOMJIT::GetterSetter { 682 746 public: 683 constexpr DOMJITAttribute()747 ALWAYS_INLINE constexpr DOMJITAttribute() 684 748 : DOMJIT::GetterSetter( 685 749 DOMJITGetterComplex::customGetter, … … 696 760 static EncodedJSValue JIT_OPERATION slowCall(ExecState* exec, void* pointer) 697 761 { 762 RELEASE_ASSERT(Options::useDollarVM()); 698 763 VM& vm = exec->vm(); 699 764 NativeCallFrameTracer tracer(vm, exec); … … 710 775 static Ref<DOMJIT::CallDOMGetterSnippet> callDOMGetter() 711 776 { 777 RELEASE_ASSERT(Options::useDollarVM()); 712 778 Ref<DOMJIT::CallDOMGetterSnippet> snippet = DOMJIT::CallDOMGetterSnippet::create(); 713 779 static_assert(GPRInfo::numberOfRegisters >= 4, "Number of registers should be larger or equal to 4."); … … 734 800 static EncodedJSValue JSC_HOST_CALL functionEnableException(ExecState* exec) 735 801 { 802 RELEASE_ASSERT(Options::useDollarVM()); 736 803 VM& vm = exec->vm(); 737 804 auto* object = jsDynamicCast<DOMJITGetterComplex*>(vm, exec->thisValue()); … … 743 810 static EncodedJSValue customGetter(ExecState* exec, EncodedJSValue thisValue, PropertyName) 744 811 { 812 RELEASE_ASSERT(Options::useDollarVM()); 745 813 VM& vm = exec->vm(); 746 814 auto scope = DECLARE_THROW_SCOPE(vm); … … 760 828 void DOMJITGetterComplex::finishCreation(VM& vm, JSGlobalObject* globalObject) 761 829 { 830 RELEASE_ASSERT(Options::useDollarVM()); 762 831 Base::finishCreation(vm); 763 832 const DOMJIT::GetterSetter* domJIT = &DOMJITGetterComplexDOMJIT; … … 772 841 : Base(vm, structure) 773 842 { 843 RELEASE_ASSERT(Options::useDollarVM()); 774 844 } 775 845 … … 778 848 static const unsigned StructureFlags = Base::StructureFlags; 779 849 780 781 850 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 782 851 { 852 RELEASE_ASSERT(Options::useDollarVM()); 783 853 return Structure::create(vm, globalObject, prototype, TypeInfo(JSC::JSType(LastJSCObjectType + 1), StructureFlags), info()); 784 854 } … … 786 856 static DOMJITFunctionObject* create(VM& vm, JSGlobalObject* globalObject, Structure* structure) 787 857 { 858 RELEASE_ASSERT(Options::useDollarVM()); 788 859 DOMJITFunctionObject* object = new (NotNull, allocateCell<DOMJITFunctionObject>(vm.heap)) DOMJITFunctionObject(vm, structure); 789 860 object->finishCreation(vm, globalObject); … … 793 864 static EncodedJSValue JSC_HOST_CALL functionWithTypeCheck(ExecState* exec) 794 865 { 866 RELEASE_ASSERT(Options::useDollarVM()); 795 867 VM& vm = exec->vm(); 868 NativeCallFrameTracer tracer(vm, exec); 796 869 auto scope = DECLARE_THROW_SCOPE(vm); 797 870 … … 804 877 static EncodedJSValue JIT_OPERATION functionWithoutTypeCheck(ExecState* exec, DOMJITNode* node) 805 878 { 879 RELEASE_ASSERT(Options::useDollarVM()); 806 880 VM& vm = exec->vm(); 807 881 NativeCallFrameTracer tracer(vm, exec); … … 812 886 static Ref<Snippet> checkSubClassSnippet() 813 887 { 888 RELEASE_ASSERT(Options::useDollarVM()); 814 889 Ref<Snippet> snippet = Snippet::create(); 815 890 snippet->numFPScratchRegisters = 1; … … 834 909 void DOMJITFunctionObject::finishCreation(VM& vm, JSGlobalObject* globalObject) 835 910 { 911 RELEASE_ASSERT(Options::useDollarVM()); 836 912 Base::finishCreation(vm); 837 913 putDirectNativeFunction(vm, globalObject, Identifier::fromString(vm, "func"), 0, functionWithTypeCheck, NoIntrinsic, &DOMJITFunctionObjectSignature, static_cast<unsigned>(PropertyAttribute::ReadOnly)); … … 843 919 : Base(vm, structure) 844 920 { 921 RELEASE_ASSERT(Options::useDollarVM()); 845 922 } 846 923 … … 849 926 static const unsigned StructureFlags = Base::StructureFlags; 850 927 851 852 928 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 853 929 { 930 RELEASE_ASSERT(Options::useDollarVM()); 854 931 return Structure::create(vm, globalObject, prototype, TypeInfo(JSC::JSType(LastJSCObjectType + 1), StructureFlags), info()); 855 932 } … … 857 934 static DOMJITCheckSubClassObject* create(VM& vm, JSGlobalObject* globalObject, Structure* structure) 858 935 { 936 RELEASE_ASSERT(Options::useDollarVM()); 859 937 DOMJITCheckSubClassObject* object = new (NotNull, allocateCell<DOMJITCheckSubClassObject>(vm.heap)) DOMJITCheckSubClassObject(vm, structure); 860 938 object->finishCreation(vm, globalObject); … … 864 942 static EncodedJSValue JSC_HOST_CALL functionWithTypeCheck(ExecState* exec) 865 943 { 944 RELEASE_ASSERT(Options::useDollarVM()); 866 945 VM& vm = exec->vm(); 867 946 auto scope = DECLARE_THROW_SCOPE(vm); … … 875 954 static EncodedJSValue JIT_OPERATION functionWithoutTypeCheck(ExecState* exec, DOMJITNode* node) 876 955 { 956 RELEASE_ASSERT(Options::useDollarVM()); 877 957 VM& vm = exec->vm(); 878 958 NativeCallFrameTracer tracer(vm, exec); … … 888 968 void DOMJITCheckSubClassObject::finishCreation(VM& vm, JSGlobalObject* globalObject) 889 969 { 970 RELEASE_ASSERT(Options::useDollarVM()); 890 971 Base::finishCreation(vm); 891 972 putDirectNativeFunction(vm, globalObject, Identifier::fromString(vm, "func"), 0, functionWithTypeCheck, NoIntrinsic, &DOMJITCheckSubClassObjectSignature, static_cast<unsigned>(PropertyAttribute::ReadOnly)); … … 897 978 : Base(vm, structure) 898 979 { 980 RELEASE_ASSERT(Options::useDollarVM()); 899 981 } 900 982 … … 905 987 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 906 988 { 989 RELEASE_ASSERT(Options::useDollarVM()); 907 990 return Structure::create(vm, globalObject, prototype, TypeInfo(JSC::JSType(LastJSCObjectType + 1), StructureFlags), info()); 908 991 } … … 910 993 static DOMJITGetterBaseJSObject* create(VM& vm, Structure* structure) 911 994 { 995 RELEASE_ASSERT(Options::useDollarVM()); 912 996 DOMJITGetterBaseJSObject* getter = new (NotNull, allocateCell<DOMJITGetterBaseJSObject>(vm.heap)) DOMJITGetterBaseJSObject(vm, structure); 913 997 getter->finishCreation(vm); … … 917 1001 class DOMJITAttribute : public DOMJIT::GetterSetter { 918 1002 public: 919 constexpr DOMJITAttribute()1003 ALWAYS_INLINE constexpr DOMJITAttribute() 920 1004 : DOMJIT::GetterSetter( 921 1005 DOMJITGetterBaseJSObject::customGetter, … … 932 1016 static EncodedJSValue JIT_OPERATION slowCall(ExecState* exec, void* pointer) 933 1017 { 1018 RELEASE_ASSERT(Options::useDollarVM()); 934 1019 VM& vm = exec->vm(); 935 1020 NativeCallFrameTracer tracer(vm, exec); … … 940 1025 static Ref<DOMJIT::CallDOMGetterSnippet> callDOMGetter() 941 1026 { 1027 RELEASE_ASSERT(Options::useDollarVM()); 942 1028 Ref<DOMJIT::CallDOMGetterSnippet> snippet = DOMJIT::CallDOMGetterSnippet::create(); 943 1029 snippet->requireGlobalObject = false; … … 959 1045 static EncodedJSValue customGetter(ExecState* exec, EncodedJSValue thisValue, PropertyName) 960 1046 { 1047 RELEASE_ASSERT(Options::useDollarVM()); 961 1048 VM& vm = exec->vm(); 962 1049 JSObject* thisObject = jsDynamicCast<JSObject*>(vm, JSValue::decode(thisValue)); … … 970 1057 void DOMJITGetterBaseJSObject::finishCreation(VM& vm) 971 1058 { 1059 RELEASE_ASSERT(Options::useDollarVM()); 972 1060 Base::finishCreation(vm); 973 1061 const DOMJIT::GetterSetter* domJIT = &DOMJITGetterBaseJSObjectDOMJIT; … … 996 1084 JSTestCustomGetterSetter(VM& vm, Structure* structure) 997 1085 : Base(vm, structure) 998 { } 1086 { 1087 RELEASE_ASSERT(Options::useDollarVM()); 1088 } 999 1089 1000 1090 static JSTestCustomGetterSetter* create(VM& vm, JSGlobalObject*, Structure* structure) 1001 1091 { 1092 RELEASE_ASSERT(Options::useDollarVM()); 1002 1093 JSTestCustomGetterSetter* result = new (NotNull, allocateCell<JSTestCustomGetterSetter>(vm.heap)) JSTestCustomGetterSetter(vm, structure); 1003 1094 result->finishCreation(vm); … … 1009 1100 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject) 1010 1101 { 1102 RELEASE_ASSERT(Options::useDollarVM()); 1011 1103 return Structure::create(vm, globalObject, globalObject->objectPrototype(), TypeInfo(ObjectType, StructureFlags), info()); 1012 1104 } … … 1031 1123 static bool customSetAccessor(ExecState* exec, EncodedJSValue thisObject, EncodedJSValue encodedValue) 1032 1124 { 1125 RELEASE_ASSERT(Options::useDollarVM()); 1033 1126 VM& vm = exec->vm(); 1034 1127 … … 1044 1137 static bool customSetValue(ExecState* exec, EncodedJSValue slotValue, EncodedJSValue encodedValue) 1045 1138 { 1139 RELEASE_ASSERT(Options::useDollarVM()); 1046 1140 VM& vm = exec->vm(); 1047 1141 … … 1059 1153 void JSTestCustomGetterSetter::finishCreation(VM& vm) 1060 1154 { 1155 RELEASE_ASSERT(Options::useDollarVM()); 1061 1156 Base::finishCreation(vm); 1062 1157 … … 1091 1186 ElementHandleOwner* Element::handleOwner() 1092 1187 { 1188 RELEASE_ASSERT(Options::useDollarVM()); 1093 1189 static ElementHandleOwner* owner = 0; 1094 1190 if (!owner) … … 1099 1195 void Element::finishCreation(VM& vm, Root* root) 1100 1196 { 1197 RELEASE_ASSERT(Options::useDollarVM()); 1101 1198 Base::finishCreation(vm); 1102 1199 setRoot(vm, root); … … 1131 1228 , m_streamingParser(m_info.get(), m_client) 1132 1229 { 1230 RELEASE_ASSERT(Options::useDollarVM()); 1133 1231 } 1134 1232 … … 1137 1235 static WasmStreamingParser* create(VM& vm, JSGlobalObject* globalObject) 1138 1236 { 1237 RELEASE_ASSERT(Options::useDollarVM()); 1139 1238 Structure* structure = createStructure(vm, globalObject, jsNull()); 1140 1239 WasmStreamingParser* result = new (NotNull, allocateCell<WasmStreamingParser>(vm.heap)) WasmStreamingParser(vm, structure); … … 1145 1244 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 1146 1245 { 1246 RELEASE_ASSERT(Options::useDollarVM()); 1147 1247 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 1148 1248 } … … 1152 1252 void finishCreation(VM& vm) 1153 1253 { 1254 RELEASE_ASSERT(Options::useDollarVM()); 1154 1255 Base::finishCreation(vm); 1155 1256 … … 1170 1271 EncodedJSValue JSC_HOST_CALL functionWasmStreamingParserAddBytes(ExecState* exec) 1171 1272 { 1273 RELEASE_ASSERT(Options::useDollarVM()); 1172 1274 VM& vm = exec->vm(); 1173 1275 auto scope = DECLARE_THROW_SCOPE(exec->vm()); 1276 1174 1277 auto* thisObject = jsDynamicCast<WasmStreamingParser*>(vm, exec->thisValue()); 1175 1278 if (!thisObject) … … 1183 1286 EncodedJSValue JSC_HOST_CALL functionWasmStreamingParserFinalize(ExecState* exec) 1184 1287 { 1288 RELEASE_ASSERT(Options::useDollarVM()); 1185 1289 VM& vm = exec->vm(); 1186 1290 auto* thisObject = jsDynamicCast<WasmStreamingParser*>(vm, exec->thisValue()); … … 1202 1306 static NO_RETURN_DUE_TO_CRASH EncodedJSValue JSC_HOST_CALL functionCrash(ExecState*) 1203 1307 { 1308 RELEASE_ASSERT(Options::useDollarVM()); 1204 1309 CRASH(); 1205 1310 } … … 1209 1314 static EncodedJSValue JSC_HOST_CALL functionBreakpoint(ExecState* exec) 1210 1315 { 1316 RELEASE_ASSERT(Options::useDollarVM()); 1211 1317 // Nothing should throw here but we might as well double check... 1212 1318 VM& vm = exec->vm(); … … 1223 1329 static EncodedJSValue JSC_HOST_CALL functionDFGTrue(ExecState*) 1224 1330 { 1331 RELEASE_ASSERT(Options::useDollarVM()); 1225 1332 return JSValue::encode(jsBoolean(false)); 1226 1333 } … … 1230 1337 static EncodedJSValue JSC_HOST_CALL functionFTLTrue(ExecState*) 1231 1338 { 1339 RELEASE_ASSERT(Options::useDollarVM()); 1232 1340 return JSValue::encode(jsBoolean(false)); 1233 1341 } … … 1235 1343 static EncodedJSValue JSC_HOST_CALL functionCpuMfence(ExecState*) 1236 1344 { 1345 RELEASE_ASSERT(Options::useDollarVM()); 1237 1346 #if CPU(X86_64) && !OS(WINDOWS) 1238 1347 asm volatile("mfence" ::: "memory"); … … 1243 1352 static EncodedJSValue JSC_HOST_CALL functionCpuRdtsc(ExecState*) 1244 1353 { 1354 RELEASE_ASSERT(Options::useDollarVM()); 1245 1355 #if CPU(X86_64) && !OS(WINDOWS) 1246 1356 unsigned high; … … 1255 1365 static EncodedJSValue JSC_HOST_CALL functionCpuCpuid(ExecState*) 1256 1366 { 1367 RELEASE_ASSERT(Options::useDollarVM()); 1257 1368 #if CPU(X86_64) && !OS(WINDOWS) 1258 1369 WTF::x86_cpuid(); … … 1263 1374 static EncodedJSValue JSC_HOST_CALL functionCpuPause(ExecState*) 1264 1375 { 1376 RELEASE_ASSERT(Options::useDollarVM()); 1265 1377 #if CPU(X86_64) && !OS(WINDOWS) 1266 1378 asm volatile ("pause" ::: "memory"); … … 1280 1392 static EncodedJSValue JSC_HOST_CALL functionCpuClflush(ExecState* exec) 1281 1393 { 1394 RELEASE_ASSERT(Options::useDollarVM()); 1282 1395 #if CPU(X86_64) && !OS(WINDOWS) 1283 1396 VM& vm = exec->vm(); … … 1325 1438 , m_jitType(JITType::None) 1326 1439 { 1440 RELEASE_ASSERT(Options::useDollarVM()); 1327 1441 } 1328 1442 … … 1345 1459 static FunctionExecutable* getExecutableForFunction(JSValue theFunctionValue) 1346 1460 { 1461 RELEASE_ASSERT(Options::useDollarVM()); 1347 1462 if (!theFunctionValue.isCell()) 1348 1463 return nullptr; … … 1363 1478 static EncodedJSValue JSC_HOST_CALL functionLLintTrue(ExecState* exec) 1364 1479 { 1480 RELEASE_ASSERT(Options::useDollarVM()); 1365 1481 if (!exec) 1366 1482 return JSValue::encode(jsUndefined()); … … 1374 1490 static EncodedJSValue JSC_HOST_CALL functionJITTrue(ExecState* exec) 1375 1491 { 1492 RELEASE_ASSERT(Options::useDollarVM()); 1376 1493 if (!exec) 1377 1494 return JSValue::encode(jsUndefined()); … … 1387 1504 static EncodedJSValue JSC_HOST_CALL functionNoInline(ExecState* exec) 1388 1505 { 1506 RELEASE_ASSERT(Options::useDollarVM()); 1389 1507 if (exec->argumentCount() < 1) 1390 1508 return JSValue::encode(jsUndefined()); … … 1402 1520 static EncodedJSValue JSC_HOST_CALL functionGC(ExecState* exec) 1403 1521 { 1522 RELEASE_ASSERT(Options::useDollarVM()); 1404 1523 VMInspector::gc(exec); 1405 1524 return JSValue::encode(jsUndefined()); … … 1410 1529 static EncodedJSValue JSC_HOST_CALL functionEdenGC(ExecState* exec) 1411 1530 { 1531 RELEASE_ASSERT(Options::useDollarVM()); 1412 1532 VMInspector::edenGC(exec); 1413 1533 return JSValue::encode(jsUndefined()); … … 1418 1538 static EncodedJSValue JSC_HOST_CALL functionDumpSubspaceHashes(ExecState* exec) 1419 1539 { 1540 RELEASE_ASSERT(Options::useDollarVM()); 1420 1541 VM& vm = exec->vm(); 1421 1542 VMInspector::dumpSubspaceHashes(&vm); … … 1439 1560 static EncodedJSValue JSC_HOST_CALL functionCallFrame(ExecState* exec) 1440 1561 { 1562 RELEASE_ASSERT(Options::useDollarVM()); 1441 1563 unsigned frameNumber = 1; 1442 1564 if (exec->argumentCount() >= 1) { … … 1459 1581 static EncodedJSValue JSC_HOST_CALL functionCodeBlockForFrame(ExecState* exec) 1460 1582 { 1583 RELEASE_ASSERT(Options::useDollarVM()); 1461 1584 unsigned frameNumber = 1; 1462 1585 if (exec->argumentCount() >= 1) { … … 1479 1602 static CodeBlock* codeBlockFromArg(ExecState* exec) 1480 1603 { 1604 RELEASE_ASSERT(Options::useDollarVM()); 1481 1605 VM& vm = exec->vm(); 1482 1606 if (exec->argumentCount() < 1) … … 1512 1636 static EncodedJSValue JSC_HOST_CALL functionCodeBlockFor(ExecState* exec) 1513 1637 { 1638 RELEASE_ASSERT(Options::useDollarVM()); 1514 1639 CodeBlock* codeBlock = codeBlockFromArg(exec); 1515 1640 WTF::StringPrintStream stream; … … 1525 1650 static EncodedJSValue JSC_HOST_CALL functionDumpSourceFor(ExecState* exec) 1526 1651 { 1652 RELEASE_ASSERT(Options::useDollarVM()); 1527 1653 CodeBlock* codeBlock = codeBlockFromArg(exec); 1528 1654 if (codeBlock) … … 1535 1661 static EncodedJSValue JSC_HOST_CALL functionDumpBytecodeFor(ExecState* exec) 1536 1662 { 1663 RELEASE_ASSERT(Options::useDollarVM()); 1537 1664 CodeBlock* codeBlock = codeBlockFromArg(exec); 1538 1665 if (codeBlock) … … 1543 1670 static EncodedJSValue doPrint(ExecState* exec, bool addLineFeed) 1544 1671 { 1672 RELEASE_ASSERT(Options::useDollarVM()); 1545 1673 auto scope = DECLARE_THROW_SCOPE(exec->vm()); 1546 1674 for (unsigned i = 0; i < exec->argumentCount(); ++i) { … … 1566 1694 static EncodedJSValue JSC_HOST_CALL functionDataLog(ExecState* exec) 1567 1695 { 1696 RELEASE_ASSERT(Options::useDollarVM()); 1568 1697 const bool addLineFeed = false; 1569 1698 return doPrint(exec, addLineFeed); … … 1574 1703 static EncodedJSValue JSC_HOST_CALL functionPrint(ExecState* exec) 1575 1704 { 1705 RELEASE_ASSERT(Options::useDollarVM()); 1576 1706 const bool addLineFeed = true; 1577 1707 return doPrint(exec, addLineFeed); … … 1582 1712 static EncodedJSValue JSC_HOST_CALL functionDumpCallFrame(ExecState* exec) 1583 1713 { 1714 RELEASE_ASSERT(Options::useDollarVM()); 1584 1715 // When the callers call this function, they are expecting to dump their 1585 1716 // own frame. So skip 1 for this frame. … … 1592 1723 static EncodedJSValue JSC_HOST_CALL functionDumpStack(ExecState* exec) 1593 1724 { 1725 RELEASE_ASSERT(Options::useDollarVM()); 1594 1726 // When the callers call this function, they are expecting to dump the 1595 1727 // stack starting their own frame. So skip 1 for this frame. … … 1605 1737 static EncodedJSValue JSC_HOST_CALL functionDumpRegisters(ExecState* exec) 1606 1738 { 1739 RELEASE_ASSERT(Options::useDollarVM()); 1607 1740 unsigned requestedFrameIndex = 1; 1608 1741 if (exec->argumentCount() >= 1) { … … 1632 1765 static EncodedJSValue JSC_HOST_CALL functionDumpCell(ExecState* exec) 1633 1766 { 1767 RELEASE_ASSERT(Options::useDollarVM()); 1634 1768 JSValue value = exec->argument(0); 1635 1769 if (!value.isCell()) … … 1644 1778 static EncodedJSValue JSC_HOST_CALL functionIndexingMode(ExecState* exec) 1645 1779 { 1780 RELEASE_ASSERT(Options::useDollarVM()); 1646 1781 if (!exec->argument(0).isObject()) 1647 1782 return encodedJSUndefined(); … … 1654 1789 static EncodedJSValue JSC_HOST_CALL functionInlineCapacity(ExecState* exec) 1655 1790 { 1791 RELEASE_ASSERT(Options::useDollarVM()); 1656 1792 VM& vm = exec->vm(); 1657 1793 if (auto* object = jsDynamicCast<JSObject*>(vm, exec->argument(0))) … … 1665 1801 static EncodedJSValue JSC_HOST_CALL functionValue(ExecState* exec) 1666 1802 { 1803 RELEASE_ASSERT(Options::useDollarVM()); 1667 1804 WTF::StringPrintStream stream; 1668 1805 for (unsigned i = 0; i < exec->argumentCount(); ++i) { … … 1679 1816 static EncodedJSValue JSC_HOST_CALL functionGetPID(ExecState*) 1680 1817 { 1818 RELEASE_ASSERT(Options::useDollarVM()); 1681 1819 return JSValue::encode(jsNumber(getCurrentProcessID())); 1682 1820 } … … 1686 1824 static EncodedJSValue JSC_HOST_CALL functionHaveABadTime(ExecState* exec) 1687 1825 { 1826 RELEASE_ASSERT(Options::useDollarVM()); 1688 1827 VM& vm = exec->vm(); 1689 1828 JSLockHolder lock(vm); … … 1705 1844 static EncodedJSValue JSC_HOST_CALL functionIsHavingABadTime(ExecState* exec) 1706 1845 { 1846 RELEASE_ASSERT(Options::useDollarVM()); 1707 1847 VM& vm = exec->vm(); 1708 1848 JSLockHolder lock(vm); … … 1727 1867 static EncodedJSValue JSC_HOST_CALL functionCreateGlobalObject(ExecState* exec) 1728 1868 { 1869 RELEASE_ASSERT(Options::useDollarVM()); 1729 1870 VM& vm = exec->vm(); 1730 1871 JSLockHolder lock(vm); … … 1735 1876 static EncodedJSValue JSC_HOST_CALL functionCreateProxy(ExecState* exec) 1736 1877 { 1878 RELEASE_ASSERT(Options::useDollarVM()); 1737 1879 VM& vm = exec->vm(); 1738 1880 JSLockHolder lock(vm); … … 1748 1890 static EncodedJSValue JSC_HOST_CALL functionCreateRuntimeArray(ExecState* exec) 1749 1891 { 1892 RELEASE_ASSERT(Options::useDollarVM()); 1750 1893 JSLockHolder lock(exec); 1751 1894 RuntimeArray* array = RuntimeArray::create(exec); … … 1755 1898 static EncodedJSValue JSC_HOST_CALL functionCreateNullRopeString(ExecState* exec) 1756 1899 { 1900 RELEASE_ASSERT(Options::useDollarVM()); 1757 1901 VM& vm = exec->vm(); 1758 1902 JSLockHolder lock(vm); … … 1762 1906 static EncodedJSValue JSC_HOST_CALL functionCreateImpureGetter(ExecState* exec) 1763 1907 { 1908 RELEASE_ASSERT(Options::useDollarVM()); 1764 1909 VM& vm = exec->vm(); 1765 1910 JSLockHolder lock(vm); … … 1775 1920 static EncodedJSValue JSC_HOST_CALL functionCreateCustomGetterObject(ExecState* exec) 1776 1921 { 1922 RELEASE_ASSERT(Options::useDollarVM()); 1777 1923 VM& vm = exec->vm(); 1778 1924 JSLockHolder lock(vm); … … 1784 1930 static EncodedJSValue JSC_HOST_CALL functionCreateDOMJITNodeObject(ExecState* exec) 1785 1931 { 1932 RELEASE_ASSERT(Options::useDollarVM()); 1786 1933 VM& vm = exec->vm(); 1787 1934 JSLockHolder lock(vm); … … 1793 1940 static EncodedJSValue JSC_HOST_CALL functionCreateDOMJITGetterObject(ExecState* exec) 1794 1941 { 1942 RELEASE_ASSERT(Options::useDollarVM()); 1795 1943 VM& vm = exec->vm(); 1796 1944 JSLockHolder lock(vm); … … 1802 1950 static EncodedJSValue JSC_HOST_CALL functionCreateDOMJITGetterComplexObject(ExecState* exec) 1803 1951 { 1952 RELEASE_ASSERT(Options::useDollarVM()); 1804 1953 VM& vm = exec->vm(); 1805 1954 JSLockHolder lock(vm); … … 1811 1960 static EncodedJSValue JSC_HOST_CALL functionCreateDOMJITFunctionObject(ExecState* exec) 1812 1961 { 1962 RELEASE_ASSERT(Options::useDollarVM()); 1813 1963 VM& vm = exec->vm(); 1814 1964 JSLockHolder lock(vm); … … 1820 1970 static EncodedJSValue JSC_HOST_CALL functionCreateDOMJITCheckSubClassObject(ExecState* exec) 1821 1971 { 1972 RELEASE_ASSERT(Options::useDollarVM()); 1822 1973 VM& vm = exec->vm(); 1823 1974 JSLockHolder lock(vm); … … 1829 1980 static EncodedJSValue JSC_HOST_CALL functionCreateDOMJITGetterBaseJSObject(ExecState* exec) 1830 1981 { 1982 RELEASE_ASSERT(Options::useDollarVM()); 1831 1983 VM& vm = exec->vm(); 1832 1984 JSLockHolder lock(vm); … … 1839 1991 static EncodedJSValue JSC_HOST_CALL functionCreateWasmStreamingParser(ExecState* exec) 1840 1992 { 1993 RELEASE_ASSERT(Options::useDollarVM()); 1841 1994 VM& vm = exec->vm(); 1842 1995 JSLockHolder lock(vm); … … 1847 2000 static EncodedJSValue JSC_HOST_CALL functionSetImpureGetterDelegate(ExecState* exec) 1848 2001 { 2002 RELEASE_ASSERT(Options::useDollarVM()); 1849 2003 VM& vm = exec->vm(); 1850 2004 JSLockHolder lock(vm); … … 1868 2022 static EncodedJSValue JSC_HOST_CALL functionCreateBuiltin(ExecState* exec) 1869 2023 { 2024 RELEASE_ASSERT(Options::useDollarVM()); 1870 2025 VM& vm = exec->vm(); 1871 2026 auto scope = DECLARE_THROW_SCOPE(vm); … … 1885 2040 static EncodedJSValue JSC_HOST_CALL functionGetPrivateProperty(ExecState* exec) 1886 2041 { 2042 RELEASE_ASSERT(Options::useDollarVM()); 1887 2043 VM& vm = exec->vm(); 1888 2044 auto scope = DECLARE_THROW_SCOPE(vm); … … 1902 2058 static EncodedJSValue JSC_HOST_CALL functionCreateRoot(ExecState* exec) 1903 2059 { 2060 RELEASE_ASSERT(Options::useDollarVM()); 1904 2061 VM& vm = exec->vm(); 1905 2062 JSLockHolder lock(vm); … … 1909 2066 static EncodedJSValue JSC_HOST_CALL functionCreateElement(ExecState* exec) 1910 2067 { 2068 RELEASE_ASSERT(Options::useDollarVM()); 1911 2069 VM& vm = exec->vm(); 1912 2070 JSLockHolder lock(vm); … … 1921 2079 static EncodedJSValue JSC_HOST_CALL functionGetElement(ExecState* exec) 1922 2080 { 2081 RELEASE_ASSERT(Options::useDollarVM()); 1923 2082 VM& vm = exec->vm(); 1924 2083 JSLockHolder lock(vm); … … 1932 2091 static EncodedJSValue JSC_HOST_CALL functionCreateSimpleObject(ExecState* exec) 1933 2092 { 2093 RELEASE_ASSERT(Options::useDollarVM()); 1934 2094 VM& vm = exec->vm(); 1935 2095 JSLockHolder lock(vm); … … 1939 2099 static EncodedJSValue JSC_HOST_CALL functionGetHiddenValue(ExecState* exec) 1940 2100 { 2101 RELEASE_ASSERT(Options::useDollarVM()); 1941 2102 VM& vm = exec->vm(); 1942 2103 JSLockHolder lock(vm); … … 1953 2114 static EncodedJSValue JSC_HOST_CALL functionSetHiddenValue(ExecState* exec) 1954 2115 { 2116 RELEASE_ASSERT(Options::useDollarVM()); 1955 2117 VM& vm = exec->vm(); 1956 2118 JSLockHolder lock(vm); … … 1969 2131 static EncodedJSValue JSC_HOST_CALL functionShadowChickenFunctionsOnStack(ExecState* exec) 1970 2132 { 2133 RELEASE_ASSERT(Options::useDollarVM()); 1971 2134 VM& vm = exec->vm(); 1972 2135 auto scope = DECLARE_THROW_SCOPE(vm); … … 1993 2156 static EncodedJSValue JSC_HOST_CALL functionSetGlobalConstRedeclarationShouldNotThrow(ExecState* exec) 1994 2157 { 2158 RELEASE_ASSERT(Options::useDollarVM()); 1995 2159 VM& vm = exec->vm(); 1996 2160 vm.setGlobalConstRedeclarationShouldThrow(false); … … 2000 2164 static EncodedJSValue JSC_HOST_CALL functionFindTypeForExpression(ExecState* exec) 2001 2165 { 2166 RELEASE_ASSERT(Options::useDollarVM()); 2002 2167 VM& vm = exec->vm(); 2003 2168 RELEASE_ASSERT(vm.typeProfiler()); … … 2019 2184 static EncodedJSValue JSC_HOST_CALL functionReturnTypeFor(ExecState* exec) 2020 2185 { 2186 RELEASE_ASSERT(Options::useDollarVM()); 2021 2187 VM& vm = exec->vm(); 2022 2188 RELEASE_ASSERT(vm.typeProfiler()); … … 2034 2200 static EncodedJSValue JSC_HOST_CALL functionFlattenDictionaryObject(ExecState* exec) 2035 2201 { 2202 RELEASE_ASSERT(Options::useDollarVM()); 2036 2203 VM& vm = exec->vm(); 2037 2204 JSValue value = exec->argument(0); … … 2043 2210 static EncodedJSValue JSC_HOST_CALL functionDumpBasicBlockExecutionRanges(ExecState* exec) 2044 2211 { 2212 RELEASE_ASSERT(Options::useDollarVM()); 2045 2213 VM& vm = exec->vm(); 2046 2214 RELEASE_ASSERT(vm.controlFlowProfiler()); … … 2051 2219 static EncodedJSValue JSC_HOST_CALL functionHasBasicBlockExecuted(ExecState* exec) 2052 2220 { 2221 RELEASE_ASSERT(Options::useDollarVM()); 2053 2222 VM& vm = exec->vm(); 2054 2223 RELEASE_ASSERT(vm.controlFlowProfiler()); … … 2070 2239 static EncodedJSValue JSC_HOST_CALL functionBasicBlockExecutionCount(ExecState* exec) 2071 2240 { 2241 RELEASE_ASSERT(Options::useDollarVM()); 2072 2242 VM& vm = exec->vm(); 2073 2243 RELEASE_ASSERT(vm.controlFlowProfiler()); … … 2089 2259 static EncodedJSValue JSC_HOST_CALL functionEnableExceptionFuzz(ExecState*) 2090 2260 { 2261 RELEASE_ASSERT(Options::useDollarVM()); 2091 2262 Options::useExceptionFuzz() = true; 2092 2263 return JSValue::encode(jsUndefined()); 2093 2264 } 2094 2265 2266 class DoNothingDebugger final : public Debugger { 2267 WTF_MAKE_NONCOPYABLE(DoNothingDebugger); 2268 WTF_MAKE_FAST_ALLOCATED; 2269 public: 2270 DoNothingDebugger(VM& vm) 2271 : Debugger(vm) 2272 { 2273 RELEASE_ASSERT(Options::useDollarVM()); 2274 setSuppressAllPauses(true); 2275 } 2276 2277 private: 2278 void sourceParsed(ExecState*, SourceProvider*, int, const WTF::String&) override 2279 { 2280 RELEASE_ASSERT(Options::useDollarVM()); 2281 } 2282 }; 2283 2095 2284 static EncodedJSValue changeDebuggerModeWhenIdle(ExecState* exec, OptionSet<CodeGenerationMode> codeGenerationMode) 2096 2285 { 2097 bool newDebuggerMode = codeGenerationMode.contains(CodeGenerationMode::Debugger); 2098 if (Options::forceDebuggerBytecodeGeneration() == newDebuggerMode) 2286 RELEASE_ASSERT(Options::useDollarVM()); 2287 JSGlobalObject* globalObject = exec->lexicalGlobalObject(); 2288 2289 bool debuggerRequested = codeGenerationMode.contains(CodeGenerationMode::Debugger); 2290 if (debuggerRequested == globalObject->hasDebugger()) 2099 2291 return JSValue::encode(jsUndefined()); 2100 2292 2101 2293 VM* vm = &exec->vm(); 2102 2294 vm->whenIdle([=] () { 2103 Options::forceDebuggerBytecodeGeneration() = newDebuggerMode; 2104 vm->deleteAllCode(PreventCollectionAndDeleteAllCode); 2105 if (newDebuggerMode) 2106 vm->ensureShadowChicken(); 2295 if (debuggerRequested) { 2296 Debugger* debugger = new DoNothingDebugger(globalObject->vm()); 2297 globalObject->setDebugger(debugger); 2298 debugger->activateBreakpoints(); // Also deletes all code. 2299 } else { 2300 Debugger* debugger = globalObject->debugger(); 2301 debugger->deactivateBreakpoints(); // Also deletes all code. 2302 globalObject->setDebugger(nullptr); 2303 delete debugger; 2304 } 2107 2305 }); 2108 2306 return JSValue::encode(jsUndefined()); … … 2111 2309 static EncodedJSValue JSC_HOST_CALL functionEnableDebuggerModeWhenIdle(ExecState* exec) 2112 2310 { 2311 RELEASE_ASSERT(Options::useDollarVM()); 2113 2312 return changeDebuggerModeWhenIdle(exec, { CodeGenerationMode::Debugger }); 2114 2313 } … … 2116 2315 static EncodedJSValue JSC_HOST_CALL functionDisableDebuggerModeWhenIdle(ExecState* exec) 2117 2316 { 2317 RELEASE_ASSERT(Options::useDollarVM()); 2118 2318 return changeDebuggerModeWhenIdle(exec, { }); 2119 2319 } … … 2121 2321 static EncodedJSValue JSC_HOST_CALL functionDeleteAllCodeWhenIdle(ExecState* exec) 2122 2322 { 2323 RELEASE_ASSERT(Options::useDollarVM()); 2123 2324 VM* vm = &exec->vm(); 2124 2325 vm->whenIdle([=] () { … … 2130 2331 static EncodedJSValue JSC_HOST_CALL functionGlobalObjectCount(ExecState* exec) 2131 2332 { 2333 RELEASE_ASSERT(Options::useDollarVM()); 2132 2334 return JSValue::encode(jsNumber(exec->vm().heap.globalObjectCount())); 2133 2335 } … … 2135 2337 static EncodedJSValue JSC_HOST_CALL functionGlobalObjectForObject(ExecState* exec) 2136 2338 { 2339 RELEASE_ASSERT(Options::useDollarVM()); 2137 2340 JSValue value = exec->argument(0); 2138 2341 RELEASE_ASSERT(value.isObject()); … … 2144 2347 static EncodedJSValue JSC_HOST_CALL functionGetGetterSetter(ExecState* exec) 2145 2348 { 2349 RELEASE_ASSERT(Options::useDollarVM()); 2146 2350 VM& vm = exec->vm(); 2147 2351 auto scope = DECLARE_THROW_SCOPE(vm); … … 2173 2377 static EncodedJSValue JSC_HOST_CALL functionLoadGetterFromGetterSetter(ExecState* exec) 2174 2378 { 2379 RELEASE_ASSERT(Options::useDollarVM()); 2175 2380 VM& vm = exec->vm(); 2176 2381 auto scope = DECLARE_THROW_SCOPE(vm); … … 2189 2394 static EncodedJSValue JSC_HOST_CALL functionCreateCustomTestGetterSetter(ExecState* exec) 2190 2395 { 2396 RELEASE_ASSERT(Options::useDollarVM()); 2191 2397 VM& vm = exec->vm(); 2192 2398 JSGlobalObject* globalObject = exec->lexicalGlobalObject(); … … 2196 2402 static EncodedJSValue JSC_HOST_CALL functionDeltaBetweenButterflies(ExecState* exec) 2197 2403 { 2404 RELEASE_ASSERT(Options::useDollarVM()); 2198 2405 VM& vm = exec->vm(); 2199 2406 JSObject* a = jsDynamicCast<JSObject*>(vm, exec->argument(0)); … … 2212 2419 static EncodedJSValue JSC_HOST_CALL functionTotalGCTime(ExecState* exec) 2213 2420 { 2421 RELEASE_ASSERT(Options::useDollarVM()); 2214 2422 VM& vm = exec->vm(); 2215 2423 return JSValue::encode(jsNumber(vm.heap.totalGCTime().seconds())); … … 2218 2426 static EncodedJSValue JSC_HOST_CALL functionParseCount(ExecState*) 2219 2427 { 2428 RELEASE_ASSERT(Options::useDollarVM()); 2220 2429 return JSValue::encode(jsNumber(globalParseCount.load())); 2221 2430 } … … 2223 2432 static EncodedJSValue JSC_HOST_CALL functionIsWasmSupported(ExecState*) 2224 2433 { 2434 RELEASE_ASSERT(Options::useDollarVM()); 2225 2435 #if ENABLE(WEBASSEMBLY) 2226 2436 return JSValue::encode(jsBoolean(Wasm::isSupported())); … … 2232 2442 void JSDollarVM::finishCreation(VM& vm) 2233 2443 { 2444 RELEASE_ASSERT(Options::useDollarVM()); 2234 2445 Base::finishCreation(vm); 2235 2446 … … 2352 2563 void JSDollarVM::addFunction(VM& vm, JSGlobalObject* globalObject, const char* name, NativeFunction function, unsigned arguments) 2353 2564 { 2565 RELEASE_ASSERT(Options::useDollarVM()); 2354 2566 Identifier identifier = Identifier::fromString(vm, name); 2355 2567 putDirect(vm, identifier, JSFunction::create(vm, globalObject, arguments, identifier.string(), function)); … … 2358 2570 void JSDollarVM::addConstructibleFunction(VM& vm, JSGlobalObject* globalObject, const char* name, NativeFunction function, unsigned arguments) 2359 2571 { 2572 RELEASE_ASSERT(Options::useDollarVM()); 2360 2573 Identifier identifier = Identifier::fromString(vm, name); 2361 2574 putDirect(vm, identifier, JSFunction::create(vm, globalObject, arguments, identifier.string(), function, NoIntrinsic, function)); -
TabularUnified trunk/Source/JavaScriptCore/tools/JSDollarVM.h ¶
r229413 r249808 1 1 /* 2 * Copyright (C) 2015-201 7Apple Inc. All rights reserved.2 * Copyright (C) 2015-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 27 27 28 28 #include "JSObject.h" 29 #include "Options.h" 29 30 30 31 namespace JSC { 31 32 32 33 class JSDollarVM final : public JSNonFinalObject { 33 34 public: … … 38 39 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 39 40 { 41 RELEASE_ASSERT(Options::useDollarVM()); 40 42 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 41 43 } … … 43 45 static JSDollarVM* create(VM& vm, Structure* structure) 44 46 { 47 RELEASE_ASSERT(Options::useDollarVM()); 45 48 JSDollarVM* instance = new (NotNull, allocateCell<JSDollarVM>(vm.heap)) JSDollarVM(vm, structure); 46 49 instance->finishCreation(vm); … … 52 55 : Base(vm, structure) 53 56 { 57 RELEASE_ASSERT(Options::useDollarVM()); 54 58 } 59 55 60 56 61 void finishCreation(VM&); -
TabularUnified trunk/Source/WTF/ChangeLog ¶
r249681 r249808 1 2019-09-12 Mark Lam <mark.lam@apple.com> 2 3 Harden JSC against the abuse of runtime options. 4 https://bugs.webkit.org/show_bug.cgi?id=201597 5 <rdar://problem/55167068> 6 7 Reviewed by Filip Pizlo. 8 9 Add a source file that was missing so that Xcode can search its contents too. 10 11 * WTF.xcodeproj/project.pbxproj: 12 1 13 2019-09-09 Tim Horton <timothy_horton@apple.com> 2 14 -
TabularUnified trunk/Source/WTF/WTF.xcodeproj/project.pbxproj ¶
r249327 r249808 692 692 FE1E2C392240C05400F6B729 /* PtrTag.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PtrTag.cpp; sourceTree = "<group>"; }; 693 693 FE1E2C41224187C600F6B729 /* PlatformRegisters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PlatformRegisters.cpp; sourceTree = "<group>"; }; 694 FE3842342325CC80009DD445 /* ResourceUsage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceUsage.h; sourceTree = "<group>"; }; 694 695 FE7497E4208FFCAA0003565B /* PtrTag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PtrTag.h; sourceTree = "<group>"; }; 695 696 FE7497ED209163060003565B /* MetaAllocatorPtr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MetaAllocatorPtr.h; sourceTree = "<group>"; }; … … 1116 1117 86F46F5F1A2840EE00CCBF22 /* RefCounter.h */, 1117 1118 A8A47303151A825B004123FF /* RefPtr.h */, 1119 FE3842342325CC80009DD445 /* ResourceUsage.h */, 1118 1120 A8A47305151A825B004123FF /* RetainPtr.h */, 1119 1121 2CDED0F118115C85004DBA70 /* RunLoop.cpp */, -
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r249803 r249808 1 2019-09-12 Mark Lam <mark.lam@apple.com> 2 3 Harden JSC against the abuse of runtime options. 4 https://bugs.webkit.org/show_bug.cgi?id=201597 5 <rdar://problem/55167068> 6 7 Reviewed by Filip Pizlo. 8 9 No new tests. Covered by existing tests. 10 11 Enable Options::useDollarVM before we tell the JSGlobalObject to exposeDollarVM(). 12 The $vm utility is now hardened to require that Options::useDollarVM be 13 enabled in order for it to be used. 14 15 * testing/js/WebCoreTestSupport.cpp: 16 (WebCoreTestSupport::injectInternalsObject): 17 1 18 2019-09-12 Youenn Fablet <youenn@apple.com> 2 19 -
TabularUnified trunk/Source/WebCore/testing/js/WebCoreTestSupport.cpp ¶
r249175 r249808 64 64 if (is<Document>(*scriptContext)) { 65 65 globalObject->putDirect(vm, Identifier::fromString(vm, Internals::internalsId), toJS(exec, globalObject, Internals::create(downcast<Document>(*scriptContext)))); 66 Options::useDollarVM() = true; 66 67 globalObject->exposeDollarVM(vm); 67 68 } -
TabularUnified trunk/Source/WebKit/ChangeLog ¶
r249806 r249808 1 2019-09-12 Mark Lam <mark.lam@apple.com> 2 3 Harden JSC against the abuse of runtime options. 4 https://bugs.webkit.org/show_bug.cgi?id=201597 5 <rdar://problem/55167068> 6 7 Reviewed by Filip Pizlo. 8 9 Linux parts contributed by Carlos Garcia Campos <cgarcia@igalia.com>. 10 11 1. Add plumbing to allow WK2 tests to configureJSCForTesting(). 12 2. Removed the call enable Options::useBigInt in WebInspectorUI. 13 WebInspectorUI doesn't really need it for now. 14 15 * PluginProcess/unix/PluginProcessMainUnix.cpp: 16 * Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceEntryPoint.h: 17 (WebKit::XPCServiceInitializer): 18 * Shared/unix/AuxiliaryProcessMain.cpp: 19 (WebKit::AuxiliaryProcessMainBase::parseCommandLine): 20 * Shared/unix/AuxiliaryProcessMain.h: 21 (WebKit::AuxiliaryProcessMain): 22 * UIProcess/API/APIProcessPoolConfiguration.cpp: 23 (API::ProcessPoolConfiguration::copy): 24 * UIProcess/API/APIProcessPoolConfiguration.h: 25 * UIProcess/API/C/WKContextConfigurationRef.cpp: 26 (WKContextConfigurationSetShouldConfigureJSCForTesting): 27 * UIProcess/API/C/WKContextConfigurationRef.h: 28 * UIProcess/API/Cocoa/_WKProcessPoolConfiguration.h: 29 * UIProcess/API/Cocoa/_WKProcessPoolConfiguration.mm: 30 (-[_WKProcessPoolConfiguration configureJSCForTesting]): 31 (-[_WKProcessPoolConfiguration setConfigureJSCForTesting:]): 32 * UIProcess/Launcher/ProcessLauncher.h: 33 (WebKit::ProcessLauncher::Client::shouldConfigureJSCForTesting const): 34 * UIProcess/Launcher/glib/ProcessLauncherGLib.cpp: 35 (WebKit::ProcessLauncher::launchProcess): 36 * UIProcess/Launcher/mac/ProcessLauncherMac.mm: 37 (WebKit::ProcessLauncher::launchProcess): 38 * UIProcess/WebProcessProxy.cpp: 39 (WebKit::WebProcessProxy::shouldConfigureJSCForTesting const): 40 * UIProcess/WebProcessProxy.h: 41 * WebProcess/WebPage/WebInspectorUI.cpp: 42 (WebKit::WebInspectorUI::WebInspectorUI): 43 1 44 2019-09-12 Michael Catanzaro <mcatanzaro@igalia.com> 2 45 -
TabularUnified trunk/Source/WebKit/PluginProcess/unix/PluginProcessMainUnix.cpp ¶
r240683 r249808 74 74 ASSERT(argc == 3); 75 75 #if PLUGIN_ARCHITECTURE(UNIX) 76 InitializeWebKit2(); 76 77 exit(NetscapePluginModule::scanPlugin(argv[2]) ? EXIT_SUCCESS : EXIT_FAILURE); 77 78 #else -
TabularUnified trunk/Source/WebKit/Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceEntryPoint.h ¶
r242303 r249808 1 1 /* 2 * Copyright (C) 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2013-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 77 77 void XPCServiceInitializer(OSObjectPtr<xpc_connection_t> connection, xpc_object_t initializerMessage, xpc_object_t priorityBoostMessage) 78 78 { 79 if (initializerMessage && xpc_dictionary_get_bool(initializerMessage, "disable-jit")) 80 JSC::ExecutableAllocator::setJITEnabled(false); 79 if (initializerMessage) { 80 if (xpc_dictionary_get_bool(initializerMessage, "configure-jsc-for-testing")) 81 JSC::Config::configureForTesting(); 82 if (xpc_dictionary_get_bool(initializerMessage, "disable-jit")) 83 JSC::ExecutableAllocator::setJITEnabled(false); 84 } 81 85 82 86 XPCServiceInitializerDelegateType delegate(WTFMove(connection), initializerMessage); -
TabularUnified trunk/Source/WebKit/Shared/unix/AuxiliaryProcessMain.cpp ¶
r240683 r249808 27 27 #include "AuxiliaryProcessMain.h" 28 28 29 #include <JavaScriptCore/Options.h> 29 30 #include <WebCore/ProcessIdentifier.h> 30 31 #include <stdlib.h> 32 #include <string.h> 31 33 32 34 namespace WebKit { … … 40 42 m_parameters.processIdentifier = makeObjectIdentifier<WebCore::ProcessIdentifierType>(atoll(argv[1])); 41 43 m_parameters.connectionIdentifier = atoi(argv[2]); 44 #if ENABLE(DEVELOPER_MODE) 45 if (argc > 3 && !strcmp(argv[3], "--configure-jsc-for-testing")) 46 JSC::Config::configureForTesting(); 47 #endif 42 48 return true; 43 49 } -
TabularUnified trunk/Source/WebKit/Shared/unix/AuxiliaryProcessMain.h ¶
r240683 r249808 58 58 return EXIT_FAILURE; 59 59 60 InitializeWebKit2();61 62 60 if (!auxiliaryMain.parseCommandLine(argc, argv)) 63 61 return EXIT_FAILURE; 62 63 InitializeWebKit2(); 64 64 65 65 initializeAuxiliaryProcess<AuxiliaryProcessType>(auxiliaryMain.takeInitializationParameters()); -
TabularUnified trunk/Source/WebKit/UIProcess/API/APIProcessPoolConfiguration.cpp ¶
r249778 r249808 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 101 101 copy->m_shouldCaptureAudioInUIProcess = this->m_shouldCaptureAudioInUIProcess; 102 102 copy->m_shouldCaptureDisplayInUIProcess = this->m_shouldCaptureDisplayInUIProcess; 103 copy->m_shouldConfigureJSCForTesting = this->m_shouldConfigureJSCForTesting; 103 104 copy->m_isJITEnabled = this->m_isJITEnabled; 104 105 copy->m_downloadMonitorSpeedMultiplier = this->m_downloadMonitorSpeedMultiplier; -
TabularUnified trunk/Source/WebKit/UIProcess/API/APIProcessPoolConfiguration.h ¶
r249778 r249808 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 148 148 void setShouldCaptureDisplayInUIProcess(bool shouldCaptureDisplayInUIProcess) { m_shouldCaptureDisplayInUIProcess = shouldCaptureDisplayInUIProcess; } 149 149 150 bool shouldConfigureJSCForTesting() const { return m_shouldConfigureJSCForTesting; } 151 void setShouldConfigureJSCForTesting(bool value) { m_shouldConfigureJSCForTesting = value; } 150 152 bool isJITEnabled() const { return m_isJITEnabled; } 151 153 void setJITEnabled(bool enabled) { m_isJITEnabled = enabled; } … … 219 221 bool m_clientWouldBenefitFromAutomaticProcessPrewarming { false }; 220 222 WTF::String m_customWebContentServiceBundleIdentifier; 223 bool m_shouldConfigureJSCForTesting { false }; 221 224 bool m_isJITEnabled { true }; 222 225 bool m_usesSingleWebProcess { false }; -
TabularUnified trunk/Source/WebKit/UIProcess/API/C/WKContextConfigurationRef.cpp ¶
r249622 r249808 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 215 215 } 216 216 217 void WKContextConfigurationSetShouldConfigureJSCForTesting(WKContextConfigurationRef configuration, bool value) 218 { 219 toImpl(configuration)->setShouldConfigureJSCForTesting(value); 220 } -
TabularUnified trunk/Source/WebKit/UIProcess/API/C/WKContextConfigurationRef.h ¶
r249622 r249808 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 91 91 WK_EXPORT void WKContextConfigurationSetDiskCacheSizeOverride(WKContextConfigurationRef configuration, int64_t size) WK_C_API_DEPRECATED; 92 92 93 WK_EXPORT void WKContextConfigurationSetShouldConfigureJSCForTesting(WKContextConfigurationRef configuration, bool value); 94 93 95 #ifdef __cplusplus 94 96 } -
TabularUnified trunk/Source/WebKit/UIProcess/API/Cocoa/_WKProcessPoolConfiguration.h ¶
r247759 r249808 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 73 73 @property (nonatomic, nullable, copy, setter=setHSTSStorageDirectory:) NSURL *hstsStorageDirectory WK_API_AVAILABLE(macos(WK_MAC_TBA), ios(WK_IOS_TBA)); 74 74 75 @property (nonatomic) BOOL configureJSCForTesting WK_API_AVAILABLE(macos(WK_MAC_TBA), ios(WK_IOS_TBA)); 76 75 77 @end 76 78 -
TabularUnified trunk/Source/WebKit/UIProcess/API/Cocoa/_WKProcessPoolConfiguration.mm ¶
r247759 r249808 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 410 410 } 411 411 412 - (BOOL)configureJSCForTesting 413 { 414 return _processPoolConfiguration->shouldConfigureJSCForTesting(); 415 } 416 417 - (void)setConfigureJSCForTesting:(BOOL)value 418 { 419 _processPoolConfiguration->setShouldConfigureJSCForTesting(value); 420 } 421 412 422 #pragma mark WKObject protocol implementation 413 423 -
TabularUnified trunk/Source/WebKit/UIProcess/Launcher/ProcessLauncher.h ¶
r249274 r249808 1 1 /* 2 * Copyright (C) 2010 , 2012Apple Inc. All rights reserved.2 * Copyright (C) 2010-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 56 56 57 57 virtual void didFinishLaunching(ProcessLauncher*, IPC::Connection::Identifier) = 0; 58 virtual bool shouldConfigureJSCForTesting() const { return false; } 58 59 virtual bool isJITEnabled() const { return true; } 59 60 }; -
TabularUnified trunk/Source/WebKit/UIProcess/Launcher/glib/ProcessLauncherGLib.cpp ¶
r249569 r249808 114 114 nargs += prefixArgs.size(); 115 115 } 116 117 bool configureJSCForTesting = false; 118 if (m_launchOptions.processType == ProcessLauncher::ProcessType::Web && m_client && m_client->shouldConfigureJSCForTesting()) { 119 configureJSCForTesting = true; 120 nargs++; 121 } 116 122 #endif 117 123 … … 126 132 argv[i++] = processIdentifier.get(); 127 133 argv[i++] = webkitSocket.get(); 134 #if ENABLE(DEVELOPER_MODE) 135 if (configureJSCForTesting) 136 argv[i++] = const_cast<char*>("--configure-jsc-for-testing"); 137 #endif 128 138 #if ENABLE(NETSCAPE_PLUGIN_API) 129 139 argv[i++] = const_cast<char*>(realPluginPath.data()); -
TabularUnified trunk/Source/WebKit/UIProcess/Launcher/mac/ProcessLauncherMac.mm ¶
r245562 r249808 1 1 /* 2 * Copyright (C) 2010-201 8Apple Inc. All rights reserved.2 * Copyright (C) 2010-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 175 175 auto bootstrapMessage = adoptOSObject(xpc_dictionary_create(nullptr, nullptr, 0)); 176 176 177 if (m_client && !m_client->isJITEnabled()) 178 xpc_dictionary_set_bool(bootstrapMessage.get(), "disable-jit", true); 177 if (m_client) { 178 if (m_client->shouldConfigureJSCForTesting()) 179 xpc_dictionary_set_bool(bootstrapMessage.get(), "configure-jsc-for-testing", true); 180 if (!m_client->isJITEnabled()) 181 xpc_dictionary_set_bool(bootstrapMessage.get(), "disable-jit", true); 182 } 179 183 180 184 xpc_dictionary_set_string(bootstrapMessage.get(), "message-name", "bootstrap"); -
TabularUnified trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp ¶
r249801 r249808 1 1 /* 2 * Copyright (C) 2010-201 7Apple Inc. All rights reserved.2 * Copyright (C) 2010-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 1314 1314 } 1315 1315 1316 bool WebProcessProxy::shouldConfigureJSCForTesting() const 1317 { 1318 return processPool().configuration().shouldConfigureJSCForTesting(); 1319 } 1320 1316 1321 bool WebProcessProxy::isJITEnabled() const 1317 1322 { -
TabularUnified trunk/Source/WebKit/UIProcess/WebProcessProxy.h ¶
r249801 r249808 1 1 /* 2 * Copyright (C) 2010-201 7Apple Inc. All rights reserved.2 * Copyright (C) 2010-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 336 336 #endif 337 337 338 bool shouldConfigureJSCForTesting() const final; 338 339 bool isJITEnabled() const final; 339 340 -
TabularUnified trunk/Source/WebKit/WebProcess/WebPage/WebInspectorUI.cpp ¶
r249329 r249808 52 52 , m_frontendAPIDispatcher(page) 53 53 { 54 JSC::Options::useBigInt() = true;55 56 54 RuntimeEnabledFeatures::sharedFeatures().setInspectorAdditionsEnabled(true); 57 55 RuntimeEnabledFeatures::sharedFeatures().setImageBitmapOffscreenCanvasEnabled(true); -
TabularUnified trunk/Tools/ChangeLog ¶
r249807 r249808 1 2019-09-12 Mark Lam <mark.lam@apple.com> 2 3 Harden JSC against the abuse of runtime options. 4 https://bugs.webkit.org/show_bug.cgi?id=201597 5 <rdar://problem/55167068> 6 7 Reviewed by Filip Pizlo. 8 9 Linux parts contributed by Carlos Garcia Campos <cgarcia@igalia.com>. 10 Windows parts contributed by Fujii Hironori <Hironori.Fujii@sony.com>. 11 12 Call JSC::Config::configureForTesting() in test harnesses or at the top of tests 13 to disable the hardening on test runs. Tests rely on setting options to enable 14 test features. 15 16 * DumpRenderTree/mac/DumpRenderTree.mm: 17 (dumpRenderTree): 18 * DumpRenderTree/win/DumpRenderTree.cpp: 19 (initialize): 20 * TestWebKitAPI/PlatformUtilities.cpp: 21 (TestWebKitAPI::Util::createContextWithInjectedBundle): 22 * TestWebKitAPI/Tests/JavaScriptCore/glib/TestJSC.cpp: 23 (main): 24 * TestWebKitAPI/Tests/WebKitCocoa/ApplePay.mm: 25 (TestWebKitAPI::TEST): 26 (TestWebKitAPI::runActiveSessionTest): 27 * TestWebKitAPI/Tests/WebKitCocoa/WKWebViewDiagnosticLogging.mm: 28 (TEST): 29 * TestWebKitAPI/Tests/WebKitCocoa/WebsiteDataStoreCustomPaths.mm: 30 (TEST): 31 * TestWebKitAPI/Tests/mac/MediaPlaybackSleepAssertion.mm: 32 (TestWebKitAPI::TEST): 33 * TestWebKitAPI/WKWebViewConfigurationExtras.h: 34 * TestWebKitAPI/WKWebViewConfigurationExtras.mm: 35 (+[WKWebViewConfiguration _test_configurationWithTestPlugInClassName:]): 36 (+[WKWebViewConfiguration _test_configurationWithTestPlugInClassName:configureJSCForTesting:]): 37 * WebKitTestRunner/TestController.cpp: 38 (WTR::TestController::generateContextConfiguration const): 39 1 40 2019-09-12 Keith Rollin <krollin@apple.com> 2 41 -
TabularUnified trunk/Tools/DumpRenderTree/mac/DumpRenderTree.mm ¶
r249629 r249808 58 58 #import "WorkQueueItem.h" 59 59 #import <CoreFoundation/CoreFoundation.h> 60 #import <JavaScriptCore/JSCConfig.h> 60 61 #import <JavaScriptCore/Options.h> 61 62 #import <JavaScriptCore/TestRunnerUtils.h> … … 1284 1285 void dumpRenderTree(int argc, const char *argv[]) 1285 1286 { 1287 JSC::Config::configureForTesting(); 1288 1286 1289 #if PLATFORM(IOS_FAMILY) 1287 1290 setUpIOSLayoutTestCommunication(); -
TabularUnified trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp ¶
r249746 r249808 315 315 static void initialize() 316 316 { 317 JSC::Config::configureForTesting(); 318 317 319 if (HMODULE webKitModule = LoadLibrary(WEBKITDLL)) 318 320 if (FARPROC dllRegisterServer = GetProcAddress(webKitModule, "DllRegisterServer")) -
TabularUnified trunk/Tools/TestWebKitAPI/PlatformUtilities.cpp ¶
r248846 r249808 1 1 /* 2 * Copyright (C) 2010 Apple Inc. All rights reserved.2 * Copyright (C) 2010-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 41 41 auto configuration = adoptWK(WKContextConfigurationCreate()); 42 42 WKContextConfigurationSetInjectedBundlePath(configuration.get(), injectedBundlePath.get()); 43 WKContextConfigurationSetShouldConfigureJSCForTesting(configuration.get(), true); 43 44 return WKContextCreateWithConfiguration(configuration.get()); 44 45 } -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/JavaScriptCore/glib/TestJSC.cpp ¶
r243289 r249808 3742 3742 g_test_init(&argc, &argv, nullptr); 3743 3743 3744 // options should always be the first test, since changing options 3745 // is not allowed after the first VM instance is created. 3746 g_test_add_func("/jsc/options", testsJSCOptions); 3744 3747 g_test_add_func("/jsc/basic", testJSCBasic); 3745 3748 g_test_add_func("/jsc/types", testJSCTypes); … … 3756 3759 g_test_add_func("/jsc/weak-value", testJSCWeakValue); 3757 3760 g_test_add_func("/jsc/vm", testsJSCVirtualMachine); 3758 g_test_add_func("/jsc/options", testsJSCOptions);3759 3761 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC 3760 3762 g_test_add_func("/jsc/autocleanups", testsJSCAutocleanups); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ApplePay.mm ¶
r246056 r249808 95 95 auto messageHandler = adoptNS([[TestApplePayAvailableScriptMessageHandler alloc] initWithAPIsAvailableExpectation:YES canMakePaymentsExpectation:YES]); 96 96 97 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" ];97 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" configureJSCForTesting:YES]; 98 98 [configuration.userContentController addScriptMessageHandler:messageHandler.get() name:@"testApplePay"]; 99 99 … … 113 113 auto userScript = adoptNS([[WKUserScript alloc] initWithSource:userScriptSource injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:YES]); 114 114 115 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" ];115 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" configureJSCForTesting:YES]; 116 116 [configuration.userContentController addUserScript:userScript.get()]; 117 117 [configuration.userContentController addScriptMessageHandler:messageHandler.get() name:@"testApplePay"]; … … 136 136 auto userScript = adoptNS([[WKUserScript alloc] initWithSource:userScriptSource injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:YES]); 137 137 138 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" ];138 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" configureJSCForTesting:YES]; 139 139 [configuration.userContentController addUserScript:userScript.get()]; 140 140 [configuration.userContentController addScriptMessageHandler:messageHandler.get() name:@"testApplePay"]; … … 157 157 auto userScript = adoptNS([[WKUserScript alloc] initWithSource:userScriptSource injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES]); 158 158 159 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" ];159 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" configureJSCForTesting:YES]; 160 160 [configuration.userContentController addUserScript:userScript.get()]; 161 161 [configuration.userContentController addScriptMessageHandler:messageHandler.get() name:@"testApplePay"]; … … 177 177 auto messageHandler = adoptNS([[TestApplePayAvailableScriptMessageHandler alloc] initWithAPIsAvailableExpectation:YES canMakePaymentsExpectation:NO]); 178 178 179 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" ];179 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" configureJSCForTesting:YES]; 180 180 [configuration.userContentController addScriptMessageHandler:messageHandler.get() name:@"testApplePay"]; 181 181 … … 198 198 auto messageHandler = adoptNS([[TestApplePayAvailableScriptMessageHandler alloc] initWithAPIsAvailableExpectation:YES canMakePaymentsExpectation:NO]); 199 199 200 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" ];200 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" configureJSCForTesting:YES]; 201 201 [configuration.userContentController addScriptMessageHandler:messageHandler.get() name:@"testApplePay"]; 202 202 … … 222 222 auto userScript = adoptNS([[WKUserScript alloc] initWithSource:userScriptSource injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:YES]); 223 223 224 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" ];224 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" configureJSCForTesting:YES]; 225 225 [configuration.userContentController addScriptMessageHandler:messageHandler.get() name:@"testApplePay"]; 226 226 -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKWebViewDiagnosticLogging.mm ¶
r244307 r249808 88 88 TEST(WKWebView, DiagnosticLoggingDictionary) 89 89 { 90 auto webView = adoptNS([[WKWebView alloc] initWithFrame:CGRectZero configuration:[WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" ]]);90 auto webView = adoptNS([[WKWebView alloc] initWithFrame:CGRectZero configuration:[WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"WebProcessPlugInWithInternals" configureJSCForTesting:YES]]); 91 91 auto testLoggingDelegate = adoptNS([TestLoggingDelegate new]); 92 92 [webView _setDiagnosticLoggingDelegate:testLoggingDelegate.get()]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebsiteDataStoreCustomPaths.mm ¶
r248697 r249808 31 31 #import "TestNavigationDelegate.h" 32 32 #import "TestWKWebView.h" 33 #import <JavaScriptCore/JSCConfig.h> 33 34 #import <WebKit/WKPreferencesRef.h> 34 35 #import <WebKit/WKProcessPoolPrivate.h> … … 618 619 TEST(WebKit, MediaCache) 619 620 { 621 JSC::Config::configureForTesting(); 622 620 623 std::atomic<bool> done = false; 621 624 using namespace TestWebKitAPI; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/MediaPlaybackSleepAssertion.mm ¶
r249327 r249808 32 32 #import <Carbon/Carbon.h> 33 33 #import <IOKit/pwr_mgt/IOPMLib.h> 34 #import <JavaScriptCore/JSCConfig.h> 34 35 #import <JavaScriptCore/JSContext.h> 35 36 #import <WebCore/Settings.h> … … 143 144 TEST(WebKitLegacy, MediaPlaybackSleepAssertion) 144 145 { 146 JSC::Config::configureForTesting(); 147 145 148 didFinishLoad = false; 146 149 didBeginPlaying = false; -
TabularUnified trunk/Tools/TestWebKitAPI/WKWebViewConfigurationExtras.h ¶
r242339 r249808 1 1 /* 2 * Copyright (C) 2015 Apple Inc. All rights reserved.2 * Copyright (C) 2015-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 28 28 @interface WKWebViewConfiguration (TestWebKitAPIExtras) 29 29 + (instancetype)_test_configurationWithTestPlugInClassName:(NSString *)className; 30 + (instancetype)_test_configurationWithTestPlugInClassName:(NSString *)className configureJSCForTesting:(BOOL)value; 30 31 @end -
TabularUnified trunk/Tools/TestWebKitAPI/WKWebViewConfigurationExtras.mm ¶
r242339 r249808 1 1 /* 2 * Copyright (C) 2015 Apple Inc. All rights reserved.2 * Copyright (C) 2015-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 36 36 + (instancetype)_test_configurationWithTestPlugInClassName:(NSString *)className 37 37 { 38 return [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:className configureJSCForTesting:NO]; 39 } 40 41 + (instancetype)_test_configurationWithTestPlugInClassName:(NSString *)className configureJSCForTesting:(BOOL)value 42 { 38 43 auto processPoolConfiguration = adoptNS([[_WKProcessPoolConfiguration alloc] init]); 39 44 [processPoolConfiguration setInjectedBundleURL:[[NSBundle mainBundle] URLForResource:@"TestWebKitAPI" withExtension:@"wkbundle"]]; 45 [processPoolConfiguration setConfigureJSCForTesting:value]; 40 46 41 47 auto processPool = adoptNS([[WKProcessPool alloc] _initWithConfiguration:processPoolConfiguration.get()]); -
TabularUnified trunk/Tools/WebKitTestRunner/TestController.cpp ¶
r249675 r249808 504 504 } 505 505 506 WKContextConfigurationSetShouldConfigureJSCForTesting(configuration.get(), true); 507 506 508 return configuration; 507 509 }
Note:
See TracChangeset
for help on using the changeset viewer.