[llvm] 6c6f8b1 - [SPIR-V] Fixup tests (#73371)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 7 12:23:32 PST 2023
Author: Natalie Chouinard
Date: 2023-12-07T15:23:27-05:00
New Revision: 6c6f8b1acde862b176d38ede0a6d8ab649890a3c
URL: https://github.com/llvm/llvm-project/commit/6c6f8b1acde862b176d38ede0a6d8ab649890a3c
DIFF: https://github.com/llvm/llvm-project/commit/6c6f8b1acde862b176d38ede0a6d8ab649890a3c.diff
LOG: [SPIR-V] Fixup tests (#73371)
These tests are currently failing at tip-of-tree, but pass with minor
FileCheck updates that look reasonable.
Added:
Modified:
llvm/test/CodeGen/SPIRV/opencl/basic/get_global_offset.ll
llvm/test/CodeGen/SPIRV/struct.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/SPIRV/opencl/basic/get_global_offset.ll b/llvm/test/CodeGen/SPIRV/opencl/basic/get_global_offset.ll
index da6015d23d0549..127804671cee47 100644
--- a/llvm/test/CodeGen/SPIRV/opencl/basic/get_global_offset.ll
+++ b/llvm/test/CodeGen/SPIRV/opencl/basic/get_global_offset.ll
@@ -12,6 +12,8 @@
; CHECK: %[[#int64_ty:]] = OpTypeInt 64 0
; CHECK: %[[#vec_ty:]] = OpTypeVector %[[#int64_ty]] 3
; CHECK: %[[#func2_ty:]] = OpTypeFunction %[[#vec_ty]]
+; CHECK: %[[#int32_ty:]] = OpTypeInt 32 0
+; CHECK: %[[#i32ptr_ty:]] = OpTypePointer CrossWorkgroup %[[#int32_ty]]
;; TODO: add 64-bit constant defs
; CHECK: %[[#f2_decl]] = OpFunction %[[#vec_ty]] Pure %[[#func2_ty]]
; CHECK: OpFunctionEnd
@@ -31,21 +33,21 @@ entry:
%0 = call spir_func <3 x i64> @BuiltInGlobalOffset() #1
%call = extractelement <3 x i64> %0, i32 0
%conv = trunc i64 %call to i32
-; CHECK: %[[#i1:]] = OpInBoundsPtrAccessChain %[[#iptr_ty]] %[[#outOffsets]]
+; CHECK: %[[#i1:]] = OpInBoundsPtrAccessChain %[[#i32ptr_ty]] %[[#outOffsets]]
; CHECK: OpStore %[[#i1:]] %[[#]] Aligned 4
%arrayidx = getelementptr inbounds i32, i32 addrspace(1)* %outOffsets, i64 0
store i32 %conv, i32 addrspace(1)* %arrayidx, align 4
%1 = call spir_func <3 x i64> @BuiltInGlobalOffset() #1
%call1 = extractelement <3 x i64> %1, i32 1
%conv2 = trunc i64 %call1 to i32
-; CHECK: %[[#i2:]] = OpInBoundsPtrAccessChain %[[#iptr_ty]] %[[#outOffsets]]
+; CHECK: %[[#i2:]] = OpInBoundsPtrAccessChain %[[#i32ptr_ty]] %[[#outOffsets]]
; CHECK: OpStore %[[#i2:]] %[[#]] Aligned 4
%arrayidx3 = getelementptr inbounds i32, i32 addrspace(1)* %outOffsets, i64 1
store i32 %conv2, i32 addrspace(1)* %arrayidx3, align 4
%2 = call spir_func <3 x i64> @BuiltInGlobalOffset() #1
%call4 = extractelement <3 x i64> %2, i32 2
%conv5 = trunc i64 %call4 to i32
-; CHECK: %[[#i3:]] = OpInBoundsPtrAccessChain %[[#iptr_ty]] %[[#outOffsets]]
+; CHECK: %[[#i3:]] = OpInBoundsPtrAccessChain %[[#i32ptr_ty]] %[[#outOffsets]]
; CHECK: OpStore %[[#i3:]] %[[#]] Aligned 4
%arrayidx6 = getelementptr inbounds i32, i32 addrspace(1)* %outOffsets, i64 2
store i32 %conv5, i32 addrspace(1)* %arrayidx6, align 4
diff --git a/llvm/test/CodeGen/SPIRV/struct.ll b/llvm/test/CodeGen/SPIRV/struct.ll
index 3c4fc81b920045..c3d2694cf929cc 100644
--- a/llvm/test/CodeGen/SPIRV/struct.ll
+++ b/llvm/test/CodeGen/SPIRV/struct.ll
@@ -3,11 +3,10 @@
%struct.ST = type { i32, i32, i32 }
; CHECK-DAG: OpName %[[#struct:]] "struct.ST"
-; CHECK-DAG: %[[#char:]] = OpTypeInt 8 0
; CHECK-DAG: %[[#int:]] = OpTypeInt 32 0
; CHECK-DAG: %[[#struct]] = OpTypeStruct %[[#int]] %[[#int]] %[[#int]]
; CHECK-DAG: %[[#structP:]] = OpTypePointer Function %[[#struct]]
-; CHECK-DAG: %[[#intP:]] = OpTypePointer Function %[[#char]]
+; CHECK-DAG: %[[#intP:]] = OpTypePointer Function %[[#int]]
; CHECK-DAG: %[[#zero:]] = OpConstant %[[#int]] 0
; CHECK-DAG: %[[#one:]] = OpConstant %[[#int]] 1
; CHECK-DAG: %[[#two:]] = OpConstant %[[#int]] 2
More information about the llvm-commits
mailing list