File: load.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 (166 lines) | stat: -rw-r--r-- 9,889 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
;=========================== begin_copyright_notice ============================
;
; Copyright (C) 2021-2024 Intel Corporation
;
; SPDX-License-Identifier: MIT
;
;============================ end_copyright_notice =============================

; RUN: %opt_typed_ptrs %use_old_pass_manager% -GenXAggregatePseudoLowering -march=genx64 -mcpu=Gen9 -S < %s | FileCheck %s --check-prefixes=CHECK,CHECK-TYPED-PTRS
; RUN: %opt_opaque_ptrs %use_old_pass_manager% -GenXAggregatePseudoLowering -march=genx64 -mcpu=Gen9 -S < %s | FileCheck %s --check-prefixes=CHECK,CHECK-OPAQUE-PTRS

%simple_st = type { i32, i64 }
%v8_uniform_Data = type { i8*, i64, i32, i8 }
%folded_st = type { i8, %simple_st }
%complex_st = type { %folded_st, i64* }
%st_with_array = type { i8, [2 x <10 x i32>] }

define dllexport void @simple_load() {
; CHECK-LABEL: simple_load

  %simple.ptr = alloca %simple_st
  %res = load %simple_st, %simple_st* %simple.ptr
; CHECK-TYPED-PTRS:  %[[SIMPLE_GEP_A:[^ ]+]] = getelementptr inbounds %simple_st, %simple_st* %simple.ptr, i32 0, i32 0
; CHECK-TYPED-PTRS: %[[SIMPLE_RES_A:[^ ]+]] = load i32, i32* %[[SIMPLE_GEP_A]]
; CHECK-TYPED-PTRS: %[[SIMPLE_GEP_B:[^ ]+]] = getelementptr inbounds %simple_st, %simple_st* %simple.ptr, i32 0, i32 1
; CHECK-TYPED-PTRS: %[[SIMPLE_RES_B:[^ ]+]] = load i64, i64* %[[SIMPLE_GEP_B]]
; CHECK-OPAQUE-PTRS: %[[SIMPLE_GEP_A:[^ ]+]] = getelementptr inbounds %simple_st, ptr %simple.ptr, i32 0, i32 0
; CHECK-OPAQUE-PTRS: %[[SIMPLE_RES_A:[^ ]+]] = load i32, ptr %[[SIMPLE_GEP_A]]
; CHECK-OPAQUE-PTRS: %[[SIMPLE_GEP_B:[^ ]+]] = getelementptr inbounds %simple_st, ptr %simple.ptr, i32 0, i32 1
; CHECK-OPAQUE-PTRS: %[[SIMPLE_RES_B:[^ ]+]] = load i64, ptr %[[SIMPLE_GEP_B]]

; COM: combine the aggregate back
; CHECK: %[[SIMPLE_RES_0:[^ ]+]] = insertvalue %simple_st undef, i32 %[[SIMPLE_RES_A]], 0
; CHECK: %res = insertvalue %simple_st %[[SIMPLE_RES_0]], i64 %[[SIMPLE_RES_B]], 1

  %simple.user = extractvalue %simple_st %res, 0
; CHECK: %simple.user = extractvalue %simple_st %res, 0
  ret void
}

