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