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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 DEFINE_bool(lookup_sample_by_shared, true, | 315 DEFINE_bool(lookup_sample_by_shared, true, |
316 "when picking a function to optimize, watch for shared function " | 316 "when picking a function to optimize, watch for shared function " |
317 "info, not JSFunction itself") | 317 "info, not JSFunction itself") |
318 DEFINE_bool(cache_optimized_code, true, | 318 DEFINE_bool(cache_optimized_code, true, |
319 "cache optimized code for closures") | 319 "cache optimized code for closures") |
320 DEFINE_bool(flush_optimized_code_cache, true, | 320 DEFINE_bool(flush_optimized_code_cache, true, |
321 "flushes the cache of optimized code for closures on every GC") | 321 "flushes the cache of optimized code for closures on every GC") |
322 DEFINE_bool(inline_construct, true, "inline constructor calls") | 322 DEFINE_bool(inline_construct, true, "inline constructor calls") |
323 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") | 323 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") |
324 DEFINE_bool(inline_accessors, true, "inline JavaScript accessors") | 324 DEFINE_bool(inline_accessors, true, "inline JavaScript accessors") |
325 DEFINE_int(loop_weight, 1, "loop weight for representation inference") | |
326 DEFINE_int(escape_analysis_iterations, 2, | 325 DEFINE_int(escape_analysis_iterations, 2, |
327 "maximum number of escape analysis fix-point iterations") | 326 "maximum number of escape analysis fix-point iterations") |
328 | 327 |
329 DEFINE_bool(optimize_for_in, true, | 328 DEFINE_bool(optimize_for_in, true, |
330 "optimize functions containing for-in loops") | 329 "optimize functions containing for-in loops") |
331 DEFINE_bool(opt_safe_uint32_operations, true, | 330 DEFINE_bool(opt_safe_uint32_operations, true, |
332 "allow uint32 values on optimize frames if they are used only in " | 331 "allow uint32 values on optimize frames if they are used only in " |
333 "safe operations") | 332 "safe operations") |
334 | 333 |
335 DEFINE_bool(concurrent_recompilation, true, | 334 DEFINE_bool(concurrent_recompilation, true, |
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 #undef DEFINE_ALIAS_float | 894 #undef DEFINE_ALIAS_float |
896 #undef DEFINE_ALIAS_args | 895 #undef DEFINE_ALIAS_args |
897 | 896 |
898 #undef FLAG_MODE_DECLARE | 897 #undef FLAG_MODE_DECLARE |
899 #undef FLAG_MODE_DEFINE | 898 #undef FLAG_MODE_DEFINE |
900 #undef FLAG_MODE_DEFINE_DEFAULTS | 899 #undef FLAG_MODE_DEFINE_DEFAULTS |
901 #undef FLAG_MODE_META | 900 #undef FLAG_MODE_META |
902 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 901 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
903 | 902 |
904 #undef COMMA | 903 #undef COMMA |
OLD | NEW |