Computes both the sine and the cosine of the source operand in register ST(0), stores the sine in ST(0), and pushes the cosine onto the top of the FPU register stack. (This instruction is faster than executing the FSIN and FCOS instructions in succession.) The source operand must be given in radians and must be within the range -2^63 to +2^63. The following table shows the results obtained when taking the sine and cosine of various classes of numbers, assuming that underflow does not occur.
FSINCOS results
Source: ST(0) | Destination: ST(1) Cosine | Destination: ST(0) Sine |
-inf | * | * |
-F | -1 to +1 | -1 to +1 |
-0 | +1 | -0 |
+0 | +1 | +0 |
+F | -1 to +1 | -1 to +1 |
+inf | * | * |
NaN | NaN | NaN |
F Means finite floating-point value. |
* Indicates floating-point invalid-arithmetic-operand (#IA) exception. |
FSINCOS: Sine and Cosine (x86 Instruction Set Reference)
|