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

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

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

Powered by Google App Engine
This is Rietveld 408576698