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

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

Issue 10837037: Age code to allow reclaiming old unexecuted functions (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Nits Created 8 years, 1 month 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 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 "print more details following each garbage collection") 383 "print more details following each garbage collection")
384 DEFINE_bool(trace_fragmentation, false, 384 DEFINE_bool(trace_fragmentation, false,
385 "report fragmentation for old pointer and data pages") 385 "report fragmentation for old pointer and data pages")
386 DEFINE_bool(trace_external_memory, false, 386 DEFINE_bool(trace_external_memory, false,
387 "print amount of external allocated memory after each time " 387 "print amount of external allocated memory after each time "
388 "it is adjusted.") 388 "it is adjusted.")
389 DEFINE_bool(collect_maps, true, 389 DEFINE_bool(collect_maps, true,
390 "garbage collect maps from which no objects can be reached") 390 "garbage collect maps from which no objects can be reached")
391 DEFINE_bool(flush_code, true, 391 DEFINE_bool(flush_code, true,
392 "flush code that we expect not to use again before full gc") 392 "flush code that we expect not to use again before full gc")
393 DEFINE_bool(age_code, true,
394 "track un-executed functions to age code and flush only "
395 "old code")
393 DEFINE_bool(incremental_marking, true, "use incremental marking") 396 DEFINE_bool(incremental_marking, true, "use incremental marking")
394 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 397 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
395 DEFINE_bool(trace_incremental_marking, false, 398 DEFINE_bool(trace_incremental_marking, false,
396 "trace progress of the incremental marking") 399 "trace progress of the incremental marking")
397 DEFINE_bool(track_gc_object_stats, false, 400 DEFINE_bool(track_gc_object_stats, false,
398 "track object counts and memory usage") 401 "track object counts and memory usage")
399 #ifdef VERIFY_HEAP 402 #ifdef VERIFY_HEAP
400 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 403 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
401 #endif 404 #endif
402 405
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 #undef DEFINE_bool 705 #undef DEFINE_bool
703 #undef DEFINE_int 706 #undef DEFINE_int
704 #undef DEFINE_string 707 #undef DEFINE_string
705 #undef DEFINE_implication 708 #undef DEFINE_implication
706 709
707 #undef FLAG_MODE_DECLARE 710 #undef FLAG_MODE_DECLARE
708 #undef FLAG_MODE_DEFINE 711 #undef FLAG_MODE_DEFINE
709 #undef FLAG_MODE_DEFINE_DEFAULTS 712 #undef FLAG_MODE_DEFINE_DEFAULTS
710 #undef FLAG_MODE_META 713 #undef FLAG_MODE_META
711 #undef FLAG_MODE_DEFINE_IMPLICATIONS 714 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/debug.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | src/mark-compact.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698