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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") | 213 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") |
214 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") | 214 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
215 DEFINE_bool(compiled_keyed_dictionary_loads, true, | 215 DEFINE_bool(compiled_keyed_dictionary_loads, true, |
216 "use optimizing compiler to generate keyed dictionary load stubs") | 216 "use optimizing compiler to generate keyed dictionary load stubs") |
217 DEFINE_bool(clever_optimizations, true, | 217 DEFINE_bool(clever_optimizations, true, |
218 "Optimize object size, Array shift, DOM strings and string +") | 218 "Optimize object size, Array shift, DOM strings and string +") |
219 DEFINE_bool(pretenuring, true, "allocate objects in old space") | 219 DEFINE_bool(pretenuring, true, "allocate objects in old space") |
220 // TODO(hpayer): We will remove this flag as soon as we have pretenuring | 220 // TODO(hpayer): We will remove this flag as soon as we have pretenuring |
221 // support for specific allocation sites. | 221 // support for specific allocation sites. |
222 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") | 222 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") |
223 DEFINE_bool(allocation_site_pretenuring, true, | 223 DEFINE_bool(allocation_site_pretenuring, false, |
224 "pretenure with allocation sites") | 224 "pretenure with allocation sites") |
225 DEFINE_bool(trace_pretenuring, false, | 225 DEFINE_bool(trace_pretenuring, false, |
226 "trace pretenuring decisions of HAllocate instructions") | 226 "trace pretenuring decisions of HAllocate instructions") |
227 DEFINE_bool(track_fields, true, "track fields with only smi values") | 227 DEFINE_bool(track_fields, true, "track fields with only smi values") |
228 DEFINE_bool(track_double_fields, true, "track fields with double values") | 228 DEFINE_bool(track_double_fields, true, "track fields with double values") |
229 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") | 229 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") |
230 DEFINE_bool(track_computed_fields, true, "track computed boilerplate fields") | 230 DEFINE_bool(track_computed_fields, true, "track computed boilerplate fields") |
231 DEFINE_implication(track_double_fields, track_fields) | 231 DEFINE_implication(track_double_fields, track_fields) |
232 DEFINE_implication(track_heap_object_fields, track_fields) | 232 DEFINE_implication(track_heap_object_fields, track_fields) |
233 DEFINE_implication(track_computed_fields, track_fields) | 233 DEFINE_implication(track_computed_fields, track_fields) |
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 #undef DEFINE_ALIAS_float | 895 #undef DEFINE_ALIAS_float |
896 #undef DEFINE_ALIAS_args | 896 #undef DEFINE_ALIAS_args |
897 | 897 |
898 #undef FLAG_MODE_DECLARE | 898 #undef FLAG_MODE_DECLARE |
899 #undef FLAG_MODE_DEFINE | 899 #undef FLAG_MODE_DEFINE |
900 #undef FLAG_MODE_DEFINE_DEFAULTS | 900 #undef FLAG_MODE_DEFINE_DEFAULTS |
901 #undef FLAG_MODE_META | 901 #undef FLAG_MODE_META |
902 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 902 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
903 | 903 |
904 #undef COMMA | 904 #undef COMMA |
OLD | NEW |