Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(916)

Side by Side Diff: tools/eval_gc_time.sh

Issue 1807923004: [heap] More evacuation tracing (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/heap/mark-compact.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # Copyright 2015 the V8 project authors. All rights reserved. 3 # Copyright 2015 the V8 project authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Convenience Script used to rank GC NVP output. 7 # Convenience Script used to rank GC NVP output.
8 8
9 print_usage_and_die() { 9 print_usage_and_die() {
10 echo "Usage: $0 new-gen-rank|old-gen-rank max|avg logfile" 10 echo "Usage: $0 new-gen-rank|old-gen-rank max|avg logfile"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 clear.slots_buffer \ 59 clear.slots_buffer \
60 clear.store_buffer \ 60 clear.store_buffer \
61 clear.string_table \ 61 clear.string_table \
62 clear.weak_cells \ 62 clear.weak_cells \
63 clear.weak_collections \ 63 clear.weak_collections \
64 clear.weak_lists \ 64 clear.weak_lists \
65 finish \ 65 finish \
66 evacuate \ 66 evacuate \
67 evacuate.candidates \ 67 evacuate.candidates \
68 evacuate.clean_up \ 68 evacuate.clean_up \
69 evacuate.new_space \ 69 evacuate.copy \
70 evacuate.update_pointers \ 70 evacuate.update_pointers \
71 evacuate.update_pointers.between_evacuated \ 71 evacuate.update_pointers.between_evacuated \
72 evacuate.update_pointers.to_evacuated \ 72 evacuate.update_pointers.to_evacuated \
73 evacuate.update_pointers.to_new \ 73 evacuate.update_pointers.to_new \
74 evacuate.update_pointers.weak \ 74 evacuate.update_pointers.weak \
75 mark \ 75 mark \
76 mark.finish_incremental \ 76 mark.finish_incremental \
77 mark.prepare_code_flush \ 77 mark.prepare_code_flush \
78 mark.roots \ 78 mark.roots \
79 mark.weak_closure \ 79 mark.weak_closure \
(...skipping 18 matching lines...) Expand all
98 cat $LOGFILE | grep "gc=ms" | grep "reduce_memory=0" | grep -v "steps=0" \ 98 cat $LOGFILE | grep "gc=ms" | grep "reduce_memory=0" | grep -v "steps=0" \
99 | $BASE_DIR/eval_gc_nvp.py \ 99 | $BASE_DIR/eval_gc_nvp.py \
100 --no-histogram \ 100 --no-histogram \
101 --rank $RANK_MODE \ 101 --rank $RANK_MODE \
102 ${INTERESTING_OLD_GEN_KEYS} 102 ${INTERESTING_OLD_GEN_KEYS}
103 ;; 103 ;;
104 *) 104 *)
105 ;; 105 ;;
106 esac 106 esac
107 107
OLDNEW
« no previous file with comments | « src/heap/mark-compact.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698