(no commit message)
authorlkcl <lkcl@web>
Wed, 25 May 2022 10:03:37 +0000 (11:03 +0100)
committerIkiWiki <ikiwiki.info>
Wed, 25 May 2022 10:03:37 +0000 (11:03 +0100)
openpower/sv/int_fp_mv.mdwn

index 8d0c3a05e784eb80ddb64708cc4446ac5314a39f..16c7af247e72ca90ff9e10b8a02241ac3eae9638 100644 (file)
@@ -69,13 +69,13 @@ semantics for FP to Integer conversion.  This section gives an overview
 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
@@ -85,7 +85,7 @@ OpenPOWER however has instructions for both:
 * 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).