fpatan
Partial Arctangent
Computes arctan(ST(1)/ST(0)).
Pseudocode Operation
ST(0) ← atan2(ST(1), ST(0)); pop(); TOS ← TOS - 1
Encoding
Operands
Related
More in x87 FPU
Reference
Instruction Forms
| Opcode | Instruction | Op/En | 64/32-bit Mode | CPUID | Description |
|---|---|---|---|---|---|
| D9 F3 | FPATAN | Valid Valid | Replace ST(1) with arctan(ST(1)/ST(0)) and pop the register stack. |
Description
Computes the arctangent of the source operand in register ST(1) divided by the source operand in register ST(0), stores the result in ST(1), and pops the FPU register stack. The result in register ST(0) has the same sign as the source operand ST(1) and a magnitude less than +π. The FPATAN instruction returns the angle between the X axis and the line from the origin to the point (X,Y), where Y (the ordinate) is ST(1) and X (the abscissa) is ST(0). The angle depends on the sign of X and Y independently, not just on the sign of the ratio Y/X. This is because a point (-X,Y) is in the second quadrant, resulting in an angle between π/2 and π, while a point (X,-Y) is in the fourth quadrant, resulting in an angle between 0 and -π/2. A point (-X,-Y) is in the third quadrant, giving an angle between -π/2 and -π. The following table shows the results obtained when computing the arctangent of various classes of numbers, assuming that underflow does not occur. Table 3-32. FPATAN Results ST(0)
- ∞ - F - 0 + 0 + F + ∞ NaN - ∞ - 3π/4* - π/2 - π/2 - π/2 - π/2 - π/4* NaN ST(1) - F -p -π to -π/2 -π/2 -π/2 -π/2 to -0 - 0 NaN - 0 -p -p -p* - 0* - 0 - 0 NaN + 0 +p + p + π* + 0* + 0 + 0 NaN + F +p +π to +π/2 + π/2 +π/2 +π/2 to +0 + 0 NaN + ∞ +3π/4* +π/2 +π/2 +π/2 + π/2 + π/4* NaN NaN NaN NaN NaN NaN NaN NaN NaN
Operation
ST(1) := arctan(ST(1) / ST(0)); PopRegisterStack;