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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(print_ssa_liveness, false, bool, false, \ | 135 R(print_ssa_liveness, false, bool, false, \ |
136 "Print liveness for ssa variables.") \ | 136 "Print liveness for ssa variables.") \ |
137 R(print_ssa_liveranges, false, bool, false, \ | 137 R(print_ssa_liveranges, false, bool, false, \ |
138 "Print live ranges after allocation.") \ | 138 "Print live ranges after allocation.") \ |
139 C(print_stop_message, false, false, bool, false, \ | 139 C(print_stop_message, false, false, bool, false, \ |
140 "Print stop message.") \ | 140 "Print stop message.") \ |
| 141 D(print_variable_descriptors, bool, false, \ |
| 142 "Print variable descriptors in disassembly.") \ |
141 R(profiler, false, bool, !USING_DBC, \ | 143 R(profiler, false, bool, !USING_DBC, \ |
142 "Enable the profiler.") \ | 144 "Enable the profiler.") \ |
143 P(reorder_basic_blocks, bool, true, \ | 145 P(reorder_basic_blocks, bool, true, \ |
144 "Reorder basic blocks") \ | 146 "Reorder basic blocks") \ |
145 R(support_ast_printer, false, bool, true, \ | 147 R(support_ast_printer, false, bool, true, \ |
146 "Support the AST printer.") \ | 148 "Support the AST printer.") \ |
147 R(support_compiler_stats, false, bool, true, \ | 149 R(support_compiler_stats, false, bool, true, \ |
148 "Support compiler stats.") \ | 150 "Support compiler stats.") \ |
149 R(support_debugger, false, bool, true, \ | 151 R(support_debugger, false, bool, true, \ |
150 "Support the debugger.") \ | 152 "Support the debugger.") \ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 P(verbose_gc_hdr, int, 40, \ | 193 P(verbose_gc_hdr, int, 40, \ |
192 "Print verbose GC header interval.") \ | 194 "Print verbose GC header interval.") \ |
193 R(verify_after_gc, false, bool, false, \ | 195 R(verify_after_gc, false, bool, false, \ |
194 "Enables heap verification after GC.") \ | 196 "Enables heap verification after GC.") \ |
195 R(verify_before_gc, false, bool, false, \ | 197 R(verify_before_gc, false, bool, false, \ |
196 "Enables heap verification before GC.") \ | 198 "Enables heap verification before GC.") \ |
197 D(verify_on_transition, bool, false, \ | 199 D(verify_on_transition, bool, false, \ |
198 "Verify on dart <==> VM.") \ | 200 "Verify on dart <==> VM.") \ |
199 | 201 |
200 #endif // VM_FLAG_LIST_H_ | 202 #endif // VM_FLAG_LIST_H_ |
OLD | NEW |