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

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

Issue 188783003: Make maps in monomorphic IC stubs weak. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase, address comments Created 6 years, 8 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 | « src/code-stubs.cc ('k') | src/handles.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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 "in name=value format on exit") 508 "in name=value format on exit")
509 DEFINE_bool(trace_gc_verbose, false, 509 DEFINE_bool(trace_gc_verbose, false,
510 "print more details following each garbage collection") 510 "print more details following each garbage collection")
511 DEFINE_bool(trace_fragmentation, false, 511 DEFINE_bool(trace_fragmentation, false,
512 "report fragmentation for old pointer and data pages") 512 "report fragmentation for old pointer and data pages")
513 DEFINE_bool(trace_external_memory, false, 513 DEFINE_bool(trace_external_memory, false,
514 "print amount of external allocated memory after each time " 514 "print amount of external allocated memory after each time "
515 "it is adjusted.") 515 "it is adjusted.")
516 DEFINE_bool(collect_maps, true, 516 DEFINE_bool(collect_maps, true,
517 "garbage collect maps from which no objects can be reached") 517 "garbage collect maps from which no objects can be reached")
518 DEFINE_bool(weak_embedded_maps_in_ic, true,
519 "make maps embedded in inline cache stubs")
518 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, 520 DEFINE_bool(weak_embedded_maps_in_optimized_code, true,
519 "make maps embedded in optimized code weak") 521 "make maps embedded in optimized code weak")
520 DEFINE_bool(weak_embedded_objects_in_optimized_code, true, 522 DEFINE_bool(weak_embedded_objects_in_optimized_code, true,
521 "make objects embedded in optimized code weak") 523 "make objects embedded in optimized code weak")
522 DEFINE_bool(flush_code, true, 524 DEFINE_bool(flush_code, true,
523 "flush code that we expect not to use again (during full gc)") 525 "flush code that we expect not to use again (during full gc)")
524 DEFINE_bool(flush_code_incrementally, true, 526 DEFINE_bool(flush_code_incrementally, true,
525 "flush code that we expect not to use again (incrementally)") 527 "flush code that we expect not to use again (incrementally)")
526 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") 528 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress")
527 DEFINE_bool(age_code, true, 529 DEFINE_bool(age_code, true,
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 #undef DEFINE_ALIAS_float 922 #undef DEFINE_ALIAS_float
921 #undef DEFINE_ALIAS_args 923 #undef DEFINE_ALIAS_args
922 924
923 #undef FLAG_MODE_DECLARE 925 #undef FLAG_MODE_DECLARE
924 #undef FLAG_MODE_DEFINE 926 #undef FLAG_MODE_DEFINE
925 #undef FLAG_MODE_DEFINE_DEFAULTS 927 #undef FLAG_MODE_DEFINE_DEFAULTS
926 #undef FLAG_MODE_META 928 #undef FLAG_MODE_META
927 #undef FLAG_MODE_DEFINE_IMPLICATIONS 929 #undef FLAG_MODE_DEFINE_IMPLICATIONS
928 930
929 #undef COMMA 931 #undef COMMA
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698