summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse/ParseOpenMP.cpp
Commit message (Expand)AuthorAgeFilesLines
* [OPENMP 4.0] Support for 'linear' clause in 'declare simd' directive.Alexey Bataev2016-04-121-13/+27
* [OPENMP 4.0] Support for 'aligned' clause in 'declare simd' directive.Alexey Bataev2016-04-121-60/+77
* [OPENMP 4.0] Support for 'uniform' clause in 'declare simd' directive.Alexey Bataev2016-04-121-130/+139
* Remove redundant conditions of the form (A || (!A && B)) -> (A || B)Benjamin Kramer2016-04-111-2/+1
* [OPENMP 4.0] Parsing/sema analysis for 'simdlen' clause in 'declare simd'Alexey Bataev2016-04-071-39/+140
* [OPENMP] Parsing and Sema support for 'omp declare target' directiveDmitry Polukhin2016-04-061-0/+56
* [OPENMP 4.0] Support for 'inbranch|noinbranch' clauses in 'declareAlexey Bataev2016-04-041-6/+41
* Revert "[OPENMP] Allow skip expression after comma in clauses with lists."Alexey Bataev2016-04-011-5/+4
* [OPENMP] Allow skip expression after comma in clauses with lists.Alexey Bataev2016-03-311-4/+5
* [OPENMP 4.0] Initial support for '#pragma omp declare simd' directive.Alexey Bataev2016-03-301-2/+55
* [OPENMP 4.0] Use 'declare reduction' constructs in 'reduction' clauses.Alexey Bataev2016-03-171-5/+16
* [OPENMP 4.0] Initial support for 'omp declare reduction' construct.Alexey Bataev2016-03-031-4/+260
* [OpenMP] Fix parsing of delete map clause modifier in C++ mode.Samuel Antao2016-02-271-8/+16
* [OPENMP] NFC rewrite ParseOpenMPDirectiveKindDmitry Polukhin2016-02-131-58/+64
* [OpenMP] Parsing + sema for target parallel for directive.Arpith Chacko Jacob2016-02-031-3/+6
* [OpenMP] Parsing + sema for target parallel directive.Arpith Chacko Jacob2016-01-261-2/+6
* [OpenMP] Parsing + sema for defaultmap clause.Arpith Chacko Jacob2016-01-261-0/+26
* [OpenMP] Update map clause SEMA to support OpenMP 4.5 possible list items.Samuel Antao2016-01-221-6/+5
* [OpenMP] Detect implicit map type to report unspecified map type for target e...Samuel Antao2016-01-191-2/+7
* [OpenMP] Parsing + sema for "target exit data" directive.Samuel Antao2016-01-191-4/+12
* [OpenMP] Parsing + sema for "target enter data" directive.Samuel Antao2016-01-191-5/+14
* OpaquePtr: Use nullptr construction for ParsedType OpaquePtr typedefDavid Blaikie2016-01-151-4/+4
* 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-2/+13
* [OPENMP] Fix for declarative/standalone directives use.Alexey Bataev2016-01-131-4/+8
* Silence enumeral and non-enumeral type in conditional expression warning; NFC.Aaron Ballman2015-12-281-1/+1
* [OPENMP 4.5] Sema/parsing support for extended format of 'schedule' clause.Alexey Bataev2015-12-281-10/+47
* [OPENMP 4.5] Parsing/sema analysis for 'depend(source)' clause in 'ordered' d...Alexey Bataev2015-12-181-5/+30
* [OPENMP 4.5] Parsing/sema for 'hint' clause of 'critical' directive.Alexey Bataev2015-12-151-2/+6
* Add parse and sema of OpenMP distribute directive with all clauses except dis...Carlo Bertolli2015-12-141-2/+5
* Revert r255001, "Add parse and sema for OpenMP distribute directive and all i...NAKAMURA Takumi2015-12-091-5/+2
* [OPENMP 4.5] Parsing/sema for 'num_tasks' clause.Alexey Bataev2015-12-081-2/+8
* Add parse and sema for OpenMP distribute directive and all its clauses exclud...Carlo Bertolli2015-12-081-2/+5
* [OPENMP 4.5] parsing/sema support for 'grainsize' clause.Alexey Bataev2015-12-071-2/+9
* [OPENMP 4.5] parsing/sema support for 'nogroup' clause.Alexey Bataev2015-12-071-1/+5
* [OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive.Alexey Bataev2015-12-031-3/+6
* [OPENMP 4.5] Parsing/sema analysis for 'priority' clause.Alexey Bataev2015-12-011-3/+9
* [OPENMP 4.5] Parsing/sema analysis for 'taskloop' directive.Alexey Bataev2015-12-011-1/+3
* [OpenMP] Parsing and sema support for thread_limit clause.Kelvin Li2015-11-271-1/+4
* [OpenMP] Parsing and sema support for num_teams clauseKelvin Li2015-11-241-1/+4
* [OpenMP] Parsing and sema support for map clauseKelvin Li2015-11-231-8/+81
* [OPENMP 4.1] Add 'simd' clause for 'ordered' directive.Alexey Bataev2015-09-281-1/+5
* [OPENMP 4.1] Add 'threads' clause for '#pragma omp ordered'.Alexey Bataev2015-09-251-1/+5
* [OPENMP 4.1] Parsing/sema analysis for extended format of 'if' clause.Alexey Bataev2015-09-031-40/+59
* [OPENMP 4.1] Initial support for 'simdlen' clause.Alexey Bataev2015-08-211-3/+9
* [OPENMP 4.1] Allow to use 'uval' and 'ref' modifiers for reference types only.Alexey Bataev2015-08-201-2/+1
* [OPENMP 4.1] Initial support for modifiers in 'linear' clause.Alexey Bataev2015-08-201-4/+28
* This patch commits OpenMP 4 target device clausesMichael Wong2015-08-071-1/+4
* [OPENMP 4.1] Initial support for extended 'ordered' clause.Alexey Bataev2015-07-301-2/+5
* [OpenMP] Make target data directive generate unexpected directive diagnostic.Samuel Antao2015-07-221-2/+1
OpenPOWER on IntegriCloud