[clang] [compiler-rt] [llvm] [SystemZ] Add support for half (fp16) (PR #109164)

Jonas Paulsson via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 11:19:57 PDT 2025


================
@@ -548,11 +543,28 @@ SystemZTargetLowering::SystemZTargetLowering(const TargetMachine &TM,
   }
 
   // Handle floating-point types.
+  if (!useSoftFloat()) {
+    // Promote all f16 operations to float, with some exceptions below.
+    for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
+      setOperationAction(Opc, MVT::f16, Promote);
----------------
JonPsson1 wrote:

- #97975 _"...a conversion back to f16 must occur after each operation, otherwise the excess precision of float will affect the result..."_: There are already tests for this, for example @fun6 in fp-half.ll.

- #97981 _"... The issue is that these builtins silence signalling NaNs which changes the NaN payload, meaning that the roundtrip of half -> float -> half is not lossless and causes the generated ASM to violate the semantics of LLVM IR...":_ Not sure what to do about this one.

https://github.com/llvm/llvm-project/pull/109164


More information about the llvm-commits mailing list