OLD | NEW |
1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 "generate extra code for manipulating stats counters") | 198 "generate extra code for manipulating stats counters") |
199 | 199 |
200 // mark-compact.cc | 200 // mark-compact.cc |
201 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") | 201 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") |
202 DEFINE_bool(never_compact, false, | 202 DEFINE_bool(never_compact, false, |
203 "Never perform compaction on full GC - testing only") | 203 "Never perform compaction on full GC - testing only") |
204 DEFINE_bool(cleanup_ics_at_gc, true, | 204 DEFINE_bool(cleanup_ics_at_gc, true, |
205 "Flush inline caches prior to mark compact collection.") | 205 "Flush inline caches prior to mark compact collection.") |
206 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, | 206 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, |
207 "Flush code caches in maps during mark compact cycle.") | 207 "Flush code caches in maps during mark compact cycle.") |
| 208 DEFINE_int(random_seed, 0, |
| 209 "Default seed for initializing random generator " |
| 210 "(0, the default, means to use system random).") |
208 | 211 |
209 DEFINE_bool(canonicalize_object_literal_maps, true, | 212 DEFINE_bool(canonicalize_object_literal_maps, true, |
210 "Canonicalize maps for object literals.") | 213 "Canonicalize maps for object literals.") |
211 | 214 |
212 DEFINE_bool(use_big_map_space, true, | 215 DEFINE_bool(use_big_map_space, true, |
213 "Use big map space, but don't compact if it grew too big.") | 216 "Use big map space, but don't compact if it grew too big.") |
214 | 217 |
215 DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1, | 218 DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1, |
216 "Maximum number of pages in map space which still allows to encode " | 219 "Maximum number of pages in map space which still allows to encode " |
217 "forwarding pointers. That's actually a constant, but it's useful " | 220 "forwarding pointers. That's actually a constant, but it's useful " |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 #undef FLAG | 433 #undef FLAG |
431 | 434 |
432 #undef DEFINE_bool | 435 #undef DEFINE_bool |
433 #undef DEFINE_int | 436 #undef DEFINE_int |
434 #undef DEFINE_string | 437 #undef DEFINE_string |
435 | 438 |
436 #undef FLAG_MODE_DECLARE | 439 #undef FLAG_MODE_DECLARE |
437 #undef FLAG_MODE_DEFINE | 440 #undef FLAG_MODE_DEFINE |
438 #undef FLAG_MODE_DEFINE_DEFAULTS | 441 #undef FLAG_MODE_DEFINE_DEFAULTS |
439 #undef FLAG_MODE_META | 442 #undef FLAG_MODE_META |
OLD | NEW |