fnmsub
Floating-Point Fused Negated Multiply-Subtract (Scalar)
Calculates -((Vn * Vm) - Va).
Pseudocode Operation
if HaveFPExt() then
Vd ← FPNegMulSub(Vn, Vm, Va)
else
UNDEFINED
Example
Encoding
Operands
-
Hd|Sd|Dd
Destination SIMD&FP register (half, single or double-precision) -
Hn|Sn|Dn
First source SIMD&FP register (half, single or double-precision) -
Hm|Sm|Dm
Second source SIMD&FP register (half, single or double-precision) -
Ha|Sa|Da
Third source (accumulator) SIMD&FP register (half, single or double-precision)
Related
More in Floating Point
Reference
Instruction Forms
| Encoding | Instruction | ISA | Bit pattern | ||
|---|---|---|---|---|---|
| 0x1FE08000 | FNMSUB <Hd>, <Hn>, <Hm>, <Ha> | A64 | 0 | 0 | 0 | 11111 | 11 | 1 | Rm | 1 | Ra | Rn | Rd | ||
| 0x1F208000 | FNMSUB <Sd>, <Sn>, <Sm>, <Sa> | A64 | 0 | 0 | 0 | 11111 | 00 | 1 | Rm | 1 | Ra | Rn | Rd | ||
| 0x1F608000 | FNMSUB <Dd>, <Dn>, <Dm>, <Da> | A64 | 0 | 0 | 0 | 11111 | 01 | 1 | Rm | 1 | Ra | Rn | Rd |
Description
Floating-point Negated fused Multiply-Subtract (scalar). This instruction multiplies the values of the first two SIMD&FP source registers, subtracts the value of the third SIMD&FP source register, and writes the result to the destination SIMD&FP register. A floating-point exception can be generated by this instruction. Depending on the settings in FPCR, the exception results in either a flag being set in FPSR, or a synchronous exception being generated. For more information, see Floating-point exception traps. Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
Operation
CheckFPEnabled64(); bits(esize) operanda = V[a, esize]; bits(esize) operand1 = V[n, esize]; bits(esize) operand2 = V[m, esize]; boolean merge = IsMerging(FPCR); bits(128) result = if merge then V[a, 128] else Zeros(128); operanda = FPNeg(operanda, FPCR); Elem[result, 0, esize] = FPMulAdd(operanda, operand1, operand2, FPCR); V[d, 128] = result;