summaryrefslogtreecommitdiffstats
path: root/lib/AST/Stmt.cpp
Commit message (Expand)AuthorAgeFilesLines
* [OPENMP] Check DSA for variables captured by value.Alexey Bataev2017-05-151-1/+1
* Spelling mistakes in comments. NFCI. (PR27635)Simon Pilgrim2017-03-301-1/+1
* [x86][inline-asm] Add support for curly brackets escape using "%" in extended...Michael Zuckerman2016-10-311-7/+9
* Retire llvm::alignOf in favor of C++11 alignof.Benjamin Kramer2016-10-201-5/+5
* [ObjC] Warn on unguarded use of partial declarationErik Pilkington2016-08-161-0/+4
* P0305R0: Semantic analysis and code generation for C++17 init-statement for '...Richard Smith2016-07-141-3/+6
* Implement p0292r2 (constexpr if), a likely C++1z feature.Richard Smith2016-06-231-4/+5
* Avoid O(n^2) string analysis when handling GNU __asm__ statements.Richard Smith2016-05-161-8/+15
* Update for LLVM function name change.Rui Ueyama2016-01-141-4/+3
* [ptr-traits] Move methods manipulating PointerUnions, DenseMap pointerChandler Carruth2015-12-301-0/+34
* Use std::copy and std::transform instead of manual loops. NFCCraig Topper2015-12-051-17/+16
* [AST] ArrayRef-ize CompoundStmt::setStmts.Craig Topper2015-12-041-6/+7
* [OpenMP] Update target directive codegen to use 4.5 implicit data mappings.Samuel Antao2015-12-021-0/+27
* Move functions declared in Stmt{ObjC,CXX}.h and OpenMPClause.h intoJames Y Knight2015-10-021-1258/+0
* [OPENMP 4.1] Add 'threads' clause for '#pragma omp ordered'.Alexey Bataev2015-09-251-6/+12
* [OPENMP 4.0] Add 'if' clause for 'cancel' directive.Alexey Bataev2015-09-181-6/+11
* [OPENMP] Emit __kmpc_cancel_barrier() and code for 'cancellation point' only ...Alexey Bataev2015-09-151-15/+19
* [OpenMP] Make the filetered clause iterator a real iterator and type safe.Benjamin Kramer2015-08-301-12/+0
* [OPENMP 4.0] Initial support for array sections.Alexey Bataev2015-08-251-0/+1
* [OPENMP 4.1] Initial support for modifiers in 'linear' clause.Alexey Bataev2015-08-201-2/+3
* [OPENMP 4.1] Allow variables with reference types in private clauses.Alexey Bataev2015-08-181-8/+14
* [OPENMP] Fix for http://llvm.org/PR24371: Assert failure compiling blender 2.75.Alexey Bataev2015-08-141-0/+11
* [OPENMP 4.1] Allow references in init expression for loop-based constructs.Alexey Bataev2015-08-061-0/+12
* [ASTContext] Add a templated convenience wrapper for Allocate.Benjamin Kramer2015-08-041-1/+1
* [AST] Use StringRef's convenient copy method. No functionality change.Benjamin Kramer2015-08-041-6/+1
* [UB] When attaching empty strings to the AST, use an empty StringRefChandler Carruth2015-08-041-0/+2
* Commit for http://reviews.llvm.org/D10765Michael Wong2015-07-211-0/+24
* [AST] Remove StmtRange in favor of an iterator_range.Benjamin Kramer2015-07-181-1/+1
* Fix alignment issues in Clang.James Y Knight2015-07-171-3/+2
* [OPENMP 4.0] Initial support for 'omp cancel' construct.Alexey Bataev2015-07-021-0/+20
* [OPENMP 4.0] Initial support for 'omp cancellation point' construct.Alexey Bataev2015-07-011-0/+20
* [OPENMP] Initial support for 'depend' clause (4.0).Alexey Bataev2015-06-231-0/+24
* Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").Alexander Kornienko2015-06-221-2/+2
* Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko2015-06-221-2/+2
* [OPENMP] Support for '#pragma omp taskgroup' directive.Alexey Bataev2015-06-181-1/+22
* [OPENMP] Remove last iteration separation for loop-based constructs.Alexey Bataev2015-06-161-5/+5
* Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial typesBenjamin Kramer2015-05-291-2/+2
* [OPENMP] Simplified iteration over clauses, NFC.Alexey Bataev2015-04-271-4/+1
* [OPENMP] Codegen for 'copyin' clause in 'parallel' directive.Alexey Bataev2015-04-161-7/+31
* [OPENMP] Codegen for 'lastprivate' clause in 'for' directive.Alexey Bataev2015-04-161-7/+37
* [OPENMP] Codegen for 'reduction' clause in 'parallel' directive.Alexey Bataev2015-04-101-3/+29
* [ast] Put the Stmt hierarchy on a diet for 64 bit targets.Benjamin Kramer2015-04-021-2/+1
* [OPENMP] Sema analysis for 'atomic capture' construct.Alexey Bataev2015-04-011-5/+5
* [OPENMP] Codegen for 'atomic update' construct.Alexey Bataev2015-03-301-4/+4
* [OPENMP] Codegen for 'copyprivate' clause ('single' directive).Alexey Bataev2015-03-231-7/+31
* [OPENMP] CodeGen of the 'linear' clause for the 'omp simd' directive.Alexander Musman2015-03-211-8/+37
* [OPENMP] Additional sema analysis for 'omp atomic[ update]'.Alexey Bataev2015-03-131-3/+6
* Various fixes to mangling of list-initialization.Richard Smith2015-02-051-2/+8
* First patch with codegen of the 'omp for' directive. It implementsAlexander Musman2014-12-151-91/+115
* [OPENMP] Additional processing of 'omp atomic read' directive.Alexey Bataev2014-11-181-8/+10