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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 "in name=value format on exit") | 508 "in name=value format on exit") |
509 DEFINE_bool(trace_gc_verbose, false, | 509 DEFINE_bool(trace_gc_verbose, false, |
510 "print more details following each garbage collection") | 510 "print more details following each garbage collection") |
511 DEFINE_bool(trace_fragmentation, false, | 511 DEFINE_bool(trace_fragmentation, false, |
512 "report fragmentation for old pointer and data pages") | 512 "report fragmentation for old pointer and data pages") |
513 DEFINE_bool(trace_external_memory, false, | 513 DEFINE_bool(trace_external_memory, false, |
514 "print amount of external allocated memory after each time " | 514 "print amount of external allocated memory after each time " |
515 "it is adjusted.") | 515 "it is adjusted.") |
516 DEFINE_bool(collect_maps, true, | 516 DEFINE_bool(collect_maps, true, |
517 "garbage collect maps from which no objects can be reached") | 517 "garbage collect maps from which no objects can be reached") |
| 518 DEFINE_bool(weak_embedded_maps_in_ic, true, |
| 519 "make maps embedded in inline cache stubs") |
518 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, | 520 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, |
519 "make maps embedded in optimized code weak") | 521 "make maps embedded in optimized code weak") |
520 DEFINE_bool(weak_embedded_objects_in_optimized_code, true, | 522 DEFINE_bool(weak_embedded_objects_in_optimized_code, true, |
521 "make objects embedded in optimized code weak") | 523 "make objects embedded in optimized code weak") |
522 DEFINE_bool(flush_code, true, | 524 DEFINE_bool(flush_code, true, |
523 "flush code that we expect not to use again (during full gc)") | 525 "flush code that we expect not to use again (during full gc)") |
524 DEFINE_bool(flush_code_incrementally, true, | 526 DEFINE_bool(flush_code_incrementally, true, |
525 "flush code that we expect not to use again (incrementally)") | 527 "flush code that we expect not to use again (incrementally)") |
526 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") | 528 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") |
527 DEFINE_bool(age_code, true, | 529 DEFINE_bool(age_code, true, |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
921 #undef DEFINE_ALIAS_float | 923 #undef DEFINE_ALIAS_float |
922 #undef DEFINE_ALIAS_args | 924 #undef DEFINE_ALIAS_args |
923 | 925 |
924 #undef FLAG_MODE_DECLARE | 926 #undef FLAG_MODE_DECLARE |
925 #undef FLAG_MODE_DEFINE | 927 #undef FLAG_MODE_DEFINE |
926 #undef FLAG_MODE_DEFINE_DEFAULTS | 928 #undef FLAG_MODE_DEFINE_DEFAULTS |
927 #undef FLAG_MODE_META | 929 #undef FLAG_MODE_META |
928 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 930 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
929 | 931 |
930 #undef COMMA | 932 #undef COMMA |
OLD | NEW |