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

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

Issue 6542047: Basic implementation of incremental marking. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 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
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 "print one detailed trace line in name=value format " 255 "print one detailed trace line in name=value format "
256 "after each garbage collection") 256 "after each garbage collection")
257 DEFINE_bool(print_cumulative_gc_stat, false, 257 DEFINE_bool(print_cumulative_gc_stat, false,
258 "print cumulative GC statistics in name=value format on exit") 258 "print cumulative GC statistics in name=value format on exit")
259 DEFINE_bool(trace_gc_verbose, false, 259 DEFINE_bool(trace_gc_verbose, false,
260 "print more details following each garbage collection") 260 "print more details following each garbage collection")
261 DEFINE_bool(collect_maps, true, 261 DEFINE_bool(collect_maps, true,
262 "garbage collect maps from which no objects can be reached") 262 "garbage collect maps from which no objects can be reached")
263 DEFINE_bool(flush_code, false, 263 DEFINE_bool(flush_code, false,
264 "flush code that we expect not to use again before full gc") 264 "flush code that we expect not to use again before full gc")
265 DEFINE_bool(incremental_marking, true, "use incremental marking")
266 DEFINE_bool(trace_incremental_marking, false,
267 "trace progress of the incremental marking")
265 268
266 // v8.cc 269 // v8.cc
267 DEFINE_bool(use_idle_notification, true, 270 DEFINE_bool(use_idle_notification, true,
268 "Use idle notification to reduce memory footprint.") 271 "Use idle notification to reduce memory footprint.")
269 // ic.cc 272 // ic.cc
270 DEFINE_bool(use_ic, true, "use inline caching") 273 DEFINE_bool(use_ic, true, "use inline caching")
271 274
272 // macro-assembler-ia32.cc 275 // macro-assembler-ia32.cc
273 DEFINE_bool(native_code_counters, false, 276 DEFINE_bool(native_code_counters, false,
274 "generate extra code for manipulating stats counters") 277 "generate extra code for manipulating stats counters")
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 #undef FLAG 542 #undef FLAG
540 543
541 #undef DEFINE_bool 544 #undef DEFINE_bool
542 #undef DEFINE_int 545 #undef DEFINE_int
543 #undef DEFINE_string 546 #undef DEFINE_string
544 547
545 #undef FLAG_MODE_DECLARE 548 #undef FLAG_MODE_DECLARE
546 #undef FLAG_MODE_DEFINE 549 #undef FLAG_MODE_DEFINE
547 #undef FLAG_MODE_DEFINE_DEFAULTS 550 #undef FLAG_MODE_DEFINE_DEFAULTS
548 #undef FLAG_MODE_META 551 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698