|
| 1 | +;=========================== begin_copyright_notice ============================ |
| 2 | +; |
| 3 | +; Copyright (C) 2025 Intel Corporation |
| 4 | +; |
| 5 | +; SPDX-License-Identifier: MIT |
| 6 | +; |
| 7 | +;============================ end_copyright_notice ============================= |
| 8 | + |
| 9 | +; REQUIRES: llvm-14-plus |
| 10 | +; RUN: igc_opt --opaque-pointers %s -S -o - -igc-constant-coalescing -instcombine -dce | FileCheck %s --check-prefixes=CHECK |
| 11 | + |
| 12 | +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" |
| 13 | + |
| 14 | +define <3 x half> @f0(i32 %src) { |
| 15 | +entry: |
| 16 | + %buf = inttoptr i32 %src to ptr addrspace(2490373) |
| 17 | + %off = add i32 %src, 4 |
| 18 | + %z = call half @llvm.genx.GenISA.ldraw.indexed.f16.p2490373(ptr addrspace(2490373) %buf, i32 %off, i32 4, i1 false) |
| 19 | + %xy = call <2 x half> @llvm.genx.GenISA.ldraw.indexed.v2f16.p2490373(ptr addrspace(2490373) %buf, i32 %src, i32 4, i1 false) |
| 20 | + %x = extractelement <2 x half> %xy, i32 0 |
| 21 | + %y = extractelement <2 x half> %xy, i32 1 |
| 22 | + %res.x = insertelement <3 x half> undef, half %x, i32 0 |
| 23 | + %res.xy = insertelement <3 x half> %res.x, half %y, i32 1 |
| 24 | + %res.xyz = insertelement <3 x half> %res.xy, half %z, i32 2 |
| 25 | + ret <3 x half> %res.xyz |
| 26 | +} |
| 27 | + |
| 28 | + ; CHECK-LABEL: define <3 x half> @f0 |
| 29 | + ; CHECK: [[PTR:%.*]] = inttoptr i32 %src to ptr addrspace(2490373) |
| 30 | + ; CHECK: [[CHUNK:%.*]] = call <4 x half> @llvm.genx.GenISA.ldrawvector.indexed.v4f16.p2490373(ptr addrspace(2490373) [[PTR]], i32 %src, i32 4, i1 false) |
| 31 | + ; CHECK: [[RESULT:%.*]] = shufflevector <4 x half> [[CHUNK]], <4 x half> undef, <3 x i32> <i32 0, i32 1, i32 2> |
| 32 | + ; CHECK: ret <3 x half> [[RESULT]] |
| 33 | + |
| 34 | + |
| 35 | +; Function Attrs: argmemonly nounwind readonly willreturn |
| 36 | +declare half @llvm.genx.GenISA.ldraw.indexed.f16.p2490373(ptr addrspace(2490373), i32, i32, i1) argmemonly nounwind readonly willreturn |
| 37 | +declare <2 x half> @llvm.genx.GenISA.ldraw.indexed.v2f16.p2490373(ptr addrspace(2490373), i32, i32, i1) argmemonly nounwind readonly willreturn |
| 38 | + |
| 39 | + |
| 40 | +!igc.functions = !{!0} |
| 41 | + |
| 42 | +!0 = !{ptr @f0, !1} |
| 43 | + |
| 44 | + |
| 45 | +!1 = !{!2} |
| 46 | +!2 = !{!"function_type", i32 0} |
| 47 | + |
0 commit comments