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

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

Issue 143803007: Introduce --job-based-sweeping flag and use individual jobs for sweeping if set (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 years, 11 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.cc » ('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 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 DEFINE_bool(incremental_marking, true, "use incremental marking") 526 DEFINE_bool(incremental_marking, true, "use incremental marking")
527 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 527 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
528 DEFINE_bool(trace_incremental_marking, false, 528 DEFINE_bool(trace_incremental_marking, false,
529 "trace progress of the incremental marking") 529 "trace progress of the incremental marking")
530 DEFINE_bool(track_gc_object_stats, false, 530 DEFINE_bool(track_gc_object_stats, false,
531 "track object counts and memory usage") 531 "track object counts and memory usage")
532 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") 532 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping")
533 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") 533 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping")
534 DEFINE_int(sweeper_threads, 0, 534 DEFINE_int(sweeper_threads, 0,
535 "number of parallel and concurrent sweeping threads") 535 "number of parallel and concurrent sweeping threads")
536 DEFINE_bool(job_based_sweeping, false, "enable job based sweeping")
536 #ifdef VERIFY_HEAP 537 #ifdef VERIFY_HEAP
537 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 538 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
538 #endif 539 #endif
539 540
540 541
541 // heap-snapshot-generator.cc 542 // heap-snapshot-generator.cc
542 DEFINE_bool(heap_profiler_trace_objects, false, 543 DEFINE_bool(heap_profiler_trace_objects, false,
543 "Dump heap object allocations/movements/size_updates") 544 "Dump heap object allocations/movements/size_updates")
544 545
545 546
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 #undef DEFINE_ALIAS_float 893 #undef DEFINE_ALIAS_float
893 #undef DEFINE_ALIAS_args 894 #undef DEFINE_ALIAS_args
894 895
895 #undef FLAG_MODE_DECLARE 896 #undef FLAG_MODE_DECLARE
896 #undef FLAG_MODE_DEFINE 897 #undef FLAG_MODE_DEFINE
897 #undef FLAG_MODE_DEFINE_DEFAULTS 898 #undef FLAG_MODE_DEFINE_DEFAULTS
898 #undef FLAG_MODE_META 899 #undef FLAG_MODE_META
899 #undef FLAG_MODE_DEFINE_IMPLICATIONS 900 #undef FLAG_MODE_DEFINE_IMPLICATIONS
900 901
901 #undef COMMA 902 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698