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

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

Issue 10103035: Share optimized code for closures. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 6 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/frames.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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 199 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
200 DEFINE_bool(use_osr, true, "use on-stack replacement") 200 DEFINE_bool(use_osr, true, "use on-stack replacement")
201 DEFINE_bool(array_bounds_checks_elimination, false, 201 DEFINE_bool(array_bounds_checks_elimination, false,
202 "perform array bounds checks elimination") 202 "perform array bounds checks elimination")
203 DEFINE_bool(array_index_dehoisting, false, 203 DEFINE_bool(array_index_dehoisting, false,
204 "perform array index dehoisting") 204 "perform array index dehoisting")
205 205
206 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 206 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
207 DEFINE_int(stress_runs, 0, "number of stress runs") 207 DEFINE_int(stress_runs, 0, "number of stress runs")
208 DEFINE_bool(optimize_closures, true, "optimize closures") 208 DEFINE_bool(optimize_closures, true, "optimize closures")
209 DEFINE_bool(lookup_sample_by_shared, true,
210 "when picking a function to optimize, watch for shared function "
211 "info, not JSFunction itself")
212 DEFINE_bool(cache_optimized_code, true,
213 "cache optimized code for closures")
209 DEFINE_bool(inline_construct, true, "inline constructor calls") 214 DEFINE_bool(inline_construct, true, "inline constructor calls")
210 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") 215 DEFINE_bool(inline_arguments, true, "inline functions with arguments object")
211 DEFINE_int(loop_weight, 1, "loop weight for representation inference") 216 DEFINE_int(loop_weight, 1, "loop weight for representation inference")
212 217
213 DEFINE_bool(optimize_for_in, true, 218 DEFINE_bool(optimize_for_in, true,
214 "optimize functions containing for-in loops") 219 "optimize functions containing for-in loops")
215 220
216 // Experimental profiler changes. 221 // Experimental profiler changes.
217 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") 222 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments")
218 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") 223 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability")
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 #undef DEFINE_bool 663 #undef DEFINE_bool
659 #undef DEFINE_int 664 #undef DEFINE_int
660 #undef DEFINE_string 665 #undef DEFINE_string
661 #undef DEFINE_implication 666 #undef DEFINE_implication
662 667
663 #undef FLAG_MODE_DECLARE 668 #undef FLAG_MODE_DECLARE
664 #undef FLAG_MODE_DEFINE 669 #undef FLAG_MODE_DEFINE
665 #undef FLAG_MODE_DEFINE_DEFAULTS 670 #undef FLAG_MODE_DEFINE_DEFAULTS
666 #undef FLAG_MODE_META 671 #undef FLAG_MODE_META
667 #undef FLAG_MODE_DEFINE_IMPLICATIONS 672 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/frames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698