
This PR: * adds support for G_SPLAT_VECTOR generic opcode that may be legally generated instead of G_BUILD_VECTOR by previous passes of the translator (see https://github.com/llvm/llvm-project/pull/80378 for the source of breaking changes); * improves deduction of types for opaque pointers. This PR also fixes the following issues: * if a function has ptr argument(s), two functions that have different SPIR-V type definitions may get identical LLVM function types and break agreements of global register and duplicate checker; * checks for pointer types do not account for TypedPointerType. Update of tests: * A test case is added to cover the issue with function ptr parameters. * The first case, that is support for G_SPLAT_VECTOR generic opcode, is covered by existing test cases. * Multiple additional checks by `spirv-val` is added to cover more possibilities of generation of invalid code.
22 lines
889 B
LLVM
22 lines
889 B
LLVM
; RUN: llc -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s
|
|
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv64-unknown-unknown %s -o - -filetype=obj | spirv-val %}
|
|
|
|
;; Check the bitcast is translated back to bitcast
|
|
|
|
; CHECK: Bitcast
|
|
|
|
define spir_kernel void @test_fn(<2 x i8> addrspace(1)* nocapture readonly %src, i16 addrspace(1)* nocapture %dst) {
|
|
entry:
|
|
%call = tail call spir_func i64 @_Z13get_global_idj(i32 0)
|
|
%sext = shl i64 %call, 32
|
|
%idxprom = ashr exact i64 %sext, 32
|
|
%arrayidx = getelementptr inbounds <2 x i8>, <2 x i8> addrspace(1)* %src, i64 %idxprom
|
|
%0 = load <2 x i8>, <2 x i8> addrspace(1)* %arrayidx, align 2
|
|
%astype = bitcast <2 x i8> %0 to i16
|
|
%arrayidx2 = getelementptr inbounds i16, i16 addrspace(1)* %dst, i64 %idxprom
|
|
store i16 %astype, i16 addrspace(1)* %arrayidx2, align 2
|
|
ret void
|
|
}
|
|
|
|
declare spir_func i64 @_Z13get_global_idj(i32)
|