| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 D(trace_zones, bool, false, \ | 156 D(trace_zones, bool, false, \ |
| 157 "Traces allocation sizes in the zone.") \ | 157 "Traces allocation sizes in the zone.") \ |
| 158 P(truncating_left_shift, bool, true, \ | 158 P(truncating_left_shift, bool, true, \ |
| 159 "Optimize left shift to truncate if possible") \ | 159 "Optimize left shift to truncate if possible") \ |
| 160 P(use_cha_deopt, bool, true, \ | 160 P(use_cha_deopt, bool, true, \ |
| 161 "Use class hierarchy analysis even if it can cause deoptimization.") \ | 161 "Use class hierarchy analysis even if it can cause deoptimization.") \ |
| 162 P(use_field_guards, bool, true, \ | 162 P(use_field_guards, bool, true, \ |
| 163 "Use field guards and track field types") \ | 163 "Use field guards and track field types") \ |
| 164 C(use_osr, false, true, bool, true, \ | 164 C(use_osr, false, true, bool, true, \ |
| 165 "Use OSR") \ | 165 "Use OSR") \ |
| 166 R(verbose_dev, false, bool, false, \ |
| 167 "Enables verbose messages during development.") \ |
| 166 P(verbose_gc, bool, false, \ | 168 P(verbose_gc, bool, false, \ |
| 167 "Enables verbose GC.") \ | 169 "Enables verbose GC.") \ |
| 168 P(verbose_gc_hdr, int, 40, \ | 170 P(verbose_gc_hdr, int, 40, \ |
| 169 "Print verbose GC header interval.") \ | 171 "Print verbose GC header interval.") \ |
| 170 R(verify_after_gc, false, bool, false, \ | 172 R(verify_after_gc, false, bool, false, \ |
| 171 "Enables heap verification after GC.") \ | 173 "Enables heap verification after GC.") \ |
| 172 R(verify_before_gc, false, bool, false, \ | 174 R(verify_before_gc, false, bool, false, \ |
| 173 "Enables heap verification before GC.") \ | 175 "Enables heap verification before GC.") \ |
| 174 D(verify_on_transition, bool, false, \ | 176 D(verify_on_transition, bool, false, \ |
| 175 "Verify on dart <==> VM.") \ | 177 "Verify on dart <==> VM.") \ |
| 176 | 178 |
| 177 | 179 |
| 178 #endif // VM_FLAG_LIST_H_ | 180 #endif // VM_FLAG_LIST_H_ |
| OLD | NEW |