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

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

Issue 9323079: Enable non-incremental code compaction. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 10 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 | src/incremental-marking.cc » ('j') | src/incremental-marking.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 "generate extra code for manipulating stats counters") 300 "generate extra code for manipulating stats counters")
301 301
302 // mark-compact.cc 302 // mark-compact.cc
303 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 303 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
304 DEFINE_bool(lazy_sweeping, true, 304 DEFINE_bool(lazy_sweeping, true,
305 "Use lazy sweeping for old pointer and data spaces") 305 "Use lazy sweeping for old pointer and data spaces")
306 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, 306 DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
307 "Flush code caches in maps during mark compact cycle.") 307 "Flush code caches in maps during mark compact cycle.")
308 DEFINE_bool(never_compact, false, 308 DEFINE_bool(never_compact, false,
309 "Never perform compaction on full GC - testing only") 309 "Never perform compaction on full GC - testing only")
310 DEFINE_bool(compact_code_space, false, "Compact code space")
311 DEFINE_bool(cleanup_code_caches_at_gc, true, 310 DEFINE_bool(cleanup_code_caches_at_gc, true,
312 "Flush inline caches prior to mark compact collection and " 311 "Flush inline caches prior to mark compact collection and "
313 "flush code caches in maps during mark compact cycle.") 312 "flush code caches in maps during mark compact cycle.")
314 DEFINE_int(random_seed, 0, 313 DEFINE_int(random_seed, 0,
315 "Default seed for initializing random generator " 314 "Default seed for initializing random generator "
316 "(0, the default, means to use system random).") 315 "(0, the default, means to use system random).")
317 316
318 DEFINE_bool(canonicalize_object_literal_maps, true, 317 DEFINE_bool(canonicalize_object_literal_maps, true,
319 "Canonicalize maps for object literals.") 318 "Canonicalize maps for object literals.")
320 319
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 #undef DEFINE_bool 578 #undef DEFINE_bool
580 #undef DEFINE_int 579 #undef DEFINE_int
581 #undef DEFINE_string 580 #undef DEFINE_string
582 #undef DEFINE_implication 581 #undef DEFINE_implication
583 582
584 #undef FLAG_MODE_DECLARE 583 #undef FLAG_MODE_DECLARE
585 #undef FLAG_MODE_DEFINE 584 #undef FLAG_MODE_DEFINE
586 #undef FLAG_MODE_DEFINE_DEFAULTS 585 #undef FLAG_MODE_DEFINE_DEFAULTS
587 #undef FLAG_MODE_META 586 #undef FLAG_MODE_META
588 #undef FLAG_MODE_DEFINE_IMPLICATIONS 587 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/incremental-marking.cc » ('j') | src/incremental-marking.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698