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

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

Issue 7104107: Incremental mode now works for x64. The only difference (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 6 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 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 "print one detailed trace line in name=value format " 259 "print one detailed trace line in name=value format "
260 "after each garbage collection") 260 "after each garbage collection")
261 DEFINE_bool(print_cumulative_gc_stat, false, 261 DEFINE_bool(print_cumulative_gc_stat, false,
262 "print cumulative GC statistics in name=value format on exit") 262 "print cumulative GC statistics in name=value format on exit")
263 DEFINE_bool(trace_gc_verbose, false, 263 DEFINE_bool(trace_gc_verbose, false,
264 "print more details following each garbage collection") 264 "print more details following each garbage collection")
265 DEFINE_bool(collect_maps, true, 265 DEFINE_bool(collect_maps, true,
266 "garbage collect maps from which no objects can be reached") 266 "garbage collect maps from which no objects can be reached")
267 DEFINE_bool(flush_code, false, 267 DEFINE_bool(flush_code, false,
268 "flush code that we expect not to use again before full gc") 268 "flush code that we expect not to use again before full gc")
269 #ifdef V8_TARGET_ARCH_IA32 269 #ifdef V8_TARGET_ARCH_ARM
270 DEFINE_bool(incremental_marking, false, "use incremental marking")
271 #else
270 DEFINE_bool(incremental_marking, true, "use incremental marking") 272 DEFINE_bool(incremental_marking, true, "use incremental marking")
271 #else
272 DEFINE_bool(incremental_marking, false, "use incremental marking")
273 #endif 273 #endif
274 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 274 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
275 DEFINE_bool(trace_incremental_marking, false, 275 DEFINE_bool(trace_incremental_marking, false,
276 "trace progress of the incremental marking") 276 "trace progress of the incremental marking")
277 277
278 // v8.cc 278 // v8.cc
279 DEFINE_bool(use_idle_notification, true, 279 DEFINE_bool(use_idle_notification, true,
280 "Use idle notification to reduce memory footprint.") 280 "Use idle notification to reduce memory footprint.")
281 // ic.cc 281 // ic.cc
282 DEFINE_bool(use_ic, true, "use inline caching") 282 DEFINE_bool(use_ic, true, "use inline caching")
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 #undef FLAG 568 #undef FLAG
569 569
570 #undef DEFINE_bool 570 #undef DEFINE_bool
571 #undef DEFINE_int 571 #undef DEFINE_int
572 #undef DEFINE_string 572 #undef DEFINE_string
573 573
574 #undef FLAG_MODE_DECLARE 574 #undef FLAG_MODE_DECLARE
575 #undef FLAG_MODE_DEFINE 575 #undef FLAG_MODE_DEFINE
576 #undef FLAG_MODE_DEFINE_DEFAULTS 576 #undef FLAG_MODE_DEFINE_DEFAULTS
577 #undef FLAG_MODE_META 577 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698