⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176716 in webkit


Ignore:
Timestamp:
Dec 3, 2014, 3:34:18 AM (12 years ago)
Author:
Csaba Osztrogonác
Message:

Remove unused JSC runtime options
https://bugs.webkit.org/show_bug.cgi?id=133070

Patch by Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com> on 2014-12-03
Reviewed by Csaba Osztrogonác.

Source/JavaScriptCore:

  • runtime/Options.h:

Tools:

  • Scripts/run-jsc-stress-tests:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r176709 r176716  
     12014-12-03  Zsolt Borbely  <zsborbely.u-szeged@partner.samsung.com>
     2
     3        Remove unused JSC runtime options
     4        https://bugs.webkit.org/show_bug.cgi?id=133070
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * runtime/Options.h:
     9
    1102014-12-02  Mark Lam  <mark.lam@apple.com>
    211
  • trunk/Source/JavaScriptCore/runtime/Options.h

    r176446 r176716  
    151151    \
    152152    v(bool, useFTLJIT, true) \
    153     v(bool, enableExperimentalFTLCoverage, false) \
    154153    v(bool, useFTLTBAA, true) \
    155154    v(bool, enableLLVMFastISel, false) \
     
    207206    v(unsigned, maximumInliningDepth, 5) \
    208207    v(unsigned, maximumInliningRecursion, 2) \
    209     v(unsigned, maximumInliningDepthForMustInline, 7) \
    210     v(unsigned, maximumInliningRecursionForMustInline, 3) \
    211208    \
    212209    v(unsigned, maximumLLVMInstructionCountForNativeInlining, 80) \
     
    251248    \
    252249    v(unsigned, reoptimizationRetryCounterMax, 0)  \
    253     v(unsigned, reoptimizationRetryCounterStep, 1) \
    254250    \
    255251    v(unsigned, minimumOptimizationDelay, 1) \
  • trunk/Tools/ChangeLog

    r176712 r176716  
     12014-12-03  Zsolt Borbely  <zsborbely.u-szeged@partner.samsung.com>
     2
     3        Remove unused JSC runtime options
     4        https://bugs.webkit.org/show_bug.cgi?id=133070
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * Scripts/run-jsc-stress-tests:
     9
    1102014-12-03  Eva Balazsfalvi  <evab.u-szeged@partner.samsung.com>
    211
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r175442 r176716  
    279279EAGER_OPTIONS = ["--thresholdForJITAfterWarmUp=10", "--thresholdForJITSoon=10", "--thresholdForOptimizeAfterWarmUp=20", "--thresholdForOptimizeAfterLongWarmUp=20", "--thresholdForOptimizeSoon=20", "--thresholdForFTLOptimizeAfterWarmUp=20", "--thresholdForFTLOptimizeSoon=20"]
    280280NO_CJIT_OPTIONS = ["--enableConcurrentJIT=false", "--thresholdForJITAfterWarmUp=100"]
    281 FTL_OPTIONS = ["--useFTLJIT=true", "--enableExperimentalFTLCoverage=true"]
     281FTL_OPTIONS = ["--useFTLJIT=true"]
    282282
    283283$runlist = []
     
    617617
    618618def runFTLNoCJITNoInlineValidate
    619     run("ftl-no-cjit-no-inline-validate", "--validateGraph=true", "--maximumInliningDepth=1", "--maximumInliningDepthForMustInline=1", *(FTL_OPTIONS + NO_CJIT_OPTIONS)) if $enableFTL
     619    run("ftl-no-cjit-no-inline-validate", "--validateGraph=true", "--maximumInliningDepth=1", *(FTL_OPTIONS + NO_CJIT_OPTIONS)) if $enableFTL
    620620end
    621621
Note: See TracChangeset for help on using the changeset viewer.