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 447 matching lines...) Loading... |
458 "print amount of external allocated memory after each time " | 458 "print amount of external allocated memory after each time " |
459 "it is adjusted.") | 459 "it is adjusted.") |
460 DEFINE_bool(collect_maps, true, | 460 DEFINE_bool(collect_maps, true, |
461 "garbage collect maps from which no objects can be reached") | 461 "garbage collect maps from which no objects can be reached") |
462 DEFINE_bool(weak_embedded_maps_in_optimized_code, false, | 462 DEFINE_bool(weak_embedded_maps_in_optimized_code, false, |
463 "make maps embedded in optimized code weak") | 463 "make maps embedded in optimized code weak") |
464 DEFINE_bool(flush_code, true, | 464 DEFINE_bool(flush_code, true, |
465 "flush code that we expect not to use again (during full gc)") | 465 "flush code that we expect not to use again (during full gc)") |
466 DEFINE_bool(flush_code_incrementally, true, | 466 DEFINE_bool(flush_code_incrementally, true, |
467 "flush code that we expect not to use again (incrementally)") | 467 "flush code that we expect not to use again (incrementally)") |
| 468 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") |
468 DEFINE_bool(age_code, true, | 469 DEFINE_bool(age_code, true, |
469 "track un-executed functions to age code and flush only " | 470 "track un-executed functions to age code and flush only " |
470 "old code") | 471 "old code") |
471 DEFINE_bool(incremental_marking, true, "use incremental marking") | 472 DEFINE_bool(incremental_marking, true, "use incremental marking") |
472 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 473 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
473 DEFINE_bool(trace_incremental_marking, false, | 474 DEFINE_bool(trace_incremental_marking, false, |
474 "trace progress of the incremental marking") | 475 "trace progress of the incremental marking") |
475 DEFINE_bool(track_gc_object_stats, false, | 476 DEFINE_bool(track_gc_object_stats, false, |
476 "track object counts and memory usage") | 477 "track object counts and memory usage") |
477 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") | 478 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") |
(...skipping 307 matching lines...) Loading... |
785 #undef DEFINE_bool | 786 #undef DEFINE_bool |
786 #undef DEFINE_int | 787 #undef DEFINE_int |
787 #undef DEFINE_string | 788 #undef DEFINE_string |
788 #undef DEFINE_implication | 789 #undef DEFINE_implication |
789 | 790 |
790 #undef FLAG_MODE_DECLARE | 791 #undef FLAG_MODE_DECLARE |
791 #undef FLAG_MODE_DEFINE | 792 #undef FLAG_MODE_DEFINE |
792 #undef FLAG_MODE_DEFINE_DEFAULTS | 793 #undef FLAG_MODE_DEFINE_DEFAULTS |
793 #undef FLAG_MODE_META | 794 #undef FLAG_MODE_META |
794 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 795 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |