| 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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 "Use lazy sweeping for old pointer and data spaces") | 438 "Use lazy sweeping for old pointer and data spaces") |
| 439 DEFINE_bool(never_compact, false, | 439 DEFINE_bool(never_compact, false, |
| 440 "Never perform compaction on full GC - testing only") | 440 "Never perform compaction on full GC - testing only") |
| 441 DEFINE_bool(compact_code_space, true, | 441 DEFINE_bool(compact_code_space, true, |
| 442 "Compact code space on full non-incremental collections") | 442 "Compact code space on full non-incremental collections") |
| 443 DEFINE_bool(incremental_code_compaction, true, | 443 DEFINE_bool(incremental_code_compaction, true, |
| 444 "Compact code space on full incremental collections") | 444 "Compact code space on full incremental collections") |
| 445 DEFINE_bool(cleanup_code_caches_at_gc, true, | 445 DEFINE_bool(cleanup_code_caches_at_gc, true, |
| 446 "Flush inline caches prior to mark compact collection and " | 446 "Flush inline caches prior to mark compact collection and " |
| 447 "flush code caches in maps during mark compact cycle.") | 447 "flush code caches in maps during mark compact cycle.") |
| 448 DEFINE_bool(use_marking_progress_bar, false, | 448 DEFINE_bool(use_marking_progress_bar, true, |
| 449 "Use a progress bar to scan large objects in increments when " | 449 "Use a progress bar to scan large objects in increments when " |
| 450 "incremental marking is active.") | 450 "incremental marking is active.") |
| 451 DEFINE_int(random_seed, 0, | 451 DEFINE_int(random_seed, 0, |
| 452 "Default seed for initializing random generator " | 452 "Default seed for initializing random generator " |
| 453 "(0, the default, means to use system random).") | 453 "(0, the default, means to use system random).") |
| 454 | 454 |
| 455 // objects.cc | 455 // objects.cc |
| 456 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") | 456 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
| 457 | 457 |
| 458 // parser.cc | 458 // parser.cc |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 #undef DEFINE_bool | 721 #undef DEFINE_bool |
| 722 #undef DEFINE_int | 722 #undef DEFINE_int |
| 723 #undef DEFINE_string | 723 #undef DEFINE_string |
| 724 #undef DEFINE_implication | 724 #undef DEFINE_implication |
| 725 | 725 |
| 726 #undef FLAG_MODE_DECLARE | 726 #undef FLAG_MODE_DECLARE |
| 727 #undef FLAG_MODE_DEFINE | 727 #undef FLAG_MODE_DEFINE |
| 728 #undef FLAG_MODE_DEFINE_DEFAULTS | 728 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 729 #undef FLAG_MODE_META | 729 #undef FLAG_MODE_META |
| 730 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 730 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |