| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 DEFINE_bool(use_osr, true, "use on-stack replacement") | 140 DEFINE_bool(use_osr, true, "use on-stack replacement") |
| 141 | 141 |
| 142 DEFINE_bool(trace_osr, false, "trace on-stack replacement") | 142 DEFINE_bool(trace_osr, false, "trace on-stack replacement") |
| 143 DEFINE_int(stress_runs, 0, "number of stress runs") | 143 DEFINE_int(stress_runs, 0, "number of stress runs") |
| 144 DEFINE_bool(optimize_closures, true, "optimize closures") | 144 DEFINE_bool(optimize_closures, true, "optimize closures") |
| 145 | 145 |
| 146 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc | 146 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc |
| 147 DEFINE_bool(debug_code, false, | 147 DEFINE_bool(debug_code, false, |
| 148 "generate extra code (assertions) for debugging") | 148 "generate extra code (assertions) for debugging") |
| 149 DEFINE_bool(code_comments, false, "emit comments in code disassembly") | 149 DEFINE_bool(code_comments, false, "emit comments in code disassembly") |
| 150 DEFINE_bool(emit_branch_hints, false, "emit branch hints") | |
| 151 DEFINE_bool(peephole_optimization, true, | 150 DEFINE_bool(peephole_optimization, true, |
| 152 "perform peephole optimizations in assembly code") | 151 "perform peephole optimizations in assembly code") |
| 153 DEFINE_bool(print_peephole_optimization, false, | 152 DEFINE_bool(print_peephole_optimization, false, |
| 154 "print peephole optimizations in assembly code") | 153 "print peephole optimizations in assembly code") |
| 155 DEFINE_bool(enable_sse2, true, | 154 DEFINE_bool(enable_sse2, true, |
| 156 "enable use of SSE2 instructions if available") | 155 "enable use of SSE2 instructions if available") |
| 157 DEFINE_bool(enable_sse3, true, | 156 DEFINE_bool(enable_sse3, true, |
| 158 "enable use of SSE3 instructions if available") | 157 "enable use of SSE3 instructions if available") |
| 159 DEFINE_bool(enable_sse4_1, true, | 158 DEFINE_bool(enable_sse4_1, true, |
| 160 "enable use of SSE4.1 instructions if available") | 159 "enable use of SSE4.1 instructions if available") |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 #undef FLAG | 552 #undef FLAG |
| 554 | 553 |
| 555 #undef DEFINE_bool | 554 #undef DEFINE_bool |
| 556 #undef DEFINE_int | 555 #undef DEFINE_int |
| 557 #undef DEFINE_string | 556 #undef DEFINE_string |
| 558 | 557 |
| 559 #undef FLAG_MODE_DECLARE | 558 #undef FLAG_MODE_DECLARE |
| 560 #undef FLAG_MODE_DEFINE | 559 #undef FLAG_MODE_DEFINE |
| 561 #undef FLAG_MODE_DEFINE_DEFAULTS | 560 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 562 #undef FLAG_MODE_META | 561 #undef FLAG_MODE_META |
| OLD | NEW |