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

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

Issue 12225099: Remove prototype checks for leaf maps in optimized code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merge 12224035 to this CL and address Michael's comments Created 7 years, 10 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
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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 "print cumulative GC statistics in name=value format on exit") 400 "print cumulative GC statistics in name=value format on exit")
401 DEFINE_bool(trace_gc_verbose, false, 401 DEFINE_bool(trace_gc_verbose, false,
402 "print more details following each garbage collection") 402 "print more details following each garbage collection")
403 DEFINE_bool(trace_fragmentation, false, 403 DEFINE_bool(trace_fragmentation, false,
404 "report fragmentation for old pointer and data pages") 404 "report fragmentation for old pointer and data pages")
405 DEFINE_bool(trace_external_memory, false, 405 DEFINE_bool(trace_external_memory, false,
406 "print amount of external allocated memory after each time " 406 "print amount of external allocated memory after each time "
407 "it is adjusted.") 407 "it is adjusted.")
408 DEFINE_bool(collect_maps, true, 408 DEFINE_bool(collect_maps, true,
409 "garbage collect maps from which no objects can be reached") 409 "garbage collect maps from which no objects can be reached")
410 DEFINE_bool(weak_embedded_maps_in_optimized_code, false, 410 DEFINE_bool(weak_embedded_maps_in_optimized_code, true,
411 "make maps embedded in optimized code weak") 411 "make maps embedded in optimized code weak")
412 DEFINE_bool(flush_code, true, 412 DEFINE_bool(flush_code, true,
413 "flush code that we expect not to use again (during full gc)") 413 "flush code that we expect not to use again (during full gc)")
414 DEFINE_bool(flush_code_incrementally, true, 414 DEFINE_bool(flush_code_incrementally, true,
415 "flush code that we expect not to use again (incrementally)") 415 "flush code that we expect not to use again (incrementally)")
416 DEFINE_bool(age_code, true, 416 DEFINE_bool(age_code, true,
417 "track un-executed functions to age code and flush only " 417 "track un-executed functions to age code and flush only "
418 "old code") 418 "old code")
419 DEFINE_bool(incremental_marking, true, "use incremental marking") 419 DEFINE_bool(incremental_marking, true, "use incremental marking")
420 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 420 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 #undef DEFINE_bool 733 #undef DEFINE_bool
734 #undef DEFINE_int 734 #undef DEFINE_int
735 #undef DEFINE_string 735 #undef DEFINE_string
736 #undef DEFINE_implication 736 #undef DEFINE_implication
737 737
738 #undef FLAG_MODE_DECLARE 738 #undef FLAG_MODE_DECLARE
739 #undef FLAG_MODE_DEFINE 739 #undef FLAG_MODE_DEFINE
740 #undef FLAG_MODE_DEFINE_DEFAULTS 740 #undef FLAG_MODE_DEFINE_DEFAULTS
741 #undef FLAG_MODE_META 741 #undef FLAG_MODE_META
742 #undef FLAG_MODE_DEFINE_IMPLICATIONS 742 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/heap.cc » ('j') | src/mark-compact.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698