Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(375)

Side by Side Diff: runtime/vm/flag_list.h

Issue 2603383004: Sane asynchronous debugging and stack traces (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/flow_graph.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 RUNTIME_VM_FLAG_LIST_H_ 5 #ifndef RUNTIME_VM_FLAG_LIST_H_
6 #define RUNTIME_VM_FLAG_LIST_H_ 6 #define RUNTIME_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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 C(precompiled_runtime, true, false, bool, false, "Precompiled runtime mode") \ 124 C(precompiled_runtime, true, false, bool, false, "Precompiled runtime mode") \
125 P(print_snapshot_sizes, bool, false, "Print sizes of generated snapshots.") \ 125 P(print_snapshot_sizes, bool, false, "Print sizes of generated snapshots.") \
126 R(print_ssa_liveranges, false, bool, false, \ 126 R(print_ssa_liveranges, false, bool, false, \
127 "Print live ranges after allocation.") \ 127 "Print live ranges after allocation.") \
128 C(print_stop_message, false, false, bool, false, "Print stop message.") \ 128 C(print_stop_message, false, false, bool, false, "Print stop message.") \
129 D(print_variable_descriptors, bool, false, \ 129 D(print_variable_descriptors, bool, false, \
130 "Print variable descriptors in disassembly.") \ 130 "Print variable descriptors in disassembly.") \
131 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ 131 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \
132 "Enable the profiler.") \ 132 "Enable the profiler.") \
133 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ 133 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \
134 R(sane_async_stacks, false, bool, true, "Sane async stack traces") \
134 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ 135 R(support_ast_printer, false, bool, true, "Support the AST printer.") \
135 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ 136 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \
136 C(support_debugger, false, false, bool, true, "Support the debugger.") \ 137 C(support_debugger, false, false, bool, true, "Support the debugger.") \
137 R(support_disassembler, false, bool, true, "Support the disassembler.") \ 138 R(support_disassembler, false, bool, true, "Support the disassembler.") \
138 R(support_il_printer, false, bool, true, "Support the IL printer.") \ 139 R(support_il_printer, false, bool, true, "Support the IL printer.") \
139 C(support_reload, false, false, bool, true, "Support isolate reload.") \ 140 C(support_reload, false, false, bool, true, "Support isolate reload.") \
140 R(support_service, false, bool, true, "Support the service protocol.") \ 141 R(support_service, false, bool, true, "Support the service protocol.") \
141 R(support_timeline, false, bool, true, "Support timeline.") \ 142 R(support_timeline, false, bool, true, "Support timeline.") \
142 D(trace_cha, bool, false, "Trace CHA operations") \ 143 D(trace_cha, bool, false, "Trace CHA operations") \
143 D(trace_field_guards, bool, false, "Trace changes in field's cids.") \ 144 D(trace_field_guards, bool, false, "Trace changes in field's cids.") \
(...skipping 16 matching lines...) Expand all
160 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ 161 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \
161 R(verify_after_gc, false, bool, false, \ 162 R(verify_after_gc, false, bool, false, \
162 "Enables heap verification after GC.") \ 163 "Enables heap verification after GC.") \
163 R(verify_before_gc, false, bool, false, \ 164 R(verify_before_gc, false, bool, false, \
164 "Enables heap verification before GC.") \ 165 "Enables heap verification before GC.") \
165 D(verify_gc_contains, bool, false, \ 166 D(verify_gc_contains, bool, false, \
166 "Enables verification of address contains during GC.") \ 167 "Enables verification of address contains during GC.") \
167 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") 168 D(verify_on_transition, bool, false, "Verify on dart <==> VM.")
168 169
169 #endif // RUNTIME_VM_FLAG_LIST_H_ 170 #endif // RUNTIME_VM_FLAG_LIST_H_
OLDNEW
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/flow_graph.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698