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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 R(pause_isolates_on_exit, false, bool, false, \ | 129 R(pause_isolates_on_exit, false, bool, false, \ |
130 "Pause isolates exiting.") \ | 130 "Pause isolates exiting.") \ |
131 R(pause_isolates_on_unhandled_exceptions, false, bool, false, \ | 131 R(pause_isolates_on_unhandled_exceptions, false, bool, false, \ |
132 "Pause isolates on unhandled exceptions.") \ | 132 "Pause isolates on unhandled exceptions.") \ |
133 P(polymorphic_with_deopt, bool, true, \ | 133 P(polymorphic_with_deopt, bool, true, \ |
134 "Polymorphic calls with deoptimization / megamorphic call") \ | 134 "Polymorphic calls with deoptimization / megamorphic call") \ |
135 P(precompiled_mode, bool, false, \ | 135 P(precompiled_mode, bool, false, \ |
136 "Precompilation compiler mode") \ | 136 "Precompilation compiler mode") \ |
137 C(precompiled_runtime, true, false, bool, false, \ | 137 C(precompiled_runtime, true, false, bool, false, \ |
138 "Precompiled runtime mode") \ | 138 "Precompiled runtime mode") \ |
139 R(print_ssa_liveness, false, bool, false, \ | |
140 "Print liveness for ssa variables.") \ | |
141 R(print_ssa_liveranges, false, bool, false, \ | 139 R(print_ssa_liveranges, false, bool, false, \ |
142 "Print live ranges after allocation.") \ | 140 "Print live ranges after allocation.") \ |
143 C(print_stop_message, false, false, bool, false, \ | 141 C(print_stop_message, false, false, bool, false, \ |
144 "Print stop message.") \ | 142 "Print stop message.") \ |
145 D(print_variable_descriptors, bool, false, \ | 143 D(print_variable_descriptors, bool, false, \ |
146 "Print variable descriptors in disassembly.") \ | 144 "Print variable descriptors in disassembly.") \ |
147 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ | 145 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ |
148 "Enable the profiler.") \ | 146 "Enable the profiler.") \ |
149 P(reorder_basic_blocks, bool, true, \ | 147 P(reorder_basic_blocks, bool, true, \ |
150 "Reorder basic blocks") \ | 148 "Reorder basic blocks") \ |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 P(verbose_gc_hdr, int, 40, \ | 193 P(verbose_gc_hdr, int, 40, \ |
196 "Print verbose GC header interval.") \ | 194 "Print verbose GC header interval.") \ |
197 R(verify_after_gc, false, bool, false, \ | 195 R(verify_after_gc, false, bool, false, \ |
198 "Enables heap verification after GC.") \ | 196 "Enables heap verification after GC.") \ |
199 R(verify_before_gc, false, bool, false, \ | 197 R(verify_before_gc, false, bool, false, \ |
200 "Enables heap verification before GC.") \ | 198 "Enables heap verification before GC.") \ |
201 D(verify_on_transition, bool, false, \ | 199 D(verify_on_transition, bool, false, \ |
202 "Verify on dart <==> VM.") \ | 200 "Verify on dart <==> VM.") \ |
203 | 201 |
204 #endif // VM_FLAG_LIST_H_ | 202 #endif // VM_FLAG_LIST_H_ |
OLD | NEW |