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

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

Issue 8043022: Enable compaction, disable code-compaction. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 2 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/mark-compact.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 // macro-assembler-ia32.cc 280 // macro-assembler-ia32.cc
281 DEFINE_bool(native_code_counters, false, 281 DEFINE_bool(native_code_counters, false,
282 "generate extra code for manipulating stats counters") 282 "generate extra code for manipulating stats counters")
283 283
284 // mark-compact.cc 284 // mark-compact.cc
285 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 285 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
286 DEFINE_bool(lazy_sweeping, true, 286 DEFINE_bool(lazy_sweeping, true,
287 "Use lazy sweeping for old pointer and data spaces") 287 "Use lazy sweeping for old pointer and data spaces")
288 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, 288 DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
289 "Flush code caches in maps during mark compact cycle.") 289 "Flush code caches in maps during mark compact cycle.")
290 DEFINE_bool(never_compact, true, 290 DEFINE_bool(never_compact, false,
291 "Never perform compaction on full GC - testing only") 291 "Never perform compaction on full GC - testing only")
292 DEFINE_bool(compact_code_space, true, "Compact code space") 292 DEFINE_bool(compact_code_space, false, "Compact code space")
293 DEFINE_bool(cleanup_code_caches_at_gc, true, 293 DEFINE_bool(cleanup_code_caches_at_gc, true,
294 "Flush inline caches prior to mark compact collection and " 294 "Flush inline caches prior to mark compact collection and "
295 "flush code caches in maps during mark compact cycle.") 295 "flush code caches in maps during mark compact cycle.")
296 DEFINE_int(random_seed, 0, 296 DEFINE_int(random_seed, 0,
297 "Default seed for initializing random generator " 297 "Default seed for initializing random generator "
298 "(0, the default, means to use system random).") 298 "(0, the default, means to use system random).")
299 299
300 DEFINE_bool(canonicalize_object_literal_maps, true, 300 DEFINE_bool(canonicalize_object_literal_maps, true,
301 "Canonicalize maps for object literals.") 301 "Canonicalize maps for object literals.")
302 302
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 #undef FLAG 538 #undef FLAG
539 539
540 #undef DEFINE_bool 540 #undef DEFINE_bool
541 #undef DEFINE_int 541 #undef DEFINE_int
542 #undef DEFINE_string 542 #undef DEFINE_string
543 543
544 #undef FLAG_MODE_DECLARE 544 #undef FLAG_MODE_DECLARE
545 #undef FLAG_MODE_DEFINE 545 #undef FLAG_MODE_DEFINE
546 #undef FLAG_MODE_DEFINE_DEFAULTS 546 #undef FLAG_MODE_DEFINE_DEFAULTS
547 #undef FLAG_MODE_META 547 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/mark-compact.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698