[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / SPIRV / half_no_extension.ll
bloba5b0ec9c92d236abf38f75eaac7141bc288d7562
1 ;; __kernel void test( __global float4 *p, __global half *f )
2 ;; {
3 ;;   __private float4 data;
4 ;;   data = p[0];
5 ;;   vstorea_half4_rtp( data, 0, f );
6 ;; }
8 ; RUN: llc -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV
10 ; CHECK-SPIRV:     OpCapability Float16Buffer
11 ; CHECK-SPIRV-NOT: OpCapability Float16
13 define spir_kernel void @test(<4 x float> addrspace(1)* %p, half addrspace(1)* %f) {
14 entry:
15   %p.addr = alloca <4 x float> addrspace(1)*, align 8
16   %f.addr = alloca half addrspace(1)*, align 8
17   %data = alloca <4 x float>, align 16
18   store <4 x float> addrspace(1)* %p, <4 x float> addrspace(1)** %p.addr, align 8
19   store half addrspace(1)* %f, half addrspace(1)** %f.addr, align 8
20   %0 = load <4 x float> addrspace(1)*, <4 x float> addrspace(1)** %p.addr, align 8
21   %arrayidx = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %0, i64 0
22   %1 = load <4 x float>, <4 x float> addrspace(1)* %arrayidx, align 16
23   store <4 x float> %1, <4 x float>* %data, align 16
24   %2 = load <4 x float>, <4 x float>* %data, align 16
25   %3 = load half addrspace(1)*, half addrspace(1)** %f.addr, align 8
26   call spir_func void @_Z17vstorea_half4_rtpDv4_fmPU3AS1Dh(<4 x float> %2, i64 0, half addrspace(1)* %3)
27   ret void
30 declare spir_func void @_Z17vstorea_half4_rtpDv4_fmPU3AS1Dh(<4 x float>, i64, half addrspace(1)*)