|
| 1 | +; Check support of OpPtrEqual and OpPtrNotEqual instructions that were added in SPIR-V 1.4 |
| 2 | + |
| 3 | +; RUN: llvm-as %s -o %t.bc |
| 4 | +; RUN: not llvm-spirv --spirv-max-version=1.3 %t.bc 2>&1 | FileCheck --check-prefix=CHECK-ERROR %s |
| 5 | + |
| 6 | +; RUN: llvm-spirv %t.bc -o %t.spv |
| 7 | +; RUN: llvm-spirv %t.spv -to-text -o %t.spt |
| 8 | +; RUN: FileCheck < %t.spt %s --check-prefix=CHECK-SPIRV |
| 9 | +; RUN: spirv-val %t.spv |
| 10 | + |
| 11 | +; RUN: llvm-spirv -r %t.spv -o %t.rev.bc |
| 12 | +; RUN: llvm-dis %t.rev.bc |
| 13 | +; RUN: FileCheck < %t.rev.ll %s --check-prefix=CHECK-LLVM |
| 14 | + |
| 15 | +; CHECK-ERROR: RequiresVersion: Cannot fulfill SPIR-V version restriction: |
| 16 | +; CHECK-ERROR-NEXT: SPIR-V version was restricted to at most 1.3 (66304) but a construct from the input requires SPIR-V version 1.4 (66560) or above |
| 17 | + |
| 18 | +; SPIR-V 1.4 |
| 19 | +; CHECK-SPIRV: 66560 |
| 20 | +; CHECK-SPIRV: TypeFloat [[#TypeFloat:]] 32 |
| 21 | +; CHECK-SPIRV: TypePointer [[#TypePointer:]] [[#]] [[#TypeFloat]] |
| 22 | +; CHECK-SPIRV: TypeBool [[#TypeBool:]] |
| 23 | + |
| 24 | +; CHECK-SPIRV: Variable [[#TypePointer]] [[#Var1:]] |
| 25 | +; CHECK-SPIRV: Variable [[#TypePointer]] [[#Var2:]] |
| 26 | +; CHECK-SPIRV: PtrEqual [[#TypeBool]] [[#]] [[#Var1]] [[#Var2]] |
| 27 | +; CHECK-SPIRV: PtrNotEqual [[#TypeBool]] [[#]] [[#Var1]] [[#Var2]] |
| 28 | + |
| 29 | +target datalayout = "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024" |
| 30 | +target triple = "spir64-unknown-unknown" |
| 31 | + |
| 32 | +; Function Attrs: nounwind |
| 33 | +define spir_kernel void @test(float %a, float %b) local_unnamed_addr #0 { |
| 34 | +entry: |
| 35 | + %0 = alloca float, align 4 |
| 36 | + %1 = alloca float, align 4 |
| 37 | + store float %a, ptr %0, align 4 |
| 38 | + store float %b, ptr %1, align 4 |
| 39 | +; CHECK-LLVM: %[[#Arg1:]] = ptrtoint ptr %[[#]] to i64 |
| 40 | +; CHECK-LLVM: %[[#Arg2:]] = ptrtoint ptr %[[#]] to i64 |
| 41 | +; CHECK-LLVM: icmp eq i64 %[[#Arg1]], %[[#Arg2]] |
| 42 | + %2 = call spir_func noundef i1 @_Z16__spirv_PtrEqual(ptr %0, ptr %1) |
| 43 | +; CHECK-LLVM: %[[#Arg3:]] = ptrtoint ptr %[[#]] to i64 |
| 44 | +; CHECK-LLVM: %[[#Arg4:]] = ptrtoint ptr %[[#]] to i64 |
| 45 | +; CHECK-LLVM: icmp ne i64 %[[#Arg3]], %[[#Arg4]] |
| 46 | + %3 = call spir_func noundef i1 @_Z19__spirv_PtrNotEqual(ptr %0, ptr %1) |
| 47 | + ret void |
| 48 | +} |
| 49 | + |
| 50 | +declare spir_func noundef i1 @_Z16__spirv_PtrEqual(ptr, ptr) |
| 51 | +declare spir_func noundef i1 @_Z19__spirv_PtrNotEqual(ptr, ptr) |
| 52 | + |
| 53 | +attributes #0 = { convergent nounwind writeonly } |
| 54 | + |
| 55 | +!llvm.module.flags = !{!0} |
| 56 | +!opencl.ocl.version = !{!1} |
| 57 | +!opencl.spir.version = !{!1} |
| 58 | + |
| 59 | +!0 = !{i32 1, !"wchar_size", i32 4} |
| 60 | +!1 = !{i32 2, i32 0} |
0 commit comments