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

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

Issue 13157003: Merged r14010 into 3.17 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.17
Patch Set: Created 7 years, 9 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/version.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 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 "print cumulative GC statistics in name=value format on exit") 416 "print cumulative GC statistics in name=value format on exit")
417 DEFINE_bool(trace_gc_verbose, false, 417 DEFINE_bool(trace_gc_verbose, false,
418 "print more details following each garbage collection") 418 "print more details following each garbage collection")
419 DEFINE_bool(trace_fragmentation, false, 419 DEFINE_bool(trace_fragmentation, false,
420 "report fragmentation for old pointer and data pages") 420 "report fragmentation for old pointer and data pages")
421 DEFINE_bool(trace_external_memory, false, 421 DEFINE_bool(trace_external_memory, false,
422 "print amount of external allocated memory after each time " 422 "print amount of external allocated memory after each time "
423 "it is adjusted.") 423 "it is adjusted.")
424 DEFINE_bool(collect_maps, true, 424 DEFINE_bool(collect_maps, true,
425 "garbage collect maps from which no objects can be reached") 425 "garbage collect maps from which no objects can be reached")
426 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, 426 DEFINE_bool(weak_embedded_maps_in_optimized_code, false,
427 "make maps embedded in optimized code weak") 427 "make maps embedded in optimized code weak")
428 DEFINE_bool(flush_code, true, 428 DEFINE_bool(flush_code, true,
429 "flush code that we expect not to use again (during full gc)") 429 "flush code that we expect not to use again (during full gc)")
430 DEFINE_bool(flush_code_incrementally, true, 430 DEFINE_bool(flush_code_incrementally, true,
431 "flush code that we expect not to use again (incrementally)") 431 "flush code that we expect not to use again (incrementally)")
432 DEFINE_bool(age_code, true, 432 DEFINE_bool(age_code, true,
433 "track un-executed functions to age code and flush only " 433 "track un-executed functions to age code and flush only "
434 "old code") 434 "old code")
435 DEFINE_bool(incremental_marking, true, "use incremental marking") 435 DEFINE_bool(incremental_marking, true, "use incremental marking")
436 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 436 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 #undef DEFINE_bool 749 #undef DEFINE_bool
750 #undef DEFINE_int 750 #undef DEFINE_int
751 #undef DEFINE_string 751 #undef DEFINE_string
752 #undef DEFINE_implication 752 #undef DEFINE_implication
753 753
754 #undef FLAG_MODE_DECLARE 754 #undef FLAG_MODE_DECLARE
755 #undef FLAG_MODE_DEFINE 755 #undef FLAG_MODE_DEFINE
756 #undef FLAG_MODE_DEFINE_DEFAULTS 756 #undef FLAG_MODE_DEFINE_DEFAULTS
757 #undef FLAG_MODE_META 757 #undef FLAG_MODE_META
758 #undef FLAG_MODE_DEFINE_IMPLICATIONS 758 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698