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

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

Issue 9699117: Re-enable constructor inlining and inline === comparison with boolean constants. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 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 | src/hydrogen.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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 0, 185 0,
186 "deoptimize every n times a deopt point is passed") 186 "deoptimize every n times a deopt point is passed")
187 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 187 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
188 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 188 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
189 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 189 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
190 DEFINE_bool(use_osr, true, "use on-stack replacement") 190 DEFINE_bool(use_osr, true, "use on-stack replacement")
191 191
192 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 192 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
193 DEFINE_int(stress_runs, 0, "number of stress runs") 193 DEFINE_int(stress_runs, 0, "number of stress runs")
194 DEFINE_bool(optimize_closures, true, "optimize closures") 194 DEFINE_bool(optimize_closures, true, "optimize closures")
195 DEFINE_bool(inline_construct, false, "inline constructor calls") 195 DEFINE_bool(inline_construct, true, "inline constructor calls")
196 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") 196 DEFINE_bool(inline_arguments, true, "inline functions with arguments object")
197 DEFINE_int(loop_weight, 1, "loop weight for representation inference") 197 DEFINE_int(loop_weight, 1, "loop weight for representation inference")
198 198
199 DEFINE_bool(optimize_for_in, true, 199 DEFINE_bool(optimize_for_in, true,
200 "optimize functions containing for-in loops") 200 "optimize functions containing for-in loops")
201 201
202 // Experimental profiler changes. 202 // Experimental profiler changes.
203 DEFINE_bool(experimental_profiler, false, "enable all profiler experiments") 203 DEFINE_bool(experimental_profiler, false, "enable all profiler experiments")
204 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") 204 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability")
205 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") 205 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler")
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 #undef DEFINE_bool 638 #undef DEFINE_bool
639 #undef DEFINE_int 639 #undef DEFINE_int
640 #undef DEFINE_string 640 #undef DEFINE_string
641 #undef DEFINE_implication 641 #undef DEFINE_implication
642 642
643 #undef FLAG_MODE_DECLARE 643 #undef FLAG_MODE_DECLARE
644 #undef FLAG_MODE_DEFINE 644 #undef FLAG_MODE_DEFINE
645 #undef FLAG_MODE_DEFINE_DEFAULTS 645 #undef FLAG_MODE_DEFINE_DEFAULTS
646 #undef FLAG_MODE_META 646 #undef FLAG_MODE_META
647 #undef FLAG_MODE_DEFINE_IMPLICATIONS 647 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698