Changeset 195396 in webkit
- Timestamp:
- Jan 20, 2016, 7:20:32 PM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/display-profiler-output (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r195391 r195396 1 2016-01-20 Filip Pizlo <fpizlo@apple.com> 2 3 Unreviewed, revert accidental unreviewed commit. 4 5 * Scripts/display-profiler-output: 6 1 7 2016-01-20 Jason Marcell <jmarcell@apple.com> 2 8 -
trunk/Tools/Scripts/display-profiler-output
r195395 r195396 536 536 end 537 537 538 def summary(mode , order)538 def summary(mode) 539 539 remaining = screenWidth 540 540 … … 619 619 $bytecodes.sort { 620 620 | 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 629 622 }.each { 630 623 | bytecode | … … 746 739 exit 0 747 740 when "summary", "s" 748 summary(:summary , :bytecode)741 summary(:summary) 749 742 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) 755 744 when "source" 756 745 if args.length != 1
Note:
See TracChangeset
for help on using the changeset viewer.