| 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 "print cumulative GC statistics in name=value format on exit") | 408 "print cumulative GC statistics in name=value format on exit") |
| 409 DEFINE_bool(trace_gc_verbose, false, | 409 DEFINE_bool(trace_gc_verbose, false, |
| 410 "print more details following each garbage collection") | 410 "print more details following each garbage collection") |
| 411 DEFINE_bool(trace_fragmentation, false, | 411 DEFINE_bool(trace_fragmentation, false, |
| 412 "report fragmentation for old pointer and data pages") | 412 "report fragmentation for old pointer and data pages") |
| 413 DEFINE_bool(trace_external_memory, false, | 413 DEFINE_bool(trace_external_memory, false, |
| 414 "print amount of external allocated memory after each time " | 414 "print amount of external allocated memory after each time " |
| 415 "it is adjusted.") | 415 "it is adjusted.") |
| 416 DEFINE_bool(collect_maps, true, | 416 DEFINE_bool(collect_maps, true, |
| 417 "garbage collect maps from which no objects can be reached") | 417 "garbage collect maps from which no objects can be reached") |
| 418 DEFINE_bool(weak_embedded_maps_in_optimized_code, false, | 418 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, |
| 419 "make maps embedded in optimized code weak") | 419 "make maps embedded in optimized code weak") |
| 420 DEFINE_bool(flush_code, true, | 420 DEFINE_bool(flush_code, true, |
| 421 "flush code that we expect not to use again (during full gc)") | 421 "flush code that we expect not to use again (during full gc)") |
| 422 DEFINE_bool(flush_code_incrementally, true, | 422 DEFINE_bool(flush_code_incrementally, true, |
| 423 "flush code that we expect not to use again (incrementally)") | 423 "flush code that we expect not to use again (incrementally)") |
| 424 DEFINE_bool(age_code, true, | 424 DEFINE_bool(age_code, true, |
| 425 "track un-executed functions to age code and flush only " | 425 "track un-executed functions to age code and flush only " |
| 426 "old code") | 426 "old code") |
| 427 DEFINE_bool(incremental_marking, true, "use incremental marking") | 427 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 428 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 428 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 #undef DEFINE_bool | 741 #undef DEFINE_bool |
| 742 #undef DEFINE_int | 742 #undef DEFINE_int |
| 743 #undef DEFINE_string | 743 #undef DEFINE_string |
| 744 #undef DEFINE_implication | 744 #undef DEFINE_implication |
| 745 | 745 |
| 746 #undef FLAG_MODE_DECLARE | 746 #undef FLAG_MODE_DECLARE |
| 747 #undef FLAG_MODE_DEFINE | 747 #undef FLAG_MODE_DEFINE |
| 748 #undef FLAG_MODE_DEFINE_DEFAULTS | 748 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 749 #undef FLAG_MODE_META | 749 #undef FLAG_MODE_META |
| 750 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 750 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |