| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 300             "generate extra code for manipulating stats counters") | 300             "generate extra code for manipulating stats counters") | 
| 301 | 301 | 
| 302 // mark-compact.cc | 302 // mark-compact.cc | 
| 303 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") | 303 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") | 
| 304 DEFINE_bool(lazy_sweeping, true, | 304 DEFINE_bool(lazy_sweeping, true, | 
| 305             "Use lazy sweeping for old pointer and data spaces") | 305             "Use lazy sweeping for old pointer and data spaces") | 
| 306 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, | 306 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, | 
| 307             "Flush code caches in maps during mark compact cycle.") | 307             "Flush code caches in maps during mark compact cycle.") | 
| 308 DEFINE_bool(never_compact, false, | 308 DEFINE_bool(never_compact, false, | 
| 309             "Never perform compaction on full GC - testing only") | 309             "Never perform compaction on full GC - testing only") | 
| 310 DEFINE_bool(compact_code_space, false, | 310 DEFINE_bool(compact_code_space, true, | 
| 311             "Compact code space on full non-incremental collections") | 311             "Compact code space on full non-incremental collections") | 
| 312 DEFINE_bool(cleanup_code_caches_at_gc, true, | 312 DEFINE_bool(cleanup_code_caches_at_gc, true, | 
| 313             "Flush inline caches prior to mark compact collection and " | 313             "Flush inline caches prior to mark compact collection and " | 
| 314             "flush code caches in maps during mark compact cycle.") | 314             "flush code caches in maps during mark compact cycle.") | 
| 315 DEFINE_int(random_seed, 0, | 315 DEFINE_int(random_seed, 0, | 
| 316            "Default seed for initializing random generator " | 316            "Default seed for initializing random generator " | 
| 317            "(0, the default, means to use system random).") | 317            "(0, the default, means to use system random).") | 
| 318 | 318 | 
| 319 DEFINE_bool(canonicalize_object_literal_maps, true, | 319 DEFINE_bool(canonicalize_object_literal_maps, true, | 
| 320             "Canonicalize maps for object literals.") | 320             "Canonicalize maps for object literals.") | 
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 580 #undef DEFINE_bool | 580 #undef DEFINE_bool | 
| 581 #undef DEFINE_int | 581 #undef DEFINE_int | 
| 582 #undef DEFINE_string | 582 #undef DEFINE_string | 
| 583 #undef DEFINE_implication | 583 #undef DEFINE_implication | 
| 584 | 584 | 
| 585 #undef FLAG_MODE_DECLARE | 585 #undef FLAG_MODE_DECLARE | 
| 586 #undef FLAG_MODE_DEFINE | 586 #undef FLAG_MODE_DEFINE | 
| 587 #undef FLAG_MODE_DEFINE_DEFAULTS | 587 #undef FLAG_MODE_DEFINE_DEFAULTS | 
| 588 #undef FLAG_MODE_META | 588 #undef FLAG_MODE_META | 
| 589 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 589 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 
| OLD | NEW | 
|---|