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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
302 "enable use of SSE3 instructions if available") | 302 "enable use of SSE3 instructions if available") |
303 DEFINE_bool(enable_sse4_1, true, | 303 DEFINE_bool(enable_sse4_1, true, |
304 "enable use of SSE4.1 instructions if available") | 304 "enable use of SSE4.1 instructions if available") |
305 DEFINE_bool(enable_cmov, true, | 305 DEFINE_bool(enable_cmov, true, |
306 "enable use of CMOV instruction if available") | 306 "enable use of CMOV instruction if available") |
307 DEFINE_bool(enable_rdtsc, true, | 307 DEFINE_bool(enable_rdtsc, true, |
308 "enable use of RDTSC instruction if available") | 308 "enable use of RDTSC instruction if available") |
309 DEFINE_bool(enable_sahf, true, | 309 DEFINE_bool(enable_sahf, true, |
310 "enable use of SAHF instruction if available (X64 only)") | 310 "enable use of SAHF instruction if available (X64 only)") |
311 DEFINE_bool(enable_vfp3, true, | 311 DEFINE_bool(enable_vfp3, true, |
312 "enable use of VFP3 instructions if available - this implies " | 312 "enable use of VFP3 instructions if available") |
313 "enabling ARMv7 and VFP2 instructions (ARM only)") | |
314 DEFINE_bool(enable_vfp2, true, | 313 DEFINE_bool(enable_vfp2, true, |
315 "enable use of VFP2 instructions if available") | 314 "this flag is no longer supported, VFP2 support is a basic " |
315 "requirement for V8 on ARM") | |
Yang
2013/04/05 10:07:01
Not sure why we don't just remove this flag. Speci
danno
2013/04/08 19:45:33
Done.
| |
316 DEFINE_bool(enable_armv7, true, | 316 DEFINE_bool(enable_armv7, true, |
317 "enable use of ARMv7 instructions if available (ARM only)") | 317 "enable use of ARMv7 instructions if available (ARM only)") |
318 DEFINE_bool(enable_sudiv, true, | 318 DEFINE_bool(enable_sudiv, true, |
319 "enable use of SDIV and UDIV instructions if available (ARM only)") | 319 "enable use of SDIV and UDIV instructions if available (ARM only)") |
320 DEFINE_bool(enable_movw_movt, false, | 320 DEFINE_bool(enable_movw_movt, false, |
321 "enable loading 32-bit constant by means of movw/movt " | 321 "enable loading 32-bit constant by means of movw/movt " |
322 "instruction pairs (ARM only)") | 322 "instruction pairs (ARM only)") |
323 DEFINE_bool(enable_unaligned_accesses, true, | 323 DEFINE_bool(enable_unaligned_accesses, true, |
324 "enable unaligned accesses for ARMv7 (ARM only)") | 324 "enable unaligned accesses for ARMv7 (ARM only)") |
325 DEFINE_bool(enable_32dregs, true, | 325 DEFINE_bool(enable_32dregs, true, |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
757 #undef DEFINE_bool | 757 #undef DEFINE_bool |
758 #undef DEFINE_int | 758 #undef DEFINE_int |
759 #undef DEFINE_string | 759 #undef DEFINE_string |
760 #undef DEFINE_implication | 760 #undef DEFINE_implication |
761 | 761 |
762 #undef FLAG_MODE_DECLARE | 762 #undef FLAG_MODE_DECLARE |
763 #undef FLAG_MODE_DEFINE | 763 #undef FLAG_MODE_DEFINE |
764 #undef FLAG_MODE_DEFINE_DEFAULTS | 764 #undef FLAG_MODE_DEFINE_DEFAULTS |
765 #undef FLAG_MODE_META | 765 #undef FLAG_MODE_META |
766 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 766 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |