File: callParametersRemat.ll

package info (click to toggle)
intel-graphics-compiler2 2.16.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • 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 (65 lines) | stat: -rw-r--r-- 3,445 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
;=========================== begin_copyright_notice ============================
;
; Copyright (C) 2025 Intel Corporation
;
; SPDX-License-Identifier: MIT
;
;============================ end_copyright_notice =============================

; REQUIRES: regkeys
; UNSUPPORTED: system-windows
; RUN: igc_opt --typed-pointers %s -S -o - -igc-clone-address-arithmetic --regkey=RematChainLimit=10 --regkey=RematFlowThreshold=100 --regkey=RematRPELimit=0 --dce | FileCheck %s

target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-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"
target triple = "spir64-unknown-unknown"

%"struct.ONEAPIKernelContext::LightSample" = type { %struct.packed_float3, %struct.packed_float3, %struct.packed_float3, float, float, float, float, float, float, i32, i32, i32, i32, i32, i32 }
%struct.packed_float3 = type { float, float, float }

declare spir_func void @target_func(%"struct.ONEAPIKernelContext::LightSample" addrspace(4)*)
declare spir_func void @target_func_bitcast_no_ptr(double)

define spir_kernel void @main() {
entry:
  %ls.i = alloca %"struct.ONEAPIKernelContext::LightSample", i32 0, align 4
  br label %if.end46

if.end46:
  %ls.ascast.i = addrspacecast %"struct.ONEAPIKernelContext::LightSample"* %ls.i to %"struct.ONEAPIKernelContext::LightSample" addrspace(4)*
  br label %cleanup.cont.i
; CHECK-LABEL: cleanup.cont.i:
; CHECK-NEXT: [[REMAT:%.*]] = alloca %"struct.ONEAPIKernelContext::LightSample", i32 0, align 4
; CHECK-NEXT: [[CAST:%.*]] = addrspacecast %"struct.ONEAPIKernelContext::LightSample"* [[REMAT]] to %"struct.ONEAPIKernelContext::LightSample" addrspace(4)*
; CHECK-NEXT: call spir_func void @target_func(%"struct.ONEAPIKernelContext::LightSample" addrspace(4)* [[CAST]])
cleanup.cont.i:                                   ; preds = %if.end46
  call spir_func void @target_func(%"struct.ONEAPIKernelContext::LightSample" addrspace(4)* %ls.ascast.i)
  ret void
}

define spir_func void @bar(i64 %arg1) {
entry:
  %val2 = mul i64 %arg1, 2
  %val3 = mul i64 %arg1, 3
  %cast_val2 = bitcast i64 %val2 to double
  %cast_val3 = bitcast i64 %val3 to double
  ; CHECK: [[VAL2:%.*]] = mul i64 [[ARG1:%.*]], 2
  ; CHECK: [[VAL3:%.*]] = mul i64 [[ARG1]], 3
  ; CHECK: bitcast i64 [[VAL2]] to double
  ; CHECK: bitcast i64 [[VAL3]] to double
  ; CHECK: br label %if.end46
  %ls.i = alloca %"struct.ONEAPIKernelContext::LightSample", i32 0, align 4
  br label %if.end46

if.end46:
  %ls.ascast.i = addrspacecast %"struct.ONEAPIKernelContext::LightSample"* %ls.i to %"struct.ONEAPIKernelContext::LightSample" addrspace(4)*
  br label %cleanup.cont.i
; CHECK-LABEL: cleanup.cont.i:
; CHECK-NEXT: [[REMAT:%.*]] = alloca %"struct.ONEAPIKernelContext::LightSample", i32 0, align 4
; CHECK-NEXT: [[CAST:%.*]] = addrspacecast %"struct.ONEAPIKernelContext::LightSample"* [[REMAT]] to %"struct.ONEAPIKernelContext::LightSample" addrspace(4)*
; CHECK-NEXT: call spir_func void @target_func(%"struct.ONEAPIKernelContext::LightSample" addrspace(4)* [[CAST]])
cleanup.cont.i:                                   ; preds = %if.end46
  call spir_func void @target_func(%"struct.ONEAPIKernelContext::LightSample" addrspace(4)* %ls.ascast.i)
  call spir_func void @target_func_bitcast_no_ptr(double %cast_val2)
  call spir_func void @target_func_bitcast_no_ptr(double %cast_val3)
  ret void
}