| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 DEFINE_bool(use_osr, true, "use on-stack replacement") | 301 DEFINE_bool(use_osr, true, "use on-stack replacement") |
| 302 DEFINE_bool(array_bounds_checks_elimination, true, | 302 DEFINE_bool(array_bounds_checks_elimination, true, |
| 303 "perform array bounds checks elimination") | 303 "perform array bounds checks elimination") |
| 304 DEFINE_bool(array_bounds_checks_hoisting, false, | 304 DEFINE_bool(array_bounds_checks_hoisting, false, |
| 305 "perform array bounds checks hoisting") | 305 "perform array bounds checks hoisting") |
| 306 DEFINE_bool(array_index_dehoisting, true, | 306 DEFINE_bool(array_index_dehoisting, true, |
| 307 "perform array index dehoisting") | 307 "perform array index dehoisting") |
| 308 DEFINE_bool(analyze_environment_liveness, true, | 308 DEFINE_bool(analyze_environment_liveness, true, |
| 309 "analyze liveness of environment slots and zap dead values") | 309 "analyze liveness of environment slots and zap dead values") |
| 310 DEFINE_bool(load_elimination, true, "use load elimination") | 310 DEFINE_bool(load_elimination, true, "use load elimination") |
| 311 DEFINE_bool(check_elimination, true, "use check elimination") | 311 DEFINE_bool(check_elimination, false, "use check elimination") |
| 312 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") | 312 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") |
| 313 DEFINE_bool(fold_constants, true, "use constant folding") | 313 DEFINE_bool(fold_constants, true, "use constant folding") |
| 314 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") | 314 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") |
| 315 DEFINE_bool(unreachable_code_elimination, true, "eliminate unreachable code") | 315 DEFINE_bool(unreachable_code_elimination, true, "eliminate unreachable code") |
| 316 DEFINE_bool(trace_osr, false, "trace on-stack replacement") | 316 DEFINE_bool(trace_osr, false, "trace on-stack replacement") |
| 317 DEFINE_int(stress_runs, 0, "number of stress runs") | 317 DEFINE_int(stress_runs, 0, "number of stress runs") |
| 318 DEFINE_bool(optimize_closures, true, "optimize closures") | 318 DEFINE_bool(optimize_closures, true, "optimize closures") |
| 319 DEFINE_bool(lookup_sample_by_shared, true, | 319 DEFINE_bool(lookup_sample_by_shared, true, |
| 320 "when picking a function to optimize, watch for shared function " | 320 "when picking a function to optimize, watch for shared function " |
| 321 "info, not JSFunction itself") | 321 "info, not JSFunction itself") |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 #undef DEFINE_ALIAS_float | 894 #undef DEFINE_ALIAS_float |
| 895 #undef DEFINE_ALIAS_args | 895 #undef DEFINE_ALIAS_args |
| 896 | 896 |
| 897 #undef FLAG_MODE_DECLARE | 897 #undef FLAG_MODE_DECLARE |
| 898 #undef FLAG_MODE_DEFINE | 898 #undef FLAG_MODE_DEFINE |
| 899 #undef FLAG_MODE_DEFINE_DEFAULTS | 899 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 900 #undef FLAG_MODE_META | 900 #undef FLAG_MODE_META |
| 901 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 901 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 902 | 902 |
| 903 #undef COMMA | 903 #undef COMMA |
| OLD | NEW |