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

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

Issue 23477061: Make objects embedded in optimized code weak. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix arm Created 7 years, 2 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/factory.cc ('k') | src/handles.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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 "print more details following each garbage collection") 504 "print more details following each garbage collection")
505 DEFINE_bool(trace_fragmentation, false, 505 DEFINE_bool(trace_fragmentation, false,
506 "report fragmentation for old pointer and data pages") 506 "report fragmentation for old pointer and data pages")
507 DEFINE_bool(trace_external_memory, false, 507 DEFINE_bool(trace_external_memory, false,
508 "print amount of external allocated memory after each time " 508 "print amount of external allocated memory after each time "
509 "it is adjusted.") 509 "it is adjusted.")
510 DEFINE_bool(collect_maps, true, 510 DEFINE_bool(collect_maps, true,
511 "garbage collect maps from which no objects can be reached") 511 "garbage collect maps from which no objects can be reached")
512 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, 512 DEFINE_bool(weak_embedded_maps_in_optimized_code, true,
513 "make maps embedded in optimized code weak") 513 "make maps embedded in optimized code weak")
514 DEFINE_bool(weak_embedded_objects_in_optimized_code, true,
515 "make objects embedded in optimized code weak")
514 DEFINE_bool(flush_code, true, 516 DEFINE_bool(flush_code, true,
515 "flush code that we expect not to use again (during full gc)") 517 "flush code that we expect not to use again (during full gc)")
516 DEFINE_bool(flush_code_incrementally, true, 518 DEFINE_bool(flush_code_incrementally, true,
517 "flush code that we expect not to use again (incrementally)") 519 "flush code that we expect not to use again (incrementally)")
518 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") 520 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress")
519 DEFINE_bool(age_code, true, 521 DEFINE_bool(age_code, true,
520 "track un-executed functions to age code and flush only " 522 "track un-executed functions to age code and flush only "
521 "old code (required for code flushing)") 523 "old code (required for code flushing)")
522 DEFINE_bool(incremental_marking, true, "use incremental marking") 524 DEFINE_bool(incremental_marking, true, "use incremental marking")
523 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 525 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 #undef DEFINE_ALIAS_float 864 #undef DEFINE_ALIAS_float
863 #undef DEFINE_ALIAS_args 865 #undef DEFINE_ALIAS_args
864 866
865 #undef FLAG_MODE_DECLARE 867 #undef FLAG_MODE_DECLARE
866 #undef FLAG_MODE_DEFINE 868 #undef FLAG_MODE_DEFINE
867 #undef FLAG_MODE_DEFINE_DEFAULTS 869 #undef FLAG_MODE_DEFINE_DEFAULTS
868 #undef FLAG_MODE_META 870 #undef FLAG_MODE_META
869 #undef FLAG_MODE_DEFINE_IMPLICATIONS 871 #undef FLAG_MODE_DEFINE_IMPLICATIONS
870 872
871 #undef COMMA 873 #undef COMMA
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/handles.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698