define dllexport void @ispc_load() {
; CHECK-LABEL: ispc_load

  %ispc.ptr = alloca %v8_uniform_Data
  %res = load %v8_uniform_Data, %v8_uniform_Data* %ispc.ptr
; CHECK-TYPED-PTRS: %[[ISPC_GEP_A:[^ ]+]] = getelementptr inbounds %v8_uniform_Data, %v8_uniform_Data* %ispc.ptr, i32 0, i32 0
; CHECK-TYPED-PTRS: %[[ISPC_RES_A:[^ ]+]] = load i8*, i8** %[[ISPC_GEP_A]]
; CHECK-TYPED-PTRS: %[[ISPC_GEP_B:[^ ]+]] = getelementptr inbounds %v8_uniform_Data, %v8_uniform_Data* %ispc.ptr, i32 0, i32 1
; CHECK-TYPED-PTRS: %[[ISPC_RES_B:[^ ]+]] = load i64, i64* %[[ISPC_GEP_B]]
; CHECK-TYPED-PTRS: %[[ISPC_GEP_C:[^ ]+]] = getelementptr inbounds %v8_uniform_Data, %v8_uniform_Data* %ispc.ptr, i32 0, i32 2
; CHECK-TYPED-PTRS: %[[ISPC_RES_C:[^ ]+]] = load i32, i32* %[[ISPC_GEP_C]]
; CHECK-TYPED-PTRS: %[[ISPC_GEP_D:[^ ]+]] = getelementptr inbounds %v8_uniform_Data, %v8_uniform_Data* %ispc.ptr, i32 0, i32 3
; CHECK-TYPED-PTRS: %[[ISPC_RES_D:[^ ]+]] = load i8, i8* %[[ISPC_GEP_D]]
; CHECK-OPAQUE-PTRS: %[[ISPC_GEP_A:[^ ]+]] = getelementptr inbounds %v8_uniform_Data, ptr %ispc.ptr, i32 0, i32 0
; CHECK-OPAQUE-PTRS: %[[ISPC_RES_A:[^ ]+]] = load ptr, ptr %[[ISPC_GEP_A]]
; CHECK-OPAQUE-PTRS: %[[ISPC_GEP_B:[^ ]+]] = getelementptr inbounds %v8_uniform_Data, ptr %ispc.ptr, i32 0, i32 1
; CHECK-OPAQUE-PTRS: %[[ISPC_RES_B:[^ ]+]] = load i64, ptr %[[ISPC_GEP_B]]
; CHECK-OPAQUE-PTRS: %[[ISPC_GEP_C:[^ ]+]] = getelementptr inbounds %v8_uniform_Data, ptr %ispc.ptr, i32 0, i32 2
; CHECK-OPAQUE-PTRS: %[[ISPC_RES_C:[^ ]+]] = load i32, ptr %[[ISPC_GEP_C]]
; CHECK-OPAQUE-PTRS: %[[ISPC_GEP_D:[^ ]+]] = getelementptr inbounds %v8_uniform_Data, ptr %ispc.ptr, i32 0, i32 3
; CHECK-OPAQUE-PTRS: %[[ISPC_RES_D:[^ ]+]] = load i8, ptr %[[ISPC_GEP_D]]

; COM: combine the aggregate back
; CHECK-TYPED-PTRS: %[[ISPC_RES_0:[^ ]+]] = insertvalue %v8_uniform_Data undef, i8* %[[ISPC_RES_A]], 0
; CHECK-OPAQUE-PTRS: %[[ISPC_RES_0:[^ ]+]] = insertvalue %v8_uniform_Data undef, ptr %[[ISPC_RES_A]], 0
; CHECK: %[[ISPC_RES_1:[^ ]+]] = insertvalue %v8_uniform_Data %[[ISPC_RES_0]], i64 %[[ISPC_RES_B]], 1
; CHECK: %[[ISPC_RES_2:[^ ]+]] = insertvalue %v8_uniform_Data %[[ISPC_RES_1]], i32 %[[ISPC_RES_C]], 2
; CHECK: %res = insertvalue %v8_uniform_Data %[[ISPC_RES_2]], i8 %[[ISPC_RES_D]], 3

  %ispc.user.a = extractvalue %v8_uniform_Data %res, 0
  %ispc.user.b = extractvalue %v8_uniform_Data %res, 1
; CHECK: %ispc.user.a = extractvalue %v8_uniform_Data %res, 0
; CHECK: %ispc.user.b = extractvalue %v8_uniform_Data %res, 1

  ret void
}

