| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 DEFINE_implication(track_double_fields, track_fields) | 202 DEFINE_implication(track_double_fields, track_fields) |
| 203 DEFINE_implication(track_heap_object_fields, track_fields) | 203 DEFINE_implication(track_heap_object_fields, track_fields) |
| 204 DEFINE_implication(track_computed_fields, track_fields) | 204 DEFINE_implication(track_computed_fields, track_fields) |
| 205 | 205 |
| 206 // Flags for data representation optimizations | 206 // Flags for data representation optimizations |
| 207 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") | 207 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") |
| 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_bool(crankshaft_try_support, true, |
| 213 "make crankshaft support try statements") |
| 212 DEFINE_string(hydrogen_filter, "", "optimization filter") | 214 DEFINE_string(hydrogen_filter, "", "optimization filter") |
| 213 DEFINE_bool(use_range, true, "use hydrogen range analysis") | 215 DEFINE_bool(use_range, true, "use hydrogen range analysis") |
| 214 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") | 216 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") |
| 215 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") | 217 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") |
| 216 DEFINE_bool(use_inlining, true, "use function inlining") | 218 DEFINE_bool(use_inlining, true, "use function inlining") |
| 217 DEFINE_int(max_inlined_source_size, 600, | 219 DEFINE_int(max_inlined_source_size, 600, |
| 218 "maximum source size in bytes considered for a single inlining") | 220 "maximum source size in bytes considered for a single inlining") |
| 219 DEFINE_int(max_inlined_nodes, 196, | 221 DEFINE_int(max_inlined_nodes, 196, |
| 220 "maximum number of AST nodes considered for a single inlining") | 222 "maximum number of AST nodes considered for a single inlining") |
| 221 DEFINE_int(max_inlined_nodes_cumulative, 196, | 223 DEFINE_int(max_inlined_nodes_cumulative, 196, |
| (...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 #undef DEFINE_bool | 795 #undef DEFINE_bool |
| 794 #undef DEFINE_int | 796 #undef DEFINE_int |
| 795 #undef DEFINE_string | 797 #undef DEFINE_string |
| 796 #undef DEFINE_implication | 798 #undef DEFINE_implication |
| 797 | 799 |
| 798 #undef FLAG_MODE_DECLARE | 800 #undef FLAG_MODE_DECLARE |
| 799 #undef FLAG_MODE_DEFINE | 801 #undef FLAG_MODE_DEFINE |
| 800 #undef FLAG_MODE_DEFINE_DEFAULTS | 802 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 801 #undef FLAG_MODE_META | 803 #undef FLAG_MODE_META |
| 802 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 804 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |