| 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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 "garbage collect maps from which no objects can be reached") | 473 "garbage collect maps from which no objects can be reached") |
| 474 DEFINE_bool(weak_embedded_maps_in_optimized_code, false, | 474 DEFINE_bool(weak_embedded_maps_in_optimized_code, false, |
| 475 "make maps embedded in optimized code weak") | 475 "make maps embedded in optimized code weak") |
| 476 DEFINE_bool(flush_code, true, | 476 DEFINE_bool(flush_code, true, |
| 477 "flush code that we expect not to use again (during full gc)") | 477 "flush code that we expect not to use again (during full gc)") |
| 478 DEFINE_bool(flush_code_incrementally, true, | 478 DEFINE_bool(flush_code_incrementally, true, |
| 479 "flush code that we expect not to use again (incrementally)") | 479 "flush code that we expect not to use again (incrementally)") |
| 480 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") | 480 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") |
| 481 DEFINE_bool(age_code, true, | 481 DEFINE_bool(age_code, true, |
| 482 "track un-executed functions to age code and flush only " | 482 "track un-executed functions to age code and flush only " |
| 483 "old code") | 483 "old code (required for code flushing)") |
| 484 DEFINE_bool(incremental_marking, true, "use incremental marking") | 484 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 485 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 485 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| 486 DEFINE_bool(trace_incremental_marking, false, | 486 DEFINE_bool(trace_incremental_marking, false, |
| 487 "trace progress of the incremental marking") | 487 "trace progress of the incremental marking") |
| 488 DEFINE_bool(track_gc_object_stats, false, | 488 DEFINE_bool(track_gc_object_stats, false, |
| 489 "track object counts and memory usage") | 489 "track object counts and memory usage") |
| 490 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") | 490 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") |
| 491 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") | 491 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") |
| 492 DEFINE_int(sweeper_threads, 0, | 492 DEFINE_int(sweeper_threads, 0, |
| 493 "number of parallel and concurrent sweeping threads") | 493 "number of parallel and concurrent sweeping threads") |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 796 #undef DEFINE_bool | 796 #undef DEFINE_bool |
| 797 #undef DEFINE_int | 797 #undef DEFINE_int |
| 798 #undef DEFINE_string | 798 #undef DEFINE_string |
| 799 #undef DEFINE_implication | 799 #undef DEFINE_implication |
| 800 | 800 |
| 801 #undef FLAG_MODE_DECLARE | 801 #undef FLAG_MODE_DECLARE |
| 802 #undef FLAG_MODE_DEFINE | 802 #undef FLAG_MODE_DEFINE |
| 803 #undef FLAG_MODE_DEFINE_DEFAULTS | 803 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 804 #undef FLAG_MODE_META | 804 #undef FLAG_MODE_META |
| 805 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 805 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |