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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 DEFINE_bool(trace_gvn, false, "trace global value numbering") | 130 DEFINE_bool(trace_gvn, false, "trace global value numbering") |
131 DEFINE_bool(trace_representation, false, "trace representation types") | 131 DEFINE_bool(trace_representation, false, "trace representation types") |
132 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 132 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
133 DEFINE_bool(stress_environments, false, "environment for every instruction") | 133 DEFINE_bool(stress_environments, false, "environment for every instruction") |
134 DEFINE_int(deopt_every_n_times, | 134 DEFINE_int(deopt_every_n_times, |
135 0, | 135 0, |
136 "deoptimize every n times a deopt point is passed") | 136 "deoptimize every n times a deopt point is passed") |
137 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 137 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
138 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 138 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
139 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 139 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
140 DEFINE_bool(aggressive_loop_invariant_motion, true, | |
141 "aggressive motion of instructions out of loops") | |
142 DEFINE_bool(use_osr, true, "use on-stack replacement") | 140 DEFINE_bool(use_osr, true, "use on-stack replacement") |
143 | 141 |
144 DEFINE_bool(trace_osr, false, "trace on-stack replacement") | 142 DEFINE_bool(trace_osr, false, "trace on-stack replacement") |
145 DEFINE_int(stress_runs, 0, "number of stress runs") | 143 DEFINE_int(stress_runs, 0, "number of stress runs") |
146 DEFINE_bool(optimize_closures, true, "optimize closures") | 144 DEFINE_bool(optimize_closures, true, "optimize closures") |
147 | 145 |
148 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc | 146 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc |
149 DEFINE_bool(debug_code, false, | 147 DEFINE_bool(debug_code, false, |
150 "generate extra code (assertions) for debugging") | 148 "generate extra code (assertions) for debugging") |
151 DEFINE_bool(code_comments, false, "emit comments in code disassembly") | 149 DEFINE_bool(code_comments, false, "emit comments in code disassembly") |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 #undef FLAG | 531 #undef FLAG |
534 | 532 |
535 #undef DEFINE_bool | 533 #undef DEFINE_bool |
536 #undef DEFINE_int | 534 #undef DEFINE_int |
537 #undef DEFINE_string | 535 #undef DEFINE_string |
538 | 536 |
539 #undef FLAG_MODE_DECLARE | 537 #undef FLAG_MODE_DECLARE |
540 #undef FLAG_MODE_DEFINE | 538 #undef FLAG_MODE_DEFINE |
541 #undef FLAG_MODE_DEFINE_DEFAULTS | 539 #undef FLAG_MODE_DEFINE_DEFAULTS |
542 #undef FLAG_MODE_META | 540 #undef FLAG_MODE_META |
OLD | NEW |