summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaOpenMP.cpp
Commit message (Expand)AuthorAgeFilesLines
* [OPENMP 4.0] Fixed support of array sections/array subscripts.Alexey Bataev2016-02-041-5/+10
* [OpenMP] Parsing + sema for target parallel for directive.Arpith Chacko Jacob2016-02-031-2/+159
* Reduce initial Sema memory consumption by 400KB. By Elisavet Sakellari.Axel Naumann2016-02-031-1/+1
* [OPENMP 4.0] Allow to use 'omp simd' directive inside other simd-regions.Alexey Bataev2016-02-021-5/+6
* [OpenMP] Prevent nesting of target constructs within target code execution re...Arpith Chacko Jacob2016-02-021-13/+35
* Undoing commit r259366 to debug buildbot failure.Arpith Chacko Jacob2016-02-011-37/+13
* [OpenMP] Prevent nesting of target constructs within target code execution re...Arpith Chacko Jacob2016-02-011-13/+37
* [OpenMP] Parsing + sema for target parallel directive.Arpith Chacko Jacob2016-01-261-2/+86
* [OpenMP] Parsing + sema for defaultmap clause.Arpith Chacko Jacob2016-01-261-0/+41
* [OPENMP 4.5] Allow arrays in 'reduction' clause.Alexey Bataev2016-01-261-17/+7
* SemaOpenMP.cpp: Fix a warning in r258543. [-Wunused-variable]NAKAMURA Takumi2016-01-231-0/+1
* [OpenMP] Update map clause SEMA to support OpenMP 4.5 possible list items.Samuel Antao2016-01-221-97/+467
* [OpenMP] Check for at least one map clause on target data directive.Arpith Chacko Jacob2016-01-211-0/+8
* [OPENMP 4.5] Allow to use non-static data members in non-static member functi...Alexey Bataev2016-01-201-136/+215
* [OpenMP] Detect implicit map type to report unspecified map type for target e...Samuel Antao2016-01-191-15/+18
* [OpenMP] Parsing + sema for "target exit data" directive.Samuel Antao2016-01-191-0/+78
* [OpenMP] Parsing + sema for "target enter data" directive.Samuel Antao2016-01-191-3/+93
* Activate OpenMP private clause for target construct and a regression test.Carlo Bertolli2016-01-191-1/+1
* OpaquePtr: Use nullptr construction for DeclGroupPtrTy OpaquePtr typedefDavid Blaikie2016-01-151-1/+1
* Add OpenMP dist_schedule clause to distribute directive and related regressio...Carlo Bertolli2016-01-151-0/+61
* [OPENMP 4.5] Allow 'ordered' clause on 'loop simd' constructs.Alexey Bataev2015-12-301-0/+7
* [OPENMP 4.5] Sema/parsing support for extended format of 'schedule' clause.Alexey Bataev2015-12-281-92/+135
* [OPENMP 4.5] Do not allow 'linear' clause along with 'ordered(expr)' clause.Alexey Bataev2015-12-281-0/+15
* [OPENMP] Do not allow to use threadprivate or thread local variables as loop ...Alexey Bataev2015-12-251-6/+4
* [OPENMP 4.5] Parsing/sema for 'depend(sink:vec)' clause in 'ordered' directive.Alexey Bataev2015-12-231-58/+193
* [OPENMP] Revert r256238 to fix the problem with tests on Linux.Alexey Bataev2015-12-221-181/+43
* [OPENMP 4.5] Parsing/sema for 'depend(sink:vec)' clause in 'ordered' directive.Alexey Bataev2015-12-221-43/+181
* [OPENMP 4.5] Parsing/sema analysis for 'depend(source)' clause in 'ordered' d...Alexey Bataev2015-12-181-23/+58
* [OPENMP] Fix for http://llvm.org/PR25142: openmp: Assertion failed: DD && "qu...Alexey Bataev2015-12-171-0/+6
* [OPENMP 4.5] Parsing/sema for 'hint' clause of 'critical' directive.Alexey Bataev2015-12-151-9/+84
* Add parse and sema of OpenMP distribute directive with all clauses except dis...Carlo Bertolli2015-12-141-9/+164
* [OPENMP] Fixed processing of predetermined data-sharing attributesAlexey Bataev2015-12-101-33/+17
* Revert r255001, "Add parse and sema for OpenMP distribute directive and all i...NAKAMURA Takumi2015-12-091-164/+9
* [OPENMP 4.5] Parsing/sema for 'num_tasks' clause.Alexey Bataev2015-12-081-0/+60
* Add parse and sema for OpenMP distribute directive and all its clauses exclud...Carlo Bertolli2015-12-081-9/+164
* [OPENMP 4.5] parsing/sema support for 'grainsize' clause.Alexey Bataev2015-12-071-0/+23
* [OPENMP 4.5] parsing/sema support for 'nogroup' clause.Alexey Bataev2015-12-071-0/+12
* [OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive.Alexey Bataev2015-12-031-12/+97
* [OpenMP] Update target directive codegen to use 4.5 implicit data mappings.Samuel Antao2015-12-021-1/+104
* [OPENMP 4.5] Parsing/sema analysis for 'priority' clause.Alexey Bataev2015-12-011-9/+39
* [OPENMP 4.5] Parsing/sema analysis for 'taskloop' directive.Alexey Bataev2015-12-011-12/+102
* [OpenMP] Parsing and sema support for thread_limit clause.Kelvin Li2015-11-271-51/+58
* [OPENMP 4.5] Fixed rules for 'ordered' clause.Alexey Bataev2015-11-261-10/+16
* [OpenMP] Parsing and sema support for num_teams clauseKelvin Li2015-11-241-0/+33
* [OpenMP] Parsing and sema support for map clauseKelvin Li2015-11-231-4/+222
* [coroutines] Add overloaded unary 'operator co_await'.Richard Smith2015-10-221-0/+1
* Roll-back r250822.Angel Garcia Gomez2015-10-201-1/+1
* Apply modernize-use-default to clang.Angel Garcia Gomez2015-10-201-1/+1
* [OPENMP 4.1] Codegen for array sections/subscripts in 'reduction' clause.Alexey Bataev2015-10-081-55/+88
* SourceRanges are small and trivially copyable, don't them by reference.Craig Topper2015-10-041-3/+2
OpenPOWER on IntegriCloud