| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 DEFINE_bool(opt, true, "use adaptive optimizations") | 318 DEFINE_bool(opt, true, "use adaptive optimizations") |
| 319 DEFINE_bool(always_opt, false, "always try to optimize functions") | 319 DEFINE_bool(always_opt, false, "always try to optimize functions") |
| 320 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") | 320 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") |
| 321 DEFINE_bool(trace_deopt, false, "trace deoptimization") | 321 DEFINE_bool(trace_deopt, false, "trace deoptimization") |
| 322 | 322 |
| 323 // compiler.cc | 323 // compiler.cc |
| 324 DEFINE_int(min_preparse_length, 1024, | 324 DEFINE_int(min_preparse_length, 1024, |
| 325 "minimum length for automatic enable preparsing") | 325 "minimum length for automatic enable preparsing") |
| 326 DEFINE_bool(always_full_compiler, false, | 326 DEFINE_bool(always_full_compiler, false, |
| 327 "try to use the dedicated run-once backend for all code") | 327 "try to use the dedicated run-once backend for all code") |
| 328 DEFINE_bool(trace_bailout, false, | |
| 329 "print reasons for falling back to using the classic V8 backend") | |
| 330 DEFINE_int(max_opt_count, 10, | 328 DEFINE_int(max_opt_count, 10, |
| 331 "maximum number of optimization attempts before giving up.") | 329 "maximum number of optimization attempts before giving up.") |
| 332 | 330 |
| 333 // compilation-cache.cc | 331 // compilation-cache.cc |
| 334 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 332 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 335 | 333 |
| 336 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") | 334 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
| 337 | 335 |
| 338 // debug.cc | 336 // debug.cc |
| 339 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 337 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 #undef DEFINE_bool | 688 #undef DEFINE_bool |
| 691 #undef DEFINE_int | 689 #undef DEFINE_int |
| 692 #undef DEFINE_string | 690 #undef DEFINE_string |
| 693 #undef DEFINE_implication | 691 #undef DEFINE_implication |
| 694 | 692 |
| 695 #undef FLAG_MODE_DECLARE | 693 #undef FLAG_MODE_DECLARE |
| 696 #undef FLAG_MODE_DEFINE | 694 #undef FLAG_MODE_DEFINE |
| 697 #undef FLAG_MODE_DEFINE_DEFAULTS | 695 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 698 #undef FLAG_MODE_META | 696 #undef FLAG_MODE_META |
| 699 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 697 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |