| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 DEFINE_bool(harmony_typeof, false, "enable harmony semantics for typeof") | 100 DEFINE_bool(harmony_typeof, false, "enable harmony semantics for typeof") |
| 101 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping") | 101 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping") |
| 102 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") | 102 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") |
| 103 DEFINE_bool(harmony_collections, false, | 103 DEFINE_bool(harmony_collections, false, |
| 104 "enable harmony collections (sets, maps, and weak maps)") | 104 "enable harmony collections (sets, maps, and weak maps)") |
| 105 DEFINE_bool(harmony, false, "enable all harmony features") | 105 DEFINE_bool(harmony, false, "enable all harmony features") |
| 106 | 106 |
| 107 // Flags for experimental implementation features. | 107 // Flags for experimental implementation features. |
| 108 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") | 108 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") |
| 109 DEFINE_bool(smi_only_arrays, false, "tracks arrays with only smi values") | 109 DEFINE_bool(smi_only_arrays, false, "tracks arrays with only smi values") |
| 110 DEFINE_bool(string_slices, true, "use string slices") | 110 DEFINE_bool(string_slices, false, "use string slices") |
| 111 | 111 |
| 112 DEFINE_bool(clever_optimizations, | 112 DEFINE_bool(clever_optimizations, |
| 113 true, | 113 true, |
| 114 "Optimize object size, Array shift, DOM strings and string +") | 114 "Optimize object size, Array shift, DOM strings and string +") |
| 115 | 115 |
| 116 // Flags for Crankshaft. | 116 // Flags for Crankshaft. |
| 117 DEFINE_bool(crankshaft, true, "use crankshaft") | 117 DEFINE_bool(crankshaft, true, "use crankshaft") |
| 118 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") | 118 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") |
| 119 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation") | 119 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation") |
| 120 DEFINE_bool(build_lithium, true, "use lithium chunk builder") | 120 DEFINE_bool(build_lithium, true, "use lithium chunk builder") |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 #undef FLAG | 547 #undef FLAG |
| 548 | 548 |
| 549 #undef DEFINE_bool | 549 #undef DEFINE_bool |
| 550 #undef DEFINE_int | 550 #undef DEFINE_int |
| 551 #undef DEFINE_string | 551 #undef DEFINE_string |
| 552 | 552 |
| 553 #undef FLAG_MODE_DECLARE | 553 #undef FLAG_MODE_DECLARE |
| 554 #undef FLAG_MODE_DEFINE | 554 #undef FLAG_MODE_DEFINE |
| 555 #undef FLAG_MODE_DEFINE_DEFAULTS | 555 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 556 #undef FLAG_MODE_META | 556 #undef FLAG_MODE_META |
| OLD | NEW |