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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 "crankshaft harvests type feedback from stub cache") | 257 "crankshaft harvests type feedback from stub cache") |
258 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") | 258 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") |
259 DEFINE_bool(trace_check_elimination, false, "trace check elimination phase") | 259 DEFINE_bool(trace_check_elimination, false, "trace check elimination phase") |
260 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") | 260 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") |
261 DEFINE_string(trace_hydrogen_filter, "*", "hydrogen tracing filter") | 261 DEFINE_string(trace_hydrogen_filter, "*", "hydrogen tracing filter") |
262 DEFINE_bool(trace_hydrogen_stubs, false, "trace generated hydrogen for stubs") | 262 DEFINE_bool(trace_hydrogen_stubs, false, "trace generated hydrogen for stubs") |
263 DEFINE_string(trace_hydrogen_file, NULL, "trace hydrogen to given file name") | 263 DEFINE_string(trace_hydrogen_file, NULL, "trace hydrogen to given file name") |
264 DEFINE_string(trace_phase, "HLZ", "trace generated IR for specified phases") | 264 DEFINE_string(trace_phase, "HLZ", "trace generated IR for specified phases") |
265 DEFINE_bool(trace_inlining, false, "trace inlining decisions") | 265 DEFINE_bool(trace_inlining, false, "trace inlining decisions") |
266 DEFINE_bool(trace_load_elimination, false, "trace load elimination") | 266 DEFINE_bool(trace_load_elimination, false, "trace load elimination") |
| 267 DEFINE_bool(trace_store_elimination, false, "trace store elimination") |
267 DEFINE_bool(trace_alloc, false, "trace register allocator") | 268 DEFINE_bool(trace_alloc, false, "trace register allocator") |
268 DEFINE_bool(trace_all_uses, false, "trace all use positions") | 269 DEFINE_bool(trace_all_uses, false, "trace all use positions") |
269 DEFINE_bool(trace_range, false, "trace range analysis") | 270 DEFINE_bool(trace_range, false, "trace range analysis") |
270 DEFINE_bool(trace_gvn, false, "trace global value numbering") | 271 DEFINE_bool(trace_gvn, false, "trace global value numbering") |
271 DEFINE_bool(trace_representation, false, "trace representation types") | 272 DEFINE_bool(trace_representation, false, "trace representation types") |
272 DEFINE_bool(trace_escape_analysis, false, "trace hydrogen escape analysis") | 273 DEFINE_bool(trace_escape_analysis, false, "trace hydrogen escape analysis") |
273 DEFINE_bool(trace_allocation_folding, false, "trace allocation folding") | 274 DEFINE_bool(trace_allocation_folding, false, "trace allocation folding") |
274 DEFINE_bool(trace_track_allocation_sites, false, | 275 DEFINE_bool(trace_track_allocation_sites, false, |
275 "trace the tracking of allocation sites") | 276 "trace the tracking of allocation sites") |
276 DEFINE_bool(trace_migration, false, "trace object migration") | 277 DEFINE_bool(trace_migration, false, "trace object migration") |
(...skipping 13 matching lines...) Expand all Loading... |
290 DEFINE_bool(use_osr, true, "use on-stack replacement") | 291 DEFINE_bool(use_osr, true, "use on-stack replacement") |
291 DEFINE_bool(array_bounds_checks_elimination, true, | 292 DEFINE_bool(array_bounds_checks_elimination, true, |
292 "perform array bounds checks elimination") | 293 "perform array bounds checks elimination") |
293 DEFINE_bool(array_bounds_checks_hoisting, false, | 294 DEFINE_bool(array_bounds_checks_hoisting, false, |
294 "perform array bounds checks hoisting") | 295 "perform array bounds checks hoisting") |
295 DEFINE_bool(array_index_dehoisting, true, | 296 DEFINE_bool(array_index_dehoisting, true, |
296 "perform array index dehoisting") | 297 "perform array index dehoisting") |
297 DEFINE_bool(analyze_environment_liveness, true, | 298 DEFINE_bool(analyze_environment_liveness, true, |
298 "analyze liveness of environment slots and zap dead values") | 299 "analyze liveness of environment slots and zap dead values") |
299 DEFINE_bool(load_elimination, true, "use load elimination") | 300 DEFINE_bool(load_elimination, true, "use load elimination") |
| 301 DEFINE_bool(store_elimination, true, "use store elimination") |
300 DEFINE_bool(check_elimination, false, "use check elimination") | 302 DEFINE_bool(check_elimination, false, "use check elimination") |
301 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") | 303 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") |
302 DEFINE_bool(fold_constants, true, "use constant folding") | 304 DEFINE_bool(fold_constants, true, "use constant folding") |
303 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") | 305 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") |
304 DEFINE_bool(unreachable_code_elimination, true, "eliminate unreachable code") | 306 DEFINE_bool(unreachable_code_elimination, true, "eliminate unreachable code") |
305 DEFINE_bool(track_allocation_sites, true, | 307 DEFINE_bool(track_allocation_sites, true, |
306 "Use allocation site info to reduce transitions") | 308 "Use allocation site info to reduce transitions") |
307 DEFINE_bool(trace_osr, false, "trace on-stack replacement") | 309 DEFINE_bool(trace_osr, false, "trace on-stack replacement") |
308 DEFINE_int(stress_runs, 0, "number of stress runs") | 310 DEFINE_int(stress_runs, 0, "number of stress runs") |
309 DEFINE_bool(optimize_closures, true, "optimize closures") | 311 DEFINE_bool(optimize_closures, true, "optimize closures") |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 #undef DEFINE_ALIAS_float | 883 #undef DEFINE_ALIAS_float |
882 #undef DEFINE_ALIAS_args | 884 #undef DEFINE_ALIAS_args |
883 | 885 |
884 #undef FLAG_MODE_DECLARE | 886 #undef FLAG_MODE_DECLARE |
885 #undef FLAG_MODE_DEFINE | 887 #undef FLAG_MODE_DEFINE |
886 #undef FLAG_MODE_DEFINE_DEFAULTS | 888 #undef FLAG_MODE_DEFINE_DEFAULTS |
887 #undef FLAG_MODE_META | 889 #undef FLAG_MODE_META |
888 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 890 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
889 | 891 |
890 #undef COMMA | 892 #undef COMMA |
OLD | NEW |