Refines OpName emission to only target Global Variables, Functions, Function Parameters, Local Variables (allocas/phis), and Basic Blocks. This reduces binary size and clutter by avoiding OpName for every intermediate instruction (arithmetic, casts, etc.), while preserving readability for interfaces and program structure. Also updates the test suite to align with this change: - Removes OpName checks for intermediate instructions. - Adds side-effects (e.g., volatile stores) to tests where instructions were previously kept alive solely by their OpName usage. - Updates checks to use generic ID matching where specific names are no longer available. - Adds debug-info/opname-filtering.ll to verify the new policy.
15 lines
494 B
LLVM
15 lines
494 B
LLVM
; RUN: llc -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV
|
|
|
|
; CHECK-SPIRV: OpBitwiseAnd
|
|
; CHECK-SPIRV-NEXT: OpINotEqual
|
|
|
|
define spir_kernel void @test(i32 %op1, i32 %op2, i8 %op3, i32 addrspace(1)* %out) {
|
|
entry:
|
|
%0 = trunc i8 %op3 to i1
|
|
%call = call spir_func i32 @_Z14__spirv_Selectbii(i1 zeroext %0, i32 %op1, i32 %op2)
|
|
store i32 %call, i32 addrspace(1)* %out
|
|
ret void
|
|
}
|
|
|
|
declare spir_func i32 @_Z14__spirv_Selectbii(i1 zeroext, i32, i32)
|