define dllexport void @folded_structure_load() {
; CHECK-LABEL: folded_structure_load

  %ptr = alloca %folded_st
  %res = load %folded_st, %folded_st* %ptr
; CHECK-TYPED-PTRS: %[[GEP_A:[^ ]+]] = getelementptr inbounds %folded_st, %folded_st* %ptr, i32 0, i32 0
; CHECK-TYPED-PTRS: %[[RES_A:[^ ]+]] = load i8, i8* %[[GEP_A]]
; CHECK-TYPED-PTRS: %[[GEP_B:[^ ]+]] = getelementptr inbounds %folded_st, %folded_st* %ptr, i32 0, i32 1, i32 0
; CHECK-TYPED-PTRS: %[[RES_B:[^ ]+]] = load i32, i32* %[[GEP_B]]
; CHECK-TYPED-PTRS: %[[GEP_C:[^ ]+]] = getelementptr inbounds %folded_st, %folded_st* %ptr, i32 0, i32 1, i32 1
; CHECK-TYPED-PTRS: %[[RES_C:[^ ]+]] = load i64, i64* %[[GEP_C]]
; CHECK-OPAQUE-PTRS: %[[GEP_A:[^ ]+]] = getelementptr inbounds %folded_st, ptr %ptr, i32 0, i32 0
; CHECK-OPAQUE-PTRS: %[[RES_A:[^ ]+]] = load i8, ptr %[[GEP_A]]
; CHECK-OPAQUE-PTRS: %[[GEP_B:[^ ]+]] = getelementptr inbounds %folded_st, ptr %ptr, i32 0, i32 1, i32 0
; CHECK-OPAQUE-PTRS: %[[RES_B:[^ ]+]] = load i32, ptr %[[GEP_B]]
; CHECK-OPAQUE-PTRS: %[[GEP_C:[^ ]+]] = getelementptr inbounds %folded_st, ptr %ptr, i32 0, i32 1, i32 1
; CHECK-OPAQUE-PTRS: %[[RES_C:[^ ]+]] = load i64, ptr %[[GEP_C]]

; COM: combine the aggregate back
; CHECK: %[[RES_0:[^ ]+]] = insertvalue %folded_st undef, i8 %[[RES_A]], 0
; CHECK: %[[RES_1:[^ ]+]] = insertvalue %folded_st %[[RES_0]], i32 %[[RES_B]], 1, 0
; CHECK: %res = insertvalue %folded_st %[[RES_1]], i64 %[[RES_C]], 1, 1

  %user = extractvalue %folded_st %res, 0
; CHECK: %user = extractvalue %folded_st %res, 0
  ret void
}

define dllexport void @complex_load() {
; CHECK-LABEL: complex_load

  %ptr = alloca %complex_st
  %res = load %complex_st, %complex_st* %ptr
; CHECK-TYPED-PTRS: %[[GEP_A:[^ ]+]] = getelementptr inbounds %complex_st, %complex_st* %ptr, i32 0, i32 0, i32 0
; CHECK-TYPED-PTRS: %[[RES_A:[^ ]+]] = load i8, i8* %[[GEP_A]]
; CHECK-TYPED-PTRS: %[[GEP_B:[^ ]+]] = getelementptr inbounds %complex_st, %complex_st* %ptr, i32 0, i32 0, i32 1, i32 0
; CHECK-TYPED-PTRS: %[[RES_B:[^ ]+]] = load i32, i32* %[[GEP_B]]
; CHECK-TYPED-PTRS: %[[GEP_C:[^ ]+]] = getelementptr inbounds %complex_st, %complex_st* %ptr, i32 0, i32 0, i32 1, i32 1
; CHECK-TYPED-PTRS: %[[RES_C:[^ ]+]] = load i64, i64* %[[GEP_C]]
; CHECK-TYPED-PTRS: %[[GEP_D:[^ ]+]] = getelementptr inbounds %complex_st, %complex_st* %ptr, i32 0, i32 1
; CHECK-TYPED-PTRS: %[[RES_D:[^ ]+]] = load i64*, i64** %[[GEP_D]]
; CHECK-OPAQUE-PTRS: %[[GEP_A:[^ ]+]] = getelementptr inbounds %complex_st, ptr %ptr, i32 0, i32 0, i32 0
; CHECK-OPAQUE-PTRS: %[[RES_A:[^ ]+]] = load i8, ptr %[[GEP_A]]
; CHECK-OPAQUE-PTRS: %[[GEP_B:[^ ]+]] = getelementptr inbounds %complex_st, ptr %ptr, i32 0, i32 0, i32 1, i32 0
; CHECK-OPAQUE-PTRS: %[[RES_B:[^ ]+]] = load i32, ptr %[[GEP_B]]
; CHECK-OPAQUE-PTRS: %[[GEP_C:[^ ]+]] = getelementptr inbounds %complex_st, ptr %ptr, i32 0, i32 0, i32 1, i32 1
; CHECK-OPAQUE-PTRS: %[[RES_C:[^ ]+]] = load i64, ptr %[[GEP_C]]
; CHECK-OPAQUE-PTRS: %[[GEP_D:[^ ]+]] = getelementptr inbounds %complex_st, ptr %ptr, i32 0, i32 1
; CHECK-OPAQUE-PTRS: %[[RES_D:[^ ]+]] = load ptr, ptr %[[GEP_D]]

; COM: combine the aggregate back
; CHECK: %[[RES_0:[^ ]+]] = insertvalue %complex_st undef, i8 %[[RES_A]], 0, 0
; CHECK: %[[RES_1:[^ ]+]] = insertvalue %complex_st %[[RES_0]], i32 %[[RES_B]], 0, 1, 0
; CHECK: %[[RES_2:[^ ]+]] = insertvalue %complex_st %[[RES_1]], i64 %[[RES_C]], 0, 1, 1
; CHECK-TYPED-PTRS: %res = insertvalue %complex_st %[[RES_2]], i64* %[[RES_D]], 1
; CHECK-OPAQUE-PTRS: %res = insertvalue %complex_st %[[RES_2]], ptr %[[RES_D]], 1

  %user = extractvalue %complex_st %res, 0
; CHECK: %user = extractvalue %complex_st %res, 0
  ret void
}

