mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-12 02:36:05 +00:00

Implemented codegen for the iterator expression in the depend clauses. Iterator construct is emitted the following way: iterator(cnt1, cnt2, ...), in : <dep> <TotalNumDeps> = <cnt1_size> * <cnt2_size> * ...; kmp_depend_t deps[<TotalNumDeps>]; deps_counter = 0; for (cnt1) { for (cnt2) { ... deps[deps_counter].base_addr = &<dep>; deps[deps_counter].size = sizeof(<dep>); deps[deps_counter].flags = in; deps_counter += 1; ... } } For depobj construct the codegen is very similar, but the memory is allocated dynamically and added extra first item reserved for internal use.
56 lines
2.1 KiB
C++
56 lines
2.1 KiB
C++
// RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=50 -ast-print %s | FileCheck %s
|
|
// RUN: %clang_cc1 -fopenmp -fopenmp-version=50 -x c++ -std=c++11 -emit-pch -o %t %s
|
|
// RUN: %clang_cc1 -fopenmp -fopenmp-version=50 -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-simd -fopenmp-version=50 -ast-print %s | FileCheck %s
|
|
// RUN: %clang_cc1 -fopenmp-simd -fopenmp-version=50 -x c++ -std=c++11 -emit-pch -o %t %s
|
|
// RUN: %clang_cc1 -fopenmp-simd -fopenmp-version=50 -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
|
|
// expected-no-diagnostics
|
|
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
|
|
typedef void *omp_depend_t;
|
|
|
|
void foo() {}
|
|
|
|
template <class T>
|
|
T tmain(T argc) {
|
|
static T a;
|
|
int *b;
|
|
#pragma omp depobj(a) depend(in:argc, ([4][*b][4])b)
|
|
#pragma omp depobj(a) depend(iterator(i=0:*b), in: b[i])
|
|
#pragma omp depobj(argc) destroy
|
|
#pragma omp depobj(argc) update(inout)
|
|
return argc;
|
|
}
|
|
// CHECK: static T a;
|
|
// CHECK-NEXT: int *b;
|
|
// CHECK-NEXT: #pragma omp depobj (a) depend(in : argc,([4][*b][4])b){{$}}
|
|
// CHECK-NEXT: #pragma omp depobj (a) depend(iterator(int i = 0:*b), in : b[i]){{$}}
|
|
// CHECK-NEXT: #pragma omp depobj (argc) destroy{{$}}
|
|
// CHECK-NEXT: #pragma omp depobj (argc) update(inout){{$}}
|
|
// CHECK: static void *a;
|
|
// CHECK-NEXT: int *b;
|
|
// CHECK-NEXT: #pragma omp depobj (a) depend(in : argc,([4][*b][4])b){{$}}
|
|
// CHECK-NEXT: #pragma omp depobj (a) depend(iterator(int i = 0:*b), in : b[i]){{$}}
|
|
// CHECK-NEXT: #pragma omp depobj (argc) destroy{{$}}
|
|
// CHECK-NEXT: #pragma omp depobj (argc) update(inout){{$}}
|
|
|
|
int main(int argc, char **argv) {
|
|
static omp_depend_t a;
|
|
omp_depend_t b;
|
|
// CHECK: static omp_depend_t a;
|
|
// CHECK-NEXT: omp_depend_t b;
|
|
#pragma omp depobj(a) depend(out:argc, argv)
|
|
#pragma omp depobj(b) destroy
|
|
#pragma omp depobj(b) update(mutexinoutset)
|
|
// CHECK-NEXT: #pragma omp depobj (a) depend(out : argc,argv)
|
|
// CHECK-NEXT: #pragma omp depobj (b) destroy
|
|
// CHECK-NEXT: #pragma omp depobj (b) update(mutexinoutset)
|
|
(void)tmain(a), tmain(b);
|
|
return 0;
|
|
}
|
|
|
|
#endif
|