| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 "report fragmentation for old pointer and data pages") | 389 "report fragmentation for old pointer and data pages") |
| 390 DEFINE_bool(trace_external_memory, false, | 390 DEFINE_bool(trace_external_memory, false, |
| 391 "print amount of external allocated memory after each time " | 391 "print amount of external allocated memory after each time " |
| 392 "it is adjusted.") | 392 "it is adjusted.") |
| 393 DEFINE_bool(collect_maps, true, | 393 DEFINE_bool(collect_maps, true, |
| 394 "garbage collect maps from which no objects can be reached") | 394 "garbage collect maps from which no objects can be reached") |
| 395 DEFINE_bool(flush_code, true, | 395 DEFINE_bool(flush_code, true, |
| 396 "flush code that we expect not to use again (during full gc)") | 396 "flush code that we expect not to use again (during full gc)") |
| 397 DEFINE_bool(flush_code_incrementally, false, | 397 DEFINE_bool(flush_code_incrementally, false, |
| 398 "flush code that we expect not to use again (incrementally)") | 398 "flush code that we expect not to use again (incrementally)") |
| 399 DEFINE_bool(age_code, true, | 399 DEFINE_bool(age_code, false, |
| 400 "track un-executed functions to age code and flush only " | 400 "track un-executed functions to age code and flush only " |
| 401 "old code") | 401 "old code") |
| 402 DEFINE_bool(incremental_marking, true, "use incremental marking") | 402 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 403 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 403 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| 404 DEFINE_bool(trace_incremental_marking, false, | 404 DEFINE_bool(trace_incremental_marking, false, |
| 405 "trace progress of the incremental marking") | 405 "trace progress of the incremental marking") |
| 406 DEFINE_bool(track_gc_object_stats, false, | 406 DEFINE_bool(track_gc_object_stats, false, |
| 407 "track object counts and memory usage") | 407 "track object counts and memory usage") |
| 408 #ifdef VERIFY_HEAP | 408 #ifdef VERIFY_HEAP |
| 409 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 409 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 #undef DEFINE_bool | 711 #undef DEFINE_bool |
| 712 #undef DEFINE_int | 712 #undef DEFINE_int |
| 713 #undef DEFINE_string | 713 #undef DEFINE_string |
| 714 #undef DEFINE_implication | 714 #undef DEFINE_implication |
| 715 | 715 |
| 716 #undef FLAG_MODE_DECLARE | 716 #undef FLAG_MODE_DECLARE |
| 717 #undef FLAG_MODE_DEFINE | 717 #undef FLAG_MODE_DEFINE |
| 718 #undef FLAG_MODE_DEFINE_DEFAULTS | 718 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 719 #undef FLAG_MODE_META | 719 #undef FLAG_MODE_META |
| 720 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 720 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |