Changeset 176716 in webkit
- Timestamp:
- Dec 3, 2014, 3:34:18 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/runtime/Options.h (modified) (3 diffs)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/Scripts/run-jsc-stress-tests (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r176709 r176716 1 2014-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 1 10 2014-12-02 Mark Lam <mark.lam@apple.com> 2 11 -
trunk/Source/JavaScriptCore/runtime/Options.h
r176446 r176716 151 151 \ 152 152 v(bool, useFTLJIT, true) \ 153 v(bool, enableExperimentalFTLCoverage, false) \154 153 v(bool, useFTLTBAA, true) \ 155 154 v(bool, enableLLVMFastISel, false) \ … … 207 206 v(unsigned, maximumInliningDepth, 5) \ 208 207 v(unsigned, maximumInliningRecursion, 2) \ 209 v(unsigned, maximumInliningDepthForMustInline, 7) \210 v(unsigned, maximumInliningRecursionForMustInline, 3) \211 208 \ 212 209 v(unsigned, maximumLLVMInstructionCountForNativeInlining, 80) \ … … 251 248 \ 252 249 v(unsigned, reoptimizationRetryCounterMax, 0) \ 253 v(unsigned, reoptimizationRetryCounterStep, 1) \254 250 \ 255 251 v(unsigned, minimumOptimizationDelay, 1) \ -
trunk/Tools/ChangeLog
r176712 r176716 1 2014-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 1 10 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com> 2 11 -
trunk/Tools/Scripts/run-jsc-stress-tests
r175442 r176716 279 279 EAGER_OPTIONS = ["--thresholdForJITAfterWarmUp=10", "--thresholdForJITSoon=10", "--thresholdForOptimizeAfterWarmUp=20", "--thresholdForOptimizeAfterLongWarmUp=20", "--thresholdForOptimizeSoon=20", "--thresholdForFTLOptimizeAfterWarmUp=20", "--thresholdForFTLOptimizeSoon=20"] 280 280 NO_CJIT_OPTIONS = ["--enableConcurrentJIT=false", "--thresholdForJITAfterWarmUp=100"] 281 FTL_OPTIONS = ["--useFTLJIT=true" , "--enableExperimentalFTLCoverage=true"]281 FTL_OPTIONS = ["--useFTLJIT=true"] 282 282 283 283 $runlist = [] … … 617 617 618 618 def runFTLNoCJITNoInlineValidate 619 run("ftl-no-cjit-no-inline-validate", "--validateGraph=true", "--maximumInliningDepth=1", "--maximumInliningDepthForMustInline=1",*(FTL_OPTIONS + NO_CJIT_OPTIONS)) if $enableFTL619 run("ftl-no-cjit-no-inline-validate", "--validateGraph=true", "--maximumInliningDepth=1", *(FTL_OPTIONS + NO_CJIT_OPTIONS)) if $enableFTL 620 620 end 621 621
Note:
See TracChangeset
for help on using the changeset viewer.