summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/Stmt.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* [OPENMP] Initial parsing and sema analysis for 'ordered' directive.Alexey Bataev2014-07-221-0/+20
| | | | llvm-svn: 213616
* [OPENMP] Initial parsing and sema analysis for 'flush' directive.Alexey Bataev2014-07-211-0/+43
| | | | llvm-svn: 213512
* [OPENMP] Parsing/Sema of the OpenMP directive 'critical'.Alexander Musman2014-07-211-0/+20
| | | | llvm-svn: 213510
* [MS-ABI] Assign SEH handler indices to __try blocksWarren Hunt2014-07-191-12/+10
| | | | | | | | | Assigns indices to try blocks. These indices will used in constructing tables that the mscrt function __except_handler3 reads during SEH. Testing will occur once we actually emit the tables, in a subsequent patch. llvm-svn: 213437
* [OPENMP] Initial parsing and sema analysis for 'taskwait' directive.Alexey Bataev2014-07-181-0/+14
| | | | llvm-svn: 213363
* [OPENMP] Initial parsing and sema analysis for 'barrier' directive.Alexey Bataev2014-07-181-0/+14
| | | | llvm-svn: 213360
* [OPENMP] Initial parsing and sema analysis of 'taskyield' directive.Alexey Bataev2014-07-181-0/+15
| | | | llvm-svn: 213355
* [OPENMP] Parsing/Sema analysis of directive 'master'Alexander Musman2014-07-171-0/+20
| | | | llvm-svn: 213237
* [OPENMP] Parsing and sema analysis for 'omp task' directive.Alexey Bataev2014-07-111-0/+26
| | | | llvm-svn: 212804
* [OPENMP] Parsing and sema analysis for 'omp parallel sections' directive.Alexey Bataev2014-07-081-0/+24
| | | | llvm-svn: 212516
* [OPENMP] Added initial support for 'omp parallel for'.Alexey Bataev2014-07-071-0/+26
| | | | llvm-svn: 212453
* [OPENMP] Parsing and sema analysis for 'copyprivate' clause.Alexey Bataev2014-06-271-0/+22
| | | | llvm-svn: 211886
* [OPENMP] Initial parsing and sema analysis for 'single' directive.Alexey Bataev2014-06-261-0/+26
| | | | llvm-svn: 211774
* [OPENMP] Initial parsing and sema analysis for 'section' directive.Alexey Bataev2014-06-261-0/+20
| | | | llvm-svn: 211767
* [OPENMP] Initial support for 'sections' directive.Alexey Bataev2014-06-251-0/+24
| | | | llvm-svn: 211685
* [OPENMP] OMPSimdDirective and OMPForDirective: added initialization for ↵Alexey Bataev2014-06-251-17/+15
| | | | | | CollapsedNum member. llvm-svn: 211672
* [OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with ↵Alexey Bataev2014-06-181-0/+27
| | | | | | MSVC). llvm-svn: 211140
* Revert "[OPENMP] Initial support for '#pragma omp for'."Rafael Espindola2014-06-171-27/+0
| | | | | | | | This reverts commit r211096. Looks like it broke the msvc build: SemaOpenMP.cpp(140) : error C4519: default template arguments are only allowed on a class template llvm-svn: 211113
* [OPENMP] Initial support for '#pragma omp for'.Alexey Bataev2014-06-171-0/+27
| | | | llvm-svn: 211096
* [OPENMP] Initial support of 'reduction' clauseAlexey Bataev2014-06-161-0/+21
| | | | llvm-svn: 211007
* [OPENMP] Parsing/Sema for OMPLasprivateClause.Alexander Musman2014-06-041-0/+22
| | | | | | Parsing this clause, allowing it on directive ‘omp simd’ and semantic checks. llvm-svn: 210184
* Parsing/Sema for OMPAlignedClause.Alexander Musman2014-05-291-0/+22
| | | | llvm-svn: 209816
* No longer triggering a checked iterator assert on Windows when using ↵Aaron Ballman2014-05-131-4/+3
| | | | | | std::copy while deserializing attributed statements with more than one attribute. llvm-svn: 208702
* [C++11] Use 'nullptr'. AST edition.Craig Topper2014-05-121-20/+19
| | | | llvm-svn: 208517
* [OPENMP] parsing 'linear' clause (for directive 'omp simd')Alexander Musman2014-04-221-0/+24
| | | | | | Differential Revision: http://reviews.llvm.org/D3272 llvm-svn: 206891
* [OPENMP] Implemented 'copyin' clauseAlexey Bataev2014-03-311-0/+22
| | | | llvm-svn: 205164
* [OPENMP] OMPExecutableDirective re-factoringAlexander Musman2014-03-271-2/+2
| | | | | | | | Store the number of clauses and children of OMPExecutableDirective and dynamically compute the locations of corresponding arrays. http://llvm-reviews.chandlerc.com/D2977 llvm-svn: 204933
* [C++11] Replacing CapturedStmt iterators capture_begin() and capture_end() ↵Aaron Ballman2014-03-141-4/+3
| | | | | | with iterator_range captures(). Updating all of the usages of the iterators with range-based for loops. llvm-svn: 203953
* "&&&" != "&&"Richard Trieu2014-02-271-1/+1
| | | | llvm-svn: 202444
* [OPENMP] First changes for Parsing and Sema for 'omp simd' directive supportAlexey Bataev2014-02-271-3/+32
| | | | llvm-svn: 202360
* Fix for Bug 18536 - Bad alignment in clang/AST/StmpOpenMP.hAlexey Bataev2014-02-251-19/+25
| | | | llvm-svn: 202141
* [OpenMP] Added parsing and semantic analysis for firstprivate clauseAlexey Bataev2013-10-011-0/+23
| | | | llvm-svn: 191730
* Add unused markings to suppress warnings.Eli Friedman2013-09-101-3/+7
| | | | | | | | | | trunk clang is a bit more aggressive about emitting unused-declaration warnings, so adjust some AST code to match. Specifically, use LLVM_ATTRIBUTE_UNUSED for declarations which are never supposed to be referenced, and turn references to declarations which are supposed to be referenced into odr-uses. llvm-svn: 190443
* OpenMP: Data-sharing attributes analysis and clause 'shared' (fixed test ↵Alexey Bataev2013-09-061-0/+30
| | | | | | threadprivate_messages.cpp) llvm-svn: 190183
* Remove useless reinterpret_casts from Stmt.cppPavel Labath2013-09-031-9/+9
| | | | | | | | | | | | | | Summary: I have no idea why these were there in the first place, but now they are certainly not necessary. Reviewers: rsmith CC: cfe-commits Differential Revision: http://llvm-reviews.chandlerc.com/D1581 llvm-svn: 189813
* Revert "OpenMP: Data-sharing attributes analysis and clause 'shared'"Rafael Espindola2013-09-031-30/+0
| | | | | | | | This reverts commit r189795. threadprivate_messages.cpp is faling on windows. llvm-svn: 189811
* OpenMP: Data-sharing attributes analysis and clause 'shared'Alexey Bataev2013-09-031-0/+30
| | | | llvm-svn: 189795
* Constify some more ASTContext& uses.Craig Topper2013-08-221-13/+14
| | | | llvm-svn: 188989
* Constify the ASTContext& passed to Stmt creation functions. Also constify ↵Craig Topper2013-08-221-43/+38
| | | | | | the context in couple other functions that are called from creation functions. llvm-svn: 188986
* Revert accidental commit.Craig Topper2013-08-211-56/+59
| | | | llvm-svn: 188862
* Replace avx-512 with avx512f to match llvm side and what gcc patches appear ↵Craig Topper2013-08-211-59/+56
| | | | | | to be using. llvm-svn: 188860
* Revert r188756 because some other changes snuck in with it.Craig Topper2013-08-201-56/+59
| | | | llvm-svn: 188757
* Add AVX-512 feature flag and knl cpu to clang.Craig Topper2013-08-201-59/+56
| | | | llvm-svn: 188756
* Make the version of Stmt::operator new that takes ASTContext* call the ↵Craig Topper2013-08-191-5/+0
| | | | | | ASTContext& version in Stmt inline instead of having two out of line functions that both call to the global versions. llvm-svn: 188648
* Revert r188644 to unbreak buildbots.Craig Topper2013-08-181-0/+5
| | | | llvm-svn: 188645
* Remove Stmt::operator new that takes a ASTContext*. All callers use the ↵Craig Topper2013-08-181-5/+0
| | | | | | ASTContext& version. llvm-svn: 188644
* Remove throw() from Stmt::operator new so the compiler will omit the null ↵Craig Topper2013-08-181-2/+2
| | | | | | check on the result since ASTContext allocator won't return null. llvm-svn: 188641
* Make expression allocation methods use a 'const' reference to the ASTContext ↵Craig Topper2013-08-181-2/+2
| | | | | | since the underlying operator new only needs a const reference. llvm-svn: 188636
* OpenMP: basic support for #pragma omp parallelAlexey Bataev2013-07-191-0/+52
| | | | llvm-svn: 186647
* Delete dead code.Eli Friedman2013-06-271-22/+0
| | | | llvm-svn: 185101
OpenPOWER on IntegriCloud