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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
260 "perform array index dehoisting") | 260 "perform array index dehoisting") |
261 DEFINE_bool(analyze_environment_liveness, true, | 261 DEFINE_bool(analyze_environment_liveness, true, |
262 "analyze liveness of environment slots and zap dead values") | 262 "analyze liveness of environment slots and zap dead values") |
263 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") | 263 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") |
264 DEFINE_bool(fold_constants, true, "use constant folding") | 264 DEFINE_bool(fold_constants, true, "use constant folding") |
265 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") | 265 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") |
266 DEFINE_bool(unreachable_code_elimination, false, | 266 DEFINE_bool(unreachable_code_elimination, false, |
267 "eliminate unreachable code (hidden behind soft deopts)") | 267 "eliminate unreachable code (hidden behind soft deopts)") |
268 DEFINE_bool(track_allocation_sites, true, | 268 DEFINE_bool(track_allocation_sites, true, |
269 "Use allocation site info to reduce transitions") | 269 "Use allocation site info to reduce transitions") |
270 DEFINE_bool(optimize_constructed_arrays, true, | 270 DEFINE_bool(optimize_constructed_arrays, false, |
Hannes Payer (out of office)
2013/06/25 16:35:07
Should be true.
mvstanton
2013/07/02 13:55:11
Cool, this flag is gone now.
| |
271 "Use allocation site info on constructed arrays") | 271 "Use allocation site info on constructed arrays") |
272 DEFINE_bool(trace_osr, false, "trace on-stack replacement") | 272 DEFINE_bool(trace_osr, false, "trace on-stack replacement") |
273 DEFINE_int(stress_runs, 0, "number of stress runs") | 273 DEFINE_int(stress_runs, 0, "number of stress runs") |
274 DEFINE_bool(optimize_closures, true, "optimize closures") | 274 DEFINE_bool(optimize_closures, true, "optimize closures") |
275 DEFINE_bool(lookup_sample_by_shared, true, | 275 DEFINE_bool(lookup_sample_by_shared, true, |
276 "when picking a function to optimize, watch for shared function " | 276 "when picking a function to optimize, watch for shared function " |
277 "info, not JSFunction itself") | 277 "info, not JSFunction itself") |
278 DEFINE_bool(cache_optimized_code, true, | 278 DEFINE_bool(cache_optimized_code, true, |
279 "cache optimized code for closures") | 279 "cache optimized code for closures") |
280 DEFINE_bool(flush_optimized_code_cache, true, | 280 DEFINE_bool(flush_optimized_code_cache, true, |
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
796 #undef DEFINE_bool | 796 #undef DEFINE_bool |
797 #undef DEFINE_int | 797 #undef DEFINE_int |
798 #undef DEFINE_string | 798 #undef DEFINE_string |
799 #undef DEFINE_implication | 799 #undef DEFINE_implication |
800 | 800 |
801 #undef FLAG_MODE_DECLARE | 801 #undef FLAG_MODE_DECLARE |
802 #undef FLAG_MODE_DEFINE | 802 #undef FLAG_MODE_DEFINE |
803 #undef FLAG_MODE_DEFINE_DEFAULTS | 803 #undef FLAG_MODE_DEFINE_DEFAULTS |
804 #undef FLAG_MODE_META | 804 #undef FLAG_MODE_META |
805 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 805 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |