| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 P(reify_generic_functions, bool, false, \ | 140 P(reify_generic_functions, bool, false, \ |
| 141 "Enable reification of generic functions (not yet supported).") \ | 141 "Enable reification of generic functions (not yet supported).") \ |
| 142 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ | 142 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ |
| 143 P(causal_async_stacks, bool, !USING_PRODUCT, "Improved async stacks") \ | 143 P(causal_async_stacks, bool, !USING_PRODUCT, "Improved async stacks") \ |
| 144 C(stress_async_stacks, false, false, bool, false, \ | 144 C(stress_async_stacks, false, false, bool, false, \ |
| 145 "Stress test async stack traces") \ | 145 "Stress test async stack traces") \ |
| 146 C(async_debugger, false, false, bool, true, \ | 146 C(async_debugger, false, false, bool, true, \ |
| 147 "Debugger support async functions.") \ | 147 "Debugger support async functions.") \ |
| 148 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ | 148 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ |
| 149 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ | 149 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ |
| 150 C(support_debugger, false, false, bool, true, "Support the debugger.") \ | |
| 151 R(support_disassembler, false, bool, true, "Support the disassembler.") \ | 150 R(support_disassembler, false, bool, true, "Support the disassembler.") \ |
| 152 R(support_il_printer, false, bool, true, "Support the IL printer.") \ | 151 R(support_il_printer, false, bool, true, "Support the IL printer.") \ |
| 153 C(support_reload, false, false, bool, true, "Support isolate reload.") \ | 152 C(support_reload, false, false, bool, true, "Support isolate reload.") \ |
| 154 R(support_service, false, bool, true, "Support the service protocol.") \ | 153 R(support_service, false, bool, true, "Support the service protocol.") \ |
| 155 R(support_timeline, false, bool, true, "Support timeline.") \ | 154 R(support_timeline, false, bool, true, "Support timeline.") \ |
| 156 D(trace_cha, bool, false, "Trace CHA operations") \ | 155 D(trace_cha, bool, false, "Trace CHA operations") \ |
| 157 D(trace_field_guards, bool, false, "Trace changes in field's cids.") \ | 156 D(trace_field_guards, bool, false, "Trace changes in field's cids.") \ |
| 158 C(trace_irregexp, false, false, bool, false, "Trace irregexps.") \ | 157 C(trace_irregexp, false, false, bool, false, "Trace irregexps.") \ |
| 159 D(trace_isolates, bool, false, "Trace isolate creation and shut down.") \ | 158 D(trace_isolates, bool, false, "Trace isolate creation and shut down.") \ |
| 160 D(trace_handles, bool, false, "Traces allocation of handles.") \ | 159 D(trace_handles, bool, false, "Traces allocation of handles.") \ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 175 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ | 174 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ |
| 176 R(verify_after_gc, false, bool, false, \ | 175 R(verify_after_gc, false, bool, false, \ |
| 177 "Enables heap verification after GC.") \ | 176 "Enables heap verification after GC.") \ |
| 178 R(verify_before_gc, false, bool, false, \ | 177 R(verify_before_gc, false, bool, false, \ |
| 179 "Enables heap verification before GC.") \ | 178 "Enables heap verification before GC.") \ |
| 180 D(verify_gc_contains, bool, false, \ | 179 D(verify_gc_contains, bool, false, \ |
| 181 "Enables verification of address contains during GC.") \ | 180 "Enables verification of address contains during GC.") \ |
| 182 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") | 181 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") |
| 183 | 182 |
| 184 #endif // RUNTIME_VM_FLAG_LIST_H_ | 183 #endif // RUNTIME_VM_FLAG_LIST_H_ |
| OLD | NEW |