1*207b08a9SGiorgis 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 _ 2*207b08a9SGiorgis Georgakoudis // RUN: %clang_cc1 -verify -fopenmp -x c++ -triple x86_64-unknown-linux -emit-llvm %s -fexceptions -fcxx-exceptions -o - | FileCheck %s --check-prefix=CHECK1 3ff260ad0SSaiyedul Islam // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -triple x86_64-unknown-linux -fexceptions -fcxx-exceptions -emit-pch -o %t %s 4*207b08a9SGiorgis Georgakoudis // RUN: %clang_cc1 -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=CHECK2 58c2f4e0eSAlexey Bataev 6*207b08a9SGiorgis Georgakoudis // RUN: %clang_cc1 -triple x86_64-unknown-linux -verify -fopenmp-simd -x c++ -emit-llvm %s -fexceptions -fcxx-exceptions -o - | FileCheck %s --check-prefix=CHECK3 7ff260ad0SSaiyedul Islam // RUN: %clang_cc1 -fopenmp-simd -x c++ -std=c++11 -triple x86_64-unknown-unknown -fexceptions -fcxx-exceptions -emit-pch -o %t %s 8*207b08a9SGiorgis Georgakoudis // RUN: %clang_cc1 -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 --check-prefix=CHECK4 98c2f4e0eSAlexey Bataev // expected-no-diagnostics 108c2f4e0eSAlexey Bataev #ifndef HEADER 118c2f4e0eSAlexey Bataev #define HEADER 128c2f4e0eSAlexey Bataev 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 38*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@main 39*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (i32 [[ARGC:%.*]], i8** [[ARGV:%.*]]) #[[ATTR0:[0-9]+]] { 40*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 41*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARGC_ADDR:%.*]] = alloca i32, align 4 42*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARGV_ADDR:%.*]] = alloca i8**, align 8 43*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 [[ARGC]], i32* [[ARGC_ADDR]], align 4 44*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8** [[ARGV]], i8*** [[ARGV_ADDR]], align 8 45*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP0:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 46*207b08a9SGiorgis 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]]) 47*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret i32 0 48*207b08a9SGiorgis Georgakoudis // 49*207b08a9SGiorgis Georgakoudis // 50*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.omp_outlined. 51*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (i32* noalias [[DOTGLOBAL_TID_:%.*]], i32* noalias [[DOTBOUND_TID_:%.*]], i32* nonnull align 4 dereferenceable(4) [[ARGC:%.*]], i8** [[ARGV:%.*]]) #[[ATTR1:[0-9]+]] { 52*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 53*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTGLOBAL_TID__ADDR:%.*]] = alloca i32*, align 8 54*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTBOUND_TID__ADDR:%.*]] = alloca i32*, align 8 55*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARGC_ADDR:%.*]] = alloca i32*, align 8 56*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARGV_ADDR:%.*]] = alloca i8**, align 8 57*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARGC1:%.*]] = alloca i32, align 4 58*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[SAVED_STACK:%.*]] = alloca i8*, align 8 59*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[__VLA_EXPR0:%.*]] = alloca i64, align 8 60*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP:%.*]] = alloca i8**, align 8 61*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[_TMP5:%.*]] = alloca i8*, align 8 62*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTRD_INPUT_:%.*]] = alloca [2 x %struct.kmp_taskred_input_t], align 8 63*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTTASK_RED_:%.*]] = alloca i8*, align 8 64*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[AGG_CAPTURED:%.*]] = alloca [[STRUCT_ANON:%.*]], align 8 65*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTOMP_REDUCTION_RED_LIST:%.*]] = alloca [3 x i8*], align 8 66*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ATOMIC_TEMP:%.*]] = alloca i8, align 1 67*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[_TMP24:%.*]] = alloca i8, align 1 68*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32* [[DOTGLOBAL_TID_]], i32** [[DOTGLOBAL_TID__ADDR]], align 8 69*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32* [[DOTBOUND_TID_]], i32** [[DOTBOUND_TID__ADDR]], align 8 70*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32* [[ARGC]], i32** [[ARGC_ADDR]], align 8 71*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8** [[ARGV]], i8*** [[ARGV_ADDR]], align 8 72*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP0:%.*]] = load i32*, i32** [[ARGC_ADDR]], align 8 73*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 0, i32* [[ARGC1]], align 4 74*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP1:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 75*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX:%.*]] = getelementptr inbounds i8*, i8** [[TMP1]], i64 0 76*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP2:%.*]] = load i8*, i8** [[ARRAYIDX]], align 8 77*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX2:%.*]] = getelementptr inbounds i8, i8* [[TMP2]], i64 0 78*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP3:%.*]] = load i32, i32* [[TMP0]], align 4 79*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP4:%.*]] = sext i32 [[TMP3]] to i64 80*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[LB_ADD_LEN:%.*]] = add nsw i64 -1, [[TMP4]] 81*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP5:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 82*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX3:%.*]] = getelementptr inbounds i8*, i8** [[TMP5]], i64 9 83*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP6:%.*]] = load i8*, i8** [[ARRAYIDX3]], align 8 84*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX4:%.*]] = getelementptr inbounds i8, i8* [[TMP6]], i64 [[LB_ADD_LEN]] 85*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP7:%.*]] = ptrtoint i8* [[ARRAYIDX4]] to i64 86*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP8:%.*]] = ptrtoint i8* [[ARRAYIDX2]] to i64 87*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP9:%.*]] = sub i64 [[TMP7]], [[TMP8]] 88*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP10:%.*]] = sdiv exact i64 [[TMP9]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 89*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP11:%.*]] = add nuw i64 [[TMP10]], 1 90*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP12:%.*]] = mul nuw i64 [[TMP11]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 91*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP13:%.*]] = call i8* @llvm.stacksave() 92*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP13]], i8** [[SAVED_STACK]], align 8 93*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[VLA:%.*]] = alloca i8, i64 [[TMP11]], align 16 94*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i64 [[TMP11]], i64* [[__VLA_EXPR0]], align 8 95*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP14:%.*]] = getelementptr i8, i8* [[VLA]], i64 [[TMP11]] 96*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYINIT_ISEMPTY:%.*]] = icmp eq i8* [[VLA]], [[TMP14]] 97*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYINIT_ISEMPTY]], label [[OMP_ARRAYINIT_DONE:%.*]], label [[OMP_ARRAYINIT_BODY:%.*]] 98*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arrayinit.body: 99*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[VLA]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYINIT_BODY]] ] 100*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8 0, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 101*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1 102*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP14]] 103*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYINIT_DONE]], label [[OMP_ARRAYINIT_BODY]] 104*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arrayinit.done: 105*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP15:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 106*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP16:%.*]] = load i8*, i8** [[TMP15]], align 8 107*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP17:%.*]] = ptrtoint i8* [[TMP16]] to i64 108*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP18:%.*]] = ptrtoint i8* [[ARRAYIDX2]] to i64 109*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP19:%.*]] = sub i64 [[TMP17]], [[TMP18]] 110*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP20:%.*]] = sdiv exact i64 [[TMP19]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 111*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP21:%.*]] = getelementptr i8, i8* [[VLA]], i64 [[TMP20]] 112*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8** [[_TMP5]], i8*** [[TMP]], align 8 113*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP21]], i8** [[_TMP5]], align 8 114*207b08a9SGiorgis 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 115*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP22:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T:%.*]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 0 116*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP23:%.*]] = bitcast i32* [[ARGC1]] to i8* 117*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP23]], i8** [[TMP22]], align 8 118*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP24:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 1 119*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP25:%.*]] = bitcast i32* [[TMP0]] to i8* 120*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP25]], i8** [[TMP24]], align 8 121*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP26:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 2 122*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i64 4, i64* [[TMP26]], align 8 123*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP27:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 3 124*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* bitcast (void (i8*, i8*)* @.red_init. to i8*), i8** [[TMP27]], align 8 125*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP28:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 4 126*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* null, i8** [[TMP28]], align 8 127*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP29:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 5 128*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* bitcast (void (i8*, i8*)* @.red_comb. to i8*), i8** [[TMP29]], align 8 129*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP30:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 6 130*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP31:%.*]] = bitcast i32* [[TMP30]] to i8* 131*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @llvm.memset.p0i8.i64(i8* align 8 [[TMP31]], i8 0, i64 4, i1 false) 132*207b08a9SGiorgis 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 133*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP32:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 0 134*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP33:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 135*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX7:%.*]] = getelementptr inbounds i8*, i8** [[TMP33]], i64 0 136*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP34:%.*]] = load i8*, i8** [[ARRAYIDX7]], align 8 137*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX8:%.*]] = getelementptr inbounds i8, i8* [[TMP34]], i64 0 138*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP35:%.*]] = load i32, i32* [[TMP0]], align 4 139*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP36:%.*]] = sext i32 [[TMP35]] to i64 140*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[LB_ADD_LEN9:%.*]] = add nsw i64 -1, [[TMP36]] 141*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP37:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 142*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX10:%.*]] = getelementptr inbounds i8*, i8** [[TMP37]], i64 9 143*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP38:%.*]] = load i8*, i8** [[ARRAYIDX10]], align 8 144*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX11:%.*]] = getelementptr inbounds i8, i8* [[TMP38]], i64 [[LB_ADD_LEN9]] 145*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[VLA]], i8** [[TMP32]], align 8 146*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP39:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 1 147*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[ARRAYIDX8]], i8** [[TMP39]], align 8 148*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP40:%.*]] = ptrtoint i8* [[ARRAYIDX11]] to i64 149*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP41:%.*]] = ptrtoint i8* [[ARRAYIDX8]] to i64 150*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP42:%.*]] = sub i64 [[TMP40]], [[TMP41]] 151*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP43:%.*]] = sdiv exact i64 [[TMP42]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 152*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP44:%.*]] = add nuw i64 [[TMP43]], 1 153*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP45:%.*]] = mul nuw i64 [[TMP44]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 154*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP46:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 2 155*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i64 [[TMP45]], i64* [[TMP46]], align 8 156*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP47:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 3 157*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* bitcast (void (i8*, i8*)* @.red_init..1 to i8*), i8** [[TMP47]], align 8 158*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP48:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 4 159*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* null, i8** [[TMP48]], align 8 160*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP49:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 5 161*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* bitcast (void (i8*, i8*)* @.red_comb..2 to i8*), i8** [[TMP49]], align 8 162*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP50:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 6 163*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 1, i32* [[TMP50]], align 8 164*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP51:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 165*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP52:%.*]] = load i32, i32* [[TMP51]], align 4 166*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP53:%.*]] = bitcast [2 x %struct.kmp_taskred_input_t]* [[DOTRD_INPUT_]] to i8* 167*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP54:%.*]] = call i8* @__kmpc_taskred_modifier_init(%struct.ident_t* @[[GLOB1]], i32 [[TMP52]], i32 0, i32 2, i8* [[TMP53]]) 168*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP54]], i8** [[DOTTASK_RED_]], align 8 169*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP55:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 170*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP56:%.*]] = load i32, i32* [[TMP55]], align 4 171*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP57:%.*]] = call i32 @__kmpc_master(%struct.ident_t* @[[GLOB1]], i32 [[TMP56]]) 172*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP58:%.*]] = icmp ne i32 [[TMP57]], 0 173*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[TMP58]], label [[OMP_IF_THEN:%.*]], label [[OMP_IF_END:%.*]] 174*207b08a9SGiorgis Georgakoudis // CHECK1: omp_if.then: 175*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP59:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 0 176*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8** [[DOTTASK_RED_]], i8*** [[TMP59]], align 8 177*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP60:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 1 178*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32* [[ARGC1]], i32** [[TMP60]], align 8 179*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP61:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 2 180*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP62:%.*]] = load i8**, i8*** [[TMP]], align 8 181*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8** [[TMP62]], i8*** [[TMP61]], align 8 182*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP63:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 183*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP64:%.*]] = load i32, i32* [[TMP63]], align 4 184*207b08a9SGiorgis 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*)*)) 185*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP66:%.*]] = bitcast i8* [[TMP65]] to %struct.kmp_task_t_with_privates* 186*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP67:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES:%.*]], %struct.kmp_task_t_with_privates* [[TMP66]], i32 0, i32 0 187*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP68:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T:%.*]], %struct.kmp_task_t* [[TMP67]], i32 0, i32 0 188*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP69:%.*]] = load i8*, i8** [[TMP68]], align 8 189*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP70:%.*]] = bitcast %struct.anon* [[AGG_CAPTURED]] to i8* 190*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 [[TMP69]], i8* align 8 [[TMP70]], i64 24, i1 false) 191*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP71:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES]], %struct.kmp_task_t_with_privates* [[TMP66]], i32 0, i32 1 192*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP72:%.*]] = getelementptr inbounds [[STRUCT__KMP_PRIVATES_T:%.*]], %struct..kmp_privates.t* [[TMP71]], i32 0, i32 0 193*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP73:%.*]] = load i8*, i8** [[DOTTASK_RED_]], align 8 194*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP73]], i8** [[TMP72]], align 8 195*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP74:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 196*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP75:%.*]] = load i32, i32* [[TMP74]], align 4 197*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP76:%.*]] = call i32 @__kmpc_omp_task(%struct.ident_t* @[[GLOB1]], i32 [[TMP75]], i8* [[TMP65]]) 198*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @__kmpc_end_master(%struct.ident_t* @[[GLOB1]], i32 [[TMP56]]) 199*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br label [[OMP_IF_END]] 200*207b08a9SGiorgis Georgakoudis // CHECK1: omp_if.end: 201*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP77:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 202*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP78:%.*]] = load i32, i32* [[TMP77]], align 4 203*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @__kmpc_task_reduction_modifier_fini(%struct.ident_t* @[[GLOB1]], i32 [[TMP78]], i32 0) 204*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP79:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 0 205*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP80:%.*]] = bitcast i32* [[ARGC1]] to i8* 206*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP80]], i8** [[TMP79]], align 8 207*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP81:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 1 208*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[VLA]], i8** [[TMP81]], align 8 209*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP82:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 2 210*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP83:%.*]] = inttoptr i64 [[TMP11]] to i8* 211*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP83]], i8** [[TMP82]], align 8 212*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP84:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 213*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP85:%.*]] = load i32, i32* [[TMP84]], align 4 214*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP86:%.*]] = bitcast [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]] to i8* 215*207b08a9SGiorgis 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) 216*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: switch i32 [[TMP87]], label [[DOTOMP_REDUCTION_DEFAULT:%.*]] [ 217*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: i32 1, label [[DOTOMP_REDUCTION_CASE1:%.*]] 218*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: i32 2, label [[DOTOMP_REDUCTION_CASE2:%.*]] 219*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ] 220*207b08a9SGiorgis Georgakoudis // CHECK1: .omp.reduction.case1: 221*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP88:%.*]] = load i32, i32* [[TMP0]], align 4 222*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP89:%.*]] = load i32, i32* [[ARGC1]], align 4 223*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ADD:%.*]] = add nsw i32 [[TMP88]], [[TMP89]] 224*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 [[ADD]], i32* [[TMP0]], align 4 225*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP90:%.*]] = getelementptr i8, i8* [[ARRAYIDX2]], i64 [[TMP11]] 226*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[ARRAYIDX2]], [[TMP90]] 227*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE18:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]] 228*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arraycpy.body: 229*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[VLA]], [[DOTOMP_REDUCTION_CASE1]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 230*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST12:%.*]] = phi i8* [ [[ARRAYIDX2]], [[DOTOMP_REDUCTION_CASE1]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT16:%.*]], [[OMP_ARRAYCPY_BODY]] ] 231*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP91:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], align 1 232*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV:%.*]] = sext i8 [[TMP91]] to i32 233*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP92:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1 234*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV13:%.*]] = sext i8 [[TMP92]] to i32 235*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ADD14:%.*]] = add nsw i32 [[CONV]], [[CONV13]] 236*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV15:%.*]] = trunc i32 [[ADD14]] to i8 237*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8 [[CONV15]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], align 1 238*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT16]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], i32 1 239*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1 240*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DONE17:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT16]], [[TMP90]] 241*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_DONE17]], label [[OMP_ARRAYCPY_DONE18]], label [[OMP_ARRAYCPY_BODY]] 242*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arraycpy.done18: 243*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @__kmpc_end_reduce_nowait(%struct.ident_t* @[[GLOB2]], i32 [[TMP85]], [8 x i32]* @.gomp_critical_user_.reduction.var) 244*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br label [[DOTOMP_REDUCTION_DEFAULT]] 245*207b08a9SGiorgis Georgakoudis // CHECK1: .omp.reduction.case2: 246*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP93:%.*]] = load i32, i32* [[ARGC1]], align 4 247*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP94:%.*]] = atomicrmw add i32* [[TMP0]], i32 [[TMP93]] monotonic, align 4 248*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP95:%.*]] = getelementptr i8, i8* [[ARRAYIDX2]], i64 [[TMP11]] 249*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_ISEMPTY19:%.*]] = icmp eq i8* [[ARRAYIDX2]], [[TMP95]] 250*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_ISEMPTY19]], label [[OMP_ARRAYCPY_DONE32:%.*]], label [[OMP_ARRAYCPY_BODY20:%.*]] 251*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arraycpy.body20: 252*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_SRCELEMENTPAST21:%.*]] = phi i8* [ [[VLA]], [[DOTOMP_REDUCTION_CASE2]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT30:%.*]], [[ATOMIC_EXIT:%.*]] ] 253*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST22:%.*]] = phi i8* [ [[ARRAYIDX2]], [[DOTOMP_REDUCTION_CASE2]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT29:%.*]], [[ATOMIC_EXIT]] ] 254*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP96:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], align 1 255*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV23:%.*]] = sext i8 [[TMP96]] to i32 256*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ATOMIC_LOAD:%.*]] = load atomic i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]] monotonic, align 1 257*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br label [[ATOMIC_CONT:%.*]] 258*207b08a9SGiorgis Georgakoudis // CHECK1: atomic_cont: 259*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP97:%.*]] = phi i8 [ [[ATOMIC_LOAD]], [[OMP_ARRAYCPY_BODY20]] ], [ [[TMP102:%.*]], [[ATOMIC_CONT]] ] 260*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8 [[TMP97]], i8* [[_TMP24]], align 1 261*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP98:%.*]] = load i8, i8* [[_TMP24]], align 1 262*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV25:%.*]] = sext i8 [[TMP98]] to i32 263*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP99:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], align 1 264*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV26:%.*]] = sext i8 [[TMP99]] to i32 265*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ADD27:%.*]] = add nsw i32 [[CONV25]], [[CONV26]] 266*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV28:%.*]] = trunc i32 [[ADD27]] to i8 267*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8 [[CONV28]], i8* [[ATOMIC_TEMP]], align 1 268*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP100:%.*]] = load i8, i8* [[ATOMIC_TEMP]], align 1 269*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP101:%.*]] = cmpxchg i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]], i8 [[TMP97]], i8 [[TMP100]] monotonic monotonic, align 1 270*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP102]] = extractvalue { i8, i1 } [[TMP101]], 0 271*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP103:%.*]] = extractvalue { i8, i1 } [[TMP101]], 1 272*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[TMP103]], label [[ATOMIC_EXIT]], label [[ATOMIC_CONT]] 273*207b08a9SGiorgis Georgakoudis // CHECK1: atomic_exit: 274*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT29]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]], i32 1 275*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_SRC_ELEMENT30]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], i32 1 276*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DONE31:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT29]], [[TMP95]] 277*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_DONE31]], label [[OMP_ARRAYCPY_DONE32]], label [[OMP_ARRAYCPY_BODY20]] 278*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arraycpy.done32: 279*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br label [[DOTOMP_REDUCTION_DEFAULT]] 280*207b08a9SGiorgis Georgakoudis // CHECK1: .omp.reduction.default: 281*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP104:%.*]] = load i8*, i8** [[SAVED_STACK]], align 8 282*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @llvm.stackrestore(i8* [[TMP104]]) 283*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret void 284*207b08a9SGiorgis Georgakoudis // 285*207b08a9SGiorgis Georgakoudis // 286*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.red_init. 287*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (i8* noalias [[TMP0:%.*]], i8* noalias [[TMP1:%.*]]) #[[ATTR3:[0-9]+]] { 288*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 289*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 290*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 291*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 292*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 293*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8 294*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP3:%.*]] = bitcast i8* [[TMP2]] to i32* 295*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 0, i32* [[TMP3]], align 8 296*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret void 297*207b08a9SGiorgis Georgakoudis // 298*207b08a9SGiorgis Georgakoudis // 299*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.red_comb. 300*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (i8* [[TMP0:%.*]], i8* [[TMP1:%.*]]) #[[ATTR3]] { 301*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 302*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 303*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 304*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 305*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 306*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8 307*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP3:%.*]] = bitcast i8* [[TMP2]] to i32* 308*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP4:%.*]] = load i8*, i8** [[DOTADDR1]], align 8 309*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP5:%.*]] = bitcast i8* [[TMP4]] to i32* 310*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP6:%.*]] = load i32, i32* [[TMP3]], align 8 311*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP7:%.*]] = load i32, i32* [[TMP5]], align 8 312*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ADD:%.*]] = add nsw i32 [[TMP6]], [[TMP7]] 313*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 [[ADD]], i32* [[TMP3]], align 8 314*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret void 315*207b08a9SGiorgis Georgakoudis // 316*207b08a9SGiorgis Georgakoudis // 317*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.red_init..1 318*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (i8* noalias [[TMP0:%.*]], i8* noalias [[TMP1:%.*]]) #[[ATTR3]] { 319*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 320*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 321*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 322*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 323*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 324*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8 325*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP3:%.*]] = load i64, i64* @{{reduction_size[.].+[.]}}, align 8 326*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP4:%.*]] = getelementptr i8, i8* [[TMP2]], i64 [[TMP3]] 327*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYINIT_ISEMPTY:%.*]] = icmp eq i8* [[TMP2]], [[TMP4]] 328*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYINIT_ISEMPTY]], label [[OMP_ARRAYINIT_DONE:%.*]], label [[OMP_ARRAYINIT_BODY:%.*]] 329*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arrayinit.body: 330*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP2]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYINIT_BODY]] ] 331*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8 0, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 332*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1 333*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP4]] 334*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYINIT_DONE]], label [[OMP_ARRAYINIT_BODY]] 335*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arrayinit.done: 336*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret void 337*207b08a9SGiorgis Georgakoudis // 338*207b08a9SGiorgis Georgakoudis // 339*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.red_comb..2 340*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (i8* [[TMP0:%.*]], i8* [[TMP1:%.*]]) #[[ATTR3]] { 341*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 342*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 343*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 344*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 345*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 346*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP2:%.*]] = load i64, i64* @{{reduction_size[.].+[.]}}, align 8 347*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP3:%.*]] = load i8*, i8** [[DOTADDR]], align 8 348*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP4:%.*]] = load i8*, i8** [[DOTADDR1]], align 8 349*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP5:%.*]] = getelementptr i8, i8* [[TMP3]], i64 [[TMP2]] 350*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[TMP3]], [[TMP5]] 351*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE4:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]] 352*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arraycpy.body: 353*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[TMP4]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 354*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP3]], [[ENTRY]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 355*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP6:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 356*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV:%.*]] = sext i8 [[TMP6]] to i32 357*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP7:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1 358*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV2:%.*]] = sext i8 [[TMP7]] to i32 359*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ADD:%.*]] = add nsw i32 [[CONV]], [[CONV2]] 360*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV3:%.*]] = trunc i32 [[ADD]] to i8 361*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8 [[CONV3]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 362*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1 363*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1 364*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP5]] 365*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYCPY_DONE4]], label [[OMP_ARRAYCPY_BODY]] 366*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arraycpy.done4: 367*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret void 368*207b08a9SGiorgis Georgakoudis // 369*207b08a9SGiorgis Georgakoudis // 370*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.omp_task_privates_map. 371*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (%struct..kmp_privates.t* noalias [[TMP0:%.*]], i8*** noalias [[TMP1:%.*]]) #[[ATTR6:[0-9]+]] { 372*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 373*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR:%.*]] = alloca %struct..kmp_privates.t*, align 8 374*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR1:%.*]] = alloca i8***, align 8 375*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store %struct..kmp_privates.t* [[TMP0]], %struct..kmp_privates.t** [[DOTADDR]], align 8 376*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8*** [[TMP1]], i8**** [[DOTADDR1]], align 8 377*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP2:%.*]] = load %struct..kmp_privates.t*, %struct..kmp_privates.t** [[DOTADDR]], align 8 378*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP3:%.*]] = getelementptr inbounds [[STRUCT__KMP_PRIVATES_T:%.*]], %struct..kmp_privates.t* [[TMP2]], i32 0, i32 0 379*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP4:%.*]] = load i8***, i8**** [[DOTADDR1]], align 8 380*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8** [[TMP3]], i8*** [[TMP4]], align 8 381*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret void 382*207b08a9SGiorgis Georgakoudis // 383*207b08a9SGiorgis Georgakoudis // 384*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.omp_task_entry. 385*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (i32 [[TMP0:%.*]], %struct.kmp_task_t_with_privates* noalias [[TMP1:%.*]]) #[[ATTR3]] { 386*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 387*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTGLOBAL_TID__ADDR_I:%.*]] = alloca i32, align 4 388*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTPART_ID__ADDR_I:%.*]] = alloca i32*, align 8 389*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTPRIVATES__ADDR_I:%.*]] = alloca i8*, align 8 390*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTCOPY_FN__ADDR_I:%.*]] = alloca void (i8*, ...)*, align 8 391*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTTASK_T__ADDR_I:%.*]] = alloca i8*, align 8 392*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[__CONTEXT_ADDR_I:%.*]] = alloca %struct.anon*, align 8 393*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTFIRSTPRIV_PTR_ADDR_I:%.*]] = alloca i8**, align 8 394*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP_I:%.*]] = alloca i8**, align 8 395*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP4_I:%.*]] = alloca i8*, align 8 396*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR:%.*]] = alloca i32, align 4 397*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR1:%.*]] = alloca %struct.kmp_task_t_with_privates*, align 8 398*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 [[TMP0]], i32* [[DOTADDR]], align 4 399*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store %struct.kmp_task_t_with_privates* [[TMP1]], %struct.kmp_task_t_with_privates** [[DOTADDR1]], align 8 400*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP2:%.*]] = load i32, i32* [[DOTADDR]], align 4 401*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP3:%.*]] = load %struct.kmp_task_t_with_privates*, %struct.kmp_task_t_with_privates** [[DOTADDR1]], align 8 402*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP4:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES:%.*]], %struct.kmp_task_t_with_privates* [[TMP3]], i32 0, i32 0 403*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP5:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T:%.*]], %struct.kmp_task_t* [[TMP4]], i32 0, i32 2 404*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP6:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T]], %struct.kmp_task_t* [[TMP4]], i32 0, i32 0 405*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP7:%.*]] = load i8*, i8** [[TMP6]], align 8 406*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP8:%.*]] = bitcast i8* [[TMP7]] to %struct.anon* 407*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP9:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES]], %struct.kmp_task_t_with_privates* [[TMP3]], i32 0, i32 1 408*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP10:%.*]] = bitcast %struct..kmp_privates.t* [[TMP9]] to i8* 409*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP11:%.*]] = bitcast %struct.kmp_task_t_with_privates* [[TMP3]] to i8* 410*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @llvm.experimental.noalias.scope.decl(metadata [[META2:![0-9]+]]) 411*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @llvm.experimental.noalias.scope.decl(metadata [[META5:![0-9]+]]) 412*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @llvm.experimental.noalias.scope.decl(metadata [[META7:![0-9]+]]) 413*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void @llvm.experimental.noalias.scope.decl(metadata [[META9:![0-9]+]]) 414*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 [[TMP2]], i32* [[DOTGLOBAL_TID__ADDR_I]], align 4, !noalias !11 415*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32* [[TMP5]], i32** [[DOTPART_ID__ADDR_I]], align 8, !noalias !11 416*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP10]], i8** [[DOTPRIVATES__ADDR_I]], align 8, !noalias !11 417*207b08a9SGiorgis Georgakoudis // 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 !11 418*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP11]], i8** [[DOTTASK_T__ADDR_I]], align 8, !noalias !11 419*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store %struct.anon* [[TMP8]], %struct.anon** [[__CONTEXT_ADDR_I]], align 8, !noalias !11 420*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP12:%.*]] = load %struct.anon*, %struct.anon** [[__CONTEXT_ADDR_I]], align 8, !noalias !11 421*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP13:%.*]] = load void (i8*, ...)*, void (i8*, ...)** [[DOTCOPY_FN__ADDR_I]], align 8, !noalias !11 422*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP14:%.*]] = load i8*, i8** [[DOTPRIVATES__ADDR_I]], align 8, !noalias !11 423*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP15:%.*]] = bitcast void (i8*, ...)* [[TMP13]] to void (i8*, i8***)* 424*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: call void [[TMP15]](i8* [[TMP14]], i8*** [[DOTFIRSTPRIV_PTR_ADDR_I]]) #[[ATTR5:[0-9]+]] 425*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP16:%.*]] = load i8**, i8*** [[DOTFIRSTPRIV_PTR_ADDR_I]], align 8, !noalias !11 426*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP17:%.*]] = getelementptr inbounds [[STRUCT_ANON:%.*]], %struct.anon* [[TMP12]], i32 0, i32 1 427*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP18:%.*]] = load i32*, i32** [[TMP17]], align 8 428*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP19:%.*]] = load i8*, i8** [[TMP16]], align 8 429*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP20:%.*]] = load i32, i32* [[DOTGLOBAL_TID__ADDR_I]], align 4, !noalias !11 430*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP21:%.*]] = bitcast i32* [[TMP18]] to i8* 431*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP22:%.*]] = call i8* @__kmpc_task_reduction_get_th_data(i32 [[TMP20]], i8* [[TMP19]], i8* [[TMP21]]) #[[ATTR5]] 432*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV_I:%.*]] = bitcast i8* [[TMP22]] to i32* 433*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP23:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2 434*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP24:%.*]] = load i8**, i8*** [[TMP23]], align 8 435*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP25:%.*]] = load i8*, i8** [[TMP24]], align 8 436*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP26:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 1 437*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP27:%.*]] = load i32*, i32** [[TMP26]], align 8 438*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP28:%.*]] = load i32, i32* [[TMP27]], align 4 439*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP29:%.*]] = sext i32 [[TMP28]] to i64 440*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[LB_ADD_LEN_I:%.*]] = add nsw i64 -1, [[TMP29]] 441*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP30:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2 442*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP31:%.*]] = load i8**, i8*** [[TMP30]], align 8 443*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX2_I:%.*]] = getelementptr inbounds i8*, i8** [[TMP31]], i64 9 444*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP32:%.*]] = load i8*, i8** [[ARRAYIDX2_I]], align 8 445*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ARRAYIDX3_I:%.*]] = getelementptr inbounds i8, i8* [[TMP32]], i64 [[LB_ADD_LEN_I]] 446*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP33:%.*]] = ptrtoint i8* [[ARRAYIDX3_I]] to i64 447*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP34:%.*]] = ptrtoint i8* [[TMP25]] to i64 448*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP35:%.*]] = sub i64 [[TMP33]], [[TMP34]] 449*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP36:%.*]] = sdiv exact i64 [[TMP35]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 450*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP37:%.*]] = add nuw i64 [[TMP36]], 1 451*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP38:%.*]] = mul nuw i64 [[TMP37]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 452*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i64 [[TMP37]], i64* @{{reduction_size[.].+[.]}}, align 8 453*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP39:%.*]] = load i8*, i8** [[TMP16]], align 8 454*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP40:%.*]] = call i8* @__kmpc_task_reduction_get_th_data(i32 [[TMP20]], i8* [[TMP39]], i8* [[TMP25]]) #[[ATTR5]] 455*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP41:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2 456*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP42:%.*]] = load i8**, i8*** [[TMP41]], align 8 457*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP43:%.*]] = load i8*, i8** [[TMP42]], align 8 458*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP44:%.*]] = ptrtoint i8* [[TMP43]] to i64 459*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP45:%.*]] = ptrtoint i8* [[TMP25]] to i64 460*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP46:%.*]] = sub i64 [[TMP44]], [[TMP45]] 461*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP47:%.*]] = sdiv exact i64 [[TMP46]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 462*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP48:%.*]] = getelementptr i8, i8* [[TMP40]], i64 [[TMP47]] 463*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8** [[TMP4_I]], i8*** [[TMP_I]], align 8, !noalias !11 464*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP48]], i8** [[TMP4_I]], align 8, !noalias !11 465*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret i32 0 466*207b08a9SGiorgis Georgakoudis // 467*207b08a9SGiorgis Georgakoudis // 468*207b08a9SGiorgis Georgakoudis // CHECK1-LABEL: define {{[^@]+}}@.omp.reduction.reduction_func 469*207b08a9SGiorgis Georgakoudis // CHECK1-SAME: (i8* [[TMP0:%.*]], i8* [[TMP1:%.*]]) #[[ATTR3]] { 470*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: entry: 471*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 472*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 473*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 474*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 475*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8 476*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP3:%.*]] = bitcast i8* [[TMP2]] to [3 x i8*]* 477*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP4:%.*]] = load i8*, i8** [[DOTADDR1]], align 8 478*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP5:%.*]] = bitcast i8* [[TMP4]] to [3 x i8*]* 479*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP6:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP5]], i64 0, i64 0 480*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP7:%.*]] = load i8*, i8** [[TMP6]], align 8 481*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP8:%.*]] = bitcast i8* [[TMP7]] to i32* 482*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP9:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 0 483*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP10:%.*]] = load i8*, i8** [[TMP9]], align 8 484*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP11:%.*]] = bitcast i8* [[TMP10]] to i32* 485*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP12:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP5]], i64 0, i64 1 486*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP13:%.*]] = load i8*, i8** [[TMP12]], align 8 487*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP14:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 1 488*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP15:%.*]] = load i8*, i8** [[TMP14]], align 8 489*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP16:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 2 490*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP17:%.*]] = load i8*, i8** [[TMP16]], align 8 491*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP18:%.*]] = ptrtoint i8* [[TMP17]] to i64 492*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP19:%.*]] = load i32, i32* [[TMP11]], align 4 493*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP20:%.*]] = load i32, i32* [[TMP8]], align 4 494*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ADD:%.*]] = add nsw i32 [[TMP19]], [[TMP20]] 495*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i32 [[ADD]], i32* [[TMP11]], align 4 496*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP21:%.*]] = getelementptr i8, i8* [[TMP15]], i64 [[TMP18]] 497*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[TMP15]], [[TMP21]] 498*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE5:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]] 499*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arraycpy.body: 500*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[TMP13]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 501*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP15]], [[ENTRY]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 502*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP22:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 503*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV:%.*]] = sext i8 [[TMP22]] to i32 504*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[TMP23:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1 505*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV2:%.*]] = sext i8 [[TMP23]] to i32 506*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[ADD3:%.*]] = add nsw i32 [[CONV]], [[CONV2]] 507*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[CONV4:%.*]] = trunc i32 [[ADD3]] to i8 508*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: store i8 [[CONV4]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 509*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1 510*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1 511*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP21]] 512*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYCPY_DONE5]], label [[OMP_ARRAYCPY_BODY]] 513*207b08a9SGiorgis Georgakoudis // CHECK1: omp.arraycpy.done5: 514*207b08a9SGiorgis Georgakoudis // CHECK1-NEXT: ret void 515*207b08a9SGiorgis Georgakoudis // 516*207b08a9SGiorgis Georgakoudis // 517*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@main 518*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (i32 [[ARGC:%.*]], i8** [[ARGV:%.*]]) #[[ATTR0:[0-9]+]] { 519*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 520*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARGC_ADDR:%.*]] = alloca i32, align 4 521*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARGV_ADDR:%.*]] = alloca i8**, align 8 522*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 [[ARGC]], i32* [[ARGC_ADDR]], align 4 523*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8** [[ARGV]], i8*** [[ARGV_ADDR]], align 8 524*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP0:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 525*207b08a9SGiorgis Georgakoudis // CHECK2-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]]) 526*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret i32 0 527*207b08a9SGiorgis Georgakoudis // 528*207b08a9SGiorgis Georgakoudis // 529*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@.omp_outlined. 530*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (i32* noalias [[DOTGLOBAL_TID_:%.*]], i32* noalias [[DOTBOUND_TID_:%.*]], i32* nonnull align 4 dereferenceable(4) [[ARGC:%.*]], i8** [[ARGV:%.*]]) #[[ATTR1:[0-9]+]] { 531*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 532*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTGLOBAL_TID__ADDR:%.*]] = alloca i32*, align 8 533*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTBOUND_TID__ADDR:%.*]] = alloca i32*, align 8 534*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARGC_ADDR:%.*]] = alloca i32*, align 8 535*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARGV_ADDR:%.*]] = alloca i8**, align 8 536*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARGC1:%.*]] = alloca i32, align 4 537*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[SAVED_STACK:%.*]] = alloca i8*, align 8 538*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[__VLA_EXPR0:%.*]] = alloca i64, align 8 539*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP:%.*]] = alloca i8**, align 8 540*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[_TMP5:%.*]] = alloca i8*, align 8 541*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTRD_INPUT_:%.*]] = alloca [2 x %struct.kmp_taskred_input_t], align 8 542*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTTASK_RED_:%.*]] = alloca i8*, align 8 543*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[AGG_CAPTURED:%.*]] = alloca [[STRUCT_ANON:%.*]], align 8 544*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTOMP_REDUCTION_RED_LIST:%.*]] = alloca [3 x i8*], align 8 545*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ATOMIC_TEMP:%.*]] = alloca i8, align 1 546*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[_TMP24:%.*]] = alloca i8, align 1 547*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32* [[DOTGLOBAL_TID_]], i32** [[DOTGLOBAL_TID__ADDR]], align 8 548*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32* [[DOTBOUND_TID_]], i32** [[DOTBOUND_TID__ADDR]], align 8 549*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32* [[ARGC]], i32** [[ARGC_ADDR]], align 8 550*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8** [[ARGV]], i8*** [[ARGV_ADDR]], align 8 551*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP0:%.*]] = load i32*, i32** [[ARGC_ADDR]], align 8 552*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 0, i32* [[ARGC1]], align 4 553*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP1:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 554*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX:%.*]] = getelementptr inbounds i8*, i8** [[TMP1]], i64 0 555*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP2:%.*]] = load i8*, i8** [[ARRAYIDX]], align 8 556*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX2:%.*]] = getelementptr inbounds i8, i8* [[TMP2]], i64 0 557*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP3:%.*]] = load i32, i32* [[TMP0]], align 4 558*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP4:%.*]] = sext i32 [[TMP3]] to i64 559*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[LB_ADD_LEN:%.*]] = add nsw i64 -1, [[TMP4]] 560*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP5:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 561*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX3:%.*]] = getelementptr inbounds i8*, i8** [[TMP5]], i64 9 562*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP6:%.*]] = load i8*, i8** [[ARRAYIDX3]], align 8 563*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX4:%.*]] = getelementptr inbounds i8, i8* [[TMP6]], i64 [[LB_ADD_LEN]] 564*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP7:%.*]] = ptrtoint i8* [[ARRAYIDX4]] to i64 565*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP8:%.*]] = ptrtoint i8* [[ARRAYIDX2]] to i64 566*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP9:%.*]] = sub i64 [[TMP7]], [[TMP8]] 567*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP10:%.*]] = sdiv exact i64 [[TMP9]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 568*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP11:%.*]] = add nuw i64 [[TMP10]], 1 569*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP12:%.*]] = mul nuw i64 [[TMP11]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 570*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP13:%.*]] = call i8* @llvm.stacksave() 571*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP13]], i8** [[SAVED_STACK]], align 8 572*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[VLA:%.*]] = alloca i8, i64 [[TMP11]], align 16 573*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i64 [[TMP11]], i64* [[__VLA_EXPR0]], align 8 574*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP14:%.*]] = getelementptr i8, i8* [[VLA]], i64 [[TMP11]] 575*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYINIT_ISEMPTY:%.*]] = icmp eq i8* [[VLA]], [[TMP14]] 576*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYINIT_ISEMPTY]], label [[OMP_ARRAYINIT_DONE:%.*]], label [[OMP_ARRAYINIT_BODY:%.*]] 577*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arrayinit.body: 578*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[VLA]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYINIT_BODY]] ] 579*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8 0, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 580*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1 581*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP14]] 582*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYINIT_DONE]], label [[OMP_ARRAYINIT_BODY]] 583*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arrayinit.done: 584*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP15:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 585*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP16:%.*]] = load i8*, i8** [[TMP15]], align 8 586*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP17:%.*]] = ptrtoint i8* [[TMP16]] to i64 587*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP18:%.*]] = ptrtoint i8* [[ARRAYIDX2]] to i64 588*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP19:%.*]] = sub i64 [[TMP17]], [[TMP18]] 589*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP20:%.*]] = sdiv exact i64 [[TMP19]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 590*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP21:%.*]] = getelementptr i8, i8* [[VLA]], i64 [[TMP20]] 591*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8** [[_TMP5]], i8*** [[TMP]], align 8 592*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP21]], i8** [[_TMP5]], align 8 593*207b08a9SGiorgis Georgakoudis // CHECK2-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 594*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP22:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T:%.*]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 0 595*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP23:%.*]] = bitcast i32* [[ARGC1]] to i8* 596*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP23]], i8** [[TMP22]], align 8 597*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP24:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 1 598*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP25:%.*]] = bitcast i32* [[TMP0]] to i8* 599*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP25]], i8** [[TMP24]], align 8 600*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP26:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 2 601*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i64 4, i64* [[TMP26]], align 8 602*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP27:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 3 603*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* bitcast (void (i8*, i8*)* @.red_init. to i8*), i8** [[TMP27]], align 8 604*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP28:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 4 605*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* null, i8** [[TMP28]], align 8 606*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP29:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 5 607*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* bitcast (void (i8*, i8*)* @.red_comb. to i8*), i8** [[TMP29]], align 8 608*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP30:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_]], i32 0, i32 6 609*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP31:%.*]] = bitcast i32* [[TMP30]] to i8* 610*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @llvm.memset.p0i8.i64(i8* align 8 [[TMP31]], i8 0, i64 4, i1 false) 611*207b08a9SGiorgis Georgakoudis // CHECK2-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 612*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP32:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 0 613*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP33:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 614*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX7:%.*]] = getelementptr inbounds i8*, i8** [[TMP33]], i64 0 615*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP34:%.*]] = load i8*, i8** [[ARRAYIDX7]], align 8 616*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX8:%.*]] = getelementptr inbounds i8, i8* [[TMP34]], i64 0 617*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP35:%.*]] = load i32, i32* [[TMP0]], align 4 618*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP36:%.*]] = sext i32 [[TMP35]] to i64 619*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[LB_ADD_LEN9:%.*]] = add nsw i64 -1, [[TMP36]] 620*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP37:%.*]] = load i8**, i8*** [[ARGV_ADDR]], align 8 621*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX10:%.*]] = getelementptr inbounds i8*, i8** [[TMP37]], i64 9 622*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP38:%.*]] = load i8*, i8** [[ARRAYIDX10]], align 8 623*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX11:%.*]] = getelementptr inbounds i8, i8* [[TMP38]], i64 [[LB_ADD_LEN9]] 624*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[VLA]], i8** [[TMP32]], align 8 625*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP39:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 1 626*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[ARRAYIDX8]], i8** [[TMP39]], align 8 627*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP40:%.*]] = ptrtoint i8* [[ARRAYIDX11]] to i64 628*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP41:%.*]] = ptrtoint i8* [[ARRAYIDX8]] to i64 629*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP42:%.*]] = sub i64 [[TMP40]], [[TMP41]] 630*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP43:%.*]] = sdiv exact i64 [[TMP42]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 631*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP44:%.*]] = add nuw i64 [[TMP43]], 1 632*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP45:%.*]] = mul nuw i64 [[TMP44]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 633*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP46:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 2 634*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i64 [[TMP45]], i64* [[TMP46]], align 8 635*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP47:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 3 636*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* bitcast (void (i8*, i8*)* @.red_init..1 to i8*), i8** [[TMP47]], align 8 637*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP48:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 4 638*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* null, i8** [[TMP48]], align 8 639*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP49:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 5 640*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* bitcast (void (i8*, i8*)* @.red_comb..2 to i8*), i8** [[TMP49]], align 8 641*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP50:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASKRED_INPUT_T]], %struct.kmp_taskred_input_t* [[DOTRD_INPUT_GEP_6]], i32 0, i32 6 642*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 1, i32* [[TMP50]], align 8 643*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP51:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 644*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP52:%.*]] = load i32, i32* [[TMP51]], align 4 645*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP53:%.*]] = bitcast [2 x %struct.kmp_taskred_input_t]* [[DOTRD_INPUT_]] to i8* 646*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP54:%.*]] = call i8* @__kmpc_taskred_modifier_init(%struct.ident_t* @[[GLOB1]], i32 [[TMP52]], i32 0, i32 2, i8* [[TMP53]]) 647*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP54]], i8** [[DOTTASK_RED_]], align 8 648*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP55:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 649*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP56:%.*]] = load i32, i32* [[TMP55]], align 4 650*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP57:%.*]] = call i32 @__kmpc_master(%struct.ident_t* @[[GLOB1]], i32 [[TMP56]]) 651*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP58:%.*]] = icmp ne i32 [[TMP57]], 0 652*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[TMP58]], label [[OMP_IF_THEN:%.*]], label [[OMP_IF_END:%.*]] 653*207b08a9SGiorgis Georgakoudis // CHECK2: omp_if.then: 654*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP59:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 0 655*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8** [[DOTTASK_RED_]], i8*** [[TMP59]], align 8 656*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP60:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 1 657*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32* [[ARGC1]], i32** [[TMP60]], align 8 658*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP61:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[AGG_CAPTURED]], i32 0, i32 2 659*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP62:%.*]] = load i8**, i8*** [[TMP]], align 8 660*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8** [[TMP62]], i8*** [[TMP61]], align 8 661*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP63:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 662*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP64:%.*]] = load i32, i32* [[TMP63]], align 4 663*207b08a9SGiorgis Georgakoudis // CHECK2-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*)*)) 664*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP66:%.*]] = bitcast i8* [[TMP65]] to %struct.kmp_task_t_with_privates* 665*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP67:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES:%.*]], %struct.kmp_task_t_with_privates* [[TMP66]], i32 0, i32 0 666*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP68:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T:%.*]], %struct.kmp_task_t* [[TMP67]], i32 0, i32 0 667*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP69:%.*]] = load i8*, i8** [[TMP68]], align 8 668*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP70:%.*]] = bitcast %struct.anon* [[AGG_CAPTURED]] to i8* 669*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 [[TMP69]], i8* align 8 [[TMP70]], i64 24, i1 false) 670*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP71:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES]], %struct.kmp_task_t_with_privates* [[TMP66]], i32 0, i32 1 671*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP72:%.*]] = getelementptr inbounds [[STRUCT__KMP_PRIVATES_T:%.*]], %struct..kmp_privates.t* [[TMP71]], i32 0, i32 0 672*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP73:%.*]] = load i8*, i8** [[DOTTASK_RED_]], align 8 673*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP73]], i8** [[TMP72]], align 8 674*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP74:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 675*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP75:%.*]] = load i32, i32* [[TMP74]], align 4 676*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP76:%.*]] = call i32 @__kmpc_omp_task(%struct.ident_t* @[[GLOB1]], i32 [[TMP75]], i8* [[TMP65]]) 677*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @__kmpc_end_master(%struct.ident_t* @[[GLOB1]], i32 [[TMP56]]) 678*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br label [[OMP_IF_END]] 679*207b08a9SGiorgis Georgakoudis // CHECK2: omp_if.end: 680*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP77:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 681*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP78:%.*]] = load i32, i32* [[TMP77]], align 4 682*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @__kmpc_task_reduction_modifier_fini(%struct.ident_t* @[[GLOB1]], i32 [[TMP78]], i32 0) 683*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP79:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 0 684*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP80:%.*]] = bitcast i32* [[ARGC1]] to i8* 685*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP80]], i8** [[TMP79]], align 8 686*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP81:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 1 687*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[VLA]], i8** [[TMP81]], align 8 688*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP82:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]], i64 0, i64 2 689*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP83:%.*]] = inttoptr i64 [[TMP11]] to i8* 690*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP83]], i8** [[TMP82]], align 8 691*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP84:%.*]] = load i32*, i32** [[DOTGLOBAL_TID__ADDR]], align 8 692*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP85:%.*]] = load i32, i32* [[TMP84]], align 4 693*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP86:%.*]] = bitcast [3 x i8*]* [[DOTOMP_REDUCTION_RED_LIST]] to i8* 694*207b08a9SGiorgis Georgakoudis // CHECK2-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) 695*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: switch i32 [[TMP87]], label [[DOTOMP_REDUCTION_DEFAULT:%.*]] [ 696*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: i32 1, label [[DOTOMP_REDUCTION_CASE1:%.*]] 697*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: i32 2, label [[DOTOMP_REDUCTION_CASE2:%.*]] 698*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ] 699*207b08a9SGiorgis Georgakoudis // CHECK2: .omp.reduction.case1: 700*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP88:%.*]] = load i32, i32* [[TMP0]], align 4 701*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP89:%.*]] = load i32, i32* [[ARGC1]], align 4 702*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ADD:%.*]] = add nsw i32 [[TMP88]], [[TMP89]] 703*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 [[ADD]], i32* [[TMP0]], align 4 704*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP90:%.*]] = getelementptr i8, i8* [[ARRAYIDX2]], i64 [[TMP11]] 705*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[ARRAYIDX2]], [[TMP90]] 706*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE18:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]] 707*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arraycpy.body: 708*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[VLA]], [[DOTOMP_REDUCTION_CASE1]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 709*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST12:%.*]] = phi i8* [ [[ARRAYIDX2]], [[DOTOMP_REDUCTION_CASE1]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT16:%.*]], [[OMP_ARRAYCPY_BODY]] ] 710*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP91:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], align 1 711*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV:%.*]] = sext i8 [[TMP91]] to i32 712*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP92:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1 713*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV13:%.*]] = sext i8 [[TMP92]] to i32 714*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ADD14:%.*]] = add nsw i32 [[CONV]], [[CONV13]] 715*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV15:%.*]] = trunc i32 [[ADD14]] to i8 716*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8 [[CONV15]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], align 1 717*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT16]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST12]], i32 1 718*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1 719*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DONE17:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT16]], [[TMP90]] 720*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_DONE17]], label [[OMP_ARRAYCPY_DONE18]], label [[OMP_ARRAYCPY_BODY]] 721*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arraycpy.done18: 722*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @__kmpc_end_reduce_nowait(%struct.ident_t* @[[GLOB2]], i32 [[TMP85]], [8 x i32]* @.gomp_critical_user_.reduction.var) 723*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br label [[DOTOMP_REDUCTION_DEFAULT]] 724*207b08a9SGiorgis Georgakoudis // CHECK2: .omp.reduction.case2: 725*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP93:%.*]] = load i32, i32* [[ARGC1]], align 4 726*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP94:%.*]] = atomicrmw add i32* [[TMP0]], i32 [[TMP93]] monotonic, align 4 727*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP95:%.*]] = getelementptr i8, i8* [[ARRAYIDX2]], i64 [[TMP11]] 728*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_ISEMPTY19:%.*]] = icmp eq i8* [[ARRAYIDX2]], [[TMP95]] 729*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_ISEMPTY19]], label [[OMP_ARRAYCPY_DONE32:%.*]], label [[OMP_ARRAYCPY_BODY20:%.*]] 730*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arraycpy.body20: 731*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_SRCELEMENTPAST21:%.*]] = phi i8* [ [[VLA]], [[DOTOMP_REDUCTION_CASE2]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT30:%.*]], [[ATOMIC_EXIT:%.*]] ] 732*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST22:%.*]] = phi i8* [ [[ARRAYIDX2]], [[DOTOMP_REDUCTION_CASE2]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT29:%.*]], [[ATOMIC_EXIT]] ] 733*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP96:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], align 1 734*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV23:%.*]] = sext i8 [[TMP96]] to i32 735*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ATOMIC_LOAD:%.*]] = load atomic i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]] monotonic, align 1 736*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br label [[ATOMIC_CONT:%.*]] 737*207b08a9SGiorgis Georgakoudis // CHECK2: atomic_cont: 738*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP97:%.*]] = phi i8 [ [[ATOMIC_LOAD]], [[OMP_ARRAYCPY_BODY20]] ], [ [[TMP102:%.*]], [[ATOMIC_CONT]] ] 739*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8 [[TMP97]], i8* [[_TMP24]], align 1 740*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP98:%.*]] = load i8, i8* [[_TMP24]], align 1 741*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV25:%.*]] = sext i8 [[TMP98]] to i32 742*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP99:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], align 1 743*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV26:%.*]] = sext i8 [[TMP99]] to i32 744*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ADD27:%.*]] = add nsw i32 [[CONV25]], [[CONV26]] 745*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV28:%.*]] = trunc i32 [[ADD27]] to i8 746*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8 [[CONV28]], i8* [[ATOMIC_TEMP]], align 1 747*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP100:%.*]] = load i8, i8* [[ATOMIC_TEMP]], align 1 748*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP101:%.*]] = cmpxchg i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]], i8 [[TMP97]], i8 [[TMP100]] monotonic monotonic, align 1 749*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP102]] = extractvalue { i8, i1 } [[TMP101]], 0 750*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP103:%.*]] = extractvalue { i8, i1 } [[TMP101]], 1 751*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[TMP103]], label [[ATOMIC_EXIT]], label [[ATOMIC_CONT]] 752*207b08a9SGiorgis Georgakoudis // CHECK2: atomic_exit: 753*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT29]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST22]], i32 1 754*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_SRC_ELEMENT30]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST21]], i32 1 755*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DONE31:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT29]], [[TMP95]] 756*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_DONE31]], label [[OMP_ARRAYCPY_DONE32]], label [[OMP_ARRAYCPY_BODY20]] 757*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arraycpy.done32: 758*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br label [[DOTOMP_REDUCTION_DEFAULT]] 759*207b08a9SGiorgis Georgakoudis // CHECK2: .omp.reduction.default: 760*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP104:%.*]] = load i8*, i8** [[SAVED_STACK]], align 8 761*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @llvm.stackrestore(i8* [[TMP104]]) 762*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret void 763*207b08a9SGiorgis Georgakoudis // 764*207b08a9SGiorgis Georgakoudis // 765*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@.red_init. 766*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (i8* noalias [[TMP0:%.*]], i8* noalias [[TMP1:%.*]]) #[[ATTR3:[0-9]+]] { 767*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 768*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 769*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 770*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 771*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 772*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8 773*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP3:%.*]] = bitcast i8* [[TMP2]] to i32* 774*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 0, i32* [[TMP3]], align 8 775*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret void 776*207b08a9SGiorgis Georgakoudis // 777*207b08a9SGiorgis Georgakoudis // 778*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@.red_comb. 779*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (i8* [[TMP0:%.*]], i8* [[TMP1:%.*]]) #[[ATTR3]] { 780*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 781*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 782*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 783*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 784*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 785*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8 786*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP3:%.*]] = bitcast i8* [[TMP2]] to i32* 787*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP4:%.*]] = load i8*, i8** [[DOTADDR1]], align 8 788*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP5:%.*]] = bitcast i8* [[TMP4]] to i32* 789*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP6:%.*]] = load i32, i32* [[TMP3]], align 8 790*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP7:%.*]] = load i32, i32* [[TMP5]], align 8 791*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ADD:%.*]] = add nsw i32 [[TMP6]], [[TMP7]] 792*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 [[ADD]], i32* [[TMP3]], align 8 793*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret void 794*207b08a9SGiorgis Georgakoudis // 795*207b08a9SGiorgis Georgakoudis // 796*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@.red_init..1 797*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (i8* noalias [[TMP0:%.*]], i8* noalias [[TMP1:%.*]]) #[[ATTR3]] { 798*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 799*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 800*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 801*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 802*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 803*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8 804*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP3:%.*]] = load i64, i64* @{{reduction_size[.].+[.]}}, align 8 805*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP4:%.*]] = getelementptr i8, i8* [[TMP2]], i64 [[TMP3]] 806*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYINIT_ISEMPTY:%.*]] = icmp eq i8* [[TMP2]], [[TMP4]] 807*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYINIT_ISEMPTY]], label [[OMP_ARRAYINIT_DONE:%.*]], label [[OMP_ARRAYINIT_BODY:%.*]] 808*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arrayinit.body: 809*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP2]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYINIT_BODY]] ] 810*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8 0, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 811*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1 812*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP4]] 813*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYINIT_DONE]], label [[OMP_ARRAYINIT_BODY]] 814*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arrayinit.done: 815*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret void 816*207b08a9SGiorgis Georgakoudis // 817*207b08a9SGiorgis Georgakoudis // 818*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@.red_comb..2 819*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (i8* [[TMP0:%.*]], i8* [[TMP1:%.*]]) #[[ATTR3]] { 820*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 821*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 822*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 823*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 824*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 825*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP2:%.*]] = load i64, i64* @{{reduction_size[.].+[.]}}, align 8 826*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP3:%.*]] = load i8*, i8** [[DOTADDR]], align 8 827*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP4:%.*]] = load i8*, i8** [[DOTADDR1]], align 8 828*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP5:%.*]] = getelementptr i8, i8* [[TMP3]], i64 [[TMP2]] 829*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[TMP3]], [[TMP5]] 830*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE4:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]] 831*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arraycpy.body: 832*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[TMP4]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 833*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP3]], [[ENTRY]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 834*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP6:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 835*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV:%.*]] = sext i8 [[TMP6]] to i32 836*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP7:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1 837*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV2:%.*]] = sext i8 [[TMP7]] to i32 838*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ADD:%.*]] = add nsw i32 [[CONV]], [[CONV2]] 839*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV3:%.*]] = trunc i32 [[ADD]] to i8 840*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8 [[CONV3]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 841*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1 842*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1 843*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP5]] 844*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYCPY_DONE4]], label [[OMP_ARRAYCPY_BODY]] 845*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arraycpy.done4: 846*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret void 847*207b08a9SGiorgis Georgakoudis // 848*207b08a9SGiorgis Georgakoudis // 849*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@.omp_task_privates_map. 850*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (%struct..kmp_privates.t* noalias [[TMP0:%.*]], i8*** noalias [[TMP1:%.*]]) #[[ATTR6:[0-9]+]] { 851*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 852*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR:%.*]] = alloca %struct..kmp_privates.t*, align 8 853*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR1:%.*]] = alloca i8***, align 8 854*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store %struct..kmp_privates.t* [[TMP0]], %struct..kmp_privates.t** [[DOTADDR]], align 8 855*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8*** [[TMP1]], i8**** [[DOTADDR1]], align 8 856*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP2:%.*]] = load %struct..kmp_privates.t*, %struct..kmp_privates.t** [[DOTADDR]], align 8 857*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP3:%.*]] = getelementptr inbounds [[STRUCT__KMP_PRIVATES_T:%.*]], %struct..kmp_privates.t* [[TMP2]], i32 0, i32 0 858*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP4:%.*]] = load i8***, i8**** [[DOTADDR1]], align 8 859*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8** [[TMP3]], i8*** [[TMP4]], align 8 860*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret void 861*207b08a9SGiorgis Georgakoudis // 862*207b08a9SGiorgis Georgakoudis // 863*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@.omp_task_entry. 864*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (i32 [[TMP0:%.*]], %struct.kmp_task_t_with_privates* noalias [[TMP1:%.*]]) #[[ATTR3]] { 865*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 866*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTGLOBAL_TID__ADDR_I:%.*]] = alloca i32, align 4 867*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTPART_ID__ADDR_I:%.*]] = alloca i32*, align 8 868*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTPRIVATES__ADDR_I:%.*]] = alloca i8*, align 8 869*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTCOPY_FN__ADDR_I:%.*]] = alloca void (i8*, ...)*, align 8 870*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTTASK_T__ADDR_I:%.*]] = alloca i8*, align 8 871*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[__CONTEXT_ADDR_I:%.*]] = alloca %struct.anon*, align 8 872*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTFIRSTPRIV_PTR_ADDR_I:%.*]] = alloca i8**, align 8 873*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP_I:%.*]] = alloca i8**, align 8 874*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP4_I:%.*]] = alloca i8*, align 8 875*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR:%.*]] = alloca i32, align 4 876*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR1:%.*]] = alloca %struct.kmp_task_t_with_privates*, align 8 877*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 [[TMP0]], i32* [[DOTADDR]], align 4 878*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store %struct.kmp_task_t_with_privates* [[TMP1]], %struct.kmp_task_t_with_privates** [[DOTADDR1]], align 8 879*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP2:%.*]] = load i32, i32* [[DOTADDR]], align 4 880*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP3:%.*]] = load %struct.kmp_task_t_with_privates*, %struct.kmp_task_t_with_privates** [[DOTADDR1]], align 8 881*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP4:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES:%.*]], %struct.kmp_task_t_with_privates* [[TMP3]], i32 0, i32 0 882*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP5:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T:%.*]], %struct.kmp_task_t* [[TMP4]], i32 0, i32 2 883*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP6:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T]], %struct.kmp_task_t* [[TMP4]], i32 0, i32 0 884*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP7:%.*]] = load i8*, i8** [[TMP6]], align 8 885*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP8:%.*]] = bitcast i8* [[TMP7]] to %struct.anon* 886*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP9:%.*]] = getelementptr inbounds [[STRUCT_KMP_TASK_T_WITH_PRIVATES]], %struct.kmp_task_t_with_privates* [[TMP3]], i32 0, i32 1 887*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP10:%.*]] = bitcast %struct..kmp_privates.t* [[TMP9]] to i8* 888*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP11:%.*]] = bitcast %struct.kmp_task_t_with_privates* [[TMP3]] to i8* 889*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @llvm.experimental.noalias.scope.decl(metadata [[META2:![0-9]+]]) 890*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @llvm.experimental.noalias.scope.decl(metadata [[META5:![0-9]+]]) 891*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @llvm.experimental.noalias.scope.decl(metadata [[META7:![0-9]+]]) 892*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void @llvm.experimental.noalias.scope.decl(metadata [[META9:![0-9]+]]) 893*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 [[TMP2]], i32* [[DOTGLOBAL_TID__ADDR_I]], align 4, !noalias !11 894*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32* [[TMP5]], i32** [[DOTPART_ID__ADDR_I]], align 8, !noalias !11 895*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP10]], i8** [[DOTPRIVATES__ADDR_I]], align 8, !noalias !11 896*207b08a9SGiorgis Georgakoudis // CHECK2-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 !11 897*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP11]], i8** [[DOTTASK_T__ADDR_I]], align 8, !noalias !11 898*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store %struct.anon* [[TMP8]], %struct.anon** [[__CONTEXT_ADDR_I]], align 8, !noalias !11 899*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP12:%.*]] = load %struct.anon*, %struct.anon** [[__CONTEXT_ADDR_I]], align 8, !noalias !11 900*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP13:%.*]] = load void (i8*, ...)*, void (i8*, ...)** [[DOTCOPY_FN__ADDR_I]], align 8, !noalias !11 901*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP14:%.*]] = load i8*, i8** [[DOTPRIVATES__ADDR_I]], align 8, !noalias !11 902*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP15:%.*]] = bitcast void (i8*, ...)* [[TMP13]] to void (i8*, i8***)* 903*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: call void [[TMP15]](i8* [[TMP14]], i8*** [[DOTFIRSTPRIV_PTR_ADDR_I]]) #[[ATTR5:[0-9]+]] 904*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP16:%.*]] = load i8**, i8*** [[DOTFIRSTPRIV_PTR_ADDR_I]], align 8, !noalias !11 905*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP17:%.*]] = getelementptr inbounds [[STRUCT_ANON:%.*]], %struct.anon* [[TMP12]], i32 0, i32 1 906*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP18:%.*]] = load i32*, i32** [[TMP17]], align 8 907*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP19:%.*]] = load i8*, i8** [[TMP16]], align 8 908*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP20:%.*]] = load i32, i32* [[DOTGLOBAL_TID__ADDR_I]], align 4, !noalias !11 909*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP21:%.*]] = bitcast i32* [[TMP18]] to i8* 910*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP22:%.*]] = call i8* @__kmpc_task_reduction_get_th_data(i32 [[TMP20]], i8* [[TMP19]], i8* [[TMP21]]) #[[ATTR5]] 911*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV_I:%.*]] = bitcast i8* [[TMP22]] to i32* 912*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP23:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2 913*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP24:%.*]] = load i8**, i8*** [[TMP23]], align 8 914*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP25:%.*]] = load i8*, i8** [[TMP24]], align 8 915*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP26:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 1 916*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP27:%.*]] = load i32*, i32** [[TMP26]], align 8 917*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP28:%.*]] = load i32, i32* [[TMP27]], align 4 918*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP29:%.*]] = sext i32 [[TMP28]] to i64 919*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[LB_ADD_LEN_I:%.*]] = add nsw i64 -1, [[TMP29]] 920*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP30:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2 921*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP31:%.*]] = load i8**, i8*** [[TMP30]], align 8 922*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX2_I:%.*]] = getelementptr inbounds i8*, i8** [[TMP31]], i64 9 923*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP32:%.*]] = load i8*, i8** [[ARRAYIDX2_I]], align 8 924*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ARRAYIDX3_I:%.*]] = getelementptr inbounds i8, i8* [[TMP32]], i64 [[LB_ADD_LEN_I]] 925*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP33:%.*]] = ptrtoint i8* [[ARRAYIDX3_I]] to i64 926*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP34:%.*]] = ptrtoint i8* [[TMP25]] to i64 927*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP35:%.*]] = sub i64 [[TMP33]], [[TMP34]] 928*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP36:%.*]] = sdiv exact i64 [[TMP35]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 929*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP37:%.*]] = add nuw i64 [[TMP36]], 1 930*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP38:%.*]] = mul nuw i64 [[TMP37]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 931*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i64 [[TMP37]], i64* @{{reduction_size[.].+[.]}}, align 8 932*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP39:%.*]] = load i8*, i8** [[TMP16]], align 8 933*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP40:%.*]] = call i8* @__kmpc_task_reduction_get_th_data(i32 [[TMP20]], i8* [[TMP39]], i8* [[TMP25]]) #[[ATTR5]] 934*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP41:%.*]] = getelementptr inbounds [[STRUCT_ANON]], %struct.anon* [[TMP12]], i32 0, i32 2 935*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP42:%.*]] = load i8**, i8*** [[TMP41]], align 8 936*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP43:%.*]] = load i8*, i8** [[TMP42]], align 8 937*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP44:%.*]] = ptrtoint i8* [[TMP43]] to i64 938*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP45:%.*]] = ptrtoint i8* [[TMP25]] to i64 939*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP46:%.*]] = sub i64 [[TMP44]], [[TMP45]] 940*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP47:%.*]] = sdiv exact i64 [[TMP46]], ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64) 941*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP48:%.*]] = getelementptr i8, i8* [[TMP40]], i64 [[TMP47]] 942*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8** [[TMP4_I]], i8*** [[TMP_I]], align 8, !noalias !11 943*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP48]], i8** [[TMP4_I]], align 8, !noalias !11 944*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret i32 0 945*207b08a9SGiorgis Georgakoudis // 946*207b08a9SGiorgis Georgakoudis // 947*207b08a9SGiorgis Georgakoudis // CHECK2-LABEL: define {{[^@]+}}@.omp.reduction.reduction_func 948*207b08a9SGiorgis Georgakoudis // CHECK2-SAME: (i8* [[TMP0:%.*]], i8* [[TMP1:%.*]]) #[[ATTR3]] { 949*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: entry: 950*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR:%.*]] = alloca i8*, align 8 951*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[DOTADDR1:%.*]] = alloca i8*, align 8 952*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP0]], i8** [[DOTADDR]], align 8 953*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8* [[TMP1]], i8** [[DOTADDR1]], align 8 954*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP2:%.*]] = load i8*, i8** [[DOTADDR]], align 8 955*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP3:%.*]] = bitcast i8* [[TMP2]] to [3 x i8*]* 956*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP4:%.*]] = load i8*, i8** [[DOTADDR1]], align 8 957*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP5:%.*]] = bitcast i8* [[TMP4]] to [3 x i8*]* 958*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP6:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP5]], i64 0, i64 0 959*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP7:%.*]] = load i8*, i8** [[TMP6]], align 8 960*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP8:%.*]] = bitcast i8* [[TMP7]] to i32* 961*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP9:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 0 962*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP10:%.*]] = load i8*, i8** [[TMP9]], align 8 963*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP11:%.*]] = bitcast i8* [[TMP10]] to i32* 964*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP12:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP5]], i64 0, i64 1 965*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP13:%.*]] = load i8*, i8** [[TMP12]], align 8 966*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP14:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 1 967*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP15:%.*]] = load i8*, i8** [[TMP14]], align 8 968*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP16:%.*]] = getelementptr inbounds [3 x i8*], [3 x i8*]* [[TMP3]], i64 0, i64 2 969*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP17:%.*]] = load i8*, i8** [[TMP16]], align 8 970*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP18:%.*]] = ptrtoint i8* [[TMP17]] to i64 971*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP19:%.*]] = load i32, i32* [[TMP11]], align 4 972*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP20:%.*]] = load i32, i32* [[TMP8]], align 4 973*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ADD:%.*]] = add nsw i32 [[TMP19]], [[TMP20]] 974*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i32 [[ADD]], i32* [[TMP11]], align 4 975*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP21:%.*]] = getelementptr i8, i8* [[TMP15]], i64 [[TMP18]] 976*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_ISEMPTY:%.*]] = icmp eq i8* [[TMP15]], [[TMP21]] 977*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_ISEMPTY]], label [[OMP_ARRAYCPY_DONE5:%.*]], label [[OMP_ARRAYCPY_BODY:%.*]] 978*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arraycpy.body: 979*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_SRCELEMENTPAST:%.*]] = phi i8* [ [[TMP13]], [[ENTRY:%.*]] ], [ [[OMP_ARRAYCPY_SRC_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 980*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DESTELEMENTPAST:%.*]] = phi i8* [ [[TMP15]], [[ENTRY]] ], [ [[OMP_ARRAYCPY_DEST_ELEMENT:%.*]], [[OMP_ARRAYCPY_BODY]] ] 981*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP22:%.*]] = load i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 982*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV:%.*]] = sext i8 [[TMP22]] to i32 983*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[TMP23:%.*]] = load i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], align 1 984*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV2:%.*]] = sext i8 [[TMP23]] to i32 985*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[ADD3:%.*]] = add nsw i32 [[CONV]], [[CONV2]] 986*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[CONV4:%.*]] = trunc i32 [[ADD3]] to i8 987*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: store i8 [[CONV4]], i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], align 1 988*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DEST_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_DESTELEMENTPAST]], i32 1 989*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_SRC_ELEMENT]] = getelementptr i8, i8* [[OMP_ARRAYCPY_SRCELEMENTPAST]], i32 1 990*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: [[OMP_ARRAYCPY_DONE:%.*]] = icmp eq i8* [[OMP_ARRAYCPY_DEST_ELEMENT]], [[TMP21]] 991*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: br i1 [[OMP_ARRAYCPY_DONE]], label [[OMP_ARRAYCPY_DONE5]], label [[OMP_ARRAYCPY_BODY]] 992*207b08a9SGiorgis Georgakoudis // CHECK2: omp.arraycpy.done5: 993*207b08a9SGiorgis Georgakoudis // CHECK2-NEXT: ret void 994*207b08a9SGiorgis Georgakoudis // 995*207b08a9SGiorgis Georgakoudis // 996*207b08a9SGiorgis Georgakoudis // CHECK3-LABEL: define {{[^@]+}}@main 997*207b08a9SGiorgis Georgakoudis // CHECK3-SAME: (i32 [[ARGC:%.*]], i8** [[ARGV:%.*]]) #[[ATTR0:[0-9]+]] { 998*207b08a9SGiorgis Georgakoudis // CHECK3-NEXT: entry: 999*207b08a9SGiorgis Georgakoudis // CHECK3-NEXT: [[ARGC_ADDR:%.*]] = alloca i32, align 4 1000*207b08a9SGiorgis Georgakoudis // CHECK3-NEXT: [[ARGV_ADDR:%.*]] = alloca i8**, align 8 1001*207b08a9SGiorgis Georgakoudis // CHECK3-NEXT: store i32 [[ARGC]], i32* [[ARGC_ADDR]], align 4 1002*207b08a9SGiorgis Georgakoudis // CHECK3-NEXT: store i8** [[ARGV]], i8*** [[ARGV_ADDR]], align 8 1003*207b08a9SGiorgis Georgakoudis // CHECK3-NEXT: ret i32 0 1004*207b08a9SGiorgis Georgakoudis // 1005*207b08a9SGiorgis Georgakoudis // 1006*207b08a9SGiorgis Georgakoudis // CHECK4-LABEL: define {{[^@]+}}@main 1007*207b08a9SGiorgis Georgakoudis // CHECK4-SAME: (i32 [[ARGC:%.*]], i8** [[ARGV:%.*]]) #[[ATTR0:[0-9]+]] !dbg [[DBG6:![0-9]+]] { 1008*207b08a9SGiorgis Georgakoudis // CHECK4-NEXT: entry: 1009*207b08a9SGiorgis Georgakoudis // CHECK4-NEXT: [[ARGC_ADDR:%.*]] = alloca i32, align 4 1010*207b08a9SGiorgis Georgakoudis // CHECK4-NEXT: [[ARGV_ADDR:%.*]] = alloca i8**, align 8 1011*207b08a9SGiorgis Georgakoudis // CHECK4-NEXT: store i32 [[ARGC]], i32* [[ARGC_ADDR]], align 4 1012*207b08a9SGiorgis Georgakoudis // CHECK4-NEXT: call void @llvm.dbg.declare(metadata i32* [[ARGC_ADDR]], metadata [[META14:![0-9]+]], metadata !DIExpression()), !dbg [[DBG15:![0-9]+]] 1013*207b08a9SGiorgis Georgakoudis // CHECK4-NEXT: store i8** [[ARGV]], i8*** [[ARGV_ADDR]], align 8 1014*207b08a9SGiorgis Georgakoudis // CHECK4-NEXT: call void @llvm.dbg.declare(metadata i8*** [[ARGV_ADDR]], metadata [[META16:![0-9]+]], metadata !DIExpression()), !dbg [[DBG17:![0-9]+]] 1015*207b08a9SGiorgis Georgakoudis // CHECK4-NEXT: ret i32 0, !dbg [[DBG18:![0-9]+]] 1016*207b08a9SGiorgis Georgakoudis // 1017