| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 R(support_ast_printer, false, bool, true, \ | 149 R(support_ast_printer, false, bool, true, \ |
| 150 "Support the AST printer.") \ | 150 "Support the AST printer.") \ |
| 151 R(support_compiler_stats, false, bool, true, \ | 151 R(support_compiler_stats, false, bool, true, \ |
| 152 "Support compiler stats.") \ | 152 "Support compiler stats.") \ |
| 153 R(support_debugger, false, bool, true, \ | 153 R(support_debugger, false, bool, true, \ |
| 154 "Support the debugger.") \ | 154 "Support the debugger.") \ |
| 155 R(support_disassembler, false, bool, true, \ | 155 R(support_disassembler, false, bool, true, \ |
| 156 "Support the disassembler.") \ | 156 "Support the disassembler.") \ |
| 157 R(support_il_printer, false, bool, true, \ | 157 R(support_il_printer, false, bool, true, \ |
| 158 "Support the IL printer.") \ | 158 "Support the IL printer.") \ |
| 159 R(support_reload, false, bool, true, \ |
| 160 "Support isolate reload.") \ |
| 159 R(support_service, false, bool, true, \ | 161 R(support_service, false, bool, true, \ |
| 160 "Support the service protocol.") \ | 162 "Support the service protocol.") \ |
| 161 R(support_timeline, false, bool, true, \ | 163 R(support_timeline, false, bool, true, \ |
| 162 "Support timeline.") \ | 164 "Support timeline.") \ |
| 163 D(trace_cha, bool, false, \ | 165 D(trace_cha, bool, false, \ |
| 164 "Trace CHA operations") \ | 166 "Trace CHA operations") \ |
| 165 D(trace_field_guards, bool, false, \ | 167 D(trace_field_guards, bool, false, \ |
| 166 "Trace changes in field's cids.") \ | 168 "Trace changes in field's cids.") \ |
| 167 D(trace_isolates, bool, false, \ | 169 D(trace_isolates, bool, false, \ |
| 168 "Trace isolate creation and shut down.") \ | 170 "Trace isolate creation and shut down.") \ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 193 P(verbose_gc_hdr, int, 40, \ | 195 P(verbose_gc_hdr, int, 40, \ |
| 194 "Print verbose GC header interval.") \ | 196 "Print verbose GC header interval.") \ |
| 195 R(verify_after_gc, false, bool, false, \ | 197 R(verify_after_gc, false, bool, false, \ |
| 196 "Enables heap verification after GC.") \ | 198 "Enables heap verification after GC.") \ |
| 197 R(verify_before_gc, false, bool, false, \ | 199 R(verify_before_gc, false, bool, false, \ |
| 198 "Enables heap verification before GC.") \ | 200 "Enables heap verification before GC.") \ |
| 199 D(verify_on_transition, bool, false, \ | 201 D(verify_on_transition, bool, false, \ |
| 200 "Verify on dart <==> VM.") \ | 202 "Verify on dart <==> VM.") \ |
| 201 | 203 |
| 202 #endif // VM_FLAG_LIST_H_ | 204 #endif // VM_FLAG_LIST_H_ |
| OLD | NEW |