summaryrefslogtreecommitdiffstats
path: root/clang/test/OpenMP/task_in_reduction_codegen.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [OPENMP]Add codegen for task reduction vars with allocate clause, NFC.Alexey Bataev2019-04-041-1/+11
| | | | | | Added test for the task reduction variables with the allocate clause. llvm-svn: 357717
* [OPENMP] General code improvements.Alexey Bataev2018-04-161-7/+7
| | | | llvm-svn: 330140
* [OPENMP] Emit sizes/init ptrs etc. data for task reductions beforeAlexey Bataev2018-03-081-0/+2
| | | | | | | | | | | using. We may emit the code in wrong order because of incorrect implementation of the runtime functions for task reductions. Threadprivate storages may be initialized after real initialization of the reduction items. Patch fixes this problem. llvm-svn: 327008
* [OPENMP] Support for -fopenmp-simd option with compilation of simd loopsAlexey Bataev2017-12-291-0/+5
| | | | | | | | | only. Added support for -fopenmp-simd option that allows compilation of simd-based constructs without emission of OpenMP runtime calls. llvm-svn: 321560
* [OPENMP] Codegen for 'in_reduction' clause.Alexey Bataev2017-07-271-0/+81
Added codegen for task-based directive with in_reduction clause. ``` <body> ``` The next code is emitted: ``` void *td; ... td = call i8* @__kmpc_task_reduction_init(); ... <type> *priv = (<type> *)call i8* @__kmpc_task_reduction_get_th_data(i32 GTID, i8* td, i8* <orig>) ``` llvm-svn: 309270
OpenPOWER on IntegriCloud