1,717 changes: 1,532 additions & 185 deletions llvm/test/CodeGen/AMDGPU/fcopysign.f16.ll

Large diffs are not rendered by default.

804 changes: 770 additions & 34 deletions llvm/test/CodeGen/AMDGPU/fcopysign.f32.ll

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions llvm/test/CodeGen/AMDGPU/fcopysign.f32.r600.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
; RUN: llc -march=r600 -mcpu=cypress < %s | FileCheck -check-prefix=EG %s

declare float @llvm.copysign.f32(float, float) nounwind readnone
declare <2 x float> @llvm.copysign.v2f32(<2 x float>, <2 x float>) nounwind readnone
declare <4 x float> @llvm.copysign.v4f32(<4 x float>, <4 x float>) nounwind readnone

; EG: BFI_INT
define amdgpu_kernel void @test_copysign_f32(ptr addrspace(1) %out, float %mag, float %sign) nounwind {
%result = call float @llvm.copysign.f32(float %mag, float %sign)
store float %result, ptr addrspace(1) %out, align 4
ret void
}

; EG: BFI_INT
; EG: BFI_INT
define amdgpu_kernel void @test_copysign_v2f32(ptr addrspace(1) %out, <2 x float> %mag, <2 x float> %sign) nounwind {
%result = call <2 x float> @llvm.copysign.v2f32(<2 x float> %mag, <2 x float> %sign)
store <2 x float> %result, ptr addrspace(1) %out, align 8
ret void
}

; EG: BFI_INT
; EG: BFI_INT
; EG: BFI_INT
; EG: BFI_INT
define amdgpu_kernel void @test_copysign_v4f32(ptr addrspace(1) %out, <4 x float> %mag, <4 x float> %sign) nounwind {
%result = call <4 x float> @llvm.copysign.v4f32(<4 x float> %mag, <4 x float> %sign)
store <4 x float> %result, ptr addrspace(1) %out, align 16
ret void
}
791 changes: 750 additions & 41 deletions llvm/test/CodeGen/AMDGPU/fcopysign.f64.ll

Large diffs are not rendered by default.

860 changes: 860 additions & 0 deletions llvm/test/CodeGen/AMDGPU/fneg-modifier-casting.ll

Large diffs are not rendered by default.