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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 DEFINE_implication(harmony, harmony_modules) | 151 DEFINE_implication(harmony, harmony_modules) |
152 DEFINE_implication(harmony, harmony_proxies) | 152 DEFINE_implication(harmony, harmony_proxies) |
153 DEFINE_implication(harmony, harmony_collections) | 153 DEFINE_implication(harmony, harmony_collections) |
154 DEFINE_implication(harmony, harmony_observation) | 154 DEFINE_implication(harmony, harmony_observation) |
155 DEFINE_implication(harmony_modules, harmony_scoping) | 155 DEFINE_implication(harmony_modules, harmony_scoping) |
156 DEFINE_implication(harmony_observation, harmony_collections) | 156 DEFINE_implication(harmony_observation, harmony_collections) |
157 | 157 |
158 // Flags for experimental implementation features. | 158 // Flags for experimental implementation features. |
159 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") | 159 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") |
160 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") | 160 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
| 161 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " |
| 162 "generate array elements transition stubs") |
161 DEFINE_bool(clever_optimizations, | 163 DEFINE_bool(clever_optimizations, |
162 true, | 164 true, |
163 "Optimize object size, Array shift, DOM strings and string +") | 165 "Optimize object size, Array shift, DOM strings and string +") |
164 | 166 |
165 // Flags for data representation optimizations | 167 // Flags for data representation optimizations |
166 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") | 168 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") |
167 DEFINE_bool(string_slices, true, "use string slices") | 169 DEFINE_bool(string_slices, true, "use string slices") |
168 | 170 |
169 // Flags for Crankshaft. | 171 // Flags for Crankshaft. |
170 DEFINE_bool(crankshaft, true, "use crankshaft") | 172 DEFINE_bool(crankshaft, true, "use crankshaft") |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 #undef DEFINE_bool | 731 #undef DEFINE_bool |
730 #undef DEFINE_int | 732 #undef DEFINE_int |
731 #undef DEFINE_string | 733 #undef DEFINE_string |
732 #undef DEFINE_implication | 734 #undef DEFINE_implication |
733 | 735 |
734 #undef FLAG_MODE_DECLARE | 736 #undef FLAG_MODE_DECLARE |
735 #undef FLAG_MODE_DEFINE | 737 #undef FLAG_MODE_DEFINE |
736 #undef FLAG_MODE_DEFINE_DEFAULTS | 738 #undef FLAG_MODE_DEFINE_DEFAULTS |
737 #undef FLAG_MODE_META | 739 #undef FLAG_MODE_META |
738 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 740 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |