blob: 43a774eec665aabf458369cd276eca478611fcf1 [file] [log] [blame]
Alexey Bataev9959db52014-05-06 10:08:46 +00001//===--- SemaOpenMP.cpp - Semantic Analysis for OpenMP constructs ---------===//
Alexey Bataeva769e072013-03-22 06:34:35 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9/// \file
10/// \brief This file implements semantic analysis for OpenMP directives and
Alexey Bataev6f6f3b42013-05-13 04:18:18 +000011/// clauses.
Alexey Bataeva769e072013-03-22 06:34:35 +000012///
13//===----------------------------------------------------------------------===//
14
Alexey Bataevb08f89f2015-08-14 12:25:37 +000015#include "TreeTransform.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000016#include "clang/AST/ASTContext.h"
Alexey Bataev97720002014-11-11 04:05:39 +000017#include "clang/AST/ASTMutationListener.h"
Alexey Bataeva839ddd2016-03-17 10:19:46 +000018#include "clang/AST/CXXInheritance.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000019#include "clang/AST/Decl.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000020#include "clang/AST/DeclCXX.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000021#include "clang/AST/DeclOpenMP.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000022#include "clang/AST/StmtCXX.h"
23#include "clang/AST/StmtOpenMP.h"
24#include "clang/AST/StmtVisitor.h"
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000025#include "clang/AST/TypeOrdering.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000026#include "clang/Basic/OpenMPKinds.h"
Samuel Antaof8b50122015-07-13 22:54:53 +000027#include "clang/Basic/TargetInfo.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000028#include "clang/Lex/Preprocessor.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000029#include "clang/Sema/Initialization.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000030#include "clang/Sema/Lookup.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000031#include "clang/Sema/Scope.h"
32#include "clang/Sema/ScopeInfo.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000033#include "clang/Sema/SemaInternal.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000034using namespace clang;
35
Alexey Bataev758e55e2013-09-06 18:03:48 +000036//===----------------------------------------------------------------------===//
37// Stack of data-sharing attributes for variables
38//===----------------------------------------------------------------------===//
39
40namespace {
41/// \brief Default data sharing attributes, which can be applied to directive.
42enum DefaultDataSharingAttributes {
Alexey Bataeved09d242014-05-28 05:53:51 +000043 DSA_unspecified = 0, /// \brief Data sharing attribute not specified.
44 DSA_none = 1 << 0, /// \brief Default data sharing attribute 'none'.
45 DSA_shared = 1 << 1 /// \brief Default data sharing attribute 'shared'.
Alexey Bataev758e55e2013-09-06 18:03:48 +000046};
Alexey Bataev7ff55242014-06-19 09:13:45 +000047
Alexey Bataevf29276e2014-06-18 04:14:57 +000048template <class T> struct MatchesAny {
Alexey Bataev23b69422014-06-18 07:08:49 +000049 explicit MatchesAny(ArrayRef<T> Arr) : Arr(std::move(Arr)) {}
Alexey Bataevf29276e2014-06-18 04:14:57 +000050 bool operator()(T Kind) {
51 for (auto KindEl : Arr)
52 if (KindEl == Kind)
53 return true;
54 return false;
55 }
56
57private:
58 ArrayRef<T> Arr;
59};
Alexey Bataev23b69422014-06-18 07:08:49 +000060struct MatchesAlways {
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +000061 MatchesAlways() {}
Alexey Bataev7ff55242014-06-19 09:13:45 +000062 template <class T> bool operator()(T) { return true; }
Alexey Bataevf29276e2014-06-18 04:14:57 +000063};
64
65typedef MatchesAny<OpenMPClauseKind> MatchesAnyClause;
66typedef MatchesAny<OpenMPDirectiveKind> MatchesAnyDirective;
Alexey Bataev758e55e2013-09-06 18:03:48 +000067
68/// \brief Stack for tracking declarations used in OpenMP directives and
69/// clauses and their data-sharing attributes.
70class DSAStackTy {
71public:
72 struct DSAVarData {
73 OpenMPDirectiveKind DKind;
74 OpenMPClauseKind CKind;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +000075 Expr *RefExpr;
Alexey Bataev90c228f2016-02-08 09:29:13 +000076 DeclRefExpr *PrivateCopy;
Alexey Bataevbae9a792014-06-27 10:37:06 +000077 SourceLocation ImplicitDSALoc;
78 DSAVarData()
79 : DKind(OMPD_unknown), CKind(OMPC_unknown), RefExpr(nullptr),
Alexey Bataev90c228f2016-02-08 09:29:13 +000080 PrivateCopy(nullptr), ImplicitDSALoc() {}
Alexey Bataev758e55e2013-09-06 18:03:48 +000081 };
Alexey Bataeved09d242014-05-28 05:53:51 +000082
Alexey Bataev758e55e2013-09-06 18:03:48 +000083private:
Samuel Antao5de996e2016-01-22 20:21:36 +000084 typedef SmallVector<Expr *, 4> MapInfo;
85
Alexey Bataev758e55e2013-09-06 18:03:48 +000086 struct DSAInfo {
87 OpenMPClauseKind Attributes;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +000088 Expr *RefExpr;
Alexey Bataev90c228f2016-02-08 09:29:13 +000089 DeclRefExpr *PrivateCopy;
Alexey Bataev758e55e2013-09-06 18:03:48 +000090 };
Alexey Bataev90c228f2016-02-08 09:29:13 +000091 typedef llvm::DenseMap<ValueDecl *, DSAInfo> DeclSAMapTy;
92 typedef llvm::DenseMap<ValueDecl *, Expr *> AlignedMapTy;
Alexey Bataevc6ad97a2016-04-01 09:23:34 +000093 typedef std::pair<unsigned, VarDecl *> LCDeclInfo;
94 typedef llvm::DenseMap<ValueDecl *, LCDeclInfo> LoopControlVariablesMapTy;
Alexey Bataev90c228f2016-02-08 09:29:13 +000095 typedef llvm::DenseMap<ValueDecl *, MapInfo> MappedDeclsTy;
Alexey Bataev28c75412015-12-15 08:19:24 +000096 typedef llvm::StringMap<std::pair<OMPCriticalDirective *, llvm::APSInt>>
97 CriticalsWithHintsTy;
Alexey Bataev758e55e2013-09-06 18:03:48 +000098
99 struct SharingMapTy {
100 DeclSAMapTy SharingMap;
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000101 AlignedMapTy AlignedMap;
Kelvin Li0bff7af2015-11-23 05:32:03 +0000102 MappedDeclsTy MappedDecls;
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000103 LoopControlVariablesMapTy LCVMap;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000104 DefaultDataSharingAttributes DefaultAttr;
Alexey Bataevbae9a792014-06-27 10:37:06 +0000105 SourceLocation DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000106 OpenMPDirectiveKind Directive;
107 DeclarationNameInfo DirectiveName;
108 Scope *CurScope;
Alexey Bataevbae9a792014-06-27 10:37:06 +0000109 SourceLocation ConstructLoc;
Alexey Bataev346265e2015-09-25 10:37:12 +0000110 /// \brief first argument (Expr *) contains optional argument of the
111 /// 'ordered' clause, the second one is true if the regions has 'ordered'
112 /// clause, false otherwise.
113 llvm::PointerIntPair<Expr *, 1, bool> OrderedRegion;
Alexey Bataev6d4ed052015-07-01 06:57:41 +0000114 bool NowaitRegion;
Alexey Bataev25e5b442015-09-15 12:52:43 +0000115 bool CancelRegion;
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000116 unsigned AssociatedLoops;
Alexey Bataev13314bf2014-10-09 04:18:56 +0000117 SourceLocation InnerTeamsRegionLoc;
Alexey Bataeved09d242014-05-28 05:53:51 +0000118 SharingMapTy(OpenMPDirectiveKind DKind, DeclarationNameInfo Name,
Alexey Bataevbae9a792014-06-27 10:37:06 +0000119 Scope *CurScope, SourceLocation Loc)
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000120 : SharingMap(), AlignedMap(), LCVMap(), DefaultAttr(DSA_unspecified),
Alexey Bataevbae9a792014-06-27 10:37:06 +0000121 Directive(DKind), DirectiveName(std::move(Name)), CurScope(CurScope),
Alexey Bataev346265e2015-09-25 10:37:12 +0000122 ConstructLoc(Loc), OrderedRegion(), NowaitRegion(false),
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000123 CancelRegion(false), AssociatedLoops(1), InnerTeamsRegionLoc() {}
Alexey Bataev758e55e2013-09-06 18:03:48 +0000124 SharingMapTy()
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000125 : SharingMap(), AlignedMap(), LCVMap(), DefaultAttr(DSA_unspecified),
Alexey Bataevbae9a792014-06-27 10:37:06 +0000126 Directive(OMPD_unknown), DirectiveName(), CurScope(nullptr),
Alexey Bataev346265e2015-09-25 10:37:12 +0000127 ConstructLoc(), OrderedRegion(), NowaitRegion(false),
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000128 CancelRegion(false), AssociatedLoops(1), InnerTeamsRegionLoc() {}
Alexey Bataev758e55e2013-09-06 18:03:48 +0000129 };
130
Axel Naumann323862e2016-02-03 10:45:22 +0000131 typedef SmallVector<SharingMapTy, 4> StackTy;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000132
133 /// \brief Stack of used declaration and their data-sharing attributes.
134 StackTy Stack;
Alexey Bataev39f915b82015-05-08 10:41:21 +0000135 /// \brief true, if check for DSA must be from parent directive, false, if
136 /// from current directive.
Alexey Bataevaac108a2015-06-23 04:51:00 +0000137 OpenMPClauseKind ClauseKindMode;
Alexey Bataev7ff55242014-06-19 09:13:45 +0000138 Sema &SemaRef;
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000139 bool ForceCapturing;
Alexey Bataev28c75412015-12-15 08:19:24 +0000140 CriticalsWithHintsTy Criticals;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000141
142 typedef SmallVector<SharingMapTy, 8>::reverse_iterator reverse_iterator;
143
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000144 DSAVarData getDSA(StackTy::reverse_iterator& Iter, ValueDecl *D);
Alexey Bataevec3da872014-01-31 05:15:34 +0000145
146 /// \brief Checks if the variable is a local for OpenMP region.
147 bool isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter);
Alexey Bataeved09d242014-05-28 05:53:51 +0000148
Alexey Bataev758e55e2013-09-06 18:03:48 +0000149public:
Alexey Bataevaac108a2015-06-23 04:51:00 +0000150 explicit DSAStackTy(Sema &S)
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000151 : Stack(1), ClauseKindMode(OMPC_unknown), SemaRef(S),
152 ForceCapturing(false) {}
Alexey Bataev39f915b82015-05-08 10:41:21 +0000153
Alexey Bataevaac108a2015-06-23 04:51:00 +0000154 bool isClauseParsingMode() const { return ClauseKindMode != OMPC_unknown; }
155 void setClauseParsingMode(OpenMPClauseKind K) { ClauseKindMode = K; }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000156
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000157 bool isForceVarCapturing() const { return ForceCapturing; }
158 void setForceVarCapturing(bool V) { ForceCapturing = V; }
159
Alexey Bataev758e55e2013-09-06 18:03:48 +0000160 void push(OpenMPDirectiveKind DKind, const DeclarationNameInfo &DirName,
Alexey Bataevbae9a792014-06-27 10:37:06 +0000161 Scope *CurScope, SourceLocation Loc) {
162 Stack.push_back(SharingMapTy(DKind, DirName, CurScope, Loc));
163 Stack.back().DefaultAttrLoc = Loc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000164 }
165
166 void pop() {
167 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty!");
168 Stack.pop_back();
169 }
170
Alexey Bataev28c75412015-12-15 08:19:24 +0000171 void addCriticalWithHint(OMPCriticalDirective *D, llvm::APSInt Hint) {
172 Criticals[D->getDirectiveName().getAsString()] = std::make_pair(D, Hint);
173 }
174 const std::pair<OMPCriticalDirective *, llvm::APSInt>
175 getCriticalWithHint(const DeclarationNameInfo &Name) const {
176 auto I = Criticals.find(Name.getAsString());
177 if (I != Criticals.end())
178 return I->second;
179 return std::make_pair(nullptr, llvm::APSInt());
180 }
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000181 /// \brief If 'aligned' declaration for given variable \a D was not seen yet,
Alp Toker15e62a32014-06-06 12:02:07 +0000182 /// add it and return NULL; otherwise return previous occurrence's expression
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000183 /// for diagnostics.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000184 Expr *addUniqueAligned(ValueDecl *D, Expr *NewDE);
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000185
Alexey Bataev9c821032015-04-30 04:23:23 +0000186 /// \brief Register specified variable as loop control variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000187 void addLoopControlVariable(ValueDecl *D, VarDecl *Capture);
Alexey Bataev9c821032015-04-30 04:23:23 +0000188 /// \brief Check if the specified variable is a loop control variable for
189 /// current region.
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000190 /// \return The index of the loop control variable in the list of associated
191 /// for-loops (from outer to inner).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000192 LCDeclInfo isLoopControlVariable(ValueDecl *D);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000193 /// \brief Check if the specified variable is a loop control variable for
194 /// parent region.
195 /// \return The index of the loop control variable in the list of associated
196 /// for-loops (from outer to inner).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000197 LCDeclInfo isParentLoopControlVariable(ValueDecl *D);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000198 /// \brief Get the loop control variable for the I-th loop (or nullptr) in
199 /// parent directive.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000200 ValueDecl *getParentLoopControlVariable(unsigned I);
Alexey Bataev9c821032015-04-30 04:23:23 +0000201
Alexey Bataev758e55e2013-09-06 18:03:48 +0000202 /// \brief Adds explicit data sharing attribute to the specified declaration.
Alexey Bataev90c228f2016-02-08 09:29:13 +0000203 void addDSA(ValueDecl *D, Expr *E, OpenMPClauseKind A,
204 DeclRefExpr *PrivateCopy = nullptr);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000205
Alexey Bataev758e55e2013-09-06 18:03:48 +0000206 /// \brief Returns data sharing attributes from top of the stack for the
207 /// specified declaration.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000208 DSAVarData getTopDSA(ValueDecl *D, bool FromParent);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000209 /// \brief Returns data-sharing attributes for the specified declaration.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000210 DSAVarData getImplicitDSA(ValueDecl *D, bool FromParent);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000211 /// \brief Checks if the specified variables has data-sharing attributes which
212 /// match specified \a CPred predicate in any directive which matches \a DPred
213 /// predicate.
214 template <class ClausesPredicate, class DirectivesPredicate>
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000215 DSAVarData hasDSA(ValueDecl *D, ClausesPredicate CPred,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000216 DirectivesPredicate DPred, bool FromParent);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000217 /// \brief Checks if the specified variables has data-sharing attributes which
218 /// match specified \a CPred predicate in any innermost directive which
219 /// matches \a DPred predicate.
220 template <class ClausesPredicate, class DirectivesPredicate>
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000221 DSAVarData hasInnermostDSA(ValueDecl *D, ClausesPredicate CPred,
222 DirectivesPredicate DPred, bool FromParent);
Alexey Bataevaac108a2015-06-23 04:51:00 +0000223 /// \brief Checks if the specified variables has explicit data-sharing
224 /// attributes which match specified \a CPred predicate at the specified
225 /// OpenMP region.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000226 bool hasExplicitDSA(ValueDecl *D,
Alexey Bataevaac108a2015-06-23 04:51:00 +0000227 const llvm::function_ref<bool(OpenMPClauseKind)> &CPred,
228 unsigned Level);
Samuel Antao4be30e92015-10-02 17:14:03 +0000229
230 /// \brief Returns true if the directive at level \Level matches in the
231 /// specified \a DPred predicate.
232 bool hasExplicitDirective(
233 const llvm::function_ref<bool(OpenMPDirectiveKind)> &DPred,
234 unsigned Level);
235
Alexander Musmand9ed09f2014-07-21 09:42:05 +0000236 /// \brief Finds a directive which matches specified \a DPred predicate.
237 template <class NamedDirectivesPredicate>
238 bool hasDirective(NamedDirectivesPredicate DPred, bool FromParent);
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000239
Alexey Bataev758e55e2013-09-06 18:03:48 +0000240 /// \brief Returns currently analyzed directive.
241 OpenMPDirectiveKind getCurrentDirective() const {
242 return Stack.back().Directive;
243 }
Alexey Bataev549210e2014-06-24 04:39:47 +0000244 /// \brief Returns parent directive.
245 OpenMPDirectiveKind getParentDirective() const {
246 if (Stack.size() > 2)
247 return Stack[Stack.size() - 2].Directive;
248 return OMPD_unknown;
249 }
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000250 /// \brief Return the directive associated with the provided scope.
251 OpenMPDirectiveKind getDirectiveForScope(const Scope *S) const;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000252
253 /// \brief Set default data sharing attribute to none.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000254 void setDefaultDSANone(SourceLocation Loc) {
255 Stack.back().DefaultAttr = DSA_none;
256 Stack.back().DefaultAttrLoc = Loc;
257 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000258 /// \brief Set default data sharing attribute to shared.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000259 void setDefaultDSAShared(SourceLocation Loc) {
260 Stack.back().DefaultAttr = DSA_shared;
261 Stack.back().DefaultAttrLoc = Loc;
262 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000263
264 DefaultDataSharingAttributes getDefaultDSA() const {
265 return Stack.back().DefaultAttr;
266 }
Alexey Bataevbae9a792014-06-27 10:37:06 +0000267 SourceLocation getDefaultDSALocation() const {
268 return Stack.back().DefaultAttrLoc;
269 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000270
Alexey Bataevf29276e2014-06-18 04:14:57 +0000271 /// \brief Checks if the specified variable is a threadprivate.
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000272 bool isThreadPrivate(VarDecl *D) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000273 DSAVarData DVar = getTopDSA(D, false);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000274 return isOpenMPThreadPrivate(DVar.CKind);
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000275 }
276
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000277 /// \brief Marks current region as ordered (it has an 'ordered' clause).
Alexey Bataev346265e2015-09-25 10:37:12 +0000278 void setOrderedRegion(bool IsOrdered, Expr *Param) {
279 Stack.back().OrderedRegion.setInt(IsOrdered);
280 Stack.back().OrderedRegion.setPointer(Param);
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000281 }
282 /// \brief Returns true, if parent region is ordered (has associated
283 /// 'ordered' clause), false - otherwise.
284 bool isParentOrderedRegion() const {
285 if (Stack.size() > 2)
Alexey Bataev346265e2015-09-25 10:37:12 +0000286 return Stack[Stack.size() - 2].OrderedRegion.getInt();
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000287 return false;
288 }
Alexey Bataev346265e2015-09-25 10:37:12 +0000289 /// \brief Returns optional parameter for the ordered region.
290 Expr *getParentOrderedRegionParam() const {
291 if (Stack.size() > 2)
292 return Stack[Stack.size() - 2].OrderedRegion.getPointer();
293 return nullptr;
294 }
Alexey Bataev6d4ed052015-07-01 06:57:41 +0000295 /// \brief Marks current region as nowait (it has a 'nowait' clause).
296 void setNowaitRegion(bool IsNowait = true) {
297 Stack.back().NowaitRegion = IsNowait;
298 }
299 /// \brief Returns true, if parent region is nowait (has associated
300 /// 'nowait' clause), false - otherwise.
301 bool isParentNowaitRegion() const {
302 if (Stack.size() > 2)
303 return Stack[Stack.size() - 2].NowaitRegion;
304 return false;
305 }
Alexey Bataev25e5b442015-09-15 12:52:43 +0000306 /// \brief Marks parent region as cancel region.
307 void setParentCancelRegion(bool Cancel = true) {
308 if (Stack.size() > 2)
309 Stack[Stack.size() - 2].CancelRegion =
310 Stack[Stack.size() - 2].CancelRegion || Cancel;
311 }
312 /// \brief Return true if current region has inner cancel construct.
313 bool isCancelRegion() const {
314 return Stack.back().CancelRegion;
315 }
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000316
Alexey Bataev9c821032015-04-30 04:23:23 +0000317 /// \brief Set collapse value for the region.
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000318 void setAssociatedLoops(unsigned Val) { Stack.back().AssociatedLoops = Val; }
Alexey Bataev9c821032015-04-30 04:23:23 +0000319 /// \brief Return collapse value for region.
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000320 unsigned getAssociatedLoops() const { return Stack.back().AssociatedLoops; }
Alexey Bataev9c821032015-04-30 04:23:23 +0000321
Alexey Bataev13314bf2014-10-09 04:18:56 +0000322 /// \brief Marks current target region as one with closely nested teams
323 /// region.
324 void setParentTeamsRegionLoc(SourceLocation TeamsRegionLoc) {
325 if (Stack.size() > 2)
326 Stack[Stack.size() - 2].InnerTeamsRegionLoc = TeamsRegionLoc;
327 }
328 /// \brief Returns true, if current region has closely nested teams region.
329 bool hasInnerTeamsRegion() const {
330 return getInnerTeamsRegionLoc().isValid();
331 }
332 /// \brief Returns location of the nested teams region (if any).
333 SourceLocation getInnerTeamsRegionLoc() const {
334 if (Stack.size() > 1)
335 return Stack.back().InnerTeamsRegionLoc;
336 return SourceLocation();
337 }
338
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000339 Scope *getCurScope() const { return Stack.back().CurScope; }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000340 Scope *getCurScope() { return Stack.back().CurScope; }
Alexey Bataevbae9a792014-06-27 10:37:06 +0000341 SourceLocation getConstructLoc() { return Stack.back().ConstructLoc; }
Kelvin Li0bff7af2015-11-23 05:32:03 +0000342
Samuel Antao5de996e2016-01-22 20:21:36 +0000343 // Do the check specified in MapInfoCheck and return true if any issue is
344 // found.
345 template <class MapInfoCheck>
346 bool checkMapInfoForVar(ValueDecl *VD, bool CurrentRegionOnly,
347 MapInfoCheck Check) {
348 auto SI = Stack.rbegin();
349 auto SE = Stack.rend();
350
351 if (SI == SE)
352 return false;
353
354 if (CurrentRegionOnly) {
355 SE = std::next(SI);
356 } else {
357 ++SI;
358 }
359
360 for (; SI != SE; ++SI) {
361 auto MI = SI->MappedDecls.find(VD);
362 if (MI != SI->MappedDecls.end()) {
363 for (Expr *E : MI->second) {
364 if (Check(E))
365 return true;
366 }
Kelvin Li0bff7af2015-11-23 05:32:03 +0000367 }
368 }
Samuel Antao5de996e2016-01-22 20:21:36 +0000369 return false;
Kelvin Li0bff7af2015-11-23 05:32:03 +0000370 }
371
Samuel Antao5de996e2016-01-22 20:21:36 +0000372 void addExprToVarMapInfo(ValueDecl *VD, Expr *E) {
Kelvin Li0bff7af2015-11-23 05:32:03 +0000373 if (Stack.size() > 1) {
Samuel Antao5de996e2016-01-22 20:21:36 +0000374 Stack.back().MappedDecls[VD].push_back(E);
Kelvin Li0bff7af2015-11-23 05:32:03 +0000375 }
376 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000377};
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000378bool isParallelOrTaskRegion(OpenMPDirectiveKind DKind) {
379 return isOpenMPParallelDirective(DKind) || DKind == OMPD_task ||
Alexey Bataev49f6e782015-12-01 04:18:41 +0000380 isOpenMPTeamsDirective(DKind) || DKind == OMPD_unknown ||
Alexey Bataev0a6ed842015-12-03 09:40:15 +0000381 isOpenMPTaskLoopDirective(DKind);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000382}
Alexey Bataeved09d242014-05-28 05:53:51 +0000383} // namespace
Alexey Bataev758e55e2013-09-06 18:03:48 +0000384
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000385static ValueDecl *getCanonicalDecl(ValueDecl *D) {
386 auto *VD = dyn_cast<VarDecl>(D);
387 auto *FD = dyn_cast<FieldDecl>(D);
388 if (VD != nullptr) {
389 VD = VD->getCanonicalDecl();
390 D = VD;
391 } else {
392 assert(FD);
393 FD = FD->getCanonicalDecl();
394 D = FD;
395 }
396 return D;
397}
398
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000399DSAStackTy::DSAVarData DSAStackTy::getDSA(StackTy::reverse_iterator& Iter,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000400 ValueDecl *D) {
401 D = getCanonicalDecl(D);
402 auto *VD = dyn_cast<VarDecl>(D);
403 auto *FD = dyn_cast<FieldDecl>(D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000404 DSAVarData DVar;
Alexey Bataevdf9b1592014-06-25 04:09:13 +0000405 if (Iter == std::prev(Stack.rend())) {
Alexey Bataev750a58b2014-03-18 12:19:12 +0000406 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
407 // in a region but not in construct]
408 // File-scope or namespace-scope variables referenced in called routines
409 // in the region are shared unless they appear in a threadprivate
410 // directive.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000411 if (VD && !VD->isFunctionOrMethodVarDecl() && !isa<ParmVarDecl>(D))
Alexey Bataev750a58b2014-03-18 12:19:12 +0000412 DVar.CKind = OMPC_shared;
413
414 // OpenMP [2.9.1.2, Data-sharing Attribute Rules for Variables Referenced
415 // in a region but not in construct]
416 // Variables with static storage duration that are declared in called
417 // routines in the region are shared.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000418 if (VD && VD->hasGlobalStorage())
419 DVar.CKind = OMPC_shared;
420
421 // Non-static data members are shared by default.
422 if (FD)
Alexey Bataev750a58b2014-03-18 12:19:12 +0000423 DVar.CKind = OMPC_shared;
424
Alexey Bataev758e55e2013-09-06 18:03:48 +0000425 return DVar;
426 }
Alexey Bataevec3da872014-01-31 05:15:34 +0000427
Alexey Bataev758e55e2013-09-06 18:03:48 +0000428 DVar.DKind = Iter->Directive;
Alexey Bataevec3da872014-01-31 05:15:34 +0000429 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
430 // in a Construct, C/C++, predetermined, p.1]
431 // Variables with automatic storage duration that are declared in a scope
432 // inside the construct are private.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000433 if (VD && isOpenMPLocal(VD, Iter) && VD->isLocalVarDecl() &&
434 (VD->getStorageClass() == SC_Auto || VD->getStorageClass() == SC_None)) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000435 DVar.CKind = OMPC_private;
436 return DVar;
Alexey Bataevec3da872014-01-31 05:15:34 +0000437 }
438
Alexey Bataev758e55e2013-09-06 18:03:48 +0000439 // Explicitly specified attributes and local variables with predetermined
440 // attributes.
441 if (Iter->SharingMap.count(D)) {
442 DVar.RefExpr = Iter->SharingMap[D].RefExpr;
Alexey Bataev90c228f2016-02-08 09:29:13 +0000443 DVar.PrivateCopy = Iter->SharingMap[D].PrivateCopy;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000444 DVar.CKind = Iter->SharingMap[D].Attributes;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000445 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000446 return DVar;
447 }
448
449 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
450 // in a Construct, C/C++, implicitly determined, p.1]
451 // In a parallel or task construct, the data-sharing attributes of these
452 // variables are determined by the default clause, if present.
453 switch (Iter->DefaultAttr) {
454 case DSA_shared:
455 DVar.CKind = OMPC_shared;
Alexey Bataevbae9a792014-06-27 10:37:06 +0000456 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000457 return DVar;
458 case DSA_none:
459 return DVar;
460 case DSA_unspecified:
461 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
462 // in a Construct, implicitly determined, p.2]
463 // In a parallel construct, if no default clause is present, these
464 // variables are shared.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000465 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev13314bf2014-10-09 04:18:56 +0000466 if (isOpenMPParallelDirective(DVar.DKind) ||
467 isOpenMPTeamsDirective(DVar.DKind)) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000468 DVar.CKind = OMPC_shared;
469 return DVar;
470 }
471
472 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
473 // in a Construct, implicitly determined, p.4]
474 // In a task construct, if no default clause is present, a variable that in
475 // the enclosing context is determined to be shared by all implicit tasks
476 // bound to the current team is shared.
Alexey Bataev758e55e2013-09-06 18:03:48 +0000477 if (DVar.DKind == OMPD_task) {
478 DSAVarData DVarTemp;
Alexey Bataev62b63b12015-03-10 07:28:44 +0000479 for (StackTy::reverse_iterator I = std::next(Iter), EE = Stack.rend();
Alexey Bataev758e55e2013-09-06 18:03:48 +0000480 I != EE; ++I) {
Alexey Bataeved09d242014-05-28 05:53:51 +0000481 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables
482 // Referenced
Alexey Bataev758e55e2013-09-06 18:03:48 +0000483 // in a Construct, implicitly determined, p.6]
484 // In a task construct, if no default clause is present, a variable
485 // whose data-sharing attribute is not determined by the rules above is
486 // firstprivate.
487 DVarTemp = getDSA(I, D);
488 if (DVarTemp.CKind != OMPC_shared) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000489 DVar.RefExpr = nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000490 DVar.DKind = OMPD_task;
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000491 DVar.CKind = OMPC_firstprivate;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000492 return DVar;
493 }
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000494 if (isParallelOrTaskRegion(I->Directive))
Alexey Bataeved09d242014-05-28 05:53:51 +0000495 break;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000496 }
497 DVar.DKind = OMPD_task;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000498 DVar.CKind =
Alexey Bataeved09d242014-05-28 05:53:51 +0000499 (DVarTemp.CKind == OMPC_unknown) ? OMPC_firstprivate : OMPC_shared;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000500 return DVar;
501 }
502 }
503 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
504 // in a Construct, implicitly determined, p.3]
505 // For constructs other than task, if no default clause is present, these
506 // variables inherit their data-sharing attributes from the enclosing
507 // context.
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000508 return getDSA(++Iter, D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000509}
510
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000511Expr *DSAStackTy::addUniqueAligned(ValueDecl *D, Expr *NewDE) {
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000512 assert(Stack.size() > 1 && "Data sharing attributes stack is empty");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000513 D = getCanonicalDecl(D);
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000514 auto It = Stack.back().AlignedMap.find(D);
515 if (It == Stack.back().AlignedMap.end()) {
516 assert(NewDE && "Unexpected nullptr expr to be added into aligned map");
517 Stack.back().AlignedMap[D] = NewDE;
518 return nullptr;
519 } else {
520 assert(It->second && "Unexpected nullptr expr in the aligned map");
521 return It->second;
522 }
523 return nullptr;
524}
525
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000526void DSAStackTy::addLoopControlVariable(ValueDecl *D, VarDecl *Capture) {
Alexey Bataev9c821032015-04-30 04:23:23 +0000527 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000528 D = getCanonicalDecl(D);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000529 Stack.back().LCVMap.insert(
530 std::make_pair(D, LCDeclInfo(Stack.back().LCVMap.size() + 1, Capture)));
Alexey Bataev9c821032015-04-30 04:23:23 +0000531}
532
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000533DSAStackTy::LCDeclInfo DSAStackTy::isLoopControlVariable(ValueDecl *D) {
Alexey Bataev9c821032015-04-30 04:23:23 +0000534 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000535 D = getCanonicalDecl(D);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000536 return Stack.back().LCVMap.count(D) > 0 ? Stack.back().LCVMap[D]
537 : LCDeclInfo(0, nullptr);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000538}
539
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000540DSAStackTy::LCDeclInfo DSAStackTy::isParentLoopControlVariable(ValueDecl *D) {
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000541 assert(Stack.size() > 2 && "Data-sharing attributes stack is empty");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000542 D = getCanonicalDecl(D);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000543 return Stack[Stack.size() - 2].LCVMap.count(D) > 0
544 ? Stack[Stack.size() - 2].LCVMap[D]
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000545 : LCDeclInfo(0, nullptr);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000546}
547
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000548ValueDecl *DSAStackTy::getParentLoopControlVariable(unsigned I) {
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000549 assert(Stack.size() > 2 && "Data-sharing attributes stack is empty");
550 if (Stack[Stack.size() - 2].LCVMap.size() < I)
551 return nullptr;
552 for (auto &Pair : Stack[Stack.size() - 2].LCVMap) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000553 if (Pair.second.first == I)
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000554 return Pair.first;
555 }
556 return nullptr;
Alexey Bataev9c821032015-04-30 04:23:23 +0000557}
558
Alexey Bataev90c228f2016-02-08 09:29:13 +0000559void DSAStackTy::addDSA(ValueDecl *D, Expr *E, OpenMPClauseKind A,
560 DeclRefExpr *PrivateCopy) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000561 D = getCanonicalDecl(D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000562 if (A == OMPC_threadprivate) {
563 Stack[0].SharingMap[D].Attributes = A;
564 Stack[0].SharingMap[D].RefExpr = E;
Alexey Bataev90c228f2016-02-08 09:29:13 +0000565 Stack[0].SharingMap[D].PrivateCopy = nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000566 } else {
567 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
568 Stack.back().SharingMap[D].Attributes = A;
569 Stack.back().SharingMap[D].RefExpr = E;
Alexey Bataev90c228f2016-02-08 09:29:13 +0000570 Stack.back().SharingMap[D].PrivateCopy = PrivateCopy;
571 if (PrivateCopy)
572 addDSA(PrivateCopy->getDecl(), PrivateCopy, A);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000573 }
574}
575
Alexey Bataeved09d242014-05-28 05:53:51 +0000576bool DSAStackTy::isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter) {
Alexey Bataev6ddfe1a2015-04-16 13:49:42 +0000577 D = D->getCanonicalDecl();
Alexey Bataevec3da872014-01-31 05:15:34 +0000578 if (Stack.size() > 2) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000579 reverse_iterator I = Iter, E = std::prev(Stack.rend());
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000580 Scope *TopScope = nullptr;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000581 while (I != E && !isParallelOrTaskRegion(I->Directive)) {
Alexey Bataevec3da872014-01-31 05:15:34 +0000582 ++I;
583 }
Alexey Bataeved09d242014-05-28 05:53:51 +0000584 if (I == E)
585 return false;
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000586 TopScope = I->CurScope ? I->CurScope->getParent() : nullptr;
Alexey Bataevec3da872014-01-31 05:15:34 +0000587 Scope *CurScope = getCurScope();
588 while (CurScope != TopScope && !CurScope->isDeclScope(D)) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000589 CurScope = CurScope->getParent();
Alexey Bataevec3da872014-01-31 05:15:34 +0000590 }
591 return CurScope != TopScope;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000592 }
Alexey Bataevec3da872014-01-31 05:15:34 +0000593 return false;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000594}
595
Alexey Bataev39f915b82015-05-08 10:41:21 +0000596/// \brief Build a variable declaration for OpenMP loop iteration variable.
597static VarDecl *buildVarDecl(Sema &SemaRef, SourceLocation Loc, QualType Type,
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +0000598 StringRef Name, const AttrVec *Attrs = nullptr) {
Alexey Bataev39f915b82015-05-08 10:41:21 +0000599 DeclContext *DC = SemaRef.CurContext;
600 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
601 TypeSourceInfo *TInfo = SemaRef.Context.getTrivialTypeSourceInfo(Type, Loc);
602 VarDecl *Decl =
603 VarDecl::Create(SemaRef.Context, DC, Loc, Loc, II, Type, TInfo, SC_None);
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +0000604 if (Attrs) {
605 for (specific_attr_iterator<AlignedAttr> I(Attrs->begin()), E(Attrs->end());
606 I != E; ++I)
607 Decl->addAttr(*I);
608 }
Alexey Bataev39f915b82015-05-08 10:41:21 +0000609 Decl->setImplicit();
610 return Decl;
611}
612
613static DeclRefExpr *buildDeclRefExpr(Sema &S, VarDecl *D, QualType Ty,
614 SourceLocation Loc,
615 bool RefersToCapture = false) {
616 D->setReferenced();
617 D->markUsed(S.Context);
618 return DeclRefExpr::Create(S.getASTContext(), NestedNameSpecifierLoc(),
619 SourceLocation(), D, RefersToCapture, Loc, Ty,
620 VK_LValue);
621}
622
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000623DSAStackTy::DSAVarData DSAStackTy::getTopDSA(ValueDecl *D, bool FromParent) {
624 D = getCanonicalDecl(D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000625 DSAVarData DVar;
626
627 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
628 // in a Construct, C/C++, predetermined, p.1]
629 // Variables appearing in threadprivate directives are threadprivate.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000630 auto *VD = dyn_cast<VarDecl>(D);
631 if ((VD && VD->getTLSKind() != VarDecl::TLS_None &&
632 !(VD->hasAttr<OMPThreadPrivateDeclAttr>() &&
Samuel Antaof8b50122015-07-13 22:54:53 +0000633 SemaRef.getLangOpts().OpenMPUseTLS &&
634 SemaRef.getASTContext().getTargetInfo().isTLSSupported())) ||
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000635 (VD && VD->getStorageClass() == SC_Register &&
636 VD->hasAttr<AsmLabelAttr>() && !VD->isLocalVarDecl())) {
637 addDSA(D, buildDeclRefExpr(SemaRef, VD, D->getType().getNonReferenceType(),
Alexey Bataev39f915b82015-05-08 10:41:21 +0000638 D->getLocation()),
Alexey Bataevf2453a02015-05-06 07:25:08 +0000639 OMPC_threadprivate);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000640 }
641 if (Stack[0].SharingMap.count(D)) {
642 DVar.RefExpr = Stack[0].SharingMap[D].RefExpr;
643 DVar.CKind = OMPC_threadprivate;
644 return DVar;
645 }
646
Dmitry Polukhin0b0da292016-04-06 11:38:59 +0000647 if (Stack.size() == 1) {
648 // Not in OpenMP execution region and top scope was already checked.
649 return DVar;
650 }
651
Alexey Bataev758e55e2013-09-06 18:03:48 +0000652 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
Alexey Bataevdffa93a2015-12-10 08:20:58 +0000653 // in a Construct, C/C++, predetermined, p.4]
654 // Static data members are shared.
655 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
656 // in a Construct, C/C++, predetermined, p.7]
657 // Variables with static storage duration that are declared in a scope
658 // inside the construct are shared.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000659 if (VD && VD->isStaticDataMember()) {
Alexey Bataevdffa93a2015-12-10 08:20:58 +0000660 DSAVarData DVarTemp =
661 hasDSA(D, isOpenMPPrivate, MatchesAlways(), FromParent);
662 if (DVarTemp.CKind != OMPC_unknown && DVarTemp.RefExpr)
Alexey Bataevec3da872014-01-31 05:15:34 +0000663 return DVar;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000664
Alexey Bataevdffa93a2015-12-10 08:20:58 +0000665 DVar.CKind = OMPC_shared;
666 return DVar;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000667 }
668
669 QualType Type = D->getType().getNonReferenceType().getCanonicalType();
Alexey Bataevf120c0d2015-05-19 07:46:42 +0000670 bool IsConstant = Type.isConstant(SemaRef.getASTContext());
671 Type = SemaRef.getASTContext().getBaseElementType(Type);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000672 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
673 // in a Construct, C/C++, predetermined, p.6]
674 // Variables with const qualified type having no mutable member are
675 // shared.
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000676 CXXRecordDecl *RD =
Alexey Bataev7ff55242014-06-19 09:13:45 +0000677 SemaRef.getLangOpts().CPlusPlus ? Type->getAsCXXRecordDecl() : nullptr;
Alexey Bataevc9bd03d2015-12-17 06:55:08 +0000678 if (auto *CTSD = dyn_cast_or_null<ClassTemplateSpecializationDecl>(RD))
679 if (auto *CTD = CTSD->getSpecializedTemplate())
680 RD = CTD->getTemplatedDecl();
Alexey Bataev758e55e2013-09-06 18:03:48 +0000681 if (IsConstant &&
Alexey Bataev4bcad7f2016-02-10 10:50:12 +0000682 !(SemaRef.getLangOpts().CPlusPlus && RD && RD->hasDefinition() &&
683 RD->hasMutableFields())) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000684 // Variables with const-qualified type having no mutable member may be
685 // listed in a firstprivate clause, even if they are static data members.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000686 DSAVarData DVarTemp = hasDSA(D, MatchesAnyClause(OMPC_firstprivate),
687 MatchesAlways(), FromParent);
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000688 if (DVarTemp.CKind == OMPC_firstprivate && DVarTemp.RefExpr)
689 return DVar;
690
Alexey Bataev758e55e2013-09-06 18:03:48 +0000691 DVar.CKind = OMPC_shared;
692 return DVar;
693 }
694
Alexey Bataev758e55e2013-09-06 18:03:48 +0000695 // Explicitly specified attributes and local variables with predetermined
696 // attributes.
Alexey Bataevdffa93a2015-12-10 08:20:58 +0000697 auto StartI = std::next(Stack.rbegin());
698 auto EndI = std::prev(Stack.rend());
699 if (FromParent && StartI != EndI) {
700 StartI = std::next(StartI);
701 }
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000702 auto I = std::prev(StartI);
703 if (I->SharingMap.count(D)) {
704 DVar.RefExpr = I->SharingMap[D].RefExpr;
Alexey Bataev90c228f2016-02-08 09:29:13 +0000705 DVar.PrivateCopy = I->SharingMap[D].PrivateCopy;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000706 DVar.CKind = I->SharingMap[D].Attributes;
707 DVar.ImplicitDSALoc = I->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000708 }
709
710 return DVar;
711}
712
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000713DSAStackTy::DSAVarData DSAStackTy::getImplicitDSA(ValueDecl *D,
714 bool FromParent) {
715 D = getCanonicalDecl(D);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000716 auto StartI = Stack.rbegin();
717 auto EndI = std::prev(Stack.rend());
718 if (FromParent && StartI != EndI) {
719 StartI = std::next(StartI);
720 }
721 return getDSA(StartI, D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000722}
723
Alexey Bataevf29276e2014-06-18 04:14:57 +0000724template <class ClausesPredicate, class DirectivesPredicate>
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000725DSAStackTy::DSAVarData DSAStackTy::hasDSA(ValueDecl *D, ClausesPredicate CPred,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000726 DirectivesPredicate DPred,
727 bool FromParent) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000728 D = getCanonicalDecl(D);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000729 auto StartI = std::next(Stack.rbegin());
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000730 auto EndI = Stack.rend();
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000731 if (FromParent && StartI != EndI) {
732 StartI = std::next(StartI);
733 }
734 for (auto I = StartI, EE = EndI; I != EE; ++I) {
735 if (!DPred(I->Directive) && !isParallelOrTaskRegion(I->Directive))
Alexey Bataeved09d242014-05-28 05:53:51 +0000736 continue;
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000737 DSAVarData DVar = getDSA(I, D);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000738 if (CPred(DVar.CKind))
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000739 return DVar;
740 }
741 return DSAVarData();
742}
743
Alexey Bataevf29276e2014-06-18 04:14:57 +0000744template <class ClausesPredicate, class DirectivesPredicate>
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000745DSAStackTy::DSAVarData
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000746DSAStackTy::hasInnermostDSA(ValueDecl *D, ClausesPredicate CPred,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000747 DirectivesPredicate DPred, bool FromParent) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000748 D = getCanonicalDecl(D);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000749 auto StartI = std::next(Stack.rbegin());
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000750 auto EndI = Stack.rend();
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000751 if (FromParent && StartI != EndI) {
752 StartI = std::next(StartI);
753 }
754 for (auto I = StartI, EE = EndI; I != EE; ++I) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000755 if (!DPred(I->Directive))
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000756 break;
Alexey Bataevc5e02582014-06-16 07:08:35 +0000757 DSAVarData DVar = getDSA(I, D);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000758 if (CPred(DVar.CKind))
Alexey Bataevc5e02582014-06-16 07:08:35 +0000759 return DVar;
760 return DSAVarData();
761 }
762 return DSAVarData();
763}
764
Alexey Bataevaac108a2015-06-23 04:51:00 +0000765bool DSAStackTy::hasExplicitDSA(
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000766 ValueDecl *D, const llvm::function_ref<bool(OpenMPClauseKind)> &CPred,
Alexey Bataevaac108a2015-06-23 04:51:00 +0000767 unsigned Level) {
768 if (CPred(ClauseKindMode))
769 return true;
770 if (isClauseParsingMode())
771 ++Level;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000772 D = getCanonicalDecl(D);
Alexey Bataevaac108a2015-06-23 04:51:00 +0000773 auto StartI = Stack.rbegin();
774 auto EndI = std::prev(Stack.rend());
NAKAMURA Takumi0332eda2015-06-23 10:01:20 +0000775 if (std::distance(StartI, EndI) <= (int)Level)
Alexey Bataevaac108a2015-06-23 04:51:00 +0000776 return false;
777 std::advance(StartI, Level);
778 return (StartI->SharingMap.count(D) > 0) && StartI->SharingMap[D].RefExpr &&
779 CPred(StartI->SharingMap[D].Attributes);
780}
781
Samuel Antao4be30e92015-10-02 17:14:03 +0000782bool DSAStackTy::hasExplicitDirective(
783 const llvm::function_ref<bool(OpenMPDirectiveKind)> &DPred,
784 unsigned Level) {
785 if (isClauseParsingMode())
786 ++Level;
787 auto StartI = Stack.rbegin();
788 auto EndI = std::prev(Stack.rend());
789 if (std::distance(StartI, EndI) <= (int)Level)
790 return false;
791 std::advance(StartI, Level);
792 return DPred(StartI->Directive);
793}
794
Alexander Musmand9ed09f2014-07-21 09:42:05 +0000795template <class NamedDirectivesPredicate>
796bool DSAStackTy::hasDirective(NamedDirectivesPredicate DPred, bool FromParent) {
797 auto StartI = std::next(Stack.rbegin());
798 auto EndI = std::prev(Stack.rend());
799 if (FromParent && StartI != EndI) {
800 StartI = std::next(StartI);
801 }
802 for (auto I = StartI, EE = EndI; I != EE; ++I) {
803 if (DPred(I->Directive, I->DirectiveName, I->ConstructLoc))
804 return true;
805 }
806 return false;
807}
808
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000809OpenMPDirectiveKind DSAStackTy::getDirectiveForScope(const Scope *S) const {
810 for (auto I = Stack.rbegin(), EE = Stack.rend(); I != EE; ++I)
811 if (I->CurScope == S)
812 return I->Directive;
813 return OMPD_unknown;
814}
815
Alexey Bataev758e55e2013-09-06 18:03:48 +0000816void Sema::InitDataSharingAttributesStack() {
817 VarDataSharingAttributesStack = new DSAStackTy(*this);
818}
819
820#define DSAStack static_cast<DSAStackTy *>(VarDataSharingAttributesStack)
821
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000822bool Sema::IsOpenMPCapturedByRef(ValueDecl *D,
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000823 const CapturedRegionScopeInfo *RSI) {
824 assert(LangOpts.OpenMP && "OpenMP is not allowed");
825
826 auto &Ctx = getASTContext();
827 bool IsByRef = true;
828
829 // Find the directive that is associated with the provided scope.
830 auto DKind = DSAStack->getDirectiveForScope(RSI->TheScope);
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000831 auto Ty = D->getType();
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000832
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +0000833 if (isOpenMPTargetExecutionDirective(DKind)) {
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000834 // This table summarizes how a given variable should be passed to the device
835 // given its type and the clauses where it appears. This table is based on
836 // the description in OpenMP 4.5 [2.10.4, target Construct] and
837 // OpenMP 4.5 [2.15.5, Data-mapping Attribute Rules and Clauses].
838 //
839 // =========================================================================
840 // | type | defaultmap | pvt | first | is_device_ptr | map | res. |
841 // | |(tofrom:scalar)| | pvt | | | |
842 // =========================================================================
843 // | scl | | | | - | | bycopy|
844 // | scl | | - | x | - | - | bycopy|
845 // | scl | | x | - | - | - | null |
846 // | scl | x | | | - | | byref |
847 // | scl | x | - | x | - | - | bycopy|
848 // | scl | x | x | - | - | - | null |
849 // | scl | | - | - | - | x | byref |
850 // | scl | x | - | - | - | x | byref |
851 //
852 // | agg | n.a. | | | - | | byref |
853 // | agg | n.a. | - | x | - | - | byref |
854 // | agg | n.a. | x | - | - | - | null |
855 // | agg | n.a. | - | - | - | x | byref |
856 // | agg | n.a. | - | - | - | x[] | byref |
857 //
858 // | ptr | n.a. | | | - | | bycopy|
859 // | ptr | n.a. | - | x | - | - | bycopy|
860 // | ptr | n.a. | x | - | - | - | null |
861 // | ptr | n.a. | - | - | - | x | byref |
862 // | ptr | n.a. | - | - | - | x[] | bycopy|
863 // | ptr | n.a. | - | - | x | | bycopy|
864 // | ptr | n.a. | - | - | x | x | bycopy|
865 // | ptr | n.a. | - | - | x | x[] | bycopy|
866 // =========================================================================
867 // Legend:
868 // scl - scalar
869 // ptr - pointer
870 // agg - aggregate
871 // x - applies
872 // - - invalid in this combination
873 // [] - mapped with an array section
874 // byref - should be mapped by reference
875 // byval - should be mapped by value
876 // null - initialize a local variable to null on the device
877 //
878 // Observations:
879 // - All scalar declarations that show up in a map clause have to be passed
880 // by reference, because they may have been mapped in the enclosing data
881 // environment.
882 // - If the scalar value does not fit the size of uintptr, it has to be
883 // passed by reference, regardless the result in the table above.
884 // - For pointers mapped by value that have either an implicit map or an
885 // array section, the runtime library may pass the NULL value to the
886 // device instead of the value passed to it by the compiler.
887
888 // FIXME: Right now, only implicit maps are implemented. Properly mapping
889 // values requires having the map, private, and firstprivate clauses SEMA
890 // and parsing in place, which we don't yet.
891
892 if (Ty->isReferenceType())
893 Ty = Ty->castAs<ReferenceType>()->getPointeeType();
894 IsByRef = !Ty->isScalarType();
895 }
896
897 // When passing data by value, we need to make sure it fits the uintptr size
898 // and alignment, because the runtime library only deals with uintptr types.
899 // If it does not fit the uintptr size, we need to pass the data by reference
900 // instead.
901 if (!IsByRef &&
902 (Ctx.getTypeSizeInChars(Ty) >
903 Ctx.getTypeSizeInChars(Ctx.getUIntPtrType()) ||
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000904 Ctx.getDeclAlign(D) > Ctx.getTypeAlignInChars(Ctx.getUIntPtrType())))
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000905 IsByRef = true;
906
907 return IsByRef;
908}
909
Alexey Bataev90c228f2016-02-08 09:29:13 +0000910VarDecl *Sema::IsOpenMPCapturedDecl(ValueDecl *D) {
Alexey Bataevf841bd92014-12-16 07:00:22 +0000911 assert(LangOpts.OpenMP && "OpenMP is not allowed");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000912 D = getCanonicalDecl(D);
Samuel Antao4be30e92015-10-02 17:14:03 +0000913
914 // If we are attempting to capture a global variable in a directive with
915 // 'target' we return true so that this global is also mapped to the device.
916 //
917 // FIXME: If the declaration is enclosed in a 'declare target' directive,
918 // then it should not be captured. Therefore, an extra check has to be
919 // inserted here once support for 'declare target' is added.
920 //
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000921 auto *VD = dyn_cast<VarDecl>(D);
922 if (VD && !VD->hasLocalStorage()) {
Samuel Antao4be30e92015-10-02 17:14:03 +0000923 if (DSAStack->getCurrentDirective() == OMPD_target &&
Alexey Bataev90c228f2016-02-08 09:29:13 +0000924 !DSAStack->isClauseParsingMode())
925 return VD;
Samuel Antao4be30e92015-10-02 17:14:03 +0000926 if (DSAStack->getCurScope() &&
927 DSAStack->hasDirective(
928 [](OpenMPDirectiveKind K, const DeclarationNameInfo &DNI,
929 SourceLocation Loc) -> bool {
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +0000930 return isOpenMPTargetExecutionDirective(K);
Samuel Antao4be30e92015-10-02 17:14:03 +0000931 },
Alexey Bataev90c228f2016-02-08 09:29:13 +0000932 false))
933 return VD;
Samuel Antao4be30e92015-10-02 17:14:03 +0000934 }
935
Alexey Bataev48977c32015-08-04 08:10:48 +0000936 if (DSAStack->getCurrentDirective() != OMPD_unknown &&
937 (!DSAStack->isClauseParsingMode() ||
938 DSAStack->getParentDirective() != OMPD_unknown)) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000939 auto &&Info = DSAStack->isLoopControlVariable(D);
940 if (Info.first ||
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000941 (VD && VD->hasLocalStorage() &&
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000942 isParallelOrTaskRegion(DSAStack->getCurrentDirective())) ||
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000943 (VD && DSAStack->isForceVarCapturing()))
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000944 return VD ? VD : Info.second;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000945 auto DVarPrivate = DSAStack->getTopDSA(D, DSAStack->isClauseParsingMode());
Alexey Bataevf841bd92014-12-16 07:00:22 +0000946 if (DVarPrivate.CKind != OMPC_unknown && isOpenMPPrivate(DVarPrivate.CKind))
Alexey Bataev90c228f2016-02-08 09:29:13 +0000947 return VD ? VD : cast<VarDecl>(DVarPrivate.PrivateCopy->getDecl());
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000948 DVarPrivate = DSAStack->hasDSA(D, isOpenMPPrivate, MatchesAlways(),
Alexey Bataevaac108a2015-06-23 04:51:00 +0000949 DSAStack->isClauseParsingMode());
Alexey Bataev90c228f2016-02-08 09:29:13 +0000950 if (DVarPrivate.CKind != OMPC_unknown)
951 return VD ? VD : cast<VarDecl>(DVarPrivate.PrivateCopy->getDecl());
Alexey Bataevf841bd92014-12-16 07:00:22 +0000952 }
Alexey Bataev90c228f2016-02-08 09:29:13 +0000953 return nullptr;
Alexey Bataevf841bd92014-12-16 07:00:22 +0000954}
955
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000956bool Sema::isOpenMPPrivateDecl(ValueDecl *D, unsigned Level) {
Alexey Bataevaac108a2015-06-23 04:51:00 +0000957 assert(LangOpts.OpenMP && "OpenMP is not allowed");
958 return DSAStack->hasExplicitDSA(
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000959 D, [](OpenMPClauseKind K) -> bool { return K == OMPC_private; }, Level);
Alexey Bataevaac108a2015-06-23 04:51:00 +0000960}
961
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000962bool Sema::isOpenMPTargetCapturedDecl(ValueDecl *D, unsigned Level) {
Samuel Antao4be30e92015-10-02 17:14:03 +0000963 assert(LangOpts.OpenMP && "OpenMP is not allowed");
964 // Return true if the current level is no longer enclosed in a target region.
965
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000966 auto *VD = dyn_cast<VarDecl>(D);
967 return VD && !VD->hasLocalStorage() &&
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +0000968 DSAStack->hasExplicitDirective(isOpenMPTargetExecutionDirective,
969 Level);
Samuel Antao4be30e92015-10-02 17:14:03 +0000970}
971
Alexey Bataeved09d242014-05-28 05:53:51 +0000972void Sema::DestroyDataSharingAttributesStack() { delete DSAStack; }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000973
974void Sema::StartOpenMPDSABlock(OpenMPDirectiveKind DKind,
975 const DeclarationNameInfo &DirName,
Alexey Bataevbae9a792014-06-27 10:37:06 +0000976 Scope *CurScope, SourceLocation Loc) {
977 DSAStack->push(DKind, DirName, CurScope, Loc);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000978 PushExpressionEvaluationContext(PotentiallyEvaluated);
979}
980
Alexey Bataevaac108a2015-06-23 04:51:00 +0000981void Sema::StartOpenMPClause(OpenMPClauseKind K) {
982 DSAStack->setClauseParsingMode(K);
Alexey Bataev39f915b82015-05-08 10:41:21 +0000983}
984
Alexey Bataevaac108a2015-06-23 04:51:00 +0000985void Sema::EndOpenMPClause() {
986 DSAStack->setClauseParsingMode(/*K=*/OMPC_unknown);
Alexey Bataev39f915b82015-05-08 10:41:21 +0000987}
988
Alexey Bataev758e55e2013-09-06 18:03:48 +0000989void Sema::EndOpenMPDSABlock(Stmt *CurDirective) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000990 // OpenMP [2.14.3.5, Restrictions, C/C++, p.1]
991 // A variable of class type (or array thereof) that appears in a lastprivate
992 // clause requires an accessible, unambiguous default constructor for the
993 // class type, unless the list item is also specified in a firstprivate
994 // clause.
995 if (auto D = dyn_cast_or_null<OMPExecutableDirective>(CurDirective)) {
Alexey Bataev38e89532015-04-16 04:54:05 +0000996 for (auto *C : D->clauses()) {
997 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) {
998 SmallVector<Expr *, 8> PrivateCopies;
999 for (auto *DE : Clause->varlists()) {
1000 if (DE->isValueDependent() || DE->isTypeDependent()) {
1001 PrivateCopies.push_back(nullptr);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001002 continue;
Alexey Bataev38e89532015-04-16 04:54:05 +00001003 }
Alexey Bataev74caaf22016-02-20 04:09:36 +00001004 auto *DRE = cast<DeclRefExpr>(DE->IgnoreParens());
Alexey Bataev005248a2016-02-25 05:25:57 +00001005 VarDecl *VD = cast<VarDecl>(DRE->getDecl());
1006 QualType Type = VD->getType().getNonReferenceType();
1007 auto DVar = DSAStack->getTopDSA(VD, false);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001008 if (DVar.CKind == OMPC_lastprivate) {
Alexey Bataev38e89532015-04-16 04:54:05 +00001009 // Generate helper private variable and initialize it with the
1010 // default value. The address of the original variable is replaced
1011 // by the address of the new private variable in CodeGen. This new
1012 // variable is not added to IdResolver, so the code in the OpenMP
1013 // region uses original variable for proper diagnostics.
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00001014 auto *VDPrivate = buildVarDecl(
1015 *this, DE->getExprLoc(), Type.getUnqualifiedType(),
Alexey Bataev005248a2016-02-25 05:25:57 +00001016 VD->getName(), VD->hasAttrs() ? &VD->getAttrs() : nullptr);
Alexey Bataev38e89532015-04-16 04:54:05 +00001017 ActOnUninitializedDecl(VDPrivate, /*TypeMayContainAuto=*/false);
1018 if (VDPrivate->isInvalidDecl())
1019 continue;
Alexey Bataev39f915b82015-05-08 10:41:21 +00001020 PrivateCopies.push_back(buildDeclRefExpr(
1021 *this, VDPrivate, DE->getType(), DE->getExprLoc()));
Alexey Bataev38e89532015-04-16 04:54:05 +00001022 } else {
1023 // The variable is also a firstprivate, so initialization sequence
1024 // for private copy is generated already.
1025 PrivateCopies.push_back(nullptr);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001026 }
1027 }
Alexey Bataev38e89532015-04-16 04:54:05 +00001028 // Set initializers to private copies if no errors were found.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001029 if (PrivateCopies.size() == Clause->varlist_size())
Alexey Bataev38e89532015-04-16 04:54:05 +00001030 Clause->setPrivateCopies(PrivateCopies);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001031 }
1032 }
1033 }
1034
Alexey Bataev758e55e2013-09-06 18:03:48 +00001035 DSAStack->pop();
1036 DiscardCleanupsInEvaluationContext();
1037 PopExpressionEvaluationContext();
1038}
1039
Alexey Bataev5a3af132016-03-29 08:58:54 +00001040static bool
1041FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV,
1042 Expr *NumIterations, Sema &SemaRef, Scope *S);
Alexander Musman3276a272015-03-21 10:12:56 +00001043
Alexey Bataeva769e072013-03-22 06:34:35 +00001044namespace {
1045
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001046class VarDeclFilterCCC : public CorrectionCandidateCallback {
1047private:
Alexey Bataev7ff55242014-06-19 09:13:45 +00001048 Sema &SemaRef;
Alexey Bataeved09d242014-05-28 05:53:51 +00001049
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001050public:
Alexey Bataev7ff55242014-06-19 09:13:45 +00001051 explicit VarDeclFilterCCC(Sema &S) : SemaRef(S) {}
Craig Toppere14c0f82014-03-12 04:55:44 +00001052 bool ValidateCandidate(const TypoCorrection &Candidate) override {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001053 NamedDecl *ND = Candidate.getCorrectionDecl();
1054 if (VarDecl *VD = dyn_cast_or_null<VarDecl>(ND)) {
1055 return VD->hasGlobalStorage() &&
Alexey Bataev7ff55242014-06-19 09:13:45 +00001056 SemaRef.isDeclInScope(ND, SemaRef.getCurLexicalContext(),
1057 SemaRef.getCurScope());
Alexey Bataeva769e072013-03-22 06:34:35 +00001058 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001059 return false;
Alexey Bataeva769e072013-03-22 06:34:35 +00001060 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001061};
Alexey Bataeved09d242014-05-28 05:53:51 +00001062} // namespace
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001063
1064ExprResult Sema::ActOnOpenMPIdExpression(Scope *CurScope,
1065 CXXScopeSpec &ScopeSpec,
1066 const DeclarationNameInfo &Id) {
1067 LookupResult Lookup(*this, Id, LookupOrdinaryName);
1068 LookupParsedName(Lookup, CurScope, &ScopeSpec, true);
1069
1070 if (Lookup.isAmbiguous())
1071 return ExprError();
1072
1073 VarDecl *VD;
1074 if (!Lookup.isSingleResult()) {
Kaelyn Takata89c881b2014-10-27 18:07:29 +00001075 if (TypoCorrection Corrected = CorrectTypo(
1076 Id, LookupOrdinaryName, CurScope, nullptr,
1077 llvm::make_unique<VarDeclFilterCCC>(*this), CTK_ErrorRecovery)) {
Richard Smithf9b15102013-08-17 00:46:16 +00001078 diagnoseTypo(Corrected,
Alexander Musmancb7f9c42014-05-15 13:04:49 +00001079 PDiag(Lookup.empty()
1080 ? diag::err_undeclared_var_use_suggest
1081 : diag::err_omp_expected_var_arg_suggest)
1082 << Id.getName());
Richard Smithf9b15102013-08-17 00:46:16 +00001083 VD = Corrected.getCorrectionDeclAs<VarDecl>();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001084 } else {
Richard Smithf9b15102013-08-17 00:46:16 +00001085 Diag(Id.getLoc(), Lookup.empty() ? diag::err_undeclared_var_use
1086 : diag::err_omp_expected_var_arg)
1087 << Id.getName();
1088 return ExprError();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001089 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001090 } else {
1091 if (!(VD = Lookup.getAsSingle<VarDecl>())) {
Alexey Bataeved09d242014-05-28 05:53:51 +00001092 Diag(Id.getLoc(), diag::err_omp_expected_var_arg) << Id.getName();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001093 Diag(Lookup.getFoundDecl()->getLocation(), diag::note_declared_at);
1094 return ExprError();
1095 }
1096 }
1097 Lookup.suppressDiagnostics();
1098
1099 // OpenMP [2.9.2, Syntax, C/C++]
1100 // Variables must be file-scope, namespace-scope, or static block-scope.
1101 if (!VD->hasGlobalStorage()) {
1102 Diag(Id.getLoc(), diag::err_omp_global_var_arg)
Alexey Bataeved09d242014-05-28 05:53:51 +00001103 << getOpenMPDirectiveName(OMPD_threadprivate) << !VD->isStaticLocal();
1104 bool IsDecl =
1105 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001106 Diag(VD->getLocation(),
Alexey Bataeved09d242014-05-28 05:53:51 +00001107 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1108 << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001109 return ExprError();
1110 }
1111
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001112 VarDecl *CanonicalVD = VD->getCanonicalDecl();
1113 NamedDecl *ND = cast<NamedDecl>(CanonicalVD);
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001114 // OpenMP [2.9.2, Restrictions, C/C++, p.2]
1115 // A threadprivate directive for file-scope variables must appear outside
1116 // any definition or declaration.
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001117 if (CanonicalVD->getDeclContext()->isTranslationUnit() &&
1118 !getCurLexicalContext()->isTranslationUnit()) {
1119 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +00001120 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
1121 bool IsDecl =
1122 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1123 Diag(VD->getLocation(),
1124 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1125 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001126 return ExprError();
1127 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001128 // OpenMP [2.9.2, Restrictions, C/C++, p.3]
1129 // A threadprivate directive for static class member variables must appear
1130 // in the class definition, in the same scope in which the member
1131 // variables are declared.
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001132 if (CanonicalVD->isStaticDataMember() &&
1133 !CanonicalVD->getDeclContext()->Equals(getCurLexicalContext())) {
1134 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +00001135 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
1136 bool IsDecl =
1137 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1138 Diag(VD->getLocation(),
1139 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1140 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001141 return ExprError();
1142 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001143 // OpenMP [2.9.2, Restrictions, C/C++, p.4]
1144 // A threadprivate directive for namespace-scope variables must appear
1145 // outside any definition or declaration other than the namespace
1146 // definition itself.
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001147 if (CanonicalVD->getDeclContext()->isNamespace() &&
1148 (!getCurLexicalContext()->isFileContext() ||
1149 !getCurLexicalContext()->Encloses(CanonicalVD->getDeclContext()))) {
1150 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +00001151 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
1152 bool IsDecl =
1153 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1154 Diag(VD->getLocation(),
1155 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1156 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001157 return ExprError();
1158 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001159 // OpenMP [2.9.2, Restrictions, C/C++, p.6]
1160 // A threadprivate directive for static block-scope variables must appear
1161 // in the scope of the variable and not in a nested scope.
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001162 if (CanonicalVD->isStaticLocal() && CurScope &&
1163 !isDeclInScope(ND, getCurLexicalContext(), CurScope)) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001164 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +00001165 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
1166 bool IsDecl =
1167 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1168 Diag(VD->getLocation(),
1169 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1170 << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001171 return ExprError();
1172 }
1173
1174 // OpenMP [2.9.2, Restrictions, C/C++, p.2-6]
1175 // A threadprivate directive must lexically precede all references to any
1176 // of the variables in its list.
Alexey Bataev6ddfe1a2015-04-16 13:49:42 +00001177 if (VD->isUsed() && !DSAStack->isThreadPrivate(VD)) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001178 Diag(Id.getLoc(), diag::err_omp_var_used)
Alexey Bataeved09d242014-05-28 05:53:51 +00001179 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001180 return ExprError();
1181 }
1182
1183 QualType ExprType = VD->getType().getNonReferenceType();
Alexey Bataev376b4a42016-02-09 09:41:09 +00001184 return DeclRefExpr::Create(Context, NestedNameSpecifierLoc(),
1185 SourceLocation(), VD,
1186 /*RefersToEnclosingVariableOrCapture=*/false,
1187 Id.getLoc(), ExprType, VK_LValue);
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001188}
1189
Alexey Bataeved09d242014-05-28 05:53:51 +00001190Sema::DeclGroupPtrTy
1191Sema::ActOnOpenMPThreadprivateDirective(SourceLocation Loc,
1192 ArrayRef<Expr *> VarList) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001193 if (OMPThreadPrivateDecl *D = CheckOMPThreadPrivateDecl(Loc, VarList)) {
Alexey Bataeva769e072013-03-22 06:34:35 +00001194 CurContext->addDecl(D);
1195 return DeclGroupPtrTy::make(DeclGroupRef(D));
1196 }
David Blaikie0403cb12016-01-15 23:43:25 +00001197 return nullptr;
Alexey Bataeva769e072013-03-22 06:34:35 +00001198}
1199
Alexey Bataev18b92ee2014-05-28 07:40:25 +00001200namespace {
1201class LocalVarRefChecker : public ConstStmtVisitor<LocalVarRefChecker, bool> {
1202 Sema &SemaRef;
1203
1204public:
1205 bool VisitDeclRefExpr(const DeclRefExpr *E) {
1206 if (auto VD = dyn_cast<VarDecl>(E->getDecl())) {
1207 if (VD->hasLocalStorage()) {
1208 SemaRef.Diag(E->getLocStart(),
1209 diag::err_omp_local_var_in_threadprivate_init)
1210 << E->getSourceRange();
1211 SemaRef.Diag(VD->getLocation(), diag::note_defined_here)
1212 << VD << VD->getSourceRange();
1213 return true;
1214 }
1215 }
1216 return false;
1217 }
1218 bool VisitStmt(const Stmt *S) {
1219 for (auto Child : S->children()) {
1220 if (Child && Visit(Child))
1221 return true;
1222 }
1223 return false;
1224 }
Alexey Bataev23b69422014-06-18 07:08:49 +00001225 explicit LocalVarRefChecker(Sema &SemaRef) : SemaRef(SemaRef) {}
Alexey Bataev18b92ee2014-05-28 07:40:25 +00001226};
1227} // namespace
1228
Alexey Bataeved09d242014-05-28 05:53:51 +00001229OMPThreadPrivateDecl *
1230Sema::CheckOMPThreadPrivateDecl(SourceLocation Loc, ArrayRef<Expr *> VarList) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001231 SmallVector<Expr *, 8> Vars;
Alexey Bataeved09d242014-05-28 05:53:51 +00001232 for (auto &RefExpr : VarList) {
1233 DeclRefExpr *DE = cast<DeclRefExpr>(RefExpr);
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001234 VarDecl *VD = cast<VarDecl>(DE->getDecl());
1235 SourceLocation ILoc = DE->getExprLoc();
Alexey Bataeva769e072013-03-22 06:34:35 +00001236
Alexey Bataev376b4a42016-02-09 09:41:09 +00001237 // Mark variable as used.
1238 VD->setReferenced();
1239 VD->markUsed(Context);
1240
Alexey Bataevf56f98c2015-04-16 05:39:01 +00001241 QualType QType = VD->getType();
1242 if (QType->isDependentType() || QType->isInstantiationDependentType()) {
1243 // It will be analyzed later.
1244 Vars.push_back(DE);
1245 continue;
1246 }
1247
Alexey Bataeva769e072013-03-22 06:34:35 +00001248 // OpenMP [2.9.2, Restrictions, C/C++, p.10]
1249 // A threadprivate variable must not have an incomplete type.
1250 if (RequireCompleteType(ILoc, VD->getType(),
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001251 diag::err_omp_threadprivate_incomplete_type)) {
Alexey Bataeva769e072013-03-22 06:34:35 +00001252 continue;
1253 }
1254
1255 // OpenMP [2.9.2, Restrictions, C/C++, p.10]
1256 // A threadprivate variable must not have a reference type.
1257 if (VD->getType()->isReferenceType()) {
1258 Diag(ILoc, diag::err_omp_ref_type_arg)
Alexey Bataeved09d242014-05-28 05:53:51 +00001259 << getOpenMPDirectiveName(OMPD_threadprivate) << VD->getType();
1260 bool IsDecl =
1261 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1262 Diag(VD->getLocation(),
1263 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1264 << VD;
Alexey Bataeva769e072013-03-22 06:34:35 +00001265 continue;
1266 }
1267
Samuel Antaof8b50122015-07-13 22:54:53 +00001268 // Check if this is a TLS variable. If TLS is not being supported, produce
1269 // the corresponding diagnostic.
1270 if ((VD->getTLSKind() != VarDecl::TLS_None &&
1271 !(VD->hasAttr<OMPThreadPrivateDeclAttr>() &&
1272 getLangOpts().OpenMPUseTLS &&
1273 getASTContext().getTargetInfo().isTLSSupported())) ||
Alexey Bataev1a8b3f12015-05-06 06:34:55 +00001274 (VD->getStorageClass() == SC_Register && VD->hasAttr<AsmLabelAttr>() &&
1275 !VD->isLocalVarDecl())) {
Alexey Bataev26a39242015-01-13 03:35:30 +00001276 Diag(ILoc, diag::err_omp_var_thread_local)
1277 << VD << ((VD->getTLSKind() != VarDecl::TLS_None) ? 0 : 1);
Alexey Bataeved09d242014-05-28 05:53:51 +00001278 bool IsDecl =
1279 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1280 Diag(VD->getLocation(),
1281 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1282 << VD;
Alexey Bataeva769e072013-03-22 06:34:35 +00001283 continue;
1284 }
1285
Alexey Bataev18b92ee2014-05-28 07:40:25 +00001286 // Check if initial value of threadprivate variable reference variable with
1287 // local storage (it is not supported by runtime).
1288 if (auto Init = VD->getAnyInitializer()) {
1289 LocalVarRefChecker Checker(*this);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001290 if (Checker.Visit(Init))
1291 continue;
Alexey Bataev18b92ee2014-05-28 07:40:25 +00001292 }
1293
Alexey Bataeved09d242014-05-28 05:53:51 +00001294 Vars.push_back(RefExpr);
Alexey Bataevd178ad42014-03-07 08:03:37 +00001295 DSAStack->addDSA(VD, DE, OMPC_threadprivate);
Alexey Bataev97720002014-11-11 04:05:39 +00001296 VD->addAttr(OMPThreadPrivateDeclAttr::CreateImplicit(
1297 Context, SourceRange(Loc, Loc)));
1298 if (auto *ML = Context.getASTMutationListener())
1299 ML->DeclarationMarkedOpenMPThreadPrivate(VD);
Alexey Bataeva769e072013-03-22 06:34:35 +00001300 }
Alexander Musmancb7f9c42014-05-15 13:04:49 +00001301 OMPThreadPrivateDecl *D = nullptr;
Alexey Bataevec3da872014-01-31 05:15:34 +00001302 if (!Vars.empty()) {
1303 D = OMPThreadPrivateDecl::Create(Context, getCurLexicalContext(), Loc,
1304 Vars);
1305 D->setAccess(AS_public);
1306 }
1307 return D;
Alexey Bataeva769e072013-03-22 06:34:35 +00001308}
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001309
Alexey Bataev7ff55242014-06-19 09:13:45 +00001310static void ReportOriginalDSA(Sema &SemaRef, DSAStackTy *Stack,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001311 const ValueDecl *D, DSAStackTy::DSAVarData DVar,
Alexey Bataev7ff55242014-06-19 09:13:45 +00001312 bool IsLoopIterVar = false) {
1313 if (DVar.RefExpr) {
1314 SemaRef.Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_explicit_dsa)
1315 << getOpenMPClauseName(DVar.CKind);
1316 return;
1317 }
1318 enum {
1319 PDSA_StaticMemberShared,
1320 PDSA_StaticLocalVarShared,
1321 PDSA_LoopIterVarPrivate,
1322 PDSA_LoopIterVarLinear,
1323 PDSA_LoopIterVarLastprivate,
1324 PDSA_ConstVarShared,
1325 PDSA_GlobalVarShared,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001326 PDSA_TaskVarFirstprivate,
Alexey Bataevbae9a792014-06-27 10:37:06 +00001327 PDSA_LocalVarPrivate,
1328 PDSA_Implicit
1329 } Reason = PDSA_Implicit;
Alexey Bataev7ff55242014-06-19 09:13:45 +00001330 bool ReportHint = false;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001331 auto ReportLoc = D->getLocation();
1332 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataev7ff55242014-06-19 09:13:45 +00001333 if (IsLoopIterVar) {
1334 if (DVar.CKind == OMPC_private)
1335 Reason = PDSA_LoopIterVarPrivate;
1336 else if (DVar.CKind == OMPC_lastprivate)
1337 Reason = PDSA_LoopIterVarLastprivate;
1338 else
1339 Reason = PDSA_LoopIterVarLinear;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001340 } else if (DVar.DKind == OMPD_task && DVar.CKind == OMPC_firstprivate) {
1341 Reason = PDSA_TaskVarFirstprivate;
1342 ReportLoc = DVar.ImplicitDSALoc;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001343 } else if (VD && VD->isStaticLocal())
Alexey Bataev7ff55242014-06-19 09:13:45 +00001344 Reason = PDSA_StaticLocalVarShared;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001345 else if (VD && VD->isStaticDataMember())
Alexey Bataev7ff55242014-06-19 09:13:45 +00001346 Reason = PDSA_StaticMemberShared;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001347 else if (VD && VD->isFileVarDecl())
Alexey Bataev7ff55242014-06-19 09:13:45 +00001348 Reason = PDSA_GlobalVarShared;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001349 else if (D->getType().isConstant(SemaRef.getASTContext()))
Alexey Bataev7ff55242014-06-19 09:13:45 +00001350 Reason = PDSA_ConstVarShared;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001351 else if (VD && VD->isLocalVarDecl() && DVar.CKind == OMPC_private) {
Alexey Bataev7ff55242014-06-19 09:13:45 +00001352 ReportHint = true;
1353 Reason = PDSA_LocalVarPrivate;
1354 }
Alexey Bataevbae9a792014-06-27 10:37:06 +00001355 if (Reason != PDSA_Implicit) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001356 SemaRef.Diag(ReportLoc, diag::note_omp_predetermined_dsa)
Alexey Bataevbae9a792014-06-27 10:37:06 +00001357 << Reason << ReportHint
1358 << getOpenMPDirectiveName(Stack->getCurrentDirective());
1359 } else if (DVar.ImplicitDSALoc.isValid()) {
1360 SemaRef.Diag(DVar.ImplicitDSALoc, diag::note_omp_implicit_dsa)
1361 << getOpenMPClauseName(DVar.CKind);
1362 }
Alexey Bataev7ff55242014-06-19 09:13:45 +00001363}
1364
Alexey Bataev758e55e2013-09-06 18:03:48 +00001365namespace {
1366class DSAAttrChecker : public StmtVisitor<DSAAttrChecker, void> {
1367 DSAStackTy *Stack;
Alexey Bataev7ff55242014-06-19 09:13:45 +00001368 Sema &SemaRef;
Alexey Bataev758e55e2013-09-06 18:03:48 +00001369 bool ErrorFound;
1370 CapturedStmt *CS;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001371 llvm::SmallVector<Expr *, 8> ImplicitFirstprivate;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001372 llvm::DenseMap<ValueDecl *, Expr *> VarsWithInheritedDSA;
Alexey Bataeved09d242014-05-28 05:53:51 +00001373
Alexey Bataev758e55e2013-09-06 18:03:48 +00001374public:
1375 void VisitDeclRefExpr(DeclRefExpr *E) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001376 if (auto *VD = dyn_cast<VarDecl>(E->getDecl())) {
Alexey Bataev758e55e2013-09-06 18:03:48 +00001377 // Skip internally declared variables.
Alexey Bataeved09d242014-05-28 05:53:51 +00001378 if (VD->isLocalVarDecl() && !CS->capturesVariable(VD))
1379 return;
Alexey Bataev758e55e2013-09-06 18:03:48 +00001380
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001381 auto DVar = Stack->getTopDSA(VD, false);
1382 // Check if the variable has explicit DSA set and stop analysis if it so.
1383 if (DVar.RefExpr) return;
Alexey Bataev758e55e2013-09-06 18:03:48 +00001384
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001385 auto ELoc = E->getExprLoc();
1386 auto DKind = Stack->getCurrentDirective();
Alexey Bataev758e55e2013-09-06 18:03:48 +00001387 // The default(none) clause requires that each variable that is referenced
1388 // in the construct, and does not have a predetermined data-sharing
1389 // attribute, must have its data-sharing attribute explicitly determined
1390 // by being listed in a data-sharing attribute clause.
1391 if (DVar.CKind == OMPC_unknown && Stack->getDefaultDSA() == DSA_none &&
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001392 isParallelOrTaskRegion(DKind) &&
Alexey Bataev4acb8592014-07-07 13:01:15 +00001393 VarsWithInheritedDSA.count(VD) == 0) {
1394 VarsWithInheritedDSA[VD] = E;
Alexey Bataev758e55e2013-09-06 18:03:48 +00001395 return;
1396 }
1397
1398 // OpenMP [2.9.3.6, Restrictions, p.2]
1399 // A list item that appears in a reduction clause of the innermost
1400 // enclosing worksharing or parallel construct may not be accessed in an
1401 // explicit task.
Alexey Bataevf29276e2014-06-18 04:14:57 +00001402 DVar = Stack->hasInnermostDSA(VD, MatchesAnyClause(OMPC_reduction),
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001403 [](OpenMPDirectiveKind K) -> bool {
1404 return isOpenMPParallelDirective(K) ||
Alexey Bataev13314bf2014-10-09 04:18:56 +00001405 isOpenMPWorksharingDirective(K) ||
1406 isOpenMPTeamsDirective(K);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001407 },
1408 false);
Alexey Bataevc5e02582014-06-16 07:08:35 +00001409 if (DKind == OMPD_task && DVar.CKind == OMPC_reduction) {
1410 ErrorFound = true;
Alexey Bataev7ff55242014-06-19 09:13:45 +00001411 SemaRef.Diag(ELoc, diag::err_omp_reduction_in_task);
1412 ReportOriginalDSA(SemaRef, Stack, VD, DVar);
Alexey Bataevc5e02582014-06-16 07:08:35 +00001413 return;
1414 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001415
1416 // Define implicit data-sharing attributes for task.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001417 DVar = Stack->getImplicitDSA(VD, false);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001418 if (DKind == OMPD_task && DVar.CKind != OMPC_shared)
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001419 ImplicitFirstprivate.push_back(E);
Alexey Bataev758e55e2013-09-06 18:03:48 +00001420 }
1421 }
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001422 void VisitMemberExpr(MemberExpr *E) {
1423 if (isa<CXXThisExpr>(E->getBase()->IgnoreParens())) {
1424 if (auto *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) {
1425 auto DVar = Stack->getTopDSA(FD, false);
1426 // Check if the variable has explicit DSA set and stop analysis if it
1427 // so.
1428 if (DVar.RefExpr)
1429 return;
1430
1431 auto ELoc = E->getExprLoc();
1432 auto DKind = Stack->getCurrentDirective();
1433 // OpenMP [2.9.3.6, Restrictions, p.2]
1434 // A list item that appears in a reduction clause of the innermost
1435 // enclosing worksharing or parallel construct may not be accessed in
Alexey Bataevd985eda2016-02-10 11:29:16 +00001436 // an explicit task.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001437 DVar =
1438 Stack->hasInnermostDSA(FD, MatchesAnyClause(OMPC_reduction),
1439 [](OpenMPDirectiveKind K) -> bool {
1440 return isOpenMPParallelDirective(K) ||
1441 isOpenMPWorksharingDirective(K) ||
1442 isOpenMPTeamsDirective(K);
1443 },
1444 false);
1445 if (DKind == OMPD_task && DVar.CKind == OMPC_reduction) {
1446 ErrorFound = true;
1447 SemaRef.Diag(ELoc, diag::err_omp_reduction_in_task);
1448 ReportOriginalDSA(SemaRef, Stack, FD, DVar);
1449 return;
1450 }
1451
1452 // Define implicit data-sharing attributes for task.
1453 DVar = Stack->getImplicitDSA(FD, false);
1454 if (DKind == OMPD_task && DVar.CKind != OMPC_shared)
1455 ImplicitFirstprivate.push_back(E);
1456 }
1457 }
1458 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001459 void VisitOMPExecutableDirective(OMPExecutableDirective *S) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001460 for (auto *C : S->clauses()) {
1461 // Skip analysis of arguments of implicitly defined firstprivate clause
1462 // for task directives.
1463 if (C && (!isa<OMPFirstprivateClause>(C) || C->getLocStart().isValid()))
1464 for (auto *CC : C->children()) {
1465 if (CC)
1466 Visit(CC);
1467 }
1468 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001469 }
1470 void VisitStmt(Stmt *S) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001471 for (auto *C : S->children()) {
1472 if (C && !isa<OMPExecutableDirective>(C))
1473 Visit(C);
1474 }
Alexey Bataeved09d242014-05-28 05:53:51 +00001475 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001476
1477 bool isErrorFound() { return ErrorFound; }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001478 ArrayRef<Expr *> getImplicitFirstprivate() { return ImplicitFirstprivate; }
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001479 llvm::DenseMap<ValueDecl *, Expr *> &getVarsWithInheritedDSA() {
Alexey Bataev4acb8592014-07-07 13:01:15 +00001480 return VarsWithInheritedDSA;
1481 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001482
Alexey Bataev7ff55242014-06-19 09:13:45 +00001483 DSAAttrChecker(DSAStackTy *S, Sema &SemaRef, CapturedStmt *CS)
1484 : Stack(S), SemaRef(SemaRef), ErrorFound(false), CS(CS) {}
Alexey Bataev758e55e2013-09-06 18:03:48 +00001485};
Alexey Bataeved09d242014-05-28 05:53:51 +00001486} // namespace
Alexey Bataev758e55e2013-09-06 18:03:48 +00001487
Alexey Bataevbae9a792014-06-27 10:37:06 +00001488void Sema::ActOnOpenMPRegionStart(OpenMPDirectiveKind DKind, Scope *CurScope) {
Alexey Bataev9959db52014-05-06 10:08:46 +00001489 switch (DKind) {
1490 case OMPD_parallel: {
1491 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
Alexey Bataev2377fe92015-09-10 08:12:02 +00001492 QualType KmpInt32PtrTy =
1493 Context.getPointerType(KmpInt32Ty).withConst().withRestrict();
Alexey Bataevdf9b1592014-06-25 04:09:13 +00001494 Sema::CapturedParamNameType Params[] = {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001495 std::make_pair(".global_tid.", KmpInt32PtrTy),
1496 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1497 std::make_pair(StringRef(), QualType()) // __context with shared vars
Alexey Bataev9959db52014-05-06 10:08:46 +00001498 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001499 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1500 Params);
Alexey Bataev9959db52014-05-06 10:08:46 +00001501 break;
1502 }
1503 case OMPD_simd: {
Alexey Bataevdf9b1592014-06-25 04:09:13 +00001504 Sema::CapturedParamNameType Params[] = {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001505 std::make_pair(StringRef(), QualType()) // __context with shared vars
1506 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001507 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1508 Params);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001509 break;
1510 }
1511 case OMPD_for: {
Alexey Bataevdf9b1592014-06-25 04:09:13 +00001512 Sema::CapturedParamNameType Params[] = {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001513 std::make_pair(StringRef(), QualType()) // __context with shared vars
Alexey Bataev9959db52014-05-06 10:08:46 +00001514 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001515 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1516 Params);
Alexey Bataev9959db52014-05-06 10:08:46 +00001517 break;
1518 }
Alexander Musmanf82886e2014-09-18 05:12:34 +00001519 case OMPD_for_simd: {
1520 Sema::CapturedParamNameType Params[] = {
1521 std::make_pair(StringRef(), QualType()) // __context with shared vars
1522 };
1523 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1524 Params);
1525 break;
1526 }
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00001527 case OMPD_sections: {
1528 Sema::CapturedParamNameType Params[] = {
1529 std::make_pair(StringRef(), QualType()) // __context with shared vars
1530 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001531 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1532 Params);
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00001533 break;
1534 }
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001535 case OMPD_section: {
1536 Sema::CapturedParamNameType Params[] = {
1537 std::make_pair(StringRef(), QualType()) // __context with shared vars
1538 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001539 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1540 Params);
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001541 break;
1542 }
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00001543 case OMPD_single: {
1544 Sema::CapturedParamNameType Params[] = {
1545 std::make_pair(StringRef(), QualType()) // __context with shared vars
1546 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001547 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1548 Params);
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00001549 break;
1550 }
Alexander Musman80c22892014-07-17 08:54:58 +00001551 case OMPD_master: {
1552 Sema::CapturedParamNameType Params[] = {
1553 std::make_pair(StringRef(), QualType()) // __context with shared vars
1554 };
1555 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1556 Params);
1557 break;
1558 }
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001559 case OMPD_critical: {
1560 Sema::CapturedParamNameType Params[] = {
1561 std::make_pair(StringRef(), QualType()) // __context with shared vars
1562 };
1563 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1564 Params);
1565 break;
1566 }
Alexey Bataev4acb8592014-07-07 13:01:15 +00001567 case OMPD_parallel_for: {
1568 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
Alexey Bataev2377fe92015-09-10 08:12:02 +00001569 QualType KmpInt32PtrTy =
1570 Context.getPointerType(KmpInt32Ty).withConst().withRestrict();
Alexey Bataev4acb8592014-07-07 13:01:15 +00001571 Sema::CapturedParamNameType Params[] = {
1572 std::make_pair(".global_tid.", KmpInt32PtrTy),
1573 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1574 std::make_pair(StringRef(), QualType()) // __context with shared vars
1575 };
1576 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1577 Params);
1578 break;
1579 }
Alexander Musmane4e893b2014-09-23 09:33:00 +00001580 case OMPD_parallel_for_simd: {
1581 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
Alexey Bataev2377fe92015-09-10 08:12:02 +00001582 QualType KmpInt32PtrTy =
1583 Context.getPointerType(KmpInt32Ty).withConst().withRestrict();
Alexander Musmane4e893b2014-09-23 09:33:00 +00001584 Sema::CapturedParamNameType Params[] = {
1585 std::make_pair(".global_tid.", KmpInt32PtrTy),
1586 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1587 std::make_pair(StringRef(), QualType()) // __context with shared vars
1588 };
1589 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1590 Params);
1591 break;
1592 }
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001593 case OMPD_parallel_sections: {
Alexey Bataev68adb7d2015-04-14 03:29:22 +00001594 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
Alexey Bataev2377fe92015-09-10 08:12:02 +00001595 QualType KmpInt32PtrTy =
1596 Context.getPointerType(KmpInt32Ty).withConst().withRestrict();
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001597 Sema::CapturedParamNameType Params[] = {
Alexey Bataev68adb7d2015-04-14 03:29:22 +00001598 std::make_pair(".global_tid.", KmpInt32PtrTy),
1599 std::make_pair(".bound_tid.", KmpInt32PtrTy),
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001600 std::make_pair(StringRef(), QualType()) // __context with shared vars
1601 };
1602 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1603 Params);
1604 break;
1605 }
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001606 case OMPD_task: {
Alexey Bataev62b63b12015-03-10 07:28:44 +00001607 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00001608 QualType Args[] = {Context.VoidPtrTy.withConst().withRestrict()};
1609 FunctionProtoType::ExtProtoInfo EPI;
1610 EPI.Variadic = true;
1611 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001612 Sema::CapturedParamNameType Params[] = {
Alexey Bataev62b63b12015-03-10 07:28:44 +00001613 std::make_pair(".global_tid.", KmpInt32Ty),
1614 std::make_pair(".part_id.", KmpInt32Ty),
Alexey Bataev3ae88e22015-05-22 08:56:35 +00001615 std::make_pair(".privates.",
1616 Context.VoidPtrTy.withConst().withRestrict()),
1617 std::make_pair(
1618 ".copy_fn.",
1619 Context.getPointerType(CopyFnType).withConst().withRestrict()),
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001620 std::make_pair(StringRef(), QualType()) // __context with shared vars
1621 };
1622 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1623 Params);
Alexey Bataev62b63b12015-03-10 07:28:44 +00001624 // Mark this captured region as inlined, because we don't use outlined
1625 // function directly.
1626 getCurCapturedRegion()->TheCapturedDecl->addAttr(
1627 AlwaysInlineAttr::CreateImplicit(
1628 Context, AlwaysInlineAttr::Keyword_forceinline, SourceRange()));
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001629 break;
1630 }
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001631 case OMPD_ordered: {
1632 Sema::CapturedParamNameType Params[] = {
1633 std::make_pair(StringRef(), QualType()) // __context with shared vars
1634 };
1635 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1636 Params);
1637 break;
1638 }
Alexey Bataev0162e452014-07-22 10:10:35 +00001639 case OMPD_atomic: {
1640 Sema::CapturedParamNameType Params[] = {
1641 std::make_pair(StringRef(), QualType()) // __context with shared vars
1642 };
1643 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1644 Params);
1645 break;
1646 }
Michael Wong65f367f2015-07-21 13:44:28 +00001647 case OMPD_target_data:
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00001648 case OMPD_target:
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00001649 case OMPD_target_parallel:
1650 case OMPD_target_parallel_for: {
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001651 Sema::CapturedParamNameType Params[] = {
1652 std::make_pair(StringRef(), QualType()) // __context with shared vars
1653 };
1654 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1655 Params);
1656 break;
1657 }
Alexey Bataev13314bf2014-10-09 04:18:56 +00001658 case OMPD_teams: {
1659 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
Alexey Bataev2377fe92015-09-10 08:12:02 +00001660 QualType KmpInt32PtrTy =
1661 Context.getPointerType(KmpInt32Ty).withConst().withRestrict();
Alexey Bataev13314bf2014-10-09 04:18:56 +00001662 Sema::CapturedParamNameType Params[] = {
1663 std::make_pair(".global_tid.", KmpInt32PtrTy),
1664 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1665 std::make_pair(StringRef(), QualType()) // __context with shared vars
1666 };
1667 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1668 Params);
1669 break;
1670 }
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001671 case OMPD_taskgroup: {
1672 Sema::CapturedParamNameType Params[] = {
1673 std::make_pair(StringRef(), QualType()) // __context with shared vars
1674 };
1675 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1676 Params);
1677 break;
1678 }
Alexey Bataev49f6e782015-12-01 04:18:41 +00001679 case OMPD_taskloop: {
1680 Sema::CapturedParamNameType Params[] = {
1681 std::make_pair(StringRef(), QualType()) // __context with shared vars
1682 };
1683 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1684 Params);
1685 break;
1686 }
Alexey Bataev0a6ed842015-12-03 09:40:15 +00001687 case OMPD_taskloop_simd: {
1688 Sema::CapturedParamNameType Params[] = {
1689 std::make_pair(StringRef(), QualType()) // __context with shared vars
1690 };
1691 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1692 Params);
1693 break;
1694 }
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00001695 case OMPD_distribute: {
1696 Sema::CapturedParamNameType Params[] = {
1697 std::make_pair(StringRef(), QualType()) // __context with shared vars
1698 };
1699 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1700 Params);
1701 break;
1702 }
Alexey Bataev9959db52014-05-06 10:08:46 +00001703 case OMPD_threadprivate:
Alexey Bataevee9af452014-11-21 11:33:46 +00001704 case OMPD_taskyield:
1705 case OMPD_barrier:
1706 case OMPD_taskwait:
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001707 case OMPD_cancellation_point:
Alexey Bataev80909872015-07-02 11:25:17 +00001708 case OMPD_cancel:
Alexey Bataevee9af452014-11-21 11:33:46 +00001709 case OMPD_flush:
Samuel Antaodf67fc42016-01-19 19:15:56 +00001710 case OMPD_target_enter_data:
Samuel Antao72590762016-01-19 20:04:50 +00001711 case OMPD_target_exit_data:
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00001712 case OMPD_declare_reduction:
Alexey Bataev587e1de2016-03-30 10:43:55 +00001713 case OMPD_declare_simd:
Dmitry Polukhin0b0da292016-04-06 11:38:59 +00001714 case OMPD_declare_target:
1715 case OMPD_end_declare_target:
Alexey Bataev9959db52014-05-06 10:08:46 +00001716 llvm_unreachable("OpenMP Directive is not allowed");
1717 case OMPD_unknown:
Alexey Bataev9959db52014-05-06 10:08:46 +00001718 llvm_unreachable("Unknown OpenMP directive");
1719 }
1720}
1721
Alexey Bataev3392d762016-02-16 11:18:12 +00001722static OMPCapturedExprDecl *buildCaptureDecl(Sema &S, IdentifierInfo *Id,
Alexey Bataev5a3af132016-03-29 08:58:54 +00001723 Expr *CaptureExpr, bool WithInit,
1724 bool AsExpression) {
Alexey Bataev2bbf7212016-03-03 03:52:24 +00001725 assert(CaptureExpr);
Alexey Bataev4244be22016-02-11 05:35:55 +00001726 ASTContext &C = S.getASTContext();
Alexey Bataev5a3af132016-03-29 08:58:54 +00001727 Expr *Init = AsExpression ? CaptureExpr : CaptureExpr->IgnoreImpCasts();
Alexey Bataev4244be22016-02-11 05:35:55 +00001728 QualType Ty = Init->getType();
1729 if (CaptureExpr->getObjectKind() == OK_Ordinary && CaptureExpr->isGLValue()) {
1730 if (S.getLangOpts().CPlusPlus)
1731 Ty = C.getLValueReferenceType(Ty);
1732 else {
1733 Ty = C.getPointerType(Ty);
1734 ExprResult Res =
1735 S.CreateBuiltinUnaryOp(CaptureExpr->getExprLoc(), UO_AddrOf, Init);
1736 if (!Res.isUsable())
1737 return nullptr;
1738 Init = Res.get();
1739 }
Alexey Bataev61205072016-03-02 04:57:40 +00001740 WithInit = true;
Alexey Bataev4244be22016-02-11 05:35:55 +00001741 }
1742 auto *CED = OMPCapturedExprDecl::Create(C, S.CurContext, Id, Ty);
Alexey Bataev2bbf7212016-03-03 03:52:24 +00001743 if (!WithInit)
1744 CED->addAttr(OMPCaptureNoInitAttr::CreateImplicit(C, SourceRange()));
Alexey Bataev4244be22016-02-11 05:35:55 +00001745 S.CurContext->addHiddenDecl(CED);
Alexey Bataev2bbf7212016-03-03 03:52:24 +00001746 S.AddInitializerToDecl(CED, Init, /*DirectInit=*/false,
1747 /*TypeMayContainAuto=*/true);
Alexey Bataev3392d762016-02-16 11:18:12 +00001748 return CED;
1749}
1750
Alexey Bataev61205072016-03-02 04:57:40 +00001751static DeclRefExpr *buildCapture(Sema &S, ValueDecl *D, Expr *CaptureExpr,
1752 bool WithInit) {
Alexey Bataevb7a34b62016-02-25 03:59:29 +00001753 OMPCapturedExprDecl *CD;
1754 if (auto *VD = S.IsOpenMPCapturedDecl(D))
1755 CD = cast<OMPCapturedExprDecl>(VD);
1756 else
Alexey Bataev5a3af132016-03-29 08:58:54 +00001757 CD = buildCaptureDecl(S, D->getIdentifier(), CaptureExpr, WithInit,
1758 /*AsExpression=*/false);
Alexey Bataev3392d762016-02-16 11:18:12 +00001759 return buildDeclRefExpr(S, CD, CD->getType().getNonReferenceType(),
Alexey Bataev1efd1662016-03-29 10:59:56 +00001760 CaptureExpr->getExprLoc());
Alexey Bataev3392d762016-02-16 11:18:12 +00001761}
1762
Alexey Bataev5a3af132016-03-29 08:58:54 +00001763static ExprResult buildCapture(Sema &S, Expr *CaptureExpr, DeclRefExpr *&Ref) {
1764 if (!Ref) {
1765 auto *CD =
1766 buildCaptureDecl(S, &S.getASTContext().Idents.get(".capture_expr."),
1767 CaptureExpr, /*WithInit=*/true, /*AsExpression=*/true);
1768 Ref = buildDeclRefExpr(S, CD, CD->getType().getNonReferenceType(),
1769 CaptureExpr->getExprLoc());
1770 }
1771 ExprResult Res = Ref;
1772 if (!S.getLangOpts().CPlusPlus &&
1773 CaptureExpr->getObjectKind() == OK_Ordinary && CaptureExpr->isGLValue() &&
1774 Ref->getType()->isPointerType())
1775 Res = S.CreateBuiltinUnaryOp(CaptureExpr->getExprLoc(), UO_Deref, Ref);
1776 if (!Res.isUsable())
1777 return ExprError();
1778 return CaptureExpr->isGLValue() ? Res : S.DefaultLvalueConversion(Res.get());
Alexey Bataev4244be22016-02-11 05:35:55 +00001779}
1780
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001781StmtResult Sema::ActOnOpenMPRegionEnd(StmtResult S,
1782 ArrayRef<OMPClause *> Clauses) {
1783 if (!S.isUsable()) {
1784 ActOnCapturedRegionError();
1785 return StmtError();
1786 }
Alexey Bataev993d2802015-12-28 06:23:08 +00001787
1788 OMPOrderedClause *OC = nullptr;
Alexey Bataev6402bca2015-12-28 07:25:51 +00001789 OMPScheduleClause *SC = nullptr;
Alexey Bataev993d2802015-12-28 06:23:08 +00001790 SmallVector<OMPLinearClause *, 4> LCs;
Alexey Bataev040d5402015-05-12 08:35:28 +00001791 // This is required for proper codegen.
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001792 for (auto *Clause : Clauses) {
Alexey Bataev16dc7b62015-05-20 03:46:04 +00001793 if (isOpenMPPrivate(Clause->getClauseKind()) ||
Samuel Antao9c75cfe2015-07-27 16:38:06 +00001794 Clause->getClauseKind() == OMPC_copyprivate ||
1795 (getLangOpts().OpenMPUseTLS &&
1796 getASTContext().getTargetInfo().isTLSSupported() &&
1797 Clause->getClauseKind() == OMPC_copyin)) {
1798 DSAStack->setForceVarCapturing(Clause->getClauseKind() == OMPC_copyin);
Alexey Bataev040d5402015-05-12 08:35:28 +00001799 // Mark all variables in private list clauses as used in inner region.
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001800 for (auto *VarRef : Clause->children()) {
1801 if (auto *E = cast_or_null<Expr>(VarRef)) {
Alexey Bataev8bf6b3e2015-04-02 13:07:08 +00001802 MarkDeclarationsReferencedInExpr(E);
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001803 }
1804 }
Samuel Antao9c75cfe2015-07-27 16:38:06 +00001805 DSAStack->setForceVarCapturing(/*V=*/false);
Alexey Bataev3392d762016-02-16 11:18:12 +00001806 } else if (isParallelOrTaskRegion(DSAStack->getCurrentDirective())) {
Alexey Bataev040d5402015-05-12 08:35:28 +00001807 // Mark all variables in private list clauses as used in inner region.
1808 // Required for proper codegen of combined directives.
1809 // TODO: add processing for other clauses.
Alexey Bataev3392d762016-02-16 11:18:12 +00001810 if (auto *C = OMPClauseWithPreInit::get(Clause)) {
Alexey Bataev005248a2016-02-25 05:25:57 +00001811 if (auto *DS = cast_or_null<DeclStmt>(C->getPreInitStmt())) {
1812 for (auto *D : DS->decls())
Alexey Bataev3392d762016-02-16 11:18:12 +00001813 MarkVariableReferenced(D->getLocation(), cast<VarDecl>(D));
1814 }
Alexey Bataev4244be22016-02-11 05:35:55 +00001815 }
Alexey Bataev005248a2016-02-25 05:25:57 +00001816 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) {
1817 if (auto *E = C->getPostUpdateExpr())
1818 MarkDeclarationsReferencedInExpr(E);
1819 }
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001820 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00001821 if (Clause->getClauseKind() == OMPC_schedule)
1822 SC = cast<OMPScheduleClause>(Clause);
1823 else if (Clause->getClauseKind() == OMPC_ordered)
Alexey Bataev993d2802015-12-28 06:23:08 +00001824 OC = cast<OMPOrderedClause>(Clause);
1825 else if (Clause->getClauseKind() == OMPC_linear)
1826 LCs.push_back(cast<OMPLinearClause>(Clause));
1827 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00001828 bool ErrorFound = false;
1829 // OpenMP, 2.7.1 Loop Construct, Restrictions
1830 // The nonmonotonic modifier cannot be specified if an ordered clause is
1831 // specified.
1832 if (SC &&
1833 (SC->getFirstScheduleModifier() == OMPC_SCHEDULE_MODIFIER_nonmonotonic ||
1834 SC->getSecondScheduleModifier() ==
1835 OMPC_SCHEDULE_MODIFIER_nonmonotonic) &&
1836 OC) {
1837 Diag(SC->getFirstScheduleModifier() == OMPC_SCHEDULE_MODIFIER_nonmonotonic
1838 ? SC->getFirstScheduleModifierLoc()
1839 : SC->getSecondScheduleModifierLoc(),
1840 diag::err_omp_schedule_nonmonotonic_ordered)
1841 << SourceRange(OC->getLocStart(), OC->getLocEnd());
1842 ErrorFound = true;
1843 }
Alexey Bataev993d2802015-12-28 06:23:08 +00001844 if (!LCs.empty() && OC && OC->getNumForLoops()) {
1845 for (auto *C : LCs) {
1846 Diag(C->getLocStart(), diag::err_omp_linear_ordered)
1847 << SourceRange(OC->getLocStart(), OC->getLocEnd());
1848 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00001849 ErrorFound = true;
1850 }
Alexey Bataev113438c2015-12-30 12:06:23 +00001851 if (isOpenMPWorksharingDirective(DSAStack->getCurrentDirective()) &&
1852 isOpenMPSimdDirective(DSAStack->getCurrentDirective()) && OC &&
1853 OC->getNumForLoops()) {
1854 Diag(OC->getLocStart(), diag::err_omp_ordered_simd)
1855 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
1856 ErrorFound = true;
1857 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00001858 if (ErrorFound) {
Alexey Bataev993d2802015-12-28 06:23:08 +00001859 ActOnCapturedRegionError();
1860 return StmtError();
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001861 }
1862 return ActOnCapturedRegionEnd(S.get());
1863}
1864
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001865static bool CheckNestingOfRegions(Sema &SemaRef, DSAStackTy *Stack,
1866 OpenMPDirectiveKind CurrentRegion,
1867 const DeclarationNameInfo &CurrentName,
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001868 OpenMPDirectiveKind CancelRegion,
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001869 SourceLocation StartLoc) {
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001870 // Allowed nesting of constructs
1871 // +------------------+-----------------+------------------------------------+
1872 // | Parent directive | Child directive | Closely (!), No-Closely(+), Both(*)|
1873 // +------------------+-----------------+------------------------------------+
1874 // | parallel | parallel | * |
1875 // | parallel | for | * |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001876 // | parallel | for simd | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001877 // | parallel | master | * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001878 // | parallel | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001879 // | parallel | simd | * |
1880 // | parallel | sections | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001881 // | parallel | section | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001882 // | parallel | single | * |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001883 // | parallel | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001884 // | parallel |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001885 // | parallel |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001886 // | parallel | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001887 // | parallel | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001888 // | parallel | barrier | * |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001889 // | parallel | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001890 // | parallel | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001891 // | parallel | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001892 // | parallel | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001893 // | parallel | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001894 // | parallel | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00001895 // | parallel | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00001896 // | parallel | target parallel | * |
1897 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00001898 // | parallel | target enter | * |
1899 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00001900 // | parallel | target exit | * |
1901 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001902 // | parallel | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001903 // | parallel | cancellation | |
1904 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00001905 // | parallel | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00001906 // | parallel | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00001907 // | parallel | taskloop simd | * |
Samuel Antaodf67fc42016-01-19 19:15:56 +00001908 // | parallel | distribute | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001909 // +------------------+-----------------+------------------------------------+
1910 // | for | parallel | * |
1911 // | for | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001912 // | for | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001913 // | for | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001914 // | for | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001915 // | for | simd | * |
1916 // | for | sections | + |
1917 // | for | section | + |
1918 // | for | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001919 // | for | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001920 // | for |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001921 // | for |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001922 // | for | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001923 // | for | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001924 // | for | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001925 // | for | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001926 // | for | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001927 // | for | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001928 // | for | ordered | * (if construct is ordered) |
Alexey Bataev0162e452014-07-22 10:10:35 +00001929 // | for | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001930 // | for | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00001931 // | for | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00001932 // | for | target parallel | * |
1933 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00001934 // | for | target enter | * |
1935 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00001936 // | for | target exit | * |
1937 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001938 // | for | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001939 // | for | cancellation | |
1940 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00001941 // | for | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00001942 // | for | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00001943 // | for | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00001944 // | for | distribute | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001945 // +------------------+-----------------+------------------------------------+
Alexander Musman80c22892014-07-17 08:54:58 +00001946 // | master | parallel | * |
1947 // | master | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001948 // | master | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001949 // | master | master | * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001950 // | master | critical | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001951 // | master | simd | * |
1952 // | master | sections | + |
1953 // | master | section | + |
1954 // | master | single | + |
1955 // | master | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001956 // | master |parallel for simd| * |
Alexander Musman80c22892014-07-17 08:54:58 +00001957 // | master |parallel sections| * |
1958 // | master | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001959 // | master | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001960 // | master | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001961 // | master | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001962 // | master | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001963 // | master | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001964 // | master | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001965 // | master | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001966 // | master | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00001967 // | master | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00001968 // | master | target parallel | * |
1969 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00001970 // | master | target enter | * |
1971 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00001972 // | master | target exit | * |
1973 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001974 // | master | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001975 // | master | cancellation | |
1976 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00001977 // | master | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00001978 // | master | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00001979 // | master | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00001980 // | master | distribute | |
Alexander Musman80c22892014-07-17 08:54:58 +00001981 // +------------------+-----------------+------------------------------------+
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001982 // | critical | parallel | * |
1983 // | critical | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001984 // | critical | for simd | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001985 // | critical | master | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001986 // | critical | critical | * (should have different names) |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001987 // | critical | simd | * |
1988 // | critical | sections | + |
1989 // | critical | section | + |
1990 // | critical | single | + |
1991 // | critical | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001992 // | critical |parallel for simd| * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001993 // | critical |parallel sections| * |
1994 // | critical | task | * |
1995 // | critical | taskyield | * |
1996 // | critical | barrier | + |
1997 // | critical | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001998 // | critical | taskgroup | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001999 // | critical | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002000 // | critical | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002001 // | critical | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002002 // | critical | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002003 // | critical | target parallel | * |
2004 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002005 // | critical | target enter | * |
2006 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002007 // | critical | target exit | * |
2008 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002009 // | critical | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002010 // | critical | cancellation | |
2011 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002012 // | critical | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002013 // | critical | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002014 // | critical | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002015 // | critical | distribute | |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002016 // +------------------+-----------------+------------------------------------+
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002017 // | simd | parallel | |
2018 // | simd | for | |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002019 // | simd | for simd | |
Alexander Musman80c22892014-07-17 08:54:58 +00002020 // | simd | master | |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002021 // | simd | critical | |
Alexey Bataev1f092212016-02-02 04:59:52 +00002022 // | simd | simd | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002023 // | simd | sections | |
2024 // | simd | section | |
2025 // | simd | single | |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002026 // | simd | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002027 // | simd |parallel for simd| |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002028 // | simd |parallel sections| |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002029 // | simd | task | |
Alexey Bataev68446b72014-07-18 07:47:19 +00002030 // | simd | taskyield | |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002031 // | simd | barrier | |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002032 // | simd | taskwait | |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002033 // | simd | taskgroup | |
Alexey Bataev6125da92014-07-21 11:26:11 +00002034 // | simd | flush | |
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002035 // | simd | ordered | + (with simd clause) |
Alexey Bataev0162e452014-07-22 10:10:35 +00002036 // | simd | atomic | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002037 // | simd | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002038 // | simd | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002039 // | simd | target parallel | |
2040 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002041 // | simd | target enter | |
2042 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002043 // | simd | target exit | |
2044 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002045 // | simd | teams | |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002046 // | simd | cancellation | |
2047 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002048 // | simd | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002049 // | simd | taskloop | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002050 // | simd | taskloop simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002051 // | simd | distribute | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002052 // +------------------+-----------------+------------------------------------+
Alexander Musmanf82886e2014-09-18 05:12:34 +00002053 // | for simd | parallel | |
2054 // | for simd | for | |
2055 // | for simd | for simd | |
2056 // | for simd | master | |
2057 // | for simd | critical | |
Alexey Bataev1f092212016-02-02 04:59:52 +00002058 // | for simd | simd | * |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002059 // | for simd | sections | |
2060 // | for simd | section | |
2061 // | for simd | single | |
2062 // | for simd | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002063 // | for simd |parallel for simd| |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002064 // | for simd |parallel sections| |
2065 // | for simd | task | |
2066 // | for simd | taskyield | |
2067 // | for simd | barrier | |
2068 // | for simd | taskwait | |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002069 // | for simd | taskgroup | |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002070 // | for simd | flush | |
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002071 // | for simd | ordered | + (with simd clause) |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002072 // | for simd | atomic | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002073 // | for simd | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002074 // | for simd | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002075 // | for simd | target parallel | |
2076 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002077 // | for simd | target enter | |
2078 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002079 // | for simd | target exit | |
2080 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002081 // | for simd | teams | |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002082 // | for simd | cancellation | |
2083 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002084 // | for simd | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002085 // | for simd | taskloop | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002086 // | for simd | taskloop simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002087 // | for simd | distribute | |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002088 // +------------------+-----------------+------------------------------------+
Alexander Musmane4e893b2014-09-23 09:33:00 +00002089 // | parallel for simd| parallel | |
2090 // | parallel for simd| for | |
2091 // | parallel for simd| for simd | |
2092 // | parallel for simd| master | |
2093 // | parallel for simd| critical | |
Alexey Bataev1f092212016-02-02 04:59:52 +00002094 // | parallel for simd| simd | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002095 // | parallel for simd| sections | |
2096 // | parallel for simd| section | |
2097 // | parallel for simd| single | |
2098 // | parallel for simd| parallel for | |
2099 // | parallel for simd|parallel for simd| |
2100 // | parallel for simd|parallel sections| |
2101 // | parallel for simd| task | |
2102 // | parallel for simd| taskyield | |
2103 // | parallel for simd| barrier | |
2104 // | parallel for simd| taskwait | |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002105 // | parallel for simd| taskgroup | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002106 // | parallel for simd| flush | |
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002107 // | parallel for simd| ordered | + (with simd clause) |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002108 // | parallel for simd| atomic | |
2109 // | parallel for simd| target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002110 // | parallel for simd| target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002111 // | parallel for simd| target parallel | |
2112 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002113 // | parallel for simd| target enter | |
2114 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002115 // | parallel for simd| target exit | |
2116 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002117 // | parallel for simd| teams | |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002118 // | parallel for simd| cancellation | |
2119 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002120 // | parallel for simd| cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002121 // | parallel for simd| taskloop | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002122 // | parallel for simd| taskloop simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002123 // | parallel for simd| distribute | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002124 // +------------------+-----------------+------------------------------------+
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002125 // | sections | parallel | * |
2126 // | sections | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002127 // | sections | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002128 // | sections | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002129 // | sections | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002130 // | sections | simd | * |
2131 // | sections | sections | + |
2132 // | sections | section | * |
2133 // | sections | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002134 // | sections | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002135 // | sections |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002136 // | sections |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002137 // | sections | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002138 // | sections | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002139 // | sections | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002140 // | sections | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002141 // | sections | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002142 // | sections | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002143 // | sections | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002144 // | sections | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002145 // | sections | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002146 // | sections | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002147 // | sections | target parallel | * |
2148 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002149 // | sections | target enter | * |
2150 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002151 // | sections | target exit | * |
2152 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002153 // | sections | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002154 // | sections | cancellation | |
2155 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00002156 // | sections | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002157 // | sections | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002158 // | sections | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002159 // | sections | distribute | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002160 // +------------------+-----------------+------------------------------------+
2161 // | section | parallel | * |
2162 // | section | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002163 // | section | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002164 // | section | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002165 // | section | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002166 // | section | simd | * |
2167 // | section | sections | + |
2168 // | section | section | + |
2169 // | section | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002170 // | section | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002171 // | section |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002172 // | section |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002173 // | section | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002174 // | section | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002175 // | section | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002176 // | section | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002177 // | section | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002178 // | section | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002179 // | section | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002180 // | section | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002181 // | section | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002182 // | section | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002183 // | section | target parallel | * |
2184 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002185 // | section | target enter | * |
2186 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002187 // | section | target exit | * |
2188 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002189 // | section | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002190 // | section | cancellation | |
2191 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00002192 // | section | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002193 // | section | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002194 // | section | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002195 // | section | distribute | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002196 // +------------------+-----------------+------------------------------------+
2197 // | single | parallel | * |
2198 // | single | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002199 // | single | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002200 // | single | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002201 // | single | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002202 // | single | simd | * |
2203 // | single | sections | + |
2204 // | single | section | + |
2205 // | single | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002206 // | single | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002207 // | single |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002208 // | single |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002209 // | single | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002210 // | single | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002211 // | single | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002212 // | single | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002213 // | single | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002214 // | single | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002215 // | single | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002216 // | single | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002217 // | single | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002218 // | single | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002219 // | single | target parallel | * |
2220 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002221 // | single | target enter | * |
2222 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002223 // | single | target exit | * |
2224 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002225 // | single | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002226 // | single | cancellation | |
2227 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002228 // | single | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002229 // | single | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002230 // | single | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002231 // | single | distribute | |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002232 // +------------------+-----------------+------------------------------------+
2233 // | parallel for | parallel | * |
2234 // | parallel for | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002235 // | parallel for | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002236 // | parallel for | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002237 // | parallel for | critical | * |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002238 // | parallel for | simd | * |
2239 // | parallel for | sections | + |
2240 // | parallel for | section | + |
2241 // | parallel for | single | + |
2242 // | parallel for | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002243 // | parallel for |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002244 // | parallel for |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002245 // | parallel for | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002246 // | parallel for | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002247 // | parallel for | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002248 // | parallel for | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002249 // | parallel for | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002250 // | parallel for | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002251 // | parallel for | ordered | * (if construct is ordered) |
Alexey Bataev0162e452014-07-22 10:10:35 +00002252 // | parallel for | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002253 // | parallel for | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002254 // | parallel for | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002255 // | parallel for | target parallel | * |
2256 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002257 // | parallel for | target enter | * |
2258 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002259 // | parallel for | target exit | * |
2260 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002261 // | parallel for | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002262 // | parallel for | cancellation | |
2263 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00002264 // | parallel for | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002265 // | parallel for | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002266 // | parallel for | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002267 // | parallel for | distribute | |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002268 // +------------------+-----------------+------------------------------------+
2269 // | parallel sections| parallel | * |
2270 // | parallel sections| for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002271 // | parallel sections| for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002272 // | parallel sections| master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002273 // | parallel sections| critical | + |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002274 // | parallel sections| simd | * |
2275 // | parallel sections| sections | + |
2276 // | parallel sections| section | * |
2277 // | parallel sections| single | + |
2278 // | parallel sections| parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002279 // | parallel sections|parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002280 // | parallel sections|parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002281 // | parallel sections| task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002282 // | parallel sections| taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002283 // | parallel sections| barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002284 // | parallel sections| taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002285 // | parallel sections| taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002286 // | parallel sections| flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002287 // | parallel sections| ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002288 // | parallel sections| atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002289 // | parallel sections| target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002290 // | parallel sections| target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002291 // | parallel sections| target parallel | * |
2292 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002293 // | parallel sections| target enter | * |
2294 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002295 // | parallel sections| target exit | * |
2296 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002297 // | parallel sections| teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002298 // | parallel sections| cancellation | |
2299 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00002300 // | parallel sections| cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002301 // | parallel sections| taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002302 // | parallel sections| taskloop simd | * |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002303 // | parallel sections| distribute | |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002304 // +------------------+-----------------+------------------------------------+
2305 // | task | parallel | * |
2306 // | task | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002307 // | task | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002308 // | task | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002309 // | task | critical | * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002310 // | task | simd | * |
2311 // | task | sections | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002312 // | task | section | + |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002313 // | task | single | + |
2314 // | task | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002315 // | task |parallel for simd| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002316 // | task |parallel sections| * |
2317 // | task | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002318 // | task | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002319 // | task | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002320 // | task | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002321 // | task | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002322 // | task | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002323 // | task | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002324 // | task | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002325 // | task | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002326 // | task | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002327 // | task | target parallel | * |
2328 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002329 // | task | target enter | * |
2330 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002331 // | task | target exit | * |
2332 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002333 // | task | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002334 // | task | cancellation | |
Alexey Bataev80909872015-07-02 11:25:17 +00002335 // | | point | ! |
2336 // | task | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002337 // | task | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002338 // | task | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002339 // | task | distribute | |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002340 // +------------------+-----------------+------------------------------------+
2341 // | ordered | parallel | * |
2342 // | ordered | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002343 // | ordered | for simd | + |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002344 // | ordered | master | * |
2345 // | ordered | critical | * |
2346 // | ordered | simd | * |
2347 // | ordered | sections | + |
2348 // | ordered | section | + |
2349 // | ordered | single | + |
2350 // | ordered | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002351 // | ordered |parallel for simd| * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002352 // | ordered |parallel sections| * |
2353 // | ordered | task | * |
2354 // | ordered | taskyield | * |
2355 // | ordered | barrier | + |
2356 // | ordered | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002357 // | ordered | taskgroup | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002358 // | ordered | flush | * |
2359 // | ordered | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002360 // | ordered | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002361 // | ordered | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002362 // | ordered | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002363 // | ordered | target parallel | * |
2364 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002365 // | ordered | target enter | * |
2366 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002367 // | ordered | target exit | * |
2368 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002369 // | ordered | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002370 // | ordered | cancellation | |
2371 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002372 // | ordered | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002373 // | ordered | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002374 // | ordered | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002375 // | ordered | distribute | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002376 // +------------------+-----------------+------------------------------------+
2377 // | atomic | parallel | |
2378 // | atomic | for | |
2379 // | atomic | for simd | |
2380 // | atomic | master | |
2381 // | atomic | critical | |
2382 // | atomic | simd | |
2383 // | atomic | sections | |
2384 // | atomic | section | |
2385 // | atomic | single | |
2386 // | atomic | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002387 // | atomic |parallel for simd| |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002388 // | atomic |parallel sections| |
2389 // | atomic | task | |
2390 // | atomic | taskyield | |
2391 // | atomic | barrier | |
2392 // | atomic | taskwait | |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002393 // | atomic | taskgroup | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002394 // | atomic | flush | |
2395 // | atomic | ordered | |
2396 // | atomic | atomic | |
2397 // | atomic | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002398 // | atomic | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002399 // | atomic | target parallel | |
2400 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002401 // | atomic | target enter | |
2402 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002403 // | atomic | target exit | |
2404 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002405 // | atomic | teams | |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002406 // | atomic | cancellation | |
2407 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002408 // | atomic | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002409 // | atomic | taskloop | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002410 // | atomic | taskloop simd | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002411 // | atomic | distribute | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002412 // +------------------+-----------------+------------------------------------+
2413 // | target | parallel | * |
2414 // | target | for | * |
2415 // | target | for simd | * |
2416 // | target | master | * |
2417 // | target | critical | * |
2418 // | target | simd | * |
2419 // | target | sections | * |
2420 // | target | section | * |
2421 // | target | single | * |
2422 // | target | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002423 // | target |parallel for simd| * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002424 // | target |parallel sections| * |
2425 // | target | task | * |
2426 // | target | taskyield | * |
2427 // | target | barrier | * |
2428 // | target | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002429 // | target | taskgroup | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002430 // | target | flush | * |
2431 // | target | ordered | * |
2432 // | target | atomic | * |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002433 // | target | target | |
2434 // | target | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002435 // | target | target parallel | |
2436 // | | for | |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002437 // | target | target enter | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002438 // | | data | |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002439 // | target | target exit | |
Samuel Antao72590762016-01-19 20:04:50 +00002440 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002441 // | target | teams | * |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002442 // | target | cancellation | |
2443 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002444 // | target | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002445 // | target | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002446 // | target | taskloop simd | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002447 // | target | distribute | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002448 // +------------------+-----------------+------------------------------------+
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002449 // | target parallel | parallel | * |
2450 // | target parallel | for | * |
2451 // | target parallel | for simd | * |
2452 // | target parallel | master | * |
2453 // | target parallel | critical | * |
2454 // | target parallel | simd | * |
2455 // | target parallel | sections | * |
2456 // | target parallel | section | * |
2457 // | target parallel | single | * |
2458 // | target parallel | parallel for | * |
2459 // | target parallel |parallel for simd| * |
2460 // | target parallel |parallel sections| * |
2461 // | target parallel | task | * |
2462 // | target parallel | taskyield | * |
2463 // | target parallel | barrier | * |
2464 // | target parallel | taskwait | * |
2465 // | target parallel | taskgroup | * |
2466 // | target parallel | flush | * |
2467 // | target parallel | ordered | * |
2468 // | target parallel | atomic | * |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002469 // | target parallel | target | |
2470 // | target parallel | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002471 // | target parallel | target parallel | |
2472 // | | for | |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002473 // | target parallel | target enter | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002474 // | | data | |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002475 // | target parallel | target exit | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002476 // | | data | |
2477 // | target parallel | teams | |
2478 // | target parallel | cancellation | |
2479 // | | point | ! |
2480 // | target parallel | cancel | ! |
2481 // | target parallel | taskloop | * |
2482 // | target parallel | taskloop simd | * |
2483 // | target parallel | distribute | |
2484 // +------------------+-----------------+------------------------------------+
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002485 // | target parallel | parallel | * |
2486 // | for | | |
2487 // | target parallel | for | * |
2488 // | for | | |
2489 // | target parallel | for simd | * |
2490 // | for | | |
2491 // | target parallel | master | * |
2492 // | for | | |
2493 // | target parallel | critical | * |
2494 // | for | | |
2495 // | target parallel | simd | * |
2496 // | for | | |
2497 // | target parallel | sections | * |
2498 // | for | | |
2499 // | target parallel | section | * |
2500 // | for | | |
2501 // | target parallel | single | * |
2502 // | for | | |
2503 // | target parallel | parallel for | * |
2504 // | for | | |
2505 // | target parallel |parallel for simd| * |
2506 // | for | | |
2507 // | target parallel |parallel sections| * |
2508 // | for | | |
2509 // | target parallel | task | * |
2510 // | for | | |
2511 // | target parallel | taskyield | * |
2512 // | for | | |
2513 // | target parallel | barrier | * |
2514 // | for | | |
2515 // | target parallel | taskwait | * |
2516 // | for | | |
2517 // | target parallel | taskgroup | * |
2518 // | for | | |
2519 // | target parallel | flush | * |
2520 // | for | | |
2521 // | target parallel | ordered | * |
2522 // | for | | |
2523 // | target parallel | atomic | * |
2524 // | for | | |
2525 // | target parallel | target | |
2526 // | for | | |
2527 // | target parallel | target parallel | |
2528 // | for | | |
2529 // | target parallel | target parallel | |
2530 // | for | for | |
2531 // | target parallel | target enter | |
2532 // | for | data | |
2533 // | target parallel | target exit | |
2534 // | for | data | |
2535 // | target parallel | teams | |
2536 // | for | | |
2537 // | target parallel | cancellation | |
2538 // | for | point | ! |
2539 // | target parallel | cancel | ! |
2540 // | for | | |
2541 // | target parallel | taskloop | * |
2542 // | for | | |
2543 // | target parallel | taskloop simd | * |
2544 // | for | | |
2545 // | target parallel | distribute | |
2546 // | for | | |
2547 // +------------------+-----------------+------------------------------------+
Alexey Bataev13314bf2014-10-09 04:18:56 +00002548 // | teams | parallel | * |
2549 // | teams | for | + |
2550 // | teams | for simd | + |
2551 // | teams | master | + |
2552 // | teams | critical | + |
2553 // | teams | simd | + |
2554 // | teams | sections | + |
2555 // | teams | section | + |
2556 // | teams | single | + |
2557 // | teams | parallel for | * |
2558 // | teams |parallel for simd| * |
2559 // | teams |parallel sections| * |
2560 // | teams | task | + |
2561 // | teams | taskyield | + |
2562 // | teams | barrier | + |
2563 // | teams | taskwait | + |
Alexey Bataev80909872015-07-02 11:25:17 +00002564 // | teams | taskgroup | + |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002565 // | teams | flush | + |
2566 // | teams | ordered | + |
2567 // | teams | atomic | + |
2568 // | teams | target | + |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002569 // | teams | target parallel | + |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002570 // | teams | target parallel | + |
2571 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002572 // | teams | target enter | + |
2573 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002574 // | teams | target exit | + |
2575 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002576 // | teams | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002577 // | teams | cancellation | |
2578 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002579 // | teams | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002580 // | teams | taskloop | + |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002581 // | teams | taskloop simd | + |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002582 // | teams | distribute | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002583 // +------------------+-----------------+------------------------------------+
2584 // | taskloop | parallel | * |
2585 // | taskloop | for | + |
2586 // | taskloop | for simd | + |
2587 // | taskloop | master | + |
2588 // | taskloop | critical | * |
2589 // | taskloop | simd | * |
2590 // | taskloop | sections | + |
2591 // | taskloop | section | + |
2592 // | taskloop | single | + |
2593 // | taskloop | parallel for | * |
2594 // | taskloop |parallel for simd| * |
2595 // | taskloop |parallel sections| * |
2596 // | taskloop | task | * |
2597 // | taskloop | taskyield | * |
2598 // | taskloop | barrier | + |
2599 // | taskloop | taskwait | * |
2600 // | taskloop | taskgroup | * |
2601 // | taskloop | flush | * |
2602 // | taskloop | ordered | + |
2603 // | taskloop | atomic | * |
2604 // | taskloop | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002605 // | taskloop | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002606 // | taskloop | target parallel | * |
2607 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002608 // | taskloop | target enter | * |
2609 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002610 // | taskloop | target exit | * |
2611 // | | data | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002612 // | taskloop | teams | + |
2613 // | taskloop | cancellation | |
2614 // | | point | |
2615 // | taskloop | cancel | |
2616 // | taskloop | taskloop | * |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002617 // | taskloop | distribute | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002618 // +------------------+-----------------+------------------------------------+
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002619 // | taskloop simd | parallel | |
2620 // | taskloop simd | for | |
2621 // | taskloop simd | for simd | |
2622 // | taskloop simd | master | |
2623 // | taskloop simd | critical | |
Alexey Bataev1f092212016-02-02 04:59:52 +00002624 // | taskloop simd | simd | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002625 // | taskloop simd | sections | |
2626 // | taskloop simd | section | |
2627 // | taskloop simd | single | |
2628 // | taskloop simd | parallel for | |
2629 // | taskloop simd |parallel for simd| |
2630 // | taskloop simd |parallel sections| |
2631 // | taskloop simd | task | |
2632 // | taskloop simd | taskyield | |
2633 // | taskloop simd | barrier | |
2634 // | taskloop simd | taskwait | |
2635 // | taskloop simd | taskgroup | |
2636 // | taskloop simd | flush | |
2637 // | taskloop simd | ordered | + (with simd clause) |
2638 // | taskloop simd | atomic | |
2639 // | taskloop simd | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002640 // | taskloop simd | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002641 // | taskloop simd | target parallel | |
2642 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002643 // | taskloop simd | target enter | |
2644 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002645 // | taskloop simd | target exit | |
2646 // | | data | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002647 // | taskloop simd | teams | |
2648 // | taskloop simd | cancellation | |
2649 // | | point | |
2650 // | taskloop simd | cancel | |
2651 // | taskloop simd | taskloop | |
2652 // | taskloop simd | taskloop simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002653 // | taskloop simd | distribute | |
2654 // +------------------+-----------------+------------------------------------+
2655 // | distribute | parallel | * |
2656 // | distribute | for | * |
2657 // | distribute | for simd | * |
2658 // | distribute | master | * |
2659 // | distribute | critical | * |
2660 // | distribute | simd | * |
2661 // | distribute | sections | * |
2662 // | distribute | section | * |
2663 // | distribute | single | * |
2664 // | distribute | parallel for | * |
2665 // | distribute |parallel for simd| * |
2666 // | distribute |parallel sections| * |
2667 // | distribute | task | * |
2668 // | distribute | taskyield | * |
2669 // | distribute | barrier | * |
2670 // | distribute | taskwait | * |
2671 // | distribute | taskgroup | * |
2672 // | distribute | flush | * |
2673 // | distribute | ordered | + |
2674 // | distribute | atomic | * |
2675 // | distribute | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002676 // | distribute | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002677 // | distribute | target parallel | |
2678 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002679 // | distribute | target enter | |
2680 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002681 // | distribute | target exit | |
2682 // | | data | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002683 // | distribute | teams | |
2684 // | distribute | cancellation | + |
2685 // | | point | |
2686 // | distribute | cancel | + |
2687 // | distribute | taskloop | * |
2688 // | distribute | taskloop simd | * |
2689 // | distribute | distribute | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002690 // +------------------+-----------------+------------------------------------+
Alexey Bataev549210e2014-06-24 04:39:47 +00002691 if (Stack->getCurScope()) {
2692 auto ParentRegion = Stack->getParentDirective();
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002693 auto OffendingRegion = ParentRegion;
Alexey Bataev549210e2014-06-24 04:39:47 +00002694 bool NestingProhibited = false;
2695 bool CloseNesting = true;
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002696 enum {
2697 NoRecommend,
2698 ShouldBeInParallelRegion,
Alexey Bataev13314bf2014-10-09 04:18:56 +00002699 ShouldBeInOrderedRegion,
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002700 ShouldBeInTargetRegion,
2701 ShouldBeInTeamsRegion
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002702 } Recommend = NoRecommend;
Alexey Bataev1f092212016-02-02 04:59:52 +00002703 if (isOpenMPSimdDirective(ParentRegion) && CurrentRegion != OMPD_ordered &&
2704 CurrentRegion != OMPD_simd) {
Alexey Bataev549210e2014-06-24 04:39:47 +00002705 // OpenMP [2.16, Nesting of Regions]
2706 // OpenMP constructs may not be nested inside a simd region.
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002707 // OpenMP [2.8.1,simd Construct, Restrictions]
2708 // An ordered construct with the simd clause is the only OpenMP construct
2709 // that can appear in the simd region.
Alexey Bataev549210e2014-06-24 04:39:47 +00002710 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region_simd);
2711 return true;
2712 }
Alexey Bataev0162e452014-07-22 10:10:35 +00002713 if (ParentRegion == OMPD_atomic) {
2714 // OpenMP [2.16, Nesting of Regions]
2715 // OpenMP constructs may not be nested inside an atomic region.
2716 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region_atomic);
2717 return true;
2718 }
Alexey Bataev1e0498a2014-06-26 08:21:58 +00002719 if (CurrentRegion == OMPD_section) {
2720 // OpenMP [2.7.2, sections Construct, Restrictions]
2721 // Orphaned section directives are prohibited. That is, the section
2722 // directives must appear within the sections construct and must not be
2723 // encountered elsewhere in the sections region.
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002724 if (ParentRegion != OMPD_sections &&
2725 ParentRegion != OMPD_parallel_sections) {
Alexey Bataev1e0498a2014-06-26 08:21:58 +00002726 SemaRef.Diag(StartLoc, diag::err_omp_orphaned_section_directive)
2727 << (ParentRegion != OMPD_unknown)
2728 << getOpenMPDirectiveName(ParentRegion);
2729 return true;
2730 }
2731 return false;
2732 }
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002733 // Allow some constructs to be orphaned (they could be used in functions,
2734 // called from OpenMP regions with the required preconditions).
2735 if (ParentRegion == OMPD_unknown)
2736 return false;
Alexey Bataev80909872015-07-02 11:25:17 +00002737 if (CurrentRegion == OMPD_cancellation_point ||
2738 CurrentRegion == OMPD_cancel) {
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002739 // OpenMP [2.16, Nesting of Regions]
2740 // A cancellation point construct for which construct-type-clause is
2741 // taskgroup must be nested inside a task construct. A cancellation
2742 // point construct for which construct-type-clause is not taskgroup must
2743 // be closely nested inside an OpenMP construct that matches the type
2744 // specified in construct-type-clause.
Alexey Bataev80909872015-07-02 11:25:17 +00002745 // A cancel construct for which construct-type-clause is taskgroup must be
2746 // nested inside a task construct. A cancel construct for which
2747 // construct-type-clause is not taskgroup must be closely nested inside an
2748 // OpenMP construct that matches the type specified in
2749 // construct-type-clause.
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002750 NestingProhibited =
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002751 !((CancelRegion == OMPD_parallel &&
2752 (ParentRegion == OMPD_parallel ||
2753 ParentRegion == OMPD_target_parallel)) ||
Alexey Bataev25e5b442015-09-15 12:52:43 +00002754 (CancelRegion == OMPD_for &&
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002755 (ParentRegion == OMPD_for || ParentRegion == OMPD_parallel_for ||
2756 ParentRegion == OMPD_target_parallel_for)) ||
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002757 (CancelRegion == OMPD_taskgroup && ParentRegion == OMPD_task) ||
2758 (CancelRegion == OMPD_sections &&
Alexey Bataev25e5b442015-09-15 12:52:43 +00002759 (ParentRegion == OMPD_section || ParentRegion == OMPD_sections ||
2760 ParentRegion == OMPD_parallel_sections)));
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002761 } else if (CurrentRegion == OMPD_master) {
Alexander Musman80c22892014-07-17 08:54:58 +00002762 // OpenMP [2.16, Nesting of Regions]
2763 // A master region may not be closely nested inside a worksharing,
Alexey Bataev0162e452014-07-22 10:10:35 +00002764 // atomic, or explicit task region.
Alexander Musman80c22892014-07-17 08:54:58 +00002765 NestingProhibited = isOpenMPWorksharingDirective(ParentRegion) ||
Alexey Bataev49f6e782015-12-01 04:18:41 +00002766 ParentRegion == OMPD_task ||
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002767 isOpenMPTaskLoopDirective(ParentRegion);
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002768 } else if (CurrentRegion == OMPD_critical && CurrentName.getName()) {
2769 // OpenMP [2.16, Nesting of Regions]
2770 // A critical region may not be nested (closely or otherwise) inside a
2771 // critical region with the same name. Note that this restriction is not
2772 // sufficient to prevent deadlock.
2773 SourceLocation PreviousCriticalLoc;
2774 bool DeadLock =
2775 Stack->hasDirective([CurrentName, &PreviousCriticalLoc](
2776 OpenMPDirectiveKind K,
2777 const DeclarationNameInfo &DNI,
2778 SourceLocation Loc)
2779 ->bool {
2780 if (K == OMPD_critical &&
2781 DNI.getName() == CurrentName.getName()) {
2782 PreviousCriticalLoc = Loc;
2783 return true;
2784 } else
2785 return false;
2786 },
2787 false /* skip top directive */);
2788 if (DeadLock) {
2789 SemaRef.Diag(StartLoc,
2790 diag::err_omp_prohibited_region_critical_same_name)
2791 << CurrentName.getName();
2792 if (PreviousCriticalLoc.isValid())
2793 SemaRef.Diag(PreviousCriticalLoc,
2794 diag::note_omp_previous_critical_region);
2795 return true;
2796 }
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002797 } else if (CurrentRegion == OMPD_barrier) {
2798 // OpenMP [2.16, Nesting of Regions]
2799 // A barrier region may not be closely nested inside a worksharing,
Alexey Bataev0162e452014-07-22 10:10:35 +00002800 // explicit task, critical, ordered, atomic, or master region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002801 NestingProhibited =
2802 isOpenMPWorksharingDirective(ParentRegion) ||
2803 ParentRegion == OMPD_task || ParentRegion == OMPD_master ||
Alexey Bataev49f6e782015-12-01 04:18:41 +00002804 ParentRegion == OMPD_critical || ParentRegion == OMPD_ordered ||
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002805 isOpenMPTaskLoopDirective(ParentRegion);
Alexander Musman80c22892014-07-17 08:54:58 +00002806 } else if (isOpenMPWorksharingDirective(CurrentRegion) &&
Alexander Musmanf82886e2014-09-18 05:12:34 +00002807 !isOpenMPParallelDirective(CurrentRegion)) {
Alexey Bataev549210e2014-06-24 04:39:47 +00002808 // OpenMP [2.16, Nesting of Regions]
2809 // A worksharing region may not be closely nested inside a worksharing,
2810 // explicit task, critical, ordered, atomic, or master region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002811 NestingProhibited =
Alexander Musmanf82886e2014-09-18 05:12:34 +00002812 isOpenMPWorksharingDirective(ParentRegion) ||
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002813 ParentRegion == OMPD_task || ParentRegion == OMPD_master ||
Alexey Bataev49f6e782015-12-01 04:18:41 +00002814 ParentRegion == OMPD_critical || ParentRegion == OMPD_ordered ||
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002815 isOpenMPTaskLoopDirective(ParentRegion);
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002816 Recommend = ShouldBeInParallelRegion;
2817 } else if (CurrentRegion == OMPD_ordered) {
2818 // OpenMP [2.16, Nesting of Regions]
2819 // An ordered region may not be closely nested inside a critical,
Alexey Bataev0162e452014-07-22 10:10:35 +00002820 // atomic, or explicit task region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002821 // An ordered region must be closely nested inside a loop region (or
2822 // parallel loop region) with an ordered clause.
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002823 // OpenMP [2.8.1,simd Construct, Restrictions]
2824 // An ordered construct with the simd clause is the only OpenMP construct
2825 // that can appear in the simd region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002826 NestingProhibited = ParentRegion == OMPD_critical ||
Alexander Musman80c22892014-07-17 08:54:58 +00002827 ParentRegion == OMPD_task ||
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002828 isOpenMPTaskLoopDirective(ParentRegion) ||
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002829 !(isOpenMPSimdDirective(ParentRegion) ||
2830 Stack->isParentOrderedRegion());
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002831 Recommend = ShouldBeInOrderedRegion;
Alexey Bataev13314bf2014-10-09 04:18:56 +00002832 } else if (isOpenMPTeamsDirective(CurrentRegion)) {
2833 // OpenMP [2.16, Nesting of Regions]
2834 // If specified, a teams construct must be contained within a target
2835 // construct.
2836 NestingProhibited = ParentRegion != OMPD_target;
2837 Recommend = ShouldBeInTargetRegion;
2838 Stack->setParentTeamsRegionLoc(Stack->getConstructLoc());
2839 }
2840 if (!NestingProhibited && isOpenMPTeamsDirective(ParentRegion)) {
2841 // OpenMP [2.16, Nesting of Regions]
2842 // distribute, parallel, parallel sections, parallel workshare, and the
2843 // parallel loop and parallel loop SIMD constructs are the only OpenMP
2844 // constructs that can be closely nested in the teams region.
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002845 NestingProhibited = !isOpenMPParallelDirective(CurrentRegion) &&
2846 !isOpenMPDistributeDirective(CurrentRegion);
Alexey Bataev13314bf2014-10-09 04:18:56 +00002847 Recommend = ShouldBeInParallelRegion;
Alexey Bataev549210e2014-06-24 04:39:47 +00002848 }
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002849 if (!NestingProhibited && isOpenMPDistributeDirective(CurrentRegion)) {
2850 // OpenMP 4.5 [2.17 Nesting of Regions]
2851 // The region associated with the distribute construct must be strictly
2852 // nested inside a teams region
2853 NestingProhibited = !isOpenMPTeamsDirective(ParentRegion);
2854 Recommend = ShouldBeInTeamsRegion;
2855 }
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002856 if (!NestingProhibited &&
2857 (isOpenMPTargetExecutionDirective(CurrentRegion) ||
2858 isOpenMPTargetDataManagementDirective(CurrentRegion))) {
2859 // OpenMP 4.5 [2.17 Nesting of Regions]
2860 // If a target, target update, target data, target enter data, or
2861 // target exit data construct is encountered during execution of a
2862 // target region, the behavior is unspecified.
2863 NestingProhibited = Stack->hasDirective(
2864 [&OffendingRegion](OpenMPDirectiveKind K,
2865 const DeclarationNameInfo &DNI,
2866 SourceLocation Loc) -> bool {
2867 if (isOpenMPTargetExecutionDirective(K)) {
2868 OffendingRegion = K;
2869 return true;
2870 } else
2871 return false;
2872 },
2873 false /* don't skip top directive */);
2874 CloseNesting = false;
2875 }
Alexey Bataev549210e2014-06-24 04:39:47 +00002876 if (NestingProhibited) {
2877 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region)
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002878 << CloseNesting << getOpenMPDirectiveName(OffendingRegion)
2879 << Recommend << getOpenMPDirectiveName(CurrentRegion);
Alexey Bataev549210e2014-06-24 04:39:47 +00002880 return true;
2881 }
2882 }
2883 return false;
2884}
2885
Alexey Bataev6b8046a2015-09-03 07:23:48 +00002886static bool checkIfClauses(Sema &S, OpenMPDirectiveKind Kind,
2887 ArrayRef<OMPClause *> Clauses,
2888 ArrayRef<OpenMPDirectiveKind> AllowedNameModifiers) {
2889 bool ErrorFound = false;
2890 unsigned NamedModifiersNumber = 0;
2891 SmallVector<const OMPIfClause *, OMPC_unknown + 1> FoundNameModifiers(
2892 OMPD_unknown + 1);
Alexey Bataevecb156a2015-09-15 17:23:56 +00002893 SmallVector<SourceLocation, 4> NameModifierLoc;
Alexey Bataev6b8046a2015-09-03 07:23:48 +00002894 for (const auto *C : Clauses) {
2895 if (const auto *IC = dyn_cast_or_null<OMPIfClause>(C)) {
2896 // At most one if clause without a directive-name-modifier can appear on
2897 // the directive.
2898 OpenMPDirectiveKind CurNM = IC->getNameModifier();
2899 if (FoundNameModifiers[CurNM]) {
2900 S.Diag(C->getLocStart(), diag::err_omp_more_one_clause)
2901 << getOpenMPDirectiveName(Kind) << getOpenMPClauseName(OMPC_if)
2902 << (CurNM != OMPD_unknown) << getOpenMPDirectiveName(CurNM);
2903 ErrorFound = true;
Alexey Bataevecb156a2015-09-15 17:23:56 +00002904 } else if (CurNM != OMPD_unknown) {
2905 NameModifierLoc.push_back(IC->getNameModifierLoc());
Alexey Bataev6b8046a2015-09-03 07:23:48 +00002906 ++NamedModifiersNumber;
Alexey Bataevecb156a2015-09-15 17:23:56 +00002907 }
Alexey Bataev6b8046a2015-09-03 07:23:48 +00002908 FoundNameModifiers[CurNM] = IC;
2909 if (CurNM == OMPD_unknown)
2910 continue;
2911 // Check if the specified name modifier is allowed for the current
2912 // directive.
2913 // At most one if clause with the particular directive-name-modifier can
2914 // appear on the directive.
2915 bool MatchFound = false;
2916 for (auto NM : AllowedNameModifiers) {
2917 if (CurNM == NM) {
2918 MatchFound = true;
2919 break;
2920 }
2921 }
2922 if (!MatchFound) {
2923 S.Diag(IC->getNameModifierLoc(),
2924 diag::err_omp_wrong_if_directive_name_modifier)
2925 << getOpenMPDirectiveName(CurNM) << getOpenMPDirectiveName(Kind);
2926 ErrorFound = true;
2927 }
2928 }
2929 }
2930 // If any if clause on the directive includes a directive-name-modifier then
2931 // all if clauses on the directive must include a directive-name-modifier.
2932 if (FoundNameModifiers[OMPD_unknown] && NamedModifiersNumber > 0) {
2933 if (NamedModifiersNumber == AllowedNameModifiers.size()) {
2934 S.Diag(FoundNameModifiers[OMPD_unknown]->getLocStart(),
2935 diag::err_omp_no_more_if_clause);
2936 } else {
2937 std::string Values;
2938 std::string Sep(", ");
2939 unsigned AllowedCnt = 0;
2940 unsigned TotalAllowedNum =
2941 AllowedNameModifiers.size() - NamedModifiersNumber;
2942 for (unsigned Cnt = 0, End = AllowedNameModifiers.size(); Cnt < End;
2943 ++Cnt) {
2944 OpenMPDirectiveKind NM = AllowedNameModifiers[Cnt];
2945 if (!FoundNameModifiers[NM]) {
2946 Values += "'";
2947 Values += getOpenMPDirectiveName(NM);
2948 Values += "'";
2949 if (AllowedCnt + 2 == TotalAllowedNum)
2950 Values += " or ";
2951 else if (AllowedCnt + 1 != TotalAllowedNum)
2952 Values += Sep;
2953 ++AllowedCnt;
2954 }
2955 }
2956 S.Diag(FoundNameModifiers[OMPD_unknown]->getCondition()->getLocStart(),
2957 diag::err_omp_unnamed_if_clause)
2958 << (TotalAllowedNum > 1) << Values;
2959 }
Alexey Bataevecb156a2015-09-15 17:23:56 +00002960 for (auto Loc : NameModifierLoc) {
2961 S.Diag(Loc, diag::note_omp_previous_named_if_clause);
2962 }
Alexey Bataev6b8046a2015-09-03 07:23:48 +00002963 ErrorFound = true;
2964 }
2965 return ErrorFound;
2966}
2967
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002968StmtResult Sema::ActOnOpenMPExecutableDirective(
2969 OpenMPDirectiveKind Kind, const DeclarationNameInfo &DirName,
2970 OpenMPDirectiveKind CancelRegion, ArrayRef<OMPClause *> Clauses,
2971 Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) {
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002972 StmtResult Res = StmtError();
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002973 if (CheckNestingOfRegions(*this, DSAStack, Kind, DirName, CancelRegion,
2974 StartLoc))
Alexey Bataev549210e2014-06-24 04:39:47 +00002975 return StmtError();
Alexey Bataev758e55e2013-09-06 18:03:48 +00002976
Alexey Bataevd5af8e42013-10-01 05:32:34 +00002977 llvm::SmallVector<OMPClause *, 8> ClausesWithImplicit;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00002978 llvm::DenseMap<ValueDecl *, Expr *> VarsWithInheritedDSA;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00002979 bool ErrorFound = false;
Alexey Bataev6125da92014-07-21 11:26:11 +00002980 ClausesWithImplicit.append(Clauses.begin(), Clauses.end());
Alexey Bataev68446b72014-07-18 07:47:19 +00002981 if (AStmt) {
2982 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
2983
2984 // Check default data sharing attributes for referenced variables.
2985 DSAAttrChecker DSAChecker(DSAStack, *this, cast<CapturedStmt>(AStmt));
2986 DSAChecker.Visit(cast<CapturedStmt>(AStmt)->getCapturedStmt());
2987 if (DSAChecker.isErrorFound())
2988 return StmtError();
2989 // Generate list of implicitly defined firstprivate variables.
2990 VarsWithInheritedDSA = DSAChecker.getVarsWithInheritedDSA();
Alexey Bataev68446b72014-07-18 07:47:19 +00002991
2992 if (!DSAChecker.getImplicitFirstprivate().empty()) {
2993 if (OMPClause *Implicit = ActOnOpenMPFirstprivateClause(
2994 DSAChecker.getImplicitFirstprivate(), SourceLocation(),
2995 SourceLocation(), SourceLocation())) {
2996 ClausesWithImplicit.push_back(Implicit);
2997 ErrorFound = cast<OMPFirstprivateClause>(Implicit)->varlist_size() !=
2998 DSAChecker.getImplicitFirstprivate().size();
2999 } else
3000 ErrorFound = true;
3001 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00003002 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00003003
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003004 llvm::SmallVector<OpenMPDirectiveKind, 4> AllowedNameModifiers;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003005 switch (Kind) {
3006 case OMPD_parallel:
Alexey Bataeved09d242014-05-28 05:53:51 +00003007 Res = ActOnOpenMPParallelDirective(ClausesWithImplicit, AStmt, StartLoc,
3008 EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003009 AllowedNameModifiers.push_back(OMPD_parallel);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003010 break;
Alexey Bataev1b59ab52014-02-27 08:29:12 +00003011 case OMPD_simd:
Alexey Bataev4acb8592014-07-07 13:01:15 +00003012 Res = ActOnOpenMPSimdDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc,
3013 VarsWithInheritedDSA);
Alexey Bataev1b59ab52014-02-27 08:29:12 +00003014 break;
Alexey Bataevf29276e2014-06-18 04:14:57 +00003015 case OMPD_for:
Alexey Bataev4acb8592014-07-07 13:01:15 +00003016 Res = ActOnOpenMPForDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc,
3017 VarsWithInheritedDSA);
Alexey Bataevf29276e2014-06-18 04:14:57 +00003018 break;
Alexander Musmanf82886e2014-09-18 05:12:34 +00003019 case OMPD_for_simd:
3020 Res = ActOnOpenMPForSimdDirective(ClausesWithImplicit, AStmt, StartLoc,
3021 EndLoc, VarsWithInheritedDSA);
3022 break;
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00003023 case OMPD_sections:
3024 Res = ActOnOpenMPSectionsDirective(ClausesWithImplicit, AStmt, StartLoc,
3025 EndLoc);
3026 break;
Alexey Bataev1e0498a2014-06-26 08:21:58 +00003027 case OMPD_section:
3028 assert(ClausesWithImplicit.empty() &&
Alexander Musman80c22892014-07-17 08:54:58 +00003029 "No clauses are allowed for 'omp section' directive");
Alexey Bataev1e0498a2014-06-26 08:21:58 +00003030 Res = ActOnOpenMPSectionDirective(AStmt, StartLoc, EndLoc);
3031 break;
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00003032 case OMPD_single:
3033 Res = ActOnOpenMPSingleDirective(ClausesWithImplicit, AStmt, StartLoc,
3034 EndLoc);
3035 break;
Alexander Musman80c22892014-07-17 08:54:58 +00003036 case OMPD_master:
3037 assert(ClausesWithImplicit.empty() &&
3038 "No clauses are allowed for 'omp master' directive");
3039 Res = ActOnOpenMPMasterDirective(AStmt, StartLoc, EndLoc);
3040 break;
Alexander Musmand9ed09f2014-07-21 09:42:05 +00003041 case OMPD_critical:
Alexey Bataev28c75412015-12-15 08:19:24 +00003042 Res = ActOnOpenMPCriticalDirective(DirName, ClausesWithImplicit, AStmt,
3043 StartLoc, EndLoc);
Alexander Musmand9ed09f2014-07-21 09:42:05 +00003044 break;
Alexey Bataev4acb8592014-07-07 13:01:15 +00003045 case OMPD_parallel_for:
3046 Res = ActOnOpenMPParallelForDirective(ClausesWithImplicit, AStmt, StartLoc,
3047 EndLoc, VarsWithInheritedDSA);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003048 AllowedNameModifiers.push_back(OMPD_parallel);
Alexey Bataev4acb8592014-07-07 13:01:15 +00003049 break;
Alexander Musmane4e893b2014-09-23 09:33:00 +00003050 case OMPD_parallel_for_simd:
3051 Res = ActOnOpenMPParallelForSimdDirective(
3052 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003053 AllowedNameModifiers.push_back(OMPD_parallel);
Alexander Musmane4e893b2014-09-23 09:33:00 +00003054 break;
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00003055 case OMPD_parallel_sections:
3056 Res = ActOnOpenMPParallelSectionsDirective(ClausesWithImplicit, AStmt,
3057 StartLoc, EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003058 AllowedNameModifiers.push_back(OMPD_parallel);
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00003059 break;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003060 case OMPD_task:
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00003061 Res =
3062 ActOnOpenMPTaskDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003063 AllowedNameModifiers.push_back(OMPD_task);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00003064 break;
Alexey Bataev68446b72014-07-18 07:47:19 +00003065 case OMPD_taskyield:
3066 assert(ClausesWithImplicit.empty() &&
3067 "No clauses are allowed for 'omp taskyield' directive");
3068 assert(AStmt == nullptr &&
3069 "No associated statement allowed for 'omp taskyield' directive");
3070 Res = ActOnOpenMPTaskyieldDirective(StartLoc, EndLoc);
3071 break;
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00003072 case OMPD_barrier:
3073 assert(ClausesWithImplicit.empty() &&
3074 "No clauses are allowed for 'omp barrier' directive");
3075 assert(AStmt == nullptr &&
3076 "No associated statement allowed for 'omp barrier' directive");
3077 Res = ActOnOpenMPBarrierDirective(StartLoc, EndLoc);
3078 break;
Alexey Bataev2df347a2014-07-18 10:17:07 +00003079 case OMPD_taskwait:
3080 assert(ClausesWithImplicit.empty() &&
3081 "No clauses are allowed for 'omp taskwait' directive");
3082 assert(AStmt == nullptr &&
3083 "No associated statement allowed for 'omp taskwait' directive");
3084 Res = ActOnOpenMPTaskwaitDirective(StartLoc, EndLoc);
3085 break;
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00003086 case OMPD_taskgroup:
3087 assert(ClausesWithImplicit.empty() &&
3088 "No clauses are allowed for 'omp taskgroup' directive");
3089 Res = ActOnOpenMPTaskgroupDirective(AStmt, StartLoc, EndLoc);
3090 break;
Alexey Bataev6125da92014-07-21 11:26:11 +00003091 case OMPD_flush:
3092 assert(AStmt == nullptr &&
3093 "No associated statement allowed for 'omp flush' directive");
3094 Res = ActOnOpenMPFlushDirective(ClausesWithImplicit, StartLoc, EndLoc);
3095 break;
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003096 case OMPD_ordered:
Alexey Bataev346265e2015-09-25 10:37:12 +00003097 Res = ActOnOpenMPOrderedDirective(ClausesWithImplicit, AStmt, StartLoc,
3098 EndLoc);
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003099 break;
Alexey Bataev0162e452014-07-22 10:10:35 +00003100 case OMPD_atomic:
3101 Res = ActOnOpenMPAtomicDirective(ClausesWithImplicit, AStmt, StartLoc,
3102 EndLoc);
3103 break;
Alexey Bataev13314bf2014-10-09 04:18:56 +00003104 case OMPD_teams:
3105 Res =
3106 ActOnOpenMPTeamsDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc);
3107 break;
Alexey Bataev0bd520b2014-09-19 08:19:49 +00003108 case OMPD_target:
3109 Res = ActOnOpenMPTargetDirective(ClausesWithImplicit, AStmt, StartLoc,
3110 EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003111 AllowedNameModifiers.push_back(OMPD_target);
Alexey Bataev0bd520b2014-09-19 08:19:49 +00003112 break;
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00003113 case OMPD_target_parallel:
3114 Res = ActOnOpenMPTargetParallelDirective(ClausesWithImplicit, AStmt,
3115 StartLoc, EndLoc);
3116 AllowedNameModifiers.push_back(OMPD_target);
3117 AllowedNameModifiers.push_back(OMPD_parallel);
3118 break;
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00003119 case OMPD_target_parallel_for:
3120 Res = ActOnOpenMPTargetParallelForDirective(
3121 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
3122 AllowedNameModifiers.push_back(OMPD_target);
3123 AllowedNameModifiers.push_back(OMPD_parallel);
3124 break;
Alexey Bataev6d4ed052015-07-01 06:57:41 +00003125 case OMPD_cancellation_point:
3126 assert(ClausesWithImplicit.empty() &&
3127 "No clauses are allowed for 'omp cancellation point' directive");
3128 assert(AStmt == nullptr && "No associated statement allowed for 'omp "
3129 "cancellation point' directive");
3130 Res = ActOnOpenMPCancellationPointDirective(StartLoc, EndLoc, CancelRegion);
3131 break;
Alexey Bataev80909872015-07-02 11:25:17 +00003132 case OMPD_cancel:
Alexey Bataev80909872015-07-02 11:25:17 +00003133 assert(AStmt == nullptr &&
3134 "No associated statement allowed for 'omp cancel' directive");
Alexey Bataev87933c72015-09-18 08:07:34 +00003135 Res = ActOnOpenMPCancelDirective(ClausesWithImplicit, StartLoc, EndLoc,
3136 CancelRegion);
3137 AllowedNameModifiers.push_back(OMPD_cancel);
Alexey Bataev80909872015-07-02 11:25:17 +00003138 break;
Michael Wong65f367f2015-07-21 13:44:28 +00003139 case OMPD_target_data:
3140 Res = ActOnOpenMPTargetDataDirective(ClausesWithImplicit, AStmt, StartLoc,
3141 EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003142 AllowedNameModifiers.push_back(OMPD_target_data);
Michael Wong65f367f2015-07-21 13:44:28 +00003143 break;
Samuel Antaodf67fc42016-01-19 19:15:56 +00003144 case OMPD_target_enter_data:
3145 Res = ActOnOpenMPTargetEnterDataDirective(ClausesWithImplicit, StartLoc,
3146 EndLoc);
3147 AllowedNameModifiers.push_back(OMPD_target_enter_data);
3148 break;
Samuel Antao72590762016-01-19 20:04:50 +00003149 case OMPD_target_exit_data:
3150 Res = ActOnOpenMPTargetExitDataDirective(ClausesWithImplicit, StartLoc,
3151 EndLoc);
3152 AllowedNameModifiers.push_back(OMPD_target_exit_data);
3153 break;
Alexey Bataev49f6e782015-12-01 04:18:41 +00003154 case OMPD_taskloop:
3155 Res = ActOnOpenMPTaskLoopDirective(ClausesWithImplicit, AStmt, StartLoc,
3156 EndLoc, VarsWithInheritedDSA);
3157 AllowedNameModifiers.push_back(OMPD_taskloop);
3158 break;
Alexey Bataev0a6ed842015-12-03 09:40:15 +00003159 case OMPD_taskloop_simd:
3160 Res = ActOnOpenMPTaskLoopSimdDirective(ClausesWithImplicit, AStmt, StartLoc,
3161 EndLoc, VarsWithInheritedDSA);
3162 AllowedNameModifiers.push_back(OMPD_taskloop);
3163 break;
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00003164 case OMPD_distribute:
3165 Res = ActOnOpenMPDistributeDirective(ClausesWithImplicit, AStmt, StartLoc,
3166 EndLoc, VarsWithInheritedDSA);
3167 break;
Dmitry Polukhin0b0da292016-04-06 11:38:59 +00003168 case OMPD_declare_target:
3169 case OMPD_end_declare_target:
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00003170 case OMPD_threadprivate:
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00003171 case OMPD_declare_reduction:
Alexey Bataev587e1de2016-03-30 10:43:55 +00003172 case OMPD_declare_simd:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003173 llvm_unreachable("OpenMP Directive is not allowed");
3174 case OMPD_unknown:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003175 llvm_unreachable("Unknown OpenMP directive");
3176 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00003177
Alexey Bataev4acb8592014-07-07 13:01:15 +00003178 for (auto P : VarsWithInheritedDSA) {
3179 Diag(P.second->getExprLoc(), diag::err_omp_no_dsa_for_variable)
3180 << P.first << P.second->getSourceRange();
3181 }
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003182 ErrorFound = !VarsWithInheritedDSA.empty() || ErrorFound;
3183
3184 if (!AllowedNameModifiers.empty())
3185 ErrorFound = checkIfClauses(*this, Kind, Clauses, AllowedNameModifiers) ||
3186 ErrorFound;
Alexey Bataev4acb8592014-07-07 13:01:15 +00003187
Alexey Bataeved09d242014-05-28 05:53:51 +00003188 if (ErrorFound)
3189 return StmtError();
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003190 return Res;
3191}
3192
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003193Sema::DeclGroupPtrTy Sema::ActOnOpenMPDeclareSimdDirective(
3194 DeclGroupPtrTy DG, OMPDeclareSimdDeclAttr::BranchStateTy BS, Expr *Simdlen,
3195 ArrayRef<Expr *> Uniforms, SourceRange SR) {
Alexey Bataev587e1de2016-03-30 10:43:55 +00003196 if (!DG || DG.get().isNull())
3197 return DeclGroupPtrTy();
3198
3199 if (!DG.get().isSingleDecl()) {
Alexey Bataev20dfd772016-04-04 10:12:15 +00003200 Diag(SR.getBegin(), diag::err_omp_single_decl_in_declare_simd);
Alexey Bataev587e1de2016-03-30 10:43:55 +00003201 return DG;
3202 }
3203 auto *ADecl = DG.get().getSingleDecl();
3204 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(ADecl))
3205 ADecl = FTD->getTemplatedDecl();
3206
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003207 auto *FD = dyn_cast<FunctionDecl>(ADecl);
3208 if (!FD) {
3209 Diag(ADecl->getLocation(), diag::err_omp_function_expected);
Alexey Bataev587e1de2016-03-30 10:43:55 +00003210 return DeclGroupPtrTy();
3211 }
3212
Alexey Bataev2af33e32016-04-07 12:45:37 +00003213 // OpenMP [2.8.2, declare simd construct, Description]
3214 // The parameter of the simdlen clause must be a constant positive integer
3215 // expression.
3216 ExprResult SL;
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003217 if (Simdlen)
Alexey Bataev2af33e32016-04-07 12:45:37 +00003218 SL = VerifyPositiveIntegerConstantInClause(Simdlen, OMPC_simdlen);
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003219 // OpenMP [2.8.2, declare simd construct, Description]
3220 // The special this pointer can be used as if was one of the arguments to the
3221 // function in any of the linear, aligned, or uniform clauses.
3222 // The uniform clause declares one or more arguments to have an invariant
3223 // value for all concurrent invocations of the function in the execution of a
3224 // single SIMD loop.
3225 for (auto *E : Uniforms) {
3226 E = E->IgnoreParenImpCasts();
3227 if (auto *DRE = dyn_cast<DeclRefExpr>(E))
3228 if (auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl()))
3229 if (FD->getNumParams() > PVD->getFunctionScopeIndex() &&
3230 FD->getParamDecl(PVD->getFunctionScopeIndex())
3231 ->getCanonicalDecl() == PVD->getCanonicalDecl())
3232 continue;
3233 if (isa<CXXThisExpr>(E))
3234 continue;
3235 Diag(E->getExprLoc(), diag::err_omp_param_or_this_in_clause)
3236 << FD->getDeclName() << (isa<CXXMethodDecl>(ADecl) ? 1 : 0);
Alexey Bataev2af33e32016-04-07 12:45:37 +00003237 }
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003238 auto *NewAttr = OMPDeclareSimdDeclAttr::CreateImplicit(
3239 Context, BS, SL.get(), const_cast<Expr **>(Uniforms.data()),
3240 Uniforms.size(), SR);
Alexey Bataev587e1de2016-03-30 10:43:55 +00003241 ADecl->addAttr(NewAttr);
3242 return ConvertDeclToDeclGroup(ADecl);
3243}
3244
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003245StmtResult Sema::ActOnOpenMPParallelDirective(ArrayRef<OMPClause *> Clauses,
3246 Stmt *AStmt,
3247 SourceLocation StartLoc,
3248 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003249 if (!AStmt)
3250 return StmtError();
3251
Alexey Bataev9959db52014-05-06 10:08:46 +00003252 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
3253 // 1.2.2 OpenMP Language Terminology
3254 // Structured block - An executable statement with a single entry at the
3255 // top and a single exit at the bottom.
3256 // The point of exit cannot be a branch out of the structured block.
3257 // longjmp() and throw() must not violate the entry/exit criteria.
3258 CS->getCapturedDecl()->setNothrow();
3259
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003260 getCurFunction()->setHasBranchProtectedScope();
3261
Alexey Bataev25e5b442015-09-15 12:52:43 +00003262 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
3263 DSAStack->isCancelRegion());
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003264}
3265
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003266namespace {
3267/// \brief Helper class for checking canonical form of the OpenMP loops and
3268/// extracting iteration space of each loop in the loop nest, that will be used
3269/// for IR generation.
3270class OpenMPIterationSpaceChecker {
3271 /// \brief Reference to Sema.
3272 Sema &SemaRef;
3273 /// \brief A location for diagnostics (when there is no some better location).
3274 SourceLocation DefaultLoc;
3275 /// \brief A location for diagnostics (when increment is not compatible).
3276 SourceLocation ConditionLoc;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003277 /// \brief A source location for referring to loop init later.
3278 SourceRange InitSrcRange;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003279 /// \brief A source location for referring to condition later.
3280 SourceRange ConditionSrcRange;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003281 /// \brief A source location for referring to increment later.
3282 SourceRange IncrementSrcRange;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003283 /// \brief Loop variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003284 ValueDecl *LCDecl = nullptr;
Alexey Bataevcaf09b02014-07-25 06:27:47 +00003285 /// \brief Reference to loop variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003286 Expr *LCRef = nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003287 /// \brief Lower bound (initializer for the var).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003288 Expr *LB = nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003289 /// \brief Upper bound.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003290 Expr *UB = nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003291 /// \brief Loop step (increment).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003292 Expr *Step = nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003293 /// \brief This flag is true when condition is one of:
3294 /// Var < UB
3295 /// Var <= UB
3296 /// UB > Var
3297 /// UB >= Var
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003298 bool TestIsLessOp = false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003299 /// \brief This flag is true when condition is strict ( < or > ).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003300 bool TestIsStrictOp = false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003301 /// \brief This flag is true when step is subtracted on each iteration.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003302 bool SubtractStep = false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003303
3304public:
3305 OpenMPIterationSpaceChecker(Sema &SemaRef, SourceLocation DefaultLoc)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003306 : SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc) {}
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003307 /// \brief Check init-expr for canonical loop form and save loop counter
3308 /// variable - #Var and its initialization value - #LB.
Alexey Bataev9c821032015-04-30 04:23:23 +00003309 bool CheckInit(Stmt *S, bool EmitDiags = true);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003310 /// \brief Check test-expr for canonical form, save upper-bound (#UB), flags
3311 /// for less/greater and for strict/non-strict comparison.
3312 bool CheckCond(Expr *S);
3313 /// \brief Check incr-expr for canonical loop form and return true if it
3314 /// does not conform, otherwise save loop step (#Step).
3315 bool CheckInc(Expr *S);
3316 /// \brief Return the loop counter variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003317 ValueDecl *GetLoopDecl() const { return LCDecl; }
Alexey Bataevcaf09b02014-07-25 06:27:47 +00003318 /// \brief Return the reference expression to loop counter variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003319 Expr *GetLoopDeclRefExpr() const { return LCRef; }
Alexander Musmana5f070a2014-10-01 06:03:56 +00003320 /// \brief Source range of the loop init.
3321 SourceRange GetInitSrcRange() const { return InitSrcRange; }
3322 /// \brief Source range of the loop condition.
3323 SourceRange GetConditionSrcRange() const { return ConditionSrcRange; }
3324 /// \brief Source range of the loop increment.
3325 SourceRange GetIncrementSrcRange() const { return IncrementSrcRange; }
3326 /// \brief True if the step should be subtracted.
3327 bool ShouldSubtractStep() const { return SubtractStep; }
3328 /// \brief Build the expression to calculate the number of iterations.
Alexey Bataev5a3af132016-03-29 08:58:54 +00003329 Expr *
3330 BuildNumIterations(Scope *S, const bool LimitedType,
3331 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const;
Alexey Bataev62dbb972015-04-22 11:59:37 +00003332 /// \brief Build the precondition expression for the loops.
Alexey Bataev5a3af132016-03-29 08:58:54 +00003333 Expr *BuildPreCond(Scope *S, Expr *Cond,
3334 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003335 /// \brief Build reference expression to the counter be used for codegen.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003336 DeclRefExpr *
3337 BuildCounterVar(llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const;
Alexey Bataeva8899172015-08-06 12:30:57 +00003338 /// \brief Build reference expression to the private counter be used for
3339 /// codegen.
3340 Expr *BuildPrivateCounterVar() const;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003341 /// \brief Build initization of the counter be used for codegen.
3342 Expr *BuildCounterInit() const;
3343 /// \brief Build step of the counter be used for codegen.
3344 Expr *BuildCounterStep() const;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003345 /// \brief Return true if any expression is dependent.
3346 bool Dependent() const;
3347
3348private:
3349 /// \brief Check the right-hand side of an assignment in the increment
3350 /// expression.
3351 bool CheckIncRHS(Expr *RHS);
3352 /// \brief Helper to set loop counter variable and its initializer.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003353 bool SetLCDeclAndLB(ValueDecl *NewLCDecl, Expr *NewDeclRefExpr, Expr *NewLB);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003354 /// \brief Helper to set upper bound.
Craig Toppere335f252015-10-04 04:53:55 +00003355 bool SetUB(Expr *NewUB, bool LessOp, bool StrictOp, SourceRange SR,
Craig Topper9cd5e4f2015-09-21 01:23:32 +00003356 SourceLocation SL);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003357 /// \brief Helper to set loop increment.
3358 bool SetStep(Expr *NewStep, bool Subtract);
3359};
3360
3361bool OpenMPIterationSpaceChecker::Dependent() const {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003362 if (!LCDecl) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003363 assert(!LB && !UB && !Step);
3364 return false;
3365 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003366 return LCDecl->getType()->isDependentType() ||
3367 (LB && LB->isValueDependent()) || (UB && UB->isValueDependent()) ||
3368 (Step && Step->isValueDependent());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003369}
3370
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003371static Expr *getExprAsWritten(Expr *E) {
Alexey Bataev3bed68c2015-07-15 12:14:07 +00003372 if (auto *ExprTemp = dyn_cast<ExprWithCleanups>(E))
3373 E = ExprTemp->getSubExpr();
3374
3375 if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E))
3376 E = MTE->GetTemporaryExpr();
3377
3378 while (auto *Binder = dyn_cast<CXXBindTemporaryExpr>(E))
3379 E = Binder->getSubExpr();
3380
3381 if (auto *ICE = dyn_cast<ImplicitCastExpr>(E))
3382 E = ICE->getSubExprAsWritten();
3383 return E->IgnoreParens();
3384}
3385
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003386bool OpenMPIterationSpaceChecker::SetLCDeclAndLB(ValueDecl *NewLCDecl,
3387 Expr *NewLCRefExpr,
3388 Expr *NewLB) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003389 // State consistency checking to ensure correct usage.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003390 assert(LCDecl == nullptr && LB == nullptr && LCRef == nullptr &&
Alexey Bataevcaf09b02014-07-25 06:27:47 +00003391 UB == nullptr && Step == nullptr && !TestIsLessOp && !TestIsStrictOp);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003392 if (!NewLCDecl || !NewLB)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003393 return true;
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003394 LCDecl = getCanonicalDecl(NewLCDecl);
3395 LCRef = NewLCRefExpr;
Alexey Bataev3bed68c2015-07-15 12:14:07 +00003396 if (auto *CE = dyn_cast_or_null<CXXConstructExpr>(NewLB))
3397 if (const CXXConstructorDecl *Ctor = CE->getConstructor())
Alexey Bataev0d08a7f2015-07-16 04:19:43 +00003398 if ((Ctor->isCopyOrMoveConstructor() ||
3399 Ctor->isConvertingConstructor(/*AllowExplicit=*/false)) &&
3400 CE->getNumArgs() > 0 && CE->getArg(0) != nullptr)
Alexey Bataev3bed68c2015-07-15 12:14:07 +00003401 NewLB = CE->getArg(0)->IgnoreParenImpCasts();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003402 LB = NewLB;
3403 return false;
3404}
3405
3406bool OpenMPIterationSpaceChecker::SetUB(Expr *NewUB, bool LessOp, bool StrictOp,
Craig Toppere335f252015-10-04 04:53:55 +00003407 SourceRange SR, SourceLocation SL) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003408 // State consistency checking to ensure correct usage.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003409 assert(LCDecl != nullptr && LB != nullptr && UB == nullptr &&
3410 Step == nullptr && !TestIsLessOp && !TestIsStrictOp);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003411 if (!NewUB)
3412 return true;
3413 UB = NewUB;
3414 TestIsLessOp = LessOp;
3415 TestIsStrictOp = StrictOp;
3416 ConditionSrcRange = SR;
3417 ConditionLoc = SL;
3418 return false;
3419}
3420
3421bool OpenMPIterationSpaceChecker::SetStep(Expr *NewStep, bool Subtract) {
3422 // State consistency checking to ensure correct usage.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003423 assert(LCDecl != nullptr && LB != nullptr && Step == nullptr);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003424 if (!NewStep)
3425 return true;
3426 if (!NewStep->isValueDependent()) {
3427 // Check that the step is integer expression.
3428 SourceLocation StepLoc = NewStep->getLocStart();
3429 ExprResult Val =
3430 SemaRef.PerformOpenMPImplicitIntegerConversion(StepLoc, NewStep);
3431 if (Val.isInvalid())
3432 return true;
3433 NewStep = Val.get();
3434
3435 // OpenMP [2.6, Canonical Loop Form, Restrictions]
3436 // If test-expr is of form var relational-op b and relational-op is < or
3437 // <= then incr-expr must cause var to increase on each iteration of the
3438 // loop. If test-expr is of form var relational-op b and relational-op is
3439 // > or >= then incr-expr must cause var to decrease on each iteration of
3440 // the loop.
3441 // If test-expr is of form b relational-op var and relational-op is < or
3442 // <= then incr-expr must cause var to decrease on each iteration of the
3443 // loop. If test-expr is of form b relational-op var and relational-op is
3444 // > or >= then incr-expr must cause var to increase on each iteration of
3445 // the loop.
3446 llvm::APSInt Result;
3447 bool IsConstant = NewStep->isIntegerConstantExpr(Result, SemaRef.Context);
3448 bool IsUnsigned = !NewStep->getType()->hasSignedIntegerRepresentation();
3449 bool IsConstNeg =
3450 IsConstant && Result.isSigned() && (Subtract != Result.isNegative());
Alexander Musmana5f070a2014-10-01 06:03:56 +00003451 bool IsConstPos =
3452 IsConstant && Result.isSigned() && (Subtract == Result.isNegative());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003453 bool IsConstZero = IsConstant && !Result.getBoolValue();
3454 if (UB && (IsConstZero ||
3455 (TestIsLessOp ? (IsConstNeg || (IsUnsigned && Subtract))
Alexander Musmana5f070a2014-10-01 06:03:56 +00003456 : (IsConstPos || (IsUnsigned && !Subtract))))) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003457 SemaRef.Diag(NewStep->getExprLoc(),
3458 diag::err_omp_loop_incr_not_compatible)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003459 << LCDecl << TestIsLessOp << NewStep->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003460 SemaRef.Diag(ConditionLoc,
3461 diag::note_omp_loop_cond_requres_compatible_incr)
3462 << TestIsLessOp << ConditionSrcRange;
3463 return true;
3464 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00003465 if (TestIsLessOp == Subtract) {
3466 NewStep = SemaRef.CreateBuiltinUnaryOp(NewStep->getExprLoc(), UO_Minus,
3467 NewStep).get();
3468 Subtract = !Subtract;
3469 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003470 }
3471
3472 Step = NewStep;
3473 SubtractStep = Subtract;
3474 return false;
3475}
3476
Alexey Bataev9c821032015-04-30 04:23:23 +00003477bool OpenMPIterationSpaceChecker::CheckInit(Stmt *S, bool EmitDiags) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003478 // Check init-expr for canonical loop form and save loop counter
3479 // variable - #Var and its initialization value - #LB.
3480 // OpenMP [2.6] Canonical loop form. init-expr may be one of the following:
3481 // var = lb
3482 // integer-type var = lb
3483 // random-access-iterator-type var = lb
3484 // pointer-type var = lb
3485 //
3486 if (!S) {
Alexey Bataev9c821032015-04-30 04:23:23 +00003487 if (EmitDiags) {
3488 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_init);
3489 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003490 return true;
3491 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00003492 InitSrcRange = S->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003493 if (Expr *E = dyn_cast<Expr>(S))
3494 S = E->IgnoreParens();
3495 if (auto BO = dyn_cast<BinaryOperator>(S)) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003496 if (BO->getOpcode() == BO_Assign) {
3497 auto *LHS = BO->getLHS()->IgnoreParens();
3498 if (auto *DRE = dyn_cast<DeclRefExpr>(LHS)) {
3499 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(DRE->getDecl()))
3500 if (auto *ME = dyn_cast<MemberExpr>(getExprAsWritten(CED->getInit())))
3501 return SetLCDeclAndLB(ME->getMemberDecl(), ME, BO->getRHS());
3502 return SetLCDeclAndLB(DRE->getDecl(), DRE, BO->getRHS());
3503 }
3504 if (auto *ME = dyn_cast<MemberExpr>(LHS)) {
3505 if (ME->isArrow() &&
3506 isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()))
3507 return SetLCDeclAndLB(ME->getMemberDecl(), ME, BO->getRHS());
3508 }
3509 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003510 } else if (auto DS = dyn_cast<DeclStmt>(S)) {
3511 if (DS->isSingleDecl()) {
3512 if (auto Var = dyn_cast_or_null<VarDecl>(DS->getSingleDecl())) {
Alexey Bataeva8899172015-08-06 12:30:57 +00003513 if (Var->hasInit() && !Var->getType()->isReferenceType()) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003514 // Accept non-canonical init form here but emit ext. warning.
Alexey Bataev9c821032015-04-30 04:23:23 +00003515 if (Var->getInitStyle() != VarDecl::CInit && EmitDiags)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003516 SemaRef.Diag(S->getLocStart(),
3517 diag::ext_omp_loop_not_canonical_init)
3518 << S->getSourceRange();
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003519 return SetLCDeclAndLB(Var, nullptr, Var->getInit());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003520 }
3521 }
3522 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003523 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
3524 if (CE->getOperator() == OO_Equal) {
3525 auto *LHS = CE->getArg(0);
3526 if (auto DRE = dyn_cast<DeclRefExpr>(LHS)) {
3527 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(DRE->getDecl()))
3528 if (auto *ME = dyn_cast<MemberExpr>(getExprAsWritten(CED->getInit())))
3529 return SetLCDeclAndLB(ME->getMemberDecl(), ME, BO->getRHS());
3530 return SetLCDeclAndLB(DRE->getDecl(), DRE, CE->getArg(1));
3531 }
3532 if (auto *ME = dyn_cast<MemberExpr>(LHS)) {
3533 if (ME->isArrow() &&
3534 isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()))
3535 return SetLCDeclAndLB(ME->getMemberDecl(), ME, BO->getRHS());
3536 }
3537 }
3538 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003539
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003540 if (Dependent() || SemaRef.CurContext->isDependentContext())
3541 return false;
Alexey Bataev9c821032015-04-30 04:23:23 +00003542 if (EmitDiags) {
3543 SemaRef.Diag(S->getLocStart(), diag::err_omp_loop_not_canonical_init)
3544 << S->getSourceRange();
3545 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003546 return true;
3547}
3548
Alexey Bataev23b69422014-06-18 07:08:49 +00003549/// \brief Ignore parenthesizes, implicit casts, copy constructor and return the
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003550/// variable (which may be the loop variable) if possible.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003551static const ValueDecl *GetInitLCDecl(Expr *E) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003552 if (!E)
Craig Topper4b566922014-06-09 02:04:02 +00003553 return nullptr;
Alexey Bataev3bed68c2015-07-15 12:14:07 +00003554 E = getExprAsWritten(E);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003555 if (auto *CE = dyn_cast_or_null<CXXConstructExpr>(E))
3556 if (const CXXConstructorDecl *Ctor = CE->getConstructor())
Alexey Bataev0d08a7f2015-07-16 04:19:43 +00003557 if ((Ctor->isCopyOrMoveConstructor() ||
3558 Ctor->isConvertingConstructor(/*AllowExplicit=*/false)) &&
3559 CE->getNumArgs() > 0 && CE->getArg(0) != nullptr)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003560 E = CE->getArg(0)->IgnoreParenImpCasts();
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003561 if (auto *DRE = dyn_cast_or_null<DeclRefExpr>(E)) {
3562 if (auto *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
3563 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(VD))
3564 if (auto *ME = dyn_cast<MemberExpr>(getExprAsWritten(CED->getInit())))
3565 return getCanonicalDecl(ME->getMemberDecl());
3566 return getCanonicalDecl(VD);
3567 }
3568 }
3569 if (auto *ME = dyn_cast_or_null<MemberExpr>(E))
3570 if (ME->isArrow() && isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()))
3571 return getCanonicalDecl(ME->getMemberDecl());
3572 return nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003573}
3574
3575bool OpenMPIterationSpaceChecker::CheckCond(Expr *S) {
3576 // Check test-expr for canonical form, save upper-bound UB, flags for
3577 // less/greater and for strict/non-strict comparison.
3578 // OpenMP [2.6] Canonical loop form. Test-expr may be one of the following:
3579 // var relational-op b
3580 // b relational-op var
3581 //
3582 if (!S) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003583 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_cond) << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003584 return true;
3585 }
Alexey Bataev3bed68c2015-07-15 12:14:07 +00003586 S = getExprAsWritten(S);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003587 SourceLocation CondLoc = S->getLocStart();
3588 if (auto BO = dyn_cast<BinaryOperator>(S)) {
3589 if (BO->isRelationalOp()) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003590 if (GetInitLCDecl(BO->getLHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003591 return SetUB(BO->getRHS(),
3592 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_LE),
3593 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
3594 BO->getSourceRange(), BO->getOperatorLoc());
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003595 if (GetInitLCDecl(BO->getRHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003596 return SetUB(BO->getLHS(),
3597 (BO->getOpcode() == BO_GT || BO->getOpcode() == BO_GE),
3598 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
3599 BO->getSourceRange(), BO->getOperatorLoc());
3600 }
3601 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
3602 if (CE->getNumArgs() == 2) {
3603 auto Op = CE->getOperator();
3604 switch (Op) {
3605 case OO_Greater:
3606 case OO_GreaterEqual:
3607 case OO_Less:
3608 case OO_LessEqual:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003609 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003610 return SetUB(CE->getArg(1), Op == OO_Less || Op == OO_LessEqual,
3611 Op == OO_Less || Op == OO_Greater, CE->getSourceRange(),
3612 CE->getOperatorLoc());
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003613 if (GetInitLCDecl(CE->getArg(1)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003614 return SetUB(CE->getArg(0), Op == OO_Greater || Op == OO_GreaterEqual,
3615 Op == OO_Less || Op == OO_Greater, CE->getSourceRange(),
3616 CE->getOperatorLoc());
3617 break;
3618 default:
3619 break;
3620 }
3621 }
3622 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003623 if (Dependent() || SemaRef.CurContext->isDependentContext())
3624 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003625 SemaRef.Diag(CondLoc, diag::err_omp_loop_not_canonical_cond)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003626 << S->getSourceRange() << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003627 return true;
3628}
3629
3630bool OpenMPIterationSpaceChecker::CheckIncRHS(Expr *RHS) {
3631 // RHS of canonical loop form increment can be:
3632 // var + incr
3633 // incr + var
3634 // var - incr
3635 //
3636 RHS = RHS->IgnoreParenImpCasts();
3637 if (auto BO = dyn_cast<BinaryOperator>(RHS)) {
3638 if (BO->isAdditiveOp()) {
3639 bool IsAdd = BO->getOpcode() == BO_Add;
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003640 if (GetInitLCDecl(BO->getLHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003641 return SetStep(BO->getRHS(), !IsAdd);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003642 if (IsAdd && GetInitLCDecl(BO->getRHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003643 return SetStep(BO->getLHS(), false);
3644 }
3645 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(RHS)) {
3646 bool IsAdd = CE->getOperator() == OO_Plus;
3647 if ((IsAdd || CE->getOperator() == OO_Minus) && CE->getNumArgs() == 2) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003648 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003649 return SetStep(CE->getArg(1), !IsAdd);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003650 if (IsAdd && GetInitLCDecl(CE->getArg(1)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003651 return SetStep(CE->getArg(0), false);
3652 }
3653 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003654 if (Dependent() || SemaRef.CurContext->isDependentContext())
3655 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003656 SemaRef.Diag(RHS->getLocStart(), diag::err_omp_loop_not_canonical_incr)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003657 << RHS->getSourceRange() << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003658 return true;
3659}
3660
3661bool OpenMPIterationSpaceChecker::CheckInc(Expr *S) {
3662 // Check incr-expr for canonical loop form and return true if it
3663 // does not conform.
3664 // OpenMP [2.6] Canonical loop form. Test-expr may be one of the following:
3665 // ++var
3666 // var++
3667 // --var
3668 // var--
3669 // var += incr
3670 // var -= incr
3671 // var = var + incr
3672 // var = incr + var
3673 // var = var - incr
3674 //
3675 if (!S) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003676 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_incr) << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003677 return true;
3678 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00003679 IncrementSrcRange = S->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003680 S = S->IgnoreParens();
3681 if (auto UO = dyn_cast<UnaryOperator>(S)) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003682 if (UO->isIncrementDecrementOp() &&
3683 GetInitLCDecl(UO->getSubExpr()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003684 return SetStep(
3685 SemaRef.ActOnIntegerConstant(UO->getLocStart(),
3686 (UO->isDecrementOp() ? -1 : 1)).get(),
3687 false);
3688 } else if (auto BO = dyn_cast<BinaryOperator>(S)) {
3689 switch (BO->getOpcode()) {
3690 case BO_AddAssign:
3691 case BO_SubAssign:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003692 if (GetInitLCDecl(BO->getLHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003693 return SetStep(BO->getRHS(), BO->getOpcode() == BO_SubAssign);
3694 break;
3695 case BO_Assign:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003696 if (GetInitLCDecl(BO->getLHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003697 return CheckIncRHS(BO->getRHS());
3698 break;
3699 default:
3700 break;
3701 }
3702 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
3703 switch (CE->getOperator()) {
3704 case OO_PlusPlus:
3705 case OO_MinusMinus:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003706 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003707 return SetStep(
3708 SemaRef.ActOnIntegerConstant(
3709 CE->getLocStart(),
3710 ((CE->getOperator() == OO_MinusMinus) ? -1 : 1)).get(),
3711 false);
3712 break;
3713 case OO_PlusEqual:
3714 case OO_MinusEqual:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003715 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003716 return SetStep(CE->getArg(1), CE->getOperator() == OO_MinusEqual);
3717 break;
3718 case OO_Equal:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003719 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003720 return CheckIncRHS(CE->getArg(1));
3721 break;
3722 default:
3723 break;
3724 }
3725 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003726 if (Dependent() || SemaRef.CurContext->isDependentContext())
3727 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003728 SemaRef.Diag(S->getLocStart(), diag::err_omp_loop_not_canonical_incr)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003729 << S->getSourceRange() << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003730 return true;
3731}
Alexander Musmana5f070a2014-10-01 06:03:56 +00003732
Alexey Bataev5a3af132016-03-29 08:58:54 +00003733static ExprResult
3734tryBuildCapture(Sema &SemaRef, Expr *Capture,
3735 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) {
3736 if (Capture->isEvaluatable(SemaRef.Context, Expr::SE_AllowSideEffects))
3737 return SemaRef.PerformImplicitConversion(
3738 Capture->IgnoreImpCasts(), Capture->getType(), Sema::AA_Converting,
3739 /*AllowExplicit=*/true);
3740 auto I = Captures.find(Capture);
3741 if (I != Captures.end())
3742 return buildCapture(SemaRef, Capture, I->second);
3743 DeclRefExpr *Ref = nullptr;
3744 ExprResult Res = buildCapture(SemaRef, Capture, Ref);
3745 Captures[Capture] = Ref;
3746 return Res;
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003747}
3748
Alexander Musmana5f070a2014-10-01 06:03:56 +00003749/// \brief Build the expression to calculate the number of iterations.
Alexey Bataev5a3af132016-03-29 08:58:54 +00003750Expr *OpenMPIterationSpaceChecker::BuildNumIterations(
3751 Scope *S, const bool LimitedType,
3752 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const {
Alexander Musmana5f070a2014-10-01 06:03:56 +00003753 ExprResult Diff;
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003754 auto VarType = LCDecl->getType().getNonReferenceType();
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003755 if (VarType->isIntegerType() || VarType->isPointerType() ||
Alexander Musmana5f070a2014-10-01 06:03:56 +00003756 SemaRef.getLangOpts().CPlusPlus) {
3757 // Upper - Lower
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003758 auto *UBExpr = TestIsLessOp ? UB : LB;
3759 auto *LBExpr = TestIsLessOp ? LB : UB;
Alexey Bataev5a3af132016-03-29 08:58:54 +00003760 Expr *Upper = tryBuildCapture(SemaRef, UBExpr, Captures).get();
3761 Expr *Lower = tryBuildCapture(SemaRef, LBExpr, Captures).get();
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003762 if (!Upper || !Lower)
3763 return nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003764
3765 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower);
3766
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003767 if (!Diff.isUsable() && VarType->getAsCXXRecordDecl()) {
Alexander Musmana5f070a2014-10-01 06:03:56 +00003768 // BuildBinOp already emitted error, this one is to point user to upper
3769 // and lower bound, and to tell what is passed to 'operator-'.
3770 SemaRef.Diag(Upper->getLocStart(), diag::err_omp_loop_diff_cxx)
3771 << Upper->getSourceRange() << Lower->getSourceRange();
3772 return nullptr;
3773 }
3774 }
3775
3776 if (!Diff.isUsable())
3777 return nullptr;
3778
3779 // Upper - Lower [- 1]
3780 if (TestIsStrictOp)
3781 Diff = SemaRef.BuildBinOp(
3782 S, DefaultLoc, BO_Sub, Diff.get(),
3783 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
3784 if (!Diff.isUsable())
3785 return nullptr;
3786
3787 // Upper - Lower [- 1] + Step
Alexey Bataev5a3af132016-03-29 08:58:54 +00003788 auto NewStep = tryBuildCapture(SemaRef, Step, Captures);
3789 if (!NewStep.isUsable())
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003790 return nullptr;
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003791 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Add, Diff.get(), NewStep.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00003792 if (!Diff.isUsable())
3793 return nullptr;
3794
3795 // Parentheses (for dumping/debugging purposes only).
3796 Diff = SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, Diff.get());
3797 if (!Diff.isUsable())
3798 return nullptr;
3799
3800 // (Upper - Lower [- 1] + Step) / Step
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003801 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Div, Diff.get(), NewStep.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00003802 if (!Diff.isUsable())
3803 return nullptr;
3804
Alexander Musman174b3ca2014-10-06 11:16:29 +00003805 // OpenMP runtime requires 32-bit or 64-bit loop variables.
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003806 QualType Type = Diff.get()->getType();
3807 auto &C = SemaRef.Context;
3808 bool UseVarType = VarType->hasIntegerRepresentation() &&
3809 C.getTypeSize(Type) > C.getTypeSize(VarType);
3810 if (!Type->isIntegerType() || UseVarType) {
3811 unsigned NewSize =
3812 UseVarType ? C.getTypeSize(VarType) : C.getTypeSize(Type);
3813 bool IsSigned = UseVarType ? VarType->hasSignedIntegerRepresentation()
3814 : Type->hasSignedIntegerRepresentation();
3815 Type = C.getIntTypeForBitwidth(NewSize, IsSigned);
Alexey Bataev11481f52016-02-17 10:29:05 +00003816 if (!SemaRef.Context.hasSameType(Diff.get()->getType(), Type)) {
3817 Diff = SemaRef.PerformImplicitConversion(
3818 Diff.get(), Type, Sema::AA_Converting, /*AllowExplicit=*/true);
3819 if (!Diff.isUsable())
3820 return nullptr;
3821 }
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003822 }
Alexander Musman174b3ca2014-10-06 11:16:29 +00003823 if (LimitedType) {
Alexander Musman174b3ca2014-10-06 11:16:29 +00003824 unsigned NewSize = (C.getTypeSize(Type) > 32) ? 64 : 32;
3825 if (NewSize != C.getTypeSize(Type)) {
3826 if (NewSize < C.getTypeSize(Type)) {
3827 assert(NewSize == 64 && "incorrect loop var size");
3828 SemaRef.Diag(DefaultLoc, diag::warn_omp_loop_64_bit_var)
3829 << InitSrcRange << ConditionSrcRange;
3830 }
3831 QualType NewType = C.getIntTypeForBitwidth(
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003832 NewSize, Type->hasSignedIntegerRepresentation() ||
3833 C.getTypeSize(Type) < NewSize);
Alexey Bataev11481f52016-02-17 10:29:05 +00003834 if (!SemaRef.Context.hasSameType(Diff.get()->getType(), NewType)) {
3835 Diff = SemaRef.PerformImplicitConversion(Diff.get(), NewType,
3836 Sema::AA_Converting, true);
3837 if (!Diff.isUsable())
3838 return nullptr;
3839 }
Alexander Musman174b3ca2014-10-06 11:16:29 +00003840 }
3841 }
3842
Alexander Musmana5f070a2014-10-01 06:03:56 +00003843 return Diff.get();
3844}
3845
Alexey Bataev5a3af132016-03-29 08:58:54 +00003846Expr *OpenMPIterationSpaceChecker::BuildPreCond(
3847 Scope *S, Expr *Cond,
3848 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const {
Alexey Bataev62dbb972015-04-22 11:59:37 +00003849 // Try to build LB <op> UB, where <op> is <, >, <=, or >=.
3850 bool Suppress = SemaRef.getDiagnostics().getSuppressAllDiagnostics();
3851 SemaRef.getDiagnostics().setSuppressAllDiagnostics(/*Val=*/true);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003852
Alexey Bataev5a3af132016-03-29 08:58:54 +00003853 auto NewLB = tryBuildCapture(SemaRef, LB, Captures);
3854 auto NewUB = tryBuildCapture(SemaRef, UB, Captures);
3855 if (!NewLB.isUsable() || !NewUB.isUsable())
3856 return nullptr;
3857
Alexey Bataev62dbb972015-04-22 11:59:37 +00003858 auto CondExpr = SemaRef.BuildBinOp(
3859 S, DefaultLoc, TestIsLessOp ? (TestIsStrictOp ? BO_LT : BO_LE)
3860 : (TestIsStrictOp ? BO_GT : BO_GE),
Alexey Bataevb08f89f2015-08-14 12:25:37 +00003861 NewLB.get(), NewUB.get());
Alexey Bataev3bed68c2015-07-15 12:14:07 +00003862 if (CondExpr.isUsable()) {
Alexey Bataev5a3af132016-03-29 08:58:54 +00003863 if (!SemaRef.Context.hasSameUnqualifiedType(CondExpr.get()->getType(),
3864 SemaRef.Context.BoolTy))
Alexey Bataev11481f52016-02-17 10:29:05 +00003865 CondExpr = SemaRef.PerformImplicitConversion(
3866 CondExpr.get(), SemaRef.Context.BoolTy, /*Action=*/Sema::AA_Casting,
3867 /*AllowExplicit=*/true);
Alexey Bataev3bed68c2015-07-15 12:14:07 +00003868 }
Alexey Bataev62dbb972015-04-22 11:59:37 +00003869 SemaRef.getDiagnostics().setSuppressAllDiagnostics(Suppress);
3870 // Otherwise use original loop conditon and evaluate it in runtime.
3871 return CondExpr.isUsable() ? CondExpr.get() : Cond;
3872}
3873
Alexander Musmana5f070a2014-10-01 06:03:56 +00003874/// \brief Build reference expression to the counter be used for codegen.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003875DeclRefExpr *OpenMPIterationSpaceChecker::BuildCounterVar(
3876 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const {
3877 auto *VD = dyn_cast<VarDecl>(LCDecl);
3878 if (!VD) {
3879 VD = SemaRef.IsOpenMPCapturedDecl(LCDecl);
3880 auto *Ref = buildDeclRefExpr(
3881 SemaRef, VD, VD->getType().getNonReferenceType(), DefaultLoc);
3882 Captures.insert(std::make_pair(LCRef, Ref));
3883 return Ref;
3884 }
3885 return buildDeclRefExpr(SemaRef, VD, VD->getType().getNonReferenceType(),
Alexey Bataeva8899172015-08-06 12:30:57 +00003886 DefaultLoc);
3887}
3888
3889Expr *OpenMPIterationSpaceChecker::BuildPrivateCounterVar() const {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003890 if (LCDecl && !LCDecl->isInvalidDecl()) {
3891 auto Type = LCDecl->getType().getNonReferenceType();
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00003892 auto *PrivateVar =
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003893 buildVarDecl(SemaRef, DefaultLoc, Type, LCDecl->getName(),
3894 LCDecl->hasAttrs() ? &LCDecl->getAttrs() : nullptr);
Alexey Bataeva8899172015-08-06 12:30:57 +00003895 if (PrivateVar->isInvalidDecl())
3896 return nullptr;
3897 return buildDeclRefExpr(SemaRef, PrivateVar, Type, DefaultLoc);
3898 }
3899 return nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003900}
3901
3902/// \brief Build initization of the counter be used for codegen.
3903Expr *OpenMPIterationSpaceChecker::BuildCounterInit() const { return LB; }
3904
3905/// \brief Build step of the counter be used for codegen.
3906Expr *OpenMPIterationSpaceChecker::BuildCounterStep() const { return Step; }
3907
3908/// \brief Iteration space of a single for loop.
3909struct LoopIterationSpace {
Alexey Bataev62dbb972015-04-22 11:59:37 +00003910 /// \brief Condition of the loop.
3911 Expr *PreCond;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003912 /// \brief This expression calculates the number of iterations in the loop.
3913 /// It is always possible to calculate it before starting the loop.
3914 Expr *NumIterations;
3915 /// \brief The loop counter variable.
3916 Expr *CounterVar;
Alexey Bataeva8899172015-08-06 12:30:57 +00003917 /// \brief Private loop counter variable.
3918 Expr *PrivateCounterVar;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003919 /// \brief This is initializer for the initial value of #CounterVar.
3920 Expr *CounterInit;
3921 /// \brief This is step for the #CounterVar used to generate its update:
3922 /// #CounterVar = #CounterInit + #CounterStep * CurrentIteration.
3923 Expr *CounterStep;
3924 /// \brief Should step be subtracted?
3925 bool Subtract;
3926 /// \brief Source range of the loop init.
3927 SourceRange InitSrcRange;
3928 /// \brief Source range of the loop condition.
3929 SourceRange CondSrcRange;
3930 /// \brief Source range of the loop increment.
3931 SourceRange IncSrcRange;
3932};
3933
Alexey Bataev23b69422014-06-18 07:08:49 +00003934} // namespace
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003935
Alexey Bataev9c821032015-04-30 04:23:23 +00003936void Sema::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init) {
3937 assert(getLangOpts().OpenMP && "OpenMP is not active.");
3938 assert(Init && "Expected loop in canonical form.");
Alexey Bataeva636c7f2015-12-23 10:27:45 +00003939 unsigned AssociatedLoops = DSAStack->getAssociatedLoops();
3940 if (AssociatedLoops > 0 &&
Alexey Bataev9c821032015-04-30 04:23:23 +00003941 isOpenMPLoopDirective(DSAStack->getCurrentDirective())) {
3942 OpenMPIterationSpaceChecker ISC(*this, ForLoc);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003943 if (!ISC.CheckInit(Init, /*EmitDiags=*/false)) {
3944 if (auto *D = ISC.GetLoopDecl()) {
3945 auto *VD = dyn_cast<VarDecl>(D);
3946 if (!VD) {
3947 if (auto *Private = IsOpenMPCapturedDecl(D))
3948 VD = Private;
3949 else {
3950 auto *Ref = buildCapture(*this, D, ISC.GetLoopDeclRefExpr(),
3951 /*WithInit=*/false);
3952 VD = cast<VarDecl>(Ref->getDecl());
3953 }
3954 }
3955 DSAStack->addLoopControlVariable(D, VD);
3956 }
3957 }
Alexey Bataeva636c7f2015-12-23 10:27:45 +00003958 DSAStack->setAssociatedLoops(AssociatedLoops - 1);
Alexey Bataev9c821032015-04-30 04:23:23 +00003959 }
3960}
3961
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003962/// \brief Called on a for stmt to check and extract its iteration space
3963/// for further processing (such as collapsing).
Alexey Bataev4acb8592014-07-07 13:01:15 +00003964static bool CheckOpenMPIterationSpace(
3965 OpenMPDirectiveKind DKind, Stmt *S, Sema &SemaRef, DSAStackTy &DSA,
3966 unsigned CurrentNestedLoopCount, unsigned NestedLoopCount,
Alexey Bataev10e775f2015-07-30 11:36:16 +00003967 Expr *CollapseLoopCountExpr, Expr *OrderedLoopCountExpr,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00003968 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA,
Alexey Bataev5a3af132016-03-29 08:58:54 +00003969 LoopIterationSpace &ResultIterSpace,
3970 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003971 // OpenMP [2.6, Canonical Loop Form]
3972 // for (init-expr; test-expr; incr-expr) structured-block
3973 auto For = dyn_cast_or_null<ForStmt>(S);
3974 if (!For) {
3975 SemaRef.Diag(S->getLocStart(), diag::err_omp_not_for)
Alexey Bataev10e775f2015-07-30 11:36:16 +00003976 << (CollapseLoopCountExpr != nullptr || OrderedLoopCountExpr != nullptr)
3977 << getOpenMPDirectiveName(DKind) << NestedLoopCount
3978 << (CurrentNestedLoopCount > 0) << CurrentNestedLoopCount;
3979 if (NestedLoopCount > 1) {
3980 if (CollapseLoopCountExpr && OrderedLoopCountExpr)
3981 SemaRef.Diag(DSA.getConstructLoc(),
3982 diag::note_omp_collapse_ordered_expr)
3983 << 2 << CollapseLoopCountExpr->getSourceRange()
3984 << OrderedLoopCountExpr->getSourceRange();
3985 else if (CollapseLoopCountExpr)
3986 SemaRef.Diag(CollapseLoopCountExpr->getExprLoc(),
3987 diag::note_omp_collapse_ordered_expr)
3988 << 0 << CollapseLoopCountExpr->getSourceRange();
3989 else
3990 SemaRef.Diag(OrderedLoopCountExpr->getExprLoc(),
3991 diag::note_omp_collapse_ordered_expr)
3992 << 1 << OrderedLoopCountExpr->getSourceRange();
3993 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003994 return true;
3995 }
3996 assert(For->getBody());
3997
3998 OpenMPIterationSpaceChecker ISC(SemaRef, For->getForLoc());
3999
4000 // Check init.
Alexey Bataevdf9b1592014-06-25 04:09:13 +00004001 auto Init = For->getInit();
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004002 if (ISC.CheckInit(Init))
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004003 return true;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004004
4005 bool HasErrors = false;
4006
4007 // Check loop variable's type.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004008 if (auto *LCDecl = ISC.GetLoopDecl()) {
4009 auto *LoopDeclRefExpr = ISC.GetLoopDeclRefExpr();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004010
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004011 // OpenMP [2.6, Canonical Loop Form]
4012 // Var is one of the following:
4013 // A variable of signed or unsigned integer type.
4014 // For C++, a variable of a random access iterator type.
4015 // For C, a variable of a pointer type.
4016 auto VarType = LCDecl->getType().getNonReferenceType();
4017 if (!VarType->isDependentType() && !VarType->isIntegerType() &&
4018 !VarType->isPointerType() &&
4019 !(SemaRef.getLangOpts().CPlusPlus && VarType->isOverloadableType())) {
4020 SemaRef.Diag(Init->getLocStart(), diag::err_omp_loop_variable_type)
4021 << SemaRef.getLangOpts().CPlusPlus;
4022 HasErrors = true;
4023 }
4024
4025 // OpenMP, 2.14.1.1 Data-sharing Attribute Rules for Variables Referenced in
4026 // a Construct
4027 // The loop iteration variable(s) in the associated for-loop(s) of a for or
4028 // parallel for construct is (are) private.
4029 // The loop iteration variable in the associated for-loop of a simd
4030 // construct with just one associated for-loop is linear with a
4031 // constant-linear-step that is the increment of the associated for-loop.
4032 // Exclude loop var from the list of variables with implicitly defined data
4033 // sharing attributes.
4034 VarsWithImplicitDSA.erase(LCDecl);
4035
4036 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced
4037 // in a Construct, C/C++].
4038 // The loop iteration variable in the associated for-loop of a simd
4039 // construct with just one associated for-loop may be listed in a linear
4040 // clause with a constant-linear-step that is the increment of the
4041 // associated for-loop.
4042 // The loop iteration variable(s) in the associated for-loop(s) of a for or
4043 // parallel for construct may be listed in a private or lastprivate clause.
4044 DSAStackTy::DSAVarData DVar = DSA.getTopDSA(LCDecl, false);
4045 // If LoopVarRefExpr is nullptr it means the corresponding loop variable is
4046 // declared in the loop and it is predetermined as a private.
4047 auto PredeterminedCKind =
4048 isOpenMPSimdDirective(DKind)
4049 ? ((NestedLoopCount == 1) ? OMPC_linear : OMPC_lastprivate)
4050 : OMPC_private;
4051 if (((isOpenMPSimdDirective(DKind) && DVar.CKind != OMPC_unknown &&
4052 DVar.CKind != PredeterminedCKind) ||
4053 ((isOpenMPWorksharingDirective(DKind) || DKind == OMPD_taskloop ||
4054 isOpenMPDistributeDirective(DKind)) &&
4055 !isOpenMPSimdDirective(DKind) && DVar.CKind != OMPC_unknown &&
4056 DVar.CKind != OMPC_private && DVar.CKind != OMPC_lastprivate)) &&
4057 (DVar.CKind != OMPC_private || DVar.RefExpr != nullptr)) {
4058 SemaRef.Diag(Init->getLocStart(), diag::err_omp_loop_var_dsa)
4059 << getOpenMPClauseName(DVar.CKind) << getOpenMPDirectiveName(DKind)
4060 << getOpenMPClauseName(PredeterminedCKind);
4061 if (DVar.RefExpr == nullptr)
4062 DVar.CKind = PredeterminedCKind;
4063 ReportOriginalDSA(SemaRef, &DSA, LCDecl, DVar, /*IsLoopIterVar=*/true);
4064 HasErrors = true;
4065 } else if (LoopDeclRefExpr != nullptr) {
4066 // Make the loop iteration variable private (for worksharing constructs),
4067 // linear (for simd directives with the only one associated loop) or
4068 // lastprivate (for simd directives with several collapsed or ordered
4069 // loops).
4070 if (DVar.CKind == OMPC_unknown)
4071 DVar = DSA.hasDSA(LCDecl, isOpenMPPrivate, MatchesAlways(),
4072 /*FromParent=*/false);
4073 DSA.addDSA(LCDecl, LoopDeclRefExpr, PredeterminedCKind);
4074 }
4075
4076 assert(isOpenMPLoopDirective(DKind) && "DSA for non-loop vars");
4077
4078 // Check test-expr.
4079 HasErrors |= ISC.CheckCond(For->getCond());
4080
4081 // Check incr-expr.
4082 HasErrors |= ISC.CheckInc(For->getInc());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004083 }
4084
Alexander Musmana5f070a2014-10-01 06:03:56 +00004085 if (ISC.Dependent() || SemaRef.CurContext->isDependentContext() || HasErrors)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004086 return HasErrors;
4087
Alexander Musmana5f070a2014-10-01 06:03:56 +00004088 // Build the loop's iteration space representation.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004089 ResultIterSpace.PreCond =
4090 ISC.BuildPreCond(DSA.getCurScope(), For->getCond(), Captures);
Alexander Musman174b3ca2014-10-06 11:16:29 +00004091 ResultIterSpace.NumIterations = ISC.BuildNumIterations(
Alexey Bataev5a3af132016-03-29 08:58:54 +00004092 DSA.getCurScope(),
4093 (isOpenMPWorksharingDirective(DKind) ||
4094 isOpenMPTaskLoopDirective(DKind) || isOpenMPDistributeDirective(DKind)),
4095 Captures);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004096 ResultIterSpace.CounterVar = ISC.BuildCounterVar(Captures);
Alexey Bataeva8899172015-08-06 12:30:57 +00004097 ResultIterSpace.PrivateCounterVar = ISC.BuildPrivateCounterVar();
Alexander Musmana5f070a2014-10-01 06:03:56 +00004098 ResultIterSpace.CounterInit = ISC.BuildCounterInit();
4099 ResultIterSpace.CounterStep = ISC.BuildCounterStep();
4100 ResultIterSpace.InitSrcRange = ISC.GetInitSrcRange();
4101 ResultIterSpace.CondSrcRange = ISC.GetConditionSrcRange();
4102 ResultIterSpace.IncSrcRange = ISC.GetIncrementSrcRange();
4103 ResultIterSpace.Subtract = ISC.ShouldSubtractStep();
4104
Alexey Bataev62dbb972015-04-22 11:59:37 +00004105 HasErrors |= (ResultIterSpace.PreCond == nullptr ||
4106 ResultIterSpace.NumIterations == nullptr ||
Alexander Musmana5f070a2014-10-01 06:03:56 +00004107 ResultIterSpace.CounterVar == nullptr ||
Alexey Bataeva8899172015-08-06 12:30:57 +00004108 ResultIterSpace.PrivateCounterVar == nullptr ||
Alexander Musmana5f070a2014-10-01 06:03:56 +00004109 ResultIterSpace.CounterInit == nullptr ||
4110 ResultIterSpace.CounterStep == nullptr);
4111
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004112 return HasErrors;
4113}
4114
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004115/// \brief Build 'VarRef = Start.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004116static ExprResult
4117BuildCounterInit(Sema &SemaRef, Scope *S, SourceLocation Loc, ExprResult VarRef,
4118 ExprResult Start,
4119 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) {
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004120 // Build 'VarRef = Start.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004121 auto NewStart = tryBuildCapture(SemaRef, Start.get(), Captures);
4122 if (!NewStart.isUsable())
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004123 return ExprError();
Alexey Bataev11481f52016-02-17 10:29:05 +00004124 if (!SemaRef.Context.hasSameType(NewStart.get()->getType(),
Alexey Bataev11481f52016-02-17 10:29:05 +00004125 VarRef.get()->getType())) {
4126 NewStart = SemaRef.PerformImplicitConversion(
4127 NewStart.get(), VarRef.get()->getType(), Sema::AA_Converting,
4128 /*AllowExplicit=*/true);
4129 if (!NewStart.isUsable())
4130 return ExprError();
4131 }
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004132
4133 auto Init =
4134 SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), NewStart.get());
4135 return Init;
4136}
4137
Alexander Musmana5f070a2014-10-01 06:03:56 +00004138/// \brief Build 'VarRef = Start + Iter * Step'.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004139static ExprResult
4140BuildCounterUpdate(Sema &SemaRef, Scope *S, SourceLocation Loc,
4141 ExprResult VarRef, ExprResult Start, ExprResult Iter,
4142 ExprResult Step, bool Subtract,
4143 llvm::MapVector<Expr *, DeclRefExpr *> *Captures = nullptr) {
Alexander Musmana5f070a2014-10-01 06:03:56 +00004144 // Add parentheses (for debugging purposes only).
4145 Iter = SemaRef.ActOnParenExpr(Loc, Loc, Iter.get());
4146 if (!VarRef.isUsable() || !Start.isUsable() || !Iter.isUsable() ||
4147 !Step.isUsable())
4148 return ExprError();
4149
Alexey Bataev5a3af132016-03-29 08:58:54 +00004150 ExprResult NewStep = Step;
4151 if (Captures)
4152 NewStep = tryBuildCapture(SemaRef, Step.get(), *Captures);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004153 if (NewStep.isInvalid())
4154 return ExprError();
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004155 ExprResult Update =
4156 SemaRef.BuildBinOp(S, Loc, BO_Mul, Iter.get(), NewStep.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004157 if (!Update.isUsable())
4158 return ExprError();
4159
Alexey Bataevc0214e02016-02-16 12:13:49 +00004160 // Try to build 'VarRef = Start, VarRef (+|-)= Iter * Step' or
4161 // 'VarRef = Start (+|-) Iter * Step'.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004162 ExprResult NewStart = Start;
4163 if (Captures)
4164 NewStart = tryBuildCapture(SemaRef, Start.get(), *Captures);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004165 if (NewStart.isInvalid())
4166 return ExprError();
Alexander Musmana5f070a2014-10-01 06:03:56 +00004167
Alexey Bataevc0214e02016-02-16 12:13:49 +00004168 // First attempt: try to build 'VarRef = Start, VarRef += Iter * Step'.
4169 ExprResult SavedUpdate = Update;
4170 ExprResult UpdateVal;
4171 if (VarRef.get()->getType()->isOverloadableType() ||
4172 NewStart.get()->getType()->isOverloadableType() ||
4173 Update.get()->getType()->isOverloadableType()) {
4174 bool Suppress = SemaRef.getDiagnostics().getSuppressAllDiagnostics();
4175 SemaRef.getDiagnostics().setSuppressAllDiagnostics(/*Val=*/true);
4176 Update =
4177 SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), NewStart.get());
4178 if (Update.isUsable()) {
4179 UpdateVal =
4180 SemaRef.BuildBinOp(S, Loc, Subtract ? BO_SubAssign : BO_AddAssign,
4181 VarRef.get(), SavedUpdate.get());
4182 if (UpdateVal.isUsable()) {
4183 Update = SemaRef.CreateBuiltinBinOp(Loc, BO_Comma, Update.get(),
4184 UpdateVal.get());
4185 }
4186 }
4187 SemaRef.getDiagnostics().setSuppressAllDiagnostics(Suppress);
4188 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004189
Alexey Bataevc0214e02016-02-16 12:13:49 +00004190 // Second attempt: try to build 'VarRef = Start (+|-) Iter * Step'.
4191 if (!Update.isUsable() || !UpdateVal.isUsable()) {
4192 Update = SemaRef.BuildBinOp(S, Loc, Subtract ? BO_Sub : BO_Add,
4193 NewStart.get(), SavedUpdate.get());
4194 if (!Update.isUsable())
4195 return ExprError();
4196
Alexey Bataev11481f52016-02-17 10:29:05 +00004197 if (!SemaRef.Context.hasSameType(Update.get()->getType(),
4198 VarRef.get()->getType())) {
4199 Update = SemaRef.PerformImplicitConversion(
4200 Update.get(), VarRef.get()->getType(), Sema::AA_Converting, true);
4201 if (!Update.isUsable())
4202 return ExprError();
4203 }
Alexey Bataevc0214e02016-02-16 12:13:49 +00004204
4205 Update = SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), Update.get());
4206 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004207 return Update;
4208}
4209
4210/// \brief Convert integer expression \a E to make it have at least \a Bits
4211/// bits.
4212static ExprResult WidenIterationCount(unsigned Bits, Expr *E,
4213 Sema &SemaRef) {
4214 if (E == nullptr)
4215 return ExprError();
4216 auto &C = SemaRef.Context;
4217 QualType OldType = E->getType();
4218 unsigned HasBits = C.getTypeSize(OldType);
4219 if (HasBits >= Bits)
4220 return ExprResult(E);
4221 // OK to convert to signed, because new type has more bits than old.
4222 QualType NewType = C.getIntTypeForBitwidth(Bits, /* Signed */ true);
4223 return SemaRef.PerformImplicitConversion(E, NewType, Sema::AA_Converting,
4224 true);
4225}
4226
4227/// \brief Check if the given expression \a E is a constant integer that fits
4228/// into \a Bits bits.
4229static bool FitsInto(unsigned Bits, bool Signed, Expr *E, Sema &SemaRef) {
4230 if (E == nullptr)
4231 return false;
4232 llvm::APSInt Result;
4233 if (E->isIntegerConstantExpr(Result, SemaRef.Context))
4234 return Signed ? Result.isSignedIntN(Bits) : Result.isIntN(Bits);
4235 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004236}
4237
Alexey Bataev5a3af132016-03-29 08:58:54 +00004238/// Build preinits statement for the given declarations.
4239static Stmt *buildPreInits(ASTContext &Context,
4240 SmallVectorImpl<Decl *> &PreInits) {
4241 if (!PreInits.empty()) {
4242 return new (Context) DeclStmt(
4243 DeclGroupRef::Create(Context, PreInits.begin(), PreInits.size()),
4244 SourceLocation(), SourceLocation());
4245 }
4246 return nullptr;
4247}
4248
4249/// Build preinits statement for the given declarations.
4250static Stmt *buildPreInits(ASTContext &Context,
4251 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) {
4252 if (!Captures.empty()) {
4253 SmallVector<Decl *, 16> PreInits;
4254 for (auto &Pair : Captures)
4255 PreInits.push_back(Pair.second->getDecl());
4256 return buildPreInits(Context, PreInits);
4257 }
4258 return nullptr;
4259}
4260
4261/// Build postupdate expression for the given list of postupdates expressions.
4262static Expr *buildPostUpdate(Sema &S, ArrayRef<Expr *> PostUpdates) {
4263 Expr *PostUpdate = nullptr;
4264 if (!PostUpdates.empty()) {
4265 for (auto *E : PostUpdates) {
4266 Expr *ConvE = S.BuildCStyleCastExpr(
4267 E->getExprLoc(),
4268 S.Context.getTrivialTypeSourceInfo(S.Context.VoidTy),
4269 E->getExprLoc(), E)
4270 .get();
4271 PostUpdate = PostUpdate
4272 ? S.CreateBuiltinBinOp(ConvE->getExprLoc(), BO_Comma,
4273 PostUpdate, ConvE)
4274 .get()
4275 : ConvE;
4276 }
4277 }
4278 return PostUpdate;
4279}
4280
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004281/// \brief Called on a for stmt to check itself and nested loops (if any).
Alexey Bataevabfc0692014-06-25 06:52:00 +00004282/// \return Returns 0 if one of the collapsed stmts is not canonical for loop,
4283/// number of collapsed loops otherwise.
Alexey Bataev4acb8592014-07-07 13:01:15 +00004284static unsigned
Alexey Bataev10e775f2015-07-30 11:36:16 +00004285CheckOpenMPLoop(OpenMPDirectiveKind DKind, Expr *CollapseLoopCountExpr,
4286 Expr *OrderedLoopCountExpr, Stmt *AStmt, Sema &SemaRef,
4287 DSAStackTy &DSA,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00004288 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA,
Alexander Musmanc6388682014-12-15 07:07:06 +00004289 OMPLoopDirective::HelperExprs &Built) {
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004290 unsigned NestedLoopCount = 1;
Alexey Bataev10e775f2015-07-30 11:36:16 +00004291 if (CollapseLoopCountExpr) {
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004292 // Found 'collapse' clause - calculate collapse number.
4293 llvm::APSInt Result;
Alexey Bataev10e775f2015-07-30 11:36:16 +00004294 if (CollapseLoopCountExpr->EvaluateAsInt(Result, SemaRef.getASTContext()))
Alexey Bataev7b6bc882015-11-26 07:50:39 +00004295 NestedLoopCount = Result.getLimitedValue();
Alexey Bataev10e775f2015-07-30 11:36:16 +00004296 }
4297 if (OrderedLoopCountExpr) {
4298 // Found 'ordered' clause - calculate collapse number.
4299 llvm::APSInt Result;
Alexey Bataev7b6bc882015-11-26 07:50:39 +00004300 if (OrderedLoopCountExpr->EvaluateAsInt(Result, SemaRef.getASTContext())) {
4301 if (Result.getLimitedValue() < NestedLoopCount) {
4302 SemaRef.Diag(OrderedLoopCountExpr->getExprLoc(),
4303 diag::err_omp_wrong_ordered_loop_count)
4304 << OrderedLoopCountExpr->getSourceRange();
4305 SemaRef.Diag(CollapseLoopCountExpr->getExprLoc(),
4306 diag::note_collapse_loop_count)
4307 << CollapseLoopCountExpr->getSourceRange();
4308 }
4309 NestedLoopCount = Result.getLimitedValue();
4310 }
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004311 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004312 // This is helper routine for loop directives (e.g., 'for', 'simd',
4313 // 'for simd', etc.).
Alexey Bataev5a3af132016-03-29 08:58:54 +00004314 llvm::MapVector<Expr *, DeclRefExpr *> Captures;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004315 SmallVector<LoopIterationSpace, 4> IterSpaces;
4316 IterSpaces.resize(NestedLoopCount);
4317 Stmt *CurStmt = AStmt->IgnoreContainers(/* IgnoreCaptured */ true);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004318 for (unsigned Cnt = 0; Cnt < NestedLoopCount; ++Cnt) {
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004319 if (CheckOpenMPIterationSpace(DKind, CurStmt, SemaRef, DSA, Cnt,
Alexey Bataev10e775f2015-07-30 11:36:16 +00004320 NestedLoopCount, CollapseLoopCountExpr,
4321 OrderedLoopCountExpr, VarsWithImplicitDSA,
Alexey Bataev5a3af132016-03-29 08:58:54 +00004322 IterSpaces[Cnt], Captures))
Alexey Bataevabfc0692014-06-25 06:52:00 +00004323 return 0;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004324 // Move on to the next nested for loop, or to the loop body.
Alexander Musmana5f070a2014-10-01 06:03:56 +00004325 // OpenMP [2.8.1, simd construct, Restrictions]
4326 // All loops associated with the construct must be perfectly nested; that
4327 // is, there must be no intervening code nor any OpenMP directive between
4328 // any two loops.
4329 CurStmt = cast<ForStmt>(CurStmt)->getBody()->IgnoreContainers();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004330 }
4331
Alexander Musmana5f070a2014-10-01 06:03:56 +00004332 Built.clear(/* size */ NestedLoopCount);
4333
4334 if (SemaRef.CurContext->isDependentContext())
4335 return NestedLoopCount;
4336
4337 // An example of what is generated for the following code:
4338 //
Alexey Bataev10e775f2015-07-30 11:36:16 +00004339 // #pragma omp simd collapse(2) ordered(2)
Alexander Musmana5f070a2014-10-01 06:03:56 +00004340 // for (i = 0; i < NI; ++i)
Alexey Bataev10e775f2015-07-30 11:36:16 +00004341 // for (k = 0; k < NK; ++k)
4342 // for (j = J0; j < NJ; j+=2) {
4343 // <loop body>
4344 // }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004345 //
4346 // We generate the code below.
4347 // Note: the loop body may be outlined in CodeGen.
4348 // Note: some counters may be C++ classes, operator- is used to find number of
4349 // iterations and operator+= to calculate counter value.
4350 // Note: decltype(NumIterations) must be integer type (in 'omp for', only i32
4351 // or i64 is currently supported).
4352 //
4353 // #define NumIterations (NI * ((NJ - J0 - 1 + 2) / 2))
4354 // for (int[32|64]_t IV = 0; IV < NumIterations; ++IV ) {
4355 // .local.i = IV / ((NJ - J0 - 1 + 2) / 2);
4356 // .local.j = J0 + (IV % ((NJ - J0 - 1 + 2) / 2)) * 2;
4357 // // similar updates for vars in clauses (e.g. 'linear')
4358 // <loop body (using local i and j)>
4359 // }
4360 // i = NI; // assign final values of counters
4361 // j = NJ;
4362 //
4363
4364 // Last iteration number is (I1 * I2 * ... In) - 1, where I1, I2 ... In are
4365 // the iteration counts of the collapsed for loops.
Alexey Bataev62dbb972015-04-22 11:59:37 +00004366 // Precondition tests if there is at least one iteration (all conditions are
4367 // true).
4368 auto PreCond = ExprResult(IterSpaces[0].PreCond);
Alexander Musmana5f070a2014-10-01 06:03:56 +00004369 auto N0 = IterSpaces[0].NumIterations;
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004370 ExprResult LastIteration32 = WidenIterationCount(
4371 32 /* Bits */, SemaRef.PerformImplicitConversion(
4372 N0->IgnoreImpCasts(), N0->getType(),
4373 Sema::AA_Converting, /*AllowExplicit=*/true)
4374 .get(),
4375 SemaRef);
4376 ExprResult LastIteration64 = WidenIterationCount(
4377 64 /* Bits */, SemaRef.PerformImplicitConversion(
4378 N0->IgnoreImpCasts(), N0->getType(),
4379 Sema::AA_Converting, /*AllowExplicit=*/true)
4380 .get(),
4381 SemaRef);
Alexander Musmana5f070a2014-10-01 06:03:56 +00004382
4383 if (!LastIteration32.isUsable() || !LastIteration64.isUsable())
4384 return NestedLoopCount;
4385
4386 auto &C = SemaRef.Context;
4387 bool AllCountsNeedLessThan32Bits = C.getTypeSize(N0->getType()) < 32;
4388
4389 Scope *CurScope = DSA.getCurScope();
4390 for (unsigned Cnt = 1; Cnt < NestedLoopCount; ++Cnt) {
Alexey Bataev62dbb972015-04-22 11:59:37 +00004391 if (PreCond.isUsable()) {
4392 PreCond = SemaRef.BuildBinOp(CurScope, SourceLocation(), BO_LAnd,
4393 PreCond.get(), IterSpaces[Cnt].PreCond);
4394 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004395 auto N = IterSpaces[Cnt].NumIterations;
4396 AllCountsNeedLessThan32Bits &= C.getTypeSize(N->getType()) < 32;
4397 if (LastIteration32.isUsable())
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004398 LastIteration32 = SemaRef.BuildBinOp(
4399 CurScope, SourceLocation(), BO_Mul, LastIteration32.get(),
4400 SemaRef.PerformImplicitConversion(N->IgnoreImpCasts(), N->getType(),
4401 Sema::AA_Converting,
4402 /*AllowExplicit=*/true)
4403 .get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004404 if (LastIteration64.isUsable())
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004405 LastIteration64 = SemaRef.BuildBinOp(
4406 CurScope, SourceLocation(), BO_Mul, LastIteration64.get(),
4407 SemaRef.PerformImplicitConversion(N->IgnoreImpCasts(), N->getType(),
4408 Sema::AA_Converting,
4409 /*AllowExplicit=*/true)
4410 .get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004411 }
4412
4413 // Choose either the 32-bit or 64-bit version.
4414 ExprResult LastIteration = LastIteration64;
4415 if (LastIteration32.isUsable() &&
4416 C.getTypeSize(LastIteration32.get()->getType()) == 32 &&
4417 (AllCountsNeedLessThan32Bits || NestedLoopCount == 1 ||
4418 FitsInto(
4419 32 /* Bits */,
4420 LastIteration32.get()->getType()->hasSignedIntegerRepresentation(),
4421 LastIteration64.get(), SemaRef)))
4422 LastIteration = LastIteration32;
4423
4424 if (!LastIteration.isUsable())
4425 return 0;
4426
4427 // Save the number of iterations.
4428 ExprResult NumIterations = LastIteration;
4429 {
4430 LastIteration = SemaRef.BuildBinOp(
4431 CurScope, SourceLocation(), BO_Sub, LastIteration.get(),
4432 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
4433 if (!LastIteration.isUsable())
4434 return 0;
4435 }
4436
4437 // Calculate the last iteration number beforehand instead of doing this on
4438 // each iteration. Do not do this if the number of iterations may be kfold-ed.
4439 llvm::APSInt Result;
4440 bool IsConstant =
4441 LastIteration.get()->isIntegerConstantExpr(Result, SemaRef.Context);
4442 ExprResult CalcLastIteration;
4443 if (!IsConstant) {
Alexey Bataev5a3af132016-03-29 08:58:54 +00004444 ExprResult SaveRef =
4445 tryBuildCapture(SemaRef, LastIteration.get(), Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00004446 LastIteration = SaveRef;
4447
4448 // Prepare SaveRef + 1.
4449 NumIterations = SemaRef.BuildBinOp(
Alexey Bataev5a3af132016-03-29 08:58:54 +00004450 CurScope, SourceLocation(), BO_Add, SaveRef.get(),
Alexander Musmana5f070a2014-10-01 06:03:56 +00004451 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
4452 if (!NumIterations.isUsable())
4453 return 0;
4454 }
4455
4456 SourceLocation InitLoc = IterSpaces[0].InitSrcRange.getBegin();
4457
Alexander Musmanc6388682014-12-15 07:07:06 +00004458 QualType VType = LastIteration.get()->getType();
4459 // Build variables passed into runtime, nesessary for worksharing directives.
4460 ExprResult LB, UB, IL, ST, EUB;
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00004461 if (isOpenMPWorksharingDirective(DKind) || isOpenMPTaskLoopDirective(DKind) ||
4462 isOpenMPDistributeDirective(DKind)) {
Alexander Musmanc6388682014-12-15 07:07:06 +00004463 // Lower bound variable, initialized with zero.
Alexey Bataev39f915b82015-05-08 10:41:21 +00004464 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
4465 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc);
Alexander Musmanc6388682014-12-15 07:07:06 +00004466 SemaRef.AddInitializerToDecl(
4467 LBDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
4468 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
4469
4470 // Upper bound variable, initialized with last iteration number.
Alexey Bataev39f915b82015-05-08 10:41:21 +00004471 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
4472 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc);
Alexander Musmanc6388682014-12-15 07:07:06 +00004473 SemaRef.AddInitializerToDecl(UBDecl, LastIteration.get(),
4474 /*DirectInit*/ false,
4475 /*TypeMayContainAuto*/ false);
4476
4477 // A 32-bit variable-flag where runtime returns 1 for the last iteration.
4478 // This will be used to implement clause 'lastprivate'.
4479 QualType Int32Ty = SemaRef.Context.getIntTypeForBitwidth(32, true);
Alexey Bataev39f915b82015-05-08 10:41:21 +00004480 VarDecl *ILDecl = buildVarDecl(SemaRef, InitLoc, Int32Ty, ".omp.is_last");
4481 IL = buildDeclRefExpr(SemaRef, ILDecl, Int32Ty, InitLoc);
Alexander Musmanc6388682014-12-15 07:07:06 +00004482 SemaRef.AddInitializerToDecl(
4483 ILDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
4484 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
4485
4486 // Stride variable returned by runtime (we initialize it to 1 by default).
Alexey Bataev39f915b82015-05-08 10:41:21 +00004487 VarDecl *STDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.stride");
4488 ST = buildDeclRefExpr(SemaRef, STDecl, VType, InitLoc);
Alexander Musmanc6388682014-12-15 07:07:06 +00004489 SemaRef.AddInitializerToDecl(
4490 STDecl, SemaRef.ActOnIntegerConstant(InitLoc, 1).get(),
4491 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
4492
4493 // Build expression: UB = min(UB, LastIteration)
4494 // It is nesessary for CodeGen of directives with static scheduling.
4495 ExprResult IsUBGreater = SemaRef.BuildBinOp(CurScope, InitLoc, BO_GT,
4496 UB.get(), LastIteration.get());
4497 ExprResult CondOp = SemaRef.ActOnConditionalOp(
4498 InitLoc, InitLoc, IsUBGreater.get(), LastIteration.get(), UB.get());
4499 EUB = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, UB.get(),
4500 CondOp.get());
4501 EUB = SemaRef.ActOnFinishFullExpr(EUB.get());
4502 }
4503
4504 // Build the iteration variable and its initialization before loop.
Alexander Musmana5f070a2014-10-01 06:03:56 +00004505 ExprResult IV;
4506 ExprResult Init;
4507 {
Alexey Bataev39f915b82015-05-08 10:41:21 +00004508 VarDecl *IVDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.iv");
4509 IV = buildDeclRefExpr(SemaRef, IVDecl, VType, InitLoc);
Alexey Bataev0a6ed842015-12-03 09:40:15 +00004510 Expr *RHS = (isOpenMPWorksharingDirective(DKind) ||
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00004511 isOpenMPTaskLoopDirective(DKind) ||
4512 isOpenMPDistributeDirective(DKind))
Alexander Musmanc6388682014-12-15 07:07:06 +00004513 ? LB.get()
4514 : SemaRef.ActOnIntegerConstant(SourceLocation(), 0).get();
4515 Init = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, IV.get(), RHS);
4516 Init = SemaRef.ActOnFinishFullExpr(Init.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004517 }
4518
Alexander Musmanc6388682014-12-15 07:07:06 +00004519 // Loop condition (IV < NumIterations) or (IV <= UB) for worksharing loops.
Alexander Musmana5f070a2014-10-01 06:03:56 +00004520 SourceLocation CondLoc;
Alexander Musmanc6388682014-12-15 07:07:06 +00004521 ExprResult Cond =
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00004522 (isOpenMPWorksharingDirective(DKind) ||
4523 isOpenMPTaskLoopDirective(DKind) || isOpenMPDistributeDirective(DKind))
Alexander Musmanc6388682014-12-15 07:07:06 +00004524 ? SemaRef.BuildBinOp(CurScope, CondLoc, BO_LE, IV.get(), UB.get())
4525 : SemaRef.BuildBinOp(CurScope, CondLoc, BO_LT, IV.get(),
4526 NumIterations.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004527
4528 // Loop increment (IV = IV + 1)
4529 SourceLocation IncLoc;
4530 ExprResult Inc =
4531 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, IV.get(),
4532 SemaRef.ActOnIntegerConstant(IncLoc, 1).get());
4533 if (!Inc.isUsable())
4534 return 0;
4535 Inc = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, IV.get(), Inc.get());
Alexander Musmanc6388682014-12-15 07:07:06 +00004536 Inc = SemaRef.ActOnFinishFullExpr(Inc.get());
4537 if (!Inc.isUsable())
4538 return 0;
4539
4540 // Increments for worksharing loops (LB = LB + ST; UB = UB + ST).
4541 // Used for directives with static scheduling.
4542 ExprResult NextLB, NextUB;
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00004543 if (isOpenMPWorksharingDirective(DKind) || isOpenMPTaskLoopDirective(DKind) ||
4544 isOpenMPDistributeDirective(DKind)) {
Alexander Musmanc6388682014-12-15 07:07:06 +00004545 // LB + ST
4546 NextLB = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, LB.get(), ST.get());
4547 if (!NextLB.isUsable())
4548 return 0;
4549 // LB = LB + ST
4550 NextLB =
4551 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, LB.get(), NextLB.get());
4552 NextLB = SemaRef.ActOnFinishFullExpr(NextLB.get());
4553 if (!NextLB.isUsable())
4554 return 0;
4555 // UB + ST
4556 NextUB = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, UB.get(), ST.get());
4557 if (!NextUB.isUsable())
4558 return 0;
4559 // UB = UB + ST
4560 NextUB =
4561 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, UB.get(), NextUB.get());
4562 NextUB = SemaRef.ActOnFinishFullExpr(NextUB.get());
4563 if (!NextUB.isUsable())
4564 return 0;
4565 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004566
4567 // Build updates and final values of the loop counters.
4568 bool HasErrors = false;
4569 Built.Counters.resize(NestedLoopCount);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004570 Built.Inits.resize(NestedLoopCount);
Alexander Musmana5f070a2014-10-01 06:03:56 +00004571 Built.Updates.resize(NestedLoopCount);
4572 Built.Finals.resize(NestedLoopCount);
4573 {
4574 ExprResult Div;
4575 // Go from inner nested loop to outer.
4576 for (int Cnt = NestedLoopCount - 1; Cnt >= 0; --Cnt) {
4577 LoopIterationSpace &IS = IterSpaces[Cnt];
4578 SourceLocation UpdLoc = IS.IncSrcRange.getBegin();
4579 // Build: Iter = (IV / Div) % IS.NumIters
4580 // where Div is product of previous iterations' IS.NumIters.
4581 ExprResult Iter;
4582 if (Div.isUsable()) {
4583 Iter =
4584 SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Div, IV.get(), Div.get());
4585 } else {
4586 Iter = IV;
4587 assert((Cnt == (int)NestedLoopCount - 1) &&
4588 "unusable div expected on first iteration only");
4589 }
4590
4591 if (Cnt != 0 && Iter.isUsable())
4592 Iter = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Rem, Iter.get(),
4593 IS.NumIterations);
4594 if (!Iter.isUsable()) {
4595 HasErrors = true;
4596 break;
4597 }
4598
Alexey Bataev39f915b82015-05-08 10:41:21 +00004599 // Build update: IS.CounterVar(Private) = IS.Start + Iter * IS.Step
4600 auto *CounterVar = buildDeclRefExpr(
4601 SemaRef, cast<VarDecl>(cast<DeclRefExpr>(IS.CounterVar)->getDecl()),
4602 IS.CounterVar->getType(), IS.CounterVar->getExprLoc(),
4603 /*RefersToCapture=*/true);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004604 ExprResult Init = BuildCounterInit(SemaRef, CurScope, UpdLoc, CounterVar,
Alexey Bataev5a3af132016-03-29 08:58:54 +00004605 IS.CounterInit, Captures);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004606 if (!Init.isUsable()) {
4607 HasErrors = true;
4608 break;
4609 }
Alexey Bataev5a3af132016-03-29 08:58:54 +00004610 ExprResult Update = BuildCounterUpdate(
4611 SemaRef, CurScope, UpdLoc, CounterVar, IS.CounterInit, Iter,
4612 IS.CounterStep, IS.Subtract, &Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00004613 if (!Update.isUsable()) {
4614 HasErrors = true;
4615 break;
4616 }
4617
4618 // Build final: IS.CounterVar = IS.Start + IS.NumIters * IS.Step
4619 ExprResult Final = BuildCounterUpdate(
Alexey Bataev39f915b82015-05-08 10:41:21 +00004620 SemaRef, CurScope, UpdLoc, CounterVar, IS.CounterInit,
Alexey Bataev5a3af132016-03-29 08:58:54 +00004621 IS.NumIterations, IS.CounterStep, IS.Subtract, &Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00004622 if (!Final.isUsable()) {
4623 HasErrors = true;
4624 break;
4625 }
4626
4627 // Build Div for the next iteration: Div <- Div * IS.NumIters
4628 if (Cnt != 0) {
4629 if (Div.isUnset())
4630 Div = IS.NumIterations;
4631 else
4632 Div = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Mul, Div.get(),
4633 IS.NumIterations);
4634
4635 // Add parentheses (for debugging purposes only).
4636 if (Div.isUsable())
4637 Div = SemaRef.ActOnParenExpr(UpdLoc, UpdLoc, Div.get());
4638 if (!Div.isUsable()) {
4639 HasErrors = true;
4640 break;
4641 }
4642 }
4643 if (!Update.isUsable() || !Final.isUsable()) {
4644 HasErrors = true;
4645 break;
4646 }
4647 // Save results
4648 Built.Counters[Cnt] = IS.CounterVar;
Alexey Bataeva8899172015-08-06 12:30:57 +00004649 Built.PrivateCounters[Cnt] = IS.PrivateCounterVar;
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004650 Built.Inits[Cnt] = Init.get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00004651 Built.Updates[Cnt] = Update.get();
4652 Built.Finals[Cnt] = Final.get();
4653 }
4654 }
4655
4656 if (HasErrors)
4657 return 0;
4658
4659 // Save results
4660 Built.IterationVarRef = IV.get();
4661 Built.LastIteration = LastIteration.get();
Alexander Musman3276a272015-03-21 10:12:56 +00004662 Built.NumIterations = NumIterations.get();
Alexey Bataev3bed68c2015-07-15 12:14:07 +00004663 Built.CalcLastIteration =
4664 SemaRef.ActOnFinishFullExpr(CalcLastIteration.get()).get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00004665 Built.PreCond = PreCond.get();
Alexey Bataev5a3af132016-03-29 08:58:54 +00004666 Built.PreInits = buildPreInits(C, Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00004667 Built.Cond = Cond.get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00004668 Built.Init = Init.get();
4669 Built.Inc = Inc.get();
Alexander Musmanc6388682014-12-15 07:07:06 +00004670 Built.LB = LB.get();
4671 Built.UB = UB.get();
4672 Built.IL = IL.get();
4673 Built.ST = ST.get();
4674 Built.EUB = EUB.get();
4675 Built.NLB = NextLB.get();
4676 Built.NUB = NextUB.get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00004677
Alexey Bataevabfc0692014-06-25 06:52:00 +00004678 return NestedLoopCount;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004679}
4680
Alexey Bataev10e775f2015-07-30 11:36:16 +00004681static Expr *getCollapseNumberExpr(ArrayRef<OMPClause *> Clauses) {
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00004682 auto CollapseClauses =
4683 OMPExecutableDirective::getClausesOfKind<OMPCollapseClause>(Clauses);
4684 if (CollapseClauses.begin() != CollapseClauses.end())
4685 return (*CollapseClauses.begin())->getNumForLoops();
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004686 return nullptr;
4687}
4688
Alexey Bataev10e775f2015-07-30 11:36:16 +00004689static Expr *getOrderedNumberExpr(ArrayRef<OMPClause *> Clauses) {
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00004690 auto OrderedClauses =
4691 OMPExecutableDirective::getClausesOfKind<OMPOrderedClause>(Clauses);
4692 if (OrderedClauses.begin() != OrderedClauses.end())
4693 return (*OrderedClauses.begin())->getNumForLoops();
Alexey Bataev10e775f2015-07-30 11:36:16 +00004694 return nullptr;
4695}
4696
Alexey Bataev66b15b52015-08-21 11:14:16 +00004697static bool checkSimdlenSafelenValues(Sema &S, const Expr *Simdlen,
4698 const Expr *Safelen) {
4699 llvm::APSInt SimdlenRes, SafelenRes;
4700 if (Simdlen->isValueDependent() || Simdlen->isTypeDependent() ||
4701 Simdlen->isInstantiationDependent() ||
4702 Simdlen->containsUnexpandedParameterPack())
4703 return false;
4704 if (Safelen->isValueDependent() || Safelen->isTypeDependent() ||
4705 Safelen->isInstantiationDependent() ||
4706 Safelen->containsUnexpandedParameterPack())
4707 return false;
4708 Simdlen->EvaluateAsInt(SimdlenRes, S.Context);
4709 Safelen->EvaluateAsInt(SafelenRes, S.Context);
4710 // OpenMP 4.1 [2.8.1, simd Construct, Restrictions]
4711 // If both simdlen and safelen clauses are specified, the value of the simdlen
4712 // parameter must be less than or equal to the value of the safelen parameter.
4713 if (SimdlenRes > SafelenRes) {
4714 S.Diag(Simdlen->getExprLoc(), diag::err_omp_wrong_simdlen_safelen_values)
4715 << Simdlen->getSourceRange() << Safelen->getSourceRange();
4716 return true;
4717 }
4718 return false;
4719}
4720
Alexey Bataev4acb8592014-07-07 13:01:15 +00004721StmtResult Sema::ActOnOpenMPSimdDirective(
4722 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
4723 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00004724 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00004725 if (!AStmt)
4726 return StmtError();
4727
4728 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musmanc6388682014-12-15 07:07:06 +00004729 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00004730 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
4731 // define the nested loops number.
4732 unsigned NestedLoopCount = CheckOpenMPLoop(
4733 OMPD_simd, getCollapseNumberExpr(Clauses), getOrderedNumberExpr(Clauses),
4734 AStmt, *this, *DSAStack, VarsWithImplicitDSA, B);
Alexey Bataevabfc0692014-06-25 06:52:00 +00004735 if (NestedLoopCount == 0)
Alexey Bataev1b59ab52014-02-27 08:29:12 +00004736 return StmtError();
Alexey Bataev1b59ab52014-02-27 08:29:12 +00004737
Alexander Musmana5f070a2014-10-01 06:03:56 +00004738 assert((CurContext->isDependentContext() || B.builtAll()) &&
4739 "omp simd loop exprs were not built");
4740
Alexander Musman3276a272015-03-21 10:12:56 +00004741 if (!CurContext->isDependentContext()) {
4742 // Finalize the clauses that need pre-built expressions for CodeGen.
4743 for (auto C : Clauses) {
4744 if (auto LC = dyn_cast<OMPLinearClause>(C))
4745 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
4746 B.NumIterations, *this, CurScope))
4747 return StmtError();
4748 }
4749 }
4750
Alexey Bataev66b15b52015-08-21 11:14:16 +00004751 // OpenMP 4.1 [2.8.1, simd Construct, Restrictions]
4752 // If both simdlen and safelen clauses are specified, the value of the simdlen
4753 // parameter must be less than or equal to the value of the safelen parameter.
4754 OMPSafelenClause *Safelen = nullptr;
4755 OMPSimdlenClause *Simdlen = nullptr;
4756 for (auto *Clause : Clauses) {
4757 if (Clause->getClauseKind() == OMPC_safelen)
4758 Safelen = cast<OMPSafelenClause>(Clause);
4759 else if (Clause->getClauseKind() == OMPC_simdlen)
4760 Simdlen = cast<OMPSimdlenClause>(Clause);
4761 if (Safelen && Simdlen)
4762 break;
4763 }
4764 if (Simdlen && Safelen &&
4765 checkSimdlenSafelenValues(*this, Simdlen->getSimdlen(),
4766 Safelen->getSafelen()))
4767 return StmtError();
4768
Alexey Bataev1b59ab52014-02-27 08:29:12 +00004769 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00004770 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
4771 Clauses, AStmt, B);
Alexey Bataev1b59ab52014-02-27 08:29:12 +00004772}
4773
Alexey Bataev4acb8592014-07-07 13:01:15 +00004774StmtResult Sema::ActOnOpenMPForDirective(
4775 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
4776 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00004777 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00004778 if (!AStmt)
4779 return StmtError();
4780
4781 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musmanc6388682014-12-15 07:07:06 +00004782 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00004783 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
4784 // define the nested loops number.
4785 unsigned NestedLoopCount = CheckOpenMPLoop(
4786 OMPD_for, getCollapseNumberExpr(Clauses), getOrderedNumberExpr(Clauses),
4787 AStmt, *this, *DSAStack, VarsWithImplicitDSA, B);
Alexey Bataevabfc0692014-06-25 06:52:00 +00004788 if (NestedLoopCount == 0)
Alexey Bataevf29276e2014-06-18 04:14:57 +00004789 return StmtError();
4790
Alexander Musmana5f070a2014-10-01 06:03:56 +00004791 assert((CurContext->isDependentContext() || B.builtAll()) &&
4792 "omp for loop exprs were not built");
4793
Alexey Bataev54acd402015-08-04 11:18:19 +00004794 if (!CurContext->isDependentContext()) {
4795 // Finalize the clauses that need pre-built expressions for CodeGen.
4796 for (auto C : Clauses) {
4797 if (auto LC = dyn_cast<OMPLinearClause>(C))
4798 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
4799 B.NumIterations, *this, CurScope))
4800 return StmtError();
4801 }
4802 }
4803
Alexey Bataevf29276e2014-06-18 04:14:57 +00004804 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00004805 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
Alexey Bataev25e5b442015-09-15 12:52:43 +00004806 Clauses, AStmt, B, DSAStack->isCancelRegion());
Alexey Bataevf29276e2014-06-18 04:14:57 +00004807}
4808
Alexander Musmanf82886e2014-09-18 05:12:34 +00004809StmtResult Sema::ActOnOpenMPForSimdDirective(
4810 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
4811 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00004812 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00004813 if (!AStmt)
4814 return StmtError();
4815
4816 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musmanc6388682014-12-15 07:07:06 +00004817 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00004818 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
4819 // define the nested loops number.
Alexander Musmanf82886e2014-09-18 05:12:34 +00004820 unsigned NestedLoopCount =
Alexey Bataev10e775f2015-07-30 11:36:16 +00004821 CheckOpenMPLoop(OMPD_for_simd, getCollapseNumberExpr(Clauses),
4822 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
4823 VarsWithImplicitDSA, B);
Alexander Musmanf82886e2014-09-18 05:12:34 +00004824 if (NestedLoopCount == 0)
4825 return StmtError();
4826
Alexander Musmanc6388682014-12-15 07:07:06 +00004827 assert((CurContext->isDependentContext() || B.builtAll()) &&
4828 "omp for simd loop exprs were not built");
4829
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00004830 if (!CurContext->isDependentContext()) {
4831 // Finalize the clauses that need pre-built expressions for CodeGen.
4832 for (auto C : Clauses) {
4833 if (auto LC = dyn_cast<OMPLinearClause>(C))
4834 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
4835 B.NumIterations, *this, CurScope))
4836 return StmtError();
4837 }
4838 }
4839
Alexey Bataev66b15b52015-08-21 11:14:16 +00004840 // OpenMP 4.1 [2.8.1, simd Construct, Restrictions]
4841 // If both simdlen and safelen clauses are specified, the value of the simdlen
4842 // parameter must be less than or equal to the value of the safelen parameter.
4843 OMPSafelenClause *Safelen = nullptr;
4844 OMPSimdlenClause *Simdlen = nullptr;
4845 for (auto *Clause : Clauses) {
4846 if (Clause->getClauseKind() == OMPC_safelen)
4847 Safelen = cast<OMPSafelenClause>(Clause);
4848 else if (Clause->getClauseKind() == OMPC_simdlen)
4849 Simdlen = cast<OMPSimdlenClause>(Clause);
4850 if (Safelen && Simdlen)
4851 break;
4852 }
4853 if (Simdlen && Safelen &&
4854 checkSimdlenSafelenValues(*this, Simdlen->getSimdlen(),
4855 Safelen->getSafelen()))
4856 return StmtError();
4857
Alexander Musmanf82886e2014-09-18 05:12:34 +00004858 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00004859 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
4860 Clauses, AStmt, B);
Alexander Musmanf82886e2014-09-18 05:12:34 +00004861}
4862
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00004863StmtResult Sema::ActOnOpenMPSectionsDirective(ArrayRef<OMPClause *> Clauses,
4864 Stmt *AStmt,
4865 SourceLocation StartLoc,
4866 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00004867 if (!AStmt)
4868 return StmtError();
4869
4870 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00004871 auto BaseStmt = AStmt;
4872 while (CapturedStmt *CS = dyn_cast_or_null<CapturedStmt>(BaseStmt))
4873 BaseStmt = CS->getCapturedStmt();
4874 if (auto C = dyn_cast_or_null<CompoundStmt>(BaseStmt)) {
4875 auto S = C->children();
Benjamin Kramer5733e352015-07-18 17:09:36 +00004876 if (S.begin() == S.end())
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00004877 return StmtError();
4878 // All associated statements must be '#pragma omp section' except for
4879 // the first one.
Benjamin Kramer5733e352015-07-18 17:09:36 +00004880 for (Stmt *SectionStmt : llvm::make_range(std::next(S.begin()), S.end())) {
Alexey Bataev1e0498a2014-06-26 08:21:58 +00004881 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) {
4882 if (SectionStmt)
4883 Diag(SectionStmt->getLocStart(),
4884 diag::err_omp_sections_substmt_not_section);
4885 return StmtError();
4886 }
Alexey Bataev25e5b442015-09-15 12:52:43 +00004887 cast<OMPSectionDirective>(SectionStmt)
4888 ->setHasCancel(DSAStack->isCancelRegion());
Alexey Bataev1e0498a2014-06-26 08:21:58 +00004889 }
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00004890 } else {
4891 Diag(AStmt->getLocStart(), diag::err_omp_sections_not_compound_stmt);
4892 return StmtError();
4893 }
4894
4895 getCurFunction()->setHasBranchProtectedScope();
4896
Alexey Bataev25e5b442015-09-15 12:52:43 +00004897 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
4898 DSAStack->isCancelRegion());
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00004899}
4900
Alexey Bataev1e0498a2014-06-26 08:21:58 +00004901StmtResult Sema::ActOnOpenMPSectionDirective(Stmt *AStmt,
4902 SourceLocation StartLoc,
4903 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00004904 if (!AStmt)
4905 return StmtError();
4906
4907 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataev1e0498a2014-06-26 08:21:58 +00004908
4909 getCurFunction()->setHasBranchProtectedScope();
Alexey Bataev25e5b442015-09-15 12:52:43 +00004910 DSAStack->setParentCancelRegion(DSAStack->isCancelRegion());
Alexey Bataev1e0498a2014-06-26 08:21:58 +00004911
Alexey Bataev25e5b442015-09-15 12:52:43 +00004912 return OMPSectionDirective::Create(Context, StartLoc, EndLoc, AStmt,
4913 DSAStack->isCancelRegion());
Alexey Bataev1e0498a2014-06-26 08:21:58 +00004914}
4915
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00004916StmtResult Sema::ActOnOpenMPSingleDirective(ArrayRef<OMPClause *> Clauses,
4917 Stmt *AStmt,
4918 SourceLocation StartLoc,
4919 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00004920 if (!AStmt)
4921 return StmtError();
4922
4923 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataev74a05c92014-07-15 02:55:09 +00004924
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00004925 getCurFunction()->setHasBranchProtectedScope();
Alexey Bataev74a05c92014-07-15 02:55:09 +00004926
Alexey Bataev3255bf32015-01-19 05:20:46 +00004927 // OpenMP [2.7.3, single Construct, Restrictions]
4928 // The copyprivate clause must not be used with the nowait clause.
4929 OMPClause *Nowait = nullptr;
4930 OMPClause *Copyprivate = nullptr;
4931 for (auto *Clause : Clauses) {
4932 if (Clause->getClauseKind() == OMPC_nowait)
4933 Nowait = Clause;
4934 else if (Clause->getClauseKind() == OMPC_copyprivate)
4935 Copyprivate = Clause;
4936 if (Copyprivate && Nowait) {
4937 Diag(Copyprivate->getLocStart(),
4938 diag::err_omp_single_copyprivate_with_nowait);
4939 Diag(Nowait->getLocStart(), diag::note_omp_nowait_clause_here);
4940 return StmtError();
4941 }
4942 }
4943
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00004944 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
4945}
4946
Alexander Musman80c22892014-07-17 08:54:58 +00004947StmtResult Sema::ActOnOpenMPMasterDirective(Stmt *AStmt,
4948 SourceLocation StartLoc,
4949 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00004950 if (!AStmt)
4951 return StmtError();
4952
4953 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musman80c22892014-07-17 08:54:58 +00004954
4955 getCurFunction()->setHasBranchProtectedScope();
4956
4957 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt);
4958}
4959
Alexey Bataev28c75412015-12-15 08:19:24 +00004960StmtResult Sema::ActOnOpenMPCriticalDirective(
4961 const DeclarationNameInfo &DirName, ArrayRef<OMPClause *> Clauses,
4962 Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00004963 if (!AStmt)
4964 return StmtError();
4965
4966 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musmand9ed09f2014-07-21 09:42:05 +00004967
Alexey Bataev28c75412015-12-15 08:19:24 +00004968 bool ErrorFound = false;
4969 llvm::APSInt Hint;
4970 SourceLocation HintLoc;
4971 bool DependentHint = false;
4972 for (auto *C : Clauses) {
4973 if (C->getClauseKind() == OMPC_hint) {
4974 if (!DirName.getName()) {
4975 Diag(C->getLocStart(), diag::err_omp_hint_clause_no_name);
4976 ErrorFound = true;
4977 }
4978 Expr *E = cast<OMPHintClause>(C)->getHint();
4979 if (E->isTypeDependent() || E->isValueDependent() ||
4980 E->isInstantiationDependent())
4981 DependentHint = true;
4982 else {
4983 Hint = E->EvaluateKnownConstInt(Context);
4984 HintLoc = C->getLocStart();
4985 }
4986 }
4987 }
4988 if (ErrorFound)
4989 return StmtError();
4990 auto Pair = DSAStack->getCriticalWithHint(DirName);
4991 if (Pair.first && DirName.getName() && !DependentHint) {
4992 if (llvm::APSInt::compareValues(Hint, Pair.second) != 0) {
4993 Diag(StartLoc, diag::err_omp_critical_with_hint);
4994 if (HintLoc.isValid()) {
4995 Diag(HintLoc, diag::note_omp_critical_hint_here)
4996 << 0 << Hint.toString(/*Radix=*/10, /*Signed=*/false);
4997 } else
4998 Diag(StartLoc, diag::note_omp_critical_no_hint) << 0;
4999 if (auto *C = Pair.first->getSingleClause<OMPHintClause>()) {
5000 Diag(C->getLocStart(), diag::note_omp_critical_hint_here)
5001 << 1
5002 << C->getHint()->EvaluateKnownConstInt(Context).toString(
5003 /*Radix=*/10, /*Signed=*/false);
5004 } else
5005 Diag(Pair.first->getLocStart(), diag::note_omp_critical_no_hint) << 1;
5006 }
5007 }
5008
Alexander Musmand9ed09f2014-07-21 09:42:05 +00005009 getCurFunction()->setHasBranchProtectedScope();
5010
Alexey Bataev28c75412015-12-15 08:19:24 +00005011 auto *Dir = OMPCriticalDirective::Create(Context, DirName, StartLoc, EndLoc,
5012 Clauses, AStmt);
5013 if (!Pair.first && DirName.getName() && !DependentHint)
5014 DSAStack->addCriticalWithHint(Dir, Hint);
5015 return Dir;
Alexander Musmand9ed09f2014-07-21 09:42:05 +00005016}
5017
Alexey Bataev4acb8592014-07-07 13:01:15 +00005018StmtResult Sema::ActOnOpenMPParallelForDirective(
5019 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
5020 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00005021 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005022 if (!AStmt)
5023 return StmtError();
5024
Alexey Bataev4acb8592014-07-07 13:01:15 +00005025 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
5026 // 1.2.2 OpenMP Language Terminology
5027 // Structured block - An executable statement with a single entry at the
5028 // top and a single exit at the bottom.
5029 // The point of exit cannot be a branch out of the structured block.
5030 // longjmp() and throw() must not violate the entry/exit criteria.
5031 CS->getCapturedDecl()->setNothrow();
5032
Alexander Musmanc6388682014-12-15 07:07:06 +00005033 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00005034 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
5035 // define the nested loops number.
Alexey Bataev4acb8592014-07-07 13:01:15 +00005036 unsigned NestedLoopCount =
Alexey Bataev10e775f2015-07-30 11:36:16 +00005037 CheckOpenMPLoop(OMPD_parallel_for, getCollapseNumberExpr(Clauses),
5038 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
5039 VarsWithImplicitDSA, B);
Alexey Bataev4acb8592014-07-07 13:01:15 +00005040 if (NestedLoopCount == 0)
5041 return StmtError();
5042
Alexander Musmana5f070a2014-10-01 06:03:56 +00005043 assert((CurContext->isDependentContext() || B.builtAll()) &&
5044 "omp parallel for loop exprs were not built");
5045
Alexey Bataev54acd402015-08-04 11:18:19 +00005046 if (!CurContext->isDependentContext()) {
5047 // Finalize the clauses that need pre-built expressions for CodeGen.
5048 for (auto C : Clauses) {
5049 if (auto LC = dyn_cast<OMPLinearClause>(C))
5050 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
5051 B.NumIterations, *this, CurScope))
5052 return StmtError();
5053 }
5054 }
5055
Alexey Bataev4acb8592014-07-07 13:01:15 +00005056 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00005057 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc,
Alexey Bataev25e5b442015-09-15 12:52:43 +00005058 NestedLoopCount, Clauses, AStmt, B,
5059 DSAStack->isCancelRegion());
Alexey Bataev4acb8592014-07-07 13:01:15 +00005060}
5061
Alexander Musmane4e893b2014-09-23 09:33:00 +00005062StmtResult Sema::ActOnOpenMPParallelForSimdDirective(
5063 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
5064 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00005065 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005066 if (!AStmt)
5067 return StmtError();
5068
Alexander Musmane4e893b2014-09-23 09:33:00 +00005069 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
5070 // 1.2.2 OpenMP Language Terminology
5071 // Structured block - An executable statement with a single entry at the
5072 // top and a single exit at the bottom.
5073 // The point of exit cannot be a branch out of the structured block.
5074 // longjmp() and throw() must not violate the entry/exit criteria.
5075 CS->getCapturedDecl()->setNothrow();
5076
Alexander Musmanc6388682014-12-15 07:07:06 +00005077 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00005078 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
5079 // define the nested loops number.
Alexander Musmane4e893b2014-09-23 09:33:00 +00005080 unsigned NestedLoopCount =
Alexey Bataev10e775f2015-07-30 11:36:16 +00005081 CheckOpenMPLoop(OMPD_parallel_for_simd, getCollapseNumberExpr(Clauses),
5082 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
5083 VarsWithImplicitDSA, B);
Alexander Musmane4e893b2014-09-23 09:33:00 +00005084 if (NestedLoopCount == 0)
5085 return StmtError();
5086
Alexey Bataev3b5b5c42015-06-18 10:10:12 +00005087 if (!CurContext->isDependentContext()) {
5088 // Finalize the clauses that need pre-built expressions for CodeGen.
5089 for (auto C : Clauses) {
5090 if (auto LC = dyn_cast<OMPLinearClause>(C))
5091 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
5092 B.NumIterations, *this, CurScope))
5093 return StmtError();
5094 }
5095 }
5096
Alexey Bataev66b15b52015-08-21 11:14:16 +00005097 // OpenMP 4.1 [2.8.1, simd Construct, Restrictions]
5098 // If both simdlen and safelen clauses are specified, the value of the simdlen
5099 // parameter must be less than or equal to the value of the safelen parameter.
5100 OMPSafelenClause *Safelen = nullptr;
5101 OMPSimdlenClause *Simdlen = nullptr;
5102 for (auto *Clause : Clauses) {
5103 if (Clause->getClauseKind() == OMPC_safelen)
5104 Safelen = cast<OMPSafelenClause>(Clause);
5105 else if (Clause->getClauseKind() == OMPC_simdlen)
5106 Simdlen = cast<OMPSimdlenClause>(Clause);
5107 if (Safelen && Simdlen)
5108 break;
5109 }
5110 if (Simdlen && Safelen &&
5111 checkSimdlenSafelenValues(*this, Simdlen->getSimdlen(),
5112 Safelen->getSafelen()))
5113 return StmtError();
5114
Alexander Musmane4e893b2014-09-23 09:33:00 +00005115 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmana5f070a2014-10-01 06:03:56 +00005116 return OMPParallelForSimdDirective::Create(
Alexander Musmanc6388682014-12-15 07:07:06 +00005117 Context, StartLoc, EndLoc, NestedLoopCount, Clauses, AStmt, B);
Alexander Musmane4e893b2014-09-23 09:33:00 +00005118}
5119
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005120StmtResult
5121Sema::ActOnOpenMPParallelSectionsDirective(ArrayRef<OMPClause *> Clauses,
5122 Stmt *AStmt, SourceLocation StartLoc,
5123 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005124 if (!AStmt)
5125 return StmtError();
5126
5127 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005128 auto BaseStmt = AStmt;
5129 while (CapturedStmt *CS = dyn_cast_or_null<CapturedStmt>(BaseStmt))
5130 BaseStmt = CS->getCapturedStmt();
5131 if (auto C = dyn_cast_or_null<CompoundStmt>(BaseStmt)) {
5132 auto S = C->children();
Benjamin Kramer5733e352015-07-18 17:09:36 +00005133 if (S.begin() == S.end())
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005134 return StmtError();
5135 // All associated statements must be '#pragma omp section' except for
5136 // the first one.
Benjamin Kramer5733e352015-07-18 17:09:36 +00005137 for (Stmt *SectionStmt : llvm::make_range(std::next(S.begin()), S.end())) {
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005138 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) {
5139 if (SectionStmt)
5140 Diag(SectionStmt->getLocStart(),
5141 diag::err_omp_parallel_sections_substmt_not_section);
5142 return StmtError();
5143 }
Alexey Bataev25e5b442015-09-15 12:52:43 +00005144 cast<OMPSectionDirective>(SectionStmt)
5145 ->setHasCancel(DSAStack->isCancelRegion());
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005146 }
5147 } else {
5148 Diag(AStmt->getLocStart(),
5149 diag::err_omp_parallel_sections_not_compound_stmt);
5150 return StmtError();
5151 }
5152
5153 getCurFunction()->setHasBranchProtectedScope();
5154
Alexey Bataev25e5b442015-09-15 12:52:43 +00005155 return OMPParallelSectionsDirective::Create(
5156 Context, StartLoc, EndLoc, Clauses, AStmt, DSAStack->isCancelRegion());
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005157}
5158
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005159StmtResult Sema::ActOnOpenMPTaskDirective(ArrayRef<OMPClause *> Clauses,
5160 Stmt *AStmt, SourceLocation StartLoc,
5161 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005162 if (!AStmt)
5163 return StmtError();
5164
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005165 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
5166 // 1.2.2 OpenMP Language Terminology
5167 // Structured block - An executable statement with a single entry at the
5168 // top and a single exit at the bottom.
5169 // The point of exit cannot be a branch out of the structured block.
5170 // longjmp() and throw() must not violate the entry/exit criteria.
5171 CS->getCapturedDecl()->setNothrow();
5172
5173 getCurFunction()->setHasBranchProtectedScope();
5174
Alexey Bataev25e5b442015-09-15 12:52:43 +00005175 return OMPTaskDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
5176 DSAStack->isCancelRegion());
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005177}
5178
Alexey Bataev68446b72014-07-18 07:47:19 +00005179StmtResult Sema::ActOnOpenMPTaskyieldDirective(SourceLocation StartLoc,
5180 SourceLocation EndLoc) {
5181 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc);
5182}
5183
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00005184StmtResult Sema::ActOnOpenMPBarrierDirective(SourceLocation StartLoc,
5185 SourceLocation EndLoc) {
5186 return OMPBarrierDirective::Create(Context, StartLoc, EndLoc);
5187}
5188
Alexey Bataev2df347a2014-07-18 10:17:07 +00005189StmtResult Sema::ActOnOpenMPTaskwaitDirective(SourceLocation StartLoc,
5190 SourceLocation EndLoc) {
5191 return OMPTaskwaitDirective::Create(Context, StartLoc, EndLoc);
5192}
5193
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00005194StmtResult Sema::ActOnOpenMPTaskgroupDirective(Stmt *AStmt,
5195 SourceLocation StartLoc,
5196 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005197 if (!AStmt)
5198 return StmtError();
5199
5200 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00005201
5202 getCurFunction()->setHasBranchProtectedScope();
5203
5204 return OMPTaskgroupDirective::Create(Context, StartLoc, EndLoc, AStmt);
5205}
5206
Alexey Bataev6125da92014-07-21 11:26:11 +00005207StmtResult Sema::ActOnOpenMPFlushDirective(ArrayRef<OMPClause *> Clauses,
5208 SourceLocation StartLoc,
5209 SourceLocation EndLoc) {
5210 assert(Clauses.size() <= 1 && "Extra clauses in flush directive");
5211 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses);
5212}
5213
Alexey Bataev346265e2015-09-25 10:37:12 +00005214StmtResult Sema::ActOnOpenMPOrderedDirective(ArrayRef<OMPClause *> Clauses,
5215 Stmt *AStmt,
Alexey Bataev9fb6e642014-07-22 06:45:04 +00005216 SourceLocation StartLoc,
5217 SourceLocation EndLoc) {
Alexey Bataeveb482352015-12-18 05:05:56 +00005218 OMPClause *DependFound = nullptr;
5219 OMPClause *DependSourceClause = nullptr;
Alexey Bataeva636c7f2015-12-23 10:27:45 +00005220 OMPClause *DependSinkClause = nullptr;
Alexey Bataeveb482352015-12-18 05:05:56 +00005221 bool ErrorFound = false;
Alexey Bataev346265e2015-09-25 10:37:12 +00005222 OMPThreadsClause *TC = nullptr;
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005223 OMPSIMDClause *SC = nullptr;
Alexey Bataeveb482352015-12-18 05:05:56 +00005224 for (auto *C : Clauses) {
5225 if (auto *DC = dyn_cast<OMPDependClause>(C)) {
5226 DependFound = C;
5227 if (DC->getDependencyKind() == OMPC_DEPEND_source) {
5228 if (DependSourceClause) {
5229 Diag(C->getLocStart(), diag::err_omp_more_one_clause)
5230 << getOpenMPDirectiveName(OMPD_ordered)
5231 << getOpenMPClauseName(OMPC_depend) << 2;
5232 ErrorFound = true;
5233 } else
5234 DependSourceClause = C;
Alexey Bataeva636c7f2015-12-23 10:27:45 +00005235 if (DependSinkClause) {
5236 Diag(C->getLocStart(), diag::err_omp_depend_sink_source_not_allowed)
5237 << 0;
5238 ErrorFound = true;
5239 }
5240 } else if (DC->getDependencyKind() == OMPC_DEPEND_sink) {
5241 if (DependSourceClause) {
5242 Diag(C->getLocStart(), diag::err_omp_depend_sink_source_not_allowed)
5243 << 1;
5244 ErrorFound = true;
5245 }
5246 DependSinkClause = C;
Alexey Bataeveb482352015-12-18 05:05:56 +00005247 }
5248 } else if (C->getClauseKind() == OMPC_threads)
Alexey Bataev346265e2015-09-25 10:37:12 +00005249 TC = cast<OMPThreadsClause>(C);
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005250 else if (C->getClauseKind() == OMPC_simd)
5251 SC = cast<OMPSIMDClause>(C);
Alexey Bataev346265e2015-09-25 10:37:12 +00005252 }
Alexey Bataeveb482352015-12-18 05:05:56 +00005253 if (!ErrorFound && !SC &&
5254 isOpenMPSimdDirective(DSAStack->getParentDirective())) {
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005255 // OpenMP [2.8.1,simd Construct, Restrictions]
5256 // An ordered construct with the simd clause is the only OpenMP construct
5257 // that can appear in the simd region.
5258 Diag(StartLoc, diag::err_omp_prohibited_region_simd);
Alexey Bataeveb482352015-12-18 05:05:56 +00005259 ErrorFound = true;
5260 } else if (DependFound && (TC || SC)) {
5261 Diag(DependFound->getLocStart(), diag::err_omp_depend_clause_thread_simd)
5262 << getOpenMPClauseName(TC ? TC->getClauseKind() : SC->getClauseKind());
5263 ErrorFound = true;
5264 } else if (DependFound && !DSAStack->getParentOrderedRegionParam()) {
5265 Diag(DependFound->getLocStart(),
5266 diag::err_omp_ordered_directive_without_param);
5267 ErrorFound = true;
5268 } else if (TC || Clauses.empty()) {
5269 if (auto *Param = DSAStack->getParentOrderedRegionParam()) {
5270 SourceLocation ErrLoc = TC ? TC->getLocStart() : StartLoc;
5271 Diag(ErrLoc, diag::err_omp_ordered_directive_with_param)
5272 << (TC != nullptr);
5273 Diag(Param->getLocStart(), diag::note_omp_ordered_param);
5274 ErrorFound = true;
5275 }
5276 }
5277 if ((!AStmt && !DependFound) || ErrorFound)
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005278 return StmtError();
Alexey Bataeveb482352015-12-18 05:05:56 +00005279
5280 if (AStmt) {
5281 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
5282
5283 getCurFunction()->setHasBranchProtectedScope();
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005284 }
Alexey Bataev346265e2015-09-25 10:37:12 +00005285
5286 return OMPOrderedDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
Alexey Bataev9fb6e642014-07-22 06:45:04 +00005287}
5288
Alexey Bataev1d160b12015-03-13 12:27:31 +00005289namespace {
5290/// \brief Helper class for checking expression in 'omp atomic [update]'
5291/// construct.
5292class OpenMPAtomicUpdateChecker {
5293 /// \brief Error results for atomic update expressions.
5294 enum ExprAnalysisErrorCode {
5295 /// \brief A statement is not an expression statement.
5296 NotAnExpression,
5297 /// \brief Expression is not builtin binary or unary operation.
5298 NotABinaryOrUnaryExpression,
5299 /// \brief Unary operation is not post-/pre- increment/decrement operation.
5300 NotAnUnaryIncDecExpression,
5301 /// \brief An expression is not of scalar type.
5302 NotAScalarType,
5303 /// \brief A binary operation is not an assignment operation.
5304 NotAnAssignmentOp,
5305 /// \brief RHS part of the binary operation is not a binary expression.
5306 NotABinaryExpression,
5307 /// \brief RHS part is not additive/multiplicative/shift/biwise binary
5308 /// expression.
5309 NotABinaryOperator,
5310 /// \brief RHS binary operation does not have reference to the updated LHS
5311 /// part.
5312 NotAnUpdateExpression,
5313 /// \brief No errors is found.
5314 NoError
5315 };
5316 /// \brief Reference to Sema.
5317 Sema &SemaRef;
5318 /// \brief A location for note diagnostics (when error is found).
5319 SourceLocation NoteLoc;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005320 /// \brief 'x' lvalue part of the source atomic expression.
5321 Expr *X;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005322 /// \brief 'expr' rvalue part of the source atomic expression.
5323 Expr *E;
Alexey Bataevb4505a72015-03-30 05:20:59 +00005324 /// \brief Helper expression of the form
5325 /// 'OpaqueValueExpr(x) binop OpaqueValueExpr(expr)' or
5326 /// 'OpaqueValueExpr(expr) binop OpaqueValueExpr(x)'.
5327 Expr *UpdateExpr;
5328 /// \brief Is 'x' a LHS in a RHS part of full update expression. It is
5329 /// important for non-associative operations.
5330 bool IsXLHSInRHSPart;
5331 BinaryOperatorKind Op;
5332 SourceLocation OpLoc;
Alexey Bataevb78ca832015-04-01 03:33:17 +00005333 /// \brief true if the source expression is a postfix unary operation, false
5334 /// if it is a prefix unary operation.
5335 bool IsPostfixUpdate;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005336
5337public:
5338 OpenMPAtomicUpdateChecker(Sema &SemaRef)
Alexey Bataevb4505a72015-03-30 05:20:59 +00005339 : SemaRef(SemaRef), X(nullptr), E(nullptr), UpdateExpr(nullptr),
Alexey Bataevb78ca832015-04-01 03:33:17 +00005340 IsXLHSInRHSPart(false), Op(BO_PtrMemD), IsPostfixUpdate(false) {}
Alexey Bataev1d160b12015-03-13 12:27:31 +00005341 /// \brief Check specified statement that it is suitable for 'atomic update'
5342 /// constructs and extract 'x', 'expr' and Operation from the original
Alexey Bataevb78ca832015-04-01 03:33:17 +00005343 /// expression. If DiagId and NoteId == 0, then only check is performed
5344 /// without error notification.
Alexey Bataev1d160b12015-03-13 12:27:31 +00005345 /// \param DiagId Diagnostic which should be emitted if error is found.
5346 /// \param NoteId Diagnostic note for the main error message.
5347 /// \return true if statement is not an update expression, false otherwise.
Alexey Bataevb78ca832015-04-01 03:33:17 +00005348 bool checkStatement(Stmt *S, unsigned DiagId = 0, unsigned NoteId = 0);
Alexey Bataev1d160b12015-03-13 12:27:31 +00005349 /// \brief Return the 'x' lvalue part of the source atomic expression.
5350 Expr *getX() const { return X; }
Alexey Bataev1d160b12015-03-13 12:27:31 +00005351 /// \brief Return the 'expr' rvalue part of the source atomic expression.
5352 Expr *getExpr() const { return E; }
Alexey Bataevb4505a72015-03-30 05:20:59 +00005353 /// \brief Return the update expression used in calculation of the updated
5354 /// value. Always has form 'OpaqueValueExpr(x) binop OpaqueValueExpr(expr)' or
5355 /// 'OpaqueValueExpr(expr) binop OpaqueValueExpr(x)'.
5356 Expr *getUpdateExpr() const { return UpdateExpr; }
5357 /// \brief Return true if 'x' is LHS in RHS part of full update expression,
5358 /// false otherwise.
5359 bool isXLHSInRHSPart() const { return IsXLHSInRHSPart; }
5360
Alexey Bataevb78ca832015-04-01 03:33:17 +00005361 /// \brief true if the source expression is a postfix unary operation, false
5362 /// if it is a prefix unary operation.
5363 bool isPostfixUpdate() const { return IsPostfixUpdate; }
5364
Alexey Bataev1d160b12015-03-13 12:27:31 +00005365private:
Alexey Bataevb78ca832015-04-01 03:33:17 +00005366 bool checkBinaryOperation(BinaryOperator *AtomicBinOp, unsigned DiagId = 0,
5367 unsigned NoteId = 0);
Alexey Bataev1d160b12015-03-13 12:27:31 +00005368};
5369} // namespace
5370
5371bool OpenMPAtomicUpdateChecker::checkBinaryOperation(
5372 BinaryOperator *AtomicBinOp, unsigned DiagId, unsigned NoteId) {
5373 ExprAnalysisErrorCode ErrorFound = NoError;
5374 SourceLocation ErrorLoc, NoteLoc;
5375 SourceRange ErrorRange, NoteRange;
5376 // Allowed constructs are:
5377 // x = x binop expr;
5378 // x = expr binop x;
5379 if (AtomicBinOp->getOpcode() == BO_Assign) {
5380 X = AtomicBinOp->getLHS();
5381 if (auto *AtomicInnerBinOp = dyn_cast<BinaryOperator>(
5382 AtomicBinOp->getRHS()->IgnoreParenImpCasts())) {
5383 if (AtomicInnerBinOp->isMultiplicativeOp() ||
5384 AtomicInnerBinOp->isAdditiveOp() || AtomicInnerBinOp->isShiftOp() ||
5385 AtomicInnerBinOp->isBitwiseOp()) {
Alexey Bataevb4505a72015-03-30 05:20:59 +00005386 Op = AtomicInnerBinOp->getOpcode();
5387 OpLoc = AtomicInnerBinOp->getOperatorLoc();
Alexey Bataev1d160b12015-03-13 12:27:31 +00005388 auto *LHS = AtomicInnerBinOp->getLHS();
5389 auto *RHS = AtomicInnerBinOp->getRHS();
5390 llvm::FoldingSetNodeID XId, LHSId, RHSId;
5391 X->IgnoreParenImpCasts()->Profile(XId, SemaRef.getASTContext(),
5392 /*Canonical=*/true);
5393 LHS->IgnoreParenImpCasts()->Profile(LHSId, SemaRef.getASTContext(),
5394 /*Canonical=*/true);
5395 RHS->IgnoreParenImpCasts()->Profile(RHSId, SemaRef.getASTContext(),
5396 /*Canonical=*/true);
5397 if (XId == LHSId) {
5398 E = RHS;
Alexey Bataevb4505a72015-03-30 05:20:59 +00005399 IsXLHSInRHSPart = true;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005400 } else if (XId == RHSId) {
5401 E = LHS;
Alexey Bataevb4505a72015-03-30 05:20:59 +00005402 IsXLHSInRHSPart = false;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005403 } else {
5404 ErrorLoc = AtomicInnerBinOp->getExprLoc();
5405 ErrorRange = AtomicInnerBinOp->getSourceRange();
5406 NoteLoc = X->getExprLoc();
5407 NoteRange = X->getSourceRange();
5408 ErrorFound = NotAnUpdateExpression;
5409 }
5410 } else {
5411 ErrorLoc = AtomicInnerBinOp->getExprLoc();
5412 ErrorRange = AtomicInnerBinOp->getSourceRange();
5413 NoteLoc = AtomicInnerBinOp->getOperatorLoc();
5414 NoteRange = SourceRange(NoteLoc, NoteLoc);
5415 ErrorFound = NotABinaryOperator;
5416 }
5417 } else {
5418 NoteLoc = ErrorLoc = AtomicBinOp->getRHS()->getExprLoc();
5419 NoteRange = ErrorRange = AtomicBinOp->getRHS()->getSourceRange();
5420 ErrorFound = NotABinaryExpression;
5421 }
5422 } else {
5423 ErrorLoc = AtomicBinOp->getExprLoc();
5424 ErrorRange = AtomicBinOp->getSourceRange();
5425 NoteLoc = AtomicBinOp->getOperatorLoc();
5426 NoteRange = SourceRange(NoteLoc, NoteLoc);
5427 ErrorFound = NotAnAssignmentOp;
5428 }
Alexey Bataevb78ca832015-04-01 03:33:17 +00005429 if (ErrorFound != NoError && DiagId != 0 && NoteId != 0) {
Alexey Bataev1d160b12015-03-13 12:27:31 +00005430 SemaRef.Diag(ErrorLoc, DiagId) << ErrorRange;
5431 SemaRef.Diag(NoteLoc, NoteId) << ErrorFound << NoteRange;
5432 return true;
5433 } else if (SemaRef.CurContext->isDependentContext())
Alexey Bataevb4505a72015-03-30 05:20:59 +00005434 E = X = UpdateExpr = nullptr;
Alexey Bataev5e018f92015-04-23 06:35:10 +00005435 return ErrorFound != NoError;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005436}
5437
5438bool OpenMPAtomicUpdateChecker::checkStatement(Stmt *S, unsigned DiagId,
5439 unsigned NoteId) {
5440 ExprAnalysisErrorCode ErrorFound = NoError;
5441 SourceLocation ErrorLoc, NoteLoc;
5442 SourceRange ErrorRange, NoteRange;
5443 // Allowed constructs are:
5444 // x++;
5445 // x--;
5446 // ++x;
5447 // --x;
5448 // x binop= expr;
5449 // x = x binop expr;
5450 // x = expr binop x;
5451 if (auto *AtomicBody = dyn_cast<Expr>(S)) {
5452 AtomicBody = AtomicBody->IgnoreParenImpCasts();
5453 if (AtomicBody->getType()->isScalarType() ||
5454 AtomicBody->isInstantiationDependent()) {
5455 if (auto *AtomicCompAssignOp = dyn_cast<CompoundAssignOperator>(
5456 AtomicBody->IgnoreParenImpCasts())) {
5457 // Check for Compound Assignment Operation
Alexey Bataevb4505a72015-03-30 05:20:59 +00005458 Op = BinaryOperator::getOpForCompoundAssignment(
Alexey Bataev1d160b12015-03-13 12:27:31 +00005459 AtomicCompAssignOp->getOpcode());
Alexey Bataevb4505a72015-03-30 05:20:59 +00005460 OpLoc = AtomicCompAssignOp->getOperatorLoc();
Alexey Bataev1d160b12015-03-13 12:27:31 +00005461 E = AtomicCompAssignOp->getRHS();
Alexey Bataevb4505a72015-03-30 05:20:59 +00005462 X = AtomicCompAssignOp->getLHS();
5463 IsXLHSInRHSPart = true;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005464 } else if (auto *AtomicBinOp = dyn_cast<BinaryOperator>(
5465 AtomicBody->IgnoreParenImpCasts())) {
5466 // Check for Binary Operation
Alexey Bataevb4505a72015-03-30 05:20:59 +00005467 if(checkBinaryOperation(AtomicBinOp, DiagId, NoteId))
5468 return true;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005469 } else if (auto *AtomicUnaryOp =
Alexey Bataev1d160b12015-03-13 12:27:31 +00005470 dyn_cast<UnaryOperator>(AtomicBody->IgnoreParenImpCasts())) {
5471 // Check for Unary Operation
5472 if (AtomicUnaryOp->isIncrementDecrementOp()) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00005473 IsPostfixUpdate = AtomicUnaryOp->isPostfix();
Alexey Bataevb4505a72015-03-30 05:20:59 +00005474 Op = AtomicUnaryOp->isIncrementOp() ? BO_Add : BO_Sub;
5475 OpLoc = AtomicUnaryOp->getOperatorLoc();
5476 X = AtomicUnaryOp->getSubExpr();
5477 E = SemaRef.ActOnIntegerConstant(OpLoc, /*uint64_t Val=*/1).get();
5478 IsXLHSInRHSPart = true;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005479 } else {
5480 ErrorFound = NotAnUnaryIncDecExpression;
5481 ErrorLoc = AtomicUnaryOp->getExprLoc();
5482 ErrorRange = AtomicUnaryOp->getSourceRange();
5483 NoteLoc = AtomicUnaryOp->getOperatorLoc();
5484 NoteRange = SourceRange(NoteLoc, NoteLoc);
5485 }
Alexey Bataev5a195472015-09-04 12:55:50 +00005486 } else if (!AtomicBody->isInstantiationDependent()) {
Alexey Bataev1d160b12015-03-13 12:27:31 +00005487 ErrorFound = NotABinaryOrUnaryExpression;
5488 NoteLoc = ErrorLoc = AtomicBody->getExprLoc();
5489 NoteRange = ErrorRange = AtomicBody->getSourceRange();
5490 }
5491 } else {
5492 ErrorFound = NotAScalarType;
5493 NoteLoc = ErrorLoc = AtomicBody->getLocStart();
5494 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
5495 }
5496 } else {
5497 ErrorFound = NotAnExpression;
5498 NoteLoc = ErrorLoc = S->getLocStart();
5499 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
5500 }
Alexey Bataevb78ca832015-04-01 03:33:17 +00005501 if (ErrorFound != NoError && DiagId != 0 && NoteId != 0) {
Alexey Bataev1d160b12015-03-13 12:27:31 +00005502 SemaRef.Diag(ErrorLoc, DiagId) << ErrorRange;
5503 SemaRef.Diag(NoteLoc, NoteId) << ErrorFound << NoteRange;
5504 return true;
5505 } else if (SemaRef.CurContext->isDependentContext())
Alexey Bataevb4505a72015-03-30 05:20:59 +00005506 E = X = UpdateExpr = nullptr;
Alexey Bataev5e018f92015-04-23 06:35:10 +00005507 if (ErrorFound == NoError && E && X) {
Alexey Bataevb4505a72015-03-30 05:20:59 +00005508 // Build an update expression of form 'OpaqueValueExpr(x) binop
5509 // OpaqueValueExpr(expr)' or 'OpaqueValueExpr(expr) binop
5510 // OpaqueValueExpr(x)' and then cast it to the type of the 'x' expression.
5511 auto *OVEX = new (SemaRef.getASTContext())
5512 OpaqueValueExpr(X->getExprLoc(), X->getType(), VK_RValue);
5513 auto *OVEExpr = new (SemaRef.getASTContext())
5514 OpaqueValueExpr(E->getExprLoc(), E->getType(), VK_RValue);
5515 auto Update =
5516 SemaRef.CreateBuiltinBinOp(OpLoc, Op, IsXLHSInRHSPart ? OVEX : OVEExpr,
5517 IsXLHSInRHSPart ? OVEExpr : OVEX);
5518 if (Update.isInvalid())
5519 return true;
5520 Update = SemaRef.PerformImplicitConversion(Update.get(), X->getType(),
5521 Sema::AA_Casting);
5522 if (Update.isInvalid())
5523 return true;
5524 UpdateExpr = Update.get();
5525 }
Alexey Bataev5e018f92015-04-23 06:35:10 +00005526 return ErrorFound != NoError;
Alexey Bataev1d160b12015-03-13 12:27:31 +00005527}
5528
Alexey Bataev0162e452014-07-22 10:10:35 +00005529StmtResult Sema::ActOnOpenMPAtomicDirective(ArrayRef<OMPClause *> Clauses,
5530 Stmt *AStmt,
5531 SourceLocation StartLoc,
5532 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005533 if (!AStmt)
5534 return StmtError();
5535
Alexey Bataevf98b00c2014-07-23 02:27:21 +00005536 auto CS = cast<CapturedStmt>(AStmt);
Alexey Bataev0162e452014-07-22 10:10:35 +00005537 // 1.2.2 OpenMP Language Terminology
5538 // Structured block - An executable statement with a single entry at the
5539 // top and a single exit at the bottom.
5540 // The point of exit cannot be a branch out of the structured block.
5541 // longjmp() and throw() must not violate the entry/exit criteria.
Alexey Bataevdea47612014-07-23 07:46:59 +00005542 OpenMPClauseKind AtomicKind = OMPC_unknown;
5543 SourceLocation AtomicKindLoc;
Alexey Bataevf98b00c2014-07-23 02:27:21 +00005544 for (auto *C : Clauses) {
Alexey Bataev67a4f222014-07-23 10:25:33 +00005545 if (C->getClauseKind() == OMPC_read || C->getClauseKind() == OMPC_write ||
Alexey Bataev459dec02014-07-24 06:46:57 +00005546 C->getClauseKind() == OMPC_update ||
5547 C->getClauseKind() == OMPC_capture) {
Alexey Bataevdea47612014-07-23 07:46:59 +00005548 if (AtomicKind != OMPC_unknown) {
5549 Diag(C->getLocStart(), diag::err_omp_atomic_several_clauses)
5550 << SourceRange(C->getLocStart(), C->getLocEnd());
5551 Diag(AtomicKindLoc, diag::note_omp_atomic_previous_clause)
5552 << getOpenMPClauseName(AtomicKind);
5553 } else {
5554 AtomicKind = C->getClauseKind();
5555 AtomicKindLoc = C->getLocStart();
Alexey Bataevf98b00c2014-07-23 02:27:21 +00005556 }
5557 }
5558 }
Alexey Bataev62cec442014-11-18 10:14:22 +00005559
Alexey Bataev459dec02014-07-24 06:46:57 +00005560 auto Body = CS->getCapturedStmt();
Alexey Bataev10fec572015-03-11 04:48:56 +00005561 if (auto *EWC = dyn_cast<ExprWithCleanups>(Body))
5562 Body = EWC->getSubExpr();
5563
Alexey Bataev62cec442014-11-18 10:14:22 +00005564 Expr *X = nullptr;
5565 Expr *V = nullptr;
5566 Expr *E = nullptr;
Alexey Bataevb4505a72015-03-30 05:20:59 +00005567 Expr *UE = nullptr;
5568 bool IsXLHSInRHSPart = false;
Alexey Bataevb78ca832015-04-01 03:33:17 +00005569 bool IsPostfixUpdate = false;
Alexey Bataev62cec442014-11-18 10:14:22 +00005570 // OpenMP [2.12.6, atomic Construct]
5571 // In the next expressions:
5572 // * x and v (as applicable) are both l-value expressions with scalar type.
5573 // * During the execution of an atomic region, multiple syntactic
5574 // occurrences of x must designate the same storage location.
5575 // * Neither of v and expr (as applicable) may access the storage location
5576 // designated by x.
5577 // * Neither of x and expr (as applicable) may access the storage location
5578 // designated by v.
5579 // * expr is an expression with scalar type.
5580 // * binop is one of +, *, -, /, &, ^, |, <<, or >>.
5581 // * binop, binop=, ++, and -- are not overloaded operators.
5582 // * The expression x binop expr must be numerically equivalent to x binop
5583 // (expr). This requirement is satisfied if the operators in expr have
5584 // precedence greater than binop, or by using parentheses around expr or
5585 // subexpressions of expr.
5586 // * The expression expr binop x must be numerically equivalent to (expr)
5587 // binop x. This requirement is satisfied if the operators in expr have
5588 // precedence equal to or greater than binop, or by using parentheses around
5589 // expr or subexpressions of expr.
5590 // * For forms that allow multiple occurrences of x, the number of times
5591 // that x is evaluated is unspecified.
Alexey Bataevdea47612014-07-23 07:46:59 +00005592 if (AtomicKind == OMPC_read) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00005593 enum {
5594 NotAnExpression,
5595 NotAnAssignmentOp,
5596 NotAScalarType,
5597 NotAnLValue,
5598 NoError
5599 } ErrorFound = NoError;
Alexey Bataev62cec442014-11-18 10:14:22 +00005600 SourceLocation ErrorLoc, NoteLoc;
5601 SourceRange ErrorRange, NoteRange;
5602 // If clause is read:
5603 // v = x;
5604 if (auto AtomicBody = dyn_cast<Expr>(Body)) {
5605 auto AtomicBinOp =
5606 dyn_cast<BinaryOperator>(AtomicBody->IgnoreParenImpCasts());
5607 if (AtomicBinOp && AtomicBinOp->getOpcode() == BO_Assign) {
5608 X = AtomicBinOp->getRHS()->IgnoreParenImpCasts();
5609 V = AtomicBinOp->getLHS()->IgnoreParenImpCasts();
5610 if ((X->isInstantiationDependent() || X->getType()->isScalarType()) &&
5611 (V->isInstantiationDependent() || V->getType()->isScalarType())) {
5612 if (!X->isLValue() || !V->isLValue()) {
5613 auto NotLValueExpr = X->isLValue() ? V : X;
5614 ErrorFound = NotAnLValue;
5615 ErrorLoc = AtomicBinOp->getExprLoc();
5616 ErrorRange = AtomicBinOp->getSourceRange();
5617 NoteLoc = NotLValueExpr->getExprLoc();
5618 NoteRange = NotLValueExpr->getSourceRange();
5619 }
5620 } else if (!X->isInstantiationDependent() ||
5621 !V->isInstantiationDependent()) {
5622 auto NotScalarExpr =
5623 (X->isInstantiationDependent() || X->getType()->isScalarType())
5624 ? V
5625 : X;
5626 ErrorFound = NotAScalarType;
5627 ErrorLoc = AtomicBinOp->getExprLoc();
5628 ErrorRange = AtomicBinOp->getSourceRange();
5629 NoteLoc = NotScalarExpr->getExprLoc();
5630 NoteRange = NotScalarExpr->getSourceRange();
5631 }
Alexey Bataev5a195472015-09-04 12:55:50 +00005632 } else if (!AtomicBody->isInstantiationDependent()) {
Alexey Bataev62cec442014-11-18 10:14:22 +00005633 ErrorFound = NotAnAssignmentOp;
5634 ErrorLoc = AtomicBody->getExprLoc();
5635 ErrorRange = AtomicBody->getSourceRange();
5636 NoteLoc = AtomicBinOp ? AtomicBinOp->getOperatorLoc()
5637 : AtomicBody->getExprLoc();
5638 NoteRange = AtomicBinOp ? AtomicBinOp->getSourceRange()
5639 : AtomicBody->getSourceRange();
5640 }
5641 } else {
5642 ErrorFound = NotAnExpression;
5643 NoteLoc = ErrorLoc = Body->getLocStart();
5644 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
Alexey Bataevdea47612014-07-23 07:46:59 +00005645 }
Alexey Bataev62cec442014-11-18 10:14:22 +00005646 if (ErrorFound != NoError) {
5647 Diag(ErrorLoc, diag::err_omp_atomic_read_not_expression_statement)
5648 << ErrorRange;
Alexey Bataevf33eba62014-11-28 07:21:40 +00005649 Diag(NoteLoc, diag::note_omp_atomic_read_write) << ErrorFound
5650 << NoteRange;
Alexey Bataev62cec442014-11-18 10:14:22 +00005651 return StmtError();
5652 } else if (CurContext->isDependentContext())
5653 V = X = nullptr;
Alexey Bataevdea47612014-07-23 07:46:59 +00005654 } else if (AtomicKind == OMPC_write) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00005655 enum {
5656 NotAnExpression,
5657 NotAnAssignmentOp,
5658 NotAScalarType,
5659 NotAnLValue,
5660 NoError
5661 } ErrorFound = NoError;
Alexey Bataevf33eba62014-11-28 07:21:40 +00005662 SourceLocation ErrorLoc, NoteLoc;
5663 SourceRange ErrorRange, NoteRange;
5664 // If clause is write:
5665 // x = expr;
5666 if (auto AtomicBody = dyn_cast<Expr>(Body)) {
5667 auto AtomicBinOp =
5668 dyn_cast<BinaryOperator>(AtomicBody->IgnoreParenImpCasts());
5669 if (AtomicBinOp && AtomicBinOp->getOpcode() == BO_Assign) {
Alexey Bataevb8329262015-02-27 06:33:30 +00005670 X = AtomicBinOp->getLHS();
5671 E = AtomicBinOp->getRHS();
Alexey Bataevf33eba62014-11-28 07:21:40 +00005672 if ((X->isInstantiationDependent() || X->getType()->isScalarType()) &&
5673 (E->isInstantiationDependent() || E->getType()->isScalarType())) {
5674 if (!X->isLValue()) {
5675 ErrorFound = NotAnLValue;
5676 ErrorLoc = AtomicBinOp->getExprLoc();
5677 ErrorRange = AtomicBinOp->getSourceRange();
5678 NoteLoc = X->getExprLoc();
5679 NoteRange = X->getSourceRange();
5680 }
5681 } else if (!X->isInstantiationDependent() ||
5682 !E->isInstantiationDependent()) {
5683 auto NotScalarExpr =
5684 (X->isInstantiationDependent() || X->getType()->isScalarType())
5685 ? E
5686 : X;
5687 ErrorFound = NotAScalarType;
5688 ErrorLoc = AtomicBinOp->getExprLoc();
5689 ErrorRange = AtomicBinOp->getSourceRange();
5690 NoteLoc = NotScalarExpr->getExprLoc();
5691 NoteRange = NotScalarExpr->getSourceRange();
5692 }
Alexey Bataev5a195472015-09-04 12:55:50 +00005693 } else if (!AtomicBody->isInstantiationDependent()) {
Alexey Bataevf33eba62014-11-28 07:21:40 +00005694 ErrorFound = NotAnAssignmentOp;
5695 ErrorLoc = AtomicBody->getExprLoc();
5696 ErrorRange = AtomicBody->getSourceRange();
5697 NoteLoc = AtomicBinOp ? AtomicBinOp->getOperatorLoc()
5698 : AtomicBody->getExprLoc();
5699 NoteRange = AtomicBinOp ? AtomicBinOp->getSourceRange()
5700 : AtomicBody->getSourceRange();
5701 }
5702 } else {
5703 ErrorFound = NotAnExpression;
5704 NoteLoc = ErrorLoc = Body->getLocStart();
5705 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
Alexey Bataevdea47612014-07-23 07:46:59 +00005706 }
Alexey Bataevf33eba62014-11-28 07:21:40 +00005707 if (ErrorFound != NoError) {
5708 Diag(ErrorLoc, diag::err_omp_atomic_write_not_expression_statement)
5709 << ErrorRange;
5710 Diag(NoteLoc, diag::note_omp_atomic_read_write) << ErrorFound
5711 << NoteRange;
5712 return StmtError();
5713 } else if (CurContext->isDependentContext())
5714 E = X = nullptr;
Alexey Bataev67a4f222014-07-23 10:25:33 +00005715 } else if (AtomicKind == OMPC_update || AtomicKind == OMPC_unknown) {
Alexey Bataev1d160b12015-03-13 12:27:31 +00005716 // If clause is update:
5717 // x++;
5718 // x--;
5719 // ++x;
5720 // --x;
5721 // x binop= expr;
5722 // x = x binop expr;
5723 // x = expr binop x;
5724 OpenMPAtomicUpdateChecker Checker(*this);
5725 if (Checker.checkStatement(
5726 Body, (AtomicKind == OMPC_update)
5727 ? diag::err_omp_atomic_update_not_expression_statement
5728 : diag::err_omp_atomic_not_expression_statement,
5729 diag::note_omp_atomic_update))
Alexey Bataev67a4f222014-07-23 10:25:33 +00005730 return StmtError();
Alexey Bataev1d160b12015-03-13 12:27:31 +00005731 if (!CurContext->isDependentContext()) {
5732 E = Checker.getExpr();
5733 X = Checker.getX();
Alexey Bataevb4505a72015-03-30 05:20:59 +00005734 UE = Checker.getUpdateExpr();
5735 IsXLHSInRHSPart = Checker.isXLHSInRHSPart();
Alexey Bataev67a4f222014-07-23 10:25:33 +00005736 }
Alexey Bataev459dec02014-07-24 06:46:57 +00005737 } else if (AtomicKind == OMPC_capture) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00005738 enum {
5739 NotAnAssignmentOp,
5740 NotACompoundStatement,
5741 NotTwoSubstatements,
5742 NotASpecificExpression,
5743 NoError
5744 } ErrorFound = NoError;
5745 SourceLocation ErrorLoc, NoteLoc;
5746 SourceRange ErrorRange, NoteRange;
5747 if (auto *AtomicBody = dyn_cast<Expr>(Body)) {
5748 // If clause is a capture:
5749 // v = x++;
5750 // v = x--;
5751 // v = ++x;
5752 // v = --x;
5753 // v = x binop= expr;
5754 // v = x = x binop expr;
5755 // v = x = expr binop x;
5756 auto *AtomicBinOp =
5757 dyn_cast<BinaryOperator>(AtomicBody->IgnoreParenImpCasts());
5758 if (AtomicBinOp && AtomicBinOp->getOpcode() == BO_Assign) {
5759 V = AtomicBinOp->getLHS();
5760 Body = AtomicBinOp->getRHS()->IgnoreParenImpCasts();
5761 OpenMPAtomicUpdateChecker Checker(*this);
5762 if (Checker.checkStatement(
5763 Body, diag::err_omp_atomic_capture_not_expression_statement,
5764 diag::note_omp_atomic_update))
5765 return StmtError();
5766 E = Checker.getExpr();
5767 X = Checker.getX();
5768 UE = Checker.getUpdateExpr();
5769 IsXLHSInRHSPart = Checker.isXLHSInRHSPart();
5770 IsPostfixUpdate = Checker.isPostfixUpdate();
Alexey Bataev5a195472015-09-04 12:55:50 +00005771 } else if (!AtomicBody->isInstantiationDependent()) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00005772 ErrorLoc = AtomicBody->getExprLoc();
5773 ErrorRange = AtomicBody->getSourceRange();
5774 NoteLoc = AtomicBinOp ? AtomicBinOp->getOperatorLoc()
5775 : AtomicBody->getExprLoc();
5776 NoteRange = AtomicBinOp ? AtomicBinOp->getSourceRange()
5777 : AtomicBody->getSourceRange();
5778 ErrorFound = NotAnAssignmentOp;
5779 }
5780 if (ErrorFound != NoError) {
5781 Diag(ErrorLoc, diag::err_omp_atomic_capture_not_expression_statement)
5782 << ErrorRange;
5783 Diag(NoteLoc, diag::note_omp_atomic_capture) << ErrorFound << NoteRange;
5784 return StmtError();
5785 } else if (CurContext->isDependentContext()) {
5786 UE = V = E = X = nullptr;
5787 }
5788 } else {
5789 // If clause is a capture:
5790 // { v = x; x = expr; }
5791 // { v = x; x++; }
5792 // { v = x; x--; }
5793 // { v = x; ++x; }
5794 // { v = x; --x; }
5795 // { v = x; x binop= expr; }
5796 // { v = x; x = x binop expr; }
5797 // { v = x; x = expr binop x; }
5798 // { x++; v = x; }
5799 // { x--; v = x; }
5800 // { ++x; v = x; }
5801 // { --x; v = x; }
5802 // { x binop= expr; v = x; }
5803 // { x = x binop expr; v = x; }
5804 // { x = expr binop x; v = x; }
5805 if (auto *CS = dyn_cast<CompoundStmt>(Body)) {
5806 // Check that this is { expr1; expr2; }
5807 if (CS->size() == 2) {
5808 auto *First = CS->body_front();
5809 auto *Second = CS->body_back();
5810 if (auto *EWC = dyn_cast<ExprWithCleanups>(First))
5811 First = EWC->getSubExpr()->IgnoreParenImpCasts();
5812 if (auto *EWC = dyn_cast<ExprWithCleanups>(Second))
5813 Second = EWC->getSubExpr()->IgnoreParenImpCasts();
5814 // Need to find what subexpression is 'v' and what is 'x'.
5815 OpenMPAtomicUpdateChecker Checker(*this);
5816 bool IsUpdateExprFound = !Checker.checkStatement(Second);
5817 BinaryOperator *BinOp = nullptr;
5818 if (IsUpdateExprFound) {
5819 BinOp = dyn_cast<BinaryOperator>(First);
5820 IsUpdateExprFound = BinOp && BinOp->getOpcode() == BO_Assign;
5821 }
5822 if (IsUpdateExprFound && !CurContext->isDependentContext()) {
5823 // { v = x; x++; }
5824 // { v = x; x--; }
5825 // { v = x; ++x; }
5826 // { v = x; --x; }
5827 // { v = x; x binop= expr; }
5828 // { v = x; x = x binop expr; }
5829 // { v = x; x = expr binop x; }
5830 // Check that the first expression has form v = x.
5831 auto *PossibleX = BinOp->getRHS()->IgnoreParenImpCasts();
5832 llvm::FoldingSetNodeID XId, PossibleXId;
5833 Checker.getX()->Profile(XId, Context, /*Canonical=*/true);
5834 PossibleX->Profile(PossibleXId, Context, /*Canonical=*/true);
5835 IsUpdateExprFound = XId == PossibleXId;
5836 if (IsUpdateExprFound) {
5837 V = BinOp->getLHS();
5838 X = Checker.getX();
5839 E = Checker.getExpr();
5840 UE = Checker.getUpdateExpr();
5841 IsXLHSInRHSPart = Checker.isXLHSInRHSPart();
Alexey Bataev5e018f92015-04-23 06:35:10 +00005842 IsPostfixUpdate = true;
Alexey Bataevb78ca832015-04-01 03:33:17 +00005843 }
5844 }
5845 if (!IsUpdateExprFound) {
5846 IsUpdateExprFound = !Checker.checkStatement(First);
5847 BinOp = nullptr;
5848 if (IsUpdateExprFound) {
5849 BinOp = dyn_cast<BinaryOperator>(Second);
5850 IsUpdateExprFound = BinOp && BinOp->getOpcode() == BO_Assign;
5851 }
5852 if (IsUpdateExprFound && !CurContext->isDependentContext()) {
5853 // { x++; v = x; }
5854 // { x--; v = x; }
5855 // { ++x; v = x; }
5856 // { --x; v = x; }
5857 // { x binop= expr; v = x; }
5858 // { x = x binop expr; v = x; }
5859 // { x = expr binop x; v = x; }
5860 // Check that the second expression has form v = x.
5861 auto *PossibleX = BinOp->getRHS()->IgnoreParenImpCasts();
5862 llvm::FoldingSetNodeID XId, PossibleXId;
5863 Checker.getX()->Profile(XId, Context, /*Canonical=*/true);
5864 PossibleX->Profile(PossibleXId, Context, /*Canonical=*/true);
5865 IsUpdateExprFound = XId == PossibleXId;
5866 if (IsUpdateExprFound) {
5867 V = BinOp->getLHS();
5868 X = Checker.getX();
5869 E = Checker.getExpr();
5870 UE = Checker.getUpdateExpr();
5871 IsXLHSInRHSPart = Checker.isXLHSInRHSPart();
Alexey Bataev5e018f92015-04-23 06:35:10 +00005872 IsPostfixUpdate = false;
Alexey Bataevb78ca832015-04-01 03:33:17 +00005873 }
5874 }
5875 }
5876 if (!IsUpdateExprFound) {
5877 // { v = x; x = expr; }
Alexey Bataev5a195472015-09-04 12:55:50 +00005878 auto *FirstExpr = dyn_cast<Expr>(First);
5879 auto *SecondExpr = dyn_cast<Expr>(Second);
5880 if (!FirstExpr || !SecondExpr ||
5881 !(FirstExpr->isInstantiationDependent() ||
5882 SecondExpr->isInstantiationDependent())) {
5883 auto *FirstBinOp = dyn_cast<BinaryOperator>(First);
5884 if (!FirstBinOp || FirstBinOp->getOpcode() != BO_Assign) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00005885 ErrorFound = NotAnAssignmentOp;
Alexey Bataev5a195472015-09-04 12:55:50 +00005886 NoteLoc = ErrorLoc = FirstBinOp ? FirstBinOp->getOperatorLoc()
5887 : First->getLocStart();
5888 NoteRange = ErrorRange = FirstBinOp
5889 ? FirstBinOp->getSourceRange()
Alexey Bataevb78ca832015-04-01 03:33:17 +00005890 : SourceRange(ErrorLoc, ErrorLoc);
5891 } else {
Alexey Bataev5a195472015-09-04 12:55:50 +00005892 auto *SecondBinOp = dyn_cast<BinaryOperator>(Second);
5893 if (!SecondBinOp || SecondBinOp->getOpcode() != BO_Assign) {
5894 ErrorFound = NotAnAssignmentOp;
5895 NoteLoc = ErrorLoc = SecondBinOp
5896 ? SecondBinOp->getOperatorLoc()
5897 : Second->getLocStart();
5898 NoteRange = ErrorRange =
5899 SecondBinOp ? SecondBinOp->getSourceRange()
5900 : SourceRange(ErrorLoc, ErrorLoc);
Alexey Bataevb78ca832015-04-01 03:33:17 +00005901 } else {
Alexey Bataev5a195472015-09-04 12:55:50 +00005902 auto *PossibleXRHSInFirst =
5903 FirstBinOp->getRHS()->IgnoreParenImpCasts();
5904 auto *PossibleXLHSInSecond =
5905 SecondBinOp->getLHS()->IgnoreParenImpCasts();
5906 llvm::FoldingSetNodeID X1Id, X2Id;
5907 PossibleXRHSInFirst->Profile(X1Id, Context,
5908 /*Canonical=*/true);
5909 PossibleXLHSInSecond->Profile(X2Id, Context,
5910 /*Canonical=*/true);
5911 IsUpdateExprFound = X1Id == X2Id;
5912 if (IsUpdateExprFound) {
5913 V = FirstBinOp->getLHS();
5914 X = SecondBinOp->getLHS();
5915 E = SecondBinOp->getRHS();
5916 UE = nullptr;
5917 IsXLHSInRHSPart = false;
5918 IsPostfixUpdate = true;
5919 } else {
5920 ErrorFound = NotASpecificExpression;
5921 ErrorLoc = FirstBinOp->getExprLoc();
5922 ErrorRange = FirstBinOp->getSourceRange();
5923 NoteLoc = SecondBinOp->getLHS()->getExprLoc();
5924 NoteRange = SecondBinOp->getRHS()->getSourceRange();
5925 }
Alexey Bataevb78ca832015-04-01 03:33:17 +00005926 }
5927 }
5928 }
5929 }
5930 } else {
5931 NoteLoc = ErrorLoc = Body->getLocStart();
5932 NoteRange = ErrorRange =
5933 SourceRange(Body->getLocStart(), Body->getLocStart());
5934 ErrorFound = NotTwoSubstatements;
5935 }
5936 } else {
5937 NoteLoc = ErrorLoc = Body->getLocStart();
5938 NoteRange = ErrorRange =
5939 SourceRange(Body->getLocStart(), Body->getLocStart());
5940 ErrorFound = NotACompoundStatement;
5941 }
5942 if (ErrorFound != NoError) {
5943 Diag(ErrorLoc, diag::err_omp_atomic_capture_not_compound_statement)
5944 << ErrorRange;
5945 Diag(NoteLoc, diag::note_omp_atomic_capture) << ErrorFound << NoteRange;
5946 return StmtError();
5947 } else if (CurContext->isDependentContext()) {
5948 UE = V = E = X = nullptr;
5949 }
Alexey Bataev459dec02014-07-24 06:46:57 +00005950 }
Alexey Bataevdea47612014-07-23 07:46:59 +00005951 }
Alexey Bataev0162e452014-07-22 10:10:35 +00005952
5953 getCurFunction()->setHasBranchProtectedScope();
5954
Alexey Bataev62cec442014-11-18 10:14:22 +00005955 return OMPAtomicDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
Alexey Bataevb78ca832015-04-01 03:33:17 +00005956 X, V, E, UE, IsXLHSInRHSPart,
5957 IsPostfixUpdate);
Alexey Bataev0162e452014-07-22 10:10:35 +00005958}
5959
Alexey Bataev0bd520b2014-09-19 08:19:49 +00005960StmtResult Sema::ActOnOpenMPTargetDirective(ArrayRef<OMPClause *> Clauses,
5961 Stmt *AStmt,
5962 SourceLocation StartLoc,
5963 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005964 if (!AStmt)
5965 return StmtError();
5966
Samuel Antao4af1b7b2015-12-02 17:44:43 +00005967 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
5968 // 1.2.2 OpenMP Language Terminology
5969 // Structured block - An executable statement with a single entry at the
5970 // top and a single exit at the bottom.
5971 // The point of exit cannot be a branch out of the structured block.
5972 // longjmp() and throw() must not violate the entry/exit criteria.
5973 CS->getCapturedDecl()->setNothrow();
Alexey Bataev0bd520b2014-09-19 08:19:49 +00005974
Alexey Bataev13314bf2014-10-09 04:18:56 +00005975 // OpenMP [2.16, Nesting of Regions]
5976 // If specified, a teams construct must be contained within a target
5977 // construct. That target construct must contain no statements or directives
5978 // outside of the teams construct.
5979 if (DSAStack->hasInnerTeamsRegion()) {
5980 auto S = AStmt->IgnoreContainers(/*IgnoreCaptured*/ true);
5981 bool OMPTeamsFound = true;
5982 if (auto *CS = dyn_cast<CompoundStmt>(S)) {
5983 auto I = CS->body_begin();
5984 while (I != CS->body_end()) {
5985 auto OED = dyn_cast<OMPExecutableDirective>(*I);
5986 if (!OED || !isOpenMPTeamsDirective(OED->getDirectiveKind())) {
5987 OMPTeamsFound = false;
5988 break;
5989 }
5990 ++I;
5991 }
5992 assert(I != CS->body_end() && "Not found statement");
5993 S = *I;
5994 }
5995 if (!OMPTeamsFound) {
5996 Diag(StartLoc, diag::err_omp_target_contains_not_only_teams);
5997 Diag(DSAStack->getInnerTeamsRegionLoc(),
5998 diag::note_omp_nested_teams_construct_here);
5999 Diag(S->getLocStart(), diag::note_omp_nested_statement_here)
6000 << isa<OMPExecutableDirective>(S);
6001 return StmtError();
6002 }
6003 }
6004
Alexey Bataev0bd520b2014-09-19 08:19:49 +00006005 getCurFunction()->setHasBranchProtectedScope();
6006
6007 return OMPTargetDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
6008}
6009
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00006010StmtResult
6011Sema::ActOnOpenMPTargetParallelDirective(ArrayRef<OMPClause *> Clauses,
6012 Stmt *AStmt, SourceLocation StartLoc,
6013 SourceLocation EndLoc) {
6014 if (!AStmt)
6015 return StmtError();
6016
6017 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
6018 // 1.2.2 OpenMP Language Terminology
6019 // Structured block - An executable statement with a single entry at the
6020 // top and a single exit at the bottom.
6021 // The point of exit cannot be a branch out of the structured block.
6022 // longjmp() and throw() must not violate the entry/exit criteria.
6023 CS->getCapturedDecl()->setNothrow();
6024
6025 getCurFunction()->setHasBranchProtectedScope();
6026
6027 return OMPTargetParallelDirective::Create(Context, StartLoc, EndLoc, Clauses,
6028 AStmt);
6029}
6030
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00006031StmtResult Sema::ActOnOpenMPTargetParallelForDirective(
6032 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
6033 SourceLocation EndLoc,
6034 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
6035 if (!AStmt)
6036 return StmtError();
6037
6038 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
6039 // 1.2.2 OpenMP Language Terminology
6040 // Structured block - An executable statement with a single entry at the
6041 // top and a single exit at the bottom.
6042 // The point of exit cannot be a branch out of the structured block.
6043 // longjmp() and throw() must not violate the entry/exit criteria.
6044 CS->getCapturedDecl()->setNothrow();
6045
6046 OMPLoopDirective::HelperExprs B;
6047 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
6048 // define the nested loops number.
6049 unsigned NestedLoopCount =
6050 CheckOpenMPLoop(OMPD_target_parallel_for, getCollapseNumberExpr(Clauses),
6051 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
6052 VarsWithImplicitDSA, B);
6053 if (NestedLoopCount == 0)
6054 return StmtError();
6055
6056 assert((CurContext->isDependentContext() || B.builtAll()) &&
6057 "omp target parallel for loop exprs were not built");
6058
6059 if (!CurContext->isDependentContext()) {
6060 // Finalize the clauses that need pre-built expressions for CodeGen.
6061 for (auto C : Clauses) {
6062 if (auto LC = dyn_cast<OMPLinearClause>(C))
6063 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
6064 B.NumIterations, *this, CurScope))
6065 return StmtError();
6066 }
6067 }
6068
6069 getCurFunction()->setHasBranchProtectedScope();
6070 return OMPTargetParallelForDirective::Create(Context, StartLoc, EndLoc,
6071 NestedLoopCount, Clauses, AStmt,
6072 B, DSAStack->isCancelRegion());
6073}
6074
Samuel Antaodf67fc42016-01-19 19:15:56 +00006075/// \brief Check for existence of a map clause in the list of clauses.
6076static bool HasMapClause(ArrayRef<OMPClause *> Clauses) {
6077 for (ArrayRef<OMPClause *>::iterator I = Clauses.begin(), E = Clauses.end();
6078 I != E; ++I) {
6079 if (*I != nullptr && (*I)->getClauseKind() == OMPC_map) {
6080 return true;
6081 }
6082 }
6083
6084 return false;
6085}
6086
Michael Wong65f367f2015-07-21 13:44:28 +00006087StmtResult Sema::ActOnOpenMPTargetDataDirective(ArrayRef<OMPClause *> Clauses,
6088 Stmt *AStmt,
6089 SourceLocation StartLoc,
6090 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006091 if (!AStmt)
6092 return StmtError();
6093
6094 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
6095
Arpith Chacko Jacob46a04bb2016-01-21 19:57:55 +00006096 // OpenMP [2.10.1, Restrictions, p. 97]
6097 // At least one map clause must appear on the directive.
6098 if (!HasMapClause(Clauses)) {
6099 Diag(StartLoc, diag::err_omp_no_map_for_directive) <<
6100 getOpenMPDirectiveName(OMPD_target_data);
6101 return StmtError();
6102 }
6103
Michael Wong65f367f2015-07-21 13:44:28 +00006104 getCurFunction()->setHasBranchProtectedScope();
6105
6106 return OMPTargetDataDirective::Create(Context, StartLoc, EndLoc, Clauses,
6107 AStmt);
6108}
6109
Samuel Antaodf67fc42016-01-19 19:15:56 +00006110StmtResult
6111Sema::ActOnOpenMPTargetEnterDataDirective(ArrayRef<OMPClause *> Clauses,
6112 SourceLocation StartLoc,
6113 SourceLocation EndLoc) {
6114 // OpenMP [2.10.2, Restrictions, p. 99]
6115 // At least one map clause must appear on the directive.
6116 if (!HasMapClause(Clauses)) {
6117 Diag(StartLoc, diag::err_omp_no_map_for_directive)
6118 << getOpenMPDirectiveName(OMPD_target_enter_data);
6119 return StmtError();
6120 }
6121
6122 return OMPTargetEnterDataDirective::Create(Context, StartLoc, EndLoc,
6123 Clauses);
6124}
6125
Samuel Antao72590762016-01-19 20:04:50 +00006126StmtResult
6127Sema::ActOnOpenMPTargetExitDataDirective(ArrayRef<OMPClause *> Clauses,
6128 SourceLocation StartLoc,
6129 SourceLocation EndLoc) {
6130 // OpenMP [2.10.3, Restrictions, p. 102]
6131 // At least one map clause must appear on the directive.
6132 if (!HasMapClause(Clauses)) {
6133 Diag(StartLoc, diag::err_omp_no_map_for_directive)
6134 << getOpenMPDirectiveName(OMPD_target_exit_data);
6135 return StmtError();
6136 }
6137
6138 return OMPTargetExitDataDirective::Create(Context, StartLoc, EndLoc, Clauses);
6139}
6140
Alexey Bataev13314bf2014-10-09 04:18:56 +00006141StmtResult Sema::ActOnOpenMPTeamsDirective(ArrayRef<OMPClause *> Clauses,
6142 Stmt *AStmt, SourceLocation StartLoc,
6143 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006144 if (!AStmt)
6145 return StmtError();
6146
Alexey Bataev13314bf2014-10-09 04:18:56 +00006147 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
6148 // 1.2.2 OpenMP Language Terminology
6149 // Structured block - An executable statement with a single entry at the
6150 // top and a single exit at the bottom.
6151 // The point of exit cannot be a branch out of the structured block.
6152 // longjmp() and throw() must not violate the entry/exit criteria.
6153 CS->getCapturedDecl()->setNothrow();
6154
6155 getCurFunction()->setHasBranchProtectedScope();
6156
6157 return OMPTeamsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
6158}
6159
Alexey Bataev6d4ed052015-07-01 06:57:41 +00006160StmtResult
6161Sema::ActOnOpenMPCancellationPointDirective(SourceLocation StartLoc,
6162 SourceLocation EndLoc,
6163 OpenMPDirectiveKind CancelRegion) {
6164 if (CancelRegion != OMPD_parallel && CancelRegion != OMPD_for &&
6165 CancelRegion != OMPD_sections && CancelRegion != OMPD_taskgroup) {
6166 Diag(StartLoc, diag::err_omp_wrong_cancel_region)
6167 << getOpenMPDirectiveName(CancelRegion);
6168 return StmtError();
6169 }
6170 if (DSAStack->isParentNowaitRegion()) {
6171 Diag(StartLoc, diag::err_omp_parent_cancel_region_nowait) << 0;
6172 return StmtError();
6173 }
6174 if (DSAStack->isParentOrderedRegion()) {
6175 Diag(StartLoc, diag::err_omp_parent_cancel_region_ordered) << 0;
6176 return StmtError();
6177 }
6178 return OMPCancellationPointDirective::Create(Context, StartLoc, EndLoc,
6179 CancelRegion);
6180}
6181
Alexey Bataev87933c72015-09-18 08:07:34 +00006182StmtResult Sema::ActOnOpenMPCancelDirective(ArrayRef<OMPClause *> Clauses,
6183 SourceLocation StartLoc,
Alexey Bataev80909872015-07-02 11:25:17 +00006184 SourceLocation EndLoc,
6185 OpenMPDirectiveKind CancelRegion) {
6186 if (CancelRegion != OMPD_parallel && CancelRegion != OMPD_for &&
6187 CancelRegion != OMPD_sections && CancelRegion != OMPD_taskgroup) {
6188 Diag(StartLoc, diag::err_omp_wrong_cancel_region)
6189 << getOpenMPDirectiveName(CancelRegion);
6190 return StmtError();
6191 }
6192 if (DSAStack->isParentNowaitRegion()) {
6193 Diag(StartLoc, diag::err_omp_parent_cancel_region_nowait) << 1;
6194 return StmtError();
6195 }
6196 if (DSAStack->isParentOrderedRegion()) {
6197 Diag(StartLoc, diag::err_omp_parent_cancel_region_ordered) << 1;
6198 return StmtError();
6199 }
Alexey Bataev25e5b442015-09-15 12:52:43 +00006200 DSAStack->setParentCancelRegion(/*Cancel=*/true);
Alexey Bataev87933c72015-09-18 08:07:34 +00006201 return OMPCancelDirective::Create(Context, StartLoc, EndLoc, Clauses,
6202 CancelRegion);
Alexey Bataev80909872015-07-02 11:25:17 +00006203}
6204
Alexey Bataev382967a2015-12-08 12:06:20 +00006205static bool checkGrainsizeNumTasksClauses(Sema &S,
6206 ArrayRef<OMPClause *> Clauses) {
6207 OMPClause *PrevClause = nullptr;
6208 bool ErrorFound = false;
6209 for (auto *C : Clauses) {
6210 if (C->getClauseKind() == OMPC_grainsize ||
6211 C->getClauseKind() == OMPC_num_tasks) {
6212 if (!PrevClause)
6213 PrevClause = C;
6214 else if (PrevClause->getClauseKind() != C->getClauseKind()) {
6215 S.Diag(C->getLocStart(),
6216 diag::err_omp_grainsize_num_tasks_mutually_exclusive)
6217 << getOpenMPClauseName(C->getClauseKind())
6218 << getOpenMPClauseName(PrevClause->getClauseKind());
6219 S.Diag(PrevClause->getLocStart(),
6220 diag::note_omp_previous_grainsize_num_tasks)
6221 << getOpenMPClauseName(PrevClause->getClauseKind());
6222 ErrorFound = true;
6223 }
6224 }
6225 }
6226 return ErrorFound;
6227}
6228
Alexey Bataev49f6e782015-12-01 04:18:41 +00006229StmtResult Sema::ActOnOpenMPTaskLoopDirective(
6230 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
6231 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00006232 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev49f6e782015-12-01 04:18:41 +00006233 if (!AStmt)
6234 return StmtError();
6235
6236 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
6237 OMPLoopDirective::HelperExprs B;
6238 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
6239 // define the nested loops number.
6240 unsigned NestedLoopCount =
6241 CheckOpenMPLoop(OMPD_taskloop, getCollapseNumberExpr(Clauses),
Alexey Bataev0a6ed842015-12-03 09:40:15 +00006242 /*OrderedLoopCountExpr=*/nullptr, AStmt, *this, *DSAStack,
Alexey Bataev49f6e782015-12-01 04:18:41 +00006243 VarsWithImplicitDSA, B);
6244 if (NestedLoopCount == 0)
6245 return StmtError();
6246
6247 assert((CurContext->isDependentContext() || B.builtAll()) &&
6248 "omp for loop exprs were not built");
6249
Alexey Bataev382967a2015-12-08 12:06:20 +00006250 // OpenMP, [2.9.2 taskloop Construct, Restrictions]
6251 // The grainsize clause and num_tasks clause are mutually exclusive and may
6252 // not appear on the same taskloop directive.
6253 if (checkGrainsizeNumTasksClauses(*this, Clauses))
6254 return StmtError();
6255
Alexey Bataev49f6e782015-12-01 04:18:41 +00006256 getCurFunction()->setHasBranchProtectedScope();
6257 return OMPTaskLoopDirective::Create(Context, StartLoc, EndLoc,
6258 NestedLoopCount, Clauses, AStmt, B);
6259}
6260
Alexey Bataev0a6ed842015-12-03 09:40:15 +00006261StmtResult Sema::ActOnOpenMPTaskLoopSimdDirective(
6262 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
6263 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00006264 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev0a6ed842015-12-03 09:40:15 +00006265 if (!AStmt)
6266 return StmtError();
6267
6268 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
6269 OMPLoopDirective::HelperExprs B;
6270 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
6271 // define the nested loops number.
6272 unsigned NestedLoopCount =
6273 CheckOpenMPLoop(OMPD_taskloop_simd, getCollapseNumberExpr(Clauses),
6274 /*OrderedLoopCountExpr=*/nullptr, AStmt, *this, *DSAStack,
6275 VarsWithImplicitDSA, B);
6276 if (NestedLoopCount == 0)
6277 return StmtError();
6278
6279 assert((CurContext->isDependentContext() || B.builtAll()) &&
6280 "omp for loop exprs were not built");
6281
Alexey Bataev5a3af132016-03-29 08:58:54 +00006282 if (!CurContext->isDependentContext()) {
6283 // Finalize the clauses that need pre-built expressions for CodeGen.
6284 for (auto C : Clauses) {
6285 if (auto LC = dyn_cast<OMPLinearClause>(C))
6286 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
6287 B.NumIterations, *this, CurScope))
6288 return StmtError();
6289 }
6290 }
6291
Alexey Bataev382967a2015-12-08 12:06:20 +00006292 // OpenMP, [2.9.2 taskloop Construct, Restrictions]
6293 // The grainsize clause and num_tasks clause are mutually exclusive and may
6294 // not appear on the same taskloop directive.
6295 if (checkGrainsizeNumTasksClauses(*this, Clauses))
6296 return StmtError();
6297
Alexey Bataev0a6ed842015-12-03 09:40:15 +00006298 getCurFunction()->setHasBranchProtectedScope();
6299 return OMPTaskLoopSimdDirective::Create(Context, StartLoc, EndLoc,
6300 NestedLoopCount, Clauses, AStmt, B);
6301}
6302
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00006303StmtResult Sema::ActOnOpenMPDistributeDirective(
6304 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
6305 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00006306 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00006307 if (!AStmt)
6308 return StmtError();
6309
6310 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
6311 OMPLoopDirective::HelperExprs B;
6312 // In presence of clause 'collapse' with number of loops, it will
6313 // define the nested loops number.
6314 unsigned NestedLoopCount =
6315 CheckOpenMPLoop(OMPD_distribute, getCollapseNumberExpr(Clauses),
6316 nullptr /*ordered not a clause on distribute*/, AStmt,
6317 *this, *DSAStack, VarsWithImplicitDSA, B);
6318 if (NestedLoopCount == 0)
6319 return StmtError();
6320
6321 assert((CurContext->isDependentContext() || B.builtAll()) &&
6322 "omp for loop exprs were not built");
6323
6324 getCurFunction()->setHasBranchProtectedScope();
6325 return OMPDistributeDirective::Create(Context, StartLoc, EndLoc,
6326 NestedLoopCount, Clauses, AStmt, B);
6327}
6328
Alexey Bataeved09d242014-05-28 05:53:51 +00006329OMPClause *Sema::ActOnOpenMPSingleExprClause(OpenMPClauseKind Kind, Expr *Expr,
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006330 SourceLocation StartLoc,
6331 SourceLocation LParenLoc,
6332 SourceLocation EndLoc) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00006333 OMPClause *Res = nullptr;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006334 switch (Kind) {
Alexey Bataev3778b602014-07-17 07:32:53 +00006335 case OMPC_final:
6336 Res = ActOnOpenMPFinalClause(Expr, StartLoc, LParenLoc, EndLoc);
6337 break;
Alexey Bataev568a8332014-03-06 06:15:19 +00006338 case OMPC_num_threads:
6339 Res = ActOnOpenMPNumThreadsClause(Expr, StartLoc, LParenLoc, EndLoc);
6340 break;
Alexey Bataev62c87d22014-03-21 04:51:18 +00006341 case OMPC_safelen:
6342 Res = ActOnOpenMPSafelenClause(Expr, StartLoc, LParenLoc, EndLoc);
6343 break;
Alexey Bataev66b15b52015-08-21 11:14:16 +00006344 case OMPC_simdlen:
6345 Res = ActOnOpenMPSimdlenClause(Expr, StartLoc, LParenLoc, EndLoc);
6346 break;
Alexander Musman8bd31e62014-05-27 15:12:19 +00006347 case OMPC_collapse:
6348 Res = ActOnOpenMPCollapseClause(Expr, StartLoc, LParenLoc, EndLoc);
6349 break;
Alexey Bataev10e775f2015-07-30 11:36:16 +00006350 case OMPC_ordered:
6351 Res = ActOnOpenMPOrderedClause(StartLoc, EndLoc, LParenLoc, Expr);
6352 break;
Michael Wonge710d542015-08-07 16:16:36 +00006353 case OMPC_device:
6354 Res = ActOnOpenMPDeviceClause(Expr, StartLoc, LParenLoc, EndLoc);
6355 break;
Kelvin Li099bb8c2015-11-24 20:50:12 +00006356 case OMPC_num_teams:
6357 Res = ActOnOpenMPNumTeamsClause(Expr, StartLoc, LParenLoc, EndLoc);
6358 break;
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006359 case OMPC_thread_limit:
6360 Res = ActOnOpenMPThreadLimitClause(Expr, StartLoc, LParenLoc, EndLoc);
6361 break;
Alexey Bataeva0569352015-12-01 10:17:31 +00006362 case OMPC_priority:
6363 Res = ActOnOpenMPPriorityClause(Expr, StartLoc, LParenLoc, EndLoc);
6364 break;
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00006365 case OMPC_grainsize:
6366 Res = ActOnOpenMPGrainsizeClause(Expr, StartLoc, LParenLoc, EndLoc);
6367 break;
Alexey Bataev382967a2015-12-08 12:06:20 +00006368 case OMPC_num_tasks:
6369 Res = ActOnOpenMPNumTasksClause(Expr, StartLoc, LParenLoc, EndLoc);
6370 break;
Alexey Bataev28c75412015-12-15 08:19:24 +00006371 case OMPC_hint:
6372 Res = ActOnOpenMPHintClause(Expr, StartLoc, LParenLoc, EndLoc);
6373 break;
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006374 case OMPC_if:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006375 case OMPC_default:
Alexey Bataevbcbadb62014-05-06 06:04:14 +00006376 case OMPC_proc_bind:
Alexey Bataev56dafe82014-06-20 07:16:17 +00006377 case OMPC_schedule:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006378 case OMPC_private:
6379 case OMPC_firstprivate:
Alexander Musman1bb328c2014-06-04 13:06:39 +00006380 case OMPC_lastprivate:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006381 case OMPC_shared:
Alexey Bataevc5e02582014-06-16 07:08:35 +00006382 case OMPC_reduction:
Alexander Musman8dba6642014-04-22 13:09:42 +00006383 case OMPC_linear:
Alexander Musmanf0d76e72014-05-29 14:36:25 +00006384 case OMPC_aligned:
Alexey Bataevd48bcd82014-03-31 03:36:38 +00006385 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00006386 case OMPC_copyprivate:
Alexey Bataev236070f2014-06-20 11:19:47 +00006387 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00006388 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00006389 case OMPC_mergeable:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006390 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00006391 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00006392 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00006393 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00006394 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00006395 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00006396 case OMPC_seq_cst:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00006397 case OMPC_depend:
Alexey Bataev346265e2015-09-25 10:37:12 +00006398 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00006399 case OMPC_simd:
Kelvin Li0bff7af2015-11-23 05:32:03 +00006400 case OMPC_map:
Alexey Bataevb825de12015-12-07 10:51:44 +00006401 case OMPC_nogroup:
Carlo Bertollib4adf552016-01-15 18:50:31 +00006402 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00006403 case OMPC_defaultmap:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006404 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00006405 case OMPC_uniform:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006406 llvm_unreachable("Clause is not allowed.");
6407 }
6408 return Res;
6409}
6410
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006411OMPClause *Sema::ActOnOpenMPIfClause(OpenMPDirectiveKind NameModifier,
6412 Expr *Condition, SourceLocation StartLoc,
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006413 SourceLocation LParenLoc,
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006414 SourceLocation NameModifierLoc,
6415 SourceLocation ColonLoc,
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006416 SourceLocation EndLoc) {
6417 Expr *ValExpr = Condition;
6418 if (!Condition->isValueDependent() && !Condition->isTypeDependent() &&
6419 !Condition->isInstantiationDependent() &&
6420 !Condition->containsUnexpandedParameterPack()) {
6421 ExprResult Val = ActOnBooleanCondition(DSAStack->getCurScope(),
Alexey Bataeved09d242014-05-28 05:53:51 +00006422 Condition->getExprLoc(), Condition);
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006423 if (Val.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00006424 return nullptr;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006425
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006426 ValExpr = Val.get();
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006427 }
6428
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006429 return new (Context) OMPIfClause(NameModifier, ValExpr, StartLoc, LParenLoc,
6430 NameModifierLoc, ColonLoc, EndLoc);
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006431}
6432
Alexey Bataev3778b602014-07-17 07:32:53 +00006433OMPClause *Sema::ActOnOpenMPFinalClause(Expr *Condition,
6434 SourceLocation StartLoc,
6435 SourceLocation LParenLoc,
6436 SourceLocation EndLoc) {
6437 Expr *ValExpr = Condition;
6438 if (!Condition->isValueDependent() && !Condition->isTypeDependent() &&
6439 !Condition->isInstantiationDependent() &&
6440 !Condition->containsUnexpandedParameterPack()) {
6441 ExprResult Val = ActOnBooleanCondition(DSAStack->getCurScope(),
6442 Condition->getExprLoc(), Condition);
6443 if (Val.isInvalid())
6444 return nullptr;
6445
6446 ValExpr = Val.get();
6447 }
6448
6449 return new (Context) OMPFinalClause(ValExpr, StartLoc, LParenLoc, EndLoc);
6450}
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00006451ExprResult Sema::PerformOpenMPImplicitIntegerConversion(SourceLocation Loc,
6452 Expr *Op) {
Alexey Bataev568a8332014-03-06 06:15:19 +00006453 if (!Op)
6454 return ExprError();
6455
6456 class IntConvertDiagnoser : public ICEConvertDiagnoser {
6457 public:
6458 IntConvertDiagnoser()
Alexey Bataeved09d242014-05-28 05:53:51 +00006459 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/ false, false, true) {}
Craig Toppere14c0f82014-03-12 04:55:44 +00006460 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
6461 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00006462 return S.Diag(Loc, diag::err_omp_not_integral) << T;
6463 }
Alexey Bataeved09d242014-05-28 05:53:51 +00006464 SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc,
6465 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00006466 return S.Diag(Loc, diag::err_omp_incomplete_type) << T;
6467 }
Alexey Bataeved09d242014-05-28 05:53:51 +00006468 SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc,
6469 QualType T,
6470 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00006471 return S.Diag(Loc, diag::err_omp_explicit_conversion) << T << ConvTy;
6472 }
Alexey Bataeved09d242014-05-28 05:53:51 +00006473 SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
6474 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00006475 return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
Alexey Bataeved09d242014-05-28 05:53:51 +00006476 << ConvTy->isEnumeralType() << ConvTy;
Alexey Bataev568a8332014-03-06 06:15:19 +00006477 }
Alexey Bataeved09d242014-05-28 05:53:51 +00006478 SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
6479 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00006480 return S.Diag(Loc, diag::err_omp_ambiguous_conversion) << T;
6481 }
Alexey Bataeved09d242014-05-28 05:53:51 +00006482 SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
6483 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00006484 return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
Alexey Bataeved09d242014-05-28 05:53:51 +00006485 << ConvTy->isEnumeralType() << ConvTy;
Alexey Bataev568a8332014-03-06 06:15:19 +00006486 }
Alexey Bataeved09d242014-05-28 05:53:51 +00006487 SemaDiagnosticBuilder diagnoseConversion(Sema &, SourceLocation, QualType,
6488 QualType) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00006489 llvm_unreachable("conversion functions are permitted");
6490 }
6491 } ConvertDiagnoser;
6492 return PerformContextualImplicitConversion(Loc, Op, ConvertDiagnoser);
6493}
6494
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006495static bool IsNonNegativeIntegerValue(Expr *&ValExpr, Sema &SemaRef,
Alexey Bataeva0569352015-12-01 10:17:31 +00006496 OpenMPClauseKind CKind,
6497 bool StrictlyPositive) {
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006498 if (!ValExpr->isTypeDependent() && !ValExpr->isValueDependent() &&
6499 !ValExpr->isInstantiationDependent()) {
6500 SourceLocation Loc = ValExpr->getExprLoc();
6501 ExprResult Value =
6502 SemaRef.PerformOpenMPImplicitIntegerConversion(Loc, ValExpr);
6503 if (Value.isInvalid())
6504 return false;
6505
6506 ValExpr = Value.get();
6507 // The expression must evaluate to a non-negative integer value.
6508 llvm::APSInt Result;
6509 if (ValExpr->isIntegerConstantExpr(Result, SemaRef.Context) &&
Alexey Bataeva0569352015-12-01 10:17:31 +00006510 Result.isSigned() &&
6511 !((!StrictlyPositive && Result.isNonNegative()) ||
6512 (StrictlyPositive && Result.isStrictlyPositive()))) {
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006513 SemaRef.Diag(Loc, diag::err_omp_negative_expression_in_clause)
Alexey Bataeva0569352015-12-01 10:17:31 +00006514 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0)
6515 << ValExpr->getSourceRange();
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006516 return false;
6517 }
6518 }
6519 return true;
6520}
6521
Alexey Bataev568a8332014-03-06 06:15:19 +00006522OMPClause *Sema::ActOnOpenMPNumThreadsClause(Expr *NumThreads,
6523 SourceLocation StartLoc,
6524 SourceLocation LParenLoc,
6525 SourceLocation EndLoc) {
6526 Expr *ValExpr = NumThreads;
Alexey Bataev568a8332014-03-06 06:15:19 +00006527
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006528 // OpenMP [2.5, Restrictions]
6529 // The num_threads expression must evaluate to a positive integer value.
Alexey Bataeva0569352015-12-01 10:17:31 +00006530 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_num_threads,
6531 /*StrictlyPositive=*/true))
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006532 return nullptr;
Alexey Bataev568a8332014-03-06 06:15:19 +00006533
Alexey Bataeved09d242014-05-28 05:53:51 +00006534 return new (Context)
6535 OMPNumThreadsClause(ValExpr, StartLoc, LParenLoc, EndLoc);
Alexey Bataev568a8332014-03-06 06:15:19 +00006536}
6537
Alexey Bataev62c87d22014-03-21 04:51:18 +00006538ExprResult Sema::VerifyPositiveIntegerConstantInClause(Expr *E,
Alexey Bataeva636c7f2015-12-23 10:27:45 +00006539 OpenMPClauseKind CKind,
6540 bool StrictlyPositive) {
Alexey Bataev62c87d22014-03-21 04:51:18 +00006541 if (!E)
6542 return ExprError();
6543 if (E->isValueDependent() || E->isTypeDependent() ||
6544 E->isInstantiationDependent() || E->containsUnexpandedParameterPack())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006545 return E;
Alexey Bataev62c87d22014-03-21 04:51:18 +00006546 llvm::APSInt Result;
6547 ExprResult ICE = VerifyIntegerConstantExpression(E, &Result);
6548 if (ICE.isInvalid())
6549 return ExprError();
Alexey Bataeva636c7f2015-12-23 10:27:45 +00006550 if ((StrictlyPositive && !Result.isStrictlyPositive()) ||
6551 (!StrictlyPositive && !Result.isNonNegative())) {
Alexey Bataev62c87d22014-03-21 04:51:18 +00006552 Diag(E->getExprLoc(), diag::err_omp_negative_expression_in_clause)
Alexey Bataeva636c7f2015-12-23 10:27:45 +00006553 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0)
6554 << E->getSourceRange();
Alexey Bataev62c87d22014-03-21 04:51:18 +00006555 return ExprError();
6556 }
Alexander Musman09184fe2014-09-30 05:29:28 +00006557 if (CKind == OMPC_aligned && !Result.isPowerOf2()) {
6558 Diag(E->getExprLoc(), diag::warn_omp_alignment_not_power_of_two)
6559 << E->getSourceRange();
6560 return ExprError();
6561 }
Alexey Bataeva636c7f2015-12-23 10:27:45 +00006562 if (CKind == OMPC_collapse && DSAStack->getAssociatedLoops() == 1)
6563 DSAStack->setAssociatedLoops(Result.getExtValue());
Alexey Bataev7b6bc882015-11-26 07:50:39 +00006564 else if (CKind == OMPC_ordered)
Alexey Bataeva636c7f2015-12-23 10:27:45 +00006565 DSAStack->setAssociatedLoops(Result.getExtValue());
Alexey Bataev62c87d22014-03-21 04:51:18 +00006566 return ICE;
6567}
6568
6569OMPClause *Sema::ActOnOpenMPSafelenClause(Expr *Len, SourceLocation StartLoc,
6570 SourceLocation LParenLoc,
6571 SourceLocation EndLoc) {
6572 // OpenMP [2.8.1, simd construct, Description]
6573 // The parameter of the safelen clause must be a constant
6574 // positive integer expression.
6575 ExprResult Safelen = VerifyPositiveIntegerConstantInClause(Len, OMPC_safelen);
6576 if (Safelen.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00006577 return nullptr;
Alexey Bataev62c87d22014-03-21 04:51:18 +00006578 return new (Context)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006579 OMPSafelenClause(Safelen.get(), StartLoc, LParenLoc, EndLoc);
Alexey Bataev62c87d22014-03-21 04:51:18 +00006580}
6581
Alexey Bataev66b15b52015-08-21 11:14:16 +00006582OMPClause *Sema::ActOnOpenMPSimdlenClause(Expr *Len, SourceLocation StartLoc,
6583 SourceLocation LParenLoc,
6584 SourceLocation EndLoc) {
6585 // OpenMP [2.8.1, simd construct, Description]
6586 // The parameter of the simdlen clause must be a constant
6587 // positive integer expression.
6588 ExprResult Simdlen = VerifyPositiveIntegerConstantInClause(Len, OMPC_simdlen);
6589 if (Simdlen.isInvalid())
6590 return nullptr;
6591 return new (Context)
6592 OMPSimdlenClause(Simdlen.get(), StartLoc, LParenLoc, EndLoc);
6593}
6594
Alexander Musman64d33f12014-06-04 07:53:32 +00006595OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops,
6596 SourceLocation StartLoc,
Alexander Musman8bd31e62014-05-27 15:12:19 +00006597 SourceLocation LParenLoc,
6598 SourceLocation EndLoc) {
Alexander Musman64d33f12014-06-04 07:53:32 +00006599 // OpenMP [2.7.1, loop construct, Description]
Alexander Musman8bd31e62014-05-27 15:12:19 +00006600 // OpenMP [2.8.1, simd construct, Description]
Alexander Musman64d33f12014-06-04 07:53:32 +00006601 // OpenMP [2.9.6, distribute construct, Description]
Alexander Musman8bd31e62014-05-27 15:12:19 +00006602 // The parameter of the collapse clause must be a constant
6603 // positive integer expression.
Alexander Musman64d33f12014-06-04 07:53:32 +00006604 ExprResult NumForLoopsResult =
6605 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse);
6606 if (NumForLoopsResult.isInvalid())
Alexander Musman8bd31e62014-05-27 15:12:19 +00006607 return nullptr;
6608 return new (Context)
Alexander Musman64d33f12014-06-04 07:53:32 +00006609 OMPCollapseClause(NumForLoopsResult.get(), StartLoc, LParenLoc, EndLoc);
Alexander Musman8bd31e62014-05-27 15:12:19 +00006610}
6611
Alexey Bataev10e775f2015-07-30 11:36:16 +00006612OMPClause *Sema::ActOnOpenMPOrderedClause(SourceLocation StartLoc,
6613 SourceLocation EndLoc,
6614 SourceLocation LParenLoc,
6615 Expr *NumForLoops) {
Alexey Bataev10e775f2015-07-30 11:36:16 +00006616 // OpenMP [2.7.1, loop construct, Description]
6617 // OpenMP [2.8.1, simd construct, Description]
6618 // OpenMP [2.9.6, distribute construct, Description]
6619 // The parameter of the ordered clause must be a constant
6620 // positive integer expression if any.
6621 if (NumForLoops && LParenLoc.isValid()) {
6622 ExprResult NumForLoopsResult =
6623 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered);
6624 if (NumForLoopsResult.isInvalid())
6625 return nullptr;
6626 NumForLoops = NumForLoopsResult.get();
Alexey Bataev346265e2015-09-25 10:37:12 +00006627 } else
6628 NumForLoops = nullptr;
6629 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops);
Alexey Bataev10e775f2015-07-30 11:36:16 +00006630 return new (Context)
6631 OMPOrderedClause(NumForLoops, StartLoc, LParenLoc, EndLoc);
6632}
6633
Alexey Bataeved09d242014-05-28 05:53:51 +00006634OMPClause *Sema::ActOnOpenMPSimpleClause(
6635 OpenMPClauseKind Kind, unsigned Argument, SourceLocation ArgumentLoc,
6636 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00006637 OMPClause *Res = nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006638 switch (Kind) {
6639 case OMPC_default:
Alexey Bataev758e55e2013-09-06 18:03:48 +00006640 Res =
Alexey Bataeved09d242014-05-28 05:53:51 +00006641 ActOnOpenMPDefaultClause(static_cast<OpenMPDefaultClauseKind>(Argument),
6642 ArgumentLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006643 break;
Alexey Bataevbcbadb62014-05-06 06:04:14 +00006644 case OMPC_proc_bind:
Alexey Bataeved09d242014-05-28 05:53:51 +00006645 Res = ActOnOpenMPProcBindClause(
6646 static_cast<OpenMPProcBindClauseKind>(Argument), ArgumentLoc, StartLoc,
6647 LParenLoc, EndLoc);
Alexey Bataevbcbadb62014-05-06 06:04:14 +00006648 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006649 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00006650 case OMPC_final:
Alexey Bataev568a8332014-03-06 06:15:19 +00006651 case OMPC_num_threads:
Alexey Bataev62c87d22014-03-21 04:51:18 +00006652 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00006653 case OMPC_simdlen:
Alexander Musman8bd31e62014-05-27 15:12:19 +00006654 case OMPC_collapse:
Alexey Bataev56dafe82014-06-20 07:16:17 +00006655 case OMPC_schedule:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006656 case OMPC_private:
Alexey Bataevd5af8e42013-10-01 05:32:34 +00006657 case OMPC_firstprivate:
Alexander Musman1bb328c2014-06-04 13:06:39 +00006658 case OMPC_lastprivate:
Alexey Bataev758e55e2013-09-06 18:03:48 +00006659 case OMPC_shared:
Alexey Bataevc5e02582014-06-16 07:08:35 +00006660 case OMPC_reduction:
Alexander Musman8dba6642014-04-22 13:09:42 +00006661 case OMPC_linear:
Alexander Musmanf0d76e72014-05-29 14:36:25 +00006662 case OMPC_aligned:
Alexey Bataevd48bcd82014-03-31 03:36:38 +00006663 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00006664 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00006665 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00006666 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00006667 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00006668 case OMPC_mergeable:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006669 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00006670 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00006671 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00006672 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00006673 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00006674 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00006675 case OMPC_seq_cst:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00006676 case OMPC_depend:
Michael Wonge710d542015-08-07 16:16:36 +00006677 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +00006678 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00006679 case OMPC_simd:
Kelvin Li0bff7af2015-11-23 05:32:03 +00006680 case OMPC_map:
Kelvin Li099bb8c2015-11-24 20:50:12 +00006681 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006682 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00006683 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00006684 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +00006685 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +00006686 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00006687 case OMPC_hint:
Carlo Bertollib4adf552016-01-15 18:50:31 +00006688 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00006689 case OMPC_defaultmap:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006690 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00006691 case OMPC_uniform:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006692 llvm_unreachable("Clause is not allowed.");
6693 }
6694 return Res;
6695}
6696
Alexey Bataev6402bca2015-12-28 07:25:51 +00006697static std::string
6698getListOfPossibleValues(OpenMPClauseKind K, unsigned First, unsigned Last,
6699 ArrayRef<unsigned> Exclude = llvm::None) {
6700 std::string Values;
6701 unsigned Bound = Last >= 2 ? Last - 2 : 0;
6702 unsigned Skipped = Exclude.size();
6703 auto S = Exclude.begin(), E = Exclude.end();
6704 for (unsigned i = First; i < Last; ++i) {
6705 if (std::find(S, E, i) != E) {
6706 --Skipped;
6707 continue;
6708 }
6709 Values += "'";
6710 Values += getOpenMPSimpleClauseTypeName(K, i);
6711 Values += "'";
6712 if (i == Bound - Skipped)
6713 Values += " or ";
6714 else if (i != Bound + 1 - Skipped)
6715 Values += ", ";
6716 }
6717 return Values;
6718}
6719
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006720OMPClause *Sema::ActOnOpenMPDefaultClause(OpenMPDefaultClauseKind Kind,
6721 SourceLocation KindKwLoc,
6722 SourceLocation StartLoc,
6723 SourceLocation LParenLoc,
6724 SourceLocation EndLoc) {
6725 if (Kind == OMPC_DEFAULT_unknown) {
Alexey Bataev4ca40ed2014-05-12 04:23:46 +00006726 static_assert(OMPC_DEFAULT_unknown > 0,
6727 "OMPC_DEFAULT_unknown not greater than 0");
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006728 Diag(KindKwLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataev6402bca2015-12-28 07:25:51 +00006729 << getListOfPossibleValues(OMPC_default, /*First=*/0,
6730 /*Last=*/OMPC_DEFAULT_unknown)
6731 << getOpenMPClauseName(OMPC_default);
Alexander Musmancb7f9c42014-05-15 13:04:49 +00006732 return nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006733 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00006734 switch (Kind) {
6735 case OMPC_DEFAULT_none:
Alexey Bataevbae9a792014-06-27 10:37:06 +00006736 DSAStack->setDefaultDSANone(KindKwLoc);
Alexey Bataev758e55e2013-09-06 18:03:48 +00006737 break;
6738 case OMPC_DEFAULT_shared:
Alexey Bataevbae9a792014-06-27 10:37:06 +00006739 DSAStack->setDefaultDSAShared(KindKwLoc);
Alexey Bataev758e55e2013-09-06 18:03:48 +00006740 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006741 case OMPC_DEFAULT_unknown:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00006742 llvm_unreachable("Clause kind is not allowed.");
Alexey Bataev758e55e2013-09-06 18:03:48 +00006743 break;
6744 }
Alexey Bataeved09d242014-05-28 05:53:51 +00006745 return new (Context)
6746 OMPDefaultClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00006747}
6748
Alexey Bataevbcbadb62014-05-06 06:04:14 +00006749OMPClause *Sema::ActOnOpenMPProcBindClause(OpenMPProcBindClauseKind Kind,
6750 SourceLocation KindKwLoc,
6751 SourceLocation StartLoc,
6752 SourceLocation LParenLoc,
6753 SourceLocation EndLoc) {
6754 if (Kind == OMPC_PROC_BIND_unknown) {
Alexey Bataevbcbadb62014-05-06 06:04:14 +00006755 Diag(KindKwLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataev6402bca2015-12-28 07:25:51 +00006756 << getListOfPossibleValues(OMPC_proc_bind, /*First=*/0,
6757 /*Last=*/OMPC_PROC_BIND_unknown)
6758 << getOpenMPClauseName(OMPC_proc_bind);
Alexander Musmancb7f9c42014-05-15 13:04:49 +00006759 return nullptr;
Alexey Bataevbcbadb62014-05-06 06:04:14 +00006760 }
Alexey Bataeved09d242014-05-28 05:53:51 +00006761 return new (Context)
6762 OMPProcBindClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataevbcbadb62014-05-06 06:04:14 +00006763}
6764
Alexey Bataev56dafe82014-06-20 07:16:17 +00006765OMPClause *Sema::ActOnOpenMPSingleExprWithArgClause(
Alexey Bataev6402bca2015-12-28 07:25:51 +00006766 OpenMPClauseKind Kind, ArrayRef<unsigned> Argument, Expr *Expr,
Alexey Bataev56dafe82014-06-20 07:16:17 +00006767 SourceLocation StartLoc, SourceLocation LParenLoc,
Alexey Bataev6402bca2015-12-28 07:25:51 +00006768 ArrayRef<SourceLocation> ArgumentLoc, SourceLocation DelimLoc,
Alexey Bataev56dafe82014-06-20 07:16:17 +00006769 SourceLocation EndLoc) {
6770 OMPClause *Res = nullptr;
6771 switch (Kind) {
6772 case OMPC_schedule:
Alexey Bataev6402bca2015-12-28 07:25:51 +00006773 enum { Modifier1, Modifier2, ScheduleKind, NumberOfElements };
6774 assert(Argument.size() == NumberOfElements &&
6775 ArgumentLoc.size() == NumberOfElements);
Alexey Bataev56dafe82014-06-20 07:16:17 +00006776 Res = ActOnOpenMPScheduleClause(
Alexey Bataev6402bca2015-12-28 07:25:51 +00006777 static_cast<OpenMPScheduleClauseModifier>(Argument[Modifier1]),
6778 static_cast<OpenMPScheduleClauseModifier>(Argument[Modifier2]),
6779 static_cast<OpenMPScheduleClauseKind>(Argument[ScheduleKind]), Expr,
6780 StartLoc, LParenLoc, ArgumentLoc[Modifier1], ArgumentLoc[Modifier2],
6781 ArgumentLoc[ScheduleKind], DelimLoc, EndLoc);
Alexey Bataev56dafe82014-06-20 07:16:17 +00006782 break;
6783 case OMPC_if:
Alexey Bataev6402bca2015-12-28 07:25:51 +00006784 assert(Argument.size() == 1 && ArgumentLoc.size() == 1);
6785 Res = ActOnOpenMPIfClause(static_cast<OpenMPDirectiveKind>(Argument.back()),
6786 Expr, StartLoc, LParenLoc, ArgumentLoc.back(),
6787 DelimLoc, EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006788 break;
Carlo Bertollib4adf552016-01-15 18:50:31 +00006789 case OMPC_dist_schedule:
6790 Res = ActOnOpenMPDistScheduleClause(
6791 static_cast<OpenMPDistScheduleClauseKind>(Argument.back()), Expr,
6792 StartLoc, LParenLoc, ArgumentLoc.back(), DelimLoc, EndLoc);
6793 break;
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00006794 case OMPC_defaultmap:
6795 enum { Modifier, DefaultmapKind };
6796 Res = ActOnOpenMPDefaultmapClause(
6797 static_cast<OpenMPDefaultmapClauseModifier>(Argument[Modifier]),
6798 static_cast<OpenMPDefaultmapClauseKind>(Argument[DefaultmapKind]),
6799 StartLoc, LParenLoc, ArgumentLoc[Modifier],
6800 ArgumentLoc[DefaultmapKind], EndLoc);
6801 break;
Alexey Bataev3778b602014-07-17 07:32:53 +00006802 case OMPC_final:
Alexey Bataev56dafe82014-06-20 07:16:17 +00006803 case OMPC_num_threads:
6804 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00006805 case OMPC_simdlen:
Alexey Bataev56dafe82014-06-20 07:16:17 +00006806 case OMPC_collapse:
6807 case OMPC_default:
6808 case OMPC_proc_bind:
6809 case OMPC_private:
6810 case OMPC_firstprivate:
6811 case OMPC_lastprivate:
6812 case OMPC_shared:
6813 case OMPC_reduction:
6814 case OMPC_linear:
6815 case OMPC_aligned:
6816 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00006817 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00006818 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00006819 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00006820 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00006821 case OMPC_mergeable:
Alexey Bataev56dafe82014-06-20 07:16:17 +00006822 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00006823 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00006824 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00006825 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00006826 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00006827 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00006828 case OMPC_seq_cst:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00006829 case OMPC_depend:
Michael Wonge710d542015-08-07 16:16:36 +00006830 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +00006831 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00006832 case OMPC_simd:
Kelvin Li0bff7af2015-11-23 05:32:03 +00006833 case OMPC_map:
Kelvin Li099bb8c2015-11-24 20:50:12 +00006834 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00006835 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00006836 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00006837 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +00006838 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +00006839 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00006840 case OMPC_hint:
Alexey Bataev56dafe82014-06-20 07:16:17 +00006841 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00006842 case OMPC_uniform:
Alexey Bataev56dafe82014-06-20 07:16:17 +00006843 llvm_unreachable("Clause is not allowed.");
6844 }
6845 return Res;
6846}
6847
Alexey Bataev6402bca2015-12-28 07:25:51 +00006848static bool checkScheduleModifiers(Sema &S, OpenMPScheduleClauseModifier M1,
6849 OpenMPScheduleClauseModifier M2,
6850 SourceLocation M1Loc, SourceLocation M2Loc) {
6851 if (M1 == OMPC_SCHEDULE_MODIFIER_unknown && M1Loc.isValid()) {
6852 SmallVector<unsigned, 2> Excluded;
6853 if (M2 != OMPC_SCHEDULE_MODIFIER_unknown)
6854 Excluded.push_back(M2);
6855 if (M2 == OMPC_SCHEDULE_MODIFIER_nonmonotonic)
6856 Excluded.push_back(OMPC_SCHEDULE_MODIFIER_monotonic);
6857 if (M2 == OMPC_SCHEDULE_MODIFIER_monotonic)
6858 Excluded.push_back(OMPC_SCHEDULE_MODIFIER_nonmonotonic);
6859 S.Diag(M1Loc, diag::err_omp_unexpected_clause_value)
6860 << getListOfPossibleValues(OMPC_schedule,
6861 /*First=*/OMPC_SCHEDULE_MODIFIER_unknown + 1,
6862 /*Last=*/OMPC_SCHEDULE_MODIFIER_last,
6863 Excluded)
6864 << getOpenMPClauseName(OMPC_schedule);
6865 return true;
6866 }
6867 return false;
6868}
6869
Alexey Bataev56dafe82014-06-20 07:16:17 +00006870OMPClause *Sema::ActOnOpenMPScheduleClause(
Alexey Bataev6402bca2015-12-28 07:25:51 +00006871 OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2,
Alexey Bataev56dafe82014-06-20 07:16:17 +00006872 OpenMPScheduleClauseKind Kind, Expr *ChunkSize, SourceLocation StartLoc,
Alexey Bataev6402bca2015-12-28 07:25:51 +00006873 SourceLocation LParenLoc, SourceLocation M1Loc, SourceLocation M2Loc,
6874 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) {
6875 if (checkScheduleModifiers(*this, M1, M2, M1Loc, M2Loc) ||
6876 checkScheduleModifiers(*this, M2, M1, M2Loc, M1Loc))
6877 return nullptr;
6878 // OpenMP, 2.7.1, Loop Construct, Restrictions
6879 // Either the monotonic modifier or the nonmonotonic modifier can be specified
6880 // but not both.
6881 if ((M1 == M2 && M1 != OMPC_SCHEDULE_MODIFIER_unknown) ||
6882 (M1 == OMPC_SCHEDULE_MODIFIER_monotonic &&
6883 M2 == OMPC_SCHEDULE_MODIFIER_nonmonotonic) ||
6884 (M1 == OMPC_SCHEDULE_MODIFIER_nonmonotonic &&
6885 M2 == OMPC_SCHEDULE_MODIFIER_monotonic)) {
6886 Diag(M2Loc, diag::err_omp_unexpected_schedule_modifier)
6887 << getOpenMPSimpleClauseTypeName(OMPC_schedule, M2)
6888 << getOpenMPSimpleClauseTypeName(OMPC_schedule, M1);
6889 return nullptr;
6890 }
Alexey Bataev56dafe82014-06-20 07:16:17 +00006891 if (Kind == OMPC_SCHEDULE_unknown) {
6892 std::string Values;
Alexey Bataev6402bca2015-12-28 07:25:51 +00006893 if (M1Loc.isInvalid() && M2Loc.isInvalid()) {
6894 unsigned Exclude[] = {OMPC_SCHEDULE_unknown};
6895 Values = getListOfPossibleValues(OMPC_schedule, /*First=*/0,
6896 /*Last=*/OMPC_SCHEDULE_MODIFIER_last,
6897 Exclude);
6898 } else {
6899 Values = getListOfPossibleValues(OMPC_schedule, /*First=*/0,
6900 /*Last=*/OMPC_SCHEDULE_unknown);
Alexey Bataev56dafe82014-06-20 07:16:17 +00006901 }
6902 Diag(KindLoc, diag::err_omp_unexpected_clause_value)
6903 << Values << getOpenMPClauseName(OMPC_schedule);
6904 return nullptr;
6905 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00006906 // OpenMP, 2.7.1, Loop Construct, Restrictions
6907 // The nonmonotonic modifier can only be specified with schedule(dynamic) or
6908 // schedule(guided).
6909 if ((M1 == OMPC_SCHEDULE_MODIFIER_nonmonotonic ||
6910 M2 == OMPC_SCHEDULE_MODIFIER_nonmonotonic) &&
6911 Kind != OMPC_SCHEDULE_dynamic && Kind != OMPC_SCHEDULE_guided) {
6912 Diag(M1 == OMPC_SCHEDULE_MODIFIER_nonmonotonic ? M1Loc : M2Loc,
6913 diag::err_omp_schedule_nonmonotonic_static);
6914 return nullptr;
6915 }
Alexey Bataev56dafe82014-06-20 07:16:17 +00006916 Expr *ValExpr = ChunkSize;
Alexey Bataev3392d762016-02-16 11:18:12 +00006917 Stmt *HelperValStmt = nullptr;
Alexey Bataev56dafe82014-06-20 07:16:17 +00006918 if (ChunkSize) {
6919 if (!ChunkSize->isValueDependent() && !ChunkSize->isTypeDependent() &&
6920 !ChunkSize->isInstantiationDependent() &&
6921 !ChunkSize->containsUnexpandedParameterPack()) {
6922 SourceLocation ChunkSizeLoc = ChunkSize->getLocStart();
6923 ExprResult Val =
6924 PerformOpenMPImplicitIntegerConversion(ChunkSizeLoc, ChunkSize);
6925 if (Val.isInvalid())
6926 return nullptr;
6927
6928 ValExpr = Val.get();
6929
6930 // OpenMP [2.7.1, Restrictions]
6931 // chunk_size must be a loop invariant integer expression with a positive
6932 // value.
6933 llvm::APSInt Result;
Alexey Bataev040d5402015-05-12 08:35:28 +00006934 if (ValExpr->isIntegerConstantExpr(Result, Context)) {
6935 if (Result.isSigned() && !Result.isStrictlyPositive()) {
6936 Diag(ChunkSizeLoc, diag::err_omp_negative_expression_in_clause)
Alexey Bataeva0569352015-12-01 10:17:31 +00006937 << "schedule" << 1 << ChunkSize->getSourceRange();
Alexey Bataev040d5402015-05-12 08:35:28 +00006938 return nullptr;
6939 }
6940 } else if (isParallelOrTaskRegion(DSAStack->getCurrentDirective())) {
Alexey Bataev5a3af132016-03-29 08:58:54 +00006941 llvm::MapVector<Expr *, DeclRefExpr *> Captures;
6942 ValExpr = tryBuildCapture(*this, ValExpr, Captures).get();
6943 HelperValStmt = buildPreInits(Context, Captures);
Alexey Bataev56dafe82014-06-20 07:16:17 +00006944 }
6945 }
6946 }
6947
Alexey Bataev6402bca2015-12-28 07:25:51 +00006948 return new (Context)
6949 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind,
Alexey Bataev3392d762016-02-16 11:18:12 +00006950 ValExpr, HelperValStmt, M1, M1Loc, M2, M2Loc);
Alexey Bataev56dafe82014-06-20 07:16:17 +00006951}
6952
Alexey Bataev142e1fc2014-06-20 09:44:06 +00006953OMPClause *Sema::ActOnOpenMPClause(OpenMPClauseKind Kind,
6954 SourceLocation StartLoc,
6955 SourceLocation EndLoc) {
6956 OMPClause *Res = nullptr;
6957 switch (Kind) {
6958 case OMPC_ordered:
6959 Res = ActOnOpenMPOrderedClause(StartLoc, EndLoc);
6960 break;
Alexey Bataev236070f2014-06-20 11:19:47 +00006961 case OMPC_nowait:
6962 Res = ActOnOpenMPNowaitClause(StartLoc, EndLoc);
6963 break;
Alexey Bataev7aea99a2014-07-17 12:19:31 +00006964 case OMPC_untied:
6965 Res = ActOnOpenMPUntiedClause(StartLoc, EndLoc);
6966 break;
Alexey Bataev74ba3a52014-07-17 12:47:03 +00006967 case OMPC_mergeable:
6968 Res = ActOnOpenMPMergeableClause(StartLoc, EndLoc);
6969 break;
Alexey Bataevf98b00c2014-07-23 02:27:21 +00006970 case OMPC_read:
6971 Res = ActOnOpenMPReadClause(StartLoc, EndLoc);
6972 break;
Alexey Bataevdea47612014-07-23 07:46:59 +00006973 case OMPC_write:
6974 Res = ActOnOpenMPWriteClause(StartLoc, EndLoc);
6975 break;
Alexey Bataev67a4f222014-07-23 10:25:33 +00006976 case OMPC_update:
6977 Res = ActOnOpenMPUpdateClause(StartLoc, EndLoc);
6978 break;
Alexey Bataev459dec02014-07-24 06:46:57 +00006979 case OMPC_capture:
6980 Res = ActOnOpenMPCaptureClause(StartLoc, EndLoc);
6981 break;
Alexey Bataev82bad8b2014-07-24 08:55:34 +00006982 case OMPC_seq_cst:
6983 Res = ActOnOpenMPSeqCstClause(StartLoc, EndLoc);
6984 break;
Alexey Bataev346265e2015-09-25 10:37:12 +00006985 case OMPC_threads:
6986 Res = ActOnOpenMPThreadsClause(StartLoc, EndLoc);
6987 break;
Alexey Bataevd14d1e62015-09-28 06:39:35 +00006988 case OMPC_simd:
6989 Res = ActOnOpenMPSIMDClause(StartLoc, EndLoc);
6990 break;
Alexey Bataevb825de12015-12-07 10:51:44 +00006991 case OMPC_nogroup:
6992 Res = ActOnOpenMPNogroupClause(StartLoc, EndLoc);
6993 break;
Alexey Bataev142e1fc2014-06-20 09:44:06 +00006994 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00006995 case OMPC_final:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00006996 case OMPC_num_threads:
6997 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00006998 case OMPC_simdlen:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00006999 case OMPC_collapse:
7000 case OMPC_schedule:
7001 case OMPC_private:
7002 case OMPC_firstprivate:
7003 case OMPC_lastprivate:
7004 case OMPC_shared:
7005 case OMPC_reduction:
7006 case OMPC_linear:
7007 case OMPC_aligned:
7008 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00007009 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007010 case OMPC_default:
7011 case OMPC_proc_bind:
7012 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00007013 case OMPC_flush:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007014 case OMPC_depend:
Michael Wonge710d542015-08-07 16:16:36 +00007015 case OMPC_device:
Kelvin Li0bff7af2015-11-23 05:32:03 +00007016 case OMPC_map:
Kelvin Li099bb8c2015-11-24 20:50:12 +00007017 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007018 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00007019 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00007020 case OMPC_grainsize:
Alexey Bataev382967a2015-12-08 12:06:20 +00007021 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00007022 case OMPC_hint:
Carlo Bertollib4adf552016-01-15 18:50:31 +00007023 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00007024 case OMPC_defaultmap:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007025 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00007026 case OMPC_uniform:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007027 llvm_unreachable("Clause is not allowed.");
7028 }
7029 return Res;
7030}
7031
Alexey Bataev236070f2014-06-20 11:19:47 +00007032OMPClause *Sema::ActOnOpenMPNowaitClause(SourceLocation StartLoc,
7033 SourceLocation EndLoc) {
Alexey Bataev6d4ed052015-07-01 06:57:41 +00007034 DSAStack->setNowaitRegion();
Alexey Bataev236070f2014-06-20 11:19:47 +00007035 return new (Context) OMPNowaitClause(StartLoc, EndLoc);
7036}
7037
Alexey Bataev7aea99a2014-07-17 12:19:31 +00007038OMPClause *Sema::ActOnOpenMPUntiedClause(SourceLocation StartLoc,
7039 SourceLocation EndLoc) {
7040 return new (Context) OMPUntiedClause(StartLoc, EndLoc);
7041}
7042
Alexey Bataev74ba3a52014-07-17 12:47:03 +00007043OMPClause *Sema::ActOnOpenMPMergeableClause(SourceLocation StartLoc,
7044 SourceLocation EndLoc) {
7045 return new (Context) OMPMergeableClause(StartLoc, EndLoc);
7046}
7047
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007048OMPClause *Sema::ActOnOpenMPReadClause(SourceLocation StartLoc,
7049 SourceLocation EndLoc) {
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007050 return new (Context) OMPReadClause(StartLoc, EndLoc);
7051}
7052
Alexey Bataevdea47612014-07-23 07:46:59 +00007053OMPClause *Sema::ActOnOpenMPWriteClause(SourceLocation StartLoc,
7054 SourceLocation EndLoc) {
7055 return new (Context) OMPWriteClause(StartLoc, EndLoc);
7056}
7057
Alexey Bataev67a4f222014-07-23 10:25:33 +00007058OMPClause *Sema::ActOnOpenMPUpdateClause(SourceLocation StartLoc,
7059 SourceLocation EndLoc) {
7060 return new (Context) OMPUpdateClause(StartLoc, EndLoc);
7061}
7062
Alexey Bataev459dec02014-07-24 06:46:57 +00007063OMPClause *Sema::ActOnOpenMPCaptureClause(SourceLocation StartLoc,
7064 SourceLocation EndLoc) {
7065 return new (Context) OMPCaptureClause(StartLoc, EndLoc);
7066}
7067
Alexey Bataev82bad8b2014-07-24 08:55:34 +00007068OMPClause *Sema::ActOnOpenMPSeqCstClause(SourceLocation StartLoc,
7069 SourceLocation EndLoc) {
7070 return new (Context) OMPSeqCstClause(StartLoc, EndLoc);
7071}
7072
Alexey Bataev346265e2015-09-25 10:37:12 +00007073OMPClause *Sema::ActOnOpenMPThreadsClause(SourceLocation StartLoc,
7074 SourceLocation EndLoc) {
7075 return new (Context) OMPThreadsClause(StartLoc, EndLoc);
7076}
7077
Alexey Bataevd14d1e62015-09-28 06:39:35 +00007078OMPClause *Sema::ActOnOpenMPSIMDClause(SourceLocation StartLoc,
7079 SourceLocation EndLoc) {
7080 return new (Context) OMPSIMDClause(StartLoc, EndLoc);
7081}
7082
Alexey Bataevb825de12015-12-07 10:51:44 +00007083OMPClause *Sema::ActOnOpenMPNogroupClause(SourceLocation StartLoc,
7084 SourceLocation EndLoc) {
7085 return new (Context) OMPNogroupClause(StartLoc, EndLoc);
7086}
7087
Alexey Bataevc5e02582014-06-16 07:08:35 +00007088OMPClause *Sema::ActOnOpenMPVarListClause(
7089 OpenMPClauseKind Kind, ArrayRef<Expr *> VarList, Expr *TailExpr,
7090 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc,
7091 SourceLocation EndLoc, CXXScopeSpec &ReductionIdScopeSpec,
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007092 const DeclarationNameInfo &ReductionId, OpenMPDependClauseKind DepKind,
Samuel Antao23abd722016-01-19 20:40:49 +00007093 OpenMPLinearClauseKind LinKind, OpenMPMapClauseKind MapTypeModifier,
7094 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit,
7095 SourceLocation DepLinMapLoc) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00007096 OMPClause *Res = nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007097 switch (Kind) {
7098 case OMPC_private:
7099 Res = ActOnOpenMPPrivateClause(VarList, StartLoc, LParenLoc, EndLoc);
7100 break;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007101 case OMPC_firstprivate:
7102 Res = ActOnOpenMPFirstprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
7103 break;
Alexander Musman1bb328c2014-06-04 13:06:39 +00007104 case OMPC_lastprivate:
7105 Res = ActOnOpenMPLastprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
7106 break;
Alexey Bataev758e55e2013-09-06 18:03:48 +00007107 case OMPC_shared:
7108 Res = ActOnOpenMPSharedClause(VarList, StartLoc, LParenLoc, EndLoc);
7109 break;
Alexey Bataevc5e02582014-06-16 07:08:35 +00007110 case OMPC_reduction:
Alexey Bataev23b69422014-06-18 07:08:49 +00007111 Res = ActOnOpenMPReductionClause(VarList, StartLoc, LParenLoc, ColonLoc,
7112 EndLoc, ReductionIdScopeSpec, ReductionId);
Alexey Bataevc5e02582014-06-16 07:08:35 +00007113 break;
Alexander Musman8dba6642014-04-22 13:09:42 +00007114 case OMPC_linear:
7115 Res = ActOnOpenMPLinearClause(VarList, TailExpr, StartLoc, LParenLoc,
Kelvin Li0bff7af2015-11-23 05:32:03 +00007116 LinKind, DepLinMapLoc, ColonLoc, EndLoc);
Alexander Musman8dba6642014-04-22 13:09:42 +00007117 break;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00007118 case OMPC_aligned:
7119 Res = ActOnOpenMPAlignedClause(VarList, TailExpr, StartLoc, LParenLoc,
7120 ColonLoc, EndLoc);
7121 break;
Alexey Bataevd48bcd82014-03-31 03:36:38 +00007122 case OMPC_copyin:
7123 Res = ActOnOpenMPCopyinClause(VarList, StartLoc, LParenLoc, EndLoc);
7124 break;
Alexey Bataevbae9a792014-06-27 10:37:06 +00007125 case OMPC_copyprivate:
7126 Res = ActOnOpenMPCopyprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
7127 break;
Alexey Bataev6125da92014-07-21 11:26:11 +00007128 case OMPC_flush:
7129 Res = ActOnOpenMPFlushClause(VarList, StartLoc, LParenLoc, EndLoc);
7130 break;
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007131 case OMPC_depend:
Kelvin Li0bff7af2015-11-23 05:32:03 +00007132 Res = ActOnOpenMPDependClause(DepKind, DepLinMapLoc, ColonLoc, VarList,
7133 StartLoc, LParenLoc, EndLoc);
7134 break;
7135 case OMPC_map:
Samuel Antao23abd722016-01-19 20:40:49 +00007136 Res = ActOnOpenMPMapClause(MapTypeModifier, MapType, IsMapTypeImplicit,
7137 DepLinMapLoc, ColonLoc, VarList, StartLoc,
7138 LParenLoc, EndLoc);
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007139 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007140 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00007141 case OMPC_final:
Alexey Bataev568a8332014-03-06 06:15:19 +00007142 case OMPC_num_threads:
Alexey Bataev62c87d22014-03-21 04:51:18 +00007143 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00007144 case OMPC_simdlen:
Alexander Musman8bd31e62014-05-27 15:12:19 +00007145 case OMPC_collapse:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007146 case OMPC_default:
Alexey Bataevbcbadb62014-05-06 06:04:14 +00007147 case OMPC_proc_bind:
Alexey Bataev56dafe82014-06-20 07:16:17 +00007148 case OMPC_schedule:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007149 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00007150 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00007151 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00007152 case OMPC_mergeable:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007153 case OMPC_threadprivate:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007154 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00007155 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00007156 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00007157 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00007158 case OMPC_seq_cst:
Michael Wonge710d542015-08-07 16:16:36 +00007159 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +00007160 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00007161 case OMPC_simd:
Kelvin Li099bb8c2015-11-24 20:50:12 +00007162 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007163 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00007164 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00007165 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +00007166 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +00007167 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00007168 case OMPC_hint:
Carlo Bertollib4adf552016-01-15 18:50:31 +00007169 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00007170 case OMPC_defaultmap:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007171 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00007172 case OMPC_uniform:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007173 llvm_unreachable("Clause is not allowed.");
7174 }
7175 return Res;
7176}
7177
Alexey Bataev90c228f2016-02-08 09:29:13 +00007178ExprResult Sema::getOpenMPCapturedExpr(VarDecl *Capture, ExprValueKind VK,
Alexey Bataev61205072016-03-02 04:57:40 +00007179 ExprObjectKind OK, SourceLocation Loc) {
Alexey Bataev90c228f2016-02-08 09:29:13 +00007180 ExprResult Res = BuildDeclRefExpr(
7181 Capture, Capture->getType().getNonReferenceType(), VK_LValue, Loc);
7182 if (!Res.isUsable())
7183 return ExprError();
7184 if (OK == OK_Ordinary && !getLangOpts().CPlusPlus) {
7185 Res = CreateBuiltinUnaryOp(Loc, UO_Deref, Res.get());
7186 if (!Res.isUsable())
7187 return ExprError();
7188 }
7189 if (VK != VK_LValue && Res.get()->isGLValue()) {
7190 Res = DefaultLvalueConversion(Res.get());
7191 if (!Res.isUsable())
7192 return ExprError();
7193 }
7194 return Res;
7195}
7196
Alexey Bataev60da77e2016-02-29 05:54:20 +00007197static std::pair<ValueDecl *, bool>
7198getPrivateItem(Sema &S, Expr *&RefExpr, SourceLocation &ELoc,
7199 SourceRange &ERange, bool AllowArraySection = false) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00007200 if (RefExpr->isTypeDependent() || RefExpr->isValueDependent() ||
7201 RefExpr->containsUnexpandedParameterPack())
7202 return std::make_pair(nullptr, true);
7203
Alexey Bataevd985eda2016-02-10 11:29:16 +00007204 // OpenMP [3.1, C/C++]
7205 // A list item is a variable name.
7206 // OpenMP [2.9.3.3, Restrictions, p.1]
7207 // A variable that is part of another variable (as an array or
7208 // structure element) cannot appear in a private clause.
7209 RefExpr = RefExpr->IgnoreParens();
Alexey Bataev60da77e2016-02-29 05:54:20 +00007210 enum {
7211 NoArrayExpr = -1,
7212 ArraySubscript = 0,
7213 OMPArraySection = 1
7214 } IsArrayExpr = NoArrayExpr;
7215 if (AllowArraySection) {
7216 if (auto *ASE = dyn_cast_or_null<ArraySubscriptExpr>(RefExpr)) {
7217 auto *Base = ASE->getBase()->IgnoreParenImpCasts();
7218 while (auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base))
7219 Base = TempASE->getBase()->IgnoreParenImpCasts();
7220 RefExpr = Base;
7221 IsArrayExpr = ArraySubscript;
7222 } else if (auto *OASE = dyn_cast_or_null<OMPArraySectionExpr>(RefExpr)) {
7223 auto *Base = OASE->getBase()->IgnoreParenImpCasts();
7224 while (auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base))
7225 Base = TempOASE->getBase()->IgnoreParenImpCasts();
7226 while (auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base))
7227 Base = TempASE->getBase()->IgnoreParenImpCasts();
7228 RefExpr = Base;
7229 IsArrayExpr = OMPArraySection;
7230 }
7231 }
7232 ELoc = RefExpr->getExprLoc();
7233 ERange = RefExpr->getSourceRange();
7234 RefExpr = RefExpr->IgnoreParenImpCasts();
Alexey Bataevd985eda2016-02-10 11:29:16 +00007235 auto *DE = dyn_cast_or_null<DeclRefExpr>(RefExpr);
7236 auto *ME = dyn_cast_or_null<MemberExpr>(RefExpr);
7237 if ((!DE || !isa<VarDecl>(DE->getDecl())) &&
7238 (S.getCurrentThisType().isNull() || !ME ||
7239 !isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()) ||
7240 !isa<FieldDecl>(ME->getMemberDecl()))) {
Alexey Bataev60da77e2016-02-29 05:54:20 +00007241 if (IsArrayExpr != NoArrayExpr)
7242 S.Diag(ELoc, diag::err_omp_expected_base_var_name) << IsArrayExpr
7243 << ERange;
7244 else {
7245 S.Diag(ELoc,
7246 AllowArraySection
7247 ? diag::err_omp_expected_var_name_member_expr_or_array_item
7248 : diag::err_omp_expected_var_name_member_expr)
7249 << (S.getCurrentThisType().isNull() ? 0 : 1) << ERange;
7250 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00007251 return std::make_pair(nullptr, false);
7252 }
7253 return std::make_pair(DE ? DE->getDecl() : ME->getMemberDecl(), false);
7254}
7255
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007256OMPClause *Sema::ActOnOpenMPPrivateClause(ArrayRef<Expr *> VarList,
7257 SourceLocation StartLoc,
7258 SourceLocation LParenLoc,
7259 SourceLocation EndLoc) {
7260 SmallVector<Expr *, 8> Vars;
Alexey Bataev03b340a2014-10-21 03:16:40 +00007261 SmallVector<Expr *, 8> PrivateCopies;
Alexey Bataeved09d242014-05-28 05:53:51 +00007262 for (auto &RefExpr : VarList) {
7263 assert(RefExpr && "NULL expr in OpenMP private clause.");
Alexey Bataev60da77e2016-02-29 05:54:20 +00007264 SourceLocation ELoc;
7265 SourceRange ERange;
7266 Expr *SimpleRefExpr = RefExpr;
7267 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007268 if (Res.second) {
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007269 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00007270 Vars.push_back(RefExpr);
Alexey Bataev03b340a2014-10-21 03:16:40 +00007271 PrivateCopies.push_back(nullptr);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007272 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00007273 ValueDecl *D = Res.first;
7274 if (!D)
7275 continue;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007276
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007277 QualType Type = D->getType();
7278 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007279
7280 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
7281 // A variable that appears in a private clause must not have an incomplete
7282 // type or a reference type.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007283 if (RequireCompleteType(ELoc, Type, diag::err_omp_private_incomplete_type))
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007284 continue;
Alexey Bataevbd9fec12015-08-18 06:47:21 +00007285 Type = Type.getNonReferenceType();
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007286
Alexey Bataev758e55e2013-09-06 18:03:48 +00007287 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
7288 // in a Construct]
7289 // Variables with the predetermined data-sharing attributes may not be
7290 // listed in data-sharing attributes clauses, except for the cases
7291 // listed below. For these exceptions only, listing a predetermined
7292 // variable in a data-sharing attribute clause is allowed and overrides
7293 // the variable's predetermined data-sharing attributes.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007294 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexey Bataev758e55e2013-09-06 18:03:48 +00007295 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_private) {
Alexey Bataeved09d242014-05-28 05:53:51 +00007296 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
7297 << getOpenMPClauseName(OMPC_private);
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007298 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataev758e55e2013-09-06 18:03:48 +00007299 continue;
7300 }
7301
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007302 // Variably modified types are not supported for tasks.
Alexey Bataev5129d3a2015-05-21 09:47:46 +00007303 if (!Type->isAnyPointerType() && Type->isVariablyModifiedType() &&
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007304 DSAStack->getCurrentDirective() == OMPD_task) {
7305 Diag(ELoc, diag::err_omp_variably_modified_type_not_supported)
7306 << getOpenMPClauseName(OMPC_private) << Type
7307 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
7308 bool IsDecl =
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007309 !VD ||
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007310 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007311 Diag(D->getLocation(),
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007312 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007313 << D;
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007314 continue;
7315 }
7316
Carlo Bertollib74bfc82016-03-18 21:43:32 +00007317 // OpenMP 4.5 [2.15.5.1, Restrictions, p.3]
7318 // A list item cannot appear in both a map clause and a data-sharing
7319 // attribute clause on the same construct
7320 if (DSAStack->getCurrentDirective() == OMPD_target) {
7321 if(DSAStack->checkMapInfoForVar(VD, /* CurrentRegionOnly = */ true,
7322 [&](Expr *RE) -> bool {return true;})) {
7323 Diag(ELoc, diag::err_omp_variable_in_map_and_dsa)
7324 << getOpenMPClauseName(OMPC_private)
7325 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
7326 ReportOriginalDSA(*this, DSAStack, D, DVar);
7327 continue;
7328 }
7329 }
7330
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007331 // OpenMP [2.9.3.3, Restrictions, C/C++, p.1]
7332 // A variable of class type (or array thereof) that appears in a private
7333 // clause requires an accessible, unambiguous default constructor for the
7334 // class type.
Alexey Bataev03b340a2014-10-21 03:16:40 +00007335 // Generate helper private variable and initialize it with the default
7336 // value. The address of the original variable is replaced by the address of
7337 // the new private variable in CodeGen. This new variable is not added to
7338 // IdResolver, so the code in the OpenMP region uses original variable for
7339 // proper diagnostics.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007340 Type = Type.getUnqualifiedType();
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007341 auto VDPrivate = buildVarDecl(*this, ELoc, Type, D->getName(),
7342 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataev39f915b82015-05-08 10:41:21 +00007343 ActOnUninitializedDecl(VDPrivate, /*TypeMayContainAuto=*/false);
Alexey Bataev03b340a2014-10-21 03:16:40 +00007344 if (VDPrivate->isInvalidDecl())
7345 continue;
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007346 auto VDPrivateRefExpr = buildDeclRefExpr(
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007347 *this, VDPrivate, RefExpr->getType().getUnqualifiedType(), ELoc);
Alexey Bataev03b340a2014-10-21 03:16:40 +00007348
Alexey Bataev90c228f2016-02-08 09:29:13 +00007349 DeclRefExpr *Ref = nullptr;
7350 if (!VD)
Alexey Bataev61205072016-03-02 04:57:40 +00007351 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false);
Alexey Bataev90c228f2016-02-08 09:29:13 +00007352 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_private, Ref);
7353 Vars.push_back(VD ? RefExpr->IgnoreParens() : Ref);
Alexey Bataev03b340a2014-10-21 03:16:40 +00007354 PrivateCopies.push_back(VDPrivateRefExpr);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007355 }
7356
Alexey Bataeved09d242014-05-28 05:53:51 +00007357 if (Vars.empty())
7358 return nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007359
Alexey Bataev03b340a2014-10-21 03:16:40 +00007360 return OMPPrivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars,
7361 PrivateCopies);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007362}
7363
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007364namespace {
7365class DiagsUninitializedSeveretyRAII {
7366private:
7367 DiagnosticsEngine &Diags;
7368 SourceLocation SavedLoc;
7369 bool IsIgnored;
7370
7371public:
7372 DiagsUninitializedSeveretyRAII(DiagnosticsEngine &Diags, SourceLocation Loc,
7373 bool IsIgnored)
7374 : Diags(Diags), SavedLoc(Loc), IsIgnored(IsIgnored) {
7375 if (!IsIgnored) {
7376 Diags.setSeverity(/*Diag*/ diag::warn_uninit_self_reference_in_init,
7377 /*Map*/ diag::Severity::Ignored, Loc);
7378 }
7379 }
7380 ~DiagsUninitializedSeveretyRAII() {
7381 if (!IsIgnored)
7382 Diags.popMappings(SavedLoc);
7383 }
7384};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00007385}
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007386
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007387OMPClause *Sema::ActOnOpenMPFirstprivateClause(ArrayRef<Expr *> VarList,
7388 SourceLocation StartLoc,
7389 SourceLocation LParenLoc,
7390 SourceLocation EndLoc) {
7391 SmallVector<Expr *, 8> Vars;
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007392 SmallVector<Expr *, 8> PrivateCopies;
7393 SmallVector<Expr *, 8> Inits;
Alexey Bataev417089f2016-02-17 13:19:37 +00007394 SmallVector<Decl *, 4> ExprCaptures;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007395 bool IsImplicitClause =
7396 StartLoc.isInvalid() && LParenLoc.isInvalid() && EndLoc.isInvalid();
7397 auto ImplicitClauseLoc = DSAStack->getConstructLoc();
7398
Alexey Bataeved09d242014-05-28 05:53:51 +00007399 for (auto &RefExpr : VarList) {
7400 assert(RefExpr && "NULL expr in OpenMP firstprivate clause.");
Alexey Bataev60da77e2016-02-29 05:54:20 +00007401 SourceLocation ELoc;
7402 SourceRange ERange;
7403 Expr *SimpleRefExpr = RefExpr;
7404 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007405 if (Res.second) {
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007406 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00007407 Vars.push_back(RefExpr);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007408 PrivateCopies.push_back(nullptr);
7409 Inits.push_back(nullptr);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007410 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00007411 ValueDecl *D = Res.first;
7412 if (!D)
7413 continue;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007414
Alexey Bataev60da77e2016-02-29 05:54:20 +00007415 ELoc = IsImplicitClause ? ImplicitClauseLoc : ELoc;
Alexey Bataevd985eda2016-02-10 11:29:16 +00007416 QualType Type = D->getType();
7417 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007418
7419 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
7420 // A variable that appears in a private clause must not have an incomplete
7421 // type or a reference type.
7422 if (RequireCompleteType(ELoc, Type,
Alexey Bataevd985eda2016-02-10 11:29:16 +00007423 diag::err_omp_firstprivate_incomplete_type))
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007424 continue;
Alexey Bataevbd9fec12015-08-18 06:47:21 +00007425 Type = Type.getNonReferenceType();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007426
7427 // OpenMP [2.9.3.4, Restrictions, C/C++, p.1]
7428 // A variable of class type (or array thereof) that appears in a private
Alexey Bataev23b69422014-06-18 07:08:49 +00007429 // clause requires an accessible, unambiguous copy constructor for the
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007430 // class type.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007431 auto ElemType = Context.getBaseElementType(Type).getNonReferenceType();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007432
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007433 // If an implicit firstprivate variable found it was checked already.
Alexey Bataev005248a2016-02-25 05:25:57 +00007434 DSAStackTy::DSAVarData TopDVar;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007435 if (!IsImplicitClause) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00007436 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexey Bataev005248a2016-02-25 05:25:57 +00007437 TopDVar = DVar;
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007438 bool IsConstant = ElemType.isConstant(Context);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007439 // OpenMP [2.4.13, Data-sharing Attribute Clauses]
7440 // A list item that specifies a given variable may not appear in more
7441 // than one clause on the same directive, except that a variable may be
7442 // specified in both firstprivate and lastprivate clauses.
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007443 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_firstprivate &&
Alexey Bataevf29276e2014-06-18 04:14:57 +00007444 DVar.CKind != OMPC_lastprivate && DVar.RefExpr) {
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007445 Diag(ELoc, diag::err_omp_wrong_dsa)
Alexey Bataeved09d242014-05-28 05:53:51 +00007446 << getOpenMPClauseName(DVar.CKind)
7447 << getOpenMPClauseName(OMPC_firstprivate);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007448 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007449 continue;
7450 }
7451
7452 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
7453 // in a Construct]
7454 // Variables with the predetermined data-sharing attributes may not be
7455 // listed in data-sharing attributes clauses, except for the cases
7456 // listed below. For these exceptions only, listing a predetermined
7457 // variable in a data-sharing attribute clause is allowed and overrides
7458 // the variable's predetermined data-sharing attributes.
7459 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
7460 // in a Construct, C/C++, p.2]
7461 // Variables with const-qualified type having no mutable member may be
7462 // listed in a firstprivate clause, even if they are static data members.
Alexey Bataevd985eda2016-02-10 11:29:16 +00007463 if (!(IsConstant || (VD && VD->isStaticDataMember())) && !DVar.RefExpr &&
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007464 DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_shared) {
7465 Diag(ELoc, diag::err_omp_wrong_dsa)
Alexey Bataeved09d242014-05-28 05:53:51 +00007466 << getOpenMPClauseName(DVar.CKind)
7467 << getOpenMPClauseName(OMPC_firstprivate);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007468 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007469 continue;
7470 }
7471
Alexey Bataevf29276e2014-06-18 04:14:57 +00007472 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007473 // OpenMP [2.9.3.4, Restrictions, p.2]
7474 // A list item that is private within a parallel region must not appear
7475 // in a firstprivate clause on a worksharing construct if any of the
7476 // worksharing regions arising from the worksharing construct ever bind
7477 // to any of the parallel regions arising from the parallel construct.
Alexey Bataev549210e2014-06-24 04:39:47 +00007478 if (isOpenMPWorksharingDirective(CurrDir) &&
7479 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00007480 DVar = DSAStack->getImplicitDSA(D, true);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007481 if (DVar.CKind != OMPC_shared &&
7482 (isOpenMPParallelDirective(DVar.DKind) ||
7483 DVar.DKind == OMPD_unknown)) {
Alexey Bataevf29276e2014-06-18 04:14:57 +00007484 Diag(ELoc, diag::err_omp_required_access)
7485 << getOpenMPClauseName(OMPC_firstprivate)
7486 << getOpenMPClauseName(OMPC_shared);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007487 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevf29276e2014-06-18 04:14:57 +00007488 continue;
7489 }
7490 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007491 // OpenMP [2.9.3.4, Restrictions, p.3]
7492 // A list item that appears in a reduction clause of a parallel construct
7493 // must not appear in a firstprivate clause on a worksharing or task
7494 // construct if any of the worksharing or task regions arising from the
7495 // worksharing or task construct ever bind to any of the parallel regions
7496 // arising from the parallel construct.
7497 // OpenMP [2.9.3.4, Restrictions, p.4]
7498 // A list item that appears in a reduction clause in worksharing
7499 // construct must not appear in a firstprivate clause in a task construct
7500 // encountered during execution of any of the worksharing regions arising
7501 // from the worksharing construct.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007502 if (CurrDir == OMPD_task) {
7503 DVar =
Alexey Bataevd985eda2016-02-10 11:29:16 +00007504 DSAStack->hasInnermostDSA(D, MatchesAnyClause(OMPC_reduction),
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007505 [](OpenMPDirectiveKind K) -> bool {
7506 return isOpenMPParallelDirective(K) ||
7507 isOpenMPWorksharingDirective(K);
7508 },
7509 false);
7510 if (DVar.CKind == OMPC_reduction &&
7511 (isOpenMPParallelDirective(DVar.DKind) ||
7512 isOpenMPWorksharingDirective(DVar.DKind))) {
7513 Diag(ELoc, diag::err_omp_parallel_reduction_in_task_firstprivate)
7514 << getOpenMPDirectiveName(DVar.DKind);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007515 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007516 continue;
7517 }
7518 }
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007519
7520 // OpenMP 4.5 [2.15.3.4, Restrictions, p.3]
7521 // A list item that is private within a teams region must not appear in a
7522 // firstprivate clause on a distribute construct if any of the distribute
7523 // regions arising from the distribute construct ever bind to any of the
7524 // teams regions arising from the teams construct.
7525 // OpenMP 4.5 [2.15.3.4, Restrictions, p.3]
7526 // A list item that appears in a reduction clause of a teams construct
7527 // must not appear in a firstprivate clause on a distribute construct if
7528 // any of the distribute regions arising from the distribute construct
7529 // ever bind to any of the teams regions arising from the teams construct.
7530 // OpenMP 4.5 [2.10.8, Distribute Construct, p.3]
7531 // A list item may appear in a firstprivate or lastprivate clause but not
7532 // both.
7533 if (CurrDir == OMPD_distribute) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00007534 DVar = DSAStack->hasInnermostDSA(D, MatchesAnyClause(OMPC_private),
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007535 [](OpenMPDirectiveKind K) -> bool {
7536 return isOpenMPTeamsDirective(K);
7537 },
7538 false);
7539 if (DVar.CKind == OMPC_private && isOpenMPTeamsDirective(DVar.DKind)) {
7540 Diag(ELoc, diag::err_omp_firstprivate_distribute_private_teams);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007541 ReportOriginalDSA(*this, DSAStack, D, DVar);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007542 continue;
7543 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00007544 DVar = DSAStack->hasInnermostDSA(D, MatchesAnyClause(OMPC_reduction),
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007545 [](OpenMPDirectiveKind K) -> bool {
7546 return isOpenMPTeamsDirective(K);
7547 },
7548 false);
7549 if (DVar.CKind == OMPC_reduction &&
7550 isOpenMPTeamsDirective(DVar.DKind)) {
7551 Diag(ELoc, diag::err_omp_firstprivate_distribute_in_teams_reduction);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007552 ReportOriginalDSA(*this, DSAStack, D, DVar);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007553 continue;
7554 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00007555 DVar = DSAStack->getTopDSA(D, false);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007556 if (DVar.CKind == OMPC_lastprivate) {
7557 Diag(ELoc, diag::err_omp_firstprivate_and_lastprivate_in_distribute);
Alexey Bataevd985eda2016-02-10 11:29:16 +00007558 ReportOriginalDSA(*this, DSAStack, D, DVar);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007559 continue;
7560 }
7561 }
Carlo Bertollib74bfc82016-03-18 21:43:32 +00007562 // OpenMP 4.5 [2.15.5.1, Restrictions, p.3]
7563 // A list item cannot appear in both a map clause and a data-sharing
7564 // attribute clause on the same construct
7565 if (CurrDir == OMPD_target) {
7566 if(DSAStack->checkMapInfoForVar(VD, /* CurrentRegionOnly = */ true,
7567 [&](Expr *RE) -> bool {return true;})) {
7568 Diag(ELoc, diag::err_omp_variable_in_map_and_dsa)
7569 << getOpenMPClauseName(OMPC_firstprivate)
7570 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
7571 ReportOriginalDSA(*this, DSAStack, D, DVar);
7572 continue;
7573 }
7574 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007575 }
7576
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007577 // Variably modified types are not supported for tasks.
Alexey Bataev5129d3a2015-05-21 09:47:46 +00007578 if (!Type->isAnyPointerType() && Type->isVariablyModifiedType() &&
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007579 DSAStack->getCurrentDirective() == OMPD_task) {
7580 Diag(ELoc, diag::err_omp_variably_modified_type_not_supported)
7581 << getOpenMPClauseName(OMPC_firstprivate) << Type
7582 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
7583 bool IsDecl =
Alexey Bataevd985eda2016-02-10 11:29:16 +00007584 !VD ||
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007585 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataevd985eda2016-02-10 11:29:16 +00007586 Diag(D->getLocation(),
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007587 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataevd985eda2016-02-10 11:29:16 +00007588 << D;
Alexey Bataevccb59ec2015-05-19 08:44:56 +00007589 continue;
7590 }
7591
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007592 Type = Type.getUnqualifiedType();
Alexey Bataevd985eda2016-02-10 11:29:16 +00007593 auto VDPrivate = buildVarDecl(*this, ELoc, Type, D->getName(),
7594 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007595 // Generate helper private variable and initialize it with the value of the
7596 // original variable. The address of the original variable is replaced by
7597 // the address of the new private variable in the CodeGen. This new variable
7598 // is not added to IdResolver, so the code in the OpenMP region uses
7599 // original variable for proper diagnostics and variable capturing.
7600 Expr *VDInitRefExpr = nullptr;
7601 // For arrays generate initializer for single element and replace it by the
7602 // original array element in CodeGen.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007603 if (Type->isArrayType()) {
7604 auto VDInit =
Alexey Bataevd985eda2016-02-10 11:29:16 +00007605 buildVarDecl(*this, RefExpr->getExprLoc(), ElemType, D->getName());
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007606 VDInitRefExpr = buildDeclRefExpr(*this, VDInit, ElemType, ELoc);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007607 auto Init = DefaultLvalueConversion(VDInitRefExpr).get();
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007608 ElemType = ElemType.getUnqualifiedType();
Alexey Bataevd985eda2016-02-10 11:29:16 +00007609 auto *VDInitTemp = buildVarDecl(*this, RefExpr->getExprLoc(), ElemType,
Alexey Bataevf120c0d2015-05-19 07:46:42 +00007610 ".firstprivate.temp");
Alexey Bataev69c62a92015-04-15 04:52:20 +00007611 InitializedEntity Entity =
7612 InitializedEntity::InitializeVariable(VDInitTemp);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007613 InitializationKind Kind = InitializationKind::CreateCopy(ELoc, ELoc);
7614
7615 InitializationSequence InitSeq(*this, Entity, Kind, Init);
7616 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Init);
7617 if (Result.isInvalid())
7618 VDPrivate->setInvalidDecl();
7619 else
7620 VDPrivate->setInit(Result.getAs<Expr>());
Alexey Bataevf24e7b12015-10-08 09:10:53 +00007621 // Remove temp variable declaration.
7622 Context.Deallocate(VDInitTemp);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007623 } else {
Alexey Bataevd985eda2016-02-10 11:29:16 +00007624 auto *VDInit = buildVarDecl(*this, RefExpr->getExprLoc(), Type,
7625 ".firstprivate.temp");
7626 VDInitRefExpr = buildDeclRefExpr(*this, VDInit, RefExpr->getType(),
7627 RefExpr->getExprLoc());
Alexey Bataev69c62a92015-04-15 04:52:20 +00007628 AddInitializerToDecl(VDPrivate,
7629 DefaultLvalueConversion(VDInitRefExpr).get(),
7630 /*DirectInit=*/false, /*TypeMayContainAuto=*/false);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007631 }
7632 if (VDPrivate->isInvalidDecl()) {
7633 if (IsImplicitClause) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00007634 Diag(RefExpr->getExprLoc(),
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007635 diag::note_omp_task_predetermined_firstprivate_here);
7636 }
7637 continue;
7638 }
7639 CurContext->addDecl(VDPrivate);
Alexey Bataev39f915b82015-05-08 10:41:21 +00007640 auto VDPrivateRefExpr = buildDeclRefExpr(
Alexey Bataevd985eda2016-02-10 11:29:16 +00007641 *this, VDPrivate, RefExpr->getType().getUnqualifiedType(),
7642 RefExpr->getExprLoc());
7643 DeclRefExpr *Ref = nullptr;
Alexey Bataev417089f2016-02-17 13:19:37 +00007644 if (!VD) {
Alexey Bataev005248a2016-02-25 05:25:57 +00007645 if (TopDVar.CKind == OMPC_lastprivate)
7646 Ref = TopDVar.PrivateCopy;
7647 else {
Alexey Bataev61205072016-03-02 04:57:40 +00007648 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/true);
Alexey Bataev005248a2016-02-25 05:25:57 +00007649 if (!IsOpenMPCapturedDecl(D))
7650 ExprCaptures.push_back(Ref->getDecl());
7651 }
Alexey Bataev417089f2016-02-17 13:19:37 +00007652 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00007653 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_firstprivate, Ref);
7654 Vars.push_back(VD ? RefExpr->IgnoreParens() : Ref);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00007655 PrivateCopies.push_back(VDPrivateRefExpr);
7656 Inits.push_back(VDInitRefExpr);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007657 }
7658
Alexey Bataeved09d242014-05-28 05:53:51 +00007659 if (Vars.empty())
7660 return nullptr;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007661
7662 return OMPFirstprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
Alexey Bataev5a3af132016-03-29 08:58:54 +00007663 Vars, PrivateCopies, Inits,
7664 buildPreInits(Context, ExprCaptures));
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007665}
7666
Alexander Musman1bb328c2014-06-04 13:06:39 +00007667OMPClause *Sema::ActOnOpenMPLastprivateClause(ArrayRef<Expr *> VarList,
7668 SourceLocation StartLoc,
7669 SourceLocation LParenLoc,
7670 SourceLocation EndLoc) {
7671 SmallVector<Expr *, 8> Vars;
Alexey Bataev38e89532015-04-16 04:54:05 +00007672 SmallVector<Expr *, 8> SrcExprs;
7673 SmallVector<Expr *, 8> DstExprs;
7674 SmallVector<Expr *, 8> AssignmentOps;
Alexey Bataev005248a2016-02-25 05:25:57 +00007675 SmallVector<Decl *, 4> ExprCaptures;
7676 SmallVector<Expr *, 4> ExprPostUpdates;
Alexander Musman1bb328c2014-06-04 13:06:39 +00007677 for (auto &RefExpr : VarList) {
7678 assert(RefExpr && "NULL expr in OpenMP lastprivate clause.");
Alexey Bataev60da77e2016-02-29 05:54:20 +00007679 SourceLocation ELoc;
7680 SourceRange ERange;
7681 Expr *SimpleRefExpr = RefExpr;
7682 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
Alexey Bataev74caaf22016-02-20 04:09:36 +00007683 if (Res.second) {
Alexander Musman1bb328c2014-06-04 13:06:39 +00007684 // It will be analyzed later.
7685 Vars.push_back(RefExpr);
Alexey Bataev38e89532015-04-16 04:54:05 +00007686 SrcExprs.push_back(nullptr);
7687 DstExprs.push_back(nullptr);
7688 AssignmentOps.push_back(nullptr);
Alexander Musman1bb328c2014-06-04 13:06:39 +00007689 }
Alexey Bataev74caaf22016-02-20 04:09:36 +00007690 ValueDecl *D = Res.first;
7691 if (!D)
7692 continue;
Alexander Musman1bb328c2014-06-04 13:06:39 +00007693
Alexey Bataev74caaf22016-02-20 04:09:36 +00007694 QualType Type = D->getType();
7695 auto *VD = dyn_cast<VarDecl>(D);
Alexander Musman1bb328c2014-06-04 13:06:39 +00007696
7697 // OpenMP [2.14.3.5, Restrictions, C/C++, p.2]
7698 // A variable that appears in a lastprivate clause must not have an
7699 // incomplete type or a reference type.
7700 if (RequireCompleteType(ELoc, Type,
Alexey Bataev74caaf22016-02-20 04:09:36 +00007701 diag::err_omp_lastprivate_incomplete_type))
Alexander Musman1bb328c2014-06-04 13:06:39 +00007702 continue;
Alexey Bataevbd9fec12015-08-18 06:47:21 +00007703 Type = Type.getNonReferenceType();
Alexander Musman1bb328c2014-06-04 13:06:39 +00007704
7705 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced
7706 // in a Construct]
7707 // Variables with the predetermined data-sharing attributes may not be
7708 // listed in data-sharing attributes clauses, except for the cases
7709 // listed below.
Alexey Bataev74caaf22016-02-20 04:09:36 +00007710 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexander Musman1bb328c2014-06-04 13:06:39 +00007711 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_lastprivate &&
7712 DVar.CKind != OMPC_firstprivate &&
7713 (DVar.CKind != OMPC_private || DVar.RefExpr != nullptr)) {
7714 Diag(ELoc, diag::err_omp_wrong_dsa)
7715 << getOpenMPClauseName(DVar.CKind)
7716 << getOpenMPClauseName(OMPC_lastprivate);
Alexey Bataev74caaf22016-02-20 04:09:36 +00007717 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexander Musman1bb328c2014-06-04 13:06:39 +00007718 continue;
7719 }
7720
Alexey Bataevf29276e2014-06-18 04:14:57 +00007721 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
7722 // OpenMP [2.14.3.5, Restrictions, p.2]
7723 // A list item that is private within a parallel region, or that appears in
7724 // the reduction clause of a parallel construct, must not appear in a
7725 // lastprivate clause on a worksharing construct if any of the corresponding
7726 // worksharing regions ever binds to any of the corresponding parallel
7727 // regions.
Alexey Bataev39f915b82015-05-08 10:41:21 +00007728 DSAStackTy::DSAVarData TopDVar = DVar;
Alexey Bataev549210e2014-06-24 04:39:47 +00007729 if (isOpenMPWorksharingDirective(CurrDir) &&
7730 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataev74caaf22016-02-20 04:09:36 +00007731 DVar = DSAStack->getImplicitDSA(D, true);
Alexey Bataevf29276e2014-06-18 04:14:57 +00007732 if (DVar.CKind != OMPC_shared) {
7733 Diag(ELoc, diag::err_omp_required_access)
7734 << getOpenMPClauseName(OMPC_lastprivate)
7735 << getOpenMPClauseName(OMPC_shared);
Alexey Bataev74caaf22016-02-20 04:09:36 +00007736 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevf29276e2014-06-18 04:14:57 +00007737 continue;
7738 }
7739 }
Alexey Bataev74caaf22016-02-20 04:09:36 +00007740
7741 // OpenMP 4.5 [2.10.8, Distribute Construct, p.3]
7742 // A list item may appear in a firstprivate or lastprivate clause but not
7743 // both.
7744 if (CurrDir == OMPD_distribute) {
7745 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
7746 if (DVar.CKind == OMPC_firstprivate) {
7747 Diag(ELoc, diag::err_omp_firstprivate_and_lastprivate_in_distribute);
7748 ReportOriginalDSA(*this, DSAStack, D, DVar);
7749 continue;
7750 }
7751 }
7752
Alexander Musman1bb328c2014-06-04 13:06:39 +00007753 // OpenMP [2.14.3.5, Restrictions, C++, p.1,2]
Alexey Bataevf29276e2014-06-18 04:14:57 +00007754 // A variable of class type (or array thereof) that appears in a
7755 // lastprivate clause requires an accessible, unambiguous default
7756 // constructor for the class type, unless the list item is also specified
7757 // in a firstprivate clause.
Alexander Musman1bb328c2014-06-04 13:06:39 +00007758 // A variable of class type (or array thereof) that appears in a
7759 // lastprivate clause requires an accessible, unambiguous copy assignment
7760 // operator for the class type.
Alexey Bataev38e89532015-04-16 04:54:05 +00007761 Type = Context.getBaseElementType(Type).getNonReferenceType();
Alexey Bataev60da77e2016-02-29 05:54:20 +00007762 auto *SrcVD = buildVarDecl(*this, ERange.getBegin(),
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00007763 Type.getUnqualifiedType(), ".lastprivate.src",
Alexey Bataev74caaf22016-02-20 04:09:36 +00007764 D->hasAttrs() ? &D->getAttrs() : nullptr);
7765 auto *PseudoSrcExpr =
7766 buildDeclRefExpr(*this, SrcVD, Type.getUnqualifiedType(), ELoc);
Alexey Bataev38e89532015-04-16 04:54:05 +00007767 auto *DstVD =
Alexey Bataev60da77e2016-02-29 05:54:20 +00007768 buildVarDecl(*this, ERange.getBegin(), Type, ".lastprivate.dst",
Alexey Bataev74caaf22016-02-20 04:09:36 +00007769 D->hasAttrs() ? &D->getAttrs() : nullptr);
7770 auto *PseudoDstExpr = buildDeclRefExpr(*this, DstVD, Type, ELoc);
Alexey Bataev38e89532015-04-16 04:54:05 +00007771 // For arrays generate assignment operation for single element and replace
7772 // it by the original array element in CodeGen.
Alexey Bataev74caaf22016-02-20 04:09:36 +00007773 auto AssignmentOp = BuildBinOp(/*S=*/nullptr, ELoc, BO_Assign,
Alexey Bataev38e89532015-04-16 04:54:05 +00007774 PseudoDstExpr, PseudoSrcExpr);
7775 if (AssignmentOp.isInvalid())
7776 continue;
Alexey Bataev74caaf22016-02-20 04:09:36 +00007777 AssignmentOp = ActOnFinishFullExpr(AssignmentOp.get(), ELoc,
Alexey Bataev38e89532015-04-16 04:54:05 +00007778 /*DiscardedValue=*/true);
7779 if (AssignmentOp.isInvalid())
7780 continue;
Alexander Musman1bb328c2014-06-04 13:06:39 +00007781
Alexey Bataev74caaf22016-02-20 04:09:36 +00007782 DeclRefExpr *Ref = nullptr;
Alexey Bataev005248a2016-02-25 05:25:57 +00007783 if (!VD) {
7784 if (TopDVar.CKind == OMPC_firstprivate)
7785 Ref = TopDVar.PrivateCopy;
7786 else {
Alexey Bataev61205072016-03-02 04:57:40 +00007787 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false);
Alexey Bataev005248a2016-02-25 05:25:57 +00007788 if (!IsOpenMPCapturedDecl(D))
7789 ExprCaptures.push_back(Ref->getDecl());
7790 }
7791 if (TopDVar.CKind == OMPC_firstprivate ||
7792 (!IsOpenMPCapturedDecl(D) &&
Alexey Bataev2bbf7212016-03-03 03:52:24 +00007793 Ref->getDecl()->hasAttr<OMPCaptureNoInitAttr>())) {
Alexey Bataev005248a2016-02-25 05:25:57 +00007794 ExprResult RefRes = DefaultLvalueConversion(Ref);
7795 if (!RefRes.isUsable())
7796 continue;
7797 ExprResult PostUpdateRes =
Alexey Bataev60da77e2016-02-29 05:54:20 +00007798 BuildBinOp(DSAStack->getCurScope(), ELoc, BO_Assign, SimpleRefExpr,
7799 RefRes.get());
Alexey Bataev005248a2016-02-25 05:25:57 +00007800 if (!PostUpdateRes.isUsable())
7801 continue;
Alexey Bataev78849fb2016-03-09 09:49:00 +00007802 ExprPostUpdates.push_back(
7803 IgnoredValueConversions(PostUpdateRes.get()).get());
Alexey Bataev005248a2016-02-25 05:25:57 +00007804 }
7805 }
Alexey Bataev39f915b82015-05-08 10:41:21 +00007806 if (TopDVar.CKind != OMPC_firstprivate)
Alexey Bataev74caaf22016-02-20 04:09:36 +00007807 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_lastprivate, Ref);
7808 Vars.push_back(VD ? RefExpr->IgnoreParens() : Ref);
Alexey Bataev38e89532015-04-16 04:54:05 +00007809 SrcExprs.push_back(PseudoSrcExpr);
7810 DstExprs.push_back(PseudoDstExpr);
7811 AssignmentOps.push_back(AssignmentOp.get());
Alexander Musman1bb328c2014-06-04 13:06:39 +00007812 }
7813
7814 if (Vars.empty())
7815 return nullptr;
7816
7817 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
Alexey Bataev005248a2016-02-25 05:25:57 +00007818 Vars, SrcExprs, DstExprs, AssignmentOps,
Alexey Bataev5a3af132016-03-29 08:58:54 +00007819 buildPreInits(Context, ExprCaptures),
7820 buildPostUpdate(*this, ExprPostUpdates));
Alexander Musman1bb328c2014-06-04 13:06:39 +00007821}
7822
Alexey Bataev758e55e2013-09-06 18:03:48 +00007823OMPClause *Sema::ActOnOpenMPSharedClause(ArrayRef<Expr *> VarList,
7824 SourceLocation StartLoc,
7825 SourceLocation LParenLoc,
7826 SourceLocation EndLoc) {
7827 SmallVector<Expr *, 8> Vars;
Alexey Bataeved09d242014-05-28 05:53:51 +00007828 for (auto &RefExpr : VarList) {
Alexey Bataevb7a34b62016-02-25 03:59:29 +00007829 assert(RefExpr && "NULL expr in OpenMP lastprivate clause.");
Alexey Bataev60da77e2016-02-29 05:54:20 +00007830 SourceLocation ELoc;
7831 SourceRange ERange;
7832 Expr *SimpleRefExpr = RefExpr;
7833 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
Alexey Bataevb7a34b62016-02-25 03:59:29 +00007834 if (Res.second) {
Alexey Bataev758e55e2013-09-06 18:03:48 +00007835 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00007836 Vars.push_back(RefExpr);
Alexey Bataev758e55e2013-09-06 18:03:48 +00007837 }
Alexey Bataevb7a34b62016-02-25 03:59:29 +00007838 ValueDecl *D = Res.first;
7839 if (!D)
7840 continue;
Alexey Bataev758e55e2013-09-06 18:03:48 +00007841
Alexey Bataevb7a34b62016-02-25 03:59:29 +00007842 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataev758e55e2013-09-06 18:03:48 +00007843 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
7844 // in a Construct]
7845 // Variables with the predetermined data-sharing attributes may not be
7846 // listed in data-sharing attributes clauses, except for the cases
7847 // listed below. For these exceptions only, listing a predetermined
7848 // variable in a data-sharing attribute clause is allowed and overrides
7849 // the variable's predetermined data-sharing attributes.
Alexey Bataevb7a34b62016-02-25 03:59:29 +00007850 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexey Bataeved09d242014-05-28 05:53:51 +00007851 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_shared &&
7852 DVar.RefExpr) {
7853 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
7854 << getOpenMPClauseName(OMPC_shared);
Alexey Bataevb7a34b62016-02-25 03:59:29 +00007855 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataev758e55e2013-09-06 18:03:48 +00007856 continue;
7857 }
7858
Alexey Bataevb7a34b62016-02-25 03:59:29 +00007859 DeclRefExpr *Ref = nullptr;
Alexey Bataev1efd1662016-03-29 10:59:56 +00007860 if (!VD && IsOpenMPCapturedDecl(D))
Alexey Bataev61205072016-03-02 04:57:40 +00007861 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/true);
Alexey Bataevb7a34b62016-02-25 03:59:29 +00007862 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_shared, Ref);
Alexey Bataev1efd1662016-03-29 10:59:56 +00007863 Vars.push_back((VD || !Ref) ? RefExpr->IgnoreParens() : Ref);
Alexey Bataev758e55e2013-09-06 18:03:48 +00007864 }
7865
Alexey Bataeved09d242014-05-28 05:53:51 +00007866 if (Vars.empty())
7867 return nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +00007868
7869 return OMPSharedClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
7870}
7871
Alexey Bataevc5e02582014-06-16 07:08:35 +00007872namespace {
7873class DSARefChecker : public StmtVisitor<DSARefChecker, bool> {
7874 DSAStackTy *Stack;
7875
7876public:
7877 bool VisitDeclRefExpr(DeclRefExpr *E) {
7878 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007879 DSAStackTy::DSAVarData DVar = Stack->getTopDSA(VD, false);
Alexey Bataevc5e02582014-06-16 07:08:35 +00007880 if (DVar.CKind == OMPC_shared && !DVar.RefExpr)
7881 return false;
7882 if (DVar.CKind != OMPC_unknown)
7883 return true;
Alexey Bataevf29276e2014-06-18 04:14:57 +00007884 DSAStackTy::DSAVarData DVarPrivate =
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00007885 Stack->hasDSA(VD, isOpenMPPrivate, MatchesAlways(), false);
Alexey Bataevf29276e2014-06-18 04:14:57 +00007886 if (DVarPrivate.CKind != OMPC_unknown)
Alexey Bataevc5e02582014-06-16 07:08:35 +00007887 return true;
7888 return false;
7889 }
7890 return false;
7891 }
7892 bool VisitStmt(Stmt *S) {
7893 for (auto Child : S->children()) {
7894 if (Child && Visit(Child))
7895 return true;
7896 }
7897 return false;
7898 }
Alexey Bataev23b69422014-06-18 07:08:49 +00007899 explicit DSARefChecker(DSAStackTy *S) : Stack(S) {}
Alexey Bataevc5e02582014-06-16 07:08:35 +00007900};
Alexey Bataev23b69422014-06-18 07:08:49 +00007901} // namespace
Alexey Bataevc5e02582014-06-16 07:08:35 +00007902
Alexey Bataev60da77e2016-02-29 05:54:20 +00007903namespace {
7904// Transform MemberExpression for specified FieldDecl of current class to
7905// DeclRefExpr to specified OMPCapturedExprDecl.
7906class TransformExprToCaptures : public TreeTransform<TransformExprToCaptures> {
7907 typedef TreeTransform<TransformExprToCaptures> BaseTransform;
7908 ValueDecl *Field;
7909 DeclRefExpr *CapturedExpr;
7910
7911public:
7912 TransformExprToCaptures(Sema &SemaRef, ValueDecl *FieldDecl)
7913 : BaseTransform(SemaRef), Field(FieldDecl), CapturedExpr(nullptr) {}
7914
7915 ExprResult TransformMemberExpr(MemberExpr *E) {
7916 if (isa<CXXThisExpr>(E->getBase()->IgnoreParenImpCasts()) &&
7917 E->getMemberDecl() == Field) {
Alexey Bataev61205072016-03-02 04:57:40 +00007918 CapturedExpr = buildCapture(SemaRef, Field, E, /*WithInit=*/false);
Alexey Bataev60da77e2016-02-29 05:54:20 +00007919 return CapturedExpr;
7920 }
7921 return BaseTransform::TransformMemberExpr(E);
7922 }
7923 DeclRefExpr *getCapturedExpr() { return CapturedExpr; }
7924};
7925} // namespace
7926
Alexey Bataeva839ddd2016-03-17 10:19:46 +00007927template <typename T>
7928static T filterLookupForUDR(SmallVectorImpl<UnresolvedSet<8>> &Lookups,
7929 const llvm::function_ref<T(ValueDecl *)> &Gen) {
7930 for (auto &Set : Lookups) {
7931 for (auto *D : Set) {
7932 if (auto Res = Gen(cast<ValueDecl>(D)))
7933 return Res;
7934 }
7935 }
7936 return T();
7937}
7938
7939static ExprResult
7940buildDeclareReductionRef(Sema &SemaRef, SourceLocation Loc, SourceRange Range,
7941 Scope *S, CXXScopeSpec &ReductionIdScopeSpec,
7942 const DeclarationNameInfo &ReductionId, QualType Ty,
7943 CXXCastPath &BasePath, Expr *UnresolvedReduction) {
7944 if (ReductionIdScopeSpec.isInvalid())
7945 return ExprError();
7946 SmallVector<UnresolvedSet<8>, 4> Lookups;
7947 if (S) {
7948 LookupResult Lookup(SemaRef, ReductionId, Sema::LookupOMPReductionName);
7949 Lookup.suppressDiagnostics();
7950 while (S && SemaRef.LookupParsedName(Lookup, S, &ReductionIdScopeSpec)) {
7951 auto *D = Lookup.getRepresentativeDecl();
7952 do {
7953 S = S->getParent();
7954 } while (S && !S->isDeclScope(D));
7955 if (S)
7956 S = S->getParent();
7957 Lookups.push_back(UnresolvedSet<8>());
7958 Lookups.back().append(Lookup.begin(), Lookup.end());
7959 Lookup.clear();
7960 }
7961 } else if (auto *ULE =
7962 cast_or_null<UnresolvedLookupExpr>(UnresolvedReduction)) {
7963 Lookups.push_back(UnresolvedSet<8>());
7964 Decl *PrevD = nullptr;
7965 for(auto *D : ULE->decls()) {
7966 if (D == PrevD)
7967 Lookups.push_back(UnresolvedSet<8>());
7968 else if (auto *DRD = cast<OMPDeclareReductionDecl>(D))
7969 Lookups.back().addDecl(DRD);
7970 PrevD = D;
7971 }
7972 }
7973 if (Ty->isDependentType() || Ty->isInstantiationDependentType() ||
7974 Ty->containsUnexpandedParameterPack() ||
7975 filterLookupForUDR<bool>(Lookups, [](ValueDecl *D) -> bool {
7976 return !D->isInvalidDecl() &&
7977 (D->getType()->isDependentType() ||
7978 D->getType()->isInstantiationDependentType() ||
7979 D->getType()->containsUnexpandedParameterPack());
7980 })) {
7981 UnresolvedSet<8> ResSet;
7982 for (auto &Set : Lookups) {
7983 ResSet.append(Set.begin(), Set.end());
7984 // The last item marks the end of all declarations at the specified scope.
7985 ResSet.addDecl(Set[Set.size() - 1]);
7986 }
7987 return UnresolvedLookupExpr::Create(
7988 SemaRef.Context, /*NamingClass=*/nullptr,
7989 ReductionIdScopeSpec.getWithLocInContext(SemaRef.Context), ReductionId,
7990 /*ADL=*/true, /*Overloaded=*/true, ResSet.begin(), ResSet.end());
7991 }
7992 if (auto *VD = filterLookupForUDR<ValueDecl *>(
7993 Lookups, [&SemaRef, Ty](ValueDecl *D) -> ValueDecl * {
7994 if (!D->isInvalidDecl() &&
7995 SemaRef.Context.hasSameType(D->getType(), Ty))
7996 return D;
7997 return nullptr;
7998 }))
7999 return SemaRef.BuildDeclRefExpr(VD, Ty, VK_LValue, Loc);
8000 if (auto *VD = filterLookupForUDR<ValueDecl *>(
8001 Lookups, [&SemaRef, Ty, Loc](ValueDecl *D) -> ValueDecl * {
8002 if (!D->isInvalidDecl() &&
8003 SemaRef.IsDerivedFrom(Loc, Ty, D->getType()) &&
8004 !Ty.isMoreQualifiedThan(D->getType()))
8005 return D;
8006 return nullptr;
8007 })) {
8008 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
8009 /*DetectVirtual=*/false);
8010 if (SemaRef.IsDerivedFrom(Loc, Ty, VD->getType(), Paths)) {
8011 if (!Paths.isAmbiguous(SemaRef.Context.getCanonicalType(
8012 VD->getType().getUnqualifiedType()))) {
8013 if (SemaRef.CheckBaseClassAccess(Loc, VD->getType(), Ty, Paths.front(),
8014 /*DiagID=*/0) !=
8015 Sema::AR_inaccessible) {
8016 SemaRef.BuildBasePathArray(Paths, BasePath);
8017 return SemaRef.BuildDeclRefExpr(VD, Ty, VK_LValue, Loc);
8018 }
8019 }
8020 }
8021 }
8022 if (ReductionIdScopeSpec.isSet()) {
8023 SemaRef.Diag(Loc, diag::err_omp_not_resolved_reduction_identifier) << Range;
8024 return ExprError();
8025 }
8026 return ExprEmpty();
8027}
8028
Alexey Bataevc5e02582014-06-16 07:08:35 +00008029OMPClause *Sema::ActOnOpenMPReductionClause(
8030 ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc,
8031 SourceLocation ColonLoc, SourceLocation EndLoc,
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008032 CXXScopeSpec &ReductionIdScopeSpec, const DeclarationNameInfo &ReductionId,
8033 ArrayRef<Expr *> UnresolvedReductions) {
Alexey Bataevc5e02582014-06-16 07:08:35 +00008034 auto DN = ReductionId.getName();
8035 auto OOK = DN.getCXXOverloadedOperator();
8036 BinaryOperatorKind BOK = BO_Comma;
8037
8038 // OpenMP [2.14.3.6, reduction clause]
8039 // C
8040 // reduction-identifier is either an identifier or one of the following
8041 // operators: +, -, *, &, |, ^, && and ||
8042 // C++
8043 // reduction-identifier is either an id-expression or one of the following
8044 // operators: +, -, *, &, |, ^, && and ||
8045 // FIXME: Only 'min' and 'max' identifiers are supported for now.
8046 switch (OOK) {
8047 case OO_Plus:
8048 case OO_Minus:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008049 BOK = BO_Add;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008050 break;
8051 case OO_Star:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008052 BOK = BO_Mul;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008053 break;
8054 case OO_Amp:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008055 BOK = BO_And;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008056 break;
8057 case OO_Pipe:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008058 BOK = BO_Or;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008059 break;
8060 case OO_Caret:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008061 BOK = BO_Xor;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008062 break;
8063 case OO_AmpAmp:
8064 BOK = BO_LAnd;
8065 break;
8066 case OO_PipePipe:
8067 BOK = BO_LOr;
8068 break;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008069 case OO_New:
8070 case OO_Delete:
8071 case OO_Array_New:
8072 case OO_Array_Delete:
8073 case OO_Slash:
8074 case OO_Percent:
8075 case OO_Tilde:
8076 case OO_Exclaim:
8077 case OO_Equal:
8078 case OO_Less:
8079 case OO_Greater:
8080 case OO_LessEqual:
8081 case OO_GreaterEqual:
8082 case OO_PlusEqual:
8083 case OO_MinusEqual:
8084 case OO_StarEqual:
8085 case OO_SlashEqual:
8086 case OO_PercentEqual:
8087 case OO_CaretEqual:
8088 case OO_AmpEqual:
8089 case OO_PipeEqual:
8090 case OO_LessLess:
8091 case OO_GreaterGreater:
8092 case OO_LessLessEqual:
8093 case OO_GreaterGreaterEqual:
8094 case OO_EqualEqual:
8095 case OO_ExclaimEqual:
8096 case OO_PlusPlus:
8097 case OO_MinusMinus:
8098 case OO_Comma:
8099 case OO_ArrowStar:
8100 case OO_Arrow:
8101 case OO_Call:
8102 case OO_Subscript:
8103 case OO_Conditional:
Richard Smith9be594e2015-10-22 05:12:22 +00008104 case OO_Coawait:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008105 case NUM_OVERLOADED_OPERATORS:
8106 llvm_unreachable("Unexpected reduction identifier");
8107 case OO_None:
Alexey Bataevc5e02582014-06-16 07:08:35 +00008108 if (auto II = DN.getAsIdentifierInfo()) {
8109 if (II->isStr("max"))
8110 BOK = BO_GT;
8111 else if (II->isStr("min"))
8112 BOK = BO_LT;
8113 }
8114 break;
8115 }
8116 SourceRange ReductionIdRange;
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008117 if (ReductionIdScopeSpec.isValid())
Alexey Bataevc5e02582014-06-16 07:08:35 +00008118 ReductionIdRange.setBegin(ReductionIdScopeSpec.getBeginLoc());
Alexey Bataevc5e02582014-06-16 07:08:35 +00008119 ReductionIdRange.setEnd(ReductionId.getEndLoc());
Alexey Bataevc5e02582014-06-16 07:08:35 +00008120
8121 SmallVector<Expr *, 8> Vars;
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008122 SmallVector<Expr *, 8> Privates;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008123 SmallVector<Expr *, 8> LHSs;
8124 SmallVector<Expr *, 8> RHSs;
8125 SmallVector<Expr *, 8> ReductionOps;
Alexey Bataev61205072016-03-02 04:57:40 +00008126 SmallVector<Decl *, 4> ExprCaptures;
8127 SmallVector<Expr *, 4> ExprPostUpdates;
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008128 auto IR = UnresolvedReductions.begin(), ER = UnresolvedReductions.end();
8129 bool FirstIter = true;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008130 for (auto RefExpr : VarList) {
8131 assert(RefExpr && "nullptr expr in OpenMP reduction clause.");
Alexey Bataevc5e02582014-06-16 07:08:35 +00008132 // OpenMP [2.1, C/C++]
8133 // A list item is a variable or array section, subject to the restrictions
8134 // specified in Section 2.4 on page 42 and in each of the sections
8135 // describing clauses and directives for which a list appears.
8136 // OpenMP [2.14.3.3, Restrictions, p.1]
8137 // A variable that is part of another variable (as an array or
8138 // structure element) cannot appear in a private clause.
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008139 if (!FirstIter && IR != ER)
8140 ++IR;
8141 FirstIter = false;
Alexey Bataev60da77e2016-02-29 05:54:20 +00008142 SourceLocation ELoc;
8143 SourceRange ERange;
8144 Expr *SimpleRefExpr = RefExpr;
8145 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange,
8146 /*AllowArraySection=*/true);
8147 if (Res.second) {
8148 // It will be analyzed later.
8149 Vars.push_back(RefExpr);
8150 Privates.push_back(nullptr);
8151 LHSs.push_back(nullptr);
8152 RHSs.push_back(nullptr);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008153 // Try to find 'declare reduction' corresponding construct before using
8154 // builtin/overloaded operators.
8155 QualType Type = Context.DependentTy;
8156 CXXCastPath BasePath;
8157 ExprResult DeclareReductionRef = buildDeclareReductionRef(
8158 *this, ELoc, ERange, DSAStack->getCurScope(), ReductionIdScopeSpec,
8159 ReductionId, Type, BasePath, IR == ER ? nullptr : *IR);
8160 if (CurContext->isDependentContext() &&
8161 (DeclareReductionRef.isUnset() ||
8162 isa<UnresolvedLookupExpr>(DeclareReductionRef.get())))
8163 ReductionOps.push_back(DeclareReductionRef.get());
8164 else
8165 ReductionOps.push_back(nullptr);
Alexey Bataevc5e02582014-06-16 07:08:35 +00008166 }
Alexey Bataev60da77e2016-02-29 05:54:20 +00008167 ValueDecl *D = Res.first;
8168 if (!D)
8169 continue;
8170
Alexey Bataeva1764212015-09-30 09:22:36 +00008171 QualType Type;
Alexey Bataev60da77e2016-02-29 05:54:20 +00008172 auto *ASE = dyn_cast<ArraySubscriptExpr>(RefExpr->IgnoreParens());
8173 auto *OASE = dyn_cast<OMPArraySectionExpr>(RefExpr->IgnoreParens());
8174 if (ASE)
Alexey Bataev31300ed2016-02-04 11:27:03 +00008175 Type = ASE->getType().getNonReferenceType();
Alexey Bataev60da77e2016-02-29 05:54:20 +00008176 else if (OASE) {
Alexey Bataeva1764212015-09-30 09:22:36 +00008177 auto BaseType = OMPArraySectionExpr::getBaseOriginalType(OASE->getBase());
8178 if (auto *ATy = BaseType->getAsArrayTypeUnsafe())
8179 Type = ATy->getElementType();
8180 else
8181 Type = BaseType->getPointeeType();
Alexey Bataev31300ed2016-02-04 11:27:03 +00008182 Type = Type.getNonReferenceType();
Alexey Bataev60da77e2016-02-29 05:54:20 +00008183 } else
8184 Type = Context.getBaseElementType(D->getType().getNonReferenceType());
8185 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataeva1764212015-09-30 09:22:36 +00008186
Alexey Bataevc5e02582014-06-16 07:08:35 +00008187 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
8188 // A variable that appears in a private clause must not have an incomplete
8189 // type or a reference type.
8190 if (RequireCompleteType(ELoc, Type,
8191 diag::err_omp_reduction_incomplete_type))
8192 continue;
8193 // OpenMP [2.14.3.6, reduction clause, Restrictions]
Alexey Bataevc5e02582014-06-16 07:08:35 +00008194 // A list item that appears in a reduction clause must not be
8195 // const-qualified.
8196 if (Type.getNonReferenceType().isConstant(Context)) {
Alexey Bataeva1764212015-09-30 09:22:36 +00008197 Diag(ELoc, diag::err_omp_const_reduction_list_item)
Alexey Bataevc5e02582014-06-16 07:08:35 +00008198 << getOpenMPClauseName(OMPC_reduction) << Type << ERange;
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008199 if (!ASE && !OASE) {
Alexey Bataev60da77e2016-02-29 05:54:20 +00008200 bool IsDecl = !VD ||
8201 VD->isThisDeclarationADefinition(Context) ==
8202 VarDecl::DeclarationOnly;
8203 Diag(D->getLocation(),
Alexey Bataeva1764212015-09-30 09:22:36 +00008204 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataev60da77e2016-02-29 05:54:20 +00008205 << D;
Alexey Bataeva1764212015-09-30 09:22:36 +00008206 }
Alexey Bataevc5e02582014-06-16 07:08:35 +00008207 continue;
8208 }
8209 // OpenMP [2.9.3.6, Restrictions, C/C++, p.4]
8210 // If a list-item is a reference type then it must bind to the same object
8211 // for all threads of the team.
Alexey Bataev60da77e2016-02-29 05:54:20 +00008212 if (!ASE && !OASE && VD) {
Alexey Bataeva1764212015-09-30 09:22:36 +00008213 VarDecl *VDDef = VD->getDefinition();
Alexey Bataev31300ed2016-02-04 11:27:03 +00008214 if (VD->getType()->isReferenceType() && VDDef) {
Alexey Bataeva1764212015-09-30 09:22:36 +00008215 DSARefChecker Check(DSAStack);
8216 if (Check.Visit(VDDef->getInit())) {
8217 Diag(ELoc, diag::err_omp_reduction_ref_type_arg) << ERange;
8218 Diag(VDDef->getLocation(), diag::note_defined_here) << VDDef;
8219 continue;
8220 }
Alexey Bataevc5e02582014-06-16 07:08:35 +00008221 }
8222 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008223
Alexey Bataevc5e02582014-06-16 07:08:35 +00008224 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced
8225 // in a Construct]
8226 // Variables with the predetermined data-sharing attributes may not be
8227 // listed in data-sharing attributes clauses, except for the cases
8228 // listed below. For these exceptions only, listing a predetermined
8229 // variable in a data-sharing attribute clause is allowed and overrides
8230 // the variable's predetermined data-sharing attributes.
8231 // OpenMP [2.14.3.6, Restrictions, p.3]
8232 // Any number of reduction clauses can be specified on the directive,
8233 // but a list item can appear only once in the reduction clauses for that
8234 // directive.
Alexey Bataeva1764212015-09-30 09:22:36 +00008235 DSAStackTy::DSAVarData DVar;
Alexey Bataev60da77e2016-02-29 05:54:20 +00008236 DVar = DSAStack->getTopDSA(D, false);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008237 if (DVar.CKind == OMPC_reduction) {
8238 Diag(ELoc, diag::err_omp_once_referenced)
8239 << getOpenMPClauseName(OMPC_reduction);
Alexey Bataev60da77e2016-02-29 05:54:20 +00008240 if (DVar.RefExpr)
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008241 Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_referenced);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008242 } else if (DVar.CKind != OMPC_unknown) {
8243 Diag(ELoc, diag::err_omp_wrong_dsa)
8244 << getOpenMPClauseName(DVar.CKind)
8245 << getOpenMPClauseName(OMPC_reduction);
Alexey Bataev60da77e2016-02-29 05:54:20 +00008246 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008247 continue;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008248 }
8249
8250 // OpenMP [2.14.3.6, Restrictions, p.1]
8251 // A list item that appears in a reduction clause of a worksharing
8252 // construct must be shared in the parallel regions to which any of the
8253 // worksharing regions arising from the worksharing construct bind.
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008254 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
8255 if (isOpenMPWorksharingDirective(CurrDir) &&
8256 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataev60da77e2016-02-29 05:54:20 +00008257 DVar = DSAStack->getImplicitDSA(D, true);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008258 if (DVar.CKind != OMPC_shared) {
8259 Diag(ELoc, diag::err_omp_required_access)
8260 << getOpenMPClauseName(OMPC_reduction)
8261 << getOpenMPClauseName(OMPC_shared);
Alexey Bataev60da77e2016-02-29 05:54:20 +00008262 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008263 continue;
Alexey Bataevf29276e2014-06-18 04:14:57 +00008264 }
8265 }
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008266
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008267 // Try to find 'declare reduction' corresponding construct before using
8268 // builtin/overloaded operators.
8269 CXXCastPath BasePath;
8270 ExprResult DeclareReductionRef = buildDeclareReductionRef(
8271 *this, ELoc, ERange, DSAStack->getCurScope(), ReductionIdScopeSpec,
8272 ReductionId, Type, BasePath, IR == ER ? nullptr : *IR);
8273 if (DeclareReductionRef.isInvalid())
8274 continue;
8275 if (CurContext->isDependentContext() &&
8276 (DeclareReductionRef.isUnset() ||
8277 isa<UnresolvedLookupExpr>(DeclareReductionRef.get()))) {
8278 Vars.push_back(RefExpr);
8279 Privates.push_back(nullptr);
8280 LHSs.push_back(nullptr);
8281 RHSs.push_back(nullptr);
8282 ReductionOps.push_back(DeclareReductionRef.get());
8283 continue;
8284 }
8285 if (BOK == BO_Comma && DeclareReductionRef.isUnset()) {
8286 // Not allowed reduction identifier is found.
8287 Diag(ReductionId.getLocStart(),
8288 diag::err_omp_unknown_reduction_identifier)
8289 << Type << ReductionIdRange;
8290 continue;
8291 }
8292
8293 // OpenMP [2.14.3.6, reduction clause, Restrictions]
8294 // The type of a list item that appears in a reduction clause must be valid
8295 // for the reduction-identifier. For a max or min reduction in C, the type
8296 // of the list item must be an allowed arithmetic data type: char, int,
8297 // float, double, or _Bool, possibly modified with long, short, signed, or
8298 // unsigned. For a max or min reduction in C++, the type of the list item
8299 // must be an allowed arithmetic data type: char, wchar_t, int, float,
8300 // double, or bool, possibly modified with long, short, signed, or unsigned.
8301 if (DeclareReductionRef.isUnset()) {
8302 if ((BOK == BO_GT || BOK == BO_LT) &&
8303 !(Type->isScalarType() ||
8304 (getLangOpts().CPlusPlus && Type->isArithmeticType()))) {
8305 Diag(ELoc, diag::err_omp_clause_not_arithmetic_type_arg)
8306 << getLangOpts().CPlusPlus;
8307 if (!ASE && !OASE) {
8308 bool IsDecl = !VD ||
8309 VD->isThisDeclarationADefinition(Context) ==
8310 VarDecl::DeclarationOnly;
8311 Diag(D->getLocation(),
8312 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
8313 << D;
8314 }
8315 continue;
8316 }
8317 if ((BOK == BO_OrAssign || BOK == BO_AndAssign || BOK == BO_XorAssign) &&
8318 !getLangOpts().CPlusPlus && Type->isFloatingType()) {
8319 Diag(ELoc, diag::err_omp_clause_floating_type_arg);
8320 if (!ASE && !OASE) {
8321 bool IsDecl = !VD ||
8322 VD->isThisDeclarationADefinition(Context) ==
8323 VarDecl::DeclarationOnly;
8324 Diag(D->getLocation(),
8325 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
8326 << D;
8327 }
8328 continue;
8329 }
8330 }
8331
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008332 Type = Type.getNonLValueExprType(Context).getUnqualifiedType();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008333 auto *LHSVD = buildVarDecl(*this, ELoc, Type, ".reduction.lhs",
Alexey Bataev60da77e2016-02-29 05:54:20 +00008334 D->hasAttrs() ? &D->getAttrs() : nullptr);
8335 auto *RHSVD = buildVarDecl(*this, ELoc, Type, D->getName(),
8336 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008337 auto PrivateTy = Type;
Alexey Bataev1189bd02016-01-26 12:20:39 +00008338 if (OASE ||
Alexey Bataev60da77e2016-02-29 05:54:20 +00008339 (!ASE &&
8340 D->getType().getNonReferenceType()->isVariablyModifiedType())) {
Alexey Bataev1189bd02016-01-26 12:20:39 +00008341 // For arays/array sections only:
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008342 // Create pseudo array type for private copy. The size for this array will
8343 // be generated during codegen.
8344 // For array subscripts or single variables Private Ty is the same as Type
8345 // (type of the variable or single array element).
8346 PrivateTy = Context.getVariableArrayType(
8347 Type, new (Context) OpaqueValueExpr(SourceLocation(),
8348 Context.getSizeType(), VK_RValue),
8349 ArrayType::Normal, /*IndexTypeQuals=*/0, SourceRange());
Alexey Bataev60da77e2016-02-29 05:54:20 +00008350 } else if (!ASE && !OASE &&
8351 Context.getAsArrayType(D->getType().getNonReferenceType()))
8352 PrivateTy = D->getType().getNonReferenceType();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008353 // Private copy.
Alexey Bataev60da77e2016-02-29 05:54:20 +00008354 auto *PrivateVD = buildVarDecl(*this, ELoc, PrivateTy, D->getName(),
8355 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008356 // Add initializer for private variable.
8357 Expr *Init = nullptr;
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008358 auto *LHSDRE = buildDeclRefExpr(*this, LHSVD, Type, ELoc);
8359 auto *RHSDRE = buildDeclRefExpr(*this, RHSVD, Type, ELoc);
8360 if (DeclareReductionRef.isUsable()) {
8361 auto *DRDRef = DeclareReductionRef.getAs<DeclRefExpr>();
8362 auto *DRD = cast<OMPDeclareReductionDecl>(DRDRef->getDecl());
8363 if (DRD->getInitializer()) {
8364 Init = DRDRef;
8365 RHSVD->setInit(DRDRef);
8366 RHSVD->setInitStyle(VarDecl::CallInit);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008367 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008368 } else {
8369 switch (BOK) {
8370 case BO_Add:
8371 case BO_Xor:
8372 case BO_Or:
8373 case BO_LOr:
8374 // '+', '-', '^', '|', '||' reduction ops - initializer is '0'.
8375 if (Type->isScalarType() || Type->isAnyComplexType())
8376 Init = ActOnIntegerConstant(ELoc, /*Val=*/0).get();
8377 break;
8378 case BO_Mul:
8379 case BO_LAnd:
8380 if (Type->isScalarType() || Type->isAnyComplexType()) {
8381 // '*' and '&&' reduction ops - initializer is '1'.
8382 Init = ActOnIntegerConstant(ELoc, /*Val=*/1).get();
Alexey Bataevc5e02582014-06-16 07:08:35 +00008383 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008384 break;
8385 case BO_And: {
8386 // '&' reduction op - initializer is '~0'.
8387 QualType OrigType = Type;
8388 if (auto *ComplexTy = OrigType->getAs<ComplexType>())
8389 Type = ComplexTy->getElementType();
8390 if (Type->isRealFloatingType()) {
8391 llvm::APFloat InitValue =
8392 llvm::APFloat::getAllOnesValue(Context.getTypeSize(Type),
8393 /*isIEEE=*/true);
8394 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true,
8395 Type, ELoc);
8396 } else if (Type->isScalarType()) {
8397 auto Size = Context.getTypeSize(Type);
8398 QualType IntTy = Context.getIntTypeForBitwidth(Size, /*Signed=*/0);
8399 llvm::APInt InitValue = llvm::APInt::getAllOnesValue(Size);
8400 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc);
8401 }
8402 if (Init && OrigType->isAnyComplexType()) {
8403 // Init = 0xFFFF + 0xFFFFi;
8404 auto *Im = new (Context) ImaginaryLiteral(Init, OrigType);
8405 Init = CreateBuiltinBinOp(ELoc, BO_Add, Init, Im).get();
8406 }
8407 Type = OrigType;
8408 break;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008409 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008410 case BO_LT:
8411 case BO_GT: {
8412 // 'min' reduction op - initializer is 'Largest representable number in
8413 // the reduction list item type'.
8414 // 'max' reduction op - initializer is 'Least representable number in
8415 // the reduction list item type'.
8416 if (Type->isIntegerType() || Type->isPointerType()) {
8417 bool IsSigned = Type->hasSignedIntegerRepresentation();
8418 auto Size = Context.getTypeSize(Type);
8419 QualType IntTy =
8420 Context.getIntTypeForBitwidth(Size, /*Signed=*/IsSigned);
8421 llvm::APInt InitValue =
8422 (BOK != BO_LT)
8423 ? IsSigned ? llvm::APInt::getSignedMinValue(Size)
8424 : llvm::APInt::getMinValue(Size)
8425 : IsSigned ? llvm::APInt::getSignedMaxValue(Size)
8426 : llvm::APInt::getMaxValue(Size);
8427 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc);
8428 if (Type->isPointerType()) {
8429 // Cast to pointer type.
8430 auto CastExpr = BuildCStyleCastExpr(
8431 SourceLocation(), Context.getTrivialTypeSourceInfo(Type, ELoc),
8432 SourceLocation(), Init);
8433 if (CastExpr.isInvalid())
8434 continue;
8435 Init = CastExpr.get();
8436 }
8437 } else if (Type->isRealFloatingType()) {
8438 llvm::APFloat InitValue = llvm::APFloat::getLargest(
8439 Context.getFloatTypeSemantics(Type), BOK != BO_LT);
8440 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true,
8441 Type, ELoc);
8442 }
8443 break;
8444 }
8445 case BO_PtrMemD:
8446 case BO_PtrMemI:
8447 case BO_MulAssign:
8448 case BO_Div:
8449 case BO_Rem:
8450 case BO_Sub:
8451 case BO_Shl:
8452 case BO_Shr:
8453 case BO_LE:
8454 case BO_GE:
8455 case BO_EQ:
8456 case BO_NE:
8457 case BO_AndAssign:
8458 case BO_XorAssign:
8459 case BO_OrAssign:
8460 case BO_Assign:
8461 case BO_AddAssign:
8462 case BO_SubAssign:
8463 case BO_DivAssign:
8464 case BO_RemAssign:
8465 case BO_ShlAssign:
8466 case BO_ShrAssign:
8467 case BO_Comma:
8468 llvm_unreachable("Unexpected reduction operation");
8469 }
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008470 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008471 if (Init && DeclareReductionRef.isUnset()) {
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008472 AddInitializerToDecl(RHSVD, Init, /*DirectInit=*/false,
8473 /*TypeMayContainAuto=*/false);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008474 } else if (!Init)
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008475 ActOnUninitializedDecl(RHSVD, /*TypeMayContainAuto=*/false);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008476 if (RHSVD->isInvalidDecl())
8477 continue;
8478 if (!RHSVD->hasInit() && DeclareReductionRef.isUnset()) {
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008479 Diag(ELoc, diag::err_omp_reduction_id_not_compatible) << Type
8480 << ReductionIdRange;
Alexey Bataev60da77e2016-02-29 05:54:20 +00008481 bool IsDecl =
8482 !VD ||
8483 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
8484 Diag(D->getLocation(),
8485 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
8486 << D;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008487 continue;
8488 }
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008489 // Store initializer for single element in private copy. Will be used during
8490 // codegen.
8491 PrivateVD->setInit(RHSVD->getInit());
8492 PrivateVD->setInitStyle(RHSVD->getInitStyle());
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008493 auto *PrivateDRE = buildDeclRefExpr(*this, PrivateVD, PrivateTy, ELoc);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008494 ExprResult ReductionOp;
8495 if (DeclareReductionRef.isUsable()) {
8496 QualType RedTy = DeclareReductionRef.get()->getType();
8497 QualType PtrRedTy = Context.getPointerType(RedTy);
8498 ExprResult LHS = CreateBuiltinUnaryOp(ELoc, UO_AddrOf, LHSDRE);
8499 ExprResult RHS = CreateBuiltinUnaryOp(ELoc, UO_AddrOf, RHSDRE);
8500 if (!BasePath.empty()) {
8501 LHS = DefaultLvalueConversion(LHS.get());
8502 RHS = DefaultLvalueConversion(RHS.get());
8503 LHS = ImplicitCastExpr::Create(Context, PtrRedTy,
8504 CK_UncheckedDerivedToBase, LHS.get(),
8505 &BasePath, LHS.get()->getValueKind());
8506 RHS = ImplicitCastExpr::Create(Context, PtrRedTy,
8507 CK_UncheckedDerivedToBase, RHS.get(),
8508 &BasePath, RHS.get()->getValueKind());
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008509 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008510 FunctionProtoType::ExtProtoInfo EPI;
8511 QualType Params[] = {PtrRedTy, PtrRedTy};
8512 QualType FnTy = Context.getFunctionType(Context.VoidTy, Params, EPI);
8513 auto *OVE = new (Context) OpaqueValueExpr(
8514 ELoc, Context.getPointerType(FnTy), VK_RValue, OK_Ordinary,
8515 DefaultLvalueConversion(DeclareReductionRef.get()).get());
8516 Expr *Args[] = {LHS.get(), RHS.get()};
8517 ReductionOp = new (Context)
8518 CallExpr(Context, OVE, Args, Context.VoidTy, VK_RValue, ELoc);
8519 } else {
8520 ReductionOp = BuildBinOp(DSAStack->getCurScope(),
8521 ReductionId.getLocStart(), BOK, LHSDRE, RHSDRE);
8522 if (ReductionOp.isUsable()) {
8523 if (BOK != BO_LT && BOK != BO_GT) {
8524 ReductionOp =
8525 BuildBinOp(DSAStack->getCurScope(), ReductionId.getLocStart(),
8526 BO_Assign, LHSDRE, ReductionOp.get());
8527 } else {
8528 auto *ConditionalOp = new (Context) ConditionalOperator(
8529 ReductionOp.get(), SourceLocation(), LHSDRE, SourceLocation(),
8530 RHSDRE, Type, VK_LValue, OK_Ordinary);
8531 ReductionOp =
8532 BuildBinOp(DSAStack->getCurScope(), ReductionId.getLocStart(),
8533 BO_Assign, LHSDRE, ConditionalOp);
8534 }
8535 ReductionOp = ActOnFinishFullExpr(ReductionOp.get());
8536 }
8537 if (ReductionOp.isInvalid())
8538 continue;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008539 }
8540
Alexey Bataev60da77e2016-02-29 05:54:20 +00008541 DeclRefExpr *Ref = nullptr;
8542 Expr *VarsExpr = RefExpr->IgnoreParens();
8543 if (!VD) {
8544 if (ASE || OASE) {
8545 TransformExprToCaptures RebuildToCapture(*this, D);
8546 VarsExpr =
8547 RebuildToCapture.TransformExpr(RefExpr->IgnoreParens()).get();
8548 Ref = RebuildToCapture.getCapturedExpr();
Alexey Bataev61205072016-03-02 04:57:40 +00008549 } else {
8550 VarsExpr = Ref =
8551 buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false);
Alexey Bataev5a3af132016-03-29 08:58:54 +00008552 }
8553 if (!IsOpenMPCapturedDecl(D)) {
8554 ExprCaptures.push_back(Ref->getDecl());
8555 if (Ref->getDecl()->hasAttr<OMPCaptureNoInitAttr>()) {
8556 ExprResult RefRes = DefaultLvalueConversion(Ref);
8557 if (!RefRes.isUsable())
8558 continue;
8559 ExprResult PostUpdateRes =
8560 BuildBinOp(DSAStack->getCurScope(), ELoc, BO_Assign,
8561 SimpleRefExpr, RefRes.get());
8562 if (!PostUpdateRes.isUsable())
8563 continue;
8564 ExprPostUpdates.push_back(
8565 IgnoredValueConversions(PostUpdateRes.get()).get());
Alexey Bataev61205072016-03-02 04:57:40 +00008566 }
8567 }
Alexey Bataev60da77e2016-02-29 05:54:20 +00008568 }
8569 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_reduction, Ref);
8570 Vars.push_back(VarsExpr);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008571 Privates.push_back(PrivateDRE);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008572 LHSs.push_back(LHSDRE);
8573 RHSs.push_back(RHSDRE);
8574 ReductionOps.push_back(ReductionOp.get());
Alexey Bataevc5e02582014-06-16 07:08:35 +00008575 }
8576
8577 if (Vars.empty())
8578 return nullptr;
Alexey Bataev61205072016-03-02 04:57:40 +00008579
Alexey Bataevc5e02582014-06-16 07:08:35 +00008580 return OMPReductionClause::Create(
8581 Context, StartLoc, LParenLoc, ColonLoc, EndLoc, Vars,
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008582 ReductionIdScopeSpec.getWithLocInContext(Context), ReductionId, Privates,
Alexey Bataev5a3af132016-03-29 08:58:54 +00008583 LHSs, RHSs, ReductionOps, buildPreInits(Context, ExprCaptures),
8584 buildPostUpdate(*this, ExprPostUpdates));
Alexey Bataevc5e02582014-06-16 07:08:35 +00008585}
8586
Alexey Bataev182227b2015-08-20 10:54:39 +00008587OMPClause *Sema::ActOnOpenMPLinearClause(
8588 ArrayRef<Expr *> VarList, Expr *Step, SourceLocation StartLoc,
8589 SourceLocation LParenLoc, OpenMPLinearClauseKind LinKind,
8590 SourceLocation LinLoc, SourceLocation ColonLoc, SourceLocation EndLoc) {
Alexander Musman8dba6642014-04-22 13:09:42 +00008591 SmallVector<Expr *, 8> Vars;
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008592 SmallVector<Expr *, 8> Privates;
Alexander Musman3276a272015-03-21 10:12:56 +00008593 SmallVector<Expr *, 8> Inits;
Alexey Bataev78849fb2016-03-09 09:49:00 +00008594 SmallVector<Decl *, 4> ExprCaptures;
8595 SmallVector<Expr *, 4> ExprPostUpdates;
Alexey Bataev182227b2015-08-20 10:54:39 +00008596 if ((!LangOpts.CPlusPlus && LinKind != OMPC_LINEAR_val) ||
8597 LinKind == OMPC_LINEAR_unknown) {
8598 Diag(LinLoc, diag::err_omp_wrong_linear_modifier) << LangOpts.CPlusPlus;
8599 LinKind = OMPC_LINEAR_val;
8600 }
Alexey Bataeved09d242014-05-28 05:53:51 +00008601 for (auto &RefExpr : VarList) {
8602 assert(RefExpr && "NULL expr in OpenMP linear clause.");
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008603 SourceLocation ELoc;
8604 SourceRange ERange;
8605 Expr *SimpleRefExpr = RefExpr;
8606 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange,
8607 /*AllowArraySection=*/false);
8608 if (Res.second) {
Alexander Musman8dba6642014-04-22 13:09:42 +00008609 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00008610 Vars.push_back(RefExpr);
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008611 Privates.push_back(nullptr);
Alexander Musman3276a272015-03-21 10:12:56 +00008612 Inits.push_back(nullptr);
Alexander Musman8dba6642014-04-22 13:09:42 +00008613 }
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008614 ValueDecl *D = Res.first;
8615 if (!D)
Alexander Musman8dba6642014-04-22 13:09:42 +00008616 continue;
Alexander Musman8dba6642014-04-22 13:09:42 +00008617
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008618 QualType Type = D->getType();
8619 auto *VD = dyn_cast<VarDecl>(D);
Alexander Musman8dba6642014-04-22 13:09:42 +00008620
8621 // OpenMP [2.14.3.7, linear clause]
8622 // A list-item cannot appear in more than one linear clause.
8623 // A list-item that appears in a linear clause cannot appear in any
8624 // other data-sharing attribute clause.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008625 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexander Musman8dba6642014-04-22 13:09:42 +00008626 if (DVar.RefExpr) {
8627 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
8628 << getOpenMPClauseName(OMPC_linear);
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008629 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexander Musman8dba6642014-04-22 13:09:42 +00008630 continue;
8631 }
8632
8633 // A variable must not have an incomplete type or a reference type.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008634 if (RequireCompleteType(ELoc, Type,
8635 diag::err_omp_linear_incomplete_type))
Alexander Musman8dba6642014-04-22 13:09:42 +00008636 continue;
Alexey Bataev1185e192015-08-20 12:15:57 +00008637 if ((LinKind == OMPC_LINEAR_uval || LinKind == OMPC_LINEAR_ref) &&
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008638 !Type->isReferenceType()) {
Alexey Bataev1185e192015-08-20 12:15:57 +00008639 Diag(ELoc, diag::err_omp_wrong_linear_modifier_non_reference)
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008640 << Type << getOpenMPSimpleClauseTypeName(OMPC_linear, LinKind);
Alexey Bataev1185e192015-08-20 12:15:57 +00008641 continue;
8642 }
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008643 Type = Type.getNonReferenceType();
Alexander Musman8dba6642014-04-22 13:09:42 +00008644
8645 // A list item must not be const-qualified.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008646 if (Type.isConstant(Context)) {
Alexander Musman8dba6642014-04-22 13:09:42 +00008647 Diag(ELoc, diag::err_omp_const_variable)
8648 << getOpenMPClauseName(OMPC_linear);
8649 bool IsDecl =
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008650 !VD ||
Alexander Musman8dba6642014-04-22 13:09:42 +00008651 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008652 Diag(D->getLocation(),
Alexander Musman8dba6642014-04-22 13:09:42 +00008653 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008654 << D;
Alexander Musman8dba6642014-04-22 13:09:42 +00008655 continue;
8656 }
8657
8658 // A list item must be of integral or pointer type.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008659 Type = Type.getUnqualifiedType().getCanonicalType();
8660 const auto *Ty = Type.getTypePtrOrNull();
Alexander Musman8dba6642014-04-22 13:09:42 +00008661 if (!Ty || (!Ty->isDependentType() && !Ty->isIntegralType(Context) &&
8662 !Ty->isPointerType())) {
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008663 Diag(ELoc, diag::err_omp_linear_expected_int_or_ptr) << Type;
Alexander Musman8dba6642014-04-22 13:09:42 +00008664 bool IsDecl =
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008665 !VD ||
Alexander Musman8dba6642014-04-22 13:09:42 +00008666 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008667 Diag(D->getLocation(),
Alexander Musman8dba6642014-04-22 13:09:42 +00008668 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008669 << D;
Alexander Musman8dba6642014-04-22 13:09:42 +00008670 continue;
8671 }
8672
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008673 // Build private copy of original var.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008674 auto *Private = buildVarDecl(*this, ELoc, Type, D->getName(),
8675 D->hasAttrs() ? &D->getAttrs() : nullptr);
8676 auto *PrivateRef = buildDeclRefExpr(*this, Private, Type, ELoc);
Alexander Musman3276a272015-03-21 10:12:56 +00008677 // Build var to save initial value.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008678 VarDecl *Init = buildVarDecl(*this, ELoc, Type, ".linear.start");
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00008679 Expr *InitExpr;
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008680 DeclRefExpr *Ref = nullptr;
Alexey Bataev78849fb2016-03-09 09:49:00 +00008681 if (!VD) {
8682 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false);
8683 if (!IsOpenMPCapturedDecl(D)) {
8684 ExprCaptures.push_back(Ref->getDecl());
8685 if (Ref->getDecl()->hasAttr<OMPCaptureNoInitAttr>()) {
8686 ExprResult RefRes = DefaultLvalueConversion(Ref);
8687 if (!RefRes.isUsable())
8688 continue;
8689 ExprResult PostUpdateRes =
8690 BuildBinOp(DSAStack->getCurScope(), ELoc, BO_Assign,
8691 SimpleRefExpr, RefRes.get());
8692 if (!PostUpdateRes.isUsable())
8693 continue;
8694 ExprPostUpdates.push_back(
8695 IgnoredValueConversions(PostUpdateRes.get()).get());
8696 }
8697 }
8698 }
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00008699 if (LinKind == OMPC_LINEAR_uval)
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008700 InitExpr = VD ? VD->getInit() : SimpleRefExpr;
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00008701 else
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008702 InitExpr = VD ? SimpleRefExpr : Ref;
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00008703 AddInitializerToDecl(Init, DefaultLvalueConversion(InitExpr).get(),
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008704 /*DirectInit=*/false, /*TypeMayContainAuto=*/false);
8705 auto InitRef = buildDeclRefExpr(*this, Init, Type, ELoc);
8706
8707 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_linear, Ref);
8708 Vars.push_back(VD ? RefExpr->IgnoreParens() : Ref);
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008709 Privates.push_back(PrivateRef);
Alexander Musman3276a272015-03-21 10:12:56 +00008710 Inits.push_back(InitRef);
Alexander Musman8dba6642014-04-22 13:09:42 +00008711 }
8712
8713 if (Vars.empty())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00008714 return nullptr;
Alexander Musman8dba6642014-04-22 13:09:42 +00008715
8716 Expr *StepExpr = Step;
Alexander Musman3276a272015-03-21 10:12:56 +00008717 Expr *CalcStepExpr = nullptr;
Alexander Musman8dba6642014-04-22 13:09:42 +00008718 if (Step && !Step->isValueDependent() && !Step->isTypeDependent() &&
8719 !Step->isInstantiationDependent() &&
8720 !Step->containsUnexpandedParameterPack()) {
8721 SourceLocation StepLoc = Step->getLocStart();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00008722 ExprResult Val = PerformOpenMPImplicitIntegerConversion(StepLoc, Step);
Alexander Musman8dba6642014-04-22 13:09:42 +00008723 if (Val.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00008724 return nullptr;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008725 StepExpr = Val.get();
Alexander Musman8dba6642014-04-22 13:09:42 +00008726
Alexander Musman3276a272015-03-21 10:12:56 +00008727 // Build var to save the step value.
8728 VarDecl *SaveVar =
Alexey Bataev39f915b82015-05-08 10:41:21 +00008729 buildVarDecl(*this, StepLoc, StepExpr->getType(), ".linear.step");
Alexander Musman3276a272015-03-21 10:12:56 +00008730 ExprResult SaveRef =
Alexey Bataev39f915b82015-05-08 10:41:21 +00008731 buildDeclRefExpr(*this, SaveVar, StepExpr->getType(), StepLoc);
Alexander Musman3276a272015-03-21 10:12:56 +00008732 ExprResult CalcStep =
8733 BuildBinOp(CurScope, StepLoc, BO_Assign, SaveRef.get(), StepExpr);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00008734 CalcStep = ActOnFinishFullExpr(CalcStep.get());
Alexander Musman3276a272015-03-21 10:12:56 +00008735
Alexander Musman8dba6642014-04-22 13:09:42 +00008736 // Warn about zero linear step (it would be probably better specified as
8737 // making corresponding variables 'const').
8738 llvm::APSInt Result;
Alexander Musman3276a272015-03-21 10:12:56 +00008739 bool IsConstant = StepExpr->isIntegerConstantExpr(Result, Context);
8740 if (IsConstant && !Result.isNegative() && !Result.isStrictlyPositive())
Alexander Musman8dba6642014-04-22 13:09:42 +00008741 Diag(StepLoc, diag::warn_omp_linear_step_zero) << Vars[0]
8742 << (Vars.size() > 1);
Alexander Musman3276a272015-03-21 10:12:56 +00008743 if (!IsConstant && CalcStep.isUsable()) {
8744 // Calculate the step beforehand instead of doing this on each iteration.
8745 // (This is not used if the number of iterations may be kfold-ed).
8746 CalcStepExpr = CalcStep.get();
8747 }
Alexander Musman8dba6642014-04-22 13:09:42 +00008748 }
8749
Alexey Bataev182227b2015-08-20 10:54:39 +00008750 return OMPLinearClause::Create(Context, StartLoc, LParenLoc, LinKind, LinLoc,
8751 ColonLoc, EndLoc, Vars, Privates, Inits,
Alexey Bataev5a3af132016-03-29 08:58:54 +00008752 StepExpr, CalcStepExpr,
8753 buildPreInits(Context, ExprCaptures),
8754 buildPostUpdate(*this, ExprPostUpdates));
Alexander Musman3276a272015-03-21 10:12:56 +00008755}
8756
Alexey Bataev5a3af132016-03-29 08:58:54 +00008757static bool
8758FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV,
8759 Expr *NumIterations, Sema &SemaRef, Scope *S) {
Alexander Musman3276a272015-03-21 10:12:56 +00008760 // Walk the vars and build update/final expressions for the CodeGen.
8761 SmallVector<Expr *, 8> Updates;
8762 SmallVector<Expr *, 8> Finals;
8763 Expr *Step = Clause.getStep();
8764 Expr *CalcStep = Clause.getCalcStep();
8765 // OpenMP [2.14.3.7, linear clause]
8766 // If linear-step is not specified it is assumed to be 1.
8767 if (Step == nullptr)
8768 Step = SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get();
Alexey Bataev5a3af132016-03-29 08:58:54 +00008769 else if (CalcStep) {
Alexander Musman3276a272015-03-21 10:12:56 +00008770 Step = cast<BinaryOperator>(CalcStep)->getLHS();
Alexey Bataev5a3af132016-03-29 08:58:54 +00008771 }
Alexander Musman3276a272015-03-21 10:12:56 +00008772 bool HasErrors = false;
8773 auto CurInit = Clause.inits().begin();
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008774 auto CurPrivate = Clause.privates().begin();
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00008775 auto LinKind = Clause.getModifier();
Alexander Musman3276a272015-03-21 10:12:56 +00008776 for (auto &RefExpr : Clause.varlists()) {
8777 Expr *InitExpr = *CurInit;
8778
8779 // Build privatized reference to the current linear var.
8780 auto DE = cast<DeclRefExpr>(RefExpr);
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00008781 Expr *CapturedRef;
8782 if (LinKind == OMPC_LINEAR_uval)
8783 CapturedRef = cast<VarDecl>(DE->getDecl())->getInit();
8784 else
8785 CapturedRef =
8786 buildDeclRefExpr(SemaRef, cast<VarDecl>(DE->getDecl()),
8787 DE->getType().getUnqualifiedType(), DE->getExprLoc(),
8788 /*RefersToCapture=*/true);
Alexander Musman3276a272015-03-21 10:12:56 +00008789
8790 // Build update: Var = InitExpr + IV * Step
8791 ExprResult Update =
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008792 BuildCounterUpdate(SemaRef, S, RefExpr->getExprLoc(), *CurPrivate,
Alexander Musman3276a272015-03-21 10:12:56 +00008793 InitExpr, IV, Step, /* Subtract */ false);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00008794 Update = SemaRef.ActOnFinishFullExpr(Update.get(), DE->getLocStart(),
8795 /*DiscardedValue=*/true);
Alexander Musman3276a272015-03-21 10:12:56 +00008796
8797 // Build final: Var = InitExpr + NumIterations * Step
8798 ExprResult Final =
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008799 BuildCounterUpdate(SemaRef, S, RefExpr->getExprLoc(), CapturedRef,
Alexey Bataev39f915b82015-05-08 10:41:21 +00008800 InitExpr, NumIterations, Step, /* Subtract */ false);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00008801 Final = SemaRef.ActOnFinishFullExpr(Final.get(), DE->getLocStart(),
8802 /*DiscardedValue=*/true);
Alexander Musman3276a272015-03-21 10:12:56 +00008803 if (!Update.isUsable() || !Final.isUsable()) {
8804 Updates.push_back(nullptr);
8805 Finals.push_back(nullptr);
8806 HasErrors = true;
8807 } else {
8808 Updates.push_back(Update.get());
8809 Finals.push_back(Final.get());
8810 }
Richard Trieucc3949d2016-02-18 22:34:54 +00008811 ++CurInit;
8812 ++CurPrivate;
Alexander Musman3276a272015-03-21 10:12:56 +00008813 }
8814 Clause.setUpdates(Updates);
8815 Clause.setFinals(Finals);
8816 return HasErrors;
Alexander Musman8dba6642014-04-22 13:09:42 +00008817}
8818
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008819OMPClause *Sema::ActOnOpenMPAlignedClause(
8820 ArrayRef<Expr *> VarList, Expr *Alignment, SourceLocation StartLoc,
8821 SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc) {
8822
8823 SmallVector<Expr *, 8> Vars;
8824 for (auto &RefExpr : VarList) {
Alexey Bataev1efd1662016-03-29 10:59:56 +00008825 assert(RefExpr && "NULL expr in OpenMP linear clause.");
8826 SourceLocation ELoc;
8827 SourceRange ERange;
8828 Expr *SimpleRefExpr = RefExpr;
8829 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange,
8830 /*AllowArraySection=*/false);
8831 if (Res.second) {
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008832 // It will be analyzed later.
8833 Vars.push_back(RefExpr);
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008834 }
Alexey Bataev1efd1662016-03-29 10:59:56 +00008835 ValueDecl *D = Res.first;
8836 if (!D)
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008837 continue;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008838
Alexey Bataev1efd1662016-03-29 10:59:56 +00008839 QualType QType = D->getType();
8840 auto *VD = dyn_cast<VarDecl>(D);
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008841
8842 // OpenMP [2.8.1, simd construct, Restrictions]
8843 // The type of list items appearing in the aligned clause must be
8844 // array, pointer, reference to array, or reference to pointer.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008845 QType = QType.getNonReferenceType().getUnqualifiedType().getCanonicalType();
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008846 const Type *Ty = QType.getTypePtrOrNull();
Alexey Bataev1efd1662016-03-29 10:59:56 +00008847 if (!Ty || (!Ty->isArrayType() && !Ty->isPointerType())) {
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008848 Diag(ELoc, diag::err_omp_aligned_expected_array_or_ptr)
Alexey Bataev1efd1662016-03-29 10:59:56 +00008849 << QType << getLangOpts().CPlusPlus << ERange;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008850 bool IsDecl =
Alexey Bataev1efd1662016-03-29 10:59:56 +00008851 !VD ||
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008852 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev1efd1662016-03-29 10:59:56 +00008853 Diag(D->getLocation(),
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008854 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataev1efd1662016-03-29 10:59:56 +00008855 << D;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008856 continue;
8857 }
8858
8859 // OpenMP [2.8.1, simd construct, Restrictions]
8860 // A list-item cannot appear in more than one aligned clause.
Alexey Bataev1efd1662016-03-29 10:59:56 +00008861 if (Expr *PrevRef = DSAStack->addUniqueAligned(D, SimpleRefExpr)) {
8862 Diag(ELoc, diag::err_omp_aligned_twice) << ERange;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008863 Diag(PrevRef->getExprLoc(), diag::note_omp_explicit_dsa)
8864 << getOpenMPClauseName(OMPC_aligned);
8865 continue;
8866 }
8867
Alexey Bataev1efd1662016-03-29 10:59:56 +00008868 DeclRefExpr *Ref = nullptr;
8869 if (!VD && IsOpenMPCapturedDecl(D))
8870 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/true);
8871 Vars.push_back(DefaultFunctionArrayConversion(
8872 (VD || !Ref) ? RefExpr->IgnoreParens() : Ref)
8873 .get());
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008874 }
8875
8876 // OpenMP [2.8.1, simd construct, Description]
8877 // The parameter of the aligned clause, alignment, must be a constant
8878 // positive integer expression.
8879 // If no optional parameter is specified, implementation-defined default
8880 // alignments for SIMD instructions on the target platforms are assumed.
8881 if (Alignment != nullptr) {
8882 ExprResult AlignResult =
8883 VerifyPositiveIntegerConstantInClause(Alignment, OMPC_aligned);
8884 if (AlignResult.isInvalid())
8885 return nullptr;
8886 Alignment = AlignResult.get();
8887 }
8888 if (Vars.empty())
8889 return nullptr;
8890
8891 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc,
8892 EndLoc, Vars, Alignment);
8893}
8894
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008895OMPClause *Sema::ActOnOpenMPCopyinClause(ArrayRef<Expr *> VarList,
8896 SourceLocation StartLoc,
8897 SourceLocation LParenLoc,
8898 SourceLocation EndLoc) {
8899 SmallVector<Expr *, 8> Vars;
Alexey Bataevf56f98c2015-04-16 05:39:01 +00008900 SmallVector<Expr *, 8> SrcExprs;
8901 SmallVector<Expr *, 8> DstExprs;
8902 SmallVector<Expr *, 8> AssignmentOps;
Alexey Bataeved09d242014-05-28 05:53:51 +00008903 for (auto &RefExpr : VarList) {
8904 assert(RefExpr && "NULL expr in OpenMP copyin clause.");
8905 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008906 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00008907 Vars.push_back(RefExpr);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00008908 SrcExprs.push_back(nullptr);
8909 DstExprs.push_back(nullptr);
8910 AssignmentOps.push_back(nullptr);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008911 continue;
8912 }
8913
Alexey Bataeved09d242014-05-28 05:53:51 +00008914 SourceLocation ELoc = RefExpr->getExprLoc();
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008915 // OpenMP [2.1, C/C++]
8916 // A list item is a variable name.
8917 // OpenMP [2.14.4.1, Restrictions, p.1]
8918 // A list item that appears in a copyin clause must be threadprivate.
Alexey Bataeved09d242014-05-28 05:53:51 +00008919 DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008920 if (!DE || !isa<VarDecl>(DE->getDecl())) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008921 Diag(ELoc, diag::err_omp_expected_var_name_member_expr)
8922 << 0 << RefExpr->getSourceRange();
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008923 continue;
8924 }
8925
8926 Decl *D = DE->getDecl();
8927 VarDecl *VD = cast<VarDecl>(D);
8928
8929 QualType Type = VD->getType();
8930 if (Type->isDependentType() || Type->isInstantiationDependentType()) {
8931 // It will be analyzed later.
8932 Vars.push_back(DE);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00008933 SrcExprs.push_back(nullptr);
8934 DstExprs.push_back(nullptr);
8935 AssignmentOps.push_back(nullptr);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008936 continue;
8937 }
8938
8939 // OpenMP [2.14.4.1, Restrictions, C/C++, p.1]
8940 // A list item that appears in a copyin clause must be threadprivate.
8941 if (!DSAStack->isThreadPrivate(VD)) {
8942 Diag(ELoc, diag::err_omp_required_access)
Alexey Bataeved09d242014-05-28 05:53:51 +00008943 << getOpenMPClauseName(OMPC_copyin)
8944 << getOpenMPDirectiveName(OMPD_threadprivate);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008945 continue;
8946 }
8947
8948 // OpenMP [2.14.4.1, Restrictions, C/C++, p.2]
8949 // A variable of class type (or array thereof) that appears in a
Alexey Bataev23b69422014-06-18 07:08:49 +00008950 // copyin clause requires an accessible, unambiguous copy assignment
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008951 // operator for the class type.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008952 auto ElemType = Context.getBaseElementType(Type).getNonReferenceType();
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00008953 auto *SrcVD =
8954 buildVarDecl(*this, DE->getLocStart(), ElemType.getUnqualifiedType(),
8955 ".copyin.src", VD->hasAttrs() ? &VD->getAttrs() : nullptr);
Alexey Bataev39f915b82015-05-08 10:41:21 +00008956 auto *PseudoSrcExpr = buildDeclRefExpr(
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008957 *this, SrcVD, ElemType.getUnqualifiedType(), DE->getExprLoc());
8958 auto *DstVD =
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00008959 buildVarDecl(*this, DE->getLocStart(), ElemType, ".copyin.dst",
8960 VD->hasAttrs() ? &VD->getAttrs() : nullptr);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00008961 auto *PseudoDstExpr =
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008962 buildDeclRefExpr(*this, DstVD, ElemType, DE->getExprLoc());
Alexey Bataevf56f98c2015-04-16 05:39:01 +00008963 // For arrays generate assignment operation for single element and replace
8964 // it by the original array element in CodeGen.
8965 auto AssignmentOp = BuildBinOp(/*S=*/nullptr, DE->getExprLoc(), BO_Assign,
8966 PseudoDstExpr, PseudoSrcExpr);
8967 if (AssignmentOp.isInvalid())
8968 continue;
8969 AssignmentOp = ActOnFinishFullExpr(AssignmentOp.get(), DE->getExprLoc(),
8970 /*DiscardedValue=*/true);
8971 if (AssignmentOp.isInvalid())
8972 continue;
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008973
8974 DSAStack->addDSA(VD, DE, OMPC_copyin);
8975 Vars.push_back(DE);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00008976 SrcExprs.push_back(PseudoSrcExpr);
8977 DstExprs.push_back(PseudoDstExpr);
8978 AssignmentOps.push_back(AssignmentOp.get());
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008979 }
8980
Alexey Bataeved09d242014-05-28 05:53:51 +00008981 if (Vars.empty())
8982 return nullptr;
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008983
Alexey Bataevf56f98c2015-04-16 05:39:01 +00008984 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars,
8985 SrcExprs, DstExprs, AssignmentOps);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008986}
8987
Alexey Bataevbae9a792014-06-27 10:37:06 +00008988OMPClause *Sema::ActOnOpenMPCopyprivateClause(ArrayRef<Expr *> VarList,
8989 SourceLocation StartLoc,
8990 SourceLocation LParenLoc,
8991 SourceLocation EndLoc) {
8992 SmallVector<Expr *, 8> Vars;
Alexey Bataeva63048e2015-03-23 06:18:07 +00008993 SmallVector<Expr *, 8> SrcExprs;
8994 SmallVector<Expr *, 8> DstExprs;
8995 SmallVector<Expr *, 8> AssignmentOps;
Alexey Bataevbae9a792014-06-27 10:37:06 +00008996 for (auto &RefExpr : VarList) {
Alexey Bataeve122da12016-03-17 10:50:17 +00008997 assert(RefExpr && "NULL expr in OpenMP linear clause.");
8998 SourceLocation ELoc;
8999 SourceRange ERange;
9000 Expr *SimpleRefExpr = RefExpr;
9001 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange,
9002 /*AllowArraySection=*/false);
9003 if (Res.second) {
Alexey Bataevbae9a792014-06-27 10:37:06 +00009004 // It will be analyzed later.
9005 Vars.push_back(RefExpr);
Alexey Bataeva63048e2015-03-23 06:18:07 +00009006 SrcExprs.push_back(nullptr);
9007 DstExprs.push_back(nullptr);
9008 AssignmentOps.push_back(nullptr);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009009 }
Alexey Bataeve122da12016-03-17 10:50:17 +00009010 ValueDecl *D = Res.first;
9011 if (!D)
Alexey Bataevbae9a792014-06-27 10:37:06 +00009012 continue;
Alexey Bataevbae9a792014-06-27 10:37:06 +00009013
Alexey Bataeve122da12016-03-17 10:50:17 +00009014 QualType Type = D->getType();
9015 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009016
9017 // OpenMP [2.14.4.2, Restrictions, p.2]
9018 // A list item that appears in a copyprivate clause may not appear in a
9019 // private or firstprivate clause on the single construct.
Alexey Bataeve122da12016-03-17 10:50:17 +00009020 if (!VD || !DSAStack->isThreadPrivate(VD)) {
9021 auto DVar = DSAStack->getTopDSA(D, false);
Alexey Bataeva63048e2015-03-23 06:18:07 +00009022 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_copyprivate &&
9023 DVar.RefExpr) {
Alexey Bataevbae9a792014-06-27 10:37:06 +00009024 Diag(ELoc, diag::err_omp_wrong_dsa)
9025 << getOpenMPClauseName(DVar.CKind)
9026 << getOpenMPClauseName(OMPC_copyprivate);
Alexey Bataeve122da12016-03-17 10:50:17 +00009027 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009028 continue;
9029 }
9030
9031 // OpenMP [2.11.4.2, Restrictions, p.1]
9032 // All list items that appear in a copyprivate clause must be either
9033 // threadprivate or private in the enclosing context.
9034 if (DVar.CKind == OMPC_unknown) {
Alexey Bataeve122da12016-03-17 10:50:17 +00009035 DVar = DSAStack->getImplicitDSA(D, false);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009036 if (DVar.CKind == OMPC_shared) {
9037 Diag(ELoc, diag::err_omp_required_access)
9038 << getOpenMPClauseName(OMPC_copyprivate)
9039 << "threadprivate or private in the enclosing context";
Alexey Bataeve122da12016-03-17 10:50:17 +00009040 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009041 continue;
9042 }
9043 }
9044 }
9045
Alexey Bataev7a3e5852015-05-19 08:19:24 +00009046 // Variably modified types are not supported.
Alexey Bataev5129d3a2015-05-21 09:47:46 +00009047 if (!Type->isAnyPointerType() && Type->isVariablyModifiedType()) {
Alexey Bataev7a3e5852015-05-19 08:19:24 +00009048 Diag(ELoc, diag::err_omp_variably_modified_type_not_supported)
Alexey Bataevccb59ec2015-05-19 08:44:56 +00009049 << getOpenMPClauseName(OMPC_copyprivate) << Type
9050 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
Alexey Bataev7a3e5852015-05-19 08:19:24 +00009051 bool IsDecl =
Alexey Bataeve122da12016-03-17 10:50:17 +00009052 !VD ||
Alexey Bataev7a3e5852015-05-19 08:19:24 +00009053 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataeve122da12016-03-17 10:50:17 +00009054 Diag(D->getLocation(),
Alexey Bataev7a3e5852015-05-19 08:19:24 +00009055 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataeve122da12016-03-17 10:50:17 +00009056 << D;
Alexey Bataev7a3e5852015-05-19 08:19:24 +00009057 continue;
9058 }
Alexey Bataevccb59ec2015-05-19 08:44:56 +00009059
Alexey Bataevbae9a792014-06-27 10:37:06 +00009060 // OpenMP [2.14.4.1, Restrictions, C/C++, p.2]
9061 // A variable of class type (or array thereof) that appears in a
9062 // copyin clause requires an accessible, unambiguous copy assignment
9063 // operator for the class type.
Alexey Bataevbd9fec12015-08-18 06:47:21 +00009064 Type = Context.getBaseElementType(Type.getNonReferenceType())
9065 .getUnqualifiedType();
Alexey Bataev420d45b2015-04-14 05:11:24 +00009066 auto *SrcVD =
Alexey Bataeve122da12016-03-17 10:50:17 +00009067 buildVarDecl(*this, RefExpr->getLocStart(), Type, ".copyprivate.src",
9068 D->hasAttrs() ? &D->getAttrs() : nullptr);
9069 auto *PseudoSrcExpr = buildDeclRefExpr(*this, SrcVD, Type, ELoc);
Alexey Bataev420d45b2015-04-14 05:11:24 +00009070 auto *DstVD =
Alexey Bataeve122da12016-03-17 10:50:17 +00009071 buildVarDecl(*this, RefExpr->getLocStart(), Type, ".copyprivate.dst",
9072 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataev420d45b2015-04-14 05:11:24 +00009073 auto *PseudoDstExpr =
Alexey Bataeve122da12016-03-17 10:50:17 +00009074 buildDeclRefExpr(*this, DstVD, Type, ELoc);
9075 auto AssignmentOp = BuildBinOp(DSAStack->getCurScope(), ELoc, BO_Assign,
Alexey Bataeva63048e2015-03-23 06:18:07 +00009076 PseudoDstExpr, PseudoSrcExpr);
9077 if (AssignmentOp.isInvalid())
9078 continue;
Alexey Bataeve122da12016-03-17 10:50:17 +00009079 AssignmentOp = ActOnFinishFullExpr(AssignmentOp.get(), ELoc,
Alexey Bataeva63048e2015-03-23 06:18:07 +00009080 /*DiscardedValue=*/true);
9081 if (AssignmentOp.isInvalid())
9082 continue;
Alexey Bataevbae9a792014-06-27 10:37:06 +00009083
9084 // No need to mark vars as copyprivate, they are already threadprivate or
9085 // implicitly private.
Alexey Bataeve122da12016-03-17 10:50:17 +00009086 assert(VD || IsOpenMPCapturedDecl(D));
9087 Vars.push_back(
9088 VD ? RefExpr->IgnoreParens()
9089 : buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false));
Alexey Bataeva63048e2015-03-23 06:18:07 +00009090 SrcExprs.push_back(PseudoSrcExpr);
9091 DstExprs.push_back(PseudoDstExpr);
9092 AssignmentOps.push_back(AssignmentOp.get());
Alexey Bataevbae9a792014-06-27 10:37:06 +00009093 }
9094
9095 if (Vars.empty())
9096 return nullptr;
9097
Alexey Bataeva63048e2015-03-23 06:18:07 +00009098 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
9099 Vars, SrcExprs, DstExprs, AssignmentOps);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009100}
9101
Alexey Bataev6125da92014-07-21 11:26:11 +00009102OMPClause *Sema::ActOnOpenMPFlushClause(ArrayRef<Expr *> VarList,
9103 SourceLocation StartLoc,
9104 SourceLocation LParenLoc,
9105 SourceLocation EndLoc) {
9106 if (VarList.empty())
9107 return nullptr;
9108
9109 return OMPFlushClause::Create(Context, StartLoc, LParenLoc, EndLoc, VarList);
9110}
Alexey Bataevdea47612014-07-23 07:46:59 +00009111
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00009112OMPClause *
9113Sema::ActOnOpenMPDependClause(OpenMPDependClauseKind DepKind,
9114 SourceLocation DepLoc, SourceLocation ColonLoc,
9115 ArrayRef<Expr *> VarList, SourceLocation StartLoc,
9116 SourceLocation LParenLoc, SourceLocation EndLoc) {
Alexey Bataeveb482352015-12-18 05:05:56 +00009117 if (DSAStack->getCurrentDirective() == OMPD_ordered &&
Alexey Bataeva636c7f2015-12-23 10:27:45 +00009118 DepKind != OMPC_DEPEND_source && DepKind != OMPC_DEPEND_sink) {
Alexey Bataeveb482352015-12-18 05:05:56 +00009119 Diag(DepLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataev6402bca2015-12-28 07:25:51 +00009120 << "'source' or 'sink'" << getOpenMPClauseName(OMPC_depend);
Alexey Bataeveb482352015-12-18 05:05:56 +00009121 return nullptr;
9122 }
9123 if (DSAStack->getCurrentDirective() != OMPD_ordered &&
Alexey Bataeva636c7f2015-12-23 10:27:45 +00009124 (DepKind == OMPC_DEPEND_unknown || DepKind == OMPC_DEPEND_source ||
9125 DepKind == OMPC_DEPEND_sink)) {
Alexey Bataev6402bca2015-12-28 07:25:51 +00009126 unsigned Except[] = {OMPC_DEPEND_source, OMPC_DEPEND_sink};
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00009127 Diag(DepLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataev6402bca2015-12-28 07:25:51 +00009128 << getListOfPossibleValues(OMPC_depend, /*First=*/0,
9129 /*Last=*/OMPC_DEPEND_unknown, Except)
9130 << getOpenMPClauseName(OMPC_depend);
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00009131 return nullptr;
9132 }
9133 SmallVector<Expr *, 8> Vars;
Alexey Bataeva636c7f2015-12-23 10:27:45 +00009134 llvm::APSInt DepCounter(/*BitWidth=*/32);
9135 llvm::APSInt TotalDepCount(/*BitWidth=*/32);
9136 if (DepKind == OMPC_DEPEND_sink) {
9137 if (auto *OrderedCountExpr = DSAStack->getParentOrderedRegionParam()) {
9138 TotalDepCount = OrderedCountExpr->EvaluateKnownConstInt(Context);
9139 TotalDepCount.setIsUnsigned(/*Val=*/true);
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00009140 }
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00009141 }
Alexey Bataeva636c7f2015-12-23 10:27:45 +00009142 if ((DepKind != OMPC_DEPEND_sink && DepKind != OMPC_DEPEND_source) ||
9143 DSAStack->getParentOrderedRegionParam()) {
9144 for (auto &RefExpr : VarList) {
9145 assert(RefExpr && "NULL expr in OpenMP shared clause.");
9146 if (isa<DependentScopeDeclRefExpr>(RefExpr) ||
9147 (DepKind == OMPC_DEPEND_sink && CurContext->isDependentContext())) {
9148 // It will be analyzed later.
9149 Vars.push_back(RefExpr);
9150 continue;
9151 }
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00009152
Alexey Bataeva636c7f2015-12-23 10:27:45 +00009153 SourceLocation ELoc = RefExpr->getExprLoc();
9154 auto *SimpleExpr = RefExpr->IgnoreParenCasts();
9155 if (DepKind == OMPC_DEPEND_sink) {
9156 if (DepCounter >= TotalDepCount) {
9157 Diag(ELoc, diag::err_omp_depend_sink_unexpected_expr);
9158 continue;
9159 }
9160 ++DepCounter;
9161 // OpenMP [2.13.9, Summary]
9162 // depend(dependence-type : vec), where dependence-type is:
9163 // 'sink' and where vec is the iteration vector, which has the form:
9164 // x1 [+- d1], x2 [+- d2 ], . . . , xn [+- dn]
9165 // where n is the value specified by the ordered clause in the loop
9166 // directive, xi denotes the loop iteration variable of the i-th nested
9167 // loop associated with the loop directive, and di is a constant
9168 // non-negative integer.
9169 SimpleExpr = SimpleExpr->IgnoreImplicit();
9170 auto *DE = dyn_cast<DeclRefExpr>(SimpleExpr);
9171 if (!DE) {
9172 OverloadedOperatorKind OOK = OO_None;
9173 SourceLocation OOLoc;
9174 Expr *LHS, *RHS;
9175 if (auto *BO = dyn_cast<BinaryOperator>(SimpleExpr)) {
9176 OOK = BinaryOperator::getOverloadedOperator(BO->getOpcode());
9177 OOLoc = BO->getOperatorLoc();
9178 LHS = BO->getLHS()->IgnoreParenImpCasts();
9179 RHS = BO->getRHS()->IgnoreParenImpCasts();
9180 } else if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(SimpleExpr)) {
9181 OOK = OCE->getOperator();
9182 OOLoc = OCE->getOperatorLoc();
9183 LHS = OCE->getArg(/*Arg=*/0)->IgnoreParenImpCasts();
9184 RHS = OCE->getArg(/*Arg=*/1)->IgnoreParenImpCasts();
9185 } else if (auto *MCE = dyn_cast<CXXMemberCallExpr>(SimpleExpr)) {
9186 OOK = MCE->getMethodDecl()
9187 ->getNameInfo()
9188 .getName()
9189 .getCXXOverloadedOperator();
9190 OOLoc = MCE->getCallee()->getExprLoc();
9191 LHS = MCE->getImplicitObjectArgument()->IgnoreParenImpCasts();
9192 RHS = MCE->getArg(/*Arg=*/0)->IgnoreParenImpCasts();
9193 } else {
9194 Diag(ELoc, diag::err_omp_depend_sink_wrong_expr);
9195 continue;
9196 }
9197 DE = dyn_cast<DeclRefExpr>(LHS);
9198 if (!DE) {
9199 Diag(LHS->getExprLoc(),
9200 diag::err_omp_depend_sink_expected_loop_iteration)
9201 << DSAStack->getParentLoopControlVariable(
9202 DepCounter.getZExtValue());
9203 continue;
9204 }
9205 if (OOK != OO_Plus && OOK != OO_Minus) {
9206 Diag(OOLoc, diag::err_omp_depend_sink_expected_plus_minus);
9207 continue;
9208 }
9209 ExprResult Res = VerifyPositiveIntegerConstantInClause(
9210 RHS, OMPC_depend, /*StrictlyPositive=*/false);
9211 if (Res.isInvalid())
9212 continue;
9213 }
9214 auto *VD = dyn_cast<VarDecl>(DE->getDecl());
9215 if (!CurContext->isDependentContext() &&
9216 DSAStack->getParentOrderedRegionParam() &&
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00009217 (!VD ||
9218 DepCounter != DSAStack->isParentLoopControlVariable(VD).first)) {
Alexey Bataeva636c7f2015-12-23 10:27:45 +00009219 Diag(DE->getExprLoc(),
9220 diag::err_omp_depend_sink_expected_loop_iteration)
9221 << DSAStack->getParentLoopControlVariable(
9222 DepCounter.getZExtValue());
9223 continue;
9224 }
9225 } else {
9226 // OpenMP [2.11.1.1, Restrictions, p.3]
9227 // A variable that is part of another variable (such as a field of a
9228 // structure) but is not an array element or an array section cannot
9229 // appear in a depend clause.
9230 auto *DE = dyn_cast<DeclRefExpr>(SimpleExpr);
9231 auto *ASE = dyn_cast<ArraySubscriptExpr>(SimpleExpr);
9232 auto *OASE = dyn_cast<OMPArraySectionExpr>(SimpleExpr);
9233 if (!RefExpr->IgnoreParenImpCasts()->isLValue() ||
9234 (!ASE && !DE && !OASE) || (DE && !isa<VarDecl>(DE->getDecl())) ||
Alexey Bataev31300ed2016-02-04 11:27:03 +00009235 (ASE &&
9236 !ASE->getBase()
9237 ->getType()
9238 .getNonReferenceType()
9239 ->isPointerType() &&
9240 !ASE->getBase()->getType().getNonReferenceType()->isArrayType())) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00009241 Diag(ELoc, diag::err_omp_expected_var_name_member_expr_or_array_item)
9242 << 0 << RefExpr->getSourceRange();
Alexey Bataeva636c7f2015-12-23 10:27:45 +00009243 continue;
9244 }
9245 }
9246
9247 Vars.push_back(RefExpr->IgnoreParenImpCasts());
9248 }
9249
9250 if (!CurContext->isDependentContext() && DepKind == OMPC_DEPEND_sink &&
9251 TotalDepCount > VarList.size() &&
9252 DSAStack->getParentOrderedRegionParam()) {
9253 Diag(EndLoc, diag::err_omp_depend_sink_expected_loop_iteration)
9254 << DSAStack->getParentLoopControlVariable(VarList.size() + 1);
9255 }
9256 if (DepKind != OMPC_DEPEND_source && DepKind != OMPC_DEPEND_sink &&
9257 Vars.empty())
9258 return nullptr;
9259 }
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00009260
9261 return OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc, DepKind,
9262 DepLoc, ColonLoc, Vars);
9263}
Michael Wonge710d542015-08-07 16:16:36 +00009264
9265OMPClause *Sema::ActOnOpenMPDeviceClause(Expr *Device, SourceLocation StartLoc,
9266 SourceLocation LParenLoc,
9267 SourceLocation EndLoc) {
9268 Expr *ValExpr = Device;
Michael Wonge710d542015-08-07 16:16:36 +00009269
Kelvin Lia15fb1a2015-11-27 18:47:36 +00009270 // OpenMP [2.9.1, Restrictions]
9271 // The device expression must evaluate to a non-negative integer value.
Alexey Bataeva0569352015-12-01 10:17:31 +00009272 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_device,
9273 /*StrictlyPositive=*/false))
Kelvin Lia15fb1a2015-11-27 18:47:36 +00009274 return nullptr;
9275
Michael Wonge710d542015-08-07 16:16:36 +00009276 return new (Context) OMPDeviceClause(ValExpr, StartLoc, LParenLoc, EndLoc);
9277}
Kelvin Li0bff7af2015-11-23 05:32:03 +00009278
9279static bool IsCXXRecordForMappable(Sema &SemaRef, SourceLocation Loc,
9280 DSAStackTy *Stack, CXXRecordDecl *RD) {
9281 if (!RD || RD->isInvalidDecl())
9282 return true;
9283
Alexey Bataevc9bd03d2015-12-17 06:55:08 +00009284 if (auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(RD))
9285 if (auto *CTD = CTSD->getSpecializedTemplate())
9286 RD = CTD->getTemplatedDecl();
Kelvin Li0bff7af2015-11-23 05:32:03 +00009287 auto QTy = SemaRef.Context.getRecordType(RD);
9288 if (RD->isDynamicClass()) {
9289 SemaRef.Diag(Loc, diag::err_omp_not_mappable_type) << QTy;
9290 SemaRef.Diag(RD->getLocation(), diag::note_omp_polymorphic_in_target);
9291 return false;
9292 }
9293 auto *DC = RD;
9294 bool IsCorrect = true;
9295 for (auto *I : DC->decls()) {
9296 if (I) {
9297 if (auto *MD = dyn_cast<CXXMethodDecl>(I)) {
9298 if (MD->isStatic()) {
9299 SemaRef.Diag(Loc, diag::err_omp_not_mappable_type) << QTy;
9300 SemaRef.Diag(MD->getLocation(),
9301 diag::note_omp_static_member_in_target);
9302 IsCorrect = false;
9303 }
9304 } else if (auto *VD = dyn_cast<VarDecl>(I)) {
9305 if (VD->isStaticDataMember()) {
9306 SemaRef.Diag(Loc, diag::err_omp_not_mappable_type) << QTy;
9307 SemaRef.Diag(VD->getLocation(),
9308 diag::note_omp_static_member_in_target);
9309 IsCorrect = false;
9310 }
9311 }
9312 }
9313 }
9314
9315 for (auto &I : RD->bases()) {
9316 if (!IsCXXRecordForMappable(SemaRef, I.getLocStart(), Stack,
9317 I.getType()->getAsCXXRecordDecl()))
9318 IsCorrect = false;
9319 }
9320 return IsCorrect;
9321}
9322
9323static bool CheckTypeMappable(SourceLocation SL, SourceRange SR, Sema &SemaRef,
9324 DSAStackTy *Stack, QualType QTy) {
9325 NamedDecl *ND;
9326 if (QTy->isIncompleteType(&ND)) {
9327 SemaRef.Diag(SL, diag::err_incomplete_type) << QTy << SR;
9328 return false;
9329 } else if (CXXRecordDecl *RD = dyn_cast_or_null<CXXRecordDecl>(ND)) {
9330 if (!RD->isInvalidDecl() &&
9331 !IsCXXRecordForMappable(SemaRef, SL, Stack, RD))
9332 return false;
9333 }
9334 return true;
9335}
9336
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009337/// \brief Return true if it can be proven that the provided array expression
9338/// (array section or array subscript) does NOT specify the whole size of the
9339/// array whose base type is \a BaseQTy.
9340static bool CheckArrayExpressionDoesNotReferToWholeSize(Sema &SemaRef,
9341 const Expr *E,
9342 QualType BaseQTy) {
9343 auto *OASE = dyn_cast<OMPArraySectionExpr>(E);
9344
9345 // If this is an array subscript, it refers to the whole size if the size of
9346 // the dimension is constant and equals 1. Also, an array section assumes the
9347 // format of an array subscript if no colon is used.
9348 if (isa<ArraySubscriptExpr>(E) || (OASE && OASE->getColonLoc().isInvalid())) {
9349 if (auto *ATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr()))
9350 return ATy->getSize().getSExtValue() != 1;
9351 // Size can't be evaluated statically.
9352 return false;
9353 }
9354
9355 assert(OASE && "Expecting array section if not an array subscript.");
9356 auto *LowerBound = OASE->getLowerBound();
9357 auto *Length = OASE->getLength();
9358
9359 // If there is a lower bound that does not evaluates to zero, we are not
9360 // convering the whole dimension.
9361 if (LowerBound) {
9362 llvm::APSInt ConstLowerBound;
9363 if (!LowerBound->EvaluateAsInt(ConstLowerBound, SemaRef.getASTContext()))
9364 return false; // Can't get the integer value as a constant.
9365 if (ConstLowerBound.getSExtValue())
9366 return true;
9367 }
9368
9369 // If we don't have a length we covering the whole dimension.
9370 if (!Length)
9371 return false;
9372
9373 // If the base is a pointer, we don't have a way to get the size of the
9374 // pointee.
9375 if (BaseQTy->isPointerType())
9376 return false;
9377
9378 // We can only check if the length is the same as the size of the dimension
9379 // if we have a constant array.
9380 auto *CATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr());
9381 if (!CATy)
9382 return false;
9383
9384 llvm::APSInt ConstLength;
9385 if (!Length->EvaluateAsInt(ConstLength, SemaRef.getASTContext()))
9386 return false; // Can't get the integer value as a constant.
9387
9388 return CATy->getSize().getSExtValue() != ConstLength.getSExtValue();
9389}
9390
9391// Return true if it can be proven that the provided array expression (array
9392// section or array subscript) does NOT specify a single element of the array
9393// whose base type is \a BaseQTy.
9394static bool CheckArrayExpressionDoesNotReferToUnitySize(Sema &SemaRef,
9395 const Expr *E,
9396 QualType BaseQTy) {
9397 auto *OASE = dyn_cast<OMPArraySectionExpr>(E);
9398
9399 // An array subscript always refer to a single element. Also, an array section
9400 // assumes the format of an array subscript if no colon is used.
9401 if (isa<ArraySubscriptExpr>(E) || (OASE && OASE->getColonLoc().isInvalid()))
9402 return false;
9403
9404 assert(OASE && "Expecting array section if not an array subscript.");
9405 auto *Length = OASE->getLength();
9406
9407 // If we don't have a length we have to check if the array has unitary size
9408 // for this dimension. Also, we should always expect a length if the base type
9409 // is pointer.
9410 if (!Length) {
9411 if (auto *ATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr()))
9412 return ATy->getSize().getSExtValue() != 1;
9413 // We cannot assume anything.
9414 return false;
9415 }
9416
9417 // Check if the length evaluates to 1.
9418 llvm::APSInt ConstLength;
9419 if (!Length->EvaluateAsInt(ConstLength, SemaRef.getASTContext()))
9420 return false; // Can't get the integer value as a constant.
9421
9422 return ConstLength.getSExtValue() != 1;
9423}
9424
Samuel Antao5de996e2016-01-22 20:21:36 +00009425// Return the expression of the base of the map clause or null if it cannot
9426// be determined and do all the necessary checks to see if the expression is
9427// valid as a standalone map clause expression.
9428static Expr *CheckMapClauseExpressionBase(Sema &SemaRef, Expr *E) {
9429 SourceLocation ELoc = E->getExprLoc();
9430 SourceRange ERange = E->getSourceRange();
9431
9432 // The base of elements of list in a map clause have to be either:
9433 // - a reference to variable or field.
9434 // - a member expression.
9435 // - an array expression.
9436 //
9437 // E.g. if we have the expression 'r.S.Arr[:12]', we want to retrieve the
9438 // reference to 'r'.
9439 //
9440 // If we have:
9441 //
9442 // struct SS {
9443 // Bla S;
9444 // foo() {
9445 // #pragma omp target map (S.Arr[:12]);
9446 // }
9447 // }
9448 //
9449 // We want to retrieve the member expression 'this->S';
9450
9451 Expr *RelevantExpr = nullptr;
9452
Samuel Antao5de996e2016-01-22 20:21:36 +00009453 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.2]
9454 // If a list item is an array section, it must specify contiguous storage.
9455 //
9456 // For this restriction it is sufficient that we make sure only references
9457 // to variables or fields and array expressions, and that no array sections
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009458 // exist except in the rightmost expression (unless they cover the whole
9459 // dimension of the array). E.g. these would be invalid:
Samuel Antao5de996e2016-01-22 20:21:36 +00009460 //
9461 // r.ArrS[3:5].Arr[6:7]
9462 //
9463 // r.ArrS[3:5].x
9464 //
9465 // but these would be valid:
9466 // r.ArrS[3].Arr[6:7]
9467 //
9468 // r.ArrS[3].x
9469
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009470 bool AllowUnitySizeArraySection = true;
9471 bool AllowWholeSizeArraySection = true;
Samuel Antao5de996e2016-01-22 20:21:36 +00009472
Dmitry Polukhin644a9252016-03-11 07:58:34 +00009473 while (!RelevantExpr) {
Samuel Antao5de996e2016-01-22 20:21:36 +00009474 E = E->IgnoreParenImpCasts();
9475
9476 if (auto *CurE = dyn_cast<DeclRefExpr>(E)) {
9477 if (!isa<VarDecl>(CurE->getDecl()))
9478 break;
9479
9480 RelevantExpr = CurE;
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009481
9482 // If we got a reference to a declaration, we should not expect any array
9483 // section before that.
9484 AllowUnitySizeArraySection = false;
9485 AllowWholeSizeArraySection = false;
Samuel Antao5de996e2016-01-22 20:21:36 +00009486 continue;
9487 }
9488
9489 if (auto *CurE = dyn_cast<MemberExpr>(E)) {
9490 auto *BaseE = CurE->getBase()->IgnoreParenImpCasts();
9491
9492 if (isa<CXXThisExpr>(BaseE))
9493 // We found a base expression: this->Val.
9494 RelevantExpr = CurE;
9495 else
9496 E = BaseE;
9497
9498 if (!isa<FieldDecl>(CurE->getMemberDecl())) {
9499 SemaRef.Diag(ELoc, diag::err_omp_expected_access_to_data_field)
9500 << CurE->getSourceRange();
9501 break;
9502 }
9503
9504 auto *FD = cast<FieldDecl>(CurE->getMemberDecl());
9505
9506 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C/C++, p.3]
9507 // A bit-field cannot appear in a map clause.
9508 //
9509 if (FD->isBitField()) {
9510 SemaRef.Diag(ELoc, diag::err_omp_bit_fields_forbidden_in_map_clause)
9511 << CurE->getSourceRange();
9512 break;
9513 }
9514
9515 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C++, p.1]
9516 // If the type of a list item is a reference to a type T then the type
9517 // will be considered to be T for all purposes of this clause.
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009518 QualType CurType = BaseE->getType().getNonReferenceType();
Samuel Antao5de996e2016-01-22 20:21:36 +00009519
9520 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C/C++, p.2]
9521 // A list item cannot be a variable that is a member of a structure with
9522 // a union type.
9523 //
9524 if (auto *RT = CurType->getAs<RecordType>())
9525 if (RT->isUnionType()) {
9526 SemaRef.Diag(ELoc, diag::err_omp_union_type_not_allowed)
9527 << CurE->getSourceRange();
9528 break;
9529 }
9530
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009531 // If we got a member expression, we should not expect any array section
9532 // before that:
9533 //
9534 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.7]
9535 // If a list item is an element of a structure, only the rightmost symbol
9536 // of the variable reference can be an array section.
9537 //
9538 AllowUnitySizeArraySection = false;
9539 AllowWholeSizeArraySection = false;
Samuel Antao5de996e2016-01-22 20:21:36 +00009540 continue;
9541 }
9542
9543 if (auto *CurE = dyn_cast<ArraySubscriptExpr>(E)) {
9544 E = CurE->getBase()->IgnoreParenImpCasts();
9545
9546 if (!E->getType()->isAnyPointerType() && !E->getType()->isArrayType()) {
9547 SemaRef.Diag(ELoc, diag::err_omp_expected_base_var_name)
9548 << 0 << CurE->getSourceRange();
9549 break;
9550 }
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009551
9552 // If we got an array subscript that express the whole dimension we
9553 // can have any array expressions before. If it only expressing part of
9554 // the dimension, we can only have unitary-size array expressions.
9555 if (CheckArrayExpressionDoesNotReferToWholeSize(SemaRef, CurE,
9556 E->getType()))
9557 AllowWholeSizeArraySection = false;
Samuel Antao5de996e2016-01-22 20:21:36 +00009558 continue;
9559 }
9560
9561 if (auto *CurE = dyn_cast<OMPArraySectionExpr>(E)) {
Samuel Antao5de996e2016-01-22 20:21:36 +00009562 E = CurE->getBase()->IgnoreParenImpCasts();
9563
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009564 auto CurType =
9565 OMPArraySectionExpr::getBaseOriginalType(E).getCanonicalType();
9566
Samuel Antao5de996e2016-01-22 20:21:36 +00009567 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C++, p.1]
9568 // If the type of a list item is a reference to a type T then the type
9569 // will be considered to be T for all purposes of this clause.
Samuel Antao5de996e2016-01-22 20:21:36 +00009570 if (CurType->isReferenceType())
9571 CurType = CurType->getPointeeType();
9572
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009573 bool IsPointer = CurType->isAnyPointerType();
9574
9575 if (!IsPointer && !CurType->isArrayType()) {
Samuel Antao5de996e2016-01-22 20:21:36 +00009576 SemaRef.Diag(ELoc, diag::err_omp_expected_base_var_name)
9577 << 0 << CurE->getSourceRange();
9578 break;
9579 }
9580
Samuel Antaoa9f35cb2016-03-09 15:46:05 +00009581 bool NotWhole =
9582 CheckArrayExpressionDoesNotReferToWholeSize(SemaRef, CurE, CurType);
9583 bool NotUnity =
9584 CheckArrayExpressionDoesNotReferToUnitySize(SemaRef, CurE, CurType);
9585
9586 if (AllowWholeSizeArraySection && AllowUnitySizeArraySection) {
9587 // Any array section is currently allowed.
9588 //
9589 // If this array section refers to the whole dimension we can still
9590 // accept other array sections before this one, except if the base is a
9591 // pointer. Otherwise, only unitary sections are accepted.
9592 if (NotWhole || IsPointer)
9593 AllowWholeSizeArraySection = false;
9594 } else if ((AllowUnitySizeArraySection && NotUnity) ||
9595 (AllowWholeSizeArraySection && NotWhole)) {
9596 // A unity or whole array section is not allowed and that is not
9597 // compatible with the properties of the current array section.
9598 SemaRef.Diag(
9599 ELoc, diag::err_array_section_does_not_specify_contiguous_storage)
9600 << CurE->getSourceRange();
9601 break;
9602 }
Samuel Antao5de996e2016-01-22 20:21:36 +00009603 continue;
9604 }
9605
9606 // If nothing else worked, this is not a valid map clause expression.
9607 SemaRef.Diag(ELoc,
9608 diag::err_omp_expected_named_var_member_or_array_expression)
9609 << ERange;
9610 break;
9611 }
9612
9613 return RelevantExpr;
9614}
9615
9616// Return true if expression E associated with value VD has conflicts with other
9617// map information.
9618static bool CheckMapConflicts(Sema &SemaRef, DSAStackTy *DSAS, ValueDecl *VD,
9619 Expr *E, bool CurrentRegionOnly) {
9620 assert(VD && E);
9621
9622 // Types used to organize the components of a valid map clause.
9623 typedef std::pair<Expr *, ValueDecl *> MapExpressionComponent;
9624 typedef SmallVector<MapExpressionComponent, 4> MapExpressionComponents;
9625
9626 // Helper to extract the components in the map clause expression E and store
9627 // them into MEC. This assumes that E is a valid map clause expression, i.e.
9628 // it has already passed the single clause checks.
9629 auto ExtractMapExpressionComponents = [](Expr *TE,
9630 MapExpressionComponents &MEC) {
9631 while (true) {
9632 TE = TE->IgnoreParenImpCasts();
9633
9634 if (auto *CurE = dyn_cast<DeclRefExpr>(TE)) {
9635 MEC.push_back(
9636 MapExpressionComponent(CurE, cast<VarDecl>(CurE->getDecl())));
9637 break;
9638 }
9639
9640 if (auto *CurE = dyn_cast<MemberExpr>(TE)) {
9641 auto *BaseE = CurE->getBase()->IgnoreParenImpCasts();
9642
9643 MEC.push_back(MapExpressionComponent(
9644 CurE, cast<FieldDecl>(CurE->getMemberDecl())));
9645 if (isa<CXXThisExpr>(BaseE))
9646 break;
9647
9648 TE = BaseE;
9649 continue;
9650 }
9651
9652 if (auto *CurE = dyn_cast<ArraySubscriptExpr>(TE)) {
9653 MEC.push_back(MapExpressionComponent(CurE, nullptr));
9654 TE = CurE->getBase()->IgnoreParenImpCasts();
9655 continue;
9656 }
9657
9658 if (auto *CurE = dyn_cast<OMPArraySectionExpr>(TE)) {
9659 MEC.push_back(MapExpressionComponent(CurE, nullptr));
9660 TE = CurE->getBase()->IgnoreParenImpCasts();
9661 continue;
9662 }
9663
9664 llvm_unreachable(
9665 "Expecting only valid map clause expressions at this point!");
9666 }
9667 };
9668
9669 SourceLocation ELoc = E->getExprLoc();
9670 SourceRange ERange = E->getSourceRange();
9671
9672 // In order to easily check the conflicts we need to match each component of
9673 // the expression under test with the components of the expressions that are
9674 // already in the stack.
9675
9676 MapExpressionComponents CurComponents;
9677 ExtractMapExpressionComponents(E, CurComponents);
9678
9679 assert(!CurComponents.empty() && "Map clause expression with no components!");
9680 assert(CurComponents.back().second == VD &&
9681 "Map clause expression with unexpected base!");
9682
9683 // Variables to help detecting enclosing problems in data environment nests.
9684 bool IsEnclosedByDataEnvironmentExpr = false;
9685 Expr *EnclosingExpr = nullptr;
9686
9687 bool FoundError =
9688 DSAS->checkMapInfoForVar(VD, CurrentRegionOnly, [&](Expr *RE) -> bool {
9689 MapExpressionComponents StackComponents;
9690 ExtractMapExpressionComponents(RE, StackComponents);
9691 assert(!StackComponents.empty() &&
9692 "Map clause expression with no components!");
9693 assert(StackComponents.back().second == VD &&
9694 "Map clause expression with unexpected base!");
9695
9696 // Expressions must start from the same base. Here we detect at which
9697 // point both expressions diverge from each other and see if we can
9698 // detect if the memory referred to both expressions is contiguous and
9699 // do not overlap.
9700 auto CI = CurComponents.rbegin();
9701 auto CE = CurComponents.rend();
9702 auto SI = StackComponents.rbegin();
9703 auto SE = StackComponents.rend();
9704 for (; CI != CE && SI != SE; ++CI, ++SI) {
9705
9706 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.3]
9707 // At most one list item can be an array item derived from a given
9708 // variable in map clauses of the same construct.
9709 if (CurrentRegionOnly && (isa<ArraySubscriptExpr>(CI->first) ||
9710 isa<OMPArraySectionExpr>(CI->first)) &&
9711 (isa<ArraySubscriptExpr>(SI->first) ||
9712 isa<OMPArraySectionExpr>(SI->first))) {
9713 SemaRef.Diag(CI->first->getExprLoc(),
9714 diag::err_omp_multiple_array_items_in_map_clause)
9715 << CI->first->getSourceRange();
9716 ;
9717 SemaRef.Diag(SI->first->getExprLoc(), diag::note_used_here)
9718 << SI->first->getSourceRange();
9719 return true;
9720 }
9721
9722 // Do both expressions have the same kind?
9723 if (CI->first->getStmtClass() != SI->first->getStmtClass())
9724 break;
9725
9726 // Are we dealing with different variables/fields?
9727 if (CI->second != SI->second)
9728 break;
9729 }
9730
9731 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.4]
9732 // List items of map clauses in the same construct must not share
9733 // original storage.
9734 //
9735 // If the expressions are exactly the same or one is a subset of the
9736 // other, it means they are sharing storage.
9737 if (CI == CE && SI == SE) {
9738 if (CurrentRegionOnly) {
9739 SemaRef.Diag(ELoc, diag::err_omp_map_shared_storage) << ERange;
9740 SemaRef.Diag(RE->getExprLoc(), diag::note_used_here)
9741 << RE->getSourceRange();
9742 return true;
9743 } else {
9744 // If we find the same expression in the enclosing data environment,
9745 // that is legal.
9746 IsEnclosedByDataEnvironmentExpr = true;
9747 return false;
9748 }
9749 }
9750
9751 QualType DerivedType = std::prev(CI)->first->getType();
9752 SourceLocation DerivedLoc = std::prev(CI)->first->getExprLoc();
9753
9754 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C++, p.1]
9755 // If the type of a list item is a reference to a type T then the type
9756 // will be considered to be T for all purposes of this clause.
9757 if (DerivedType->isReferenceType())
9758 DerivedType = DerivedType->getPointeeType();
9759
9760 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C/C++, p.1]
9761 // A variable for which the type is pointer and an array section
9762 // derived from that variable must not appear as list items of map
9763 // clauses of the same construct.
9764 //
9765 // Also, cover one of the cases in:
9766 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.5]
9767 // If any part of the original storage of a list item has corresponding
9768 // storage in the device data environment, all of the original storage
9769 // must have corresponding storage in the device data environment.
9770 //
9771 if (DerivedType->isAnyPointerType()) {
9772 if (CI == CE || SI == SE) {
9773 SemaRef.Diag(
9774 DerivedLoc,
9775 diag::err_omp_pointer_mapped_along_with_derived_section)
9776 << DerivedLoc;
9777 } else {
9778 assert(CI != CE && SI != SE);
9779 SemaRef.Diag(DerivedLoc, diag::err_omp_same_pointer_derreferenced)
9780 << DerivedLoc;
9781 }
9782 SemaRef.Diag(RE->getExprLoc(), diag::note_used_here)
9783 << RE->getSourceRange();
9784 return true;
9785 }
9786
9787 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.4]
9788 // List items of map clauses in the same construct must not share
9789 // original storage.
9790 //
9791 // An expression is a subset of the other.
9792 if (CurrentRegionOnly && (CI == CE || SI == SE)) {
9793 SemaRef.Diag(ELoc, diag::err_omp_map_shared_storage) << ERange;
9794 SemaRef.Diag(RE->getExprLoc(), diag::note_used_here)
9795 << RE->getSourceRange();
9796 return true;
9797 }
9798
9799 // The current expression uses the same base as other expression in the
9800 // data environment but does not contain it completelly.
9801 if (!CurrentRegionOnly && SI != SE)
9802 EnclosingExpr = RE;
9803
9804 // The current expression is a subset of the expression in the data
9805 // environment.
9806 IsEnclosedByDataEnvironmentExpr |=
9807 (!CurrentRegionOnly && CI != CE && SI == SE);
9808
9809 return false;
9810 });
9811
9812 if (CurrentRegionOnly)
9813 return FoundError;
9814
9815 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.5]
9816 // If any part of the original storage of a list item has corresponding
9817 // storage in the device data environment, all of the original storage must
9818 // have corresponding storage in the device data environment.
9819 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.6]
9820 // If a list item is an element of a structure, and a different element of
9821 // the structure has a corresponding list item in the device data environment
9822 // prior to a task encountering the construct associated with the map clause,
9823 // then the list item must also have a correspnding list item in the device
9824 // data environment prior to the task encountering the construct.
9825 //
9826 if (EnclosingExpr && !IsEnclosedByDataEnvironmentExpr) {
9827 SemaRef.Diag(ELoc,
9828 diag::err_omp_original_storage_is_shared_and_does_not_contain)
9829 << ERange;
9830 SemaRef.Diag(EnclosingExpr->getExprLoc(), diag::note_used_here)
9831 << EnclosingExpr->getSourceRange();
9832 return true;
9833 }
9834
9835 return FoundError;
9836}
9837
Samuel Antao23abd722016-01-19 20:40:49 +00009838OMPClause *
9839Sema::ActOnOpenMPMapClause(OpenMPMapClauseKind MapTypeModifier,
9840 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit,
9841 SourceLocation MapLoc, SourceLocation ColonLoc,
9842 ArrayRef<Expr *> VarList, SourceLocation StartLoc,
9843 SourceLocation LParenLoc, SourceLocation EndLoc) {
Kelvin Li0bff7af2015-11-23 05:32:03 +00009844 SmallVector<Expr *, 4> Vars;
9845
9846 for (auto &RE : VarList) {
9847 assert(RE && "Null expr in omp map");
9848 if (isa<DependentScopeDeclRefExpr>(RE)) {
9849 // It will be analyzed later.
9850 Vars.push_back(RE);
9851 continue;
9852 }
9853 SourceLocation ELoc = RE->getExprLoc();
9854
Kelvin Li0bff7af2015-11-23 05:32:03 +00009855 auto *VE = RE->IgnoreParenLValueCasts();
9856
9857 if (VE->isValueDependent() || VE->isTypeDependent() ||
9858 VE->isInstantiationDependent() ||
9859 VE->containsUnexpandedParameterPack()) {
Samuel Antao5de996e2016-01-22 20:21:36 +00009860 // We can only analyze this information once the missing information is
9861 // resolved.
Kelvin Li0bff7af2015-11-23 05:32:03 +00009862 Vars.push_back(RE);
9863 continue;
9864 }
9865
9866 auto *SimpleExpr = RE->IgnoreParenCasts();
Kelvin Li0bff7af2015-11-23 05:32:03 +00009867
Samuel Antao5de996e2016-01-22 20:21:36 +00009868 if (!RE->IgnoreParenImpCasts()->isLValue()) {
9869 Diag(ELoc, diag::err_omp_expected_named_var_member_or_array_expression)
9870 << RE->getSourceRange();
Kelvin Li0bff7af2015-11-23 05:32:03 +00009871 continue;
9872 }
9873
Samuel Antao5de996e2016-01-22 20:21:36 +00009874 // Obtain the array or member expression bases if required.
9875 auto *BE = CheckMapClauseExpressionBase(*this, SimpleExpr);
9876 if (!BE)
9877 continue;
9878
9879 // If the base is a reference to a variable, we rely on that variable for
9880 // the following checks. If it is a 'this' expression we rely on the field.
9881 ValueDecl *D = nullptr;
9882 if (auto *DRE = dyn_cast<DeclRefExpr>(BE)) {
9883 D = DRE->getDecl();
9884 } else {
9885 auto *ME = cast<MemberExpr>(BE);
9886 assert(isa<CXXThisExpr>(ME->getBase()) && "Unexpected expression!");
9887 D = ME->getMemberDecl();
Kelvin Li0bff7af2015-11-23 05:32:03 +00009888 }
9889 assert(D && "Null decl on map clause.");
Kelvin Li0bff7af2015-11-23 05:32:03 +00009890
Samuel Antao5de996e2016-01-22 20:21:36 +00009891 auto *VD = dyn_cast<VarDecl>(D);
9892 auto *FD = dyn_cast<FieldDecl>(D);
9893
9894 assert((VD || FD) && "Only variables or fields are expected here!");
NAKAMURA Takumi6dcb8142016-01-23 01:38:20 +00009895 (void)FD;
Samuel Antao5de996e2016-01-22 20:21:36 +00009896
9897 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.10]
9898 // threadprivate variables cannot appear in a map clause.
9899 if (VD && DSAStack->isThreadPrivate(VD)) {
Kelvin Li0bff7af2015-11-23 05:32:03 +00009900 auto DVar = DSAStack->getTopDSA(VD, false);
9901 Diag(ELoc, diag::err_omp_threadprivate_in_map);
9902 ReportOriginalDSA(*this, DSAStack, VD, DVar);
9903 continue;
9904 }
9905
Samuel Antao5de996e2016-01-22 20:21:36 +00009906 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.9]
9907 // A list item cannot appear in both a map clause and a data-sharing
9908 // attribute clause on the same construct.
9909 //
9910 // TODO: Implement this check - it cannot currently be tested because of
9911 // missing implementation of the other data sharing clauses in target
9912 // directives.
Kelvin Li0bff7af2015-11-23 05:32:03 +00009913
Samuel Antao5de996e2016-01-22 20:21:36 +00009914 // Check conflicts with other map clause expressions. We check the conflicts
9915 // with the current construct separately from the enclosing data
9916 // environment, because the restrictions are different.
9917 if (CheckMapConflicts(*this, DSAStack, D, SimpleExpr,
9918 /*CurrentRegionOnly=*/true))
9919 break;
9920 if (CheckMapConflicts(*this, DSAStack, D, SimpleExpr,
9921 /*CurrentRegionOnly=*/false))
9922 break;
Kelvin Li0bff7af2015-11-23 05:32:03 +00009923
Samuel Antao5de996e2016-01-22 20:21:36 +00009924 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C++, p.1]
9925 // If the type of a list item is a reference to a type T then the type will
9926 // be considered to be T for all purposes of this clause.
9927 QualType Type = D->getType();
9928 if (Type->isReferenceType())
9929 Type = Type->getPointeeType();
9930
9931 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.9]
Kelvin Li0bff7af2015-11-23 05:32:03 +00009932 // A list item must have a mappable type.
9933 if (!CheckTypeMappable(VE->getExprLoc(), VE->getSourceRange(), *this,
9934 DSAStack, Type))
9935 continue;
9936
Samuel Antaodf67fc42016-01-19 19:15:56 +00009937 // target enter data
9938 // OpenMP [2.10.2, Restrictions, p. 99]
9939 // A map-type must be specified in all map clauses and must be either
9940 // to or alloc.
9941 OpenMPDirectiveKind DKind = DSAStack->getCurrentDirective();
9942 if (DKind == OMPD_target_enter_data &&
9943 !(MapType == OMPC_MAP_to || MapType == OMPC_MAP_alloc)) {
9944 Diag(StartLoc, diag::err_omp_invalid_map_type_for_directive)
Samuel Antao23abd722016-01-19 20:40:49 +00009945 << (IsMapTypeImplicit ? 1 : 0)
9946 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType)
Samuel Antaodf67fc42016-01-19 19:15:56 +00009947 << getOpenMPDirectiveName(DKind);
Samuel Antao5de996e2016-01-22 20:21:36 +00009948 continue;
Samuel Antaodf67fc42016-01-19 19:15:56 +00009949 }
9950
Samuel Antao72590762016-01-19 20:04:50 +00009951 // target exit_data
9952 // OpenMP [2.10.3, Restrictions, p. 102]
9953 // A map-type must be specified in all map clauses and must be either
9954 // from, release, or delete.
9955 DKind = DSAStack->getCurrentDirective();
9956 if (DKind == OMPD_target_exit_data &&
9957 !(MapType == OMPC_MAP_from || MapType == OMPC_MAP_release ||
9958 MapType == OMPC_MAP_delete)) {
9959 Diag(StartLoc, diag::err_omp_invalid_map_type_for_directive)
Samuel Antao23abd722016-01-19 20:40:49 +00009960 << (IsMapTypeImplicit ? 1 : 0)
9961 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType)
Samuel Antao72590762016-01-19 20:04:50 +00009962 << getOpenMPDirectiveName(DKind);
Samuel Antao5de996e2016-01-22 20:21:36 +00009963 continue;
Samuel Antao72590762016-01-19 20:04:50 +00009964 }
9965
Carlo Bertollib74bfc82016-03-18 21:43:32 +00009966 // OpenMP 4.5 [2.15.5.1, Restrictions, p.3]
9967 // A list item cannot appear in both a map clause and a data-sharing
9968 // attribute clause on the same construct
9969 if (DKind == OMPD_target && VD) {
9970 auto DVar = DSAStack->getTopDSA(VD, false);
9971 if (isOpenMPPrivate(DVar.CKind)) {
9972 Diag(ELoc, diag::err_omp_variable_in_map_and_dsa)
9973 << getOpenMPClauseName(DVar.CKind)
9974 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
9975 ReportOriginalDSA(*this, DSAStack, D, DVar);
9976 continue;
9977 }
9978 }
9979
Kelvin Li0bff7af2015-11-23 05:32:03 +00009980 Vars.push_back(RE);
Samuel Antao5de996e2016-01-22 20:21:36 +00009981 DSAStack->addExprToVarMapInfo(D, RE);
Kelvin Li0bff7af2015-11-23 05:32:03 +00009982 }
Kelvin Li0bff7af2015-11-23 05:32:03 +00009983
Samuel Antao5de996e2016-01-22 20:21:36 +00009984 // We need to produce a map clause even if we don't have variables so that
9985 // other diagnostics related with non-existing map clauses are accurate.
Kelvin Li0bff7af2015-11-23 05:32:03 +00009986 return OMPMapClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars,
Samuel Antao23abd722016-01-19 20:40:49 +00009987 MapTypeModifier, MapType, IsMapTypeImplicit,
9988 MapLoc);
Kelvin Li0bff7af2015-11-23 05:32:03 +00009989}
Kelvin Li099bb8c2015-11-24 20:50:12 +00009990
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00009991QualType Sema::ActOnOpenMPDeclareReductionType(SourceLocation TyLoc,
9992 TypeResult ParsedType) {
9993 assert(ParsedType.isUsable());
9994
9995 QualType ReductionType = GetTypeFromParser(ParsedType.get());
9996 if (ReductionType.isNull())
9997 return QualType();
9998
9999 // [OpenMP 4.0], 2.15 declare reduction Directive, Restrictions, C\C++
10000 // A type name in a declare reduction directive cannot be a function type, an
10001 // array type, a reference type, or a type qualified with const, volatile or
10002 // restrict.
10003 if (ReductionType.hasQualifiers()) {
10004 Diag(TyLoc, diag::err_omp_reduction_wrong_type) << 0;
10005 return QualType();
10006 }
10007
10008 if (ReductionType->isFunctionType()) {
10009 Diag(TyLoc, diag::err_omp_reduction_wrong_type) << 1;
10010 return QualType();
10011 }
10012 if (ReductionType->isReferenceType()) {
10013 Diag(TyLoc, diag::err_omp_reduction_wrong_type) << 2;
10014 return QualType();
10015 }
10016 if (ReductionType->isArrayType()) {
10017 Diag(TyLoc, diag::err_omp_reduction_wrong_type) << 3;
10018 return QualType();
10019 }
10020 return ReductionType;
10021}
10022
10023Sema::DeclGroupPtrTy Sema::ActOnOpenMPDeclareReductionDirectiveStart(
10024 Scope *S, DeclContext *DC, DeclarationName Name,
10025 ArrayRef<std::pair<QualType, SourceLocation>> ReductionTypes,
10026 AccessSpecifier AS, Decl *PrevDeclInScope) {
10027 SmallVector<Decl *, 8> Decls;
10028 Decls.reserve(ReductionTypes.size());
10029
10030 LookupResult Lookup(*this, Name, SourceLocation(), LookupOMPReductionName,
10031 ForRedeclaration);
10032 // [OpenMP 4.0], 2.15 declare reduction Directive, Restrictions
10033 // A reduction-identifier may not be re-declared in the current scope for the
10034 // same type or for a type that is compatible according to the base language
10035 // rules.
10036 llvm::DenseMap<QualType, SourceLocation> PreviousRedeclTypes;
10037 OMPDeclareReductionDecl *PrevDRD = nullptr;
10038 bool InCompoundScope = true;
10039 if (S != nullptr) {
10040 // Find previous declaration with the same name not referenced in other
10041 // declarations.
10042 FunctionScopeInfo *ParentFn = getEnclosingFunction();
10043 InCompoundScope =
10044 (ParentFn != nullptr) && !ParentFn->CompoundScopes.empty();
10045 LookupName(Lookup, S);
10046 FilterLookupForScope(Lookup, DC, S, /*ConsiderLinkage=*/false,
10047 /*AllowInlineNamespace=*/false);
10048 llvm::DenseMap<OMPDeclareReductionDecl *, bool> UsedAsPrevious;
10049 auto Filter = Lookup.makeFilter();
10050 while (Filter.hasNext()) {
10051 auto *PrevDecl = cast<OMPDeclareReductionDecl>(Filter.next());
10052 if (InCompoundScope) {
10053 auto I = UsedAsPrevious.find(PrevDecl);
10054 if (I == UsedAsPrevious.end())
10055 UsedAsPrevious[PrevDecl] = false;
10056 if (auto *D = PrevDecl->getPrevDeclInScope())
10057 UsedAsPrevious[D] = true;
10058 }
10059 PreviousRedeclTypes[PrevDecl->getType().getCanonicalType()] =
10060 PrevDecl->getLocation();
10061 }
10062 Filter.done();
10063 if (InCompoundScope) {
10064 for (auto &PrevData : UsedAsPrevious) {
10065 if (!PrevData.second) {
10066 PrevDRD = PrevData.first;
10067 break;
10068 }
10069 }
10070 }
10071 } else if (PrevDeclInScope != nullptr) {
10072 auto *PrevDRDInScope = PrevDRD =
10073 cast<OMPDeclareReductionDecl>(PrevDeclInScope);
10074 do {
10075 PreviousRedeclTypes[PrevDRDInScope->getType().getCanonicalType()] =
10076 PrevDRDInScope->getLocation();
10077 PrevDRDInScope = PrevDRDInScope->getPrevDeclInScope();
10078 } while (PrevDRDInScope != nullptr);
10079 }
10080 for (auto &TyData : ReductionTypes) {
10081 auto I = PreviousRedeclTypes.find(TyData.first.getCanonicalType());
10082 bool Invalid = false;
10083 if (I != PreviousRedeclTypes.end()) {
10084 Diag(TyData.second, diag::err_omp_declare_reduction_redefinition)
10085 << TyData.first;
10086 Diag(I->second, diag::note_previous_definition);
10087 Invalid = true;
10088 }
10089 PreviousRedeclTypes[TyData.first.getCanonicalType()] = TyData.second;
10090 auto *DRD = OMPDeclareReductionDecl::Create(Context, DC, TyData.second,
10091 Name, TyData.first, PrevDRD);
10092 DC->addDecl(DRD);
10093 DRD->setAccess(AS);
10094 Decls.push_back(DRD);
10095 if (Invalid)
10096 DRD->setInvalidDecl();
10097 else
10098 PrevDRD = DRD;
10099 }
10100
10101 return DeclGroupPtrTy::make(
10102 DeclGroupRef::Create(Context, Decls.begin(), Decls.size()));
10103}
10104
10105void Sema::ActOnOpenMPDeclareReductionCombinerStart(Scope *S, Decl *D) {
10106 auto *DRD = cast<OMPDeclareReductionDecl>(D);
10107
10108 // Enter new function scope.
10109 PushFunctionScope();
10110 getCurFunction()->setHasBranchProtectedScope();
10111 getCurFunction()->setHasOMPDeclareReductionCombiner();
10112
10113 if (S != nullptr)
10114 PushDeclContext(S, DRD);
10115 else
10116 CurContext = DRD;
10117
10118 PushExpressionEvaluationContext(PotentiallyEvaluated);
10119
10120 QualType ReductionType = DRD->getType();
Alexey Bataeva839ddd2016-03-17 10:19:46 +000010121 // Create 'T* omp_parm;T omp_in;'. All references to 'omp_in' will
10122 // be replaced by '*omp_parm' during codegen. This required because 'omp_in'
10123 // uses semantics of argument handles by value, but it should be passed by
10124 // reference. C lang does not support references, so pass all parameters as
10125 // pointers.
10126 // Create 'T omp_in;' variable.
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000010127 auto *OmpInParm =
Alexey Bataeva839ddd2016-03-17 10:19:46 +000010128 buildVarDecl(*this, D->getLocation(), ReductionType, "omp_in");
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000010129 // Create 'T* omp_parm;T omp_out;'. All references to 'omp_out' will
10130 // be replaced by '*omp_parm' during codegen. This required because 'omp_out'
10131 // uses semantics of argument handles by value, but it should be passed by
10132 // reference. C lang does not support references, so pass all parameters as
10133 // pointers.
10134 // Create 'T omp_out;' variable.
10135 auto *OmpOutParm =
10136 buildVarDecl(*this, D->getLocation(), ReductionType, "omp_out");
10137 if (S != nullptr) {
10138 PushOnScopeChains(OmpInParm, S);
10139 PushOnScopeChains(OmpOutParm, S);
10140 } else {
10141 DRD->addDecl(OmpInParm);
10142 DRD->addDecl(OmpOutParm);
10143 }
10144}
10145
10146void Sema::ActOnOpenMPDeclareReductionCombinerEnd(Decl *D, Expr *Combiner) {
10147 auto *DRD = cast<OMPDeclareReductionDecl>(D);
10148 DiscardCleanupsInEvaluationContext();
10149 PopExpressionEvaluationContext();
10150
10151 PopDeclContext();
10152 PopFunctionScopeInfo();
10153
10154 if (Combiner != nullptr)
10155 DRD->setCombiner(Combiner);
10156 else
10157 DRD->setInvalidDecl();
10158}
10159
10160void Sema::ActOnOpenMPDeclareReductionInitializerStart(Scope *S, Decl *D) {
10161 auto *DRD = cast<OMPDeclareReductionDecl>(D);
10162
10163 // Enter new function scope.
10164 PushFunctionScope();
10165 getCurFunction()->setHasBranchProtectedScope();
10166
10167 if (S != nullptr)
10168 PushDeclContext(S, DRD);
10169 else
10170 CurContext = DRD;
10171
10172 PushExpressionEvaluationContext(PotentiallyEvaluated);
10173
10174 QualType ReductionType = DRD->getType();
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000010175 // Create 'T* omp_parm;T omp_priv;'. All references to 'omp_priv' will
10176 // be replaced by '*omp_parm' during codegen. This required because 'omp_priv'
10177 // uses semantics of argument handles by value, but it should be passed by
10178 // reference. C lang does not support references, so pass all parameters as
10179 // pointers.
10180 // Create 'T omp_priv;' variable.
10181 auto *OmpPrivParm =
10182 buildVarDecl(*this, D->getLocation(), ReductionType, "omp_priv");
Alexey Bataeva839ddd2016-03-17 10:19:46 +000010183 // Create 'T* omp_parm;T omp_orig;'. All references to 'omp_orig' will
10184 // be replaced by '*omp_parm' during codegen. This required because 'omp_orig'
10185 // uses semantics of argument handles by value, but it should be passed by
10186 // reference. C lang does not support references, so pass all parameters as
10187 // pointers.
10188 // Create 'T omp_orig;' variable.
10189 auto *OmpOrigParm =
10190 buildVarDecl(*this, D->getLocation(), ReductionType, "omp_orig");
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000010191 if (S != nullptr) {
10192 PushOnScopeChains(OmpPrivParm, S);
10193 PushOnScopeChains(OmpOrigParm, S);
10194 } else {
10195 DRD->addDecl(OmpPrivParm);
10196 DRD->addDecl(OmpOrigParm);
10197 }
10198}
10199
10200void Sema::ActOnOpenMPDeclareReductionInitializerEnd(Decl *D,
10201 Expr *Initializer) {
10202 auto *DRD = cast<OMPDeclareReductionDecl>(D);
10203 DiscardCleanupsInEvaluationContext();
10204 PopExpressionEvaluationContext();
10205
10206 PopDeclContext();
10207 PopFunctionScopeInfo();
10208
10209 if (Initializer != nullptr)
10210 DRD->setInitializer(Initializer);
10211 else
10212 DRD->setInvalidDecl();
10213}
10214
10215Sema::DeclGroupPtrTy Sema::ActOnOpenMPDeclareReductionDirectiveEnd(
10216 Scope *S, DeclGroupPtrTy DeclReductions, bool IsValid) {
10217 for (auto *D : DeclReductions.get()) {
10218 if (IsValid) {
10219 auto *DRD = cast<OMPDeclareReductionDecl>(D);
10220 if (S != nullptr)
10221 PushOnScopeChains(DRD, S, /*AddToContext=*/false);
10222 } else
10223 D->setInvalidDecl();
10224 }
10225 return DeclReductions;
10226}
10227
Kelvin Li099bb8c2015-11-24 20:50:12 +000010228OMPClause *Sema::ActOnOpenMPNumTeamsClause(Expr *NumTeams,
10229 SourceLocation StartLoc,
10230 SourceLocation LParenLoc,
10231 SourceLocation EndLoc) {
10232 Expr *ValExpr = NumTeams;
Kelvin Li099bb8c2015-11-24 20:50:12 +000010233
Kelvin Lia15fb1a2015-11-27 18:47:36 +000010234 // OpenMP [teams Constrcut, Restrictions]
10235 // The num_teams expression must evaluate to a positive integer value.
Alexey Bataeva0569352015-12-01 10:17:31 +000010236 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_num_teams,
10237 /*StrictlyPositive=*/true))
Kelvin Lia15fb1a2015-11-27 18:47:36 +000010238 return nullptr;
Kelvin Li099bb8c2015-11-24 20:50:12 +000010239
10240 return new (Context) OMPNumTeamsClause(ValExpr, StartLoc, LParenLoc, EndLoc);
10241}
Kelvin Lia15fb1a2015-11-27 18:47:36 +000010242
10243OMPClause *Sema::ActOnOpenMPThreadLimitClause(Expr *ThreadLimit,
10244 SourceLocation StartLoc,
10245 SourceLocation LParenLoc,
10246 SourceLocation EndLoc) {
10247 Expr *ValExpr = ThreadLimit;
10248
10249 // OpenMP [teams Constrcut, Restrictions]
10250 // The thread_limit expression must evaluate to a positive integer value.
Alexey Bataeva0569352015-12-01 10:17:31 +000010251 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_thread_limit,
10252 /*StrictlyPositive=*/true))
Kelvin Lia15fb1a2015-11-27 18:47:36 +000010253 return nullptr;
10254
10255 return new (Context) OMPThreadLimitClause(ValExpr, StartLoc, LParenLoc,
10256 EndLoc);
10257}
Alexey Bataeva0569352015-12-01 10:17:31 +000010258
10259OMPClause *Sema::ActOnOpenMPPriorityClause(Expr *Priority,
10260 SourceLocation StartLoc,
10261 SourceLocation LParenLoc,
10262 SourceLocation EndLoc) {
10263 Expr *ValExpr = Priority;
10264
10265 // OpenMP [2.9.1, task Constrcut]
10266 // The priority-value is a non-negative numerical scalar expression.
10267 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_priority,
10268 /*StrictlyPositive=*/false))
10269 return nullptr;
10270
10271 return new (Context) OMPPriorityClause(ValExpr, StartLoc, LParenLoc, EndLoc);
10272}
Alexey Bataev1fd4aed2015-12-07 12:52:51 +000010273
10274OMPClause *Sema::ActOnOpenMPGrainsizeClause(Expr *Grainsize,
10275 SourceLocation StartLoc,
10276 SourceLocation LParenLoc,
10277 SourceLocation EndLoc) {
10278 Expr *ValExpr = Grainsize;
10279
10280 // OpenMP [2.9.2, taskloop Constrcut]
10281 // The parameter of the grainsize clause must be a positive integer
10282 // expression.
10283 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_grainsize,
10284 /*StrictlyPositive=*/true))
10285 return nullptr;
10286
10287 return new (Context) OMPGrainsizeClause(ValExpr, StartLoc, LParenLoc, EndLoc);
10288}
Alexey Bataev382967a2015-12-08 12:06:20 +000010289
10290OMPClause *Sema::ActOnOpenMPNumTasksClause(Expr *NumTasks,
10291 SourceLocation StartLoc,
10292 SourceLocation LParenLoc,
10293 SourceLocation EndLoc) {
10294 Expr *ValExpr = NumTasks;
10295
10296 // OpenMP [2.9.2, taskloop Constrcut]
10297 // The parameter of the num_tasks clause must be a positive integer
10298 // expression.
10299 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_num_tasks,
10300 /*StrictlyPositive=*/true))
10301 return nullptr;
10302
10303 return new (Context) OMPNumTasksClause(ValExpr, StartLoc, LParenLoc, EndLoc);
10304}
10305
Alexey Bataev28c75412015-12-15 08:19:24 +000010306OMPClause *Sema::ActOnOpenMPHintClause(Expr *Hint, SourceLocation StartLoc,
10307 SourceLocation LParenLoc,
10308 SourceLocation EndLoc) {
10309 // OpenMP [2.13.2, critical construct, Description]
10310 // ... where hint-expression is an integer constant expression that evaluates
10311 // to a valid lock hint.
10312 ExprResult HintExpr = VerifyPositiveIntegerConstantInClause(Hint, OMPC_hint);
10313 if (HintExpr.isInvalid())
10314 return nullptr;
10315 return new (Context)
10316 OMPHintClause(HintExpr.get(), StartLoc, LParenLoc, EndLoc);
10317}
10318
Carlo Bertollib4adf552016-01-15 18:50:31 +000010319OMPClause *Sema::ActOnOpenMPDistScheduleClause(
10320 OpenMPDistScheduleClauseKind Kind, Expr *ChunkSize, SourceLocation StartLoc,
10321 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc,
10322 SourceLocation EndLoc) {
10323 if (Kind == OMPC_DIST_SCHEDULE_unknown) {
10324 std::string Values;
10325 Values += "'";
10326 Values += getOpenMPSimpleClauseTypeName(OMPC_dist_schedule, 0);
10327 Values += "'";
10328 Diag(KindLoc, diag::err_omp_unexpected_clause_value)
10329 << Values << getOpenMPClauseName(OMPC_dist_schedule);
10330 return nullptr;
10331 }
10332 Expr *ValExpr = ChunkSize;
Alexey Bataev3392d762016-02-16 11:18:12 +000010333 Stmt *HelperValStmt = nullptr;
Carlo Bertollib4adf552016-01-15 18:50:31 +000010334 if (ChunkSize) {
10335 if (!ChunkSize->isValueDependent() && !ChunkSize->isTypeDependent() &&
10336 !ChunkSize->isInstantiationDependent() &&
10337 !ChunkSize->containsUnexpandedParameterPack()) {
10338 SourceLocation ChunkSizeLoc = ChunkSize->getLocStart();
10339 ExprResult Val =
10340 PerformOpenMPImplicitIntegerConversion(ChunkSizeLoc, ChunkSize);
10341 if (Val.isInvalid())
10342 return nullptr;
10343
10344 ValExpr = Val.get();
10345
10346 // OpenMP [2.7.1, Restrictions]
10347 // chunk_size must be a loop invariant integer expression with a positive
10348 // value.
10349 llvm::APSInt Result;
10350 if (ValExpr->isIntegerConstantExpr(Result, Context)) {
10351 if (Result.isSigned() && !Result.isStrictlyPositive()) {
10352 Diag(ChunkSizeLoc, diag::err_omp_negative_expression_in_clause)
10353 << "dist_schedule" << ChunkSize->getSourceRange();
10354 return nullptr;
10355 }
10356 } else if (isParallelOrTaskRegion(DSAStack->getCurrentDirective())) {
Alexey Bataev5a3af132016-03-29 08:58:54 +000010357 llvm::MapVector<Expr *, DeclRefExpr *> Captures;
10358 ValExpr = tryBuildCapture(*this, ValExpr, Captures).get();
10359 HelperValStmt = buildPreInits(Context, Captures);
Carlo Bertollib4adf552016-01-15 18:50:31 +000010360 }
10361 }
10362 }
10363
10364 return new (Context)
10365 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc,
Alexey Bataev3392d762016-02-16 11:18:12 +000010366 Kind, ValExpr, HelperValStmt);
Carlo Bertollib4adf552016-01-15 18:50:31 +000010367}
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +000010368
10369OMPClause *Sema::ActOnOpenMPDefaultmapClause(
10370 OpenMPDefaultmapClauseModifier M, OpenMPDefaultmapClauseKind Kind,
10371 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation MLoc,
10372 SourceLocation KindLoc, SourceLocation EndLoc) {
10373 // OpenMP 4.5 only supports 'defaultmap(tofrom: scalar)'
10374 if (M != OMPC_DEFAULTMAP_MODIFIER_tofrom ||
10375 Kind != OMPC_DEFAULTMAP_scalar) {
10376 std::string Value;
10377 SourceLocation Loc;
10378 Value += "'";
10379 if (M != OMPC_DEFAULTMAP_MODIFIER_tofrom) {
10380 Value += getOpenMPSimpleClauseTypeName(OMPC_defaultmap,
10381 OMPC_DEFAULTMAP_MODIFIER_tofrom);
10382 Loc = MLoc;
10383 } else {
10384 Value += getOpenMPSimpleClauseTypeName(OMPC_defaultmap,
10385 OMPC_DEFAULTMAP_scalar);
10386 Loc = KindLoc;
10387 }
10388 Value += "'";
10389 Diag(Loc, diag::err_omp_unexpected_clause_value)
10390 << Value << getOpenMPClauseName(OMPC_defaultmap);
10391 return nullptr;
10392 }
10393
10394 return new (Context)
10395 OMPDefaultmapClause(StartLoc, LParenLoc, MLoc, KindLoc, EndLoc, Kind, M);
10396}
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000010397
10398bool Sema::ActOnStartOpenMPDeclareTargetDirective(SourceLocation Loc) {
10399 DeclContext *CurLexicalContext = getCurLexicalContext();
10400 if (!CurLexicalContext->isFileContext() &&
10401 !CurLexicalContext->isExternCContext() &&
10402 !CurLexicalContext->isExternCXXContext()) {
10403 Diag(Loc, diag::err_omp_region_not_file_context);
10404 return false;
10405 }
10406 if (IsInOpenMPDeclareTargetContext) {
10407 Diag(Loc, diag::err_omp_enclosed_declare_target);
10408 return false;
10409 }
10410
10411 IsInOpenMPDeclareTargetContext = true;
10412 return true;
10413}
10414
10415void Sema::ActOnFinishOpenMPDeclareTargetDirective() {
10416 assert(IsInOpenMPDeclareTargetContext &&
10417 "Unexpected ActOnFinishOpenMPDeclareTargetDirective");
10418
10419 IsInOpenMPDeclareTargetContext = false;
10420}
10421
10422static void checkDeclInTargetContext(SourceLocation SL, SourceRange SR,
10423 Sema &SemaRef, Decl *D) {
10424 if (!D)
10425 return;
10426 Decl *LD = nullptr;
10427 if (isa<TagDecl>(D)) {
10428 LD = cast<TagDecl>(D)->getDefinition();
10429 } else if (isa<VarDecl>(D)) {
10430 LD = cast<VarDecl>(D)->getDefinition();
10431
10432 // If this is an implicit variable that is legal and we do not need to do
10433 // anything.
10434 if (cast<VarDecl>(D)->isImplicit()) {
10435 D->addAttr(OMPDeclareTargetDeclAttr::CreateImplicit(SemaRef.Context));
10436 if (ASTMutationListener *ML = SemaRef.Context.getASTMutationListener())
10437 ML->DeclarationMarkedOpenMPDeclareTarget(D);
10438 return;
10439 }
10440
10441 } else if (isa<FunctionDecl>(D)) {
10442 const FunctionDecl *FD = nullptr;
10443 if (cast<FunctionDecl>(D)->hasBody(FD))
10444 LD = const_cast<FunctionDecl *>(FD);
10445
10446 // If the definition is associated with the current declaration in the
10447 // target region (it can be e.g. a lambda) that is legal and we do not need
10448 // to do anything else.
10449 if (LD == D) {
10450 D->addAttr(OMPDeclareTargetDeclAttr::CreateImplicit(SemaRef.Context));
10451 if (ASTMutationListener *ML = SemaRef.Context.getASTMutationListener())
10452 ML->DeclarationMarkedOpenMPDeclareTarget(D);
10453 return;
10454 }
10455 }
10456 if (!LD)
10457 LD = D;
10458 if (LD && !LD->hasAttr<OMPDeclareTargetDeclAttr>() &&
10459 (isa<VarDecl>(LD) || isa<FunctionDecl>(LD))) {
10460 // Outlined declaration is not declared target.
10461 if (LD->isOutOfLine()) {
10462 SemaRef.Diag(LD->getLocation(), diag::warn_omp_not_in_target_context);
10463 SemaRef.Diag(SL, diag::note_used_here) << SR;
10464 } else {
10465 DeclContext *DC = LD->getDeclContext();
10466 while (DC) {
10467 if (isa<FunctionDecl>(DC) &&
10468 cast<FunctionDecl>(DC)->hasAttr<OMPDeclareTargetDeclAttr>())
10469 break;
10470 DC = DC->getParent();
10471 }
10472 if (DC)
10473 return;
10474
10475 // Is not declared in target context.
10476 SemaRef.Diag(LD->getLocation(), diag::warn_omp_not_in_target_context);
10477 SemaRef.Diag(SL, diag::note_used_here) << SR;
10478 }
10479 // Mark decl as declared target to prevent further diagnostic.
10480 D->addAttr(OMPDeclareTargetDeclAttr::CreateImplicit(SemaRef.Context));
10481 if (ASTMutationListener *ML = SemaRef.Context.getASTMutationListener())
10482 ML->DeclarationMarkedOpenMPDeclareTarget(D);
10483 }
10484}
10485
10486static bool checkValueDeclInTarget(SourceLocation SL, SourceRange SR,
10487 Sema &SemaRef, DSAStackTy *Stack,
10488 ValueDecl *VD) {
10489 if (VD->hasAttr<OMPDeclareTargetDeclAttr>())
10490 return true;
10491 if (!CheckTypeMappable(SL, SR, SemaRef, Stack, VD->getType()))
10492 return false;
10493 return true;
10494}
10495
10496void Sema::checkDeclIsAllowedInOpenMPTarget(Expr *E, Decl *D) {
10497 if (!D || D->isInvalidDecl())
10498 return;
10499 SourceRange SR = E ? E->getSourceRange() : D->getSourceRange();
10500 SourceLocation SL = E ? E->getLocStart() : D->getLocation();
10501 // 2.10.6: threadprivate variable cannot appear in a declare target directive.
10502 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
10503 if (DSAStack->isThreadPrivate(VD)) {
10504 Diag(SL, diag::err_omp_threadprivate_in_target);
10505 ReportOriginalDSA(*this, DSAStack, VD, DSAStack->getTopDSA(VD, false));
10506 return;
10507 }
10508 }
10509 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
10510 // Problem if any with var declared with incomplete type will be reported
10511 // as normal, so no need to check it here.
10512 if ((E || !VD->getType()->isIncompleteType()) &&
10513 !checkValueDeclInTarget(SL, SR, *this, DSAStack, VD)) {
10514 // Mark decl as declared target to prevent further diagnostic.
10515 if (isa<VarDecl>(VD) || isa<FunctionDecl>(VD)) {
10516 VD->addAttr(OMPDeclareTargetDeclAttr::CreateImplicit(Context));
10517 if (ASTMutationListener *ML = Context.getASTMutationListener())
10518 ML->DeclarationMarkedOpenMPDeclareTarget(VD);
10519 }
10520 return;
10521 }
10522 }
10523 if (!E) {
10524 // Checking declaration inside declare target region.
10525 if (!D->hasAttr<OMPDeclareTargetDeclAttr>() &&
10526 (isa<VarDecl>(D) || isa<FunctionDecl>(D))) {
10527 D->addAttr(OMPDeclareTargetDeclAttr::CreateImplicit(Context));
10528 if (ASTMutationListener *ML = Context.getASTMutationListener())
10529 ML->DeclarationMarkedOpenMPDeclareTarget(D);
10530 }
10531 return;
10532 }
10533 checkDeclInTargetContext(E->getExprLoc(), E->getSourceRange(), *this, D);
10534}