[all-commits] [llvm/llvm-project] 8d7b11: [OPENMP50]Add codegen for update clause in depobj ...
Alexey Bataev via All-commits
all-commits at lists.llvm.org
Thu Mar 5 11:47:46 PST 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: 8d7b1188751b9fcc3345e80fb48a2bc00b7c315f
https://github.com/llvm/llvm-project/commit/8d7b1188751b9fcc3345e80fb48a2bc00b7c315f
Author: Alexey Bataev <a.bataev at hotmail.com>
Date: 2020-03-05 (Thu, 05 Mar 2020)
Changed paths:
M clang/lib/CodeGen/CGOpenMPRuntime.cpp
M clang/lib/CodeGen/CGOpenMPRuntime.h
M clang/lib/CodeGen/CGStmtOpenMP.cpp
M clang/test/OpenMP/depobj_codegen.cpp
Log Message:
-----------
[OPENMP50]Add codegen for update clause in depobj directive.
Added codegen for update clause in depobj. Reads the number of the
elements from the first element and updates flags for each element in
the loop.
```
omp_depend_t x;
kmp_depend_info *base = (kmp_depend_info *)x;
intptr_t num = x[-1].base_addr;
kmp_depend_info *end = x + num;
kmp_depend_info *el = base;
do {
el.flags = new_flag;
el = &el[1];
} while (el != end);
```
More information about the All-commits
mailing list