| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 DEFINE_bool(enable_sse4_1, true, | 267 DEFINE_bool(enable_sse4_1, true, |
| 268 "enable use of SSE4.1 instructions if available") | 268 "enable use of SSE4.1 instructions if available") |
| 269 DEFINE_bool(enable_cmov, true, | 269 DEFINE_bool(enable_cmov, true, |
| 270 "enable use of CMOV instruction if available") | 270 "enable use of CMOV instruction if available") |
| 271 DEFINE_bool(enable_rdtsc, true, | 271 DEFINE_bool(enable_rdtsc, true, |
| 272 "enable use of RDTSC instruction if available") | 272 "enable use of RDTSC instruction if available") |
| 273 DEFINE_bool(enable_sahf, true, | 273 DEFINE_bool(enable_sahf, true, |
| 274 "enable use of SAHF instruction if available (X64 only)") | 274 "enable use of SAHF instruction if available (X64 only)") |
| 275 DEFINE_bool(enable_vfp3, true, | 275 DEFINE_bool(enable_vfp3, true, |
| 276 "enable use of VFP3 instructions if available - this implies " | 276 "enable use of VFP3 instructions if available - this implies " |
| 277 "enabling ARMv7 instructions (ARM only)") | 277 "enabling ARMv7 and VFP2 instructions (ARM only)") |
| 278 DEFINE_bool(enable_armv7, true, | 278 DEFINE_bool(enable_armv7, true, |
| 279 "enable use of ARMv7 instructions if available (ARM only)") | 279 "enable use of ARMv7 instructions if available (ARM only)") |
| 280 DEFINE_bool(enable_fpu, true, | 280 DEFINE_bool(enable_fpu, true, |
| 281 "enable use of MIPS FPU instructions if available (MIPS only)") | 281 "enable use of MIPS FPU instructions if available (MIPS only)") |
| 282 | 282 |
| 283 // bootstrapper.cc | 283 // bootstrapper.cc |
| 284 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 284 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 285 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 285 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 286 DEFINE_bool(expose_gc, false, "expose gc extension") | 286 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 287 DEFINE_bool(expose_externalize_string, false, | 287 DEFINE_bool(expose_externalize_string, false, |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 #undef DEFINE_bool | 677 #undef DEFINE_bool |
| 678 #undef DEFINE_int | 678 #undef DEFINE_int |
| 679 #undef DEFINE_string | 679 #undef DEFINE_string |
| 680 #undef DEFINE_implication | 680 #undef DEFINE_implication |
| 681 | 681 |
| 682 #undef FLAG_MODE_DECLARE | 682 #undef FLAG_MODE_DECLARE |
| 683 #undef FLAG_MODE_DEFINE | 683 #undef FLAG_MODE_DEFINE |
| 684 #undef FLAG_MODE_DEFINE_DEFAULTS | 684 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 685 #undef FLAG_MODE_META | 685 #undef FLAG_MODE_META |
| 686 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 686 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |