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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 DEFINE_implication(harmony, harmony_maths) | 200 DEFINE_implication(harmony, harmony_maths) |
201 DEFINE_implication(harmony_promises, harmony_collections) | 201 DEFINE_implication(harmony_promises, harmony_collections) |
202 DEFINE_implication(harmony_modules, harmony_scoping) | 202 DEFINE_implication(harmony_modules, harmony_scoping) |
203 DEFINE_implication(harmony_observation, harmony_collections) | 203 DEFINE_implication(harmony_observation, harmony_collections) |
204 | 204 |
205 // Flags for experimental implementation features. | 205 // Flags for experimental implementation features. |
206 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") | 206 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") |
207 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") | 207 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
208 DEFINE_bool(compiled_keyed_dictionary_loads, true, | 208 DEFINE_bool(compiled_keyed_dictionary_loads, true, |
209 "use optimizing compiler to generate keyed dictionary load stubs") | 209 "use optimizing compiler to generate keyed dictionary load stubs") |
| 210 DEFINE_bool(compiled_keyed_generic_loads, false, |
| 211 "use optimizing compiler to generate keyed generic load stubs") |
210 DEFINE_bool(clever_optimizations, true, | 212 DEFINE_bool(clever_optimizations, true, |
211 "Optimize object size, Array shift, DOM strings and string +") | 213 "Optimize object size, Array shift, DOM strings and string +") |
212 DEFINE_bool(pretenuring, true, "allocate objects in old space") | 214 DEFINE_bool(pretenuring, true, "allocate objects in old space") |
213 // TODO(hpayer): We will remove this flag as soon as we have pretenuring | 215 // TODO(hpayer): We will remove this flag as soon as we have pretenuring |
214 // support for specific allocation sites. | 216 // support for specific allocation sites. |
215 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") | 217 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") |
216 DEFINE_bool(allocation_site_pretenuring, false, | 218 DEFINE_bool(allocation_site_pretenuring, false, |
217 "pretenure with allocation sites") | 219 "pretenure with allocation sites") |
218 DEFINE_bool(trace_pretenuring, false, | 220 DEFINE_bool(trace_pretenuring, false, |
219 "trace pretenuring decisions of HAllocate instructions") | 221 "trace pretenuring decisions of HAllocate instructions") |
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
898 #undef DEFINE_ALIAS_float | 900 #undef DEFINE_ALIAS_float |
899 #undef DEFINE_ALIAS_args | 901 #undef DEFINE_ALIAS_args |
900 | 902 |
901 #undef FLAG_MODE_DECLARE | 903 #undef FLAG_MODE_DECLARE |
902 #undef FLAG_MODE_DEFINE | 904 #undef FLAG_MODE_DEFINE |
903 #undef FLAG_MODE_DEFINE_DEFAULTS | 905 #undef FLAG_MODE_DEFINE_DEFAULTS |
904 #undef FLAG_MODE_META | 906 #undef FLAG_MODE_META |
905 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 907 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
906 | 908 |
907 #undef COMMA | 909 #undef COMMA |
OLD | NEW |