
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.
32 lines
1.1 KiB
LLVM
32 lines
1.1 KiB
LLVM
; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV
|
|
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv32-unknown-unknown %s -o - -filetype=obj | spirv-val %}
|
|
|
|
; CHECK-SPIRV: OpName %[[#r1:]] "r1"
|
|
; CHECK-SPIRV: OpName %[[#r2:]] "r2"
|
|
; CHECK-SPIRV: OpName %[[#r3:]] "r3"
|
|
; CHECK-SPIRV: OpName %[[#r4:]] "r4"
|
|
; CHECK-SPIRV: OpName %[[#r5:]] "r5"
|
|
; CHECK-SPIRV: OpName %[[#r6:]] "r6"
|
|
; CHECK-SPIRV: OpName %[[#r7:]] "r7"
|
|
; CHECK-SPIRV-NOT: OpDecorate %{{.*}} FPFastMathMode
|
|
; CHECK-SPIRV: %[[#float:]] = OpTypeFloat 32
|
|
; CHECK-SPIRV: %[[#r1]] = OpFNegate %[[#float]]
|
|
; CHECK-SPIRV: %[[#r2]] = OpFNegate %[[#float]]
|
|
; CHECK-SPIRV: %[[#r3]] = OpFNegate %[[#float]]
|
|
; CHECK-SPIRV: %[[#r4]] = OpFNegate %[[#float]]
|
|
; CHECK-SPIRV: %[[#r5]] = OpFNegate %[[#float]]
|
|
; CHECK-SPIRV: %[[#r6]] = OpFNegate %[[#float]]
|
|
; CHECK-SPIRV: %[[#r7]] = OpFNegate %[[#float]]
|
|
|
|
define spir_kernel void @testFNeg(float %a) local_unnamed_addr {
|
|
entry:
|
|
%r1 = fneg float %a
|
|
%r2 = fneg nnan float %a
|
|
%r3 = fneg ninf float %a
|
|
%r4 = fneg nsz float %a
|
|
%r5 = fneg arcp float %a
|
|
%r6 = fneg fast float %a
|
|
%r7 = fneg nnan ninf float %a
|
|
ret void
|
|
}
|