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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 DEFINE_bool(use_range, true, "use hydrogen range analysis") | 216 DEFINE_bool(use_range, true, "use hydrogen range analysis") |
217 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") | 217 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") |
218 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") | 218 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") |
219 DEFINE_bool(use_inlining, true, "use function inlining") | 219 DEFINE_bool(use_inlining, true, "use function inlining") |
220 DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis") | 220 DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis") |
221 DEFINE_bool(use_allocation_folding, true, "use allocation folding") | 221 DEFINE_bool(use_allocation_folding, true, "use allocation folding") |
222 DEFINE_int(max_inlined_source_size, 600, | 222 DEFINE_int(max_inlined_source_size, 600, |
223 "maximum source size in bytes considered for a single inlining") | 223 "maximum source size in bytes considered for a single inlining") |
224 DEFINE_int(max_inlined_nodes, 196, | 224 DEFINE_int(max_inlined_nodes, 196, |
225 "maximum number of AST nodes considered for a single inlining") | 225 "maximum number of AST nodes considered for a single inlining") |
226 DEFINE_int(max_inlined_nodes_cumulative, 196, | 226 DEFINE_int(max_inlined_nodes_cumulative, 400, |
227 "maximum cumulative number of AST nodes considered for inlining") | 227 "maximum cumulative number of AST nodes considered for inlining") |
228 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") | 228 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") |
229 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") | 229 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") |
230 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, | 230 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, |
231 true, | 231 true, |
232 "crankshaft harvests type feedback from stub cache") | 232 "crankshaft harvests type feedback from stub cache") |
233 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") | 233 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") |
234 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") | 234 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") |
235 DEFINE_string(trace_phase, "Z", "trace generated IR for specified phases") | 235 DEFINE_string(trace_phase, "Z", "trace generated IR for specified phases") |
236 DEFINE_bool(trace_inlining, false, "trace inlining decisions") | 236 DEFINE_bool(trace_inlining, false, "trace inlining decisions") |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 #undef DEFINE_bool | 802 #undef DEFINE_bool |
803 #undef DEFINE_int | 803 #undef DEFINE_int |
804 #undef DEFINE_string | 804 #undef DEFINE_string |
805 #undef DEFINE_implication | 805 #undef DEFINE_implication |
806 | 806 |
807 #undef FLAG_MODE_DECLARE | 807 #undef FLAG_MODE_DECLARE |
808 #undef FLAG_MODE_DEFINE | 808 #undef FLAG_MODE_DEFINE |
809 #undef FLAG_MODE_DEFINE_DEFAULTS | 809 #undef FLAG_MODE_DEFINE_DEFAULTS |
810 #undef FLAG_MODE_META | 810 #undef FLAG_MODE_META |
811 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 811 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |