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 20 matching lines...) Expand all Loading... |
31 R(pretenure_all, false, bool, false, \ | 31 R(pretenure_all, false, bool, false, \ |
32 "Global pretenuring (for testing).") \ | 32 "Global pretenuring (for testing).") \ |
33 P(pretenure_interval, int, 10, \ | 33 P(pretenure_interval, int, 10, \ |
34 "Back off pretenuring after this many cycles.") \ | 34 "Back off pretenuring after this many cycles.") \ |
35 P(pretenure_threshold, int, 98, \ | 35 P(pretenure_threshold, int, 98, \ |
36 "Trigger pretenuring when this many percent are promoted.") \ | 36 "Trigger pretenuring when this many percent are promoted.") \ |
37 R(profiler, false, bool, true, \ | 37 R(profiler, false, bool, true, \ |
38 "Enable the profiler.") \ | 38 "Enable the profiler.") \ |
39 R(support_ast_printer, false, bool, true, \ | 39 R(support_ast_printer, false, bool, true, \ |
40 "Support the AST printer.") \ | 40 "Support the AST printer.") \ |
| 41 R(support_compiler_stats, false, bool, true, \ |
| 42 "Support compiler stats.") \ |
41 R(support_debugger, false, bool, true, \ | 43 R(support_debugger, false, bool, true, \ |
42 "Support the debugger.") \ | 44 "Support the debugger.") \ |
43 R(support_disassembler, false, bool, true, \ | 45 R(support_disassembler, false, bool, true, \ |
44 "Support the disassembler.") \ | 46 "Support the disassembler.") \ |
45 R(support_il_printer, false, bool, true, \ | 47 R(support_il_printer, false, bool, true, \ |
46 "Support the IL printer.") \ | 48 "Support the IL printer.") \ |
47 R(support_service, false, bool, true, \ | 49 R(support_service, false, bool, true, \ |
48 "Support the service protocol.") \ | 50 "Support the service protocol.") \ |
49 R(support_coverage, false, bool, true, \ | 51 R(support_coverage, false, bool, true, \ |
50 "Support code coverage.") \ | 52 "Support code coverage.") \ |
51 R(support_timeline, false, bool, true, \ | 53 R(support_timeline, false, bool, true, \ |
52 "Support timeline.") \ | 54 "Support timeline.") \ |
53 D(trace_handles, bool, false, \ | 55 D(trace_handles, bool, false, \ |
54 "Traces allocation of handles.") \ | 56 "Traces allocation of handles.") \ |
55 D(trace_zones, bool, false, \ | 57 D(trace_zones, bool, false, \ |
56 "Traces allocation sizes in the zone.") \ | 58 "Traces allocation sizes in the zone.") \ |
57 P(verbose_gc, bool, false, \ | 59 P(verbose_gc, bool, false, \ |
58 "Enables verbose GC.") \ | 60 "Enables verbose GC.") \ |
59 P(verbose_gc_hdr, int, 40, \ | 61 P(verbose_gc_hdr, int, 40, \ |
60 "Print verbose GC header interval.") \ | 62 "Print verbose GC header interval.") \ |
61 R(verify_after_gc, false, bool, false, \ | 63 R(verify_after_gc, false, bool, false, \ |
62 "Enables heap verification after GC.") \ | 64 "Enables heap verification after GC.") \ |
63 R(verify_before_gc, false, bool, false, \ | 65 R(verify_before_gc, false, bool, false, \ |
64 "Enables heap verification before GC.") \ | 66 "Enables heap verification before GC.") \ |
65 | 67 |
66 | 68 |
67 #endif // VM_FLAG_LIST_H_ | 69 #endif // VM_FLAG_LIST_H_ |
OLD | NEW |