of the different variants, listing the languages and hardware that
implements each variant.
-## standard Integer -> FP conversion
+## standard conversion
This conversion is outlined in the IEEE754 specification. It is used
by nearly all programming languages and CPUs. In the case of OpenPOWER,
the rounding mode is read from FPSCR
-### standard OpenPower FP -> Integer conversion
+### standard OpenPower conversion
This conversion, instead of exact IEEE754 Compliance, performs
"saturation with NaN converted to minimum valid integer". This
* rounding mode read from FPSCR
* rounding mode always set to truncate
-### Java FP -> Integer conversion
+### Java conversion
For the sake of simplicity, the FP -> Integer conversion semantics generalized from those used by Java's semantics (and Rust's `as` operator) will be referred to as
[Java conversion semantics](#fp-to-int-java-conversion-semantics).