File: sampled_image_handle_2d.ll

package info (click to toggle)
intel-graphics-compiler2 2.16.0-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 106,644 kB
  • sloc: cpp: 805,640; lisp: 287,672; ansic: 16,414; python: 3,952; yacc: 2,588; lex: 1,666; pascal: 313; sh: 186; makefile: 35
file content (78 lines) | stat: -rw-r--r-- 3,612 bytes parent folder | download
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
;=========================== begin_copyright_notice ============================
;
; Copyright (C) 2024 Intel Corporation
;
; SPDX-License-Identifier: MIT
;
;============================ end_copyright_notice =============================

; Check that SYCL bindless image and sampler are passed via kernel arguments.

; REQUIRES: llvm-14-plus
; RUN: igc_opt --opaque-pointers %s -S -o - -igc-conv-ocl-to-common | FileCheck %s

%"struct.sycl::_V1::ext::oneapi::experimental::sampled_image_handle" = type { i64 }
%spirv.Image._void_1_0_0_0_0_0_0 = type opaque

define spir_kernel void @_ZTS14image_addition(ptr %imgHandle1, ptr %imgHandle2, i64 %const_reg_qword) {
entry:
  %_arg_imgHandle1_alloca = alloca %"struct.sycl::_V1::ext::oneapi::experimental::sampled_image_handle", align 8



  store i64 %const_reg_qword, ptr %_arg_imgHandle1_alloca, align 8

  %__SYCLKernel.1.copyload = load i64, ptr %_arg_imgHandle1_alloca, align 8

  %__SYCLKernel.3.copyload = load i64, ptr %imgHandle2, align 8
  %astype = inttoptr i64 %__SYCLKernel.1.copyload to ptr addrspace(1)
  %0 = ptrtoint ptr addrspace(1) %astype to i64
  %1 = ptrtoint ptr addrspace(1) %astype to i64
  %conv = trunc i64 %0 to i32
  %sampler_offset = add i64 %1, 128
  %2 = or i64 %sampler_offset, 1
  %conv2 = trunc i64 %2 to i32

; CHECK: [[OR:%.*]] = or i64 %sampler_offset, 1
; CHECK: %bindless_img = inttoptr i32 %conv to ptr addrspace(393468)
; CHECK-NEXT: %bindless_sampler = inttoptr i32 %conv2 to ptr addrspace(655612)
; CHECK-NEXT: %call1 = call <4 x float> @llvm.genx.GenISA.sampleLptr.v4f32.f32.p196860.p393468.p655612(float 0.000000e+00, float %CoordX, float %CoordY, float 0.000000e+00, float 0.000000e+00, ptr addrspace(196860) undef, ptr addrspace(393468) %bindless_img, ptr addrspace(655612) %bindless_sampler, i32 0, i32 0, i32 0)

  %call = call spir_func <4 x float> @__builtin_IB_OCL_2d_sample_l(i32 %conv, i32 %conv2, <2 x float> zeroinitializer, float 0.000000e+00)
  %astype3 = inttoptr i64 %__SYCLKernel.3.copyload to ptr addrspace(1)
  %3 = ptrtoint ptr addrspace(1) %astype3 to i64
  %4 = ptrtoint ptr addrspace(1) %astype3 to i64
  %conv3 = trunc i64 %3 to i32
  %sampler_offset23 = add i64 %4, 128
  %5 = or i64 %sampler_offset23, 1
  %conv4 = trunc i64 %5 to i32

; CHECK: [[OR2:%.*]] = or i64 %sampler_offset{{.*}}, 1
; CHECK: [[IMG2:%bindless_img[0-9]+]] = inttoptr i32 %conv3 to ptr addrspace(393468)
; CHECK-NEXT: [[SAMPLER2:%bindless_sampler[0-9]+]] = inttoptr i32 %conv4 to ptr addrspace(655612)
; CHECK-NEXT: %call26 = call <4 x float> @llvm.genx.GenISA.sampleLptr.v4f32.f32.p196860.p393468.p655612(float 0.000000e+00, float %CoordX2, float %CoordY3, float 0.000000e+00, float 0.000000e+00, ptr addrspace(196860) undef, ptr addrspace(393468) [[IMG2]], ptr addrspace(655612) [[SAMPLER2]], i32 0, i32 0, i32 0)

  %call2 = call spir_func <4 x float> @__builtin_IB_OCL_2d_sample_l(i32 %conv3, i32 %conv4, <2 x float> zeroinitializer, float 0.000000e+00)
  ret void
}

declare spir_func <4 x float> @__builtin_IB_OCL_2d_sample_l(i32, i32, <2 x float>, float)

!igc.functions = !{!0}
!IGCMetadata = !{!2}

!0 = !{ptr @_ZTS14image_addition, !1}
!1 = !{}
!2 = !{!"ModuleMD", !3, !14}
!3 = !{!"FuncMD", !4, !5}
!4 = !{!"FuncMDMap[0]", ptr @_ZTS14image_addition}
!5 = !{!"FuncMDValue[0]", !6}
!6 = !{!"resAllocMD", !7}
!7 = !{!"argAllocMDList", !8, !12, !13}
!8 = !{!"argAllocMDListVec[0]", !9, !10, !11}
!9 = !{!"type", i32 0}
!10 = !{!"extensionType", i32 -1}
!11 = !{!"indexType", i32 -1}
!12 = !{!"argAllocMDListVec[1]", !9, !10, !11}
!13 = !{!"argAllocMDListVec[1]", !9, !10, !11}
!14 = !{!"UseBindlessImage", i1 true}