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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
276 DEFINE_bool(enable_sse3, true, | 276 DEFINE_bool(enable_sse3, true, |
277 "enable use of SSE3 instructions if available") | 277 "enable use of SSE3 instructions if available") |
278 DEFINE_bool(enable_sse4_1, true, | 278 DEFINE_bool(enable_sse4_1, true, |
279 "enable use of SSE4.1 instructions if available") | 279 "enable use of SSE4.1 instructions if available") |
280 DEFINE_bool(enable_cmov, true, | 280 DEFINE_bool(enable_cmov, true, |
281 "enable use of CMOV instruction if available") | 281 "enable use of CMOV instruction if available") |
282 DEFINE_bool(enable_rdtsc, true, | 282 DEFINE_bool(enable_rdtsc, true, |
283 "enable use of RDTSC instruction if available") | 283 "enable use of RDTSC instruction if available") |
284 DEFINE_bool(enable_sahf, true, | 284 DEFINE_bool(enable_sahf, true, |
285 "enable use of SAHF instruction if available (X64 only)") | 285 "enable use of SAHF instruction if available (X64 only)") |
286 DEFINE_bool(enable_vfp3, true, | 286 DEFINE_bool(enable_vfp3, false, |
Jakob Kummerow
2012/11/19 12:36:00
don't forget to undo this change
danno
2012/11/26 17:16:18
Done.
| |
287 "enable use of VFP3 instructions if available - this implies " | 287 "enable use of VFP3 instructions if available - this implies " |
288 "enabling ARMv7 and VFP2 instructions (ARM only)") | 288 "enabling ARMv7 and VFP2 instructions (ARM only)") |
289 DEFINE_bool(enable_vfp2, true, | 289 DEFINE_bool(enable_vfp2, false, |
290 "enable use of VFP2 instructions if available") | 290 "enable use of VFP2 instructions if available") |
291 DEFINE_bool(enable_armv7, true, | 291 DEFINE_bool(enable_armv7, true, |
292 "enable use of ARMv7 instructions if available (ARM only)") | 292 "enable use of ARMv7 instructions if available (ARM only)") |
293 DEFINE_bool(enable_sudiv, true, | 293 DEFINE_bool(enable_sudiv, true, |
294 "enable use of SDIV and UDIV instructions if available (ARM only)") | 294 "enable use of SDIV and UDIV instructions if available (ARM only)") |
295 DEFINE_bool(enable_movw_movt, false, | 295 DEFINE_bool(enable_movw_movt, false, |
296 "enable loading 32-bit constant by means of movw/movt " | 296 "enable loading 32-bit constant by means of movw/movt " |
297 "instruction pairs (ARM only)") | 297 "instruction pairs (ARM only)") |
298 DEFINE_bool(enable_unaligned_accesses, true, | 298 DEFINE_bool(enable_unaligned_accesses, true, |
299 "enable unaligned accesses for ARMv7 (ARM only)") | 299 "enable unaligned accesses for ARMv7 (ARM only)") |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
711 #undef DEFINE_bool | 711 #undef DEFINE_bool |
712 #undef DEFINE_int | 712 #undef DEFINE_int |
713 #undef DEFINE_string | 713 #undef DEFINE_string |
714 #undef DEFINE_implication | 714 #undef DEFINE_implication |
715 | 715 |
716 #undef FLAG_MODE_DECLARE | 716 #undef FLAG_MODE_DECLARE |
717 #undef FLAG_MODE_DEFINE | 717 #undef FLAG_MODE_DEFINE |
718 #undef FLAG_MODE_DEFINE_DEFAULTS | 718 #undef FLAG_MODE_DEFINE_DEFAULTS |
719 #undef FLAG_MODE_META | 719 #undef FLAG_MODE_META |
720 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 720 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |