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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 "maximum number of AST nodes considered for a single inlining") | 249 "maximum number of AST nodes considered for a single inlining") |
250 DEFINE_int(max_inlined_nodes_cumulative, 400, | 250 DEFINE_int(max_inlined_nodes_cumulative, 400, |
251 "maximum cumulative number of AST nodes considered for inlining") | 251 "maximum cumulative number of AST nodes considered for inlining") |
252 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") | 252 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") |
253 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") | 253 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") |
254 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, | 254 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, |
255 true, | 255 true, |
256 "crankshaft harvests type feedback from stub cache") | 256 "crankshaft harvests type feedback from stub cache") |
257 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") | 257 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") |
258 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") | 258 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") |
| 259 DEFINE_string(trace_hydrogen_filter, "*", "hydrogen tracing filter") |
259 DEFINE_bool(trace_hydrogen_stubs, false, "trace generated hydrogen for stubs") | 260 DEFINE_bool(trace_hydrogen_stubs, false, "trace generated hydrogen for stubs") |
260 DEFINE_string(trace_hydrogen_file, NULL, "trace hydrogen to given file name") | 261 DEFINE_string(trace_hydrogen_file, NULL, "trace hydrogen to given file name") |
261 DEFINE_string(trace_phase, "HLZ", "trace generated IR for specified phases") | 262 DEFINE_string(trace_phase, "HLZ", "trace generated IR for specified phases") |
262 DEFINE_bool(trace_inlining, false, "trace inlining decisions") | 263 DEFINE_bool(trace_inlining, false, "trace inlining decisions") |
263 DEFINE_bool(trace_alloc, false, "trace register allocator") | 264 DEFINE_bool(trace_alloc, false, "trace register allocator") |
264 DEFINE_bool(trace_all_uses, false, "trace all use positions") | 265 DEFINE_bool(trace_all_uses, false, "trace all use positions") |
265 DEFINE_bool(trace_range, false, "trace range analysis") | 266 DEFINE_bool(trace_range, false, "trace range analysis") |
266 DEFINE_bool(trace_gvn, false, "trace global value numbering") | 267 DEFINE_bool(trace_gvn, false, "trace global value numbering") |
267 DEFINE_bool(trace_representation, false, "trace representation types") | 268 DEFINE_bool(trace_representation, false, "trace representation types") |
268 DEFINE_bool(trace_escape_analysis, false, "trace hydrogen escape analysis") | 269 DEFINE_bool(trace_escape_analysis, false, "trace hydrogen escape analysis") |
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 #undef DEFINE_ALIAS_int | 848 #undef DEFINE_ALIAS_int |
848 #undef DEFINE_ALIAS_string | 849 #undef DEFINE_ALIAS_string |
849 #undef DEFINE_ALIAS_float | 850 #undef DEFINE_ALIAS_float |
850 #undef DEFINE_ALIAS_args | 851 #undef DEFINE_ALIAS_args |
851 | 852 |
852 #undef FLAG_MODE_DECLARE | 853 #undef FLAG_MODE_DECLARE |
853 #undef FLAG_MODE_DEFINE | 854 #undef FLAG_MODE_DEFINE |
854 #undef FLAG_MODE_DEFINE_DEFAULTS | 855 #undef FLAG_MODE_DEFINE_DEFAULTS |
855 #undef FLAG_MODE_META | 856 #undef FLAG_MODE_META |
856 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 857 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |