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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 P(print_benchmarking_metrics, bool, false, \ | 125 P(print_benchmarking_metrics, bool, false, \ |
126 "Print additional memory and latency metrics for benchmarking.") \ | 126 "Print additional memory and latency metrics for benchmarking.") \ |
127 R(print_ssa_liveranges, false, bool, false, \ | 127 R(print_ssa_liveranges, false, bool, false, \ |
128 "Print live ranges after allocation.") \ | 128 "Print live ranges after allocation.") \ |
129 C(print_stop_message, false, false, bool, false, "Print stop message.") \ | 129 C(print_stop_message, false, false, bool, false, "Print stop message.") \ |
130 D(print_variable_descriptors, bool, false, \ | 130 D(print_variable_descriptors, bool, false, \ |
131 "Print variable descriptors in disassembly.") \ | 131 "Print variable descriptors in disassembly.") \ |
132 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ | 132 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ |
133 "Enable the profiler.") \ | 133 "Enable the profiler.") \ |
134 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ | 134 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ |
| 135 R(causal_async_stacks, false, bool, true, "Improved async stacks") \ |
135 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ | 136 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ |
136 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ | 137 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ |
137 C(support_debugger, false, false, bool, true, "Support the debugger.") \ | 138 C(support_debugger, false, false, bool, true, "Support the debugger.") \ |
138 R(support_disassembler, false, bool, true, "Support the disassembler.") \ | 139 R(support_disassembler, false, bool, true, "Support the disassembler.") \ |
139 R(support_il_printer, false, bool, true, "Support the IL printer.") \ | 140 R(support_il_printer, false, bool, true, "Support the IL printer.") \ |
140 C(support_reload, false, false, bool, true, "Support isolate reload.") \ | 141 C(support_reload, false, false, bool, true, "Support isolate reload.") \ |
141 R(support_service, false, bool, true, "Support the service protocol.") \ | 142 R(support_service, false, bool, true, "Support the service protocol.") \ |
142 R(support_timeline, false, bool, true, "Support timeline.") \ | 143 R(support_timeline, false, bool, true, "Support timeline.") \ |
143 D(trace_cha, bool, false, "Trace CHA operations") \ | 144 D(trace_cha, bool, false, "Trace CHA operations") \ |
144 D(trace_field_guards, bool, false, "Trace changes in field's cids.") \ | 145 D(trace_field_guards, bool, false, "Trace changes in field's cids.") \ |
(...skipping 16 matching lines...) Expand all Loading... |
161 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ | 162 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ |
162 R(verify_after_gc, false, bool, false, \ | 163 R(verify_after_gc, false, bool, false, \ |
163 "Enables heap verification after GC.") \ | 164 "Enables heap verification after GC.") \ |
164 R(verify_before_gc, false, bool, false, \ | 165 R(verify_before_gc, false, bool, false, \ |
165 "Enables heap verification before GC.") \ | 166 "Enables heap verification before GC.") \ |
166 D(verify_gc_contains, bool, false, \ | 167 D(verify_gc_contains, bool, false, \ |
167 "Enables verification of address contains during GC.") \ | 168 "Enables verification of address contains during GC.") \ |
168 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") | 169 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") |
169 | 170 |
170 #endif // RUNTIME_VM_FLAG_LIST_H_ | 171 #endif // RUNTIME_VM_FLAG_LIST_H_ |
OLD | NEW |