| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 DEFINE_bool(stress_environments, false, "environment for every instruction") | 190 DEFINE_bool(stress_environments, false, "environment for every instruction") |
| 191 DEFINE_int(deopt_every_n_times, | 191 DEFINE_int(deopt_every_n_times, |
| 192 0, | 192 0, |
| 193 "deoptimize every n times a deopt point is passed") | 193 "deoptimize every n times a deopt point is passed") |
| 194 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 194 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
| 195 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 195 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
| 196 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 196 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
| 197 DEFINE_bool(use_osr, true, "use on-stack replacement") | 197 DEFINE_bool(use_osr, true, "use on-stack replacement") |
| 198 DEFINE_bool(array_bounds_checks_elimination, true, | 198 DEFINE_bool(array_bounds_checks_elimination, true, |
| 199 "perform array bounds checks elimination") | 199 "perform array bounds checks elimination") |
| 200 DEFINE_bool(array_index_dehoisting, true, | 200 DEFINE_bool(array_index_dehoisting, false, |
| 201 "perform array index dehoisting") | 201 "perform array index dehoisting") |
| 202 | 202 |
| 203 DEFINE_bool(trace_osr, false, "trace on-stack replacement") | 203 DEFINE_bool(trace_osr, false, "trace on-stack replacement") |
| 204 DEFINE_int(stress_runs, 0, "number of stress runs") | 204 DEFINE_int(stress_runs, 0, "number of stress runs") |
| 205 DEFINE_bool(optimize_closures, true, "optimize closures") | 205 DEFINE_bool(optimize_closures, true, "optimize closures") |
| 206 DEFINE_bool(inline_construct, true, "inline constructor calls") | 206 DEFINE_bool(inline_construct, true, "inline constructor calls") |
| 207 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") | 207 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") |
| 208 DEFINE_int(loop_weight, 1, "loop weight for representation inference") | 208 DEFINE_int(loop_weight, 1, "loop weight for representation inference") |
| 209 | 209 |
| 210 DEFINE_bool(optimize_for_in, true, | 210 DEFINE_bool(optimize_for_in, true, |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 #undef DEFINE_bool | 655 #undef DEFINE_bool |
| 656 #undef DEFINE_int | 656 #undef DEFINE_int |
| 657 #undef DEFINE_string | 657 #undef DEFINE_string |
| 658 #undef DEFINE_implication | 658 #undef DEFINE_implication |
| 659 | 659 |
| 660 #undef FLAG_MODE_DECLARE | 660 #undef FLAG_MODE_DECLARE |
| 661 #undef FLAG_MODE_DEFINE | 661 #undef FLAG_MODE_DEFINE |
| 662 #undef FLAG_MODE_DEFINE_DEFAULTS | 662 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 663 #undef FLAG_MODE_META | 663 #undef FLAG_MODE_META |
| 664 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 664 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |