| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 C(deoptimize_alot, false, false, bool, false, \ | 54 C(deoptimize_alot, false, false, bool, false, \ |
| 55 "Deoptimizes we are about to return to Dart code from native entries.") \ | 55 "Deoptimizes we are about to return to Dart code from native entries.") \ |
| 56 C(deoptimize_every, 0, 0, int, 0, \ | 56 C(deoptimize_every, 0, 0, int, 0, \ |
| 57 "Deoptimize on every N stack overflow checks") \ | 57 "Deoptimize on every N stack overflow checks") \ |
| 58 R(disable_alloc_stubs_after_gc, false, bool, false, \ | 58 R(disable_alloc_stubs_after_gc, false, bool, false, \ |
| 59 "Stress testing flag.") \ | 59 "Stress testing flag.") \ |
| 60 R(disassemble, false, bool, false, \ | 60 R(disassemble, false, bool, false, \ |
| 61 "Disassemble dart code.") \ | 61 "Disassemble dart code.") \ |
| 62 R(disassemble_optimized, false, bool, false, \ | 62 R(disassemble_optimized, false, bool, false, \ |
| 63 "Disassemble optimized code.") \ | 63 "Disassemble optimized code.") \ |
| 64 R(dump_megamorphic_stats, false, bool, false, \ |
| 65 "Dump megamorphic cache statistics") \ |
| 64 R(dump_symbol_stats, false, bool, false, \ | 66 R(dump_symbol_stats, false, bool, false, \ |
| 65 "Dump symbol table statistics") \ | 67 "Dump symbol table statistics") \ |
| 66 R(enable_asserts, false, bool, false, \ | 68 R(enable_asserts, false, bool, false, \ |
| 67 "Enable assert statements.") \ | 69 "Enable assert statements.") \ |
| 68 C(enable_mirrors, false, false, bool, true, \ | 70 C(enable_mirrors, false, false, bool, true, \ |
| 69 "Disable to make importing dart:mirrors an error.") \ | 71 "Disable to make importing dart:mirrors an error.") \ |
| 70 R(enable_type_checks, false, bool, false, \ | 72 R(enable_type_checks, false, bool, false, \ |
| 71 "Enable type checks.") \ | 73 "Enable type checks.") \ |
| 72 R(error_on_bad_override, false, bool, false, \ | 74 R(error_on_bad_override, false, bool, false, \ |
| 73 "Report error for bad overrides.") \ | 75 "Report error for bad overrides.") \ |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 P(verbose_gc_hdr, int, 40, \ | 193 P(verbose_gc_hdr, int, 40, \ |
| 192 "Print verbose GC header interval.") \ | 194 "Print verbose GC header interval.") \ |
| 193 R(verify_after_gc, false, bool, false, \ | 195 R(verify_after_gc, false, bool, false, \ |
| 194 "Enables heap verification after GC.") \ | 196 "Enables heap verification after GC.") \ |
| 195 R(verify_before_gc, false, bool, false, \ | 197 R(verify_before_gc, false, bool, false, \ |
| 196 "Enables heap verification before GC.") \ | 198 "Enables heap verification before GC.") \ |
| 197 D(verify_on_transition, bool, false, \ | 199 D(verify_on_transition, bool, false, \ |
| 198 "Verify on dart <==> VM.") \ | 200 "Verify on dart <==> VM.") \ |
| 199 | 201 |
| 200 #endif // VM_FLAG_LIST_H_ | 202 #endif // VM_FLAG_LIST_H_ |
| OLD | NEW |