Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: src/flag-definitions.h

Issue 548136: Merge r3643 and r3659 from bleeding_edge to trunk to... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/ic-arm.cc ('k') | src/heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 #undef FLAG 417 #undef FLAG
413 418
414 #undef DEFINE_bool 419 #undef DEFINE_bool
415 #undef DEFINE_int 420 #undef DEFINE_int
416 #undef DEFINE_string 421 #undef DEFINE_string
417 422
418 #undef FLAG_MODE_DECLARE 423 #undef FLAG_MODE_DECLARE
419 #undef FLAG_MODE_DEFINE 424 #undef FLAG_MODE_DEFINE
420 #undef FLAG_MODE_DEFINE_DEFAULTS 425 #undef FLAG_MODE_DEFINE_DEFAULTS
421 #undef FLAG_MODE_META 426 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/arm/ic-arm.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698