OLD | NEW |
---|---|
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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 |
415 DEFINE_bool(parallel_sweeping, false, "enable parallel sweeping") | |
416 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") | |
Michael Starzinger
2013/01/24 17:15:54
As discussed offline, for now it makes sense to ha
Hannes Payer (out of office)
2013/01/25 10:46:49
Done.
| |
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 Loading... | |
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 |
OLD | NEW |