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

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

Issue 507025: Force mark sweep if size of map space is to big to allow forward pointers enc... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years 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 | « no previous file | src/heap.h » ('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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 DEFINE_bool(never_compact, false, 191 DEFINE_bool(never_compact, false,
192 "Never perform compaction on full GC - testing only") 192 "Never perform compaction on full GC - testing only")
193 DEFINE_bool(cleanup_ics_at_gc, true, 193 DEFINE_bool(cleanup_ics_at_gc, true,
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,
202 "Use big map space, but don't compact if it grew too big.")
203
201 // mksnapshot.cc 204 // mksnapshot.cc
202 DEFINE_bool(h, false, "print this message") 205 DEFINE_bool(h, false, "print this message")
203 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") 206 DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
204 207
205 // parser.cc 208 // parser.cc
206 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 209 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
207 210
208 // rewriter.cc 211 // rewriter.cc
209 DEFINE_bool(optimize_ast, true, "optimize the ast") 212 DEFINE_bool(optimize_ast, true, "optimize the ast")
210 213
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 #undef FLAG 408 #undef FLAG
406 409
407 #undef DEFINE_bool 410 #undef DEFINE_bool
408 #undef DEFINE_int 411 #undef DEFINE_int
409 #undef DEFINE_string 412 #undef DEFINE_string
410 413
411 #undef FLAG_MODE_DECLARE 414 #undef FLAG_MODE_DECLARE
412 #undef FLAG_MODE_DEFINE 415 #undef FLAG_MODE_DEFINE
413 #undef FLAG_MODE_DEFINE_DEFAULTS 416 #undef FLAG_MODE_DEFINE_DEFAULTS
414 #undef FLAG_MODE_META 417 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698