mirror of
https://github.com/darlinghq/darling-JavaScriptCore.git
synced 2024-11-26 21:50:53 +00:00
1135 lines
38 KiB
C++
1135 lines
38 KiB
C++
/*
|
|
* Copyright (C) 2011-2020 Apple Inc. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "Options.h"
|
|
|
|
#include "AssemblerCommon.h"
|
|
#include "CPU.h"
|
|
#include "LLIntCommon.h"
|
|
#include "MinimumReservedZoneSize.h"
|
|
#include <algorithm>
|
|
#include <limits>
|
|
#include <mutex>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wtf/ASCIICType.h>
|
|
#include <wtf/Compiler.h>
|
|
#include <wtf/DataLog.h>
|
|
#include <wtf/NumberOfCores.h>
|
|
#include <wtf/Optional.h>
|
|
#include <wtf/OSLogPrintStream.h>
|
|
#include <wtf/StdLibExtras.h>
|
|
#include <wtf/TranslatedProcess.h>
|
|
#include <wtf/text/StringBuilder.h>
|
|
#include <wtf/threads/Signals.h>
|
|
|
|
#if PLATFORM(COCOA)
|
|
#include <crt_externs.h>
|
|
#endif
|
|
|
|
#if ENABLE(JIT_CAGE)
|
|
#include <WebKitAdditions/JITCageAdditions.h>
|
|
#include <machine/cpu_capabilities.h>
|
|
#endif
|
|
|
|
namespace JSC {
|
|
|
|
template<typename T>
|
|
Optional<T> parse(const char* string);
|
|
|
|
template<>
|
|
Optional<OptionsStorage::Bool> parse(const char* string)
|
|
{
|
|
if (equalLettersIgnoringASCIICase(string, "true") || equalLettersIgnoringASCIICase(string, "yes") || !strcmp(string, "1"))
|
|
return true;
|
|
if (equalLettersIgnoringASCIICase(string, "false") || equalLettersIgnoringASCIICase(string, "no") || !strcmp(string, "0"))
|
|
return false;
|
|
return WTF::nullopt;
|
|
}
|
|
|
|
template<>
|
|
Optional<OptionsStorage::Int32> parse(const char* string)
|
|
{
|
|
int32_t value;
|
|
if (sscanf(string, "%d", &value) == 1)
|
|
return value;
|
|
return WTF::nullopt;
|
|
}
|
|
|
|
template<>
|
|
Optional<OptionsStorage::Unsigned> parse(const char* string)
|
|
{
|
|
unsigned value;
|
|
if (sscanf(string, "%u", &value) == 1)
|
|
return value;
|
|
return WTF::nullopt;
|
|
}
|
|
|
|
#if CPU(ADDRESS64) || OS(DARWIN)
|
|
template<>
|
|
Optional<OptionsStorage::Size> parse(const char* string)
|
|
{
|
|
size_t value;
|
|
if (sscanf(string, "%zu", &value) == 1)
|
|
return value;
|
|
return WTF::nullopt;
|
|
}
|
|
#endif // CPU(ADDRESS64) || OS(DARWIN)
|
|
|
|
template<>
|
|
Optional<OptionsStorage::Double> parse(const char* string)
|
|
{
|
|
double value;
|
|
if (sscanf(string, "%lf", &value) == 1)
|
|
return value;
|
|
return WTF::nullopt;
|
|
}
|
|
|
|
template<>
|
|
Optional<OptionsStorage::OptionRange> parse(const char* string)
|
|
{
|
|
OptionRange range;
|
|
if (range.init(string))
|
|
return range;
|
|
return WTF::nullopt;
|
|
}
|
|
|
|
template<>
|
|
Optional<OptionsStorage::OptionString> parse(const char* string)
|
|
{
|
|
const char* value = nullptr;
|
|
if (!strlen(string))
|
|
return value;
|
|
|
|
// FIXME <https://webkit.org/b/169057>: This could leak if this option is set more than once.
|
|
// Given that Options are typically used for testing, this isn't considered to be a problem.
|
|
value = WTF::fastStrDup(string);
|
|
return value;
|
|
}
|
|
|
|
template<>
|
|
Optional<OptionsStorage::GCLogLevel> parse(const char* string)
|
|
{
|
|
if (equalLettersIgnoringASCIICase(string, "none") || equalLettersIgnoringASCIICase(string, "no") || equalLettersIgnoringASCIICase(string, "false") || !strcmp(string, "0"))
|
|
return GCLogging::None;
|
|
|
|
if (equalLettersIgnoringASCIICase(string, "basic") || equalLettersIgnoringASCIICase(string, "yes") || equalLettersIgnoringASCIICase(string, "true") || !strcmp(string, "1"))
|
|
return GCLogging::Basic;
|
|
|
|
if (equalLettersIgnoringASCIICase(string, "verbose") || !strcmp(string, "2"))
|
|
return GCLogging::Verbose;
|
|
|
|
return WTF::nullopt;
|
|
}
|
|
|
|
bool Options::isAvailable(Options::ID id, Options::Availability availability)
|
|
{
|
|
if (availability == Availability::Restricted)
|
|
return g_jscConfig.restrictedOptionsEnabled;
|
|
ASSERT(availability == Availability::Configurable);
|
|
|
|
UNUSED_PARAM(id);
|
|
#if !defined(NDEBUG)
|
|
if (id == maxSingleAllocationSizeID)
|
|
return true;
|
|
#endif
|
|
#if OS(DARWIN)
|
|
if (id == useSigillCrashAnalyzerID)
|
|
return true;
|
|
#endif
|
|
#if ENABLE(ASSEMBLER) && OS(LINUX)
|
|
if (id == logJITCodeForPerfID)
|
|
return true;
|
|
#endif
|
|
if (id == traceLLIntExecutionID)
|
|
return !!LLINT_TRACING;
|
|
if (id == traceLLIntSlowPathID)
|
|
return !!LLINT_TRACING;
|
|
return false;
|
|
}
|
|
|
|
template<typename T>
|
|
bool overrideOptionWithHeuristic(T& variable, Options::ID id, const char* name, Options::Availability availability)
|
|
{
|
|
bool available = (availability == Options::Availability::Normal)
|
|
|| Options::isAvailable(id, availability);
|
|
|
|
const char* stringValue = getenv(name);
|
|
if (!stringValue)
|
|
return false;
|
|
|
|
if (available) {
|
|
Optional<T> value = parse<T>(stringValue);
|
|
if (value) {
|
|
variable = value.value();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
fprintf(stderr, "WARNING: failed to parse %s=%s\n", name, stringValue);
|
|
return false;
|
|
}
|
|
|
|
bool Options::overrideAliasedOptionWithHeuristic(const char* name)
|
|
{
|
|
const char* stringValue = getenv(name);
|
|
if (!stringValue)
|
|
return false;
|
|
|
|
String aliasedOption;
|
|
aliasedOption = String(&name[4]) + "=" + stringValue;
|
|
if (Options::setOption(aliasedOption.utf8().data()))
|
|
return true;
|
|
|
|
fprintf(stderr, "WARNING: failed to parse %s=%s\n", name, stringValue);
|
|
return false;
|
|
}
|
|
|
|
static unsigned computeNumberOfWorkerThreads(int maxNumberOfWorkerThreads, int minimum = 1)
|
|
{
|
|
int cpusToUse = std::min(kernTCSMAwareNumberOfProcessorCores(), maxNumberOfWorkerThreads);
|
|
|
|
// Be paranoid, it is the OS we're dealing with, after all.
|
|
ASSERT(cpusToUse >= 1);
|
|
return std::max(cpusToUse, minimum);
|
|
}
|
|
|
|
static int32_t computePriorityDeltaOfWorkerThreads(int32_t twoCorePriorityDelta, int32_t multiCorePriorityDelta)
|
|
{
|
|
if (kernTCSMAwareNumberOfProcessorCores() <= 2)
|
|
return twoCorePriorityDelta;
|
|
|
|
return multiCorePriorityDelta;
|
|
}
|
|
|
|
static constexpr bool jitEnabledByDefault()
|
|
{
|
|
return is32Bit() || isAddress64Bit();
|
|
}
|
|
|
|
static unsigned computeNumberOfGCMarkers(unsigned maxNumberOfGCMarkers)
|
|
{
|
|
return computeNumberOfWorkerThreads(maxNumberOfGCMarkers);
|
|
}
|
|
|
|
static bool defaultTCSMValue()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
const char* const OptionRange::s_nullRangeStr = "<null>";
|
|
|
|
bool OptionRange::init(const char* rangeString)
|
|
{
|
|
// rangeString should be in the form of [!]<low>[:<high>]
|
|
// where low and high are unsigned
|
|
|
|
bool invert = false;
|
|
|
|
if (!rangeString) {
|
|
m_state = InitError;
|
|
return false;
|
|
}
|
|
|
|
if (!strcmp(rangeString, s_nullRangeStr)) {
|
|
m_state = Uninitialized;
|
|
return true;
|
|
}
|
|
|
|
const char* p = rangeString;
|
|
|
|
if (*p == '!') {
|
|
invert = true;
|
|
p++;
|
|
}
|
|
|
|
int scanResult = sscanf(p, " %u:%u", &m_lowLimit, &m_highLimit);
|
|
|
|
if (!scanResult || scanResult == EOF) {
|
|
m_state = InitError;
|
|
return false;
|
|
}
|
|
|
|
if (scanResult == 1)
|
|
m_highLimit = m_lowLimit;
|
|
|
|
if (m_lowLimit > m_highLimit) {
|
|
m_state = InitError;
|
|
return false;
|
|
}
|
|
|
|
// FIXME <https://webkit.org/b/169057>: This could leak if this particular option is set more than once.
|
|
// Given that these options are used for testing, this isn't considered to be problem.
|
|
m_rangeString = WTF::fastStrDup(rangeString);
|
|
m_state = invert ? Inverted : Normal;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool OptionRange::isInRange(unsigned count)
|
|
{
|
|
if (m_state < Normal)
|
|
return true;
|
|
|
|
if ((m_lowLimit <= count) && (count <= m_highLimit))
|
|
return m_state == Normal ? true : false;
|
|
|
|
return m_state == Normal ? false : true;
|
|
}
|
|
|
|
void OptionRange::dump(PrintStream& out) const
|
|
{
|
|
out.print(m_rangeString);
|
|
}
|
|
|
|
// Realize the names for each of the options:
|
|
const Options::ConstMetaData Options::s_constMetaData[NumberOfOptions] = {
|
|
#define FILL_OPTION_INFO(type_, name_, defaultValue_, availability_, description_) \
|
|
{ #name_, description_, Options::Type::type_, Availability::availability_, offsetof(OptionsStorage, name_), offsetof(OptionsStorage, name_##Default) },
|
|
FOR_EACH_JSC_OPTION(FILL_OPTION_INFO)
|
|
#undef FILL_OPTION_INFO
|
|
};
|
|
|
|
static void scaleJITPolicy()
|
|
{
|
|
auto& scaleFactor = Options::jitPolicyScale();
|
|
if (scaleFactor > 1.0)
|
|
scaleFactor = 1.0;
|
|
else if (scaleFactor < 0.0)
|
|
scaleFactor = 0.0;
|
|
|
|
auto scaleOption = [&] (int32_t& optionValue, int32_t minValue) {
|
|
optionValue *= scaleFactor;
|
|
optionValue = std::max(optionValue, minValue);
|
|
};
|
|
|
|
scaleOption(Options::thresholdForJITAfterWarmUp(), 0);
|
|
scaleOption(Options::thresholdForJITSoon(), 0);
|
|
scaleOption(Options::thresholdForOptimizeAfterWarmUp(), 1);
|
|
scaleOption(Options::thresholdForOptimizeAfterLongWarmUp(), 1);
|
|
scaleOption(Options::thresholdForOptimizeSoon(), 1);
|
|
scaleOption(Options::thresholdForFTLOptimizeSoon(), 2);
|
|
scaleOption(Options::thresholdForFTLOptimizeAfterWarmUp(), 2);
|
|
}
|
|
|
|
static void overrideDefaults()
|
|
{
|
|
#if !PLATFORM(IOS_FAMILY)
|
|
if (WTF::numberOfProcessorCores() < 4)
|
|
#endif
|
|
{
|
|
Options::maximumMutatorUtilization() = 0.6;
|
|
Options::concurrentGCMaxHeadroom() = 1.4;
|
|
Options::minimumGCPauseMS() = 1;
|
|
Options::useStochasticMutatorScheduler() = false;
|
|
if (WTF::numberOfProcessorCores() <= 1)
|
|
Options::gcIncrementScale() = 1;
|
|
else
|
|
Options::gcIncrementScale() = 0;
|
|
}
|
|
|
|
#if USE(BMALLOC_MEMORY_FOOTPRINT_API)
|
|
// On iOS and conditionally Linux, we control heap growth using process memory footprint. Therefore these values can be agressive.
|
|
Options::smallHeapRAMFraction() = 0.8;
|
|
Options::mediumHeapRAMFraction() = 0.9;
|
|
#endif
|
|
|
|
#if ENABLE(SIGILL_CRASH_ANALYZER)
|
|
Options::useSigillCrashAnalyzer() = true;
|
|
#endif
|
|
|
|
#if !ENABLE(SIGNAL_BASED_VM_TRAPS)
|
|
Options::usePollingTraps() = true;
|
|
#endif
|
|
|
|
#if !ENABLE(WEBASSEMBLY_SIGNALING_MEMORY)
|
|
Options::useWebAssemblyFastMemory() = false;
|
|
Options::useSharedArrayBuffer() = false;
|
|
#endif
|
|
|
|
#if !HAVE(MACH_EXCEPTIONS)
|
|
Options::useMachForExceptions() = false;
|
|
#endif
|
|
|
|
if (Options::useWasmLLInt() && !Options::wasmLLIntTiersUpToBBQ()) {
|
|
Options::thresholdForOMGOptimizeAfterWarmUp() = 1500;
|
|
Options::thresholdForOMGOptimizeSoon() = 100;
|
|
}
|
|
}
|
|
|
|
static void correctOptions()
|
|
{
|
|
unsigned thresholdForGlobalLexicalBindingEpoch = Options::thresholdForGlobalLexicalBindingEpoch();
|
|
if (thresholdForGlobalLexicalBindingEpoch == 0 || thresholdForGlobalLexicalBindingEpoch == 1)
|
|
Options::thresholdForGlobalLexicalBindingEpoch() = UINT_MAX;
|
|
}
|
|
|
|
static void disableAllJITOptions()
|
|
{
|
|
Options::useLLInt() = true;
|
|
Options::useJIT() = false;
|
|
Options::useBaselineJIT() = false;
|
|
Options::useDFGJIT() = false;
|
|
Options::useFTLJIT() = false;
|
|
Options::useBBQJIT() = false;
|
|
Options::useOMGJIT() = false;
|
|
Options::useDOMJIT() = false;
|
|
Options::useRegExpJIT() = false;
|
|
Options::useJITCage() = false;
|
|
}
|
|
|
|
void Options::recomputeDependentOptions()
|
|
{
|
|
#if !defined(NDEBUG)
|
|
Options::validateDFGExceptionHandling() = true;
|
|
#endif
|
|
#if !ENABLE(JIT)
|
|
disableAllJITOptions();
|
|
#endif
|
|
#if !ENABLE(CONCURRENT_JS)
|
|
Options::useConcurrentJIT() = false;
|
|
#endif
|
|
#if !ENABLE(YARR_JIT)
|
|
Options::useRegExpJIT() = false;
|
|
#endif
|
|
#if !ENABLE(DFG_JIT)
|
|
Options::useDFGJIT() = false;
|
|
Options::useFTLJIT() = false;
|
|
#endif
|
|
#if !ENABLE(FTL_JIT)
|
|
Options::useFTLJIT() = false;
|
|
#endif
|
|
|
|
#if !CPU(X86_64) && !CPU(ARM64)
|
|
Options::useConcurrentGC() = false;
|
|
#endif
|
|
|
|
// At initialization time, we may decide that useJIT should be false for any
|
|
// number of reasons (including failing to allocate JIT memory), and therefore,
|
|
// will / should not be able to enable any JIT related services.
|
|
if (!Options::useJIT()) {
|
|
disableAllJITOptions();
|
|
Options::useConcurrentJIT() = false;
|
|
Options::useSigillCrashAnalyzer() = false;
|
|
Options::useWebAssembly() = false;
|
|
Options::usePollingTraps() = true;
|
|
}
|
|
|
|
if (!jitEnabledByDefault() && !Options::useJIT())
|
|
Options::useLLInt() = true;
|
|
|
|
if (WTF::isX86BinaryRunningOnARM() && Options::useJIT()) {
|
|
Options::useBaselineJIT() = false;
|
|
Options::useDFGJIT() = false;
|
|
Options::useFTLJIT() = false;
|
|
}
|
|
|
|
if (!Options::useWebAssembly())
|
|
Options::useFastTLSForWasmContext() = false;
|
|
|
|
if (Options::dumpDisassembly()
|
|
|| Options::dumpDFGDisassembly()
|
|
|| Options::dumpFTLDisassembly()
|
|
|| Options::dumpBytecodeAtDFGTime()
|
|
|| Options::dumpGraphAtEachPhase()
|
|
|| Options::dumpDFGGraphAtEachPhase()
|
|
|| Options::dumpDFGFTLGraphAtEachPhase()
|
|
|| Options::dumpB3GraphAtEachPhase()
|
|
|| Options::dumpAirGraphAtEachPhase()
|
|
|| Options::verboseCompilation()
|
|
|| Options::verboseFTLCompilation()
|
|
|| Options::logCompilationChanges()
|
|
|| Options::validateGraph()
|
|
|| Options::validateGraphAtEachPhase()
|
|
|| Options::verboseOSR()
|
|
|| Options::verboseCompilationQueue()
|
|
|| Options::reportCompileTimes()
|
|
|| Options::reportBaselineCompileTimes()
|
|
|| Options::reportDFGCompileTimes()
|
|
|| Options::reportFTLCompileTimes()
|
|
|| Options::logPhaseTimes()
|
|
|| Options::verboseCFA()
|
|
|| Options::verboseDFGFailure()
|
|
|| Options::verboseFTLFailure()
|
|
|| Options::dumpFuzzerAgentPredictions())
|
|
Options::alwaysComputeHash() = true;
|
|
|
|
if (!Options::useConcurrentGC())
|
|
Options::collectContinuously() = false;
|
|
|
|
if (Options::jitPolicyScale() != Options::jitPolicyScaleDefault())
|
|
scaleJITPolicy();
|
|
|
|
if (Options::forceEagerCompilation()) {
|
|
Options::thresholdForJITAfterWarmUp() = 10;
|
|
Options::thresholdForJITSoon() = 10;
|
|
Options::thresholdForOptimizeAfterWarmUp() = 20;
|
|
Options::thresholdForOptimizeAfterLongWarmUp() = 20;
|
|
Options::thresholdForOptimizeSoon() = 20;
|
|
Options::thresholdForFTLOptimizeAfterWarmUp() = 20;
|
|
Options::thresholdForFTLOptimizeSoon() = 20;
|
|
Options::maximumEvalCacheableSourceLength() = 150000;
|
|
Options::useConcurrentJIT() = false;
|
|
}
|
|
|
|
if (Options::alwaysUseShadowChicken())
|
|
Options::maximumInliningDepth() = 1;
|
|
|
|
// Compute the maximum value of the reoptimization retry counter. This is simply
|
|
// the largest value at which we don't overflow the execute counter, when using it
|
|
// to left-shift the execution counter by this amount. Currently the value ends
|
|
// up being 18, so this loop is not so terrible; it probably takes up ~100 cycles
|
|
// total on a 32-bit processor.
|
|
Options::reoptimizationRetryCounterMax() = 0;
|
|
while ((static_cast<int64_t>(Options::thresholdForOptimizeAfterLongWarmUp()) << (Options::reoptimizationRetryCounterMax() + 1)) <= static_cast<int64_t>(std::numeric_limits<int32_t>::max()))
|
|
Options::reoptimizationRetryCounterMax()++;
|
|
|
|
ASSERT((static_cast<int64_t>(Options::thresholdForOptimizeAfterLongWarmUp()) << Options::reoptimizationRetryCounterMax()) > 0);
|
|
ASSERT((static_cast<int64_t>(Options::thresholdForOptimizeAfterLongWarmUp()) << Options::reoptimizationRetryCounterMax()) <= static_cast<int64_t>(std::numeric_limits<int32_t>::max()));
|
|
|
|
#if !defined(NDEBUG)
|
|
if (Options::maxSingleAllocationSize())
|
|
fastSetMaxSingleAllocationSize(Options::maxSingleAllocationSize());
|
|
else
|
|
fastSetMaxSingleAllocationSize(std::numeric_limits<size_t>::max());
|
|
#endif
|
|
|
|
if (Options::useZombieMode()) {
|
|
Options::sweepSynchronously() = true;
|
|
Options::scribbleFreeCells() = true;
|
|
}
|
|
|
|
if (Options::reservedZoneSize() < minimumReservedZoneSize)
|
|
Options::reservedZoneSize() = minimumReservedZoneSize;
|
|
if (Options::softReservedZoneSize() < Options::reservedZoneSize() + minimumReservedZoneSize)
|
|
Options::softReservedZoneSize() = Options::reservedZoneSize() + minimumReservedZoneSize;
|
|
|
|
// FIXME: Make probe OSR exit work on 32-bit:
|
|
// https://bugs.webkit.org/show_bug.cgi?id=177956
|
|
Options::useProbeOSRExit() = false;
|
|
|
|
if (!Options::useCodeCache())
|
|
Options::diskCachePath() = nullptr;
|
|
|
|
if (Options::randomIntegrityAuditRate() < 0)
|
|
Options::randomIntegrityAuditRate() = 0;
|
|
else if (Options::randomIntegrityAuditRate() > 1.0)
|
|
Options::randomIntegrityAuditRate() = 1.0;
|
|
|
|
if (!Options::allowUnsupportedTiers()) {
|
|
#define DISABLE_TIERS(option, flags, ...) do { \
|
|
if (!Options::option()) \
|
|
break; \
|
|
if (!(flags & SupportsDFG)) \
|
|
Options::useDFGJIT() = false; \
|
|
if (!(flags & SupportsFTL)) \
|
|
Options::useFTLJIT() = false; \
|
|
} while (false);
|
|
|
|
FOR_EACH_JSC_EXPERIMENTAL_OPTION(DISABLE_TIERS);
|
|
}
|
|
|
|
if (Options::usePrivateStaticClassFields())
|
|
Options::usePrivateClassFields() = true;
|
|
}
|
|
|
|
inline void* Options::addressOfOption(Options::ID id)
|
|
{
|
|
auto offset = Options::s_constMetaData[id].offsetOfOption;
|
|
return reinterpret_cast<uint8_t*>(&g_jscConfig.options) + offset;
|
|
}
|
|
|
|
inline void* Options::addressOfOptionDefault(Options::ID id)
|
|
{
|
|
auto offset = Options::s_constMetaData[id].offsetOfOptionDefault;
|
|
return reinterpret_cast<uint8_t*>(&g_jscConfig.options) + offset;
|
|
}
|
|
|
|
#if OS(WINDOWS)
|
|
// FIXME: Use equalLettersIgnoringASCIICase.
|
|
inline bool strncasecmp(const char* str1, const char* str2, size_t n)
|
|
{
|
|
return _strnicmp(str1, str2, n);
|
|
}
|
|
#endif
|
|
|
|
void Options::initialize()
|
|
{
|
|
static std::once_flag initializeOptionsOnceFlag;
|
|
|
|
std::call_once(
|
|
initializeOptionsOnceFlag,
|
|
[] {
|
|
AllowUnfinalizedAccessScope scope;
|
|
|
|
// Sanity check that options address computation is working.
|
|
RELEASE_ASSERT(Options::addressOfOption(useKernTCSMID) == &Options::useKernTCSM());
|
|
RELEASE_ASSERT(Options::addressOfOptionDefault(useKernTCSMID) == &Options::useKernTCSMDefault());
|
|
RELEASE_ASSERT(Options::addressOfOption(gcMaxHeapSizeID) == &Options::gcMaxHeapSize());
|
|
RELEASE_ASSERT(Options::addressOfOptionDefault(gcMaxHeapSizeID) == &Options::gcMaxHeapSizeDefault());
|
|
RELEASE_ASSERT(Options::addressOfOption(forceOSRExitToLLIntID) == &Options::forceOSRExitToLLInt());
|
|
RELEASE_ASSERT(Options::addressOfOptionDefault(forceOSRExitToLLIntID) == &Options::forceOSRExitToLLIntDefault());
|
|
|
|
#ifndef NDEBUG
|
|
Config::enableRestrictedOptions();
|
|
#endif
|
|
// Initialize each of the options with their default values:
|
|
#define INIT_OPTION(type_, name_, defaultValue_, availability_, description_) { \
|
|
auto value = defaultValue_; \
|
|
name_() = value; \
|
|
name_##Default() = value; \
|
|
}
|
|
FOR_EACH_JSC_OPTION(INIT_OPTION)
|
|
#undef INIT_OPTION
|
|
|
|
overrideDefaults();
|
|
|
|
// Allow environment vars to override options if applicable.
|
|
// The evn var should be the name of the option prefixed with
|
|
// "JSC_".
|
|
#if PLATFORM(COCOA)
|
|
bool hasBadOptions = false;
|
|
for (char** envp = *_NSGetEnviron(); *envp; envp++) {
|
|
const char* env = *envp;
|
|
if (!strncmp("JSC_", env, 4)) {
|
|
if (!Options::setOption(&env[4])) {
|
|
dataLog("ERROR: invalid option: ", *envp, "\n");
|
|
hasBadOptions = true;
|
|
}
|
|
}
|
|
}
|
|
if (hasBadOptions && Options::validateOptions())
|
|
CRASH();
|
|
#else // PLATFORM(COCOA)
|
|
#define OVERRIDE_OPTION_WITH_HEURISTICS(type_, name_, defaultValue_, availability_, description_) \
|
|
overrideOptionWithHeuristic(name_(), name_##ID, "JSC_" #name_, Availability::availability_);
|
|
FOR_EACH_JSC_OPTION(OVERRIDE_OPTION_WITH_HEURISTICS)
|
|
#undef OVERRIDE_OPTION_WITH_HEURISTICS
|
|
#endif // PLATFORM(COCOA)
|
|
|
|
#define OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS(aliasedName_, unaliasedName_, equivalence_) \
|
|
overrideAliasedOptionWithHeuristic("JSC_" #aliasedName_);
|
|
FOR_EACH_JSC_ALIASED_OPTION(OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS)
|
|
#undef OVERRIDE_ALIASED_OPTION_WITH_HEURISTICS
|
|
|
|
#if 0
|
|
; // Deconfuse editors that do auto indentation
|
|
#endif
|
|
|
|
correctOptions();
|
|
|
|
recomputeDependentOptions();
|
|
|
|
// Do range checks where needed and make corrections to the options:
|
|
ASSERT(Options::thresholdForOptimizeAfterLongWarmUp() >= Options::thresholdForOptimizeAfterWarmUp());
|
|
ASSERT(Options::thresholdForOptimizeAfterWarmUp() >= Options::thresholdForOptimizeSoon());
|
|
ASSERT(Options::thresholdForOptimizeAfterWarmUp() >= 0);
|
|
ASSERT(Options::criticalGCMemoryThreshold() > 0.0 && Options::criticalGCMemoryThreshold() < 1.0);
|
|
|
|
#if HAVE(MACH_EXCEPTIONS)
|
|
if (Options::useMachForExceptions())
|
|
handleSignalsWithMach();
|
|
#endif
|
|
|
|
#if OS(DARWIN)
|
|
if (Options::useOSLog()) {
|
|
WTF::setDataFile(OSLogPrintStream::open("com.apple.JavaScriptCore", "DataLog", OS_LOG_TYPE_INFO));
|
|
// Make sure no one jumped here for nefarious reasons...
|
|
RELEASE_ASSERT(useOSLog());
|
|
}
|
|
#endif
|
|
|
|
#if ASAN_ENABLED && OS(LINUX) && ENABLE(WEBASSEMBLY_SIGNALING_MEMORY)
|
|
if (Options::useWebAssemblyFastMemory() || Options::useSharedArrayBuffer()) {
|
|
const char* asanOptions = getenv("ASAN_OPTIONS");
|
|
bool okToUseWebAssemblyFastMemory = asanOptions
|
|
&& (strstr(asanOptions, "allow_user_segv_handler=1") || strstr(asanOptions, "handle_segv=0"));
|
|
if (!okToUseWebAssemblyFastMemory) {
|
|
dataLogLn("WARNING: ASAN interferes with JSC signal handlers; useWebAssemblyFastMemory and useSharedArrayBuffer will be disabled.");
|
|
Options::useWebAssemblyFastMemory() = false;
|
|
Options::useSharedArrayBuffer() = false;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#if CPU(X86_64) && OS(DARWIN)
|
|
Options::dumpZappedCellCrashData() =
|
|
(hwPhysicalCPUMax() >= 4) && (hwL3CacheSize() >= static_cast<int64_t>(6 * MB));
|
|
#endif
|
|
|
|
// The following should only be done at the end after all options
|
|
// have been initialized.
|
|
dumpOptionsIfNeeded();
|
|
ensureOptionsAreCoherent();
|
|
});
|
|
}
|
|
|
|
void Options::dumpOptionsIfNeeded()
|
|
{
|
|
if (Options::dumpOptions()) {
|
|
DumpLevel level = static_cast<DumpLevel>(Options::dumpOptions());
|
|
if (level > DumpLevel::Verbose)
|
|
level = DumpLevel::Verbose;
|
|
|
|
const char* title = nullptr;
|
|
switch (level) {
|
|
case DumpLevel::None:
|
|
break;
|
|
case DumpLevel::Overridden:
|
|
title = "Overridden JSC options:";
|
|
break;
|
|
case DumpLevel::All:
|
|
title = "All JSC options:";
|
|
break;
|
|
case DumpLevel::Verbose:
|
|
title = "All JSC options with descriptions:";
|
|
break;
|
|
}
|
|
|
|
StringBuilder builder;
|
|
dumpAllOptions(builder, level, title, nullptr, " ", "\n", DumpDefaults);
|
|
dataLog(builder.toString());
|
|
}
|
|
}
|
|
|
|
void Options::finalize()
|
|
{
|
|
ASSERT(!g_jscConfig.options.allowUnfinalizedAccess);
|
|
g_jscConfig.options.isFinalized = true;
|
|
}
|
|
|
|
static bool isSeparator(char c)
|
|
{
|
|
return isASCIISpace(c) || (c == ',');
|
|
}
|
|
|
|
bool Options::setOptions(const char* optionsStr)
|
|
{
|
|
AllowUnfinalizedAccessScope scope;
|
|
RELEASE_ASSERT(!g_jscConfig.isPermanentlyFrozen());
|
|
Vector<char*> options;
|
|
|
|
size_t length = strlen(optionsStr);
|
|
char* optionsStrCopy = WTF::fastStrDup(optionsStr);
|
|
char* end = optionsStrCopy + length;
|
|
char* p = optionsStrCopy;
|
|
|
|
while (p < end) {
|
|
// Skip separators (white space or commas).
|
|
while (p < end && isSeparator(*p))
|
|
p++;
|
|
if (p == end)
|
|
break;
|
|
|
|
char* optionStart = p;
|
|
p = strstr(p, "=");
|
|
if (!p) {
|
|
dataLogF("'=' not found in option string: %p\n", optionStart);
|
|
WTF::fastFree(optionsStrCopy);
|
|
return false;
|
|
}
|
|
p++;
|
|
|
|
char* valueBegin = p;
|
|
bool hasStringValue = false;
|
|
const int minStringLength = 2; // The min is an empty string i.e. 2 double quotes.
|
|
if ((p + minStringLength < end) && (*p == '"')) {
|
|
p = strstr(p + 1, "\"");
|
|
if (!p) {
|
|
dataLogF("Missing trailing '\"' in option string: %p\n", optionStart);
|
|
WTF::fastFree(optionsStrCopy);
|
|
return false; // End of string not found.
|
|
}
|
|
hasStringValue = true;
|
|
}
|
|
|
|
// Find next separator (white space or commas).
|
|
while (p < end && !isSeparator(*p))
|
|
p++;
|
|
if (!p)
|
|
p = end; // No more " " separator. Hence, this is the last arg.
|
|
|
|
// If we have a well-formed string value, strip the quotes.
|
|
if (hasStringValue) {
|
|
char* valueEnd = p;
|
|
ASSERT((*valueBegin == '"') && ((valueEnd - valueBegin) >= minStringLength) && (valueEnd[-1] == '"'));
|
|
memmove(valueBegin, valueBegin + 1, valueEnd - valueBegin - minStringLength);
|
|
valueEnd[-minStringLength] = '\0';
|
|
}
|
|
|
|
// Strip leading -- if present.
|
|
if ((p - optionStart > 2) && optionStart[0] == '-' && optionStart[1] == '-')
|
|
optionStart += 2;
|
|
|
|
*p++ = '\0';
|
|
options.append(optionStart);
|
|
}
|
|
|
|
bool success = true;
|
|
for (auto& option : options) {
|
|
bool optionSuccess = setOption(option);
|
|
if (!optionSuccess) {
|
|
dataLogF("Failed to set option : %s\n", option);
|
|
success = false;
|
|
}
|
|
}
|
|
|
|
correctOptions();
|
|
|
|
recomputeDependentOptions();
|
|
|
|
dumpOptionsIfNeeded();
|
|
|
|
ensureOptionsAreCoherent();
|
|
|
|
WTF::fastFree(optionsStrCopy);
|
|
|
|
return success;
|
|
}
|
|
|
|
// Parses a single command line option in the format "<optionName>=<value>"
|
|
// (no spaces allowed) and set the specified option if appropriate.
|
|
bool Options::setOptionWithoutAlias(const char* arg)
|
|
{
|
|
// arg should look like this:
|
|
// <jscOptionName>=<appropriate value>
|
|
const char* equalStr = strchr(arg, '=');
|
|
if (!equalStr)
|
|
return false;
|
|
|
|
const char* valueStr = equalStr + 1;
|
|
|
|
// For each option, check if the specified arg is a match. If so, set the arg
|
|
// if the value makes sense. Otherwise, move on to checking the next option.
|
|
#define SET_OPTION_IF_MATCH(type_, name_, defaultValue_, availability_, description_) \
|
|
if (strlen(#name_) == static_cast<size_t>(equalStr - arg) \
|
|
&& !strncasecmp(arg, #name_, equalStr - arg)) { \
|
|
if (Availability::availability_ != Availability::Normal \
|
|
&& !isAvailable(name_##ID, Availability::availability_)) \
|
|
return false; \
|
|
Optional<OptionsStorage::type_> value; \
|
|
value = parse<OptionsStorage::type_>(valueStr); \
|
|
if (value) { \
|
|
name_() = value.value(); \
|
|
correctOptions(); \
|
|
recomputeDependentOptions(); \
|
|
return true; \
|
|
} \
|
|
return false; \
|
|
}
|
|
|
|
FOR_EACH_JSC_OPTION(SET_OPTION_IF_MATCH)
|
|
#undef SET_OPTION_IF_MATCH
|
|
|
|
return false; // No option matched.
|
|
}
|
|
|
|
static const char* invertBoolOptionValue(const char* valueStr)
|
|
{
|
|
Optional<OptionsStorage::Bool> value = parse<OptionsStorage::Bool>(valueStr);
|
|
if (!value)
|
|
return nullptr;
|
|
return value.value() ? "false" : "true";
|
|
}
|
|
|
|
|
|
bool Options::setAliasedOption(const char* arg)
|
|
{
|
|
// arg should look like this:
|
|
// <jscOptionName>=<appropriate value>
|
|
const char* equalStr = strchr(arg, '=');
|
|
if (!equalStr)
|
|
return false;
|
|
|
|
IGNORE_WARNINGS_BEGIN("tautological-compare")
|
|
|
|
// For each option, check if the specify arg is a match. If so, set the arg
|
|
// if the value makes sense. Otherwise, move on to checking the next option.
|
|
#define FOR_EACH_OPTION(aliasedName_, unaliasedName_, equivalence) \
|
|
if (strlen(#aliasedName_) == static_cast<size_t>(equalStr - arg) \
|
|
&& !strncasecmp(arg, #aliasedName_, equalStr - arg)) { \
|
|
String unaliasedOption(#unaliasedName_); \
|
|
if (equivalence == SameOption) \
|
|
unaliasedOption = unaliasedOption + equalStr; \
|
|
else { \
|
|
ASSERT(equivalence == InvertedOption); \
|
|
auto* invertedValueStr = invertBoolOptionValue(equalStr + 1); \
|
|
if (!invertedValueStr) \
|
|
return false; \
|
|
unaliasedOption = unaliasedOption + "=" + invertedValueStr; \
|
|
} \
|
|
return setOptionWithoutAlias(unaliasedOption.utf8().data()); \
|
|
}
|
|
|
|
FOR_EACH_JSC_ALIASED_OPTION(FOR_EACH_OPTION)
|
|
#undef FOR_EACH_OPTION
|
|
|
|
IGNORE_WARNINGS_END
|
|
|
|
return false; // No option matched.
|
|
}
|
|
|
|
bool Options::setOption(const char* arg)
|
|
{
|
|
AllowUnfinalizedAccessScope scope;
|
|
bool success = setOptionWithoutAlias(arg);
|
|
if (success)
|
|
return true;
|
|
return setAliasedOption(arg);
|
|
}
|
|
|
|
|
|
void Options::dumpAllOptions(StringBuilder& builder, DumpLevel level, const char* title,
|
|
const char* separator, const char* optionHeader, const char* optionFooter, DumpDefaultsOption dumpDefaultsOption)
|
|
{
|
|
AllowUnfinalizedAccessScope scope;
|
|
if (title) {
|
|
builder.append(title);
|
|
builder.append('\n');
|
|
}
|
|
|
|
for (size_t id = 0; id < NumberOfOptions; id++) {
|
|
if (separator && id)
|
|
builder.append(separator);
|
|
dumpOption(builder, level, static_cast<ID>(id), optionHeader, optionFooter, dumpDefaultsOption);
|
|
}
|
|
}
|
|
|
|
void Options::dumpAllOptionsInALine(StringBuilder& builder)
|
|
{
|
|
dumpAllOptions(builder, DumpLevel::All, nullptr, " ", nullptr, nullptr, DontDumpDefaults);
|
|
}
|
|
|
|
void Options::dumpAllOptions(FILE* stream, DumpLevel level, const char* title)
|
|
{
|
|
StringBuilder builder;
|
|
dumpAllOptions(builder, level, title, nullptr, " ", "\n", DumpDefaults);
|
|
fprintf(stream, "%s", builder.toString().utf8().data());
|
|
}
|
|
|
|
struct OptionReader {
|
|
class Option {
|
|
public:
|
|
void dump(StringBuilder&) const;
|
|
|
|
bool operator==(const Option& other) const;
|
|
bool operator!=(const Option& other) const { return !(*this == other); }
|
|
|
|
const char* name() const { return Options::s_constMetaData[m_id].name; }
|
|
const char* description() const { return Options::s_constMetaData[m_id].description; }
|
|
Options::Type type() const { return Options::s_constMetaData[m_id].type; }
|
|
Options::Availability availability() const { return Options::s_constMetaData[m_id].availability; }
|
|
bool isOverridden() const { return *this != OptionReader::defaultFor(m_id); }
|
|
|
|
private:
|
|
Option(Options::ID id, void* addressOfValue)
|
|
: m_id(id)
|
|
{
|
|
initValue(addressOfValue);
|
|
}
|
|
|
|
void initValue(void* addressOfValue);
|
|
|
|
Options::ID m_id;
|
|
union {
|
|
bool m_bool;
|
|
unsigned m_unsigned;
|
|
double m_double;
|
|
int32_t m_int32;
|
|
size_t m_size;
|
|
OptionRange m_optionRange;
|
|
const char* m_optionString;
|
|
GCLogging::Level m_gcLogLevel;
|
|
};
|
|
|
|
friend struct OptionReader;
|
|
};
|
|
|
|
static const Option optionFor(Options::ID);
|
|
static const Option defaultFor(Options::ID);
|
|
};
|
|
|
|
void Options::dumpOption(StringBuilder& builder, DumpLevel level, Options::ID id,
|
|
const char* header, const char* footer, DumpDefaultsOption dumpDefaultsOption)
|
|
{
|
|
RELEASE_ASSERT(static_cast<size_t>(id) < NumberOfOptions);
|
|
|
|
auto option = OptionReader::optionFor(id);
|
|
Availability availability = option.availability();
|
|
if (availability != Availability::Normal && !isAvailable(id, availability))
|
|
return;
|
|
|
|
bool wasOverridden = option.isOverridden();
|
|
bool needsDescription = (level == DumpLevel::Verbose && option.description());
|
|
|
|
if (level == DumpLevel::Overridden && !wasOverridden)
|
|
return;
|
|
|
|
if (header)
|
|
builder.append(header);
|
|
builder.append(option.name(), '=');
|
|
option.dump(builder);
|
|
|
|
if (wasOverridden && (dumpDefaultsOption == DumpDefaults)) {
|
|
auto defaultOption = OptionReader::defaultFor(id);
|
|
builder.appendLiteral(" (default: ");
|
|
defaultOption.dump(builder);
|
|
builder.appendLiteral(")");
|
|
}
|
|
|
|
if (needsDescription)
|
|
builder.append(" ... ", option.description());
|
|
|
|
builder.append(footer);
|
|
}
|
|
|
|
void Options::ensureOptionsAreCoherent()
|
|
{
|
|
AllowUnfinalizedAccessScope scope;
|
|
bool coherent = true;
|
|
if (!(useLLInt() || useJIT())) {
|
|
coherent = false;
|
|
dataLog("INCOHERENT OPTIONS: at least one of useLLInt or useJIT must be true\n");
|
|
}
|
|
if (useWebAssembly() && !(useWasmLLInt() || useBBQJIT())) {
|
|
coherent = false;
|
|
dataLog("INCOHERENT OPTIONS: at least one of useWasmLLInt or useBBQJIT must be true\n");
|
|
}
|
|
if (!coherent)
|
|
CRASH();
|
|
}
|
|
|
|
const OptionReader::Option OptionReader::optionFor(Options::ID id)
|
|
{
|
|
return Option(id, Options::addressOfOption(id));
|
|
}
|
|
|
|
const OptionReader::Option OptionReader::defaultFor(Options::ID id)
|
|
{
|
|
return Option(id, Options::addressOfOptionDefault(id));
|
|
}
|
|
|
|
void OptionReader::Option::initValue(void* addressOfValue)
|
|
{
|
|
Options::Type type = Options::s_constMetaData[m_id].type;
|
|
switch (type) {
|
|
case Options::Type::Bool:
|
|
memcpy(&m_bool, addressOfValue, sizeof(OptionsStorage::Bool));
|
|
break;
|
|
case Options::Type::Unsigned:
|
|
memcpy(&m_unsigned, addressOfValue, sizeof(OptionsStorage::Unsigned));
|
|
break;
|
|
case Options::Type::Double:
|
|
memcpy(&m_double, addressOfValue, sizeof(OptionsStorage::Double));
|
|
break;
|
|
case Options::Type::Int32:
|
|
memcpy(&m_int32, addressOfValue, sizeof(OptionsStorage::Int32));
|
|
break;
|
|
case Options::Type::Size:
|
|
memcpy(&m_size, addressOfValue, sizeof(OptionsStorage::Size));
|
|
break;
|
|
case Options::Type::OptionRange:
|
|
memcpy(&m_optionRange, addressOfValue, sizeof(OptionsStorage::OptionRange));
|
|
break;
|
|
case Options::Type::OptionString:
|
|
memcpy(&m_optionString, addressOfValue, sizeof(OptionsStorage::OptionString));
|
|
break;
|
|
case Options::Type::GCLogLevel:
|
|
memcpy(&m_gcLogLevel, addressOfValue, sizeof(OptionsStorage::GCLogLevel));
|
|
break;
|
|
}
|
|
}
|
|
|
|
void OptionReader::Option::dump(StringBuilder& builder) const
|
|
{
|
|
switch (type()) {
|
|
case Options::Type::Bool:
|
|
builder.append(m_bool ? "true" : "false");
|
|
break;
|
|
case Options::Type::Unsigned:
|
|
builder.appendNumber(m_unsigned);
|
|
break;
|
|
case Options::Type::Size:
|
|
builder.appendNumber(m_size);
|
|
break;
|
|
case Options::Type::Double:
|
|
builder.append(m_double);
|
|
break;
|
|
case Options::Type::Int32:
|
|
builder.appendNumber(m_int32);
|
|
break;
|
|
case Options::Type::OptionRange:
|
|
builder.append(m_optionRange.rangeString());
|
|
break;
|
|
case Options::Type::OptionString: {
|
|
const char* option = m_optionString;
|
|
if (!option)
|
|
option = "";
|
|
builder.append('"');
|
|
builder.append(option);
|
|
builder.append('"');
|
|
break;
|
|
}
|
|
case Options::Type::GCLogLevel: {
|
|
builder.append(GCLogging::levelAsString(m_gcLogLevel));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool OptionReader::Option::operator==(const Option& other) const
|
|
{
|
|
ASSERT(type() == other.type());
|
|
switch (type()) {
|
|
case Options::Type::Bool:
|
|
return m_bool == other.m_bool;
|
|
case Options::Type::Unsigned:
|
|
return m_unsigned == other.m_unsigned;
|
|
case Options::Type::Size:
|
|
return m_size == other.m_size;
|
|
case Options::Type::Double:
|
|
return (m_double == other.m_double) || (std::isnan(m_double) && std::isnan(other.m_double));
|
|
case Options::Type::Int32:
|
|
return m_int32 == other.m_int32;
|
|
case Options::Type::OptionRange:
|
|
return m_optionRange.rangeString() == other.m_optionRange.rangeString();
|
|
case Options::Type::OptionString:
|
|
return (m_optionString == other.m_optionString)
|
|
|| (m_optionString && other.m_optionString && !strcmp(m_optionString, other.m_optionString));
|
|
case Options::Type::GCLogLevel:
|
|
return m_gcLogLevel == other.m_gcLogLevel;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
#if ENABLE(JIT_CAGE)
|
|
bool canUseJITCage() { return JSC_JIT_CAGE_VERSION(); }
|
|
#else
|
|
bool canUseJITCage() { return false; }
|
|
#endif
|
|
|
|
} // namespace JSC
|