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 148 matching lines...) Loading... |
159 0, | 159 0, |
160 "deoptimize every n times a deopt point is passed") | 160 "deoptimize every n times a deopt point is passed") |
161 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 161 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
162 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 162 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
163 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 163 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
164 DEFINE_bool(use_osr, true, "use on-stack replacement") | 164 DEFINE_bool(use_osr, true, "use on-stack replacement") |
165 | 165 |
166 DEFINE_bool(trace_osr, false, "trace on-stack replacement") | 166 DEFINE_bool(trace_osr, false, "trace on-stack replacement") |
167 DEFINE_int(stress_runs, 0, "number of stress runs") | 167 DEFINE_int(stress_runs, 0, "number of stress runs") |
168 DEFINE_bool(optimize_closures, true, "optimize closures") | 168 DEFINE_bool(optimize_closures, true, "optimize closures") |
| 169 DEFINE_bool(inline_construct, false, "inline constructor calls") |
169 | 170 |
170 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc | 171 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc |
171 DEFINE_bool(debug_code, false, | 172 DEFINE_bool(debug_code, false, |
172 "generate extra code (assertions) for debugging") | 173 "generate extra code (assertions) for debugging") |
173 DEFINE_bool(code_comments, false, "emit comments in code disassembly") | 174 DEFINE_bool(code_comments, false, "emit comments in code disassembly") |
174 DEFINE_bool(peephole_optimization, true, | 175 DEFINE_bool(peephole_optimization, true, |
175 "perform peephole optimizations in assembly code") | 176 "perform peephole optimizations in assembly code") |
176 DEFINE_bool(enable_sse2, true, | 177 DEFINE_bool(enable_sse2, true, |
177 "enable use of SSE2 instructions if available") | 178 "enable use of SSE2 instructions if available") |
178 DEFINE_bool(enable_sse3, true, | 179 DEFINE_bool(enable_sse3, true, |
(...skipping 403 matching lines...) Loading... |
582 #undef DEFINE_bool | 583 #undef DEFINE_bool |
583 #undef DEFINE_int | 584 #undef DEFINE_int |
584 #undef DEFINE_string | 585 #undef DEFINE_string |
585 #undef DEFINE_implication | 586 #undef DEFINE_implication |
586 | 587 |
587 #undef FLAG_MODE_DECLARE | 588 #undef FLAG_MODE_DECLARE |
588 #undef FLAG_MODE_DEFINE | 589 #undef FLAG_MODE_DEFINE |
589 #undef FLAG_MODE_DEFINE_DEFAULTS | 590 #undef FLAG_MODE_DEFINE_DEFAULTS |
590 #undef FLAG_MODE_META | 591 #undef FLAG_MODE_META |
591 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 592 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |