| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 DEFINE_bool(trace, false, "trace function calls") | 212 DEFINE_bool(trace, false, "trace function calls") |
| 213 DEFINE_bool(mask_constants_with_cookie, | 213 DEFINE_bool(mask_constants_with_cookie, |
| 214 true, | 214 true, |
| 215 "use random jit cookie to mask large constants") | 215 "use random jit cookie to mask large constants") |
| 216 | 216 |
| 217 // codegen.cc | 217 // codegen.cc |
| 218 DEFINE_bool(lazy, true, "use lazy compilation") | 218 DEFINE_bool(lazy, true, "use lazy compilation") |
| 219 DEFINE_bool(trace_opt, false, "trace lazy optimization") | 219 DEFINE_bool(trace_opt, false, "trace lazy optimization") |
| 220 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics") | 220 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics") |
| 221 DEFINE_bool(opt, true, "use adaptive optimizations") | 221 DEFINE_bool(opt, true, "use adaptive optimizations") |
| 222 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing") | |
| 223 DEFINE_bool(always_opt, false, "always try to optimize functions") | 222 DEFINE_bool(always_opt, false, "always try to optimize functions") |
| 224 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") | 223 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") |
| 225 DEFINE_bool(deopt, true, "support deoptimization") | |
| 226 DEFINE_bool(trace_deopt, false, "trace deoptimization") | 224 DEFINE_bool(trace_deopt, false, "trace deoptimization") |
| 227 | 225 |
| 228 // compiler.cc | 226 // compiler.cc |
| 229 DEFINE_int(min_preparse_length, 1024, | 227 DEFINE_int(min_preparse_length, 1024, |
| 230 "minimum length for automatic enable preparsing") | 228 "minimum length for automatic enable preparsing") |
| 231 DEFINE_bool(always_full_compiler, false, | 229 DEFINE_bool(always_full_compiler, false, |
| 232 "try to use the dedicated run-once backend for all code") | 230 "try to use the dedicated run-once backend for all code") |
| 233 DEFINE_bool(trace_bailout, false, | 231 DEFINE_bool(trace_bailout, false, |
| 234 "print reasons for falling back to using the classic V8 backend") | 232 "print reasons for falling back to using the classic V8 backend") |
| 235 | 233 |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 #undef DEFINE_bool | 578 #undef DEFINE_bool |
| 581 #undef DEFINE_int | 579 #undef DEFINE_int |
| 582 #undef DEFINE_string | 580 #undef DEFINE_string |
| 583 #undef DEFINE_implication | 581 #undef DEFINE_implication |
| 584 | 582 |
| 585 #undef FLAG_MODE_DECLARE | 583 #undef FLAG_MODE_DECLARE |
| 586 #undef FLAG_MODE_DEFINE | 584 #undef FLAG_MODE_DEFINE |
| 587 #undef FLAG_MODE_DEFINE_DEFAULTS | 585 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 588 #undef FLAG_MODE_META | 586 #undef FLAG_MODE_META |
| 589 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 587 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |