| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_FLAG_LIST_H_ | 5 #ifndef VM_FLAG_LIST_H_ |
| 6 #define VM_FLAG_LIST_H_ | 6 #define VM_FLAG_LIST_H_ |
| 7 | 7 |
| 8 // Don't use USING_DBC outside of this file. | 8 // Don't use USING_DBC outside of this file. |
| 9 #if defined(TARGET_ARCH_DBC) | 9 #if defined(TARGET_ARCH_DBC) |
| 10 #define USING_DBC true | 10 #define USING_DBC true |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 R(pause_isolates_on_exit, false, bool, false, \ | 125 R(pause_isolates_on_exit, false, bool, false, \ |
| 126 "Pause isolates exiting.") \ | 126 "Pause isolates exiting.") \ |
| 127 R(pause_isolates_on_unhandled_exceptions, false, bool, false, \ | 127 R(pause_isolates_on_unhandled_exceptions, false, bool, false, \ |
| 128 "Pause isolates on unhandled exceptions.") \ | 128 "Pause isolates on unhandled exceptions.") \ |
| 129 P(polymorphic_with_deopt, bool, true, \ | 129 P(polymorphic_with_deopt, bool, true, \ |
| 130 "Polymorphic calls with deoptimization / megamorphic call") \ | 130 "Polymorphic calls with deoptimization / megamorphic call") \ |
| 131 P(precompiled_mode, bool, false, \ | 131 P(precompiled_mode, bool, false, \ |
| 132 "Precompilation compiler mode") \ | 132 "Precompilation compiler mode") \ |
| 133 C(precompiled_runtime, true, false, bool, false, \ | 133 C(precompiled_runtime, true, false, bool, false, \ |
| 134 "Precompiled runtime mode") \ | 134 "Precompiled runtime mode") \ |
| 135 R(pretenure_all, false, bool, false, \ | |
| 136 "Global pretenuring (for testing).") \ | |
| 137 P(pretenure_interval, int, 10, \ | |
| 138 "Back off pretenuring after this many cycles.") \ | |
| 139 P(pretenure_threshold, int, 98, \ | |
| 140 "Trigger pretenuring when this many percent are promoted.") \ | |
| 141 R(print_ssa_liveness, false, bool, false, \ | 135 R(print_ssa_liveness, false, bool, false, \ |
| 142 "Print liveness for ssa variables.") \ | 136 "Print liveness for ssa variables.") \ |
| 143 R(print_ssa_liveranges, false, bool, false, \ | 137 R(print_ssa_liveranges, false, bool, false, \ |
| 144 "Print live ranges after allocation.") \ | 138 "Print live ranges after allocation.") \ |
| 145 C(print_stop_message, false, false, bool, false, \ | 139 C(print_stop_message, false, false, bool, false, \ |
| 146 "Print stop message.") \ | 140 "Print stop message.") \ |
| 147 R(profiler, false, bool, !USING_DBC, \ | 141 R(profiler, false, bool, !USING_DBC, \ |
| 148 "Enable the profiler.") \ | 142 "Enable the profiler.") \ |
| 149 P(reorder_basic_blocks, bool, true, \ | 143 P(reorder_basic_blocks, bool, true, \ |
| 150 "Reorder basic blocks") \ | 144 "Reorder basic blocks") \ |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 P(verbose_gc_hdr, int, 40, \ | 191 P(verbose_gc_hdr, int, 40, \ |
| 198 "Print verbose GC header interval.") \ | 192 "Print verbose GC header interval.") \ |
| 199 R(verify_after_gc, false, bool, false, \ | 193 R(verify_after_gc, false, bool, false, \ |
| 200 "Enables heap verification after GC.") \ | 194 "Enables heap verification after GC.") \ |
| 201 R(verify_before_gc, false, bool, false, \ | 195 R(verify_before_gc, false, bool, false, \ |
| 202 "Enables heap verification before GC.") \ | 196 "Enables heap verification before GC.") \ |
| 203 D(verify_on_transition, bool, false, \ | 197 D(verify_on_transition, bool, false, \ |
| 204 "Verify on dart <==> VM.") \ | 198 "Verify on dart <==> VM.") \ |
| 205 | 199 |
| 206 #endif // VM_FLAG_LIST_H_ | 200 #endif // VM_FLAG_LIST_H_ |
| OLD | NEW |