blob: 2416d6a852eb97979c3c964f6f9dada4669b6e62 [file] [edit]
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -mtriple=amdgcn < %s | FileCheck %s --check-prefixes=CHECK,SIGNED-ZEROS
; RUN: llc -mtriple=amdgcn --enable-no-signed-zeros-fp-math < %s | FileCheck %s --check-prefixes=CHECK,NO-SIGNED-ZEROS
; Test folding of float->int->float roundtrips into float-only operations.
define float @test_signed_basic(float %x) {
; SIGNED-ZEROS-LABEL: test_signed_basic:
; SIGNED-ZEROS: ; %bb.0: ; %entry
; SIGNED-ZEROS-NEXT: s_waitcnt vmcnt(0) expcnt(0) lgkmcnt(0)
; SIGNED-ZEROS-NEXT: v_cvt_i32_f32_e32 v0, v0
; SIGNED-ZEROS-NEXT: v_cvt_f32_i32_e32 v0, v0
; SIGNED-ZEROS-NEXT: s_setpc_b64 s[30:31]
;
; NO-SIGNED-ZEROS-LABEL: test_signed_basic:
; NO-SIGNED-ZEROS: ; %bb.0: ; %entry
; NO-SIGNED-ZEROS-NEXT: s_waitcnt vmcnt(0) expcnt(0) lgkmcnt(0)
; NO-SIGNED-ZEROS-NEXT: v_trunc_f32_e32 v0, v0
; NO-SIGNED-ZEROS-NEXT: s_setpc_b64 s[30:31]
entry:
%i = fptosi float %x to i32
%f = sitofp i32 %i to float
ret float %f
}
; For unsigned conversions, even when signed zeros are possible, we can still
; use truncate because fabs is free.
define float @test_unsigned_basic(float %x) {
; SIGNED-ZEROS-LABEL: test_unsigned_basic:
; SIGNED-ZEROS: ; %bb.0: ; %entry
; SIGNED-ZEROS-NEXT: s_waitcnt vmcnt(0) expcnt(0) lgkmcnt(0)
; SIGNED-ZEROS-NEXT: v_trunc_f32_e64 v0, |v0|
; SIGNED-ZEROS-NEXT: s_setpc_b64 s[30:31]
;
; NO-SIGNED-ZEROS-LABEL: test_unsigned_basic:
; NO-SIGNED-ZEROS: ; %bb.0: ; %entry
; NO-SIGNED-ZEROS-NEXT: s_waitcnt vmcnt(0) expcnt(0) lgkmcnt(0)
; NO-SIGNED-ZEROS-NEXT: v_trunc_f32_e32 v0, v0
; NO-SIGNED-ZEROS-NEXT: s_setpc_b64 s[30:31]
entry:
%i = fptoui float %x to i32
%f = uitofp i32 %i to float
ret float %f
}
; 16777217 is NOT exactly representable in f32.
define float @test_inexact_16777217(float %x) {
; CHECK-LABEL: test_inexact_16777217:
; CHECK: ; %bb.0: ; %entry
; CHECK-NEXT: s_waitcnt vmcnt(0) expcnt(0) lgkmcnt(0)
; CHECK-NEXT: v_cvt_i32_f32_e32 v0, v0
; CHECK-NEXT: v_min_i32_e32 v0, 0x1000001, v0
; CHECK-NEXT: v_cvt_f32_i32_e32 v0, v0
; CHECK-NEXT: s_setpc_b64 s[30:31]
entry:
%i = fptosi float %x to i32
%clamped = call i32 @llvm.smin.i32(i32 %i, i32 16777217)
%f = sitofp i32 %clamped to float
ret float %f
}
declare i32 @llvm.smin.i32(i32, i32)