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

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

Issue 24996004: Merged r16977, r16979, r16983 into trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: 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/defaults.cc ('k') | src/version.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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 225 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
226 DEFINE_bool(string_slices, true, "use string slices") 226 DEFINE_bool(string_slices, true, "use string slices")
227 227
228 // Flags for Crankshaft. 228 // Flags for Crankshaft.
229 DEFINE_bool(crankshaft, true, "use crankshaft") 229 DEFINE_bool(crankshaft, true, "use crankshaft")
230 DEFINE_string(hydrogen_filter, "*", "optimization filter") 230 DEFINE_string(hydrogen_filter, "*", "optimization filter")
231 DEFINE_bool(use_range, true, "use hydrogen range analysis") 231 DEFINE_bool(use_range, true, "use hydrogen range analysis")
232 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") 232 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
233 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") 233 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
234 DEFINE_bool(use_inlining, true, "use function inlining") 234 DEFINE_bool(use_inlining, true, "use function inlining")
235 DEFINE_bool(use_escape_analysis, true, "use hydrogen escape analysis") 235 DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis")
236 DEFINE_bool(use_allocation_folding, true, "use allocation folding") 236 DEFINE_bool(use_allocation_folding, true, "use allocation folding")
237 DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels") 237 DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels")
238 DEFINE_int(max_inlined_source_size, 600, 238 DEFINE_int(max_inlined_source_size, 600,
239 "maximum source size in bytes considered for a single inlining") 239 "maximum source size in bytes considered for a single inlining")
240 DEFINE_int(max_inlined_nodes, 196, 240 DEFINE_int(max_inlined_nodes, 196,
241 "maximum number of AST nodes considered for a single inlining") 241 "maximum number of AST nodes considered for a single inlining")
242 DEFINE_int(max_inlined_nodes_cumulative, 400, 242 DEFINE_int(max_inlined_nodes_cumulative, 400,
243 "maximum cumulative number of AST nodes considered for inlining") 243 "maximum cumulative number of AST nodes considered for inlining")
244 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") 244 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion")
245 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") 245 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions")
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 #undef DEFINE_ALIAS_float 854 #undef DEFINE_ALIAS_float
855 #undef DEFINE_ALIAS_args 855 #undef DEFINE_ALIAS_args
856 856
857 #undef FLAG_MODE_DECLARE 857 #undef FLAG_MODE_DECLARE
858 #undef FLAG_MODE_DEFINE 858 #undef FLAG_MODE_DEFINE
859 #undef FLAG_MODE_DEFINE_DEFAULTS 859 #undef FLAG_MODE_DEFINE_DEFAULTS
860 #undef FLAG_MODE_META 860 #undef FLAG_MODE_META
861 #undef FLAG_MODE_DEFINE_IMPLICATIONS 861 #undef FLAG_MODE_DEFINE_IMPLICATIONS
862 862
863 #undef COMMA 863 #undef COMMA
OLDNEW
« no previous file with comments | « src/defaults.cc ('k') | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698