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