[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.rsq.ll
blob6e6a3cbdd4887d4666a72b3c7919f5741ad97c6c
1 ; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
2 ; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
4 declare float @llvm.amdgcn.rsq.f32(float) #0
5 declare double @llvm.amdgcn.rsq.f64(double) #0
7 ; FUNC-LABEL: {{^}}rsq_f32:
8 ; SI: v_rsq_f32_e32 {{v[0-9]+}}, {{s[0-9]+}}
9 define amdgpu_kernel void @rsq_f32(ptr addrspace(1) %out, float %src) #1 {
10   %rsq = call float @llvm.amdgcn.rsq.f32(float %src) #0
11   store float %rsq, ptr addrspace(1) %out, align 4
12   ret void
15 ; TODO: Really these should be constant folded
16 ; FUNC-LABEL: {{^}}rsq_f32_constant_4.0
17 ; SI: v_rsq_f32_e32 {{v[0-9]+}}, 4.0
18 define amdgpu_kernel void @rsq_f32_constant_4.0(ptr addrspace(1) %out) #1 {
19   %rsq = call float @llvm.amdgcn.rsq.f32(float 4.0) #0
20   store float %rsq, ptr addrspace(1) %out, align 4
21   ret void
24 ; FUNC-LABEL: {{^}}rsq_f32_constant_100.0
25 ; SI: v_rsq_f32_e32 {{v[0-9]+}}, 0x42c80000
26 define amdgpu_kernel void @rsq_f32_constant_100.0(ptr addrspace(1) %out) #1 {
27   %rsq = call float @llvm.amdgcn.rsq.f32(float 100.0) #0
28   store float %rsq, ptr addrspace(1) %out, align 4
29   ret void
32 ; FUNC-LABEL: {{^}}rsq_f64:
33 ; SI: v_rsq_f64_e32 {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}
34 define amdgpu_kernel void @rsq_f64(ptr addrspace(1) %out, double %src) #1 {
35   %rsq = call double @llvm.amdgcn.rsq.f64(double %src) #0
36   store double %rsq, ptr addrspace(1) %out, align 4
37   ret void
40 ; TODO: Really these should be constant folded
41 ; FUNC-LABEL: {{^}}rsq_f64_constant_4.0
42 ; SI: v_rsq_f64_e32 {{v\[[0-9]+:[0-9]+\]}}, 4.0
43 define amdgpu_kernel void @rsq_f64_constant_4.0(ptr addrspace(1) %out) #1 {
44   %rsq = call double @llvm.amdgcn.rsq.f64(double 4.0) #0
45   store double %rsq, ptr addrspace(1) %out, align 4
46   ret void
49 ; FUNC-LABEL: {{^}}rsq_f64_constant_100.0
50 ; SI: v_rsq_f64_e32 {{v\[[0-9]+:[0-9]+\]}}, 0x40590000
51 define amdgpu_kernel void @rsq_f64_constant_100.0(ptr addrspace(1) %out) #1 {
52   %rsq = call double @llvm.amdgcn.rsq.f64(double 100.0) #0
53   store double %rsq, ptr addrspace(1) %out, align 4
54   ret void
57 ; FUNC-LABEL: {{^}}rsq_undef_f32:
58 ; SI-NOT: v_rsq_f32
59 define amdgpu_kernel void @rsq_undef_f32(ptr addrspace(1) %out) #1 {
60   %rsq = call float @llvm.amdgcn.rsq.f32(float undef)
61   store float %rsq, ptr addrspace(1) %out, align 4
62   ret void
65 attributes #0 = { nounwind readnone }
66 attributes #1 = { nounwind }