[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.udot2.ll
blob490ce706455cd6fae3049ea27ba820acb83d9f88
1 ; RUN: llc -march=amdgcn -mcpu=gfx906 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX9,GFX906
2 ; RUN: llc -march=amdgcn -mcpu=gfx940 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX9,GFX940
3 ; RUN: llc -march=amdgcn -mcpu=gfx940 -global-isel -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX9,GFX940
4 ; RUN: llc -march=amdgcn -mcpu=gfx1011 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX10
5 ; RUN: llc -march=amdgcn -mcpu=gfx1012 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX10
7 declare i32 @llvm.amdgcn.udot2(<2 x i16> %a, <2 x i16> %b, i32 %c, i1 %clamp)
8 declare i32 @llvm.amdgcn.workitem.id.x()
10 ; GCN-LABEL: {{^}}test_llvm_amdgcn_udot2_clamp:
11 ; GFX9:   v_dot2_u32_u16 v{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}} clamp{{$}}
12 ; GFX10:  v_dot2_u32_u16 v{{[0-9]+}}, s{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}} clamp{{$}}
13 define amdgpu_kernel void @test_llvm_amdgcn_udot2_clamp(
14     ptr addrspace(1) %r,
15     ptr addrspace(1) %a,
16     ptr addrspace(1) %b,
17     ptr addrspace(1) %c) {
18 entry:
19   %a.val = load <2 x i16>, ptr addrspace(1) %a
20   %b.val = load <2 x i16>, ptr addrspace(1) %b
21   %c.val = load i32, ptr addrspace(1) %c
22   %r.val = call i32 @llvm.amdgcn.udot2(<2 x i16> %a.val, <2 x i16> %b.val, i32 %c.val, i1 1)
23   store i32 %r.val, ptr addrspace(1) %r
24   ret void
27 ; GCN-LABEL: {{^}}test_llvm_amdgcn_udot2_no_clamp:
28 ; GFX9:   v_dot2_u32_u16 v{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}}{{$}}
29 ; GFX10:  v_dot2_u32_u16 v{{[0-9]+}}, s{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}}{{$}}
30 define amdgpu_kernel void @test_llvm_amdgcn_udot2_no_clamp(
31     ptr addrspace(1) %r,
32     ptr addrspace(1) %a,
33     ptr addrspace(1) %b,
34     ptr addrspace(1) %c) {
35 entry:
36   %a.val = load <2 x i16>, ptr addrspace(1) %a
37   %b.val = load <2 x i16>, ptr addrspace(1) %b
38   %c.val = load i32, ptr addrspace(1) %c
39   %r.val = call i32 @llvm.amdgcn.udot2(<2 x i16> %a.val, <2 x i16> %b.val, i32 %c.val, i1 0)
40   store i32 %r.val, ptr addrspace(1) %r
41   ret void
44 ; GCN-LABEL: {{^}}test_llvm_amdgcn_udot2_op_sel:
45 ; GFX906: v_dot2_u32_u16 v{{[0-9]+}}, 1, v{{[0-9]+}}, s{{[0-9]+}} op_sel:[0,1,0] op_sel_hi:[0,0,1]{{$}}
46 ; GFX940: v_dot2_u32_u16 v{{[0-9]+}}, 1, v{{[0-9]+}}, s{{[0-9]+}}{{$}}
47 ; GFX10:  v_dot2_u32_u16 v{{[0-9]+}}, 1, v{{[0-9]+}}, s{{[0-9]+}} op_sel:[0,1,0] op_sel_hi:[0,0,1]{{$}}
48 define amdgpu_kernel void @test_llvm_amdgcn_udot2_op_sel(
49     ptr addrspace(1) %r,
50     ptr addrspace(1) %b,
51     i32 %c) {
52 entry:
53   %id = tail call i32 @llvm.amdgcn.workitem.id.x()
54   %b.gep = getelementptr inbounds <2 x i16>, ptr addrspace(1) %b, i32 %id
55   %b.val = load <2 x i16>, ptr addrspace(1) %b.gep
56   %b.elt0 = extractelement <2 x i16> %b.val, i32 0
57   %b.elt1 = extractelement <2 x i16> %b.val, i32 1
58   %b0 = insertelement <2 x i16> undef, i16 %b.elt1, i32 0
59   %b1 = insertelement <2 x i16> %b0, i16 %b.elt0, i32 1
60   %r.val = call i32 @llvm.amdgcn.udot2(<2 x i16> <i16 1, i16 1>, <2 x i16> %b1, i32 %c, i1 0)
61   store i32 %r.val, ptr addrspace(1) %r
62   ret void