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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
200 "trace the tracking of allocation sites") | 200 "trace the tracking of allocation sites") |
201 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 201 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
202 DEFINE_bool(stress_environments, false, "environment for every instruction") | 202 DEFINE_bool(stress_environments, false, "environment for every instruction") |
203 DEFINE_int(deopt_every_n_times, | 203 DEFINE_int(deopt_every_n_times, |
204 0, | 204 0, |
205 "deoptimize every n times a deopt point is passed") | 205 "deoptimize every n times a deopt point is passed") |
206 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 206 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
207 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 207 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
208 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 208 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
209 DEFINE_bool(use_osr, true, "use on-stack replacement") | 209 DEFINE_bool(use_osr, true, "use on-stack replacement") |
210 DEFINE_bool(idefs, false, "use informative definitions") | 210 DEFINE_bool(idefs, true, "use informative definitions") |
Jakob Kummerow
2013/03/14 16:16:32
We're not turning this on yet by default, are we?
| |
211 DEFINE_bool(idef_based_abce, true, | |
212 "perform idef based array bounds checks elimination") | |
211 DEFINE_bool(array_bounds_checks_elimination, true, | 213 DEFINE_bool(array_bounds_checks_elimination, true, |
212 "perform array bounds checks elimination") | 214 "perform array bounds checks elimination") |
213 DEFINE_bool(array_index_dehoisting, true, | 215 DEFINE_bool(array_index_dehoisting, true, |
214 "perform array index dehoisting") | 216 "perform array index dehoisting") |
215 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") | 217 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") |
216 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") | 218 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") |
217 DEFINE_bool(unreachable_code_elimination, false, | 219 DEFINE_bool(unreachable_code_elimination, false, |
218 "eliminate unreachable code (hidden behind soft deopts)") | 220 "eliminate unreachable code (hidden behind soft deopts)") |
219 DEFINE_bool(track_allocation_sites, true, | 221 DEFINE_bool(track_allocation_sites, true, |
220 "Use allocation site info to reduce transitions") | 222 "Use allocation site info to reduce transitions") |
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
744 #undef DEFINE_bool | 746 #undef DEFINE_bool |
745 #undef DEFINE_int | 747 #undef DEFINE_int |
746 #undef DEFINE_string | 748 #undef DEFINE_string |
747 #undef DEFINE_implication | 749 #undef DEFINE_implication |
748 | 750 |
749 #undef FLAG_MODE_DECLARE | 751 #undef FLAG_MODE_DECLARE |
750 #undef FLAG_MODE_DEFINE | 752 #undef FLAG_MODE_DEFINE |
751 #undef FLAG_MODE_DEFINE_DEFAULTS | 753 #undef FLAG_MODE_DEFINE_DEFAULTS |
752 #undef FLAG_MODE_META | 754 #undef FLAG_MODE_META |
753 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 755 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |