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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 DEFINE_bool(use_peeling, false, "use loop peeling") | 113 DEFINE_bool(use_peeling, false, "use loop peeling") |
114 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") | 114 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") |
115 DEFINE_bool(use_inlining, true, "use function inlining") | 115 DEFINE_bool(use_inlining, true, "use function inlining") |
116 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") | 116 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") |
117 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") | 117 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") |
118 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") | 118 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") |
119 DEFINE_bool(time_hydrogen, false, "timing for hydrogen") | 119 DEFINE_bool(time_hydrogen, false, "timing for hydrogen") |
120 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") | 120 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") |
121 DEFINE_bool(trace_inlining, false, "trace inlining decisions") | 121 DEFINE_bool(trace_inlining, false, "trace inlining decisions") |
122 DEFINE_bool(trace_alloc, false, "trace register allocator") | 122 DEFINE_bool(trace_alloc, false, "trace register allocator") |
| 123 DEFINE_bool(trace_all_uses, false, "trace all use positions") |
123 DEFINE_bool(trace_range, false, "trace range analysis") | 124 DEFINE_bool(trace_range, false, "trace range analysis") |
124 DEFINE_bool(trace_gvn, false, "trace global value numbering") | 125 DEFINE_bool(trace_gvn, false, "trace global value numbering") |
125 DEFINE_bool(trace_representation, false, "trace representation types") | 126 DEFINE_bool(trace_representation, false, "trace representation types") |
126 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 127 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
127 DEFINE_bool(stress_environments, false, "environment for every instruction") | 128 DEFINE_bool(stress_environments, false, "environment for every instruction") |
128 DEFINE_int(deopt_every_n_times, | 129 DEFINE_int(deopt_every_n_times, |
129 0, | 130 0, |
130 "deoptimize every n times a deopt point is passed") | 131 "deoptimize every n times a deopt point is passed") |
131 DEFINE_bool(process_arguments_object, true, "try to deal with arguments object") | 132 DEFINE_bool(process_arguments_object, true, "try to deal with arguments object") |
132 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 133 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 #undef FLAG | 541 #undef FLAG |
541 | 542 |
542 #undef DEFINE_bool | 543 #undef DEFINE_bool |
543 #undef DEFINE_int | 544 #undef DEFINE_int |
544 #undef DEFINE_string | 545 #undef DEFINE_string |
545 | 546 |
546 #undef FLAG_MODE_DECLARE | 547 #undef FLAG_MODE_DECLARE |
547 #undef FLAG_MODE_DEFINE | 548 #undef FLAG_MODE_DEFINE |
548 #undef FLAG_MODE_DEFINE_DEFAULTS | 549 #undef FLAG_MODE_DEFINE_DEFAULTS |
549 #undef FLAG_MODE_META | 550 #undef FLAG_MODE_META |
OLD | NEW |