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 51 52 53 54 55 56 57 58 59 60
|
;=========================== begin_copyright_notice ============================
;
; Copyright (C) 2022 Intel Corporation
;
; SPDX-License-Identifier: MIT
;
;============================ end_copyright_notice =============================
; RUN: igc_opt %s -S -o - -igc-gas-ret-value-propagator | FileCheck %s
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f16:16:16-f32:32:32-f64:64:64-f80:128:128-v16:16:16-v24:32:32-v32:32:32-v48:64:64-v64:64:64-v96:128:128-v128:128:128-v192:256:256-v256:256:256-v512:512:512-v1024:1024:1024-a:64:64-f80:128:128-n8:16:32:64"
define internal spir_func i32 addrspace(3)* @f0() {
%address = alloca i64, align 8
store i64 305419896, i64* %address, align 8
%1 = load i64, i64* %address, align 8
%2 = inttoptr i64 %1 to i32 addrspace(3)*
ret i32 addrspace(3)* %2
}
; CHECK: define internal spir_func i32 addrspace(3)* @f1() {
; CHECK: %[[CALL_F0:.*]] = call spir_func i32 addrspace(3)* @f0()
; CHECK-NOT: addrspacecast i32 addrspace(3)* [[CALL_F0]] to i32 addrspace(4)*
; CHECK: ret i32 addrspace(3)* %[[CALL_F0]]
define internal spir_func i32 addrspace(4)* @f1() {
%call = call spir_func i32 addrspace(3)* @f0()
%call.ascast = addrspacecast i32 addrspace(3)* %call to i32 addrspace(4)*
ret i32 addrspace(4)* %call.ascast
}
; CHECK: define internal spir_func i32 addrspace(3)* @f2() {
; CHECK: %[[CALL_F1:.*]] = call spir_func i32 addrspace(3)* @f1()
; CHECK: ret i32 addrspace(3)* %[[CALL_F1]]
define internal spir_func i32 addrspace(4)* @f2() {
%call = call spir_func i32 addrspace(4)* @f1()
ret i32 addrspace(4)* %call
}
; CHECK: define spir_kernel void @kernel() {
; CHECK: %[[CALL_F2:.*]] = call spir_func i32 addrspace(3)* @f2()
; CHECK: %[[GEP:.*]] = getelementptr inbounds i32, i32 addrspace(3)* %[[CALL_F2]], i64 0
; CHECK: store i32 5, i32 addrspace(3)* %[[GEP]], align 4
define spir_kernel void @kernel() {
%call = call spir_func i32 addrspace(4)* @f2()
%arrayidx = getelementptr inbounds i32, i32 addrspace(4)* %call, i64 0
store i32 5, i32 addrspace(4)* %arrayidx, align 4
ret void
}
!igc.functions = !{!0, !3, !4, !5}
!0 = !{void ()* @kernel, !1}
!1 = !{!2}
!2 = !{!"function_type", i32 0}
!3 = !{i32 addrspace(3)* ()* @f0, !1}
; CHECK: !{i32 addrspace(3)* ()* @f1, !1}
!4 = !{i32 addrspace(4)* ()* @f1, !1}
; CHECK: !{i32 addrspace(3)* ()* @f2, !1}
!5 = !{i32 addrspace(4)* ()* @f2, !1}
|