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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 P(fields_may_be_reset, bool, false, \ | 83 P(fields_may_be_reset, bool, false, \ |
84 "Don't optimize away static field initialization") \ | 84 "Don't optimize away static field initialization") \ |
85 C(force_clone_compiler_objects, false, false, bool, false, \ | 85 C(force_clone_compiler_objects, false, false, bool, false, \ |
86 "Force cloning of objects needed in compiler (ICData and Field).") \ | 86 "Force cloning of objects needed in compiler (ICData and Field).") \ |
87 R(gc_at_alloc, false, bool, false, \ | 87 R(gc_at_alloc, false, bool, false, \ |
88 "GC at every allocation.") \ | 88 "GC at every allocation.") \ |
89 P(getter_setter_ratio, int, 13, \ | 89 P(getter_setter_ratio, int, 13, \ |
90 "Ratio of getter/setter usage used for double field unboxing heuristics") \ | 90 "Ratio of getter/setter usage used for double field unboxing heuristics") \ |
91 P(guess_icdata_cid, bool, true, \ | 91 P(guess_icdata_cid, bool, true, \ |
92 "Artificially create type feedback for arithmetic etc. operations") \ | 92 "Artificially create type feedback for arithmetic etc. operations") \ |
93 P(ic_range_profiling, bool, !USING_DBC, \ | |
94 "Generate special IC stubs collecting range information ") \ | |
95 P(interpret_irregexp, bool, USING_DBC, \ | 93 P(interpret_irregexp, bool, USING_DBC, \ |
96 "Use irregexp bytecode interpreter") \ | 94 "Use irregexp bytecode interpreter") \ |
97 P(lazy_dispatchers, bool, true, \ | 95 P(lazy_dispatchers, bool, true, \ |
98 "Generate dispatchers lazily") \ | 96 "Generate dispatchers lazily") \ |
99 P(link_natives_lazily, bool, false, \ | 97 P(link_natives_lazily, bool, false, \ |
100 "Link native calls lazily") \ | 98 "Link native calls lazily") \ |
101 C(load_deferred_eagerly, true, true, bool, false, \ | 99 C(load_deferred_eagerly, true, true, bool, false, \ |
102 "Load deferred libraries eagerly.") \ | 100 "Load deferred libraries eagerly.") \ |
103 R(log_marker_tasks, false, bool, false, \ | 101 R(log_marker_tasks, false, bool, false, \ |
104 "Log debugging information for old gen GC marking tasks.") \ | 102 "Log debugging information for old gen GC marking tasks.") \ |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 P(verbose_gc_hdr, int, 40, \ | 191 P(verbose_gc_hdr, int, 40, \ |
194 "Print verbose GC header interval.") \ | 192 "Print verbose GC header interval.") \ |
195 R(verify_after_gc, false, bool, false, \ | 193 R(verify_after_gc, false, bool, false, \ |
196 "Enables heap verification after GC.") \ | 194 "Enables heap verification after GC.") \ |
197 R(verify_before_gc, false, bool, false, \ | 195 R(verify_before_gc, false, bool, false, \ |
198 "Enables heap verification before GC.") \ | 196 "Enables heap verification before GC.") \ |
199 D(verify_on_transition, bool, false, \ | 197 D(verify_on_transition, bool, false, \ |
200 "Verify on dart <==> VM.") \ | 198 "Verify on dart <==> VM.") \ |
201 | 199 |
202 #endif // VM_FLAG_LIST_H_ | 200 #endif // VM_FLAG_LIST_H_ |
OLD | NEW |