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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 DEFINE_implication(harmony, harmony_numeric_literals) | 195 DEFINE_implication(harmony, harmony_numeric_literals) |
196 DEFINE_implication(harmony, harmony_strings) | 196 DEFINE_implication(harmony, harmony_strings) |
197 DEFINE_implication(harmony, harmony_arrays) | 197 DEFINE_implication(harmony, harmony_arrays) |
198 DEFINE_implication(harmony, harmony_maths) | 198 DEFINE_implication(harmony, harmony_maths) |
199 DEFINE_implication(harmony_modules, harmony_scoping) | 199 DEFINE_implication(harmony_modules, harmony_scoping) |
200 DEFINE_implication(harmony_observation, harmony_collections) | 200 DEFINE_implication(harmony_observation, harmony_collections) |
201 | 201 |
202 // Flags for experimental implementation features. | 202 // Flags for experimental implementation features. |
203 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") | 203 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") |
204 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") | 204 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
| 205 DEFINE_bool(compiled_keyed_dictionary_loads, false, |
| 206 "use optimizing compiler to generate keyed dictionary load stubs") |
205 DEFINE_bool(clever_optimizations, true, | 207 DEFINE_bool(clever_optimizations, true, |
206 "Optimize object size, Array shift, DOM strings and string +") | 208 "Optimize object size, Array shift, DOM strings and string +") |
207 DEFINE_bool(pretenuring, true, "allocate objects in old space") | 209 DEFINE_bool(pretenuring, true, "allocate objects in old space") |
208 // TODO(hpayer): We will remove this flag as soon as we have pretenuring | 210 // TODO(hpayer): We will remove this flag as soon as we have pretenuring |
209 // support for specific allocation sites. | 211 // support for specific allocation sites. |
210 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") | 212 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") |
211 DEFINE_bool(allocation_site_pretenuring, false, | 213 DEFINE_bool(allocation_site_pretenuring, false, |
212 "pretenure with allocation sites") | 214 "pretenure with allocation sites") |
213 DEFINE_bool(track_fields, true, "track fields with only smi values") | 215 DEFINE_bool(track_fields, true, "track fields with only smi values") |
214 DEFINE_bool(track_double_fields, true, "track fields with double values") | 216 DEFINE_bool(track_double_fields, true, "track fields with double values") |
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
890 #undef DEFINE_ALIAS_float | 892 #undef DEFINE_ALIAS_float |
891 #undef DEFINE_ALIAS_args | 893 #undef DEFINE_ALIAS_args |
892 | 894 |
893 #undef FLAG_MODE_DECLARE | 895 #undef FLAG_MODE_DECLARE |
894 #undef FLAG_MODE_DEFINE | 896 #undef FLAG_MODE_DEFINE |
895 #undef FLAG_MODE_DEFINE_DEFAULTS | 897 #undef FLAG_MODE_DEFINE_DEFAULTS |
896 #undef FLAG_MODE_META | 898 #undef FLAG_MODE_META |
897 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 899 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
898 | 900 |
899 #undef COMMA | 901 #undef COMMA |
OLD | NEW |