| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 DEFINE_bool(trace_opt, false, "trace lazy optimization") | 196 DEFINE_bool(trace_opt, false, "trace lazy optimization") |
| 197 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics") | 197 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics") |
| 198 DEFINE_bool(opt, true, "use adaptive optimizations") | 198 DEFINE_bool(opt, true, "use adaptive optimizations") |
| 199 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing") | 199 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing") |
| 200 DEFINE_bool(always_opt, false, "always try to optimize functions") | 200 DEFINE_bool(always_opt, false, "always try to optimize functions") |
| 201 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") | 201 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") |
| 202 DEFINE_bool(deopt, true, "support deoptimization") | 202 DEFINE_bool(deopt, true, "support deoptimization") |
| 203 DEFINE_bool(trace_deopt, false, "trace deoptimization") | 203 DEFINE_bool(trace_deopt, false, "trace deoptimization") |
| 204 | 204 |
| 205 // compiler.cc | 205 // compiler.cc |
| 206 DEFINE_bool(strict, false, "strict error checking") | |
| 207 DEFINE_int(min_preparse_length, 1024, | 206 DEFINE_int(min_preparse_length, 1024, |
| 208 "minimum length for automatic enable preparsing") | 207 "minimum length for automatic enable preparsing") |
| 209 DEFINE_bool(always_full_compiler, false, | 208 DEFINE_bool(always_full_compiler, false, |
| 210 "try to use the dedicated run-once backend for all code") | 209 "try to use the dedicated run-once backend for all code") |
| 211 DEFINE_bool(trace_bailout, false, | 210 DEFINE_bool(trace_bailout, false, |
| 212 "print reasons for falling back to using the classic V8 backend") | 211 "print reasons for falling back to using the classic V8 backend") |
| 213 | 212 |
| 214 // compilation-cache.cc | 213 // compilation-cache.cc |
| 215 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 214 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 216 | 215 |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 #undef FLAG | 528 #undef FLAG |
| 530 | 529 |
| 531 #undef DEFINE_bool | 530 #undef DEFINE_bool |
| 532 #undef DEFINE_int | 531 #undef DEFINE_int |
| 533 #undef DEFINE_string | 532 #undef DEFINE_string |
| 534 | 533 |
| 535 #undef FLAG_MODE_DECLARE | 534 #undef FLAG_MODE_DECLARE |
| 536 #undef FLAG_MODE_DEFINE | 535 #undef FLAG_MODE_DEFINE |
| 537 #undef FLAG_MODE_DEFINE_DEFAULTS | 536 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 538 #undef FLAG_MODE_META | 537 #undef FLAG_MODE_META |
| OLD | NEW |