| 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 "Use lazy sweeping for old pointer and data spaces") | 431 "Use lazy sweeping for old pointer and data spaces") |
| 432 DEFINE_bool(never_compact, false, | 432 DEFINE_bool(never_compact, false, |
| 433 "Never perform compaction on full GC - testing only") | 433 "Never perform compaction on full GC - testing only") |
| 434 DEFINE_bool(compact_code_space, true, | 434 DEFINE_bool(compact_code_space, true, |
| 435 "Compact code space on full non-incremental collections") | 435 "Compact code space on full non-incremental collections") |
| 436 DEFINE_bool(incremental_code_compaction, true, | 436 DEFINE_bool(incremental_code_compaction, true, |
| 437 "Compact code space on full incremental collections") | 437 "Compact code space on full incremental collections") |
| 438 DEFINE_bool(cleanup_code_caches_at_gc, true, | 438 DEFINE_bool(cleanup_code_caches_at_gc, true, |
| 439 "Flush inline caches prior to mark compact collection and " | 439 "Flush inline caches prior to mark compact collection and " |
| 440 "flush code caches in maps during mark compact cycle.") | 440 "flush code caches in maps during mark compact cycle.") |
| 441 DEFINE_bool(use_marking_progress_bar, false, |
| 442 "Use a progress bar to scan large objects in increments when " |
| 443 "incremental marking is active.") |
| 441 DEFINE_int(random_seed, 0, | 444 DEFINE_int(random_seed, 0, |
| 442 "Default seed for initializing random generator " | 445 "Default seed for initializing random generator " |
| 443 "(0, the default, means to use system random).") | 446 "(0, the default, means to use system random).") |
| 444 | 447 |
| 445 // objects.cc | 448 // objects.cc |
| 446 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") | 449 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
| 447 | 450 |
| 448 // parser.cc | 451 // parser.cc |
| 449 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 452 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 450 DEFINE_bool(trace_parse, false, "trace parsing and preparsing") | 453 DEFINE_bool(trace_parse, false, "trace parsing and preparsing") |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 #undef DEFINE_bool | 714 #undef DEFINE_bool |
| 712 #undef DEFINE_int | 715 #undef DEFINE_int |
| 713 #undef DEFINE_string | 716 #undef DEFINE_string |
| 714 #undef DEFINE_implication | 717 #undef DEFINE_implication |
| 715 | 718 |
| 716 #undef FLAG_MODE_DECLARE | 719 #undef FLAG_MODE_DECLARE |
| 717 #undef FLAG_MODE_DEFINE | 720 #undef FLAG_MODE_DEFINE |
| 718 #undef FLAG_MODE_DEFINE_DEFAULTS | 721 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 719 #undef FLAG_MODE_META | 722 #undef FLAG_MODE_META |
| 720 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 723 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |