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

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

Issue 11782028: Parallel and concurrent 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 | src/heap.h » ('j') | src/heap.cc » ('J')
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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 "old code") 404 "old code")
405 DEFINE_bool(incremental_marking, true, "use incremental marking") 405 DEFINE_bool(incremental_marking, true, "use incremental marking")
406 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 406 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
407 DEFINE_bool(trace_incremental_marking, false, 407 DEFINE_bool(trace_incremental_marking, false,
408 "trace progress of the incremental marking") 408 "trace progress of the incremental marking")
409 DEFINE_bool(track_gc_object_stats, false, 409 DEFINE_bool(track_gc_object_stats, false,
410 "track object counts and memory usage") 410 "track object counts and memory usage")
411 #ifdef VERIFY_HEAP 411 #ifdef VERIFY_HEAP
412 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 412 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
413 #endif 413 #endif
414 414
Michael Starzinger 2013/01/28 16:30:18 Remove this empty newline, or move this block up i
Hannes Payer (out of office) 2013/01/30 10:11:27 Done.
415 DEFINE_bool(parallel_sweeping, false, "enable parallel sweeping")
416 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping")
417 DEFINE_int(sweeper_threads, 1,
418 "number of parallel and concurrent sweeping threads")
419
415 // v8.cc 420 // v8.cc
416 DEFINE_bool(use_idle_notification, true, 421 DEFINE_bool(use_idle_notification, true,
417 "Use idle notification to reduce memory footprint.") 422 "Use idle notification to reduce memory footprint.")
418 // ic.cc 423 // ic.cc
419 DEFINE_bool(use_ic, true, "use inline caching") 424 DEFINE_bool(use_ic, true, "use inline caching")
420 425
421 #ifdef LIVE_OBJECT_LIST 426 #ifdef LIVE_OBJECT_LIST
422 // liveobjectlist.cc 427 // liveobjectlist.cc
423 DEFINE_string(lol_workdir, NULL, "path for lol temp files") 428 DEFINE_string(lol_workdir, NULL, "path for lol temp files")
424 DEFINE_bool(verify_lol, false, "perform debugging verification for lol") 429 DEFINE_bool(verify_lol, false, "perform debugging verification for lol")
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 #undef DEFINE_bool 724 #undef DEFINE_bool
720 #undef DEFINE_int 725 #undef DEFINE_int
721 #undef DEFINE_string 726 #undef DEFINE_string
722 #undef DEFINE_implication 727 #undef DEFINE_implication
723 728
724 #undef FLAG_MODE_DECLARE 729 #undef FLAG_MODE_DECLARE
725 #undef FLAG_MODE_DEFINE 730 #undef FLAG_MODE_DEFINE
726 #undef FLAG_MODE_DEFINE_DEFAULTS 731 #undef FLAG_MODE_DEFINE_DEFAULTS
727 #undef FLAG_MODE_META 732 #undef FLAG_MODE_META
728 #undef FLAG_MODE_DEFINE_IMPLICATIONS 733 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | src/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698