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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 "Flush inline caches prior to mark compact collection.") | 194 "Flush inline caches prior to mark compact collection.") |
195 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, | 195 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, |
196 "Flush code caches in maps during mark compact cycle.") | 196 "Flush code caches in maps during mark compact cycle.") |
197 | 197 |
198 DEFINE_bool(canonicalize_object_literal_maps, true, | 198 DEFINE_bool(canonicalize_object_literal_maps, true, |
199 "Canonicalize maps for object literals.") | 199 "Canonicalize maps for object literals.") |
200 | 200 |
201 DEFINE_bool(use_big_map_space, true, | 201 DEFINE_bool(use_big_map_space, true, |
202 "Use big map space, but don't compact if it grew too big.") | 202 "Use big map space, but don't compact if it grew too big.") |
203 | 203 |
| 204 DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1, |
| 205 "Maximum number of pages in map space which still allows to encode " |
| 206 "forwarding pointers. That's actually a constant, but it's useful " |
| 207 "to control it with a flag for better testing.") |
| 208 |
204 // mksnapshot.cc | 209 // mksnapshot.cc |
205 DEFINE_bool(h, false, "print this message") | 210 DEFINE_bool(h, false, "print this message") |
206 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") | 211 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") |
207 | 212 |
208 // parser.cc | 213 // parser.cc |
209 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 214 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
210 | 215 |
211 // rewriter.cc | 216 // rewriter.cc |
212 DEFINE_bool(optimize_ast, true, "optimize the ast") | 217 DEFINE_bool(optimize_ast, true, "optimize the ast") |
213 | 218 |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 #undef FLAG | 419 #undef FLAG |
415 | 420 |
416 #undef DEFINE_bool | 421 #undef DEFINE_bool |
417 #undef DEFINE_int | 422 #undef DEFINE_int |
418 #undef DEFINE_string | 423 #undef DEFINE_string |
419 | 424 |
420 #undef FLAG_MODE_DECLARE | 425 #undef FLAG_MODE_DECLARE |
421 #undef FLAG_MODE_DEFINE | 426 #undef FLAG_MODE_DEFINE |
422 #undef FLAG_MODE_DEFINE_DEFAULTS | 427 #undef FLAG_MODE_DEFINE_DEFAULTS |
423 #undef FLAG_MODE_META | 428 #undef FLAG_MODE_META |
OLD | NEW |