| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 "print one detailed trace line in name=value format " | 363 "print one detailed trace line in name=value format " |
| 364 "after each garbage collection") | 364 "after each garbage collection") |
| 365 DEFINE_bool(trace_gc_ignore_scavenger, false, | 365 DEFINE_bool(trace_gc_ignore_scavenger, false, |
| 366 "do not print trace line after scavenger collection") | 366 "do not print trace line after scavenger collection") |
| 367 DEFINE_bool(print_cumulative_gc_stat, false, | 367 DEFINE_bool(print_cumulative_gc_stat, false, |
| 368 "print cumulative GC statistics in name=value format on exit") | 368 "print cumulative GC statistics in name=value format on exit") |
| 369 DEFINE_bool(trace_gc_verbose, false, | 369 DEFINE_bool(trace_gc_verbose, false, |
| 370 "print more details following each garbage collection") | 370 "print more details following each garbage collection") |
| 371 DEFINE_bool(trace_fragmentation, false, | 371 DEFINE_bool(trace_fragmentation, false, |
| 372 "report fragmentation for old pointer and data pages") | 372 "report fragmentation for old pointer and data pages") |
| 373 DEFINE_bool(trace_external_memory, false, |
| 374 "print amount of external allocated memory after each time " |
| 375 "it is adjusted.") |
| 373 DEFINE_bool(collect_maps, true, | 376 DEFINE_bool(collect_maps, true, |
| 374 "garbage collect maps from which no objects can be reached") | 377 "garbage collect maps from which no objects can be reached") |
| 375 DEFINE_bool(flush_code, true, | 378 DEFINE_bool(flush_code, true, |
| 376 "flush code that we expect not to use again before full gc") | 379 "flush code that we expect not to use again before full gc") |
| 377 DEFINE_bool(incremental_marking, true, "use incremental marking") | 380 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 378 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 381 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| 379 DEFINE_bool(trace_incremental_marking, false, | 382 DEFINE_bool(trace_incremental_marking, false, |
| 380 "trace progress of the incremental marking") | 383 "trace progress of the incremental marking") |
| 381 DEFINE_bool(track_gc_object_stats, false, | 384 DEFINE_bool(track_gc_object_stats, false, |
| 382 "track object counts and memory usage") | 385 "track object counts and memory usage") |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 #undef DEFINE_bool | 687 #undef DEFINE_bool |
| 685 #undef DEFINE_int | 688 #undef DEFINE_int |
| 686 #undef DEFINE_string | 689 #undef DEFINE_string |
| 687 #undef DEFINE_implication | 690 #undef DEFINE_implication |
| 688 | 691 |
| 689 #undef FLAG_MODE_DECLARE | 692 #undef FLAG_MODE_DECLARE |
| 690 #undef FLAG_MODE_DEFINE | 693 #undef FLAG_MODE_DEFINE |
| 691 #undef FLAG_MODE_DEFINE_DEFAULTS | 694 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 692 #undef FLAG_MODE_META | 695 #undef FLAG_MODE_META |
| 693 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 696 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |