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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
111 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping") | 111 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping") |
112 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") | 112 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") |
113 DEFINE_bool(harmony_collections, false, | 113 DEFINE_bool(harmony_collections, false, |
114 "enable harmony collections (sets, maps, and weak maps)") | 114 "enable harmony collections (sets, maps, and weak maps)") |
115 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") | 115 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") |
116 DEFINE_implication(harmony, harmony_scoping) | 116 DEFINE_implication(harmony, harmony_scoping) |
117 DEFINE_implication(harmony, harmony_proxies) | 117 DEFINE_implication(harmony, harmony_proxies) |
118 DEFINE_implication(harmony, harmony_collections) | 118 DEFINE_implication(harmony, harmony_collections) |
119 | 119 |
120 // Flags for experimental implementation features. | 120 // Flags for experimental implementation features. |
121 DEFINE_bool(smi_only_arrays, false, "tracks arrays with only smi values") | 121 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") |
fschneider
2012/02/09 08:43:32
Not sure if this is intended.
| |
122 DEFINE_bool(clever_optimizations, | 122 DEFINE_bool(clever_optimizations, |
123 true, | 123 true, |
124 "Optimize object size, Array shift, DOM strings and string +") | 124 "Optimize object size, Array shift, DOM strings and string +") |
125 | 125 |
126 // Flags for data representation optimizations | 126 // Flags for data representation optimizations |
127 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") | 127 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") |
128 DEFINE_bool(string_slices, true, "use string slices") | 128 DEFINE_bool(string_slices, true, "use string slices") |
129 | 129 |
130 // Flags for Crankshaft. | 130 // Flags for Crankshaft. |
131 DEFINE_bool(crankshaft, true, "use crankshaft") | 131 DEFINE_bool(crankshaft, true, "use crankshaft") |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
579 #undef DEFINE_bool | 579 #undef DEFINE_bool |
580 #undef DEFINE_int | 580 #undef DEFINE_int |
581 #undef DEFINE_string | 581 #undef DEFINE_string |
582 #undef DEFINE_implication | 582 #undef DEFINE_implication |
583 | 583 |
584 #undef FLAG_MODE_DECLARE | 584 #undef FLAG_MODE_DECLARE |
585 #undef FLAG_MODE_DEFINE | 585 #undef FLAG_MODE_DEFINE |
586 #undef FLAG_MODE_DEFINE_DEFAULTS | 586 #undef FLAG_MODE_DEFINE_DEFAULTS |
587 #undef FLAG_MODE_META | 587 #undef FLAG_MODE_META |
588 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 588 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |