| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 257 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
| 258 DEFINE_bool(stress_environments, false, "environment for every instruction") | 258 DEFINE_bool(stress_environments, false, "environment for every instruction") |
| 259 DEFINE_int(deopt_every_n_times, | 259 DEFINE_int(deopt_every_n_times, |
| 260 0, | 260 0, |
| 261 "deoptimize every n times a deopt point is passed") | 261 "deoptimize every n times a deopt point is passed") |
| 262 DEFINE_int(deopt_every_n_garbage_collections, | 262 DEFINE_int(deopt_every_n_garbage_collections, |
| 263 0, | 263 0, |
| 264 "deoptimize every n garbage collections") | 264 "deoptimize every n garbage collections") |
| 265 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points") | 265 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points") |
| 266 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 266 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
| 267 DEFINE_bool(trap_on_stub_deopt, false, |
| 268 "put a break point before deoptimizing a stub") |
| 267 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 269 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
| 268 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 270 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
| 269 DEFINE_bool(use_osr, true, "use on-stack replacement") | 271 DEFINE_bool(use_osr, true, "use on-stack replacement") |
| 270 DEFINE_bool(array_bounds_checks_elimination, true, | 272 DEFINE_bool(array_bounds_checks_elimination, true, |
| 271 "perform array bounds checks elimination") | 273 "perform array bounds checks elimination") |
| 272 DEFINE_bool(array_bounds_checks_hoisting, false, | 274 DEFINE_bool(array_bounds_checks_hoisting, false, |
| 273 "perform array bounds checks hoisting") | 275 "perform array bounds checks hoisting") |
| 274 DEFINE_bool(array_index_dehoisting, true, | 276 DEFINE_bool(array_index_dehoisting, true, |
| 275 "perform array index dehoisting") | 277 "perform array index dehoisting") |
| 276 DEFINE_bool(analyze_environment_liveness, true, | 278 DEFINE_bool(analyze_environment_liveness, true, |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 #undef DEFINE_bool | 813 #undef DEFINE_bool |
| 812 #undef DEFINE_int | 814 #undef DEFINE_int |
| 813 #undef DEFINE_string | 815 #undef DEFINE_string |
| 814 #undef DEFINE_implication | 816 #undef DEFINE_implication |
| 815 | 817 |
| 816 #undef FLAG_MODE_DECLARE | 818 #undef FLAG_MODE_DECLARE |
| 817 #undef FLAG_MODE_DEFINE | 819 #undef FLAG_MODE_DEFINE |
| 818 #undef FLAG_MODE_DEFINE_DEFAULTS | 820 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 819 #undef FLAG_MODE_META | 821 #undef FLAG_MODE_META |
| 820 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 822 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |