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

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

Issue 1846443002: - Remove --coverage_dir flag and old-style coverage service requests. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Remove obsolete tests. Created 4 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/coverage_test.cc ('k') | runtime/vm/isolate.cc » ('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 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 R(support_compiler_stats, false, bool, true, \ 128 R(support_compiler_stats, false, bool, true, \
129 "Support compiler stats.") \ 129 "Support compiler stats.") \
130 R(support_debugger, false, bool, true, \ 130 R(support_debugger, false, bool, true, \
131 "Support the debugger.") \ 131 "Support the debugger.") \
132 R(support_disassembler, false, bool, true, \ 132 R(support_disassembler, false, bool, true, \
133 "Support the disassembler.") \ 133 "Support the disassembler.") \
134 R(support_il_printer, false, bool, true, \ 134 R(support_il_printer, false, bool, true, \
135 "Support the IL printer.") \ 135 "Support the IL printer.") \
136 R(support_service, false, bool, true, \ 136 R(support_service, false, bool, true, \
137 "Support the service protocol.") \ 137 "Support the service protocol.") \
138 R(support_coverage, false, bool, true, \
139 "Support code coverage.") \
140 R(support_timeline, false, bool, true, \ 138 R(support_timeline, false, bool, true, \
141 "Support timeline.") \ 139 "Support timeline.") \
142 D(trace_cha, bool, false, \ 140 D(trace_cha, bool, false, \
143 "Trace CHA operations") \ 141 "Trace CHA operations") \
144 D(trace_field_guards, bool, false, \ 142 D(trace_field_guards, bool, false, \
145 "Trace changes in field's cids.") \ 143 "Trace changes in field's cids.") \
146 D(trace_isolates, bool, false, \ 144 D(trace_isolates, bool, false, \
147 "Trace isolate creation and shut down.") \ 145 "Trace isolate creation and shut down.") \
148 D(trace_handles, bool, false, \ 146 D(trace_handles, bool, false, \
149 "Traces allocation of handles.") \ 147 "Traces allocation of handles.") \
(...skipping 21 matching lines...) Expand all
171 "Print verbose GC header interval.") \ 169 "Print verbose GC header interval.") \
172 R(verify_after_gc, false, bool, false, \ 170 R(verify_after_gc, false, bool, false, \
173 "Enables heap verification after GC.") \ 171 "Enables heap verification after GC.") \
174 R(verify_before_gc, false, bool, false, \ 172 R(verify_before_gc, false, bool, false, \
175 "Enables heap verification before GC.") \ 173 "Enables heap verification before GC.") \
176 D(verify_on_transition, bool, false, \ 174 D(verify_on_transition, bool, false, \
177 "Verify on dart <==> VM.") \ 175 "Verify on dart <==> VM.") \
178 176
179 177
180 #endif // VM_FLAG_LIST_H_ 178 #endif // VM_FLAG_LIST_H_
OLDNEW
« no previous file with comments | « runtime/vm/coverage_test.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698