| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 0, | 247 0, |
| 248 "deoptimize every n times a deopt point is passed") | 248 "deoptimize every n times a deopt point is passed") |
| 249 DEFINE_int(deopt_every_n_garbage_collections, | 249 DEFINE_int(deopt_every_n_garbage_collections, |
| 250 0, | 250 0, |
| 251 "deoptimize every n garbage collections") | 251 "deoptimize every n garbage collections") |
| 252 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 252 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
| 253 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 253 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
| 254 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 254 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
| 255 DEFINE_bool(use_osr, true, "use on-stack replacement") | 255 DEFINE_bool(use_osr, true, "use on-stack replacement") |
| 256 DEFINE_bool(idefs, false, "use informative definitions") | 256 DEFINE_bool(idefs, false, "use informative definitions") |
| 257 DEFINE_bool(abcd_ivars, true, "eliminate bounds checks on induction variables") |
| 257 DEFINE_bool(array_bounds_checks_elimination, true, | 258 DEFINE_bool(array_bounds_checks_elimination, true, |
| 258 "perform array bounds checks elimination") | 259 "perform array bounds checks elimination") |
| 259 DEFINE_bool(array_index_dehoisting, true, | 260 DEFINE_bool(array_index_dehoisting, true, |
| 260 "perform array index dehoisting") | 261 "perform array index dehoisting") |
| 261 DEFINE_bool(analyze_environment_liveness, true, | 262 DEFINE_bool(analyze_environment_liveness, true, |
| 262 "analyze liveness of environment slots and zap dead values") | 263 "analyze liveness of environment slots and zap dead values") |
| 263 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") | 264 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") |
| 264 DEFINE_bool(fold_constants, true, "use constant folding") | 265 DEFINE_bool(fold_constants, true, "use constant folding") |
| 265 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") | 266 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") |
| 266 DEFINE_bool(unreachable_code_elimination, false, | 267 DEFINE_bool(unreachable_code_elimination, false, |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 796 #undef DEFINE_bool | 797 #undef DEFINE_bool |
| 797 #undef DEFINE_int | 798 #undef DEFINE_int |
| 798 #undef DEFINE_string | 799 #undef DEFINE_string |
| 799 #undef DEFINE_implication | 800 #undef DEFINE_implication |
| 800 | 801 |
| 801 #undef FLAG_MODE_DECLARE | 802 #undef FLAG_MODE_DECLARE |
| 802 #undef FLAG_MODE_DEFINE | 803 #undef FLAG_MODE_DEFINE |
| 803 #undef FLAG_MODE_DEFINE_DEFAULTS | 804 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 804 #undef FLAG_MODE_META | 805 #undef FLAG_MODE_META |
| 805 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 806 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |