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 RUNTIME_VM_FLAG_LIST_H_ | 5 #ifndef RUNTIME_VM_FLAG_LIST_H_ |
6 #define RUNTIME_VM_FLAG_LIST_H_ | 6 #define RUNTIME_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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ | 137 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ |
138 "Enable the profiler.") \ | 138 "Enable the profiler.") \ |
139 R(profiler_native_memory, false, bool, false, \ | 139 R(profiler_native_memory, false, bool, false, \ |
140 "Enable native memory statistic collection.") \ | 140 "Enable native memory statistic collection.") \ |
141 P(reify_generic_functions, bool, false, \ | 141 P(reify_generic_functions, bool, false, \ |
142 "Enable reification of generic functions (not yet supported).") \ | 142 "Enable reification of generic functions (not yet supported).") \ |
143 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ | 143 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ |
144 C(causal_async_stacks, false, false, bool, true, "Improved async stacks") \ | 144 C(causal_async_stacks, false, false, bool, true, "Improved async stacks") \ |
145 C(stress_async_stacks, false, false, bool, false, \ | 145 C(stress_async_stacks, false, false, bool, false, \ |
146 "Stress test async stack traces") \ | 146 "Stress test async stack traces") \ |
147 C(async_debugger, false, false, bool, false, \ | 147 C(async_debugger, false, false, bool, true, \ |
148 "Debugger support async functions.") \ | 148 "Debugger support async functions.") \ |
149 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ | 149 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ |
150 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ | 150 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ |
151 C(support_debugger, false, false, bool, true, "Support the debugger.") \ | 151 C(support_debugger, false, false, bool, true, "Support the debugger.") \ |
152 R(support_disassembler, false, bool, true, "Support the disassembler.") \ | 152 R(support_disassembler, false, bool, true, "Support the disassembler.") \ |
153 R(support_il_printer, false, bool, true, "Support the IL printer.") \ | 153 R(support_il_printer, false, bool, true, "Support the IL printer.") \ |
154 C(support_reload, false, false, bool, true, "Support isolate reload.") \ | 154 C(support_reload, false, false, bool, true, "Support isolate reload.") \ |
155 R(support_service, false, bool, true, "Support the service protocol.") \ | 155 R(support_service, false, bool, true, "Support the service protocol.") \ |
156 R(support_timeline, false, bool, true, "Support timeline.") \ | 156 R(support_timeline, false, bool, true, "Support timeline.") \ |
157 D(trace_cha, bool, false, "Trace CHA operations") \ | 157 D(trace_cha, bool, false, "Trace CHA operations") \ |
(...skipping 17 matching lines...) Expand all Loading... |
175 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ | 175 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ |
176 R(verify_after_gc, false, bool, false, \ | 176 R(verify_after_gc, false, bool, false, \ |
177 "Enables heap verification after GC.") \ | 177 "Enables heap verification after GC.") \ |
178 R(verify_before_gc, false, bool, false, \ | 178 R(verify_before_gc, false, bool, false, \ |
179 "Enables heap verification before GC.") \ | 179 "Enables heap verification before GC.") \ |
180 D(verify_gc_contains, bool, false, \ | 180 D(verify_gc_contains, bool, false, \ |
181 "Enables verification of address contains during GC.") \ | 181 "Enables verification of address contains during GC.") \ |
182 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") | 182 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") |
183 | 183 |
184 #endif // RUNTIME_VM_FLAG_LIST_H_ | 184 #endif // RUNTIME_VM_FLAG_LIST_H_ |
OLD | NEW |