| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |