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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
244 | 244 |
245 // Flags for Crankshaft. | 245 // Flags for Crankshaft. |
246 DEFINE_bool(crankshaft, true, "use crankshaft") | 246 DEFINE_bool(crankshaft, true, "use crankshaft") |
247 DEFINE_string(hydrogen_filter, "*", "optimization filter") | 247 DEFINE_string(hydrogen_filter, "*", "optimization filter") |
248 DEFINE_bool(use_range, true, "use hydrogen range analysis") | 248 DEFINE_bool(use_range, true, "use hydrogen range analysis") |
249 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") | 249 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") |
250 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") | 250 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") |
251 DEFINE_bool(use_inlining, true, "use function inlining") | 251 DEFINE_bool(use_inlining, true, "use function inlining") |
252 DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis") | 252 DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis") |
253 DEFINE_bool(use_allocation_folding, true, "use allocation folding") | 253 DEFINE_bool(use_allocation_folding, true, "use allocation folding") |
254 DEFINE_bool(use_local_allocation_folding, false, "only fold in basic blocks") | |
255 DEFINE_bool(use_write_barrier_elimination, true, "eliminate write barriers") | |
Hannes Payer (out of office)
2014/02/14 12:02:52
We are still eliminating write barriers when this
Michael Starzinger
2014/02/14 14:37:34
Done. I adapted the description accordingly and ma
| |
254 DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels") | 256 DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels") |
255 DEFINE_int(max_inlined_source_size, 600, | 257 DEFINE_int(max_inlined_source_size, 600, |
256 "maximum source size in bytes considered for a single inlining") | 258 "maximum source size in bytes considered for a single inlining") |
257 DEFINE_int(max_inlined_nodes, 196, | 259 DEFINE_int(max_inlined_nodes, 196, |
258 "maximum number of AST nodes considered for a single inlining") | 260 "maximum number of AST nodes considered for a single inlining") |
259 DEFINE_int(max_inlined_nodes_cumulative, 400, | 261 DEFINE_int(max_inlined_nodes_cumulative, 400, |
260 "maximum cumulative number of AST nodes considered for inlining") | 262 "maximum cumulative number of AST nodes considered for inlining") |
261 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") | 263 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") |
262 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") | 264 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions") |
263 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, true, | 265 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, true, |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
890 #undef DEFINE_ALIAS_float | 892 #undef DEFINE_ALIAS_float |
891 #undef DEFINE_ALIAS_args | 893 #undef DEFINE_ALIAS_args |
892 | 894 |
893 #undef FLAG_MODE_DECLARE | 895 #undef FLAG_MODE_DECLARE |
894 #undef FLAG_MODE_DEFINE | 896 #undef FLAG_MODE_DEFINE |
895 #undef FLAG_MODE_DEFINE_DEFAULTS | 897 #undef FLAG_MODE_DEFINE_DEFAULTS |
896 #undef FLAG_MODE_META | 898 #undef FLAG_MODE_META |
897 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 899 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
898 | 900 |
899 #undef COMMA | 901 #undef COMMA |
OLD | NEW |