| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 #endif | 280 #endif |
| 281 | 281 |
| 282 // macro-assembler-ia32.cc | 282 // macro-assembler-ia32.cc |
| 283 DEFINE_bool(native_code_counters, false, | 283 DEFINE_bool(native_code_counters, false, |
| 284 "generate extra code for manipulating stats counters") | 284 "generate extra code for manipulating stats counters") |
| 285 | 285 |
| 286 // mark-compact.cc | 286 // mark-compact.cc |
| 287 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") | 287 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") |
| 288 DEFINE_bool(never_compact, false, | 288 DEFINE_bool(never_compact, false, |
| 289 "Never perform compaction on full GC - testing only") | 289 "Never perform compaction on full GC - testing only") |
| 290 DEFINE_bool(cleanup_ics_at_gc, true, | 290 DEFINE_bool(cleanup_code_caches_at_gc, true, |
| 291 "Flush inline caches prior to mark compact collection.") | 291 "Flush inline caches prior to mark compact collection and " |
| 292 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, | 292 "flush code caches in maps during mark compact cycle.") |
| 293 "Flush code caches in maps during mark compact cycle.") | |
| 294 DEFINE_int(random_seed, 0, | 293 DEFINE_int(random_seed, 0, |
| 295 "Default seed for initializing random generator " | 294 "Default seed for initializing random generator " |
| 296 "(0, the default, means to use system random).") | 295 "(0, the default, means to use system random).") |
| 297 | 296 |
| 298 DEFINE_bool(canonicalize_object_literal_maps, true, | 297 DEFINE_bool(canonicalize_object_literal_maps, true, |
| 299 "Canonicalize maps for object literals.") | 298 "Canonicalize maps for object literals.") |
| 300 | 299 |
| 301 DEFINE_bool(use_big_map_space, true, | 300 DEFINE_bool(use_big_map_space, true, |
| 302 "Use big map space, but don't compact if it grew too big.") | 301 "Use big map space, but don't compact if it grew too big.") |
| 303 | 302 |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 #undef FLAG | 551 #undef FLAG |
| 553 | 552 |
| 554 #undef DEFINE_bool | 553 #undef DEFINE_bool |
| 555 #undef DEFINE_int | 554 #undef DEFINE_int |
| 556 #undef DEFINE_string | 555 #undef DEFINE_string |
| 557 | 556 |
| 558 #undef FLAG_MODE_DECLARE | 557 #undef FLAG_MODE_DECLARE |
| 559 #undef FLAG_MODE_DEFINE | 558 #undef FLAG_MODE_DEFINE |
| 560 #undef FLAG_MODE_DEFINE_DEFAULTS | 559 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 561 #undef FLAG_MODE_META | 560 #undef FLAG_MODE_META |
| OLD | NEW |