| 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 DEFINE_bool(incremental_marking, true, "use incremental marking") | 523 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 524 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 524 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| 525 DEFINE_bool(trace_incremental_marking, false, | 525 DEFINE_bool(trace_incremental_marking, false, |
| 526 "trace progress of the incremental marking") | 526 "trace progress of the incremental marking") |
| 527 DEFINE_bool(track_gc_object_stats, false, | 527 DEFINE_bool(track_gc_object_stats, false, |
| 528 "track object counts and memory usage") | 528 "track object counts and memory usage") |
| 529 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") | 529 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") |
| 530 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") | 530 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") |
| 531 DEFINE_int(sweeper_threads, 0, | 531 DEFINE_int(sweeper_threads, 0, |
| 532 "number of parallel and concurrent sweeping threads") | 532 "number of parallel and concurrent sweeping threads") |
| 533 DEFINE_bool(parallel_marking, false, "enable parallel marking") | |
| 534 DEFINE_int(marking_threads, 0, "number of parallel marking threads") | |
| 535 #ifdef VERIFY_HEAP | 533 #ifdef VERIFY_HEAP |
| 536 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 534 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
| 537 #endif | 535 #endif |
| 538 | 536 |
| 539 // v8.cc | 537 // v8.cc |
| 540 DEFINE_bool(use_idle_notification, true, | 538 DEFINE_bool(use_idle_notification, true, |
| 541 "Use idle notification to reduce memory footprint.") | 539 "Use idle notification to reduce memory footprint.") |
| 542 // ic.cc | 540 // ic.cc |
| 543 DEFINE_bool(use_ic, true, "use inline caching") | 541 DEFINE_bool(use_ic, true, "use inline caching") |
| 544 | 542 |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 #undef DEFINE_ALIAS_float | 852 #undef DEFINE_ALIAS_float |
| 855 #undef DEFINE_ALIAS_args | 853 #undef DEFINE_ALIAS_args |
| 856 | 854 |
| 857 #undef FLAG_MODE_DECLARE | 855 #undef FLAG_MODE_DECLARE |
| 858 #undef FLAG_MODE_DEFINE | 856 #undef FLAG_MODE_DEFINE |
| 859 #undef FLAG_MODE_DEFINE_DEFAULTS | 857 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 860 #undef FLAG_MODE_META | 858 #undef FLAG_MODE_META |
| 861 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 859 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 862 | 860 |
| 863 #undef COMMA | 861 #undef COMMA |
| OLD | NEW |