Changeset 249116 in webkit


Ignore:
Timestamp:
Aug 26, 2019 1:42:48 PM (5 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, remove useMaximalFlushInsertionPhase use
https://bugs.webkit.org/show_bug.cgi?id=201036

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r249115 r249116  
     12019-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
    182019-08-26  David Kilzer  <ddkilzer@apple.com>
    29
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r248905 r249116  
    777777end
    778778
    779 def runDFGMaximalFlushPhase(*optionalTestSpecificOptions)
    780     run("dfg-maximal-flush-validate-no-cjit", "--forceCodeBlockToJettisonDueToOldAge=true", "--validateGraph=true", "--useMaximalFlushInsertionPhase=true", *(NO_CJIT_OPTIONS + optionalTestSpecificOptions))
     779def runEagerJettisonNoCJIT(*optionalTestSpecificOptions)
     780    run("eager-jettison-no-cjit", "--forceCodeBlockToJettisonDueToOldAge=true", *(NO_CJIT_OPTIONS + optionalTestSpecificOptions))
    781781end
    782782
     
    803803            if $mode != "basic"
    804804                runDFGEagerNoCJITValidate
    805                 runDFGMaximalFlushPhase
     805                runEagerJettisonNoCJIT
    806806            end
    807807
     
    835835            if $mode != "basic"
    836836                runDFGEagerNoCJITValidate
    837                 runDFGMaximalFlushPhase
     837                runEagerJettisonNoCJIT
    838838            end
    839839
     
    880880def defaultSpotCheck
    881881    defaultSpotCheckNoMaximalFlush
    882     runDFGMaximalFlushPhase
     882    runEagerJettisonNoCJIT
    883883end
    884884
     
    913913        runDFGEager
    914914        runDFGEagerNoCJITValidate
    915         runDFGMaximalFlushPhase
     915        runEagerJettisonNoCJIT
    916916
    917917        return if !$isFTLPlatform
Note: See TracChangeset for help on using the changeset viewer.