Chromium Code Reviews| Index: runtime/vm/flag_list.h |
| diff --git a/runtime/vm/flag_list.h b/runtime/vm/flag_list.h |
| index 54e6b22a62f42f428d5ee4195014a00ac9f8a377..8867005a4724468bfcadeb0c231c69318fde3f4b 100644 |
| --- a/runtime/vm/flag_list.h |
| +++ b/runtime/vm/flag_list.h |
| @@ -34,6 +34,22 @@ P(pretenure_interval, int, 10, \ |
| "Back off pretenuring after this many cycles.") \ |
| P(pretenure_threshold, int, 98, \ |
| "Trigger pretenuring when this many percent are promoted.") \ |
| +R(profiler, false, bool, true, \ |
| + "Support the profiler.") \ |
|
rmacnak
2016/02/08 22:42:36
Enable the profiler
Cutch
2016/02/08 23:07:55
Done.
|
| +R(support_ast_printer, false, bool, true, \ |
| + "Support the AST printer.") \ |
| +R(support_debugger, false, bool, true, \ |
| + "Support the debugger.") \ |
| +R(support_disassembler, false, bool, true, \ |
| + "Support the disassembler.") \ |
| +R(support_il_printer, false, bool, true, \ |
| + "Support the IL printer.") \ |
| +R(support_service, false, bool, true, \ |
| + "Support the service protocol.") \ |
| +R(support_coverage, false, bool, true, \ |
| + "Support code coverage.") \ |
| +R(support_timeline, false, bool, true, \ |
| + "Support timeline.") \ |
|
rmacnak
2016/02/08 22:42:36
For each support_*, how about a sanity hello world
Cutch
2016/02/08 23:07:55
Done.
|
| D(trace_handles, bool, false, \ |
| "Traces allocation of handles.") \ |
| D(trace_zones, bool, false, \ |
| @@ -46,13 +62,6 @@ R(verify_after_gc, false, bool, false, \ |
| "Enables heap verification after GC.") \ |
| R(verify_before_gc, false, bool, false, \ |
| "Enables heap verification before GC.") \ |
| -R(support_debugger, false, bool, true, \ |
| - "Support the debugger.") \ |
| -R(support_service, false, bool, true, \ |
| - "Support the service protocol.") \ |
| -R(support_coverage, false, bool, true, \ |
| - "Support code coverage.") \ |
| -R(support_timeline, false, bool, true, \ |
| - "Support timeline.") \ |
| + |
| #endif // VM_FLAG_LIST_H_ |