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

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

Issue 16955008: Enable weak embedded maps in optimized code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address nits Created 7 years, 5 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.h » ('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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 "print cumulative GC statistics in name=value format on exit") 464 "print cumulative GC statistics in name=value format on exit")
465 DEFINE_bool(trace_gc_verbose, false, 465 DEFINE_bool(trace_gc_verbose, false,
466 "print more details following each garbage collection") 466 "print more details following each garbage collection")
467 DEFINE_bool(trace_fragmentation, false, 467 DEFINE_bool(trace_fragmentation, false,
468 "report fragmentation for old pointer and data pages") 468 "report fragmentation for old pointer and data pages")
469 DEFINE_bool(trace_external_memory, false, 469 DEFINE_bool(trace_external_memory, false,
470 "print amount of external allocated memory after each time " 470 "print amount of external allocated memory after each time "
471 "it is adjusted.") 471 "it is adjusted.")
472 DEFINE_bool(collect_maps, true, 472 DEFINE_bool(collect_maps, true,
473 "garbage collect maps from which no objects can be reached") 473 "garbage collect maps from which no objects can be reached")
474 DEFINE_bool(weak_embedded_maps_in_optimized_code, false, 474 DEFINE_bool(weak_embedded_maps_in_optimized_code, true,
475 "make maps embedded in optimized code weak") 475 "make maps embedded in optimized code weak")
476 DEFINE_bool(flush_code, true, 476 DEFINE_bool(flush_code, true,
477 "flush code that we expect not to use again (during full gc)") 477 "flush code that we expect not to use again (during full gc)")
478 DEFINE_bool(flush_code_incrementally, true, 478 DEFINE_bool(flush_code_incrementally, true,
479 "flush code that we expect not to use again (incrementally)") 479 "flush code that we expect not to use again (incrementally)")
480 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") 480 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress")
481 DEFINE_bool(age_code, true, 481 DEFINE_bool(age_code, true,
482 "track un-executed functions to age code and flush only " 482 "track un-executed functions to age code and flush only "
483 "old code") 483 "old code")
484 DEFINE_bool(incremental_marking, true, "use incremental marking") 484 DEFINE_bool(incremental_marking, true, "use incremental marking")
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 #undef DEFINE_bool 796 #undef DEFINE_bool
797 #undef DEFINE_int 797 #undef DEFINE_int
798 #undef DEFINE_string 798 #undef DEFINE_string
799 #undef DEFINE_implication 799 #undef DEFINE_implication
800 800
801 #undef FLAG_MODE_DECLARE 801 #undef FLAG_MODE_DECLARE
802 #undef FLAG_MODE_DEFINE 802 #undef FLAG_MODE_DEFINE
803 #undef FLAG_MODE_DEFINE_DEFAULTS 803 #undef FLAG_MODE_DEFINE_DEFAULTS
804 #undef FLAG_MODE_META 804 #undef FLAG_MODE_META
805 #undef FLAG_MODE_DEFINE_IMPLICATIONS 805 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/mark-compact.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698