mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
d688e1d62e
Differential Revision: https://reviews.llvm.org/D85337
49 lines
2.4 KiB
LLVM
49 lines
2.4 KiB
LLVM
; RUN: llc -march=amdgcn -mcpu=gfx906 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX906
|
|
; RUN: llc -march=amdgcn -mcpu=gfx908 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX908
|
|
; RUN: llc -march=amdgcn -mcpu=gfx1011 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX10
|
|
; RUN: llc -march=amdgcn -mcpu=gfx1012 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX10
|
|
; RUN: llc -march=amdgcn -mcpu=gfx1030 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX10
|
|
; RUN: llc -march=amdgcn -mcpu=gfx1031 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=GCN,GFX10
|
|
|
|
declare i32 @llvm.amdgcn.sdot8(i32 %a, i32 %b, i32 %c, i1 %clamp)
|
|
|
|
; GCN-LABEL: {{^}}test_llvm_amdgcn_sdot8_clamp
|
|
; GFX906: v_dot8_i32_i4 v{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}} clamp{{$}}
|
|
; GFX908: v_dot8_i32_i4 v{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}} clamp{{$}}
|
|
; GFX10: v_dot8_i32_i4 v{{[0-9]+}}, s{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}} clamp{{$}}
|
|
define amdgpu_kernel void @test_llvm_amdgcn_sdot8_clamp(
|
|
i32 addrspace(1)* %r,
|
|
<8 x i4> addrspace(1)* %a,
|
|
<8 x i4> addrspace(1)* %b,
|
|
i32 addrspace(1)* %c) {
|
|
entry:
|
|
%a.val = load <8 x i4>, <8 x i4> addrspace(1)* %a
|
|
%b.val = load <8 x i4>, <8 x i4> addrspace(1)* %b
|
|
%a.val.cast = bitcast <8 x i4> %a.val to i32
|
|
%b.val.cast = bitcast <8 x i4> %b.val to i32
|
|
%c.val = load i32, i32 addrspace(1)* %c
|
|
%r.val = call i32 @llvm.amdgcn.sdot8(i32 %a.val.cast, i32 %b.val.cast, i32 %c.val, i1 1)
|
|
store i32 %r.val, i32 addrspace(1)* %r
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}test_llvm_amdgcn_sdot8_no_clamp
|
|
; GFX906: v_dot8_i32_i4 v{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}}{{$}}
|
|
; GFX908: v_dot8c_i32_i4_e32 v{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}}{{$}}
|
|
; GFX10: v_dot8_i32_i4 v{{[0-9]+}}, s{{[0-9]+}}, s{{[0-9]+}}, v{{[0-9]+}}{{$}}
|
|
define amdgpu_kernel void @test_llvm_amdgcn_sdot8_no_clamp(
|
|
i32 addrspace(1)* %r,
|
|
<8 x i4> addrspace(1)* %a,
|
|
<8 x i4> addrspace(1)* %b,
|
|
i32 addrspace(1)* %c) {
|
|
entry:
|
|
%a.val = load <8 x i4>, <8 x i4> addrspace(1)* %a
|
|
%b.val = load <8 x i4>, <8 x i4> addrspace(1)* %b
|
|
%a.val.cast = bitcast <8 x i4> %a.val to i32
|
|
%b.val.cast = bitcast <8 x i4> %b.val to i32
|
|
%c.val = load i32, i32 addrspace(1)* %c
|
|
%r.val = call i32 @llvm.amdgcn.sdot8(i32 %a.val.cast, i32 %b.val.cast, i32 %c.val, i1 0)
|
|
store i32 %r.val, i32 addrspace(1)* %r
|
|
ret void
|
|
}
|