| 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 DEFINE_bool(flush_code, true, | 519 DEFINE_bool(flush_code, true, |
| 520 "flush code that we expect not to use again (during full gc)") | 520 "flush code that we expect not to use again (during full gc)") |
| 521 DEFINE_bool(flush_code_incrementally, true, | 521 DEFINE_bool(flush_code_incrementally, true, |
| 522 "flush code that we expect not to use again (incrementally)") | 522 "flush code that we expect not to use again (incrementally)") |
| 523 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") | 523 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") |
| 524 DEFINE_bool(age_code, true, | 524 DEFINE_bool(age_code, true, |
| 525 "track un-executed functions to age code and flush only " | 525 "track un-executed functions to age code and flush only " |
| 526 "old code (required for code flushing)") | 526 "old code (required for code flushing)") |
| 527 DEFINE_bool(incremental_marking, true, "use incremental marking") | 527 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 528 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 528 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| 529 DEFINE_bool(always_incremental_marking, false, "always use incremental marking") |
| 530 DEFINE_implication(always_incremental_marking, incremental_marking) |
| 531 DEFINE_implication(always_incremental_marking, incremental_marking_steps) |
| 529 DEFINE_bool(trace_incremental_marking, false, | 532 DEFINE_bool(trace_incremental_marking, false, |
| 530 "trace progress of the incremental marking") | 533 "trace progress of the incremental marking") |
| 531 DEFINE_bool(track_gc_object_stats, false, | 534 DEFINE_bool(track_gc_object_stats, false, |
| 532 "track object counts and memory usage") | 535 "track object counts and memory usage") |
| 533 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") | 536 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") |
| 534 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") | 537 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") |
| 535 DEFINE_int(sweeper_threads, 0, | 538 DEFINE_int(sweeper_threads, 0, |
| 536 "number of parallel and concurrent sweeping threads") | 539 "number of parallel and concurrent sweeping threads") |
| 537 DEFINE_bool(job_based_sweeping, false, "enable job based sweeping") | 540 DEFINE_bool(job_based_sweeping, false, "enable job based sweeping") |
| 538 #ifdef VERIFY_HEAP | 541 #ifdef VERIFY_HEAP |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 #undef DEFINE_ALIAS_float | 921 #undef DEFINE_ALIAS_float |
| 919 #undef DEFINE_ALIAS_args | 922 #undef DEFINE_ALIAS_args |
| 920 | 923 |
| 921 #undef FLAG_MODE_DECLARE | 924 #undef FLAG_MODE_DECLARE |
| 922 #undef FLAG_MODE_DEFINE | 925 #undef FLAG_MODE_DEFINE |
| 923 #undef FLAG_MODE_DEFINE_DEFAULTS | 926 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 924 #undef FLAG_MODE_META | 927 #undef FLAG_MODE_META |
| 925 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 928 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 926 | 929 |
| 927 #undef COMMA | 930 #undef COMMA |
| OLD | NEW |