| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "trace the tracking of allocation sites") | 198 "trace the tracking of allocation sites") |
| 199 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 199 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
| 200 DEFINE_bool(stress_environments, false, "environment for every instruction") | 200 DEFINE_bool(stress_environments, false, "environment for every instruction") |
| 201 DEFINE_int(deopt_every_n_times, | 201 DEFINE_int(deopt_every_n_times, |
| 202 0, | 202 0, |
| 203 "deoptimize every n times a deopt point is passed") | 203 "deoptimize every n times a deopt point is passed") |
| 204 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 204 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
| 205 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 205 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
| 206 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 206 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
| 207 DEFINE_bool(use_osr, true, "use on-stack replacement") | 207 DEFINE_bool(use_osr, true, "use on-stack replacement") |
| 208 DEFINE_bool(idefs, false, "use informative definitions") |
| 208 DEFINE_bool(array_bounds_checks_elimination, true, | 209 DEFINE_bool(array_bounds_checks_elimination, true, |
| 209 "perform array bounds checks elimination") | 210 "perform array bounds checks elimination") |
| 210 DEFINE_bool(array_index_dehoisting, true, | 211 DEFINE_bool(array_index_dehoisting, true, |
| 211 "perform array index dehoisting") | 212 "perform array index dehoisting") |
| 212 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") | 213 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") |
| 213 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") | 214 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") |
| 214 DEFINE_bool(unreachable_code_elimination, false, | 215 DEFINE_bool(unreachable_code_elimination, false, |
| 215 "eliminate unreachable code (hidden behind soft deopts)") | 216 "eliminate unreachable code (hidden behind soft deopts)") |
| 216 DEFINE_bool(track_allocation_sites, true, | 217 DEFINE_bool(track_allocation_sites, true, |
| 217 "Use allocation site info to reduce transitions") | 218 "Use allocation site info to reduce transitions") |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 #undef DEFINE_bool | 723 #undef DEFINE_bool |
| 723 #undef DEFINE_int | 724 #undef DEFINE_int |
| 724 #undef DEFINE_string | 725 #undef DEFINE_string |
| 725 #undef DEFINE_implication | 726 #undef DEFINE_implication |
| 726 | 727 |
| 727 #undef FLAG_MODE_DECLARE | 728 #undef FLAG_MODE_DECLARE |
| 728 #undef FLAG_MODE_DEFINE | 729 #undef FLAG_MODE_DEFINE |
| 729 #undef FLAG_MODE_DEFINE_DEFAULTS | 730 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 730 #undef FLAG_MODE_META | 731 #undef FLAG_MODE_META |
| 731 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 732 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |