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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
170 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") | 170 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") |
171 DEFINE_implication(harmony, harmony_scoping) | 171 DEFINE_implication(harmony, harmony_scoping) |
172 DEFINE_implication(harmony, harmony_modules) | 172 DEFINE_implication(harmony, harmony_modules) |
173 DEFINE_implication(harmony, harmony_symbols) | 173 DEFINE_implication(harmony, harmony_symbols) |
174 DEFINE_implication(harmony, harmony_proxies) | 174 DEFINE_implication(harmony, harmony_proxies) |
175 DEFINE_implication(harmony, harmony_collections) | 175 DEFINE_implication(harmony, harmony_collections) |
176 DEFINE_implication(harmony, harmony_observation) | 176 DEFINE_implication(harmony, harmony_observation) |
177 DEFINE_implication(harmony, harmony_generators) | 177 DEFINE_implication(harmony, harmony_generators) |
178 DEFINE_implication(harmony_modules, harmony_scoping) | 178 DEFINE_implication(harmony_modules, harmony_scoping) |
179 DEFINE_implication(harmony_observation, harmony_collections) | 179 DEFINE_implication(harmony_observation, harmony_collections) |
180 DEFINE_implication(harmony, harmony_typed_arrays) | |
rossberg
2013/04/29 10:53:55
Maybe replace this line with a TODO comment
| |
181 | 180 |
182 // Flags for experimental implementation features. | 181 // Flags for experimental implementation features. |
183 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") | 182 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") |
184 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") | 183 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
185 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " | 184 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " |
186 "generate array elements transition stubs") | 185 "generate array elements transition stubs") |
187 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to " | 186 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to " |
188 "generate keyed store stubs") | 187 "generate keyed store stubs") |
189 DEFINE_bool(clever_optimizations, | 188 DEFINE_bool(clever_optimizations, |
190 true, | 189 true, |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
778 #undef DEFINE_bool | 777 #undef DEFINE_bool |
779 #undef DEFINE_int | 778 #undef DEFINE_int |
780 #undef DEFINE_string | 779 #undef DEFINE_string |
781 #undef DEFINE_implication | 780 #undef DEFINE_implication |
782 | 781 |
783 #undef FLAG_MODE_DECLARE | 782 #undef FLAG_MODE_DECLARE |
784 #undef FLAG_MODE_DEFINE | 783 #undef FLAG_MODE_DEFINE |
785 #undef FLAG_MODE_DEFINE_DEFAULTS | 784 #undef FLAG_MODE_DEFINE_DEFAULTS |
786 #undef FLAG_MODE_META | 785 #undef FLAG_MODE_META |
787 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 786 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |