File: basic.ll

package info (click to toggle)
intel-graphics-compiler 1.0.17791.18-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 102,312 kB
  • sloc: cpp: 935,343; lisp: 286,143; ansic: 16,196; python: 3,279; yacc: 2,487; lex: 1,642; pascal: 300; sh: 174; makefile: 27
file content (57 lines) | stat: -rw-r--r-- 2,487 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
;=========================== begin_copyright_notice ============================
;
; Copyright (C) 2022 Intel Corporation
;
; SPDX-License-Identifier: MIT
;
;============================ end_copyright_notice =============================
;
; RUN: igc_opt -enable-debugify -PromoteConstant -S < %s 2>&1 | FileCheck %s
; ------------------------------------------------
; PromoteConstant
; ------------------------------------------------

; Debug-info related check
; CHECK-NOT: WARNING
; CHECK: CheckModuleDebugify: PASS

@a = private addrspace(2) constant [4 x i32] [i32 -13, i32 42, i32 13, i32 -42], align 1
@b = private addrspace(2) constant [16 x i32] [i32 -13, i32 42, i32 13, i32 -42, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12], align 1

; Function Attrs: convergent noinline nounwind
define spir_kernel void @test_promoteconst(i32 %a, i32* %b) #0 {
; CHECK-LABEL: @test_promoteconst(
; CHECK:  entry:
; CHECK:    [[TMP0:%.*]] = getelementptr inbounds [4 x i32], [4 x i32] addrspace(2)* @a, i32 0, i32 [[A:%[A-z0-9]*]]
; CHECK:    [[TMP1:%.*]] = getelementptr inbounds [16 x i32], [16 x i32] addrspace(2)* @b, i32 0, i32 [[A]]
; CHECK:    br label %bb1
; CHECK:  bb1:
; CHECK:    [[TMP2:%.*]] = icmp eq i32 [[A]], 0
; CHECK:    [[TMP3:%.*]] = select i1 [[TMP2]], i32 -13, i32 42
; CHECK:    [[TMP4:%.*]] = icmp eq i32 [[A]], 2
; CHECK:    [[TMP5:%.*]] = select i1 [[TMP4]], i32 13, i32 -42
; CHECK:    [[TMP6:%.*]] = icmp slt i32 [[A]], 2
; CHECK:    [[TMP7:%.*]] = select i1 [[TMP6]], i32 [[TMP3]], i32 [[TMP5]]
; CHECK:    [[TMP8:%.*]] = extractelement <16 x i8> <i8 -13, i8 42, i8 13, i8 -42, i8 1, i8 2, i8 3, i8 4, i8 5, i8 6, i8 7, i8 8, i8 9, i8 10, i8 11, i8 12>, i32 [[A]]
; CHECK:    [[TMP9:%.*]] = sext i8 [[TMP8]] to i32
; CHECK:    [[TMP10:%.*]] = icmp sgt i32 [[TMP7]], [[TMP9]]
; CHECK:    br i1 [[TMP10]], label %bb1, label %end
; CHECK:  end:
; CHECK:    store i32 [[TMP9]], i32* [[B:%.*]]
; CHECK:    ret void
;
entry:
  %0 = getelementptr inbounds [4 x i32], [4 x i32] addrspace(2)* @a, i32 0, i32 %a
  %1 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(2)* @b, i32 0, i32 %a
  br label %bb1

bb1:                                              ; preds = %bb1, %entry
  %2 = load i32, i32 addrspace(2)* %0
  %3 = load i32, i32 addrspace(2)* %1
  %4 = icmp sgt i32 %2, %3
  br i1 %4, label %bb1, label %end

end:                                              ; preds = %bb1
  store i32 %3, i32* %b
  ret void
}