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