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

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

Issue 2787023002: Disable awaiter stepping by default until context level computation is fixed (Closed)
Patch Set: Created 3 years, 8 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') | no next file » | 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "Print live ranges after allocation.") \ 142 "Print live ranges after allocation.") \
143 C(print_stop_message, false, false, bool, false, "Print stop message.") \ 143 C(print_stop_message, false, false, bool, false, "Print stop message.") \
144 D(print_variable_descriptors, bool, false, \ 144 D(print_variable_descriptors, bool, false, \
145 "Print variable descriptors in disassembly.") \ 145 "Print variable descriptors in disassembly.") \
146 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ 146 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \
147 "Enable the profiler.") \ 147 "Enable the profiler.") \
148 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ 148 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \
149 C(causal_async_stacks, false, false, bool, true, "Improved async stacks") \ 149 C(causal_async_stacks, false, false, bool, true, "Improved async stacks") \
150 C(stress_async_stacks, false, false, bool, false, \ 150 C(stress_async_stacks, false, false, bool, false, \
151 "Stress test async stack traces") \ 151 "Stress test async stack traces") \
152 C(async_debugger_stepping, false, false, bool, true, \ 152 C(async_debugger_stepping, false, false, bool, false, \
153 "Debugger support for stepping in and out of async functions.") \ 153 "Debugger support for stepping in and out of async functions.") \
154 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ 154 R(support_ast_printer, false, bool, true, "Support the AST printer.") \
155 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ 155 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \
156 C(support_debugger, false, false, bool, true, "Support the debugger.") \ 156 C(support_debugger, false, false, bool, true, "Support the debugger.") \
157 R(support_disassembler, false, bool, true, "Support the disassembler.") \ 157 R(support_disassembler, false, bool, true, "Support the disassembler.") \
158 R(support_il_printer, false, bool, true, "Support the IL printer.") \ 158 R(support_il_printer, false, bool, true, "Support the IL printer.") \
159 C(support_reload, false, false, bool, true, "Support isolate reload.") \ 159 C(support_reload, false, false, bool, true, "Support isolate reload.") \
160 R(support_service, false, bool, true, "Support the service protocol.") \ 160 R(support_service, false, bool, true, "Support the service protocol.") \
161 R(support_timeline, false, bool, true, "Support timeline.") \ 161 R(support_timeline, false, bool, true, "Support timeline.") \
162 D(trace_cha, bool, false, "Trace CHA operations") \ 162 D(trace_cha, bool, false, "Trace CHA operations") \
(...skipping 17 matching lines...) Expand all
180 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ 180 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \
181 R(verify_after_gc, false, bool, false, \ 181 R(verify_after_gc, false, bool, false, \
182 "Enables heap verification after GC.") \ 182 "Enables heap verification after GC.") \
183 R(verify_before_gc, false, bool, false, \ 183 R(verify_before_gc, false, bool, false, \
184 "Enables heap verification before GC.") \ 184 "Enables heap verification before GC.") \
185 D(verify_gc_contains, bool, false, \ 185 D(verify_gc_contains, bool, false, \
186 "Enables verification of address contains during GC.") \ 186 "Enables verification of address contains during GC.") \
187 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") 187 D(verify_on_transition, bool, false, "Verify on dart <==> VM.")
188 188
189 #endif // RUNTIME_VM_FLAG_LIST_H_ 189 #endif // RUNTIME_VM_FLAG_LIST_H_
OLDNEW
« no previous file with comments | « runtime/vm/debugger.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698