| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 DEFINE_implication(harmony_typed_arrays, harmony_array_buffer) | 171 DEFINE_implication(harmony_typed_arrays, harmony_array_buffer) |
| 172 DEFINE_bool(harmony_generators, false, "enable harmony generators") | 172 DEFINE_bool(harmony_generators, false, "enable harmony generators") |
| 173 DEFINE_bool(harmony_iteration, false, "enable harmony iteration (for-of)") | 173 DEFINE_bool(harmony_iteration, false, "enable harmony iteration (for-of)") |
| 174 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") | 174 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") |
| 175 DEFINE_implication(harmony, harmony_scoping) | 175 DEFINE_implication(harmony, harmony_scoping) |
| 176 DEFINE_implication(harmony, harmony_modules) | 176 DEFINE_implication(harmony, harmony_modules) |
| 177 DEFINE_implication(harmony, harmony_symbols) | 177 DEFINE_implication(harmony, harmony_symbols) |
| 178 DEFINE_implication(harmony, harmony_proxies) | 178 DEFINE_implication(harmony, harmony_proxies) |
| 179 DEFINE_implication(harmony, harmony_collections) | 179 DEFINE_implication(harmony, harmony_collections) |
| 180 DEFINE_implication(harmony, harmony_observation) | 180 DEFINE_implication(harmony, harmony_observation) |
| 181 // TODO(wingo): Re-enable when GC bug that appeared in r15060 is gone. | 181 DEFINE_implication(harmony, harmony_generators) |
| 182 // DEFINE_implication(harmony, harmony_generators) | |
| 183 DEFINE_implication(harmony, harmony_iteration) | 182 DEFINE_implication(harmony, harmony_iteration) |
| 184 DEFINE_implication(harmony_modules, harmony_scoping) | 183 DEFINE_implication(harmony_modules, harmony_scoping) |
| 185 DEFINE_implication(harmony_observation, harmony_collections) | 184 DEFINE_implication(harmony_observation, harmony_collections) |
| 186 // TODO[dslomov] add harmony => harmony_typed_arrays | 185 // TODO[dslomov] add harmony => harmony_typed_arrays |
| 187 | 186 |
| 188 // Flags for experimental implementation features. | 187 // Flags for experimental implementation features. |
| 189 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") | 188 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") |
| 190 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") | 189 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
| 191 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " | 190 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " |
| 192 "generate array elements transition stubs") | 191 "generate array elements transition stubs") |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 #undef DEFINE_bool | 796 #undef DEFINE_bool |
| 798 #undef DEFINE_int | 797 #undef DEFINE_int |
| 799 #undef DEFINE_string | 798 #undef DEFINE_string |
| 800 #undef DEFINE_implication | 799 #undef DEFINE_implication |
| 801 | 800 |
| 802 #undef FLAG_MODE_DECLARE | 801 #undef FLAG_MODE_DECLARE |
| 803 #undef FLAG_MODE_DEFINE | 802 #undef FLAG_MODE_DEFINE |
| 804 #undef FLAG_MODE_DEFINE_DEFAULTS | 803 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 805 #undef FLAG_MODE_META | 804 #undef FLAG_MODE_META |
| 806 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 805 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |