Chromium Code Reviews| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 211 "trace the tracking of allocation sites") | 211 "trace the tracking of allocation sites") |
| 212 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 212 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
| 213 DEFINE_bool(stress_environments, false, "environment for every instruction") | 213 DEFINE_bool(stress_environments, false, "environment for every instruction") |
| 214 DEFINE_int(deopt_every_n_times, | 214 DEFINE_int(deopt_every_n_times, |
| 215 0, | 215 0, |
| 216 "deoptimize every n times a deopt point is passed") | 216 "deoptimize every n times a deopt point is passed") |
| 217 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 217 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
| 218 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 218 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
| 219 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 219 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
| 220 DEFINE_bool(use_osr, true, "use on-stack replacement") | 220 DEFINE_bool(use_osr, true, "use on-stack replacement") |
| 221 DEFINE_bool(idefs, false, "use informative definitions") | 221 DEFINE_bool(idefs, true, "use informative definitions") |
|
Jakob Kummerow
2013/04/17 11:34:15
intentional?
Massi
2013/05/07 11:32:03
Yes and no.
For now it is on for convenience but I
| |
| 222 DEFINE_bool(array_bounds_checks_elimination, true, | 222 DEFINE_bool(array_bounds_checks_elimination, true, |
| 223 "perform array bounds checks elimination") | 223 "perform array bounds checks elimination") |
| 224 DEFINE_bool(array_index_dehoisting, true, | 224 DEFINE_bool(array_index_dehoisting, true, |
| 225 "perform array index dehoisting") | 225 "perform array index dehoisting") |
| 226 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") | 226 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") |
| 227 DEFINE_bool(fold_constants, true, "use constant folding") | 227 DEFINE_bool(fold_constants, true, "use constant folding") |
| 228 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") | 228 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") |
| 229 DEFINE_bool(unreachable_code_elimination, false, | 229 DEFINE_bool(unreachable_code_elimination, false, |
| 230 "eliminate unreachable code (hidden behind soft deopts)") | 230 "eliminate unreachable code (hidden behind soft deopts)") |
| 231 DEFINE_bool(track_allocation_sites, true, | 231 DEFINE_bool(track_allocation_sites, true, |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 756 #undef DEFINE_bool | 756 #undef DEFINE_bool |
| 757 #undef DEFINE_int | 757 #undef DEFINE_int |
| 758 #undef DEFINE_string | 758 #undef DEFINE_string |
| 759 #undef DEFINE_implication | 759 #undef DEFINE_implication |
| 760 | 760 |
| 761 #undef FLAG_MODE_DECLARE | 761 #undef FLAG_MODE_DECLARE |
| 762 #undef FLAG_MODE_DEFINE | 762 #undef FLAG_MODE_DEFINE |
| 763 #undef FLAG_MODE_DEFINE_DEFAULTS | 763 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 764 #undef FLAG_MODE_META | 764 #undef FLAG_MODE_META |
| 765 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 765 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |