| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 0, | 259 0, |
| 260 "deoptimize every n garbage collections") | 260 "deoptimize every n garbage collections") |
| 261 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points") | 261 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points") |
| 262 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 262 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
| 263 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 263 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
| 264 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 264 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
| 265 DEFINE_bool(use_osr, true, "use on-stack replacement") | 265 DEFINE_bool(use_osr, true, "use on-stack replacement") |
| 266 DEFINE_bool(idefs, false, "use informative definitions") | 266 DEFINE_bool(idefs, false, "use informative definitions") |
| 267 DEFINE_bool(array_bounds_checks_elimination, true, | 267 DEFINE_bool(array_bounds_checks_elimination, true, |
| 268 "perform array bounds checks elimination") | 268 "perform array bounds checks elimination") |
| 269 DEFINE_bool(array_bounds_checks_hoisting, false, | 269 DEFINE_bool(array_bounds_checks_hoisting, true, |
| 270 "perform array bounds checks hoisting") | 270 "perform array bounds checks hoisting") |
| 271 DEFINE_bool(array_index_dehoisting, true, | 271 DEFINE_bool(array_index_dehoisting, true, |
| 272 "perform array index dehoisting") | 272 "perform array index dehoisting") |
| 273 DEFINE_bool(analyze_environment_liveness, true, | 273 DEFINE_bool(analyze_environment_liveness, true, |
| 274 "analyze liveness of environment slots and zap dead values") | 274 "analyze liveness of environment slots and zap dead values") |
| 275 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") | 275 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") |
| 276 DEFINE_bool(fold_constants, true, "use constant folding") | 276 DEFINE_bool(fold_constants, true, "use constant folding") |
| 277 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") | 277 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") |
| 278 DEFINE_bool(unreachable_code_elimination, false, | 278 DEFINE_bool(unreachable_code_elimination, false, |
| 279 "eliminate unreachable code (hidden behind soft deopts)") | 279 "eliminate unreachable code (hidden behind soft deopts)") |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 #undef DEFINE_bool | 813 #undef DEFINE_bool |
| 814 #undef DEFINE_int | 814 #undef DEFINE_int |
| 815 #undef DEFINE_string | 815 #undef DEFINE_string |
| 816 #undef DEFINE_implication | 816 #undef DEFINE_implication |
| 817 | 817 |
| 818 #undef FLAG_MODE_DECLARE | 818 #undef FLAG_MODE_DECLARE |
| 819 #undef FLAG_MODE_DEFINE | 819 #undef FLAG_MODE_DEFINE |
| 820 #undef FLAG_MODE_DEFINE_DEFAULTS | 820 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 821 #undef FLAG_MODE_META | 821 #undef FLAG_MODE_META |
| 822 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 822 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |