| OLD | NEW |
| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 "Enables optimizations which favor memory size over execution " | 234 "Enables optimizations which favor memory size over execution " |
| 235 "speed.") | 235 "speed.") |
| 236 | 236 |
| 237 // Flags for data representation optimizations | 237 // Flags for data representation optimizations |
| 238 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") | 238 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") |
| 239 DEFINE_bool(string_slices, true, "use string slices") | 239 DEFINE_bool(string_slices, true, "use string slices") |
| 240 | 240 |
| 241 // Flags for Crankshaft. | 241 // Flags for Crankshaft. |
| 242 DEFINE_bool(crankshaft, true, "use crankshaft") | 242 DEFINE_bool(crankshaft, true, "use crankshaft") |
| 243 DEFINE_string(hydrogen_filter, "*", "optimization filter") | 243 DEFINE_string(hydrogen_filter, "*", "optimization filter") |
| 244 DEFINE_bool(use_range, true, "use hydrogen range analysis") | |
| 245 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") | 244 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") |
| 246 DEFINE_int(gvn_iterations, 3, "maximum number of GVN fix-point iterations") | 245 DEFINE_int(gvn_iterations, 3, "maximum number of GVN fix-point iterations") |
| 247 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") | 246 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") |
| 248 DEFINE_bool(use_inlining, true, "use function inlining") | 247 DEFINE_bool(use_inlining, true, "use function inlining") |
| 249 DEFINE_bool(use_escape_analysis, true, "use hydrogen escape analysis") | 248 DEFINE_bool(use_escape_analysis, true, "use hydrogen escape analysis") |
| 250 DEFINE_bool(use_allocation_folding, true, "use allocation folding") | 249 DEFINE_bool(use_allocation_folding, true, "use allocation folding") |
| 251 DEFINE_bool(use_local_allocation_folding, false, "only fold in basic blocks") | 250 DEFINE_bool(use_local_allocation_folding, false, "only fold in basic blocks") |
| 252 DEFINE_bool(use_write_barrier_elimination, true, | 251 DEFINE_bool(use_write_barrier_elimination, true, |
| 253 "eliminate write barriers targeting allocations in optimized code") | 252 "eliminate write barriers targeting allocations in optimized code") |
| 254 DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels") | 253 DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels") |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 #undef DEFINE_ALIAS_float | 912 #undef DEFINE_ALIAS_float |
| 914 #undef DEFINE_ALIAS_args | 913 #undef DEFINE_ALIAS_args |
| 915 | 914 |
| 916 #undef FLAG_MODE_DECLARE | 915 #undef FLAG_MODE_DECLARE |
| 917 #undef FLAG_MODE_DEFINE | 916 #undef FLAG_MODE_DEFINE |
| 918 #undef FLAG_MODE_DEFINE_DEFAULTS | 917 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 919 #undef FLAG_MODE_META | 918 #undef FLAG_MODE_META |
| 920 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 919 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 921 | 920 |
| 922 #undef COMMA | 921 #undef COMMA |
| OLD | NEW |