diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/Options.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/Options.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/runtime/Options.h b/Source/JavaScriptCore/runtime/Options.h index 0adb59e9b..1bce5b944 100644 --- a/Source/JavaScriptCore/runtime/Options.h +++ b/Source/JavaScriptCore/runtime/Options.h @@ -53,6 +53,9 @@ extern int32_t thresholdForOptimizeNextInvocation; extern int32_t executionCounterIncrementForLoop; extern int32_t executionCounterIncrementForReturn; +extern bool randomizeExecutionCountsBetweenCheckpoints; +extern int32_t maximumExecutionCountsBetweenCheckpoints; + extern unsigned desiredSpeculativeSuccessFailRatio; extern double likelyToTakeSlowCaseThreshold; @@ -81,6 +84,9 @@ extern unsigned gcMarkStackSegmentSize; JS_EXPORTDATA extern unsigned numberOfGCMarkers; JS_EXPORTDATA extern unsigned opaqueRootMergeThreshold; +extern bool forceWeakRandomSeed; +extern unsigned forcedWeakRandomSeed; + void initializeOptions(); } } // namespace JSC::Options |