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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 DEFINE_implication(harmony, harmony_numeric_literals) | 187 DEFINE_implication(harmony, harmony_numeric_literals) |
188 DEFINE_implication(harmony, harmony_strings) | 188 DEFINE_implication(harmony, harmony_strings) |
189 DEFINE_implication(harmony, harmony_arrays) | 189 DEFINE_implication(harmony, harmony_arrays) |
190 DEFINE_implication(harmony_modules, harmony_scoping) | 190 DEFINE_implication(harmony_modules, harmony_scoping) |
191 DEFINE_implication(harmony_observation, harmony_collections) | 191 DEFINE_implication(harmony_observation, harmony_collections) |
192 // TODO[dslomov] add harmony => harmony_typed_arrays | 192 // TODO[dslomov] add harmony => harmony_typed_arrays |
193 | 193 |
194 // Flags for experimental implementation features. | 194 // Flags for experimental implementation features. |
195 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") | 195 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") |
196 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") | 196 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
197 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to " | |
198 "generate keyed store stubs") | |
199 DEFINE_bool(clever_optimizations, | 197 DEFINE_bool(clever_optimizations, |
200 true, | 198 true, |
201 "Optimize object size, Array shift, DOM strings and string +") | 199 "Optimize object size, Array shift, DOM strings and string +") |
202 DEFINE_bool(pretenuring, true, "allocate objects in old space") | 200 DEFINE_bool(pretenuring, true, "allocate objects in old space") |
203 // TODO(hpayer): We will remove this flag as soon as we have pretenuring | 201 // TODO(hpayer): We will remove this flag as soon as we have pretenuring |
204 // support for specific allocation sites. | 202 // support for specific allocation sites. |
205 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") | 203 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") |
206 DEFINE_bool(track_fields, true, "track fields with only smi values") | 204 DEFINE_bool(track_fields, true, "track fields with only smi values") |
207 DEFINE_bool(track_double_fields, true, "track fields with double values") | 205 DEFINE_bool(track_double_fields, true, "track fields with double values") |
208 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") | 206 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") |
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 #undef DEFINE_bool | 809 #undef DEFINE_bool |
812 #undef DEFINE_int | 810 #undef DEFINE_int |
813 #undef DEFINE_string | 811 #undef DEFINE_string |
814 #undef DEFINE_implication | 812 #undef DEFINE_implication |
815 | 813 |
816 #undef FLAG_MODE_DECLARE | 814 #undef FLAG_MODE_DECLARE |
817 #undef FLAG_MODE_DEFINE | 815 #undef FLAG_MODE_DEFINE |
818 #undef FLAG_MODE_DEFINE_DEFAULTS | 816 #undef FLAG_MODE_DEFINE_DEFAULTS |
819 #undef FLAG_MODE_META | 817 #undef FLAG_MODE_META |
820 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 818 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |