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

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

Issue 10778029: Allow uint32 value on optimized frames if they are consumed by safe operations. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: arm and x64 ports Created 8 years, 4 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 "info, not JSFunction itself") 211 "info, not JSFunction itself")
212 DEFINE_bool(cache_optimized_code, true, 212 DEFINE_bool(cache_optimized_code, true,
213 "cache optimized code for closures") 213 "cache optimized code for closures")
214 DEFINE_bool(inline_construct, true, "inline constructor calls") 214 DEFINE_bool(inline_construct, true, "inline constructor calls")
215 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") 215 DEFINE_bool(inline_arguments, true, "inline functions with arguments object")
216 DEFINE_bool(inline_accessors, false, "inline JavaScript accessors") 216 DEFINE_bool(inline_accessors, false, "inline JavaScript accessors")
217 DEFINE_int(loop_weight, 1, "loop weight for representation inference") 217 DEFINE_int(loop_weight, 1, "loop weight for representation inference")
218 218
219 DEFINE_bool(optimize_for_in, true, 219 DEFINE_bool(optimize_for_in, true,
220 "optimize functions containing for-in loops") 220 "optimize functions containing for-in loops")
221 DEFINE_bool(opt_safe_uint32_operations, true,
222 "allow uint32 values on optimize frames if they are used only in"
223 "safe operations")
221 224
222 DEFINE_bool(parallel_recompilation, false, 225 DEFINE_bool(parallel_recompilation, false,
223 "optimizing hot functions asynchronously on a separate thread") 226 "optimizing hot functions asynchronously on a separate thread")
224 DEFINE_bool(trace_parallel_recompilation, false, "track parallel recompilation") 227 DEFINE_bool(trace_parallel_recompilation, false, "track parallel recompilation")
225 DEFINE_int(parallel_recompilation_queue_length, 2, 228 DEFINE_int(parallel_recompilation_queue_length, 2,
226 "the length of the parallel compilation queue") 229 "the length of the parallel compilation queue")
227 230
228 // Experimental profiler changes. 231 // Experimental profiler changes.
229 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") 232 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments")
230 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") 233 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability")
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 #undef DEFINE_bool 691 #undef DEFINE_bool
689 #undef DEFINE_int 692 #undef DEFINE_int
690 #undef DEFINE_string 693 #undef DEFINE_string
691 #undef DEFINE_implication 694 #undef DEFINE_implication
692 695
693 #undef FLAG_MODE_DECLARE 696 #undef FLAG_MODE_DECLARE
694 #undef FLAG_MODE_DEFINE 697 #undef FLAG_MODE_DEFINE
695 #undef FLAG_MODE_DEFINE_DEFAULTS 698 #undef FLAG_MODE_DEFINE_DEFAULTS
696 #undef FLAG_MODE_META 699 #undef FLAG_MODE_META
697 #undef FLAG_MODE_DEFINE_IMPLICATIONS 700 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698