| 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 #undef DEFINE_ALIAS_float | 881 #undef DEFINE_ALIAS_float |
| 880 #undef DEFINE_ALIAS_args | 882 #undef DEFINE_ALIAS_args |
| 881 | 883 |
| 882 #undef FLAG_MODE_DECLARE | 884 #undef FLAG_MODE_DECLARE |
| 883 #undef FLAG_MODE_DEFINE | 885 #undef FLAG_MODE_DEFINE |
| 884 #undef FLAG_MODE_DEFINE_DEFAULTS | 886 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 885 #undef FLAG_MODE_META | 887 #undef FLAG_MODE_META |
| 886 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 888 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 887 | 889 |
| 888 #undef COMMA | 890 #undef COMMA |
| OLD | NEW |