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

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

Issue 100053003: Merged r18234 into 3.22 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.22
Patch Set: Created 7 years 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/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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 228 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
229 DEFINE_bool(string_slices, true, "use string slices") 229 DEFINE_bool(string_slices, true, "use string slices")
230 230
231 // Flags for Crankshaft. 231 // Flags for Crankshaft.
232 DEFINE_bool(crankshaft, true, "use crankshaft") 232 DEFINE_bool(crankshaft, true, "use crankshaft")
233 DEFINE_string(hydrogen_filter, "*", "optimization filter") 233 DEFINE_string(hydrogen_filter, "*", "optimization filter")
234 DEFINE_bool(use_range, true, "use hydrogen range analysis") 234 DEFINE_bool(use_range, true, "use hydrogen range analysis")
235 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") 235 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
236 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") 236 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
237 DEFINE_bool(use_inlining, true, "use function inlining") 237 DEFINE_bool(use_inlining, true, "use function inlining")
238 DEFINE_bool(use_escape_analysis, true, "use hydrogen escape analysis") 238 DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis")
239 DEFINE_bool(use_allocation_folding, true, "use allocation folding") 239 DEFINE_bool(use_allocation_folding, true, "use allocation folding")
240 DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels") 240 DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels")
241 DEFINE_int(max_inlined_source_size, 600, 241 DEFINE_int(max_inlined_source_size, 600,
242 "maximum source size in bytes considered for a single inlining") 242 "maximum source size in bytes considered for a single inlining")
243 DEFINE_int(max_inlined_nodes, 196, 243 DEFINE_int(max_inlined_nodes, 196,
244 "maximum number of AST nodes considered for a single inlining") 244 "maximum number of AST nodes considered for a single inlining")
245 DEFINE_int(max_inlined_nodes_cumulative, 400, 245 DEFINE_int(max_inlined_nodes_cumulative, 400,
246 "maximum cumulative number of AST nodes considered for inlining") 246 "maximum cumulative number of AST nodes considered for inlining")
247 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") 247 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion")
248 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") 248 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions")
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 #undef DEFINE_ALIAS_float 879 #undef DEFINE_ALIAS_float
880 #undef DEFINE_ALIAS_args 880 #undef DEFINE_ALIAS_args
881 881
882 #undef FLAG_MODE_DECLARE 882 #undef FLAG_MODE_DECLARE
883 #undef FLAG_MODE_DEFINE 883 #undef FLAG_MODE_DEFINE
884 #undef FLAG_MODE_DEFINE_DEFAULTS 884 #undef FLAG_MODE_DEFINE_DEFAULTS
885 #undef FLAG_MODE_META 885 #undef FLAG_MODE_META
886 #undef FLAG_MODE_DEFINE_IMPLICATIONS 886 #undef FLAG_MODE_DEFINE_IMPLICATIONS
887 887
888 #undef COMMA 888 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698