the opportunity may be taken to modernise the instructions and make them
well-suited for common/important conversion sequences:
-* **standard** - used by most languages and CPUs
+* **standard IEEE754** - used by most languages and CPUs
* **standard OpenPOWER** - saturation with NaN
converted to minimum valid integer
* **Java** - saturation with NaN converted to 0
of the different variants, listing the languages and hardware that
implements each variant.
-## standard conversion
+## standard IEEE754 conversion
This conversion is outlined in the IEEE754 specification. It is used
by nearly all programming languages and CPUs. In the case of OpenPOWER,
instructions when decorated with
[the `SaturatedConversion` decorator](https://www.khronos.org/registry/spir-v/specs/unified1/SPIRV.html#_a_id_decoration_a_decoration).
-### JavaScript FP -> Integer conversion
+### JavaScript conversion
For the sake of simplicity, the FP -> Integer conversion semantics generalized from those used by JavaScripts's `ToInt32` abstract operation will be referred to as [JavaScript conversion semantics](#fp-to-int-javascript-conversion-semantics).