[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / llvm.amdgcn.fract.ll
blobd4f1c5fd9be76b6fdb8513ba8c6c1f265258917d
1 ; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=GCN %s
2 ; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=GCN %s
4 declare float @llvm.amdgcn.fract.f32(float) #0
5 declare double @llvm.amdgcn.fract.f64(double) #0
7 ; GCN-LABEL: {{^}}v_fract_f32:
8 ; GCN: v_fract_f32_e32 {{v[0-9]+}}, {{s[0-9]+}}
9 define amdgpu_kernel void @v_fract_f32(float addrspace(1)* %out, float %src) #1 {
10   %fract = call float @llvm.amdgcn.fract.f32(float %src)
11   store float %fract, float addrspace(1)* %out
12   ret void
15 ; GCN-LABEL: {{^}}v_fract_f64:
16 ; GCN: v_fract_f64_e32 {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}
17 define amdgpu_kernel void @v_fract_f64(double addrspace(1)* %out, double %src) #1 {
18   %fract = call double @llvm.amdgcn.fract.f64(double %src)
19   store double %fract, double addrspace(1)* %out
20   ret void
23 ; GCN-LABEL: {{^}}v_fract_undef_f32:
24 ; GCN-NOT: v_fract_f32
25 ; GCN-NOT: store_dword
26 define amdgpu_kernel void @v_fract_undef_f32(float addrspace(1)* %out) #1 {
27   %fract = call float @llvm.amdgcn.fract.f32(float undef)
28   store float %fract, float addrspace(1)* %out
29   ret void
32 attributes #0 = { nounwind readnone }
33 attributes #1 = { nounwind }