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

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

Issue 1904153002: Add a stress testing flag --background-compilation-stop-alot; add an extra check if background comp… (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: r 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/compiler.cc ('k') | runtime/vm/isolate.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 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 #if defined(TARGET_ARCH_DBC) 8 #if defined(TARGET_ARCH_DBC)
9 #define USING_DBC 1 9 #define USING_DBC 1
10 #else 10 #else
(...skipping 15 matching lines...) Expand all
26 // D(name, type, default_value, comment) 26 // D(name, type, default_value, comment)
27 // R(name, product_value, type, default_value, comment) 27 // R(name, product_value, type, default_value, comment)
28 // C(name, precompiled_value, product_value, type, default_value, comment) 28 // C(name, precompiled_value, product_value, type, default_value, comment)
29 #define FLAG_LIST(P, R, D, C) \ 29 #define FLAG_LIST(P, R, D, C) \
30 P(allow_absolute_addresses, bool, true, \ 30 P(allow_absolute_addresses, bool, true, \
31 "Allow embedding absolute addresses in generated code.") \ 31 "Allow embedding absolute addresses in generated code.") \
32 P(always_megamorphic_calls, bool, false, \ 32 P(always_megamorphic_calls, bool, false, \
33 "Instance call always as megamorphic.") \ 33 "Instance call always as megamorphic.") \
34 C(background_compilation, false, true, bool, true, \ 34 C(background_compilation, false, true, bool, true, \
35 "Run optimizing compilation in background") \ 35 "Run optimizing compilation in background") \
36 R(background_compilation_stop_alot, false, bool, false, \
37 "Stress test system: stop background compiler often.") \
36 R(break_at_isolate_spawn, false, bool, false, \ 38 R(break_at_isolate_spawn, false, bool, false, \
37 "Insert a one-time breakpoint at the entrypoint for all spawned isolates") \ 39 "Insert a one-time breakpoint at the entrypoint for all spawned isolates") \
38 C(collect_code, false, true, bool, true, \ 40 C(collect_code, false, true, bool, true, \
39 "Attempt to GC infrequently used code.") \ 41 "Attempt to GC infrequently used code.") \
40 P(collect_dynamic_function_names, bool, false, \ 42 P(collect_dynamic_function_names, bool, false, \
41 "Collects all dynamic function names to identify unique targets") \ 43 "Collects all dynamic function names to identify unique targets") \
42 R(dedup_instructions, true, bool, false, \ 44 R(dedup_instructions, true, bool, false, \
43 "Canonicalize instructions when precompiling.") \ 45 "Canonicalize instructions when precompiling.") \
44 C(deoptimize_alot, false, false, bool, false, \ 46 C(deoptimize_alot, false, false, bool, false, \
45 "Deoptimizes we are about to return to Dart code from native entries.") \ 47 "Deoptimizes we are about to return to Dart code from native entries.") \
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "Print verbose GC header interval.") \ 179 "Print verbose GC header interval.") \
178 R(verify_after_gc, false, bool, false, \ 180 R(verify_after_gc, false, bool, false, \
179 "Enables heap verification after GC.") \ 181 "Enables heap verification after GC.") \
180 R(verify_before_gc, false, bool, false, \ 182 R(verify_before_gc, false, bool, false, \
181 "Enables heap verification before GC.") \ 183 "Enables heap verification before GC.") \
182 D(verify_on_transition, bool, false, \ 184 D(verify_on_transition, bool, false, \
183 "Verify on dart <==> VM.") \ 185 "Verify on dart <==> VM.") \
184 186
185 187
186 #endif // VM_FLAG_LIST_H_ 188 #endif // VM_FLAG_LIST_H_
OLDNEW
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698