OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 // codegen-ia32.cc / codegen-arm.cc | 187 // codegen-ia32.cc / codegen-arm.cc |
188 DEFINE_bool(trace, false, "trace function calls") | 188 DEFINE_bool(trace, false, "trace function calls") |
189 DEFINE_bool(defer_negation, true, "defer negation operation") | 189 DEFINE_bool(defer_negation, true, "defer negation operation") |
190 DEFINE_bool(mask_constants_with_cookie, | 190 DEFINE_bool(mask_constants_with_cookie, |
191 true, | 191 true, |
192 "use random jit cookie to mask large constants") | 192 "use random jit cookie to mask large constants") |
193 | 193 |
194 // codegen.cc | 194 // codegen.cc |
195 DEFINE_bool(lazy, true, "use lazy compilation") | 195 DEFINE_bool(lazy, true, "use lazy compilation") |
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(opt, true, "use adaptive optimizations") | 198 DEFINE_bool(opt, true, "use adaptive optimizations") |
198 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing") | 199 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing") |
199 DEFINE_bool(always_opt, false, "always try to optimize functions") | 200 DEFINE_bool(always_opt, false, "always try to optimize functions") |
200 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") |
201 DEFINE_bool(debug_info, true, "add debug information to compiled functions") | 202 DEFINE_bool(debug_info, true, "add debug information to compiled functions") |
202 DEFINE_bool(deopt, true, "support deoptimization") | 203 DEFINE_bool(deopt, true, "support deoptimization") |
203 DEFINE_bool(trace_deopt, false, "trace deoptimization") | 204 DEFINE_bool(trace_deopt, false, "trace deoptimization") |
204 | 205 |
205 // compiler.cc | 206 // compiler.cc |
206 DEFINE_bool(strict, false, "strict error checking") | 207 DEFINE_bool(strict, false, "strict error checking") |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 #undef FLAG | 511 #undef FLAG |
511 | 512 |
512 #undef DEFINE_bool | 513 #undef DEFINE_bool |
513 #undef DEFINE_int | 514 #undef DEFINE_int |
514 #undef DEFINE_string | 515 #undef DEFINE_string |
515 | 516 |
516 #undef FLAG_MODE_DECLARE | 517 #undef FLAG_MODE_DECLARE |
517 #undef FLAG_MODE_DEFINE | 518 #undef FLAG_MODE_DEFINE |
518 #undef FLAG_MODE_DEFINE_DEFAULTS | 519 #undef FLAG_MODE_DEFINE_DEFAULTS |
519 #undef FLAG_MODE_META | 520 #undef FLAG_MODE_META |
OLD | NEW |