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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 "print more details following each garbage collection") | 505 "print more details following each garbage collection") |
506 DEFINE_bool(trace_fragmentation, false, | 506 DEFINE_bool(trace_fragmentation, false, |
507 "report fragmentation for old pointer and data pages") | 507 "report fragmentation for old pointer and data pages") |
508 DEFINE_bool(trace_external_memory, false, | 508 DEFINE_bool(trace_external_memory, false, |
509 "print amount of external allocated memory after each time " | 509 "print amount of external allocated memory after each time " |
510 "it is adjusted.") | 510 "it is adjusted.") |
511 DEFINE_bool(collect_maps, true, | 511 DEFINE_bool(collect_maps, true, |
512 "garbage collect maps from which no objects can be reached") | 512 "garbage collect maps from which no objects can be reached") |
513 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, | 513 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, |
514 "make maps embedded in optimized code weak") | 514 "make maps embedded in optimized code weak") |
| 515 DEFINE_bool(weak_embedded_objects_in_optimized_code, true, |
| 516 "make objects embedded in optimized code weak") |
515 DEFINE_bool(flush_code, true, | 517 DEFINE_bool(flush_code, true, |
516 "flush code that we expect not to use again (during full gc)") | 518 "flush code that we expect not to use again (during full gc)") |
517 DEFINE_bool(flush_code_incrementally, true, | 519 DEFINE_bool(flush_code_incrementally, true, |
518 "flush code that we expect not to use again (incrementally)") | 520 "flush code that we expect not to use again (incrementally)") |
519 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") | 521 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") |
520 DEFINE_bool(age_code, true, | 522 DEFINE_bool(age_code, true, |
521 "track un-executed functions to age code and flush only " | 523 "track un-executed functions to age code and flush only " |
522 "old code (required for code flushing)") | 524 "old code (required for code flushing)") |
523 DEFINE_bool(incremental_marking, true, "use incremental marking") | 525 DEFINE_bool(incremental_marking, true, "use incremental marking") |
524 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 526 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 #undef DEFINE_ALIAS_float | 854 #undef DEFINE_ALIAS_float |
853 #undef DEFINE_ALIAS_args | 855 #undef DEFINE_ALIAS_args |
854 | 856 |
855 #undef FLAG_MODE_DECLARE | 857 #undef FLAG_MODE_DECLARE |
856 #undef FLAG_MODE_DEFINE | 858 #undef FLAG_MODE_DEFINE |
857 #undef FLAG_MODE_DEFINE_DEFAULTS | 859 #undef FLAG_MODE_DEFINE_DEFAULTS |
858 #undef FLAG_MODE_META | 860 #undef FLAG_MODE_META |
859 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 861 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
860 | 862 |
861 #undef COMMA | 863 #undef COMMA |
OLD | NEW |