| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 DEFINE_bool(always_opt, false, "always try to optimize functions") | 443 DEFINE_bool(always_opt, false, "always try to optimize functions") |
| 444 DEFINE_bool(always_osr, false, "always try to OSR functions") | 444 DEFINE_bool(always_osr, false, "always try to OSR functions") |
| 445 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") | 445 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") |
| 446 DEFINE_bool(trace_deopt, false, "trace optimize function deoptimization") | 446 DEFINE_bool(trace_deopt, false, "trace optimize function deoptimization") |
| 447 DEFINE_bool(trace_stub_failures, false, | 447 DEFINE_bool(trace_stub_failures, false, |
| 448 "trace deoptimization of generated code stubs") | 448 "trace deoptimization of generated code stubs") |
| 449 | 449 |
| 450 // compiler.cc | 450 // compiler.cc |
| 451 DEFINE_int(min_preparse_length, 1024, | 451 DEFINE_int(min_preparse_length, 1024, |
| 452 "minimum length for automatic enable preparsing") | 452 "minimum length for automatic enable preparsing") |
| 453 DEFINE_int(min_parallel_parse_length, 4096, |
| 454 "minimum code length for multithreaded parsing") |
| 455 DEFINE_bool(parallel_parse, true, "use multithreaded parsing") |
| 453 DEFINE_bool(always_full_compiler, false, | 456 DEFINE_bool(always_full_compiler, false, |
| 454 "try to use the dedicated run-once backend for all code") | 457 "try to use the dedicated run-once backend for all code") |
| 455 DEFINE_int(max_opt_count, 10, | 458 DEFINE_int(max_opt_count, 10, |
| 456 "maximum number of optimization attempts before giving up.") | 459 "maximum number of optimization attempts before giving up.") |
| 457 | 460 |
| 458 // compilation-cache.cc | 461 // compilation-cache.cc |
| 459 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 462 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 460 | 463 |
| 461 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") | 464 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
| 462 | 465 |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 #undef DEFINE_ALIAS_float | 928 #undef DEFINE_ALIAS_float |
| 926 #undef DEFINE_ALIAS_args | 929 #undef DEFINE_ALIAS_args |
| 927 | 930 |
| 928 #undef FLAG_MODE_DECLARE | 931 #undef FLAG_MODE_DECLARE |
| 929 #undef FLAG_MODE_DEFINE | 932 #undef FLAG_MODE_DEFINE |
| 930 #undef FLAG_MODE_DEFINE_DEFAULTS | 933 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 931 #undef FLAG_MODE_META | 934 #undef FLAG_MODE_META |
| 932 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 935 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 933 | 936 |
| 934 #undef COMMA | 937 #undef COMMA |
| OLD | NEW |