
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.
38 lines
1.6 KiB
LLVM
38 lines
1.6 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 %[[#r1]] FPFastMathMode
|
|
; CHECK-SPIRV-DAG: OpDecorate %[[#r2]] FPFastMathMode NotNaN
|
|
; CHECK-SPIRV-DAG: OpDecorate %[[#r3]] FPFastMathMode NotInf
|
|
; CHECK-SPIRV-DAG: OpDecorate %[[#r4]] FPFastMathMode NSZ
|
|
; CHECK-SPIRV-DAG: OpDecorate %[[#r5]] FPFastMathMode AllowRecip
|
|
; CHECK-SPIRV-DAG: OpDecorate %[[#r6]] FPFastMathMode NotNaN|NotInf|NSZ|AllowRecip|Fast
|
|
; CHECK-SPIRV-DAG: OpDecorate %[[#r7]] FPFastMathMode NotNaN|NotInf
|
|
; CHECK-SPIRV: %[[#float:]] = OpTypeFloat 32
|
|
; CHECK-SPIRV: %[[#r1]] = OpFRem %[[#float]]
|
|
; CHECK-SPIRV: %[[#r2]] = OpFRem %[[#float]]
|
|
; CHECK-SPIRV: %[[#r3]] = OpFRem %[[#float]]
|
|
; CHECK-SPIRV: %[[#r4]] = OpFRem %[[#float]]
|
|
; CHECK-SPIRV: %[[#r5]] = OpFRem %[[#float]]
|
|
; CHECK-SPIRV: %[[#r6]] = OpFRem %[[#float]]
|
|
; CHECK-SPIRV: %[[#r7]] = OpFRem %[[#float]]
|
|
|
|
define spir_kernel void @testFRem(float %a, float %b) local_unnamed_addr {
|
|
entry:
|
|
%r1 = frem float %a, %b
|
|
%r2 = frem nnan float %a, %b
|
|
%r3 = frem ninf float %a, %b
|
|
%r4 = frem nsz float %a, %b
|
|
%r5 = frem arcp float %a, %b
|
|
%r6 = frem fast float %a, %b
|
|
%r7 = frem nnan ninf float %a, %b
|
|
ret void
|
|
}
|