1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
;=========================== begin_copyright_notice ============================
;
; Copyright (C) 2022-2024 Intel Corporation
;
; SPDX-License-Identifier: MIT
;
;============================ end_copyright_notice =============================
;
; RUN: %opt_typed_ptrs %use_old_pass_manager% -GenXGASDynamicResolution -march=genx64 -mcpu=Gen9 -S < %s | FileCheck %s --check-prefixes=CHECK,CHECK-TYPED-PTRS
; RUN: %opt_opaque_ptrs %use_old_pass_manager% -GenXGASDynamicResolution -march=genx64 -mcpu=Gen9 -S < %s | FileCheck %s --check-prefixes=CHECK,CHECK-OPAQUE-PTRS
;
; This test verifies whether optimization which allows to avoid additional control flow
; generation is blocked when a kernel calls a function indirectly. In such case, we don't
; know what function is going to be called by a function pointer, so it is not possible
; to check whether callee contains addrspacecast's from private/local to generic addrspace.
target datalayout = "e-p:64:64-p3:32:32-i64:64-n8:16:32:64"
declare spir_func void @foo(i32 addrspace(4)* %ptr) "referenced-indirectly"
define spir_kernel void @kernel(i32 addrspace(1)* %global_buffer) #0 {
%fp = alloca void (i32 addrspace(4)*)*, align 8
store void (i32 addrspace(4)*)* @foo, void (i32 addrspace(4)*)** %fp, align 8
%generic_ptr = addrspacecast i32 addrspace(1)* %global_buffer to i32 addrspace(4)*
%f = load void (i32 addrspace(4)*)*, void (i32 addrspace(4)*)** %fp, align 8
call spir_func void %f(i32 addrspace(4)* %generic_ptr)
store i32 5, i32 addrspace(4)* %generic_ptr, align 4
; CHECK-TYPED-PTRS: %[[P4I32_TO_I64:.*]] = ptrtoint i32 addrspace(4)* %generic_ptr to i64
; CHECK-OPAQUE-PTRS: %[[P4I32_TO_I64:.*]] = ptrtoint ptr addrspace(4) %generic_ptr to i64
; CHECK: %[[I64_TO_V2I32:.*]] = bitcast i64 %[[P4I32_TO_I64:.*]] to <2 x i32>
; CHECK: %[[TAG:.*]] = extractelement <2 x i32> %[[I64_TO_V2I32:.*]], i64 1
; CHECK: %isLocalTag = icmp eq i32 %[[TAG:.*]], 1073741824
; CHECK: br i1 %isLocalTag, label %LocalBlock, label %GlobalBlock
; CHECK: LocalBlock:
; CHECK-TYPED-PTRS: %[[LOCAL_PTR:.*]] = addrspacecast i32 addrspace(4)* %generic_ptr to i32 addrspace(3)*
; CHECK-TYPED-PTRS: store i32 5, i32 addrspace(3)* %[[LOCAL_PTR]], align 4
; CHECK-OPAQUE-PTRS: %[[LOCAL_PTR:.*]] = addrspacecast ptr addrspace(4) %generic_ptr to ptr addrspace(3)
; CHECK-OPAQUE-PTRS: store i32 5, ptr addrspace(3) %[[LOCAL_PTR]], align 4
; CHECK: GlobalBlock:
; CHECK-TYPED-PTRS: %[[GLOBAL_PTR:.*]] = addrspacecast i32 addrspace(4)* %generic_ptr to i32 addrspace(1)*
; CHECK-TYPED-PTRS: store i32 5, i32 addrspace(1)* %[[GLOBAL_PTR]], align 4
; CHECK-OPAQUE-PTRS: %[[GLOBAL_PTR:.*]] = addrspacecast ptr addrspace(4) %generic_ptr to ptr addrspace(1)
; CHECK-OPAQUE-PTRS: store i32 5, ptr addrspace(1) %[[GLOBAL_PTR]], align 4
ret void
}
attributes #0 = { noinline nounwind "CMGenxMain" }
|