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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
;=========================== begin_copyright_notice ============================
;
; Copyright (C) 2017-2021 Intel Corporation
;
; SPDX-License-Identifier: MIT
;
;============================ end_copyright_notice =============================
; RUN: igc_opt %s -S -o - %enable-basic-aa% -igc-memopt -instcombine | 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"
%struct.S = type { float, float, float, i32 }
%struct.S1 = type { <2 x float>, <2 x i32> }
define float @f0(%struct.S* %src) {
%p0 = getelementptr inbounds %struct.S, %struct.S* %src, i32 0, i32 0
%x = load float, float* %p0, align 4
%p1 = getelementptr inbounds %struct.S, %struct.S* %src, i32 0, i32 1
%y = load float, float* %p1, align 4
%s0 = fadd float %x, %y
%p2 = getelementptr inbounds %struct.S, %struct.S* %src, i32 0, i32 2
%z = load float, float* %p2, align 4
%s1 = fadd float %s0, %z
%p3 = getelementptr inbounds %struct.S, %struct.S* %src, i32 0, i32 3
%iw = load i32, i32* %p3, align 4
%w = uitofp i32 %iw to float
%s2 = fadd float %s1, %w
ret float %s2
}
; CHECK-LABEL: define float @f0
; CHECK: %1 = bitcast %struct.S* %src to <4 x float>*
; CHECK: %2 = load <4 x float>, <4 x float>* %1, align 4
; Note: starting from LLVM 14, InstCombine "canonicalizes"
; extractelement/insertelement index types to i64, even though our MemOpt
; initially sets the type to i32. Replace INDEX_TYPE with a clear i64
; once a full LLVM 14+ switch is made.
; CHECK: %3 = extractelement <4 x float> %2, [[INDEX_TYPE:i(32|64)]] 0
; CHECK: %4 = extractelement <4 x float> %2, [[INDEX_TYPE]] 1
; CHECK: %5 = extractelement <4 x float> %2, [[INDEX_TYPE]] 2
; CHECK: %bc = bitcast <4 x float> %2 to <4 x i32>
; CHECK: %6 = extractelement <4 x i32> %bc, [[INDEX_TYPE]] 3
; CHECK: %s0 = fadd float %3, %4
; CHECK: %s1 = fadd float %s0, %5
; CHECK: %w = uitofp i32 %6 to float
; CHECK: %s2 = fadd float %s1, %w
; CHECK: ret float %s2
define void @f1(%struct.S* %dst, float %x, float %y, float %z, float %w) {
%p0 = getelementptr inbounds %struct.S, %struct.S* %dst, i32 0, i32 0
store float %x, float* %p0, align 4
%p1 = getelementptr inbounds %struct.S, %struct.S* %dst, i32 0, i32 1
store float %y, float* %p1, align 4
%p2 = getelementptr inbounds %struct.S, %struct.S* %dst, i32 0, i32 2
store float %z, float* %p2, align 4
%p3 = getelementptr inbounds %struct.S, %struct.S* %dst, i32 0, i32 3
%iw = fptoui float %w to i32
store i32 %iw, i32* %p3, align 4
ret void
}
; CHECK-LABEL: define void @f1
; CHECK: %iw = fptoui float %w to i32
; CHECK: %1 = insertelement <4 x float> undef, float %x, [[INDEX_TYPE]] 0
; CHECK: %2 = insertelement <4 x float> %1, float %y, [[INDEX_TYPE]] 1
; CHECK: %3 = insertelement <4 x float> %2, float %z, [[INDEX_TYPE]] 2
; CHECK: %4 = bitcast i32 %iw to float
; CHECK: %5 = insertelement <4 x float> %3, float %4, [[INDEX_TYPE]] 3
; CHECK: %6 = bitcast %struct.S* %dst to <4 x float>*
; CHECK: store <4 x float> %5, <4 x float>* %6, align 4
; CHECK: ret void
define float @f2(%struct.S1* %src) {
%p0 = getelementptr inbounds %struct.S1, %struct.S1* %src, i32 0, i32 0, i32 0
%x = load float, float* %p0, align 4
%p1 = getelementptr inbounds %struct.S1, %struct.S1* %src, i32 0, i32 0, i32 1
%y = load float, float* %p1, align 4
%s0 = fadd float %x, %y
%p2 = getelementptr inbounds %struct.S1, %struct.S1* %src, i32 0, i32 1, i32 0
%iz = load i32, i32* %p2, align 4
%z = uitofp i32 %iz to float
%s1 = fadd float %s0, %z
%p3 = getelementptr inbounds %struct.S1, %struct.S1* %src, i32 0, i32 1, i32 1
%iw = load i32, i32* %p3, align 4
%w = uitofp i32 %iw to float
%s2 = fadd float %s1, %w
ret float %s2
}
; CHECK-LABEL: define float @f2
; CHECK: %1 = bitcast %struct.S1* %src to <4 x float>*
; CHECK: %2 = load <4 x float>, <4 x float>* %1, align 4
; CHECK: %3 = extractelement <4 x float> %2, [[INDEX_TYPE]] 0
; CHECK: %4 = extractelement <4 x float> %2, [[INDEX_TYPE]] 1
; CHECK: %bc = bitcast <4 x float> %2 to <4 x i32>
; CHECK: %5 = extractelement <4 x i32> %bc, [[INDEX_TYPE]] 2
; CHECK: %bc1 = bitcast <4 x float> %2 to <4 x i32>
; CHECK: %6 = extractelement <4 x i32> %bc1, [[INDEX_TYPE]] 3
; CHECK: %s0 = fadd float %3, %4
; CHECK: %z = uitofp i32 %5 to float
; CHECK: %s1 = fadd float %s0, %z
; CHECK: %w = uitofp i32 %6 to float
; CHECK: %s2 = fadd float %s1, %w
; CHECK: ret float %s2
define void @f3(%struct.S1* %dst, float %x, float %y, i32 %z, i32 %w) {
%p0 = getelementptr inbounds %struct.S1, %struct.S1* %dst, i32 0, i32 0, i32 0
store float %x, float* %p0, align 4
%p1 = getelementptr inbounds %struct.S1, %struct.S1* %dst, i32 0, i32 0, i32 1
store float %y, float* %p1, align 4
%p2 = getelementptr inbounds %struct.S1, %struct.S1* %dst, i32 0, i32 1, i32 0
store i32 %z, i32* %p2, align 4
%p3 = getelementptr inbounds %struct.S1, %struct.S1* %dst, i32 0, i32 1, i32 1
store i32 %w, i32* %p3, align 4
ret void
}
; CHECK-LABEL: define void @f3
; CHECK: %1 = insertelement <4 x float> undef, float %x, [[INDEX_TYPE]] 0
; CHECK: %2 = insertelement <4 x float> %1, float %y, [[INDEX_TYPE]] 1
; CHECK: %3 = bitcast i32 %z to float
; CHECK: %4 = insertelement <4 x float> %2, float %3, [[INDEX_TYPE]] 2
; CHECK: %5 = bitcast i32 %w to float
; CHECK: %6 = insertelement <4 x float> %4, float %5, [[INDEX_TYPE]] 3
; CHECK: %7 = bitcast %struct.S1* %dst to <4 x float>*
; CHECK: store <4 x float> %6, <4 x float>* %7, align 4
; CHECK: ret void
!igc.functions = !{!0, !3, !4, !5}
!0 = !{float (%struct.S*)* @f0, !1}
!3 = !{void (%struct.S*, float, float, float, float)* @f1, !1}
!4 = !{float (%struct.S1*)* @f2, !1}
!5 = !{void (%struct.S1*, float, float, i32, i32)* @f3, !1}
!1 = !{!2}
!2 = !{!"function_type", i32 0}
|