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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
161 DEFINE_implication(harmony, harmony_generators) | 161 DEFINE_implication(harmony, harmony_generators) |
162 DEFINE_implication(harmony_modules, harmony_scoping) | 162 DEFINE_implication(harmony_modules, harmony_scoping) |
163 DEFINE_implication(harmony_observation, harmony_collections) | 163 DEFINE_implication(harmony_observation, harmony_collections) |
164 DEFINE_implication(harmony, harmony_typed_arrays) | 164 DEFINE_implication(harmony, harmony_typed_arrays) |
165 | 165 |
166 // Flags for experimental implementation features. | 166 // Flags for experimental implementation features. |
167 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") | 167 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") |
168 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") | 168 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
169 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " | 169 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " |
170 "generate array elements transition stubs") | 170 "generate array elements transition stubs") |
171 DEFINE_bool(compiled_keyed_stores, false, "use optimizing compiler to " | 171 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to " |
mvstanton
2013/04/09 11:02:44
There was a cctest failure regarding pretenuring,
| |
172 "generate keyed store stubs") | 172 "generate keyed store stubs") |
173 DEFINE_bool(clever_optimizations, | 173 DEFINE_bool(clever_optimizations, |
174 true, | 174 true, |
175 "Optimize object size, Array shift, DOM strings and string +") | 175 "Optimize object size, Array shift, DOM strings and string +") |
176 DEFINE_bool(pretenure_literals, false, "allocate literals in old space") | 176 DEFINE_bool(pretenure_literals, false, "allocate literals in old space") |
177 | 177 |
178 // Flags for data representation optimizations | 178 // Flags for data representation optimizations |
179 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") | 179 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") |
180 DEFINE_bool(string_slices, true, "use string slices") | 180 DEFINE_bool(string_slices, true, "use string slices") |
181 | 181 |
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
754 #undef DEFINE_bool | 754 #undef DEFINE_bool |
755 #undef DEFINE_int | 755 #undef DEFINE_int |
756 #undef DEFINE_string | 756 #undef DEFINE_string |
757 #undef DEFINE_implication | 757 #undef DEFINE_implication |
758 | 758 |
759 #undef FLAG_MODE_DECLARE | 759 #undef FLAG_MODE_DECLARE |
760 #undef FLAG_MODE_DEFINE | 760 #undef FLAG_MODE_DEFINE |
761 #undef FLAG_MODE_DEFINE_DEFAULTS | 761 #undef FLAG_MODE_DEFINE_DEFAULTS |
762 #undef FLAG_MODE_META | 762 #undef FLAG_MODE_META |
763 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 763 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |