| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 DEFINE_bool(compact_code_space, true, | 565 DEFINE_bool(compact_code_space, true, |
| 566 "Compact code space on full non-incremental collections") | 566 "Compact code space on full non-incremental collections") |
| 567 DEFINE_bool(incremental_code_compaction, true, | 567 DEFINE_bool(incremental_code_compaction, true, |
| 568 "Compact code space on full incremental collections") | 568 "Compact code space on full incremental collections") |
| 569 DEFINE_bool(cleanup_code_caches_at_gc, true, | 569 DEFINE_bool(cleanup_code_caches_at_gc, true, |
| 570 "Flush inline caches prior to mark compact collection and " | 570 "Flush inline caches prior to mark compact collection and " |
| 571 "flush code caches in maps during mark compact cycle.") | 571 "flush code caches in maps during mark compact cycle.") |
| 572 DEFINE_bool(use_marking_progress_bar, true, | 572 DEFINE_bool(use_marking_progress_bar, true, |
| 573 "Use a progress bar to scan large objects in increments when " | 573 "Use a progress bar to scan large objects in increments when " |
| 574 "incremental marking is active.") | 574 "incremental marking is active.") |
| 575 DEFINE_bool(zap_code_space, true, |
| 576 "Zap free memory in code space with 0xCC while sweeping.") |
| 575 DEFINE_int(random_seed, 0, | 577 DEFINE_int(random_seed, 0, |
| 576 "Default seed for initializing random generator " | 578 "Default seed for initializing random generator " |
| 577 "(0, the default, means to use system random).") | 579 "(0, the default, means to use system random).") |
| 578 | 580 |
| 579 // objects.cc | 581 // objects.cc |
| 580 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") | 582 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
| 581 | 583 |
| 582 // parser.cc | 584 // parser.cc |
| 583 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 585 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 584 DEFINE_bool(trace_parse, false, "trace parsing and preparsing") | 586 DEFINE_bool(trace_parse, false, "trace parsing and preparsing") |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 #undef DEFINE_ALIAS_float | 919 #undef DEFINE_ALIAS_float |
| 918 #undef DEFINE_ALIAS_args | 920 #undef DEFINE_ALIAS_args |
| 919 | 921 |
| 920 #undef FLAG_MODE_DECLARE | 922 #undef FLAG_MODE_DECLARE |
| 921 #undef FLAG_MODE_DEFINE | 923 #undef FLAG_MODE_DEFINE |
| 922 #undef FLAG_MODE_DEFINE_DEFAULTS | 924 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 923 #undef FLAG_MODE_META | 925 #undef FLAG_MODE_META |
| 924 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 926 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 925 | 927 |
| 926 #undef COMMA | 928 #undef COMMA |
| OLD | NEW |