1207b08a9SGiorgis Georgakoudis // NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py UTC_ARGS: --function-signature --include-generated-funcs --replace-value-regex "__omp_offloading_[0-9a-z]+_[0-9a-z]+" "reduction_size[.].+[.]" "pl_cond[.].+[.|,]" --prefix-filecheck-ir-name _
2532dc62bSNikita Popov // RUN: %clang_cc1 -no-opaque-pointers -verify -fopenmp -x c++ -triple x86_64-unknown-linux -emit-llvm %s -fexceptions -fcxx-exceptions -o - | FileCheck %s --check-prefix=CHECK1
3532dc62bSNikita Popov // RUN: %clang_cc1 -no-opaque-pointers -fopenmp -x c++ -std=c++11 -triple x86_64-unknown-linux -fexceptions -fcxx-exceptions -emit-pch -o %t %s
4b52d33e6SJohannes Doerfert // RUN: %clang_cc1 -no-opaque-pointers -fopenmp -x c++ -triple x86_64-unknown-linux -fexceptions -fcxx-exceptions -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --check-prefix=CHECK1
58c2f4e0eSAlexey Bataev 
6532dc62bSNikita Popov // RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-unknown-linux -verify -fopenmp-simd -x c++ -emit-llvm %s -fexceptions -fcxx-exceptions -o - | FileCheck %s --implicit-check-not="{{__kmpc|__tgt}}"
7532dc62bSNikita Popov // RUN: %clang_cc1 -no-opaque-pointers -fopenmp-simd -x c++ -std=c++11 -triple x86_64-unknown-unknown -fexceptions -fcxx-exceptions -emit-pch -o %t %s
8532dc62bSNikita Popov // RUN: %clang_cc1 -no-opaque-pointers -fopenmp-simd -x c++ -triple x86_64-unknown-unknown -fexceptions -fcxx-exceptions -debug-info-kind=limited -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --implicit-check-not="{{__kmpc|__tgt}}"
98c2f4e0eSAlexey Bataev // expected-no-diagnostics
108c2f4e0eSAlexey Bataev #ifndef HEADER
118c2f4e0eSAlexey Bataev #define HEADER
128c2f4e0eSAlexey Bataev 
main(int argc,char ** argv)138c2f4e0eSAlexey Bataev int main(int argc, char **argv) {
148c2f4e0eSAlexey Bataev #pragma omp parallel master reduction(task, +: argc, argv[0:10][0:argc])
158c2f4e0eSAlexey Bataev   {
168c2f4e0eSAlexey Bataev #pragma omp task in_reduction(+: argc, argv[0:10][0:argc])
178c2f4e0eSAlexey Bataev     ;
188c2f4e0eSAlexey Bataev   }
198c2f4e0eSAlexey Bataev }
208c2f4e0eSAlexey Bataev 
218c2f4e0eSAlexey Bataev 
228c2f4e0eSAlexey Bataev 
238c2f4e0eSAlexey Bataev // Init firstprivate copy of argc
248c2f4e0eSAlexey Bataev 
258c2f4e0eSAlexey Bataev // Init firstprivate copy of argv[0:10][0:argc]
268c2f4e0eSAlexey Bataev 
278c2f4e0eSAlexey Bataev // Register task reduction.
288c2f4e0eSAlexey Bataev 
298c2f4e0eSAlexey Bataev 
308c2f4e0eSAlexey Bataev 
318c2f4e0eSAlexey Bataev 
328c2f4e0eSAlexey Bataev 
338c2f4e0eSAlexey Bataev 
348c2f4e0eSAlexey Bataev 
358c2f4e0eSAlexey Bataev 
368c2f4e0eSAlexey Bataev 
378c2f4e0eSAlexey Bataev #endif
38207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@main
391b1c8d83Shyeongyu kim // CHECK1-SAME: (i32 noundef [[ARGC:%.*]], i8** noundef [[ARGV:%.*]]) #[[ATTR0:[0-9]+]] {
40207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
41207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARGC_ADDR:%.*]] = alloca i32, align 4
42207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARGV_ADDR:%.*]] = alloca i8**, align 8
43207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i32 [[ARGC]], i32* [[ARGC_ADDR]], align 4
44207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8** [[ARGV]], i8*** [[ARGV_ADDR]], align 8
45ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP0:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8
46ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    call void (%struct.ident_t*, i32, void (i32*, i32*, ...)*, ...) @__kmpc_fork_call(%struct.ident_t* @[[GLOB1:[0-9]+]], i32 2, void (i32*, i32*, ...)* bitcast (void (i32*, i32*, i32*, i8**)* @.omp_outlined. to void (i32*, i32*, ...)*), i32* [[ARGC_ADDR]], i8** [[TMP0]])
47207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret i32 0
48207b08a9SGiorgis Georgakoudis //
49207b08a9SGiorgis Georgakoudis //
50207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.omp_outlined.
511b1c8d83Shyeongyu kim // CHECK1-SAME: (i32* noalias noundef [[DOTGLOBAL_TID_:%.*]], i32* noalias noundef [[DOTBOUND_TID_:%.*]], i32* noundef nonnull align 4 dereferenceable(4) [[ARGC:%.*]], i8** noundef [[ARGV:%.*]]) #[[ATTR1:[0-9]+]] {
52207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
53207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTGLOBAL_TID__ADDR:%.*]] = alloca i32*, align 8
54207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTBOUND_TID__ADDR:%.*]] = alloca i32*, align 8
55ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARGC_ADDR:%.*]] = alloca i32*, align 8
56ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARGV_ADDR:%.*]] = alloca i8**, align 8
57ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARGC1:%.*]] = alloca i32, align 4
58207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[SAVED_STACK:%.*]] = alloca i8*, align 8
59207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[__VLA_EXPR0:%.*]] = alloca i64, align 8
60207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP:%.*]] = alloca i8**, align 8
61ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[_TMP5:%.*]] = alloca i8*, align 8
62207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTRD_INPUT_:%.*]] = alloca [2 x %struct.kmp_taskred_input_t], align 8
63207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTTASK_RED_:%.*]] = alloca i8*, align 8
64ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[AGG_CAPTURED:%.*]] = alloca [[STRUCT_ANON:%.*]], align 8
65207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTOMP_REDUCTION_RED_LIST:%.*]] = alloca [3 x i8*], align 8
66207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ATOMIC_TEMP:%.*]] = alloca i8, align 1
67ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[_TMP24:%.*]] = alloca i8, align 1
68207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i32* [[DOTGLOBAL_TID_]], i32** [[DOTGLOBAL_TID__ADDR]], align 8
69207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i32* [[DOTBOUND_TID_]], i32** [[DOTBOUND_TID__ADDR]], align 8
70ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i32* [[ARGC]], i32** [[ARGC_ADDR]], align 8
71ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8** [[ARGV]], i8*** [[ARGV_ADDR]], align 8
72ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP0:%.*]] = load i32*, i32** [[ARGC_ADDR]], align 8
73ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i32 0, i32* [[ARGC1]], align 4
74ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP1:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8
75ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX:%.*]] = getelementptr inbounds i8*, i8** [[TMP1]], i64 0
76ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP2:%.*]] = load i8*, i8** [[ARRAYIDX]], align 8
77ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX2:%.*]] = getelementptr inbounds i8, i8* [[TMP2]], i64 0
78ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP3:%.*]] = load i32, i32* [[TMP0]], align 4
79ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP4:%.*]] = sext i32 [[TMP3]] to i64
80ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[LB_ADD_LEN:%.*]] = add nsw i64 -1, [[TMP4]]
81ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP5:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8
82ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX3:%.*]] = getelementptr inbounds i8*, i8** [[TMP5]], i64 9
83ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP6:%.*]] = load i8*, i8** [[ARRAYIDX3]], align 8
84ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX4:%.*]] = getelementptr inbounds i8, i8* [[TMP6]], i64 [[LB_ADD_LEN]]
85ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP7:%.*]] = ptrtoint i8* [[ARRAYIDX4]] to i64
86ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP8:%.*]] = ptrtoint i8* [[ARRAYIDX2]] to i64
87ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP9:%.*]] = sub i64 [[TMP7]], [[TMP8]]
88ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP10:%.*]] = sdiv exact i64 [[TMP9]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64)
89ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP11:%.*]] = add nuw i64 [[TMP10]], 1
90ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP12:%.*]] = mul nuw i64 [[TMP11]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64)
91ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP13:%.*]] = call i8* @llvm.stacksave()
92ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP13]], i8** [[SAVED_STACK]], align 8
93ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[VLA:%.*]] = alloca i8, i64 [[TMP11]], align 16
94ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i64 [[TMP11]], i64* [[__VLA_EXPR0]], align 8
95ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP14:%.*]] = getelementptr i8, i8* [[VLA]], i64 [[TMP11]]
96ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYINIT_ISEMPTY:%.*]] = icmp eq i8* [[VLA]], [[TMP14]]
97207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYINIT_ISEMPTY]], label [[OMP_ARRAYINIT_DONE:%.*]], label [[OMP_ARRAYINIT_BODY:%.*]]
98207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arrayinit.body:
99207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[VLA]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYINIT_BODY]] ]
100207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8 0, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1
101207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1
102ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP14]]
103207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYINIT_DONE]], label [[OMP_ARRAYINIT_BODY]]
104207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arrayinit.done:
105ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP15:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8
106ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP16:%.*]] = load i8*, i8** [[TMP15]], align 8
107ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP17:%.*]] = ptrtoint i8* [[TMP16]] to i64
108ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP18:%.*]] = ptrtoint i8* [[ARRAYIDX2]] to i64
109ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP19:%.*]] = sub i64 [[TMP17]], [[TMP18]]
110ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP20:%.*]] = sdiv exact i64 [[TMP19]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64)
111ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP21:%.*]] = getelementptr i8, i8* [[VLA]], i64 [[TMP20]]
112ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8** [[_TMP5]], i8*** [[TMP]], align 8
113ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP21]], i8** [[_TMP5]], align 8
114207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTRD_INPUT_GEP_:%.*]] = getelementptr inbounds [2 x %struct.kmp_taskred_input_t], [2 x %struct.kmp_taskred_input_t]* [[DOTRD_INPUT_]], i64 0, i64 0
115ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP22:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T:%.*]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 0
116ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP23:%.*]] = bitcast i32* [[ARGC1]] to i8*
117ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP23]], i8** [[TMP22]], align 8
118ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP24:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 1
119ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP25:%.*]] = bitcast i32* [[TMP0]] to i8*
120ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP25]], i8** [[TMP24]], align 8
121ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP26:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 2
122ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i64 4, i64* [[TMP26]], align 8
123ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP27:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 3
124ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* bitcast (void (i8*, i8*)* @.red_init. to i8*), i8** [[TMP27]], align 8
125ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP28:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 4
126ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* null, i8** [[TMP28]], align 8
127ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP29:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 5
128ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* bitcast (void (i8*, i8*)* @.red_comb. to i8*), i8** [[TMP29]], align 8
129ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP30:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 6
130ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP31:%.*]] = bitcast i32* [[TMP30]] to i8*
131ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    call void @llvm.memset.p0i8.i64(i8* align 8 [[TMP31]], i8 0, i64 4, i1 false)
132ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTRD_INPUT_GEP_6:%.*]] = getelementptr inbounds [2 x %struct.kmp_taskred_input_t], [2 x %struct.kmp_taskred_input_t]* [[DOTRD_INPUT_]], i64 0, i64 1
133ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP32:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 0
134ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP33:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8
135ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX7:%.*]] = getelementptr inbounds i8*, i8** [[TMP33]], i64 0
136ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP34:%.*]] = load i8*, i8** [[ARRAYIDX7]], align 8
137ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX8:%.*]] = getelementptr inbounds i8, i8* [[TMP34]], i64 0
138ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP35:%.*]] = load i32, i32* [[TMP0]], align 4
139ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP36:%.*]] = sext i32 [[TMP35]] to i64
140ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[LB_ADD_LEN9:%.*]] = add nsw i64 -1, [[TMP36]]
141ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP37:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8
142ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX10:%.*]] = getelementptr inbounds i8*, i8** [[TMP37]], i64 9
143ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP38:%.*]] = load i8*, i8** [[ARRAYIDX10]], align 8
144ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX11:%.*]] = getelementptr inbounds i8, i8* [[TMP38]], i64 [[LB_ADD_LEN9]]
145ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[VLA]], i8** [[TMP32]], align 8
146ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP39:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 1
147ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[ARRAYIDX8]], i8** [[TMP39]], align 8
148ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP40:%.*]] = ptrtoint i8* [[ARRAYIDX11]] to i64
149ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP41:%.*]] = ptrtoint i8* [[ARRAYIDX8]] to i64
150ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP42:%.*]] = sub i64 [[TMP40]], [[TMP41]]
151ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP43:%.*]] = sdiv exact i64 [[TMP42]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64)
152ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP44:%.*]] = add nuw i64 [[TMP43]], 1
153ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP45:%.*]] = mul nuw i64 [[TMP44]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64)
154ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP46:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 2
155ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i64 [[TMP45]], i64* [[TMP46]], align 8
156ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP47:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 3
157ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* bitcast (void (i8*, i8*)* @.red_init..1 to i8*), i8** [[TMP47]], align 8
158ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP48:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 4
159ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* null, i8** [[TMP48]], align 8
160ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP49:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 5
161ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* bitcast (void (i8*, i8*)* @.red_comb..2 to i8*), i8** [[TMP49]], align 8
162ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP50:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 6
163ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i32 1, i32* [[TMP50]], align 8
164ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP51:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8
165ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP52:%.*]] = load i32, i32* [[TMP51]], align 4
166ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP53:%.*]] = bitcast [2 x %struct.kmp_taskred_input_t]* [[DOTRD_INPUT_]] to i8*
167ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP54:%.*]] = call i8* @__kmpc_taskred_modifier_init(%struct.ident_t* @[[GLOB1]], i32 [[TMP52]], i32 0, i32 2, i8* [[TMP53]])
168ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP54]], i8** [[DOTTASK_RED_]], align 8
169ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP55:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8
170ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP56:%.*]] = load i32, i32* [[TMP55]], align 4
171ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP57:%.*]] = call i32 @__kmpc_master(%struct.ident_t* @[[GLOB1]], i32 [[TMP56]])
172ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP58:%.*]] = icmp ne i32 [[TMP57]], 0
173ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[TMP58]], label [[OMP_IF_THEN:%.*]], label [[OMP_IF_END:%.*]]
174207b08a9SGiorgis Georgakoudis // CHECK1:       omp_if.then:
175ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP59:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 0
176ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8** [[DOTTASK_RED_]], i8*** [[TMP59]], align 8
177ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP60:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 1
178ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i32* [[ARGC1]], i32** [[TMP60]], align 8
179ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP61:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 2
180ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP62:%.*]] = load i8**, i8*** [[TMP]], align 8
181ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8** [[TMP62]], i8*** [[TMP61]], align 8
182ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP63:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8
183ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP64:%.*]] = load i32, i32* [[TMP63]], align 4
184ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP65:%.*]] = call i8* @__kmpc_omp_task_alloc(%struct.ident_t* @[[GLOB1]], i32 [[TMP64]], i32 1, i64 48, i64 24, i32 (i32, i8*)* bitcast (i32 (i32, %struct.kmp_task_t_with_privates*)* @.omp_task_entry. to i32 (i32, i8*)*))
185ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP66:%.*]] = bitcast i8* [[TMP65]] to %struct.kmp_task_t_with_privates*
186ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP67:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES:%.*]], %struct.kmp_task_t_with_privates* [[TMP66]], i32 0, i32 0
187ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP68:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T:%.*]], %struct.kmp_task_t* [[TMP67]], i32 0, i32 0
188ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP69:%.*]] = load i8*, i8** [[TMP68]], align 8
189ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP70:%.*]] = bitcast %struct.anon* [[AGG_CAPTURED]] to i8*
190ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 [[TMP69]], i8* align 8 [[TMP70]], i64 24, i1 false)
191ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP71:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES]], %struct.kmp_task_t_with_privates* [[TMP66]], i32 0, i32 1
192ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP72:%.*]] = getelementptr inbounds [[STRUCT__KMP_PRIVATES_T:%.*]], %struct..kmp_privates.t* [[TMP71]], i32 0, i32 0
193ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP73:%.*]] = load i8*, i8** [[DOTTASK_RED_]], align 8
194ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP73]], i8** [[TMP72]], align 8
195ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP74:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8
196ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP75:%.*]] = load i32, i32* [[TMP74]], align 4
197ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP76:%.*]] = call i32 @__kmpc_omp_task(%struct.ident_t* @[[GLOB1]], i32 [[TMP75]], i8* [[TMP65]])
198ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    call void @__kmpc_end_master(%struct.ident_t* @[[GLOB1]], i32 [[TMP56]])
1991d66649aSGiorgis Georgakoudis // CHECK1-NEXT:    br label [[OMP_IF_END]]
2001d66649aSGiorgis Georgakoudis // CHECK1:       omp_if.end:
201ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP77:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8
202ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP78:%.*]] = load i32, i32* [[TMP77]], align 4
203ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    call void @__kmpc_task_reduction_modifier_fini(%struct.ident_t* @[[GLOB1]], i32 [[TMP78]], i32 0)
204ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP79:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 0
205ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP80:%.*]] = bitcast i32* [[ARGC1]] to i8*
206ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP80]], i8** [[TMP79]], align 8
207ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP81:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 1
208ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[VLA]], i8** [[TMP81]], align 8
209ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP82:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 2
210ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP83:%.*]] = inttoptr i64 [[TMP11]] to i8*
211207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP83]], i8** [[TMP82]], align 8
212ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP84:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8
213ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP85:%.*]] = load i32, i32* [[TMP84]], align 4
214ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP86:%.*]] = bitcast [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]] to i8*
215ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP87:%.*]] = call i32 @__kmpc_reduce_nowait(%struct.ident_t* @[[GLOB2:[0-9]+]], i32 [[TMP85]], i32 2, i64 24, i8* [[TMP86]], void (i8*, i8*)* @.omp.reduction.reduction_func, [8 x i32]* @.gomp_critical_user_.reduction.var)
216ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    switch i32 [[TMP87]], label [[DOTOMP_REDUCTION_DEFAULT:%.*]] [
217207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    i32 1, label [[DOTOMP_REDUCTION_CASE1:%.*]]
218207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    i32 2, label [[DOTOMP_REDUCTION_CASE2:%.*]]
219207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ]
220207b08a9SGiorgis Georgakoudis // CHECK1:       .omp.reduction.case1:
221ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP88:%.*]] = load i32, i32* [[TMP0]], align 4
222ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP89:%.*]] = load i32, i32* [[ARGC1]], align 4
223ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ADD:%.*]] = add nsw i32 [[TMP88]], [[TMP89]]
224ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i32 [[ADD]], i32* [[TMP0]], align 4
225ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP90:%.*]] = getelementptr i8, i8* [[ARRAYIDX2]], i64 [[TMP11]]
226ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[ARRAYIDX2]], [[TMP90]]
227ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE18:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]]
228207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arraycpy.body:
229207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[VLA]], [[DOTOMP_REDUCTION_CASE1]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ]
230ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DESTELEMENTPAST12:%.*]] = phi i8* [ [[ARRAYIDX2]], [[DOTOMP_REDUCTION_CASE1]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT16:%.*]], [[OMP_ARRAYCPY_BODY]] ]
231ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP91:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], align 1
232ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV:%.*]] = sext i8 [[TMP91]] to i32
233ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP92:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1
234ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV13:%.*]] = sext i8 [[TMP92]] to i32
235ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ADD14:%.*]] = add nsw i32 [[CONV]], [[CONV13]]
236ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV15:%.*]] = trunc i32 [[ADD14]] to i8
237ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8 [[CONV15]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], align 1
238ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DEST_ELEMENT16]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], i32 1
239207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1
240ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DONE17:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT16]], [[TMP90]]
241ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_DONE17]], label [[OMP_ARRAYCPY_DONE18]], label [[OMP_ARRAYCPY_BODY]]
242ac90dfc4SGiorgis Georgakoudis // CHECK1:       omp.arraycpy.done18:
243ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    call void @__kmpc_end_reduce_nowait(%struct.ident_t* @[[GLOB2]], i32 [[TMP85]], [8 x i32]* @.gomp_critical_user_.reduction.var)
244207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br label [[DOTOMP_REDUCTION_DEFAULT]]
245207b08a9SGiorgis Georgakoudis // CHECK1:       .omp.reduction.case2:
246ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP93:%.*]] = load i32, i32* [[ARGC1]], align 4
247ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP94:%.*]] = atomicrmw add i32* [[TMP0]], i32 [[TMP93]] monotonic, align 4
248ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP95:%.*]] = getelementptr i8, i8* [[ARRAYIDX2]], i64 [[TMP11]]
249ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_ISEMPTY19:%.*]] = icmp eq i8* [[ARRAYIDX2]], [[TMP95]]
250ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_ISEMPTY19]], label [[OMP_ARRAYCPY_DONE32:%.*]], label [[OMP_ARRAYCPY_BODY20:%.*]]
251ac90dfc4SGiorgis Georgakoudis // CHECK1:       omp.arraycpy.body20:
252ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_SRCELEMENTPAST21:%.*]] = phi i8* [ [[VLA]], [[DOTOMP_REDUCTION_CASE2]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT30:%.*]], [[ATOMIC_EXIT:%.*]] ]
253ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DESTELEMENTPAST22:%.*]] = phi i8* [ [[ARRAYIDX2]], [[DOTOMP_REDUCTION_CASE2]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT29:%.*]], [[ATOMIC_EXIT]] ]
254ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP96:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], align 1
255ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV23:%.*]] = sext i8 [[TMP96]] to i32
256ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ATOMIC_LOAD:%.*]] = load atomic i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]] monotonic, align 1
257207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br label [[ATOMIC_CONT:%.*]]
258207b08a9SGiorgis Georgakoudis // CHECK1:       atomic_cont:
259ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP97:%.*]] = phi i8 [ [[ATOMIC_LOAD]], [[OMP_ARRAYCPY_BODY20]] ], [ [[TMP102:%.*]], [[ATOMIC_CONT]] ]
260ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8 [[TMP97]], i8* [[_TMP24]], align 1
261ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP98:%.*]] = load i8, i8* [[_TMP24]], align 1
262ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV25:%.*]] = sext i8 [[TMP98]] to i32
263ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP99:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], align 1
264ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV26:%.*]] = sext i8 [[TMP99]] to i32
265ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[ADD27:%.*]] = add nsw i32 [[CONV25]], [[CONV26]]
266ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV28:%.*]] = trunc i32 [[ADD27]] to i8
267ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store i8 [[CONV28]], i8* [[ATOMIC_TEMP]], align 1
268ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP100:%.*]] = load i8, i8* [[ATOMIC_TEMP]], align 1
269ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP101:%.*]] = cmpxchg i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]], i8 [[TMP97]], i8 [[TMP100]] monotonic monotonic, align 1
270ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP102]] = extractvalue { i8, i1 } [[TMP101]], 0
271ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP103:%.*]] = extractvalue { i8, i1 } [[TMP101]], 1
272ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[TMP103]], label [[ATOMIC_EXIT]], label [[ATOMIC_CONT]]
273207b08a9SGiorgis Georgakoudis // CHECK1:       atomic_exit:
274ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DEST_ELEMENT29]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]], i32 1
275ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_SRC_ELEMENT30]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], i32 1
276ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DONE31:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT29]], [[TMP95]]
277ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_DONE31]], label [[OMP_ARRAYCPY_DONE32]], label [[OMP_ARRAYCPY_BODY20]]
278ac90dfc4SGiorgis Georgakoudis // CHECK1:       omp.arraycpy.done32:
279207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br label [[DOTOMP_REDUCTION_DEFAULT]]
280207b08a9SGiorgis Georgakoudis // CHECK1:       .omp.reduction.default:
281ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP104:%.*]] = load i8*, i8** [[SAVED_STACK]], align 8
282ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    call void @llvm.stackrestore(i8* [[TMP104]])
283207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret void
284207b08a9SGiorgis Georgakoudis //
285207b08a9SGiorgis Georgakoudis //
286207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.red_init.
2871b1c8d83Shyeongyu kim // CHECK1-SAME: (i8* noalias noundef [[TMP0:%.*]], i8* noalias noundef [[TMP1:%.*]]) #[[ATTR3:[0-9]+]] {
288207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
289207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR:%.*]] = alloca i8*, align 8
290207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR1:%.*]] = alloca i8*, align 8
291207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP0]], i8** [[DOTADDR]], align 8
292207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP1]], i8** [[DOTADDR1]], align 8
293b6f85d85SNikita Popov // CHECK1-NEXT:    [[TMP2:%.*]] = bitcast i8** [[DOTADDR]] to i32**
294b6f85d85SNikita Popov // CHECK1-NEXT:    [[TMP3:%.*]] = load i32*, i32** [[TMP2]], align 8
295b6f85d85SNikita Popov // CHECK1-NEXT:    store i32 0, i32* [[TMP3]], align 4
296207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret void
297207b08a9SGiorgis Georgakoudis //
298207b08a9SGiorgis Georgakoudis //
299207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.red_comb.
3001b1c8d83Shyeongyu kim // CHECK1-SAME: (i8* noundef [[TMP0:%.*]], i8* noundef [[TMP1:%.*]]) #[[ATTR3]] {
301207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
302207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR:%.*]] = alloca i8*, align 8
303207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR1:%.*]] = alloca i8*, align 8
304207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP0]], i8** [[DOTADDR]], align 8
305207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP1]], i8** [[DOTADDR1]], align 8
30652cc65d4SNikita Popov // CHECK1-NEXT:    [[TMP2:%.*]] = bitcast i8** [[DOTADDR]] to i32**
30752cc65d4SNikita Popov // CHECK1-NEXT:    [[TMP3:%.*]] = load i32*, i32** [[TMP2]], align 8
30852cc65d4SNikita Popov // CHECK1-NEXT:    [[TMP4:%.*]] = bitcast i8** [[DOTADDR1]] to i32**
30952cc65d4SNikita Popov // CHECK1-NEXT:    [[TMP5:%.*]] = load i32*, i32** [[TMP4]], align 8
31052cc65d4SNikita Popov // CHECK1-NEXT:    [[TMP6:%.*]] = load i32, i32* [[TMP3]], align 4
31152cc65d4SNikita Popov // CHECK1-NEXT:    [[TMP7:%.*]] = load i32, i32* [[TMP5]], align 4
312207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ADD:%.*]] = add nsw i32 [[TMP6]], [[TMP7]]
31352cc65d4SNikita Popov // CHECK1-NEXT:    store i32 [[ADD]], i32* [[TMP3]], align 4
314207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret void
315207b08a9SGiorgis Georgakoudis //
316207b08a9SGiorgis Georgakoudis //
317207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.red_init..1
3181b1c8d83Shyeongyu kim // CHECK1-SAME: (i8* noalias noundef [[TMP0:%.*]], i8* noalias noundef [[TMP1:%.*]]) #[[ATTR3]] {
319207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
320207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR:%.*]] = alloca i8*, align 8
321207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR1:%.*]] = alloca i8*, align 8
322207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP0]], i8** [[DOTADDR]], align 8
323207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP1]], i8** [[DOTADDR1]], align 8
324207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8
325207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP3:%.*]] = load i64, i64* @{{reduction_size[.].+[.]}}, align 8
326207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP4:%.*]] = getelementptr i8, i8* [[TMP2]], i64 [[TMP3]]
327207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYINIT_ISEMPTY:%.*]] = icmp eq i8* [[TMP2]], [[TMP4]]
328207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYINIT_ISEMPTY]], label [[OMP_ARRAYINIT_DONE:%.*]], label [[OMP_ARRAYINIT_BODY:%.*]]
329207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arrayinit.body:
330207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP2]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYINIT_BODY]] ]
331207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8 0, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1
332207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1
333207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP4]]
334207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYINIT_DONE]], label [[OMP_ARRAYINIT_BODY]]
335207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arrayinit.done:
336207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret void
337207b08a9SGiorgis Georgakoudis //
338207b08a9SGiorgis Georgakoudis //
339207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.red_comb..2
3401b1c8d83Shyeongyu kim // CHECK1-SAME: (i8* noundef [[TMP0:%.*]], i8* noundef [[TMP1:%.*]]) #[[ATTR3]] {
341207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
342207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR:%.*]] = alloca i8*, align 8
343207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR1:%.*]] = alloca i8*, align 8
344207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP0]], i8** [[DOTADDR]], align 8
345207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP1]], i8** [[DOTADDR1]], align 8
346207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP2:%.*]] = load i64, i64* @{{reduction_size[.].+[.]}}, align 8
347207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP3:%.*]] = load i8*, i8** [[DOTADDR]], align 8
348207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP4:%.*]] = load i8*, i8** [[DOTADDR1]], align 8
349207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP5:%.*]] = getelementptr i8, i8* [[TMP3]], i64 [[TMP2]]
350207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[TMP3]], [[TMP5]]
351207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE4:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]]
352207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arraycpy.body:
353207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[TMP4]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ]
354207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP3]], [[ENTRY]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ]
355207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP6:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1
356207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV:%.*]] = sext i8 [[TMP6]] to i32
357207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP7:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1
358207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV2:%.*]] = sext i8 [[TMP7]] to i32
359207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ADD:%.*]] = add nsw i32 [[CONV]], [[CONV2]]
360207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV3:%.*]] = trunc i32 [[ADD]] to i8
361207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8 [[CONV3]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1
362207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1
363207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1
364207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP5]]
365207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYCPY_DONE4]], label [[OMP_ARRAYCPY_BODY]]
366207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arraycpy.done4:
367207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret void
368207b08a9SGiorgis Georgakoudis //
369207b08a9SGiorgis Georgakoudis //
370207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.omp_task_privates_map.
3711b1c8d83Shyeongyu kim // CHECK1-SAME: (%struct..kmp_privates.t* noalias noundef [[TMP0:%.*]], i8*** noalias noundef [[TMP1:%.*]]) #[[ATTR6:[0-9]+]] {
372207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
373207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR:%.*]] = alloca %struct..kmp_privates.t*, align 8
374207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR1:%.*]] = alloca i8***, align 8
375207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store %struct..kmp_privates.t* [[TMP0]], %struct..kmp_privates.t** [[DOTADDR]], align 8
376207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8*** [[TMP1]], i8**** [[DOTADDR1]], align 8
377207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP2:%.*]] = load %struct..kmp_privates.t*, %struct..kmp_privates.t** [[DOTADDR]], align 8
378207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP3:%.*]] = getelementptr inbounds [[STRUCT__KMP_PRIVATES_T:%.*]], %struct..kmp_privates.t* [[TMP2]], i32 0, i32 0
379207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP4:%.*]] = load i8***, i8**** [[DOTADDR1]], align 8
380207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8** [[TMP3]], i8*** [[TMP4]], align 8
381207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret void
382207b08a9SGiorgis Georgakoudis //
383207b08a9SGiorgis Georgakoudis //
384207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.omp_task_entry.
3851b1c8d83Shyeongyu kim // CHECK1-SAME: (i32 noundef [[TMP0:%.*]], %struct.kmp_task_t_with_privates* noalias noundef [[TMP1:%.*]]) #[[ATTR3]] {
386207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
387207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTGLOBAL_TID__ADDR_I:%.*]] = alloca i32, align 4
388207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTPART_ID__ADDR_I:%.*]] = alloca i32*, align 8
389207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTPRIVATES__ADDR_I:%.*]] = alloca i8*, align 8
390207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTCOPY_FN__ADDR_I:%.*]] = alloca void (i8*, ...)*, align 8
391207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTTASK_T__ADDR_I:%.*]] = alloca i8*, align 8
392ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[__CONTEXT_ADDR_I:%.*]] = alloca %struct.anon*, align 8
393207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTFIRSTPRIV_PTR_ADDR_I:%.*]] = alloca i8**, align 8
394207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP_I:%.*]] = alloca i8**, align 8
395207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP4_I:%.*]] = alloca i8*, align 8
396207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR:%.*]] = alloca i32, align 4
397207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR1:%.*]] = alloca %struct.kmp_task_t_with_privates*, align 8
398207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i32 [[TMP0]], i32* [[DOTADDR]], align 4
399207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store %struct.kmp_task_t_with_privates* [[TMP1]], %struct.kmp_task_t_with_privates** [[DOTADDR1]], align 8
400207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP2:%.*]] = load i32, i32* [[DOTADDR]], align 4
401207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP3:%.*]] = load %struct.kmp_task_t_with_privates*, %struct.kmp_task_t_with_privates** [[DOTADDR1]], align 8
402207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP4:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES:%.*]], %struct.kmp_task_t_with_privates* [[TMP3]], i32 0, i32 0
403207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP5:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T:%.*]], %struct.kmp_task_t* [[TMP4]], i32 0, i32 2
404207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP6:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T]], %struct.kmp_task_t* [[TMP4]], i32 0, i32 0
405207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP7:%.*]] = load i8*, i8** [[TMP6]], align 8
406ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP8:%.*]] = bitcast i8* [[TMP7]] to %struct.anon*
407207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP9:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES]], %struct.kmp_task_t_with_privates* [[TMP3]], i32 0, i32 1
408207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP10:%.*]] = bitcast %struct..kmp_privates.t* [[TMP9]] to i8*
409207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP11:%.*]] = bitcast %struct.kmp_task_t_with_privates* [[TMP3]] to i8*
4109ce02ea8SJoseph Huber // CHECK1-NEXT:    call void @llvm.experimental.noalias.scope.decl(metadata [[META3:![0-9]+]])
4119ce02ea8SJoseph Huber // CHECK1-NEXT:    call void @llvm.experimental.noalias.scope.decl(metadata [[META6:![0-9]+]])
4129ce02ea8SJoseph Huber // CHECK1-NEXT:    call void @llvm.experimental.noalias.scope.decl(metadata [[META8:![0-9]+]])
4139ce02ea8SJoseph Huber // CHECK1-NEXT:    call void @llvm.experimental.noalias.scope.decl(metadata [[META10:![0-9]+]])
4149ce02ea8SJoseph Huber // CHECK1-NEXT:    store i32 [[TMP2]], i32* [[DOTGLOBAL_TID__ADDR_I]], align 4, !noalias !12
4159ce02ea8SJoseph Huber // CHECK1-NEXT:    store i32* [[TMP5]], i32** [[DOTPART_ID__ADDR_I]], align 8, !noalias !12
4169ce02ea8SJoseph Huber // CHECK1-NEXT:    store i8* [[TMP10]], i8** [[DOTPRIVATES__ADDR_I]], align 8, !noalias !12
4179ce02ea8SJoseph Huber // CHECK1-NEXT:    store void (i8*, ...)* bitcast (void (%struct..kmp_privates.t*, i8***)* @.omp_task_privates_map. to void (i8*, ...)*), void (i8*, ...)** [[DOTCOPY_FN__ADDR_I]], align 8, !noalias !12
4189ce02ea8SJoseph Huber // CHECK1-NEXT:    store i8* [[TMP11]], i8** [[DOTTASK_T__ADDR_I]], align 8, !noalias !12
419ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    store %struct.anon* [[TMP8]], %struct.anon** [[__CONTEXT_ADDR_I]], align 8, !noalias !12
420ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP12:%.*]] = load %struct.anon*, %struct.anon** [[__CONTEXT_ADDR_I]], align 8, !noalias !12
4219ce02ea8SJoseph Huber // CHECK1-NEXT:    [[TMP13:%.*]] = load void (i8*, ...)*, void (i8*, ...)** [[DOTCOPY_FN__ADDR_I]], align 8, !noalias !12
4229ce02ea8SJoseph Huber // CHECK1-NEXT:    [[TMP14:%.*]] = load i8*, i8** [[DOTPRIVATES__ADDR_I]], align 8, !noalias !12
423207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP15:%.*]] = bitcast void (i8*, ...)* [[TMP13]] to void (i8*, i8***)*
424207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    call void [[TMP15]](i8* [[TMP14]], i8*** [[DOTFIRSTPRIV_PTR_ADDR_I]]) #[[ATTR5:[0-9]+]]
4259ce02ea8SJoseph Huber // CHECK1-NEXT:    [[TMP16:%.*]] = load i8**, i8*** [[DOTFIRSTPRIV_PTR_ADDR_I]], align 8, !noalias !12
426ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP17:%.*]] = getelementptr inbounds [[STRUCT_ANON:%.*]], %struct.anon* [[TMP12]], i32 0, i32 1
427207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP18:%.*]] = load i32*, i32** [[TMP17]], align 8
428207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP19:%.*]] = load i8*, i8** [[TMP16]], align 8
4299ce02ea8SJoseph Huber // CHECK1-NEXT:    [[TMP20:%.*]] = load i32, i32* [[DOTGLOBAL_TID__ADDR_I]], align 4, !noalias !12
430207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP21:%.*]] = bitcast i32* [[TMP18]] to i8*
431*1ddc51d8SNicolai Hähnle // CHECK1-NEXT:    [[TMP22:%.*]] = call i8* @__kmpc_task_reduction_get_th_data(i32 [[TMP20]], i8* [[TMP19]], i8* [[TMP21]])
432207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV_I:%.*]] = bitcast i8* [[TMP22]] to i32*
433ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP23:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2
434207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP24:%.*]] = load i8**, i8*** [[TMP23]], align 8
435207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP25:%.*]] = load i8*, i8** [[TMP24]], align 8
436ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP26:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 1
437207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP27:%.*]] = load i32*, i32** [[TMP26]], align 8
438207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP28:%.*]] = load i32, i32* [[TMP27]], align 4
439207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP29:%.*]] = sext i32 [[TMP28]] to i64
440207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[LB_ADD_LEN_I:%.*]] = add nsw i64 -1, [[TMP29]]
441ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP30:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2
442207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP31:%.*]] = load i8**, i8*** [[TMP30]], align 8
443207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX2_I:%.*]] = getelementptr inbounds i8*, i8** [[TMP31]], i64 9
444207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP32:%.*]] = load i8*, i8** [[ARRAYIDX2_I]], align 8
445207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ARRAYIDX3_I:%.*]] = getelementptr inbounds i8, i8* [[TMP32]], i64 [[LB_ADD_LEN_I]]
446207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP33:%.*]] = ptrtoint i8* [[ARRAYIDX3_I]] to i64
447207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP34:%.*]] = ptrtoint i8* [[TMP25]] to i64
448207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP35:%.*]] = sub i64 [[TMP33]], [[TMP34]]
449207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP36:%.*]] = sdiv exact i64 [[TMP35]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64)
450207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP37:%.*]] = add nuw i64 [[TMP36]], 1
451207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP38:%.*]] = mul nuw i64 [[TMP37]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64)
452301011faSNicolai Hähnle // CHECK1-NEXT:    store i64 [[TMP37]], i64* @{{reduction_size[.].+[.]}}, align 8, !noalias !12
453207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP39:%.*]] = load i8*, i8** [[TMP16]], align 8
454*1ddc51d8SNicolai Hähnle // CHECK1-NEXT:    [[TMP40:%.*]] = call i8* @__kmpc_task_reduction_get_th_data(i32 [[TMP20]], i8* [[TMP39]], i8* [[TMP25]])
455ac90dfc4SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP41:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2
456207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP42:%.*]] = load i8**, i8*** [[TMP41]], align 8
457207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP43:%.*]] = load i8*, i8** [[TMP42]], align 8
458207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP44:%.*]] = ptrtoint i8* [[TMP43]] to i64
459207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP45:%.*]] = ptrtoint i8* [[TMP25]] to i64
460207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP46:%.*]] = sub i64 [[TMP44]], [[TMP45]]
461207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP47:%.*]] = sdiv exact i64 [[TMP46]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64)
462207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP48:%.*]] = getelementptr i8, i8* [[TMP40]], i64 [[TMP47]]
4639ce02ea8SJoseph Huber // CHECK1-NEXT:    store i8** [[TMP4_I]], i8*** [[TMP_I]], align 8, !noalias !12
4649ce02ea8SJoseph Huber // CHECK1-NEXT:    store i8* [[TMP48]], i8** [[TMP4_I]], align 8, !noalias !12
465207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret i32 0
466207b08a9SGiorgis Georgakoudis //
467207b08a9SGiorgis Georgakoudis //
468207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.omp.reduction.reduction_func
4691b1c8d83Shyeongyu kim // CHECK1-SAME: (i8* noundef [[TMP0:%.*]], i8* noundef [[TMP1:%.*]]) #[[ATTR3]] {
470207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:  entry:
471207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR:%.*]] = alloca i8*, align 8
472207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[DOTADDR1:%.*]] = alloca i8*, align 8
473207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP0]], i8** [[DOTADDR]], align 8
474207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8* [[TMP1]], i8** [[DOTADDR1]], align 8
475207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8
476207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP3:%.*]] = bitcast i8* [[TMP2]] to [3 x i8*]*
477207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP4:%.*]] = load i8*, i8** [[DOTADDR1]], align 8
478207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP5:%.*]] = bitcast i8* [[TMP4]] to [3 x i8*]*
479207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP6:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP5]], i64 0, i64 0
480207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP7:%.*]] = load i8*, i8** [[TMP6]], align 8
481207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP8:%.*]] = bitcast i8* [[TMP7]] to i32*
482207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP9:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 0
483207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP10:%.*]] = load i8*, i8** [[TMP9]], align 8
484207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP11:%.*]] = bitcast i8* [[TMP10]] to i32*
485207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP12:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP5]], i64 0, i64 1
486207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP13:%.*]] = load i8*, i8** [[TMP12]], align 8
487207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP14:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 1
488207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP15:%.*]] = load i8*, i8** [[TMP14]], align 8
489207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP16:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 2
490207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP17:%.*]] = load i8*, i8** [[TMP16]], align 8
491207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP18:%.*]] = ptrtoint i8* [[TMP17]] to i64
492207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP19:%.*]] = load i32, i32* [[TMP11]], align 4
493207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP20:%.*]] = load i32, i32* [[TMP8]], align 4
494207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ADD:%.*]] = add nsw i32 [[TMP19]], [[TMP20]]
495207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i32 [[ADD]], i32* [[TMP11]], align 4
496207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP21:%.*]] = getelementptr i8, i8* [[TMP15]], i64 [[TMP18]]
497207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[TMP15]], [[TMP21]]
498207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE5:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]]
499207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arraycpy.body:
500207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[TMP13]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ]
501207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP15]], [[ENTRY]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ]
502207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP22:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1
503207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV:%.*]] = sext i8 [[TMP22]] to i32
504207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[TMP23:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1
505207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV2:%.*]] = sext i8 [[TMP23]] to i32
506207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[ADD3:%.*]] = add nsw i32 [[CONV]], [[CONV2]]
507207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[CONV4:%.*]] = trunc i32 [[ADD3]] to i8
508207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    store i8 [[CONV4]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1
509207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1
510207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1
511207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP21]]
512207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYCPY_DONE5]], label [[OMP_ARRAYCPY_BODY]]
513207b08a9SGiorgis Georgakoudis // CHECK1:       omp.arraycpy.done5:
514207b08a9SGiorgis Georgakoudis // CHECK1-NEXT:    ret void
515207b08a9SGiorgis Georgakoudis //
516