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

Side by Side Diff: src/flag-definitions.h

Issue 100433006: Use concurrent sweeping instead of parallel sweeping by default. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") 537 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress")
538 DEFINE_bool(age_code, true, 538 DEFINE_bool(age_code, true,
539 "track un-executed functions to age code and flush only " 539 "track un-executed functions to age code and flush only "
540 "old code (required for code flushing)") 540 "old code (required for code flushing)")
541 DEFINE_bool(incremental_marking, true, "use incremental marking") 541 DEFINE_bool(incremental_marking, true, "use incremental marking")
542 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 542 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
543 DEFINE_bool(trace_incremental_marking, false, 543 DEFINE_bool(trace_incremental_marking, false,
544 "trace progress of the incremental marking") 544 "trace progress of the incremental marking")
545 DEFINE_bool(track_gc_object_stats, false, 545 DEFINE_bool(track_gc_object_stats, false,
546 "track object counts and memory usage") 546 "track object counts and memory usage")
547 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") 547 DEFINE_bool(parallel_sweeping, false, "enable parallel sweeping")
548 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") 548 DEFINE_bool(concurrent_sweeping, true, "enable concurrent sweeping")
549 DEFINE_int(sweeper_threads, 0, 549 DEFINE_int(sweeper_threads, 0,
550 "number of parallel and concurrent sweeping threads") 550 "number of parallel and concurrent sweeping threads")
551 #ifdef VERIFY_HEAP 551 #ifdef VERIFY_HEAP
552 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 552 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
553 #endif 553 #endif
554 554
555 555
556 // heap-snapshot-generator.cc 556 // heap-snapshot-generator.cc
557 DEFINE_bool(heap_profiler_trace_objects, false, 557 DEFINE_bool(heap_profiler_trace_objects, false,
558 "Dump heap object allocations/movements/size_updates") 558 "Dump heap object allocations/movements/size_updates")
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 #undef DEFINE_ALIAS_float 898 #undef DEFINE_ALIAS_float
899 #undef DEFINE_ALIAS_args 899 #undef DEFINE_ALIAS_args
900 900
901 #undef FLAG_MODE_DECLARE 901 #undef FLAG_MODE_DECLARE
902 #undef FLAG_MODE_DEFINE 902 #undef FLAG_MODE_DEFINE
903 #undef FLAG_MODE_DEFINE_DEFAULTS 903 #undef FLAG_MODE_DEFINE_DEFAULTS
904 #undef FLAG_MODE_META 904 #undef FLAG_MODE_META
905 #undef FLAG_MODE_DEFINE_IMPLICATIONS 905 #undef FLAG_MODE_DEFINE_IMPLICATIONS
906 906
907 #undef COMMA 907 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698