| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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") |
| 132 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") | 132 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") |
| 133 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation") | |
| 134 DEFINE_bool(build_lithium, true, "use lithium chunk builder") | |
| 135 DEFINE_bool(alloc_lithium, true, "use lithium register allocator") | |
| 136 DEFINE_bool(use_lithium, true, "use lithium code generator") | |
| 137 DEFINE_bool(use_range, true, "use hydrogen range analysis") | 133 DEFINE_bool(use_range, true, "use hydrogen range analysis") |
| 138 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis") | 134 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis") |
| 139 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") | 135 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") |
| 140 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") | 136 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") |
| 141 DEFINE_bool(use_inlining, true, "use function inlining") | 137 DEFINE_bool(use_inlining, true, "use function inlining") |
| 142 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") | 138 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") |
| 143 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") | 139 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") |
| 144 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") | 140 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") |
| 145 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, | 141 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, |
| 146 true, | 142 true, |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 #undef DEFINE_bool | 579 #undef DEFINE_bool |
| 584 #undef DEFINE_int | 580 #undef DEFINE_int |
| 585 #undef DEFINE_string | 581 #undef DEFINE_string |
| 586 #undef DEFINE_implication | 582 #undef DEFINE_implication |
| 587 | 583 |
| 588 #undef FLAG_MODE_DECLARE | 584 #undef FLAG_MODE_DECLARE |
| 589 #undef FLAG_MODE_DEFINE | 585 #undef FLAG_MODE_DEFINE |
| 590 #undef FLAG_MODE_DEFINE_DEFAULTS | 586 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 591 #undef FLAG_MODE_META | 587 #undef FLAG_MODE_META |
| 592 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 588 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |