[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.trig.preop.ll
blob8468aa3a7b3ef33d8dd53a2199bd87cb876940bb
1 ; RUN:  llc -amdgpu-scalarize-global-loads=false  -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
2 ; RUN:  llc -amdgpu-scalarize-global-loads=false  -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
4 declare double @llvm.amdgcn.trig.preop.f64(double, i32) nounwind readnone
6 ; SI-LABEL: {{^}}test_trig_preop_f64:
7 ; SI-DAG: buffer_load_dword [[SEG:v[0-9]+]]
8 ; SI-DAG: buffer_load_dwordx2 [[SRC:v\[[0-9]+:[0-9]+\]]],
9 ; SI: v_trig_preop_f64 [[RESULT:v\[[0-9]+:[0-9]+\]]], [[SRC]], [[SEG]]
10 ; SI: buffer_store_dwordx2 [[RESULT]],
11 ; SI: s_endpgm
12 define amdgpu_kernel void @test_trig_preop_f64(double addrspace(1)* %out, double addrspace(1)* %aptr, i32 addrspace(1)* %bptr) nounwind {
13   %a = load double, double addrspace(1)* %aptr, align 8
14   %b = load i32, i32 addrspace(1)* %bptr, align 4
15   %result = call double @llvm.amdgcn.trig.preop.f64(double %a, i32 %b) nounwind readnone
16   store double %result, double addrspace(1)* %out, align 8
17   ret void
20 ; SI-LABEL: {{^}}test_trig_preop_f64_imm_segment:
21 ; SI: buffer_load_dwordx2 [[SRC:v\[[0-9]+:[0-9]+\]]],
22 ; SI: v_trig_preop_f64 [[RESULT:v\[[0-9]+:[0-9]+\]]], [[SRC]], 7
23 ; SI: buffer_store_dwordx2 [[RESULT]],
24 ; SI: s_endpgm
25 define amdgpu_kernel void @test_trig_preop_f64_imm_segment(double addrspace(1)* %out, double addrspace(1)* %aptr) nounwind {
26   %a = load double, double addrspace(1)* %aptr, align 8
27   %result = call double @llvm.amdgcn.trig.preop.f64(double %a, i32 7) nounwind readnone
28   store double %result, double addrspace(1)* %out, align 8
29   ret void