OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 DEFINE_bool(crankshaft, false, "use crankshaft") | 103 DEFINE_bool(crankshaft, false, "use crankshaft") |
104 #endif | 104 #endif |
105 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") | 105 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") |
106 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation") | 106 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation") |
107 DEFINE_bool(build_lithium, true, "use lithium chunk builder") | 107 DEFINE_bool(build_lithium, true, "use lithium chunk builder") |
108 DEFINE_bool(alloc_lithium, true, "use lithium register allocator") | 108 DEFINE_bool(alloc_lithium, true, "use lithium register allocator") |
109 DEFINE_bool(use_lithium, true, "use lithium code generator") | 109 DEFINE_bool(use_lithium, true, "use lithium code generator") |
110 DEFINE_bool(use_range, true, "use hydrogen range analysis") | 110 DEFINE_bool(use_range, true, "use hydrogen range analysis") |
111 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis") | 111 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis") |
112 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") | 112 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") |
113 DEFINE_bool(use_peeling, false, "use loop peeling") | |
114 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") | 113 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") |
115 DEFINE_bool(use_inlining, true, "use function inlining") | 114 DEFINE_bool(use_inlining, true, "use function inlining") |
116 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") | 115 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") |
117 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") | 116 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") |
118 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") | 117 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") |
119 DEFINE_bool(time_hydrogen, false, "timing for hydrogen") | 118 DEFINE_bool(time_hydrogen, false, "timing for hydrogen") |
120 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") | 119 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") |
121 DEFINE_bool(trace_inlining, false, "trace inlining decisions") | 120 DEFINE_bool(trace_inlining, false, "trace inlining decisions") |
122 DEFINE_bool(trace_alloc, false, "trace register allocator") | 121 DEFINE_bool(trace_alloc, false, "trace register allocator") |
123 DEFINE_bool(trace_all_uses, false, "trace all use positions") | 122 DEFINE_bool(trace_all_uses, false, "trace all use positions") |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 #undef FLAG | 537 #undef FLAG |
539 | 538 |
540 #undef DEFINE_bool | 539 #undef DEFINE_bool |
541 #undef DEFINE_int | 540 #undef DEFINE_int |
542 #undef DEFINE_string | 541 #undef DEFINE_string |
543 | 542 |
544 #undef FLAG_MODE_DECLARE | 543 #undef FLAG_MODE_DECLARE |
545 #undef FLAG_MODE_DEFINE | 544 #undef FLAG_MODE_DEFINE |
546 #undef FLAG_MODE_DEFINE_DEFAULTS | 545 #undef FLAG_MODE_DEFINE_DEFAULTS |
547 #undef FLAG_MODE_META | 546 #undef FLAG_MODE_META |
OLD | NEW |