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

Changeset 195396 in webkit


Ignore:
Timestamp:
Jan 20, 2016, 7:20:32 PM (11 years ago)
Author:
fpizlo@apple.com
Message:

Unreviewed, revert accidental unreviewed commit.

  • Scripts/display-profiler-output:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r195391 r195396  
     12016-01-20  Filip Pizlo  <fpizlo@apple.com>
     2
     3        Unreviewed, revert accidental unreviewed commit.
     4
     5        * Scripts/display-profiler-output:
     6
    172016-01-20  Jason Marcell  <jmarcell@apple.com>
    28
  • trunk/Tools/Scripts/display-profiler-output

    r195395 r195396  
    536536end
    537537
    538 def summary(mode, order)
     538def summary(mode)
    539539    remaining = screenWidth
    540540   
     
    619619    $bytecodes.sort {
    620620        | a, b |
    621         case order
    622         when :bytecode
    623             b.totalMaxTopExecutionCount <=> a.totalMaxTopExecutionCount
    624         when :machine
    625             b.totalMaxBottomExecutionCount <=> a.totalMaxBottomExecutionCount
    626         else
    627             raise
    628         end
     621        b.totalMaxTopExecutionCount <=> a.totalMaxTopExecutionCount
    629622    }.each {
    630623        | bytecode |
     
    746739        exit 0
    747740    when "summary", "s"
    748         summary(:summary, :bytecode)
     741        summary(:summary)
    749742    when "full", "f"
    750         if args[0] and (args[0] == "m" or args[0] == "machine")
    751             summary(:full, :machine)
    752         else
    753             summary(:full, :bytecode)
    754         end
     743        summary(:full)
    755744    when "source"
    756745        if args.length != 1
Note: See TracChangeset for help on using the changeset viewer.