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

Side by Side Diff: tools/eval_gc_time.sh

Issue 1891683002: Reland of "[heap] Better integrate handling of aborted compaction pages" (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixed Created 4 years, 8 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
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 [OPTIONS]" 10 echo "Usage: $0 [OPTIONS]"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 clear.slots_buffer \ 97 clear.slots_buffer \
98 clear.store_buffer \ 98 clear.store_buffer \
99 clear.string_table \ 99 clear.string_table \
100 clear.weak_cells \ 100 clear.weak_cells \
101 clear.weak_collections \ 101 clear.weak_collections \
102 clear.weak_lists \ 102 clear.weak_lists \
103 evacuate.candidates \ 103 evacuate.candidates \
104 evacuate.clean_up \ 104 evacuate.clean_up \
105 evacuate.copy \ 105 evacuate.copy \
106 evacuate.update_pointers \ 106 evacuate.update_pointers \
107 evacuate.update_pointers.between_evacuated \
108 evacuate.update_pointers.to_evacuated \ 107 evacuate.update_pointers.to_evacuated \
109 evacuate.update_pointers.to_new \ 108 evacuate.update_pointers.to_new \
110 evacuate.update_pointers.weak \ 109 evacuate.update_pointers.weak \
111 external.mc_prologue \ 110 external.mc_prologue \
112 external.mc_epilogue \ 111 external.mc_epilogue \
113 external.mc_incremental_prologue \ 112 external.mc_incremental_prologue \
114 external.mc_incremental_epilogue \ 113 external.mc_incremental_epilogue \
115 external.weak_global_handles \ 114 external.weak_global_handles \
116 mark.finish_incremental \ 115 mark.finish_incremental \
117 mark.prepare_code_flush \ 116 mark.prepare_code_flush \
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 | $BASE_DIR/eval_gc_nvp.py \ 158 | $BASE_DIR/eval_gc_nvp.py \
160 --no-histogram \ 159 --no-histogram \
161 --rank $RANK_MODE \ 160 --rank $RANK_MODE \
162 $CSV \ 161 $CSV \
163 $PERCENTILES \ 162 $PERCENTILES \
164 ${INTERESTING_OLD_GEN_KEYS} 163 ${INTERESTING_OLD_GEN_KEYS}
165 ;; 164 ;;
166 *) 165 *)
167 ;; 166 ;;
168 esac 167 esac
OLDNEW
« src/heap/mark-compact.cc ('K') | « test/cctest/heap/test-compaction.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698