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

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

Issue 2903993002: Remember deopt-id -> context-level mappings in var descriptors. (Closed)
Patch Set: . Created 3 years, 6 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
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \ 143 R(profiler, false, bool, !USING_DBC && !USING_FUCHSIA, \
144 "Enable the profiler.") \ 144 "Enable the profiler.") \
145 R(profiler_native_memory, false, bool, false, \ 145 R(profiler_native_memory, false, bool, false, \
146 "Enable native memory statistic collection.") \ 146 "Enable native memory statistic collection.") \
147 P(reify_generic_functions, bool, false, \ 147 P(reify_generic_functions, bool, false, \
148 "Enable reification of generic functions (not yet supported).") \ 148 "Enable reification of generic functions (not yet supported).") \
149 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \ 149 P(reorder_basic_blocks, bool, true, "Reorder basic blocks") \
150 C(causal_async_stacks, false, false, bool, true, "Improved async stacks") \ 150 C(causal_async_stacks, false, false, bool, true, "Improved async stacks") \
151 C(stress_async_stacks, false, false, bool, false, \ 151 C(stress_async_stacks, false, false, bool, false, \
152 "Stress test async stack traces") \ 152 "Stress test async stack traces") \
153 C(async_debugger, false, false, bool, false, \ 153 C(async_debugger, false, false, bool, true, \
154 "Debugger support async functions.") \ 154 "Debugger support async functions.") \
155 R(support_ast_printer, false, bool, true, "Support the AST printer.") \ 155 R(support_ast_printer, false, bool, true, "Support the AST printer.") \
156 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \ 156 R(support_compiler_stats, false, bool, true, "Support compiler stats.") \
157 C(support_debugger, false, false, bool, true, "Support the debugger.") \ 157 C(support_debugger, false, false, bool, true, "Support the debugger.") \
158 R(support_disassembler, false, bool, true, "Support the disassembler.") \ 158 R(support_disassembler, false, bool, true, "Support the disassembler.") \
159 R(support_il_printer, false, bool, true, "Support the IL printer.") \ 159 R(support_il_printer, false, bool, true, "Support the IL printer.") \
160 C(support_reload, false, false, bool, true, "Support isolate reload.") \ 160 C(support_reload, false, false, bool, true, "Support isolate reload.") \
161 R(support_service, false, bool, true, "Support the service protocol.") \ 161 R(support_service, false, bool, true, "Support the service protocol.") \
162 R(support_timeline, false, bool, true, "Support timeline.") \ 162 R(support_timeline, false, bool, true, "Support timeline.") \
163 D(trace_cha, bool, false, "Trace CHA operations") \ 163 D(trace_cha, bool, false, "Trace CHA operations") \
(...skipping 17 matching lines...) Expand all
181 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ 181 P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \
182 R(verify_after_gc, false, bool, false, \ 182 R(verify_after_gc, false, bool, false, \
183 "Enables heap verification after GC.") \ 183 "Enables heap verification after GC.") \
184 R(verify_before_gc, false, bool, false, \ 184 R(verify_before_gc, false, bool, false, \
185 "Enables heap verification before GC.") \ 185 "Enables heap verification before GC.") \
186 D(verify_gc_contains, bool, false, \ 186 D(verify_gc_contains, bool, false, \
187 "Enables verification of address contains during GC.") \ 187 "Enables verification of address contains during GC.") \
188 D(verify_on_transition, bool, false, "Verify on dart <==> VM.") 188 D(verify_on_transition, bool, false, "Verify on dart <==> VM.")
189 189
190 #endif // RUNTIME_VM_FLAG_LIST_H_ 190 #endif // RUNTIME_VM_FLAG_LIST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698