| 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 // List of all flags in the VM. | 8 // List of all flags in the VM. |
| 9 // Flags can be one of three categories: | 9 // Flags can be one of three categories: |
| 10 // * P roduct flags: Can be set in any of the deployment modes, including in | 10 // * P roduct flags: Can be set in any of the deployment modes, including in |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 R(disassemble_optimized, false, bool, false, \ | 44 R(disassemble_optimized, false, bool, false, \ |
| 45 "Disassemble optimized code.") \ | 45 "Disassemble optimized code.") \ |
| 46 R(dump_symbol_stats, false, bool, false, \ | 46 R(dump_symbol_stats, false, bool, false, \ |
| 47 "Dump symbol table statistics") \ | 47 "Dump symbol table statistics") \ |
| 48 C(emit_edge_counters, false, true, bool, true, \ | 48 C(emit_edge_counters, false, true, bool, true, \ |
| 49 "Emit edge counters") \ | 49 "Emit edge counters") \ |
| 50 C(enable_mirrors, false, false, bool, true, \ | 50 C(enable_mirrors, false, false, bool, true, \ |
| 51 "Disable to make importing dart:mirrors an error.") \ | 51 "Disable to make importing dart:mirrors an error.") \ |
| 52 C(fields_may_be_reset, true, false, bool, false, \ | 52 C(fields_may_be_reset, true, false, bool, false, \ |
| 53 "Don't optimize away static field initialization") \ | 53 "Don't optimize away static field initialization") \ |
| 54 C(force_clone_compiler_objects, false, false, bool, false, \ |
| 55 "Force cloning of objects needed in compiler (ICData and Field).") \ |
| 54 R(gc_at_alloc, false, bool, false, \ | 56 R(gc_at_alloc, false, bool, false, \ |
| 55 "GC at every allocation.") \ | 57 "GC at every allocation.") \ |
| 56 P(getter_setter_ratio, int, 13, \ | 58 P(getter_setter_ratio, int, 13, \ |
| 57 "Ratio of getter/setter usage used for double field unboxing heuristics") \ | 59 "Ratio of getter/setter usage used for double field unboxing heuristics") \ |
| 58 P(guess_icdata_cid, bool, true, \ | 60 P(guess_icdata_cid, bool, true, \ |
| 59 "Artificially create type feedback for arithmetic etc. operations") \ | 61 "Artificially create type feedback for arithmetic etc. operations") \ |
| 60 C(ic_range_profiling, false, true, bool, true, \ | 62 C(ic_range_profiling, false, true, bool, true, \ |
| 61 "Generate special IC stubs collecting range information ") \ | 63 "Generate special IC stubs collecting range information ") \ |
| 62 C(interpret_irregexp, true, false, bool, false, \ | 64 C(interpret_irregexp, true, false, bool, false, \ |
| 63 "Use irregexp bytecode interpreter") \ | 65 "Use irregexp bytecode interpreter") \ |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 P(verbose_gc, bool, false, \ | 130 P(verbose_gc, bool, false, \ |
| 129 "Enables verbose GC.") \ | 131 "Enables verbose GC.") \ |
| 130 P(verbose_gc_hdr, int, 40, \ | 132 P(verbose_gc_hdr, int, 40, \ |
| 131 "Print verbose GC header interval.") \ | 133 "Print verbose GC header interval.") \ |
| 132 R(verify_after_gc, false, bool, false, \ | 134 R(verify_after_gc, false, bool, false, \ |
| 133 "Enables heap verification after GC.") \ | 135 "Enables heap verification after GC.") \ |
| 134 R(verify_before_gc, false, bool, false, \ | 136 R(verify_before_gc, false, bool, false, \ |
| 135 "Enables heap verification before GC.") \ | 137 "Enables heap verification before GC.") \ |
| 136 | 138 |
| 137 #endif // VM_FLAG_LIST_H_ | 139 #endif // VM_FLAG_LIST_H_ |
| OLD | NEW |