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

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

Issue 12255002: Enable parallel sweeping. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 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 | 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 "flush code that we expect not to use again (incrementally)") 423 "flush code that we expect not to use again (incrementally)")
424 DEFINE_bool(age_code, true, 424 DEFINE_bool(age_code, true,
425 "track un-executed functions to age code and flush only " 425 "track un-executed functions to age code and flush only "
426 "old code") 426 "old code")
427 DEFINE_bool(incremental_marking, true, "use incremental marking") 427 DEFINE_bool(incremental_marking, true, "use incremental marking")
428 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 428 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
429 DEFINE_bool(trace_incremental_marking, false, 429 DEFINE_bool(trace_incremental_marking, false,
430 "trace progress of the incremental marking") 430 "trace progress of the incremental marking")
431 DEFINE_bool(track_gc_object_stats, false, 431 DEFINE_bool(track_gc_object_stats, false,
432 "track object counts and memory usage") 432 "track object counts and memory usage")
433 DEFINE_bool(parallel_sweeping, false, "enable parallel sweeping") 433 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping")
434 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") 434 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping")
435 DEFINE_int(sweeper_threads, 1, 435 DEFINE_int(sweeper_threads, 1,
436 "number of parallel and concurrent sweeping threads") 436 "number of parallel and concurrent sweeping threads")
437 DEFINE_bool(parallel_marking, false, "enable parallel marking") 437 DEFINE_bool(parallel_marking, false, "enable parallel marking")
438 DEFINE_int(marking_threads, 1, "number of parallel marking threads") 438 DEFINE_int(marking_threads, 1, "number of parallel marking threads")
439 #ifdef VERIFY_HEAP 439 #ifdef VERIFY_HEAP
440 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 440 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
441 #endif 441 #endif
442 442
443 // v8.cc 443 // v8.cc
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 #undef DEFINE_bool 741 #undef DEFINE_bool
742 #undef DEFINE_int 742 #undef DEFINE_int
743 #undef DEFINE_string 743 #undef DEFINE_string
744 #undef DEFINE_implication 744 #undef DEFINE_implication
745 745
746 #undef FLAG_MODE_DECLARE 746 #undef FLAG_MODE_DECLARE
747 #undef FLAG_MODE_DEFINE 747 #undef FLAG_MODE_DEFINE
748 #undef FLAG_MODE_DEFINE_DEFAULTS 748 #undef FLAG_MODE_DEFINE_DEFAULTS
749 #undef FLAG_MODE_META 749 #undef FLAG_MODE_META
750 #undef FLAG_MODE_DEFINE_IMPLICATIONS 750 #undef FLAG_MODE_DEFINE_IMPLICATIONS
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