| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 "generate extra code for manipulating stats counters") | 303 "generate extra code for manipulating stats counters") |
| 304 | 304 |
| 305 // mark-compact.cc | 305 // mark-compact.cc |
| 306 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") | 306 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") |
| 307 DEFINE_bool(lazy_sweeping, true, | 307 DEFINE_bool(lazy_sweeping, true, |
| 308 "Use lazy sweeping for old pointer and data spaces") | 308 "Use lazy sweeping for old pointer and data spaces") |
| 309 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, | 309 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, |
| 310 "Flush code caches in maps during mark compact cycle.") | 310 "Flush code caches in maps during mark compact cycle.") |
| 311 DEFINE_bool(never_compact, false, | 311 DEFINE_bool(never_compact, false, |
| 312 "Never perform compaction on full GC - testing only") | 312 "Never perform compaction on full GC - testing only") |
| 313 DEFINE_bool(compact_code_space, false, "Compact code space") | 313 DEFINE_bool(compact_code_space, true, |
| 314 "Compact code space on full non-incremental collections") |
| 314 DEFINE_bool(cleanup_code_caches_at_gc, true, | 315 DEFINE_bool(cleanup_code_caches_at_gc, true, |
| 315 "Flush inline caches prior to mark compact collection and " | 316 "Flush inline caches prior to mark compact collection and " |
| 316 "flush code caches in maps during mark compact cycle.") | 317 "flush code caches in maps during mark compact cycle.") |
| 317 DEFINE_int(random_seed, 0, | 318 DEFINE_int(random_seed, 0, |
| 318 "Default seed for initializing random generator " | 319 "Default seed for initializing random generator " |
| 319 "(0, the default, means to use system random).") | 320 "(0, the default, means to use system random).") |
| 320 | 321 |
| 321 DEFINE_bool(canonicalize_object_literal_maps, true, | 322 DEFINE_bool(canonicalize_object_literal_maps, true, |
| 322 "Canonicalize maps for object literals.") | 323 "Canonicalize maps for object literals.") |
| 323 | 324 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 #undef DEFINE_bool | 587 #undef DEFINE_bool |
| 587 #undef DEFINE_int | 588 #undef DEFINE_int |
| 588 #undef DEFINE_string | 589 #undef DEFINE_string |
| 589 #undef DEFINE_implication | 590 #undef DEFINE_implication |
| 590 | 591 |
| 591 #undef FLAG_MODE_DECLARE | 592 #undef FLAG_MODE_DECLARE |
| 592 #undef FLAG_MODE_DEFINE | 593 #undef FLAG_MODE_DEFINE |
| 593 #undef FLAG_MODE_DEFINE_DEFAULTS | 594 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 594 #undef FLAG_MODE_META | 595 #undef FLAG_MODE_META |
| 595 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 596 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |