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

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

Issue 18384004: Remove filler map when folding allocations and turn on allocation folding. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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-instructions.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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 DEFINE_bool(string_slices, true, "use string slices") 208 DEFINE_bool(string_slices, true, "use string slices")
209 209
210 // Flags for Crankshaft. 210 // Flags for Crankshaft.
211 DEFINE_bool(crankshaft, true, "use crankshaft") 211 DEFINE_bool(crankshaft, true, "use crankshaft")
212 DEFINE_string(hydrogen_filter, "", "optimization filter") 212 DEFINE_string(hydrogen_filter, "", "optimization filter")
213 DEFINE_bool(use_range, true, "use hydrogen range analysis") 213 DEFINE_bool(use_range, true, "use hydrogen range analysis")
214 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") 214 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
215 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") 215 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
216 DEFINE_bool(use_inlining, true, "use function inlining") 216 DEFINE_bool(use_inlining, true, "use function inlining")
217 DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis") 217 DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis")
218 DEFINE_bool(use_allocation_folding, false, "use allocation folding") 218 DEFINE_bool(use_allocation_folding, true, "use allocation folding")
219 DEFINE_int(max_inlined_source_size, 600, 219 DEFINE_int(max_inlined_source_size, 600,
220 "maximum source size in bytes considered for a single inlining") 220 "maximum source size in bytes considered for a single inlining")
221 DEFINE_int(max_inlined_nodes, 196, 221 DEFINE_int(max_inlined_nodes, 196,
222 "maximum number of AST nodes considered for a single inlining") 222 "maximum number of AST nodes considered for a single inlining")
223 DEFINE_int(max_inlined_nodes_cumulative, 196, 223 DEFINE_int(max_inlined_nodes_cumulative, 196,
224 "maximum cumulative number of AST nodes considered for inlining") 224 "maximum cumulative number of AST nodes considered for inlining")
225 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") 225 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion")
226 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") 226 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions")
227 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, 227 DEFINE_bool(collect_megamorphic_maps_from_stub_cache,
228 true, 228 true,
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 #undef DEFINE_bool 799 #undef DEFINE_bool
800 #undef DEFINE_int 800 #undef DEFINE_int
801 #undef DEFINE_string 801 #undef DEFINE_string
802 #undef DEFINE_implication 802 #undef DEFINE_implication
803 803
804 #undef FLAG_MODE_DECLARE 804 #undef FLAG_MODE_DECLARE
805 #undef FLAG_MODE_DEFINE 805 #undef FLAG_MODE_DEFINE
806 #undef FLAG_MODE_DEFINE_DEFAULTS 806 #undef FLAG_MODE_DEFINE_DEFAULTS
807 #undef FLAG_MODE_META 807 #undef FLAG_MODE_META
808 #undef FLAG_MODE_DEFINE_IMPLICATIONS 808 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen-instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698