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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 DEFINE_bool(alloc_lithium, true, "use lithium register allocator") | 121 DEFINE_bool(alloc_lithium, true, "use lithium register allocator") |
122 DEFINE_bool(use_lithium, true, "use lithium code generator") | 122 DEFINE_bool(use_lithium, true, "use lithium code generator") |
123 DEFINE_bool(use_range, true, "use hydrogen range analysis") | 123 DEFINE_bool(use_range, true, "use hydrogen range analysis") |
124 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis") | 124 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis") |
125 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") | 125 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") |
126 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") | 126 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") |
127 DEFINE_bool(use_inlining, true, "use function inlining") | 127 DEFINE_bool(use_inlining, true, "use function inlining") |
128 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") | 128 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") |
129 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") | 129 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") |
130 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") | 130 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") |
| 131 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, |
| 132 true, |
| 133 "crankshaft harvests type feedback from stub cache") |
131 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") | 134 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") |
132 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") | 135 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") |
133 DEFINE_bool(trace_inlining, false, "trace inlining decisions") | 136 DEFINE_bool(trace_inlining, false, "trace inlining decisions") |
134 DEFINE_bool(trace_alloc, false, "trace register allocator") | 137 DEFINE_bool(trace_alloc, false, "trace register allocator") |
135 DEFINE_bool(trace_all_uses, false, "trace all use positions") | 138 DEFINE_bool(trace_all_uses, false, "trace all use positions") |
136 DEFINE_bool(trace_range, false, "trace range analysis") | 139 DEFINE_bool(trace_range, false, "trace range analysis") |
137 DEFINE_bool(trace_gvn, false, "trace global value numbering") | 140 DEFINE_bool(trace_gvn, false, "trace global value numbering") |
138 DEFINE_bool(trace_representation, false, "trace representation types") | 141 DEFINE_bool(trace_representation, false, "trace representation types") |
139 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 142 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
140 DEFINE_bool(stress_environments, false, "environment for every instruction") | 143 DEFINE_bool(stress_environments, false, "environment for every instruction") |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 #undef FLAG | 549 #undef FLAG |
547 | 550 |
548 #undef DEFINE_bool | 551 #undef DEFINE_bool |
549 #undef DEFINE_int | 552 #undef DEFINE_int |
550 #undef DEFINE_string | 553 #undef DEFINE_string |
551 | 554 |
552 #undef FLAG_MODE_DECLARE | 555 #undef FLAG_MODE_DECLARE |
553 #undef FLAG_MODE_DEFINE | 556 #undef FLAG_MODE_DEFINE |
554 #undef FLAG_MODE_DEFINE_DEFAULTS | 557 #undef FLAG_MODE_DEFINE_DEFAULTS |
555 #undef FLAG_MODE_META | 558 #undef FLAG_MODE_META |
OLD | NEW |