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

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

Issue 543120: Temporary disable map compact functionality. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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 | « no previous file | test/cctest/cctest.status » ('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, 201 DEFINE_bool(use_big_map_space, false,
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, 204 DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1,
205 "Maximum number of pages in map space which still allows to encode " 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 " 206 "forwarding pointers. That's actually a constant, but it's useful "
207 "to control it with a flag for better testing.") 207 "to control it with a flag for better testing.")
208 208
209 // mksnapshot.cc 209 // mksnapshot.cc
210 DEFINE_bool(h, false, "print this message") 210 DEFINE_bool(h, false, "print this message")
211 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") 211 DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 #undef FLAG 419 #undef FLAG
420 420
421 #undef DEFINE_bool 421 #undef DEFINE_bool
422 #undef DEFINE_int 422 #undef DEFINE_int
423 #undef DEFINE_string 423 #undef DEFINE_string
424 424
425 #undef FLAG_MODE_DECLARE 425 #undef FLAG_MODE_DECLARE
426 #undef FLAG_MODE_DEFINE 426 #undef FLAG_MODE_DEFINE
427 #undef FLAG_MODE_DEFINE_DEFAULTS 427 #undef FLAG_MODE_DEFINE_DEFAULTS
428 #undef FLAG_MODE_META 428 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698