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 493 matching lines...) Loading... |
504 "print more details following each garbage collection") | 504 "print more details following each garbage collection") |
505 DEFINE_bool(trace_fragmentation, false, | 505 DEFINE_bool(trace_fragmentation, false, |
506 "report fragmentation for old pointer and data pages") | 506 "report fragmentation for old pointer and data pages") |
507 DEFINE_bool(trace_external_memory, false, | 507 DEFINE_bool(trace_external_memory, false, |
508 "print amount of external allocated memory after each time " | 508 "print amount of external allocated memory after each time " |
509 "it is adjusted.") | 509 "it is adjusted.") |
510 DEFINE_bool(collect_maps, true, | 510 DEFINE_bool(collect_maps, true, |
511 "garbage collect maps from which no objects can be reached") | 511 "garbage collect maps from which no objects can be reached") |
512 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, | 512 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, |
513 "make maps embedded in optimized code weak") | 513 "make maps embedded in optimized code weak") |
514 DEFINE_bool(weak_embedded_objects_in_optimized_code, false, | 514 DEFINE_bool(weak_embedded_objects_in_optimized_code, true, |
515 "make objects embedded in optimized code weak") | 515 "make objects embedded in optimized code weak") |
516 DEFINE_bool(flush_code, true, | 516 DEFINE_bool(flush_code, true, |
517 "flush code that we expect not to use again (during full gc)") | 517 "flush code that we expect not to use again (during full gc)") |
518 DEFINE_bool(flush_code_incrementally, true, | 518 DEFINE_bool(flush_code_incrementally, true, |
519 "flush code that we expect not to use again (incrementally)") | 519 "flush code that we expect not to use again (incrementally)") |
520 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") | 520 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") |
521 DEFINE_bool(age_code, true, | 521 DEFINE_bool(age_code, true, |
522 "track un-executed functions to age code and flush only " | 522 "track un-executed functions to age code and flush only " |
523 "old code (required for code flushing)") | 523 "old code (required for code flushing)") |
524 DEFINE_bool(incremental_marking, true, "use incremental marking") | 524 DEFINE_bool(incremental_marking, true, "use incremental marking") |
(...skipping 339 matching lines...) Loading... |
864 #undef DEFINE_ALIAS_float | 864 #undef DEFINE_ALIAS_float |
865 #undef DEFINE_ALIAS_args | 865 #undef DEFINE_ALIAS_args |
866 | 866 |
867 #undef FLAG_MODE_DECLARE | 867 #undef FLAG_MODE_DECLARE |
868 #undef FLAG_MODE_DEFINE | 868 #undef FLAG_MODE_DEFINE |
869 #undef FLAG_MODE_DEFINE_DEFAULTS | 869 #undef FLAG_MODE_DEFINE_DEFAULTS |
870 #undef FLAG_MODE_META | 870 #undef FLAG_MODE_META |
871 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 871 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
872 | 872 |
873 #undef COMMA | 873 #undef COMMA |
OLD | NEW |