Files
clang-p2996/llvm/test/CodeGen/SystemZ/fp-conv-08.ll
Jonas Paulsson 6d03f51f0c [SystemZ] Add support for 16-bit floating point. (#109164)
- _Float16 is now accepted by Clang.

- The half IR type is fully handled by the backend.

- These values are passed in FP registers and converted to/from float around
  each operation.

- Compiler-rt conversion functions are now built for s390x including the missing
  extendhfdf2 which was added.

Fixes #50374
2025-04-16 20:02:56 +02:00

47 lines
1.0 KiB
LLVM

; Test conversions of unsigned i64s to floating-point values (z10 only).
;
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s
; Test i64->f16. For z10, this results in just a single a libcall.
define half @f0(i64 %i) {
; CHECK-LABEL: f0:
; CHECK: cegbr
; CHECK: aebr
; CHECK: brasl %r14, __truncsfhf2@PLT
; CHECK: br %r14
%conv = uitofp i64 %i to half
ret half %conv
}
; Test i64->f32. There's no native support for unsigned i64-to-fp conversions,
; but we should be able to implement them using signed i64-to-fp conversions.
define float @f1(i64 %i) {
; CHECK-LABEL: f1:
; CHECK: cegbr
; CHECK: aebr
; CHECK: br %r14
%conv = uitofp i64 %i to float
ret float %conv
}
; Test i64->f64.
define double @f2(i64 %i) {
; CHECK-LABEL: f2:
; CHECK: ldgr
; CHECK: adbr
; CHECK: br %r14
%conv = uitofp i64 %i to double
ret double %conv
}
; Test i64->f128.
define void @f3(i64 %i, ptr %dst) {
; CHECK-LABEL: f3:
; CHECK: cxgbr
; CHECK: axbr
; CHECK: br %r14
%conv = uitofp i64 %i to fp128
store fp128 %conv, ptr %dst
ret void
}