define dllexport void @structure_with_array_load() {
; CHECK-LABEL: structure_with_array_load

  %ptr = alloca %st_with_array
  %res = load %st_with_array, %st_with_array* %ptr
; CHECK-TYPED-PTRS: %[[GEP_A:[^ ]+]] = getelementptr inbounds %st_with_array, %st_with_array* %ptr, i32 0, i32 0
; CHECK-TYPED-PTRS: %[[RES_A:[^ ]+]] = load i8, i8* %[[GEP_A]]
; CHECK-TYPED-PTRS: %[[GEP_B:[^ ]+]] = getelementptr inbounds %st_with_array, %st_with_array* %ptr, i32 0, i32 1, i32 0
; CHECK-TYPED-PTRS: %[[RES_B:[^ ]+]] = load <10 x i32>, <10 x i32>* %[[GEP_B]]
; CHECK-TYPED-PTRS: %[[GEP_C:[^ ]+]] = getelementptr inbounds %st_with_array, %st_with_array* %ptr, i32 0, i32 1, i32 1
; CHECK-TYPED-PTRS: %[[RES_C:[^ ]+]] = load <10 x i32>, <10 x i32>* %[[GEP_C]]
; CHECK-OPAQUE-PTRS: %[[GEP_A:[^ ]+]] = getelementptr inbounds %st_with_array, ptr %ptr, i32 0, i32 0
; CHECK-OPAQUE-PTRS: %[[RES_A:[^ ]+]] = load i8, ptr %[[GEP_A]]
; CHECK-OPAQUE-PTRS: %[[GEP_B:[^ ]+]] = getelementptr inbounds %st_with_array, ptr %ptr, i32 0, i32 1, i32 0
; CHECK-OPAQUE-PTRS: %[[RES_B:[^ ]+]] = load <10 x i32>, ptr %[[GEP_B]]
; CHECK-OPAQUE-PTRS: %[[GEP_C:[^ ]+]] = getelementptr inbounds %st_with_array, ptr %ptr, i32 0, i32 1, i32 1
; CHECK-OPAQUE-PTRS: %[[RES_C:[^ ]+]] = load <10 x i32>, ptr %[[GEP_C]]

; COM: combine the aggregate back
; CHECK: %[[RES_0:[^ ]+]] = insertvalue %st_with_array undef, i8 %[[RES_A]], 0
; CHECK: %[[RES_1:[^ ]+]] = insertvalue %st_with_array %[[RES_0]], <10 x i32> %[[RES_B]], 1, 0
; CHECK: %res = insertvalue %st_with_array %[[RES_1]], <10 x i32> %[[RES_C]], 1, 1

  %user = extractvalue %st_with_array %res, 0
; CHECK: %user = extractvalue %st_with_array %res, 0
  ret void
}