Changeset 249116 in webkit
- Timestamp:
- Aug 26, 2019, 1:42:48 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/run-jsc-stress-tests (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r249115 r249116 1 2019-08-26 Yusuke Suzuki <ysuzuki@apple.com> 2 3 Unreviewed, remove useMaximalFlushInsertionPhase use 4 https://bugs.webkit.org/show_bug.cgi?id=201036 5 6 * Scripts/run-jsc-stress-tests: 7 1 8 2019-08-26 David Kilzer <ddkilzer@apple.com> 2 9 -
trunk/Tools/Scripts/run-jsc-stress-tests
r248905 r249116 777 777 end 778 778 779 def run DFGMaximalFlushPhase(*optionalTestSpecificOptions)780 run(" dfg-maximal-flush-validate-no-cjit", "--forceCodeBlockToJettisonDueToOldAge=true", "--validateGraph=true", "--useMaximalFlushInsertionPhase=true", *(NO_CJIT_OPTIONS + optionalTestSpecificOptions))779 def runEagerJettisonNoCJIT(*optionalTestSpecificOptions) 780 run("eager-jettison-no-cjit", "--forceCodeBlockToJettisonDueToOldAge=true", *(NO_CJIT_OPTIONS + optionalTestSpecificOptions)) 781 781 end 782 782 … … 803 803 if $mode != "basic" 804 804 runDFGEagerNoCJITValidate 805 run DFGMaximalFlushPhase805 runEagerJettisonNoCJIT 806 806 end 807 807 … … 835 835 if $mode != "basic" 836 836 runDFGEagerNoCJITValidate 837 run DFGMaximalFlushPhase837 runEagerJettisonNoCJIT 838 838 end 839 839 … … 880 880 def defaultSpotCheck 881 881 defaultSpotCheckNoMaximalFlush 882 run DFGMaximalFlushPhase882 runEagerJettisonNoCJIT 883 883 end 884 884 … … 913 913 runDFGEager 914 914 runDFGEagerNoCJITValidate 915 run DFGMaximalFlushPhase915 runEagerJettisonNoCJIT 916 916 917 917 return if !$isFTLPlatform
Note:
See TracChangeset
for help on using the changeset viewer.