blob: d72942a2ffece9ea995822196342249d890ef0c7 [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 Bataev9959db52014-05-06 10:08:46 +000015#include "clang/AST/ASTContext.h"
Alexey Bataev97720002014-11-11 04:05:39 +000016#include "clang/AST/ASTMutationListener.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000017#include "clang/AST/Decl.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000018#include "clang/AST/DeclCXX.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000019#include "clang/AST/DeclOpenMP.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000020#include "clang/AST/StmtCXX.h"
21#include "clang/AST/StmtOpenMP.h"
22#include "clang/AST/StmtVisitor.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000023#include "clang/Basic/OpenMPKinds.h"
24#include "clang/Lex/Preprocessor.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000025#include "clang/Sema/Initialization.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000026#include "clang/Sema/Lookup.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000027#include "clang/Sema/Scope.h"
28#include "clang/Sema/ScopeInfo.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000029#include "clang/Sema/SemaInternal.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000030using namespace clang;
31
Alexey Bataev758e55e2013-09-06 18:03:48 +000032//===----------------------------------------------------------------------===//
33// Stack of data-sharing attributes for variables
34//===----------------------------------------------------------------------===//
35
36namespace {
37/// \brief Default data sharing attributes, which can be applied to directive.
38enum DefaultDataSharingAttributes {
Alexey Bataeved09d242014-05-28 05:53:51 +000039 DSA_unspecified = 0, /// \brief Data sharing attribute not specified.
40 DSA_none = 1 << 0, /// \brief Default data sharing attribute 'none'.
41 DSA_shared = 1 << 1 /// \brief Default data sharing attribute 'shared'.
Alexey Bataev758e55e2013-09-06 18:03:48 +000042};
Alexey Bataev7ff55242014-06-19 09:13:45 +000043
Alexey Bataevf29276e2014-06-18 04:14:57 +000044template <class T> struct MatchesAny {
Alexey Bataev23b69422014-06-18 07:08:49 +000045 explicit MatchesAny(ArrayRef<T> Arr) : Arr(std::move(Arr)) {}
Alexey Bataevf29276e2014-06-18 04:14:57 +000046 bool operator()(T Kind) {
47 for (auto KindEl : Arr)
48 if (KindEl == Kind)
49 return true;
50 return false;
51 }
52
53private:
54 ArrayRef<T> Arr;
55};
Alexey Bataev23b69422014-06-18 07:08:49 +000056struct MatchesAlways {
Alexey Bataevf29276e2014-06-18 04:14:57 +000057 MatchesAlways() {}
Alexey Bataev7ff55242014-06-19 09:13:45 +000058 template <class T> bool operator()(T) { return true; }
Alexey Bataevf29276e2014-06-18 04:14:57 +000059};
60
61typedef MatchesAny<OpenMPClauseKind> MatchesAnyClause;
62typedef MatchesAny<OpenMPDirectiveKind> MatchesAnyDirective;
Alexey Bataev758e55e2013-09-06 18:03:48 +000063
64/// \brief Stack for tracking declarations used in OpenMP directives and
65/// clauses and their data-sharing attributes.
66class DSAStackTy {
67public:
68 struct DSAVarData {
69 OpenMPDirectiveKind DKind;
70 OpenMPClauseKind CKind;
71 DeclRefExpr *RefExpr;
Alexey Bataevbae9a792014-06-27 10:37:06 +000072 SourceLocation ImplicitDSALoc;
73 DSAVarData()
74 : DKind(OMPD_unknown), CKind(OMPC_unknown), RefExpr(nullptr),
75 ImplicitDSALoc() {}
Alexey Bataev758e55e2013-09-06 18:03:48 +000076 };
Alexey Bataeved09d242014-05-28 05:53:51 +000077
Alexey Bataev758e55e2013-09-06 18:03:48 +000078private:
79 struct DSAInfo {
80 OpenMPClauseKind Attributes;
81 DeclRefExpr *RefExpr;
82 };
83 typedef llvm::SmallDenseMap<VarDecl *, DSAInfo, 64> DeclSAMapTy;
Alexander Musmanf0d76e72014-05-29 14:36:25 +000084 typedef llvm::SmallDenseMap<VarDecl *, DeclRefExpr *, 64> AlignedMapTy;
Alexey Bataev758e55e2013-09-06 18:03:48 +000085
86 struct SharingMapTy {
87 DeclSAMapTy SharingMap;
Alexander Musmanf0d76e72014-05-29 14:36:25 +000088 AlignedMapTy AlignedMap;
Alexey Bataev758e55e2013-09-06 18:03:48 +000089 DefaultDataSharingAttributes DefaultAttr;
Alexey Bataevbae9a792014-06-27 10:37:06 +000090 SourceLocation DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +000091 OpenMPDirectiveKind Directive;
92 DeclarationNameInfo DirectiveName;
93 Scope *CurScope;
Alexey Bataevbae9a792014-06-27 10:37:06 +000094 SourceLocation ConstructLoc;
Alexey Bataev9fb6e642014-07-22 06:45:04 +000095 bool OrderedRegion;
Alexey Bataev13314bf2014-10-09 04:18:56 +000096 SourceLocation InnerTeamsRegionLoc;
Alexey Bataeved09d242014-05-28 05:53:51 +000097 SharingMapTy(OpenMPDirectiveKind DKind, DeclarationNameInfo Name,
Alexey Bataevbae9a792014-06-27 10:37:06 +000098 Scope *CurScope, SourceLocation Loc)
Alexander Musmanf0d76e72014-05-29 14:36:25 +000099 : SharingMap(), AlignedMap(), DefaultAttr(DSA_unspecified),
Alexey Bataevbae9a792014-06-27 10:37:06 +0000100 Directive(DKind), DirectiveName(std::move(Name)), CurScope(CurScope),
Alexey Bataev13314bf2014-10-09 04:18:56 +0000101 ConstructLoc(Loc), OrderedRegion(false), InnerTeamsRegionLoc() {}
Alexey Bataev758e55e2013-09-06 18:03:48 +0000102 SharingMapTy()
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000103 : SharingMap(), AlignedMap(), DefaultAttr(DSA_unspecified),
Alexey Bataevbae9a792014-06-27 10:37:06 +0000104 Directive(OMPD_unknown), DirectiveName(), CurScope(nullptr),
Alexey Bataev13314bf2014-10-09 04:18:56 +0000105 ConstructLoc(), OrderedRegion(false), InnerTeamsRegionLoc() {}
Alexey Bataev758e55e2013-09-06 18:03:48 +0000106 };
107
108 typedef SmallVector<SharingMapTy, 64> StackTy;
109
110 /// \brief Stack of used declaration and their data-sharing attributes.
111 StackTy Stack;
Alexey Bataev7ff55242014-06-19 09:13:45 +0000112 Sema &SemaRef;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000113
114 typedef SmallVector<SharingMapTy, 8>::reverse_iterator reverse_iterator;
115
116 DSAVarData getDSA(StackTy::reverse_iterator Iter, VarDecl *D);
Alexey Bataevec3da872014-01-31 05:15:34 +0000117
118 /// \brief Checks if the variable is a local for OpenMP region.
119 bool isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter);
Alexey Bataeved09d242014-05-28 05:53:51 +0000120
Alexey Bataev758e55e2013-09-06 18:03:48 +0000121public:
Alexey Bataev7ff55242014-06-19 09:13:45 +0000122 explicit DSAStackTy(Sema &S) : Stack(1), SemaRef(S) {}
Alexey Bataev758e55e2013-09-06 18:03:48 +0000123
124 void push(OpenMPDirectiveKind DKind, const DeclarationNameInfo &DirName,
Alexey Bataevbae9a792014-06-27 10:37:06 +0000125 Scope *CurScope, SourceLocation Loc) {
126 Stack.push_back(SharingMapTy(DKind, DirName, CurScope, Loc));
127 Stack.back().DefaultAttrLoc = Loc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000128 }
129
130 void pop() {
131 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty!");
132 Stack.pop_back();
133 }
134
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000135 /// \brief If 'aligned' declaration for given variable \a D was not seen yet,
Alp Toker15e62a32014-06-06 12:02:07 +0000136 /// add it and return NULL; otherwise return previous occurrence's expression
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000137 /// for diagnostics.
138 DeclRefExpr *addUniqueAligned(VarDecl *D, DeclRefExpr *NewDE);
139
Alexey Bataev758e55e2013-09-06 18:03:48 +0000140 /// \brief Adds explicit data sharing attribute to the specified declaration.
141 void addDSA(VarDecl *D, DeclRefExpr *E, OpenMPClauseKind A);
142
Alexey Bataev758e55e2013-09-06 18:03:48 +0000143 /// \brief Returns data sharing attributes from top of the stack for the
144 /// specified declaration.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000145 DSAVarData getTopDSA(VarDecl *D, bool FromParent);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000146 /// \brief Returns data-sharing attributes for the specified declaration.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000147 DSAVarData getImplicitDSA(VarDecl *D, bool FromParent);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000148 /// \brief Checks if the specified variables has data-sharing attributes which
149 /// match specified \a CPred predicate in any directive which matches \a DPred
150 /// predicate.
151 template <class ClausesPredicate, class DirectivesPredicate>
152 DSAVarData hasDSA(VarDecl *D, ClausesPredicate CPred,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000153 DirectivesPredicate DPred, bool FromParent);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000154 /// \brief Checks if the specified variables has data-sharing attributes which
155 /// match specified \a CPred predicate in any innermost directive which
156 /// matches \a DPred predicate.
157 template <class ClausesPredicate, class DirectivesPredicate>
158 DSAVarData hasInnermostDSA(VarDecl *D, ClausesPredicate CPred,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000159 DirectivesPredicate DPred,
160 bool FromParent);
Alexander Musmand9ed09f2014-07-21 09:42:05 +0000161 /// \brief Finds a directive which matches specified \a DPred predicate.
162 template <class NamedDirectivesPredicate>
163 bool hasDirective(NamedDirectivesPredicate DPred, bool FromParent);
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000164
Alexey Bataev758e55e2013-09-06 18:03:48 +0000165 /// \brief Returns currently analyzed directive.
166 OpenMPDirectiveKind getCurrentDirective() const {
167 return Stack.back().Directive;
168 }
Alexey Bataev549210e2014-06-24 04:39:47 +0000169 /// \brief Returns parent directive.
170 OpenMPDirectiveKind getParentDirective() const {
171 if (Stack.size() > 2)
172 return Stack[Stack.size() - 2].Directive;
173 return OMPD_unknown;
174 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000175
176 /// \brief Set default data sharing attribute to none.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000177 void setDefaultDSANone(SourceLocation Loc) {
178 Stack.back().DefaultAttr = DSA_none;
179 Stack.back().DefaultAttrLoc = Loc;
180 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000181 /// \brief Set default data sharing attribute to shared.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000182 void setDefaultDSAShared(SourceLocation Loc) {
183 Stack.back().DefaultAttr = DSA_shared;
184 Stack.back().DefaultAttrLoc = Loc;
185 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000186
187 DefaultDataSharingAttributes getDefaultDSA() const {
188 return Stack.back().DefaultAttr;
189 }
Alexey Bataevbae9a792014-06-27 10:37:06 +0000190 SourceLocation getDefaultDSALocation() const {
191 return Stack.back().DefaultAttrLoc;
192 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000193
Alexey Bataevf29276e2014-06-18 04:14:57 +0000194 /// \brief Checks if the specified variable is a threadprivate.
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000195 bool isThreadPrivate(VarDecl *D) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000196 DSAVarData DVar = getTopDSA(D, false);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000197 return isOpenMPThreadPrivate(DVar.CKind);
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000198 }
199
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000200 /// \brief Marks current region as ordered (it has an 'ordered' clause).
201 void setOrderedRegion(bool IsOrdered = true) {
202 Stack.back().OrderedRegion = IsOrdered;
203 }
204 /// \brief Returns true, if parent region is ordered (has associated
205 /// 'ordered' clause), false - otherwise.
206 bool isParentOrderedRegion() const {
207 if (Stack.size() > 2)
208 return Stack[Stack.size() - 2].OrderedRegion;
209 return false;
210 }
211
Alexey Bataev13314bf2014-10-09 04:18:56 +0000212 /// \brief Marks current target region as one with closely nested teams
213 /// region.
214 void setParentTeamsRegionLoc(SourceLocation TeamsRegionLoc) {
215 if (Stack.size() > 2)
216 Stack[Stack.size() - 2].InnerTeamsRegionLoc = TeamsRegionLoc;
217 }
218 /// \brief Returns true, if current region has closely nested teams region.
219 bool hasInnerTeamsRegion() const {
220 return getInnerTeamsRegionLoc().isValid();
221 }
222 /// \brief Returns location of the nested teams region (if any).
223 SourceLocation getInnerTeamsRegionLoc() const {
224 if (Stack.size() > 1)
225 return Stack.back().InnerTeamsRegionLoc;
226 return SourceLocation();
227 }
228
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000229 Scope *getCurScope() const { return Stack.back().CurScope; }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000230 Scope *getCurScope() { return Stack.back().CurScope; }
Alexey Bataevbae9a792014-06-27 10:37:06 +0000231 SourceLocation getConstructLoc() { return Stack.back().ConstructLoc; }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000232};
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000233bool isParallelOrTaskRegion(OpenMPDirectiveKind DKind) {
234 return isOpenMPParallelDirective(DKind) || DKind == OMPD_task ||
Alexey Bataev13314bf2014-10-09 04:18:56 +0000235 isOpenMPTeamsDirective(DKind) || DKind == OMPD_unknown;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000236}
Alexey Bataeved09d242014-05-28 05:53:51 +0000237} // namespace
Alexey Bataev758e55e2013-09-06 18:03:48 +0000238
239DSAStackTy::DSAVarData DSAStackTy::getDSA(StackTy::reverse_iterator Iter,
240 VarDecl *D) {
241 DSAVarData DVar;
Alexey Bataevdf9b1592014-06-25 04:09:13 +0000242 if (Iter == std::prev(Stack.rend())) {
Alexey Bataev750a58b2014-03-18 12:19:12 +0000243 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
244 // in a region but not in construct]
245 // File-scope or namespace-scope variables referenced in called routines
246 // in the region are shared unless they appear in a threadprivate
247 // directive.
Alexey Bataev8b9cb982014-07-24 02:33:58 +0000248 if (!D->isFunctionOrMethodVarDecl() && !isa<ParmVarDecl>(D))
Alexey Bataev750a58b2014-03-18 12:19:12 +0000249 DVar.CKind = OMPC_shared;
250
251 // OpenMP [2.9.1.2, Data-sharing Attribute Rules for Variables Referenced
252 // in a region but not in construct]
253 // Variables with static storage duration that are declared in called
254 // routines in the region are shared.
255 if (D->hasGlobalStorage())
256 DVar.CKind = OMPC_shared;
257
Alexey Bataev758e55e2013-09-06 18:03:48 +0000258 return DVar;
259 }
Alexey Bataevec3da872014-01-31 05:15:34 +0000260
Alexey Bataev758e55e2013-09-06 18:03:48 +0000261 DVar.DKind = Iter->Directive;
Alexey Bataevec3da872014-01-31 05:15:34 +0000262 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
263 // in a Construct, C/C++, predetermined, p.1]
264 // Variables with automatic storage duration that are declared in a scope
265 // inside the construct are private.
Alexey Bataevf29276e2014-06-18 04:14:57 +0000266 if (isOpenMPLocal(D, Iter) && D->isLocalVarDecl() &&
267 (D->getStorageClass() == SC_Auto || D->getStorageClass() == SC_None)) {
268 DVar.CKind = OMPC_private;
269 return DVar;
Alexey Bataevec3da872014-01-31 05:15:34 +0000270 }
271
Alexey Bataev758e55e2013-09-06 18:03:48 +0000272 // Explicitly specified attributes and local variables with predetermined
273 // attributes.
274 if (Iter->SharingMap.count(D)) {
275 DVar.RefExpr = Iter->SharingMap[D].RefExpr;
276 DVar.CKind = Iter->SharingMap[D].Attributes;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000277 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000278 return DVar;
279 }
280
281 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
282 // in a Construct, C/C++, implicitly determined, p.1]
283 // In a parallel or task construct, the data-sharing attributes of these
284 // variables are determined by the default clause, if present.
285 switch (Iter->DefaultAttr) {
286 case DSA_shared:
287 DVar.CKind = OMPC_shared;
Alexey Bataevbae9a792014-06-27 10:37:06 +0000288 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000289 return DVar;
290 case DSA_none:
291 return DVar;
292 case DSA_unspecified:
293 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
294 // in a Construct, implicitly determined, p.2]
295 // In a parallel construct, if no default clause is present, these
296 // variables are shared.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000297 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev13314bf2014-10-09 04:18:56 +0000298 if (isOpenMPParallelDirective(DVar.DKind) ||
299 isOpenMPTeamsDirective(DVar.DKind)) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000300 DVar.CKind = OMPC_shared;
301 return DVar;
302 }
303
304 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
305 // in a Construct, implicitly determined, p.4]
306 // In a task construct, if no default clause is present, a variable that in
307 // the enclosing context is determined to be shared by all implicit tasks
308 // bound to the current team is shared.
Alexey Bataev758e55e2013-09-06 18:03:48 +0000309 if (DVar.DKind == OMPD_task) {
310 DSAVarData DVarTemp;
Benjamin Kramer167e9992014-03-02 12:20:24 +0000311 for (StackTy::reverse_iterator I = std::next(Iter),
312 EE = std::prev(Stack.rend());
Alexey Bataev758e55e2013-09-06 18:03:48 +0000313 I != EE; ++I) {
Alexey Bataeved09d242014-05-28 05:53:51 +0000314 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables
315 // Referenced
Alexey Bataev758e55e2013-09-06 18:03:48 +0000316 // in a Construct, implicitly determined, p.6]
317 // In a task construct, if no default clause is present, a variable
318 // whose data-sharing attribute is not determined by the rules above is
319 // firstprivate.
320 DVarTemp = getDSA(I, D);
321 if (DVarTemp.CKind != OMPC_shared) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000322 DVar.RefExpr = nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000323 DVar.DKind = OMPD_task;
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000324 DVar.CKind = OMPC_firstprivate;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000325 return DVar;
326 }
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000327 if (isParallelOrTaskRegion(I->Directive))
Alexey Bataeved09d242014-05-28 05:53:51 +0000328 break;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000329 }
330 DVar.DKind = OMPD_task;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000331 DVar.CKind =
Alexey Bataeved09d242014-05-28 05:53:51 +0000332 (DVarTemp.CKind == OMPC_unknown) ? OMPC_firstprivate : OMPC_shared;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000333 return DVar;
334 }
335 }
336 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
337 // in a Construct, implicitly determined, p.3]
338 // For constructs other than task, if no default clause is present, these
339 // variables inherit their data-sharing attributes from the enclosing
340 // context.
Benjamin Kramer167e9992014-03-02 12:20:24 +0000341 return getDSA(std::next(Iter), D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000342}
343
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000344DeclRefExpr *DSAStackTy::addUniqueAligned(VarDecl *D, DeclRefExpr *NewDE) {
345 assert(Stack.size() > 1 && "Data sharing attributes stack is empty");
346 auto It = Stack.back().AlignedMap.find(D);
347 if (It == Stack.back().AlignedMap.end()) {
348 assert(NewDE && "Unexpected nullptr expr to be added into aligned map");
349 Stack.back().AlignedMap[D] = NewDE;
350 return nullptr;
351 } else {
352 assert(It->second && "Unexpected nullptr expr in the aligned map");
353 return It->second;
354 }
355 return nullptr;
356}
357
Alexey Bataev758e55e2013-09-06 18:03:48 +0000358void DSAStackTy::addDSA(VarDecl *D, DeclRefExpr *E, OpenMPClauseKind A) {
359 if (A == OMPC_threadprivate) {
360 Stack[0].SharingMap[D].Attributes = A;
361 Stack[0].SharingMap[D].RefExpr = E;
362 } else {
363 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
364 Stack.back().SharingMap[D].Attributes = A;
365 Stack.back().SharingMap[D].RefExpr = E;
366 }
367}
368
Alexey Bataeved09d242014-05-28 05:53:51 +0000369bool DSAStackTy::isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter) {
Alexey Bataevec3da872014-01-31 05:15:34 +0000370 if (Stack.size() > 2) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000371 reverse_iterator I = Iter, E = std::prev(Stack.rend());
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000372 Scope *TopScope = nullptr;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000373 while (I != E && !isParallelOrTaskRegion(I->Directive)) {
Alexey Bataevec3da872014-01-31 05:15:34 +0000374 ++I;
375 }
Alexey Bataeved09d242014-05-28 05:53:51 +0000376 if (I == E)
377 return false;
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000378 TopScope = I->CurScope ? I->CurScope->getParent() : nullptr;
Alexey Bataevec3da872014-01-31 05:15:34 +0000379 Scope *CurScope = getCurScope();
380 while (CurScope != TopScope && !CurScope->isDeclScope(D)) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000381 CurScope = CurScope->getParent();
Alexey Bataevec3da872014-01-31 05:15:34 +0000382 }
383 return CurScope != TopScope;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000384 }
Alexey Bataevec3da872014-01-31 05:15:34 +0000385 return false;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000386}
387
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000388DSAStackTy::DSAVarData DSAStackTy::getTopDSA(VarDecl *D, bool FromParent) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000389 DSAVarData DVar;
390
391 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
392 // in a Construct, C/C++, predetermined, p.1]
393 // Variables appearing in threadprivate directives are threadprivate.
Alexey Bataev26a39242015-01-13 03:35:30 +0000394 if (D->getTLSKind() != VarDecl::TLS_None ||
395 D->getStorageClass() == SC_Register) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000396 DVar.CKind = OMPC_threadprivate;
397 return DVar;
398 }
399 if (Stack[0].SharingMap.count(D)) {
400 DVar.RefExpr = Stack[0].SharingMap[D].RefExpr;
401 DVar.CKind = OMPC_threadprivate;
402 return DVar;
403 }
404
405 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
406 // in a Construct, C/C++, predetermined, p.1]
407 // Variables with automatic storage duration that are declared in a scope
408 // inside the construct are private.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000409 OpenMPDirectiveKind Kind =
410 FromParent ? getParentDirective() : getCurrentDirective();
411 auto StartI = std::next(Stack.rbegin());
412 auto EndI = std::prev(Stack.rend());
413 if (FromParent && StartI != EndI) {
414 StartI = std::next(StartI);
415 }
416 if (!isParallelOrTaskRegion(Kind)) {
Alexey Bataev8b9cb982014-07-24 02:33:58 +0000417 if (isOpenMPLocal(D, StartI) &&
418 ((D->isLocalVarDecl() && (D->getStorageClass() == SC_Auto ||
419 D->getStorageClass() == SC_None)) ||
420 isa<ParmVarDecl>(D))) {
Alexey Bataevec3da872014-01-31 05:15:34 +0000421 DVar.CKind = OMPC_private;
422 return DVar;
Alexander Musman8dba6642014-04-22 13:09:42 +0000423 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000424 }
425
426 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
427 // in a Construct, C/C++, predetermined, p.4]
Alexey Bataevf29276e2014-06-18 04:14:57 +0000428 // Static data members are shared.
Alexey Bataev758e55e2013-09-06 18:03:48 +0000429 if (D->isStaticDataMember()) {
Alexey Bataeved09d242014-05-28 05:53:51 +0000430 // Variables with const-qualified type having no mutable member may be
Alexey Bataevf29276e2014-06-18 04:14:57 +0000431 // listed in a firstprivate clause, even if they are static data members.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000432 DSAVarData DVarTemp = hasDSA(D, MatchesAnyClause(OMPC_firstprivate),
433 MatchesAlways(), FromParent);
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000434 if (DVarTemp.CKind == OMPC_firstprivate && DVarTemp.RefExpr)
435 return DVar;
436
Alexey Bataev758e55e2013-09-06 18:03:48 +0000437 DVar.CKind = OMPC_shared;
438 return DVar;
439 }
440
441 QualType Type = D->getType().getNonReferenceType().getCanonicalType();
Alexey Bataev7ff55242014-06-19 09:13:45 +0000442 bool IsConstant = Type.isConstant(SemaRef.getASTContext());
Alexey Bataev758e55e2013-09-06 18:03:48 +0000443 while (Type->isArrayType()) {
444 QualType ElemType = cast<ArrayType>(Type.getTypePtr())->getElementType();
445 Type = ElemType.getNonReferenceType().getCanonicalType();
446 }
447 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
448 // in a Construct, C/C++, predetermined, p.6]
449 // Variables with const qualified type having no mutable member are
450 // shared.
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000451 CXXRecordDecl *RD =
Alexey Bataev7ff55242014-06-19 09:13:45 +0000452 SemaRef.getLangOpts().CPlusPlus ? Type->getAsCXXRecordDecl() : nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000453 if (IsConstant &&
Alexey Bataev7ff55242014-06-19 09:13:45 +0000454 !(SemaRef.getLangOpts().CPlusPlus && RD && RD->hasMutableFields())) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000455 // Variables with const-qualified type having no mutable member may be
456 // listed in a firstprivate clause, even if they are static data members.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000457 DSAVarData DVarTemp = hasDSA(D, MatchesAnyClause(OMPC_firstprivate),
458 MatchesAlways(), FromParent);
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000459 if (DVarTemp.CKind == OMPC_firstprivate && DVarTemp.RefExpr)
460 return DVar;
461
Alexey Bataev758e55e2013-09-06 18:03:48 +0000462 DVar.CKind = OMPC_shared;
463 return DVar;
464 }
465
466 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
467 // in a Construct, C/C++, predetermined, p.7]
468 // Variables with static storage duration that are declared in a scope
469 // inside the construct are shared.
Alexey Bataevec3da872014-01-31 05:15:34 +0000470 if (D->isStaticLocal()) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000471 DVar.CKind = OMPC_shared;
472 return DVar;
473 }
474
475 // Explicitly specified attributes and local variables with predetermined
476 // attributes.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000477 auto I = std::prev(StartI);
478 if (I->SharingMap.count(D)) {
479 DVar.RefExpr = I->SharingMap[D].RefExpr;
480 DVar.CKind = I->SharingMap[D].Attributes;
481 DVar.ImplicitDSALoc = I->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000482 }
483
484 return DVar;
485}
486
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000487DSAStackTy::DSAVarData DSAStackTy::getImplicitDSA(VarDecl *D, bool FromParent) {
488 auto StartI = Stack.rbegin();
489 auto EndI = std::prev(Stack.rend());
490 if (FromParent && StartI != EndI) {
491 StartI = std::next(StartI);
492 }
493 return getDSA(StartI, D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000494}
495
Alexey Bataevf29276e2014-06-18 04:14:57 +0000496template <class ClausesPredicate, class DirectivesPredicate>
497DSAStackTy::DSAVarData DSAStackTy::hasDSA(VarDecl *D, ClausesPredicate CPred,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000498 DirectivesPredicate DPred,
499 bool FromParent) {
500 auto StartI = std::next(Stack.rbegin());
501 auto EndI = std::prev(Stack.rend());
502 if (FromParent && StartI != EndI) {
503 StartI = std::next(StartI);
504 }
505 for (auto I = StartI, EE = EndI; I != EE; ++I) {
506 if (!DPred(I->Directive) && !isParallelOrTaskRegion(I->Directive))
Alexey Bataeved09d242014-05-28 05:53:51 +0000507 continue;
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000508 DSAVarData DVar = getDSA(I, D);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000509 if (CPred(DVar.CKind))
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000510 return DVar;
511 }
512 return DSAVarData();
513}
514
Alexey Bataevf29276e2014-06-18 04:14:57 +0000515template <class ClausesPredicate, class DirectivesPredicate>
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000516DSAStackTy::DSAVarData
517DSAStackTy::hasInnermostDSA(VarDecl *D, ClausesPredicate CPred,
518 DirectivesPredicate DPred, bool FromParent) {
519 auto StartI = std::next(Stack.rbegin());
520 auto EndI = std::prev(Stack.rend());
521 if (FromParent && StartI != EndI) {
522 StartI = std::next(StartI);
523 }
524 for (auto I = StartI, EE = EndI; I != EE; ++I) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000525 if (!DPred(I->Directive))
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000526 break;
Alexey Bataevc5e02582014-06-16 07:08:35 +0000527 DSAVarData DVar = getDSA(I, D);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000528 if (CPred(DVar.CKind))
Alexey Bataevc5e02582014-06-16 07:08:35 +0000529 return DVar;
530 return DSAVarData();
531 }
532 return DSAVarData();
533}
534
Alexander Musmand9ed09f2014-07-21 09:42:05 +0000535template <class NamedDirectivesPredicate>
536bool DSAStackTy::hasDirective(NamedDirectivesPredicate DPred, bool FromParent) {
537 auto StartI = std::next(Stack.rbegin());
538 auto EndI = std::prev(Stack.rend());
539 if (FromParent && StartI != EndI) {
540 StartI = std::next(StartI);
541 }
542 for (auto I = StartI, EE = EndI; I != EE; ++I) {
543 if (DPred(I->Directive, I->DirectiveName, I->ConstructLoc))
544 return true;
545 }
546 return false;
547}
548
Alexey Bataev758e55e2013-09-06 18:03:48 +0000549void Sema::InitDataSharingAttributesStack() {
550 VarDataSharingAttributesStack = new DSAStackTy(*this);
551}
552
553#define DSAStack static_cast<DSAStackTy *>(VarDataSharingAttributesStack)
554
Alexey Bataevf841bd92014-12-16 07:00:22 +0000555bool Sema::IsOpenMPCapturedVar(VarDecl *VD) {
556 assert(LangOpts.OpenMP && "OpenMP is not allowed");
557 if (DSAStack->getCurrentDirective() != OMPD_unknown) {
558 auto DVarPrivate = DSAStack->getTopDSA(VD, /*FromParent=*/false);
559 if (DVarPrivate.CKind != OMPC_unknown && isOpenMPPrivate(DVarPrivate.CKind))
560 return true;
561 DVarPrivate = DSAStack->hasDSA(VD, isOpenMPPrivate, MatchesAlways(),
562 /*FromParent=*/false);
563 return DVarPrivate.CKind != OMPC_unknown;
564 }
565 return false;
566}
567
Alexey Bataeved09d242014-05-28 05:53:51 +0000568void Sema::DestroyDataSharingAttributesStack() { delete DSAStack; }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000569
570void Sema::StartOpenMPDSABlock(OpenMPDirectiveKind DKind,
571 const DeclarationNameInfo &DirName,
Alexey Bataevbae9a792014-06-27 10:37:06 +0000572 Scope *CurScope, SourceLocation Loc) {
573 DSAStack->push(DKind, DirName, CurScope, Loc);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000574 PushExpressionEvaluationContext(PotentiallyEvaluated);
575}
576
577void Sema::EndOpenMPDSABlock(Stmt *CurDirective) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000578 // OpenMP [2.14.3.5, Restrictions, C/C++, p.1]
579 // A variable of class type (or array thereof) that appears in a lastprivate
580 // clause requires an accessible, unambiguous default constructor for the
581 // class type, unless the list item is also specified in a firstprivate
582 // clause.
583 if (auto D = dyn_cast_or_null<OMPExecutableDirective>(CurDirective)) {
584 for (auto C : D->clauses()) {
585 if (auto Clause = dyn_cast<OMPLastprivateClause>(C)) {
586 for (auto VarRef : Clause->varlists()) {
587 if (VarRef->isValueDependent() || VarRef->isTypeDependent())
588 continue;
589 auto VD = cast<VarDecl>(cast<DeclRefExpr>(VarRef)->getDecl());
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000590 auto DVar = DSAStack->getTopDSA(VD, false);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000591 if (DVar.CKind == OMPC_lastprivate) {
592 SourceLocation ELoc = VarRef->getExprLoc();
593 auto Type = VarRef->getType();
594 if (Type->isArrayType())
595 Type = QualType(Type->getArrayElementTypeNoTypeQual(), 0);
596 CXXRecordDecl *RD =
Alexey Bataev23b69422014-06-18 07:08:49 +0000597 getLangOpts().CPlusPlus ? Type->getAsCXXRecordDecl() : nullptr;
598 // FIXME This code must be replaced by actual constructing of the
599 // lastprivate variable.
Alexey Bataevf29276e2014-06-18 04:14:57 +0000600 if (RD) {
601 CXXConstructorDecl *CD = LookupDefaultConstructor(RD);
602 PartialDiagnostic PD =
603 PartialDiagnostic(PartialDiagnostic::NullDiagnostic());
604 if (!CD ||
605 CheckConstructorAccess(
606 ELoc, CD, InitializedEntity::InitializeTemporary(Type),
607 CD->getAccess(), PD) == AR_inaccessible ||
608 CD->isDeleted()) {
609 Diag(ELoc, diag::err_omp_required_method)
610 << getOpenMPClauseName(OMPC_lastprivate) << 0;
611 bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
612 VarDecl::DeclarationOnly;
613 Diag(VD->getLocation(), IsDecl ? diag::note_previous_decl
614 : diag::note_defined_here)
615 << VD;
616 Diag(RD->getLocation(), diag::note_previous_decl) << RD;
617 continue;
618 }
619 MarkFunctionReferenced(ELoc, CD);
620 DiagnoseUseOfDecl(CD, ELoc);
621 }
622 }
623 }
624 }
625 }
626 }
627
Alexey Bataev758e55e2013-09-06 18:03:48 +0000628 DSAStack->pop();
629 DiscardCleanupsInEvaluationContext();
630 PopExpressionEvaluationContext();
631}
632
Alexey Bataeva769e072013-03-22 06:34:35 +0000633namespace {
634
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000635class VarDeclFilterCCC : public CorrectionCandidateCallback {
636private:
Alexey Bataev7ff55242014-06-19 09:13:45 +0000637 Sema &SemaRef;
Alexey Bataeved09d242014-05-28 05:53:51 +0000638
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000639public:
Alexey Bataev7ff55242014-06-19 09:13:45 +0000640 explicit VarDeclFilterCCC(Sema &S) : SemaRef(S) {}
Craig Toppere14c0f82014-03-12 04:55:44 +0000641 bool ValidateCandidate(const TypoCorrection &Candidate) override {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000642 NamedDecl *ND = Candidate.getCorrectionDecl();
643 if (VarDecl *VD = dyn_cast_or_null<VarDecl>(ND)) {
644 return VD->hasGlobalStorage() &&
Alexey Bataev7ff55242014-06-19 09:13:45 +0000645 SemaRef.isDeclInScope(ND, SemaRef.getCurLexicalContext(),
646 SemaRef.getCurScope());
Alexey Bataeva769e072013-03-22 06:34:35 +0000647 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000648 return false;
Alexey Bataeva769e072013-03-22 06:34:35 +0000649 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000650};
Alexey Bataeved09d242014-05-28 05:53:51 +0000651} // namespace
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000652
653ExprResult Sema::ActOnOpenMPIdExpression(Scope *CurScope,
654 CXXScopeSpec &ScopeSpec,
655 const DeclarationNameInfo &Id) {
656 LookupResult Lookup(*this, Id, LookupOrdinaryName);
657 LookupParsedName(Lookup, CurScope, &ScopeSpec, true);
658
659 if (Lookup.isAmbiguous())
660 return ExprError();
661
662 VarDecl *VD;
663 if (!Lookup.isSingleResult()) {
Kaelyn Takata89c881b2014-10-27 18:07:29 +0000664 if (TypoCorrection Corrected = CorrectTypo(
665 Id, LookupOrdinaryName, CurScope, nullptr,
666 llvm::make_unique<VarDeclFilterCCC>(*this), CTK_ErrorRecovery)) {
Richard Smithf9b15102013-08-17 00:46:16 +0000667 diagnoseTypo(Corrected,
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000668 PDiag(Lookup.empty()
669 ? diag::err_undeclared_var_use_suggest
670 : diag::err_omp_expected_var_arg_suggest)
671 << Id.getName());
Richard Smithf9b15102013-08-17 00:46:16 +0000672 VD = Corrected.getCorrectionDeclAs<VarDecl>();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000673 } else {
Richard Smithf9b15102013-08-17 00:46:16 +0000674 Diag(Id.getLoc(), Lookup.empty() ? diag::err_undeclared_var_use
675 : diag::err_omp_expected_var_arg)
676 << Id.getName();
677 return ExprError();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000678 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000679 } else {
680 if (!(VD = Lookup.getAsSingle<VarDecl>())) {
Alexey Bataeved09d242014-05-28 05:53:51 +0000681 Diag(Id.getLoc(), diag::err_omp_expected_var_arg) << Id.getName();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000682 Diag(Lookup.getFoundDecl()->getLocation(), diag::note_declared_at);
683 return ExprError();
684 }
685 }
686 Lookup.suppressDiagnostics();
687
688 // OpenMP [2.9.2, Syntax, C/C++]
689 // Variables must be file-scope, namespace-scope, or static block-scope.
690 if (!VD->hasGlobalStorage()) {
691 Diag(Id.getLoc(), diag::err_omp_global_var_arg)
Alexey Bataeved09d242014-05-28 05:53:51 +0000692 << getOpenMPDirectiveName(OMPD_threadprivate) << !VD->isStaticLocal();
693 bool IsDecl =
694 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000695 Diag(VD->getLocation(),
Alexey Bataeved09d242014-05-28 05:53:51 +0000696 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
697 << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000698 return ExprError();
699 }
700
Alexey Bataev7d2960b2013-09-26 03:24:06 +0000701 VarDecl *CanonicalVD = VD->getCanonicalDecl();
702 NamedDecl *ND = cast<NamedDecl>(CanonicalVD);
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000703 // OpenMP [2.9.2, Restrictions, C/C++, p.2]
704 // A threadprivate directive for file-scope variables must appear outside
705 // any definition or declaration.
Alexey Bataev7d2960b2013-09-26 03:24:06 +0000706 if (CanonicalVD->getDeclContext()->isTranslationUnit() &&
707 !getCurLexicalContext()->isTranslationUnit()) {
708 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +0000709 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
710 bool IsDecl =
711 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
712 Diag(VD->getLocation(),
713 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
714 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +0000715 return ExprError();
716 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000717 // OpenMP [2.9.2, Restrictions, C/C++, p.3]
718 // A threadprivate directive for static class member variables must appear
719 // in the class definition, in the same scope in which the member
720 // variables are declared.
Alexey Bataev7d2960b2013-09-26 03:24:06 +0000721 if (CanonicalVD->isStaticDataMember() &&
722 !CanonicalVD->getDeclContext()->Equals(getCurLexicalContext())) {
723 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +0000724 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
725 bool IsDecl =
726 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
727 Diag(VD->getLocation(),
728 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
729 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +0000730 return ExprError();
731 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000732 // OpenMP [2.9.2, Restrictions, C/C++, p.4]
733 // A threadprivate directive for namespace-scope variables must appear
734 // outside any definition or declaration other than the namespace
735 // definition itself.
Alexey Bataev7d2960b2013-09-26 03:24:06 +0000736 if (CanonicalVD->getDeclContext()->isNamespace() &&
737 (!getCurLexicalContext()->isFileContext() ||
738 !getCurLexicalContext()->Encloses(CanonicalVD->getDeclContext()))) {
739 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +0000740 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
741 bool IsDecl =
742 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
743 Diag(VD->getLocation(),
744 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
745 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +0000746 return ExprError();
747 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000748 // OpenMP [2.9.2, Restrictions, C/C++, p.6]
749 // A threadprivate directive for static block-scope variables must appear
750 // in the scope of the variable and not in a nested scope.
Alexey Bataev7d2960b2013-09-26 03:24:06 +0000751 if (CanonicalVD->isStaticLocal() && CurScope &&
752 !isDeclInScope(ND, getCurLexicalContext(), CurScope)) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000753 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +0000754 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
755 bool IsDecl =
756 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
757 Diag(VD->getLocation(),
758 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
759 << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000760 return ExprError();
761 }
762
763 // OpenMP [2.9.2, Restrictions, C/C++, p.2-6]
764 // A threadprivate directive must lexically precede all references to any
765 // of the variables in its list.
766 if (VD->isUsed()) {
767 Diag(Id.getLoc(), diag::err_omp_var_used)
Alexey Bataeved09d242014-05-28 05:53:51 +0000768 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000769 return ExprError();
770 }
771
772 QualType ExprType = VD->getType().getNonReferenceType();
Alexey Bataevd178ad42014-03-07 08:03:37 +0000773 ExprResult DE = BuildDeclRefExpr(VD, ExprType, VK_LValue, Id.getLoc());
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000774 return DE;
775}
776
Alexey Bataeved09d242014-05-28 05:53:51 +0000777Sema::DeclGroupPtrTy
778Sema::ActOnOpenMPThreadprivateDirective(SourceLocation Loc,
779 ArrayRef<Expr *> VarList) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000780 if (OMPThreadPrivateDecl *D = CheckOMPThreadPrivateDecl(Loc, VarList)) {
Alexey Bataeva769e072013-03-22 06:34:35 +0000781 CurContext->addDecl(D);
782 return DeclGroupPtrTy::make(DeclGroupRef(D));
783 }
784 return DeclGroupPtrTy();
785}
786
Alexey Bataev18b92ee2014-05-28 07:40:25 +0000787namespace {
788class LocalVarRefChecker : public ConstStmtVisitor<LocalVarRefChecker, bool> {
789 Sema &SemaRef;
790
791public:
792 bool VisitDeclRefExpr(const DeclRefExpr *E) {
793 if (auto VD = dyn_cast<VarDecl>(E->getDecl())) {
794 if (VD->hasLocalStorage()) {
795 SemaRef.Diag(E->getLocStart(),
796 diag::err_omp_local_var_in_threadprivate_init)
797 << E->getSourceRange();
798 SemaRef.Diag(VD->getLocation(), diag::note_defined_here)
799 << VD << VD->getSourceRange();
800 return true;
801 }
802 }
803 return false;
804 }
805 bool VisitStmt(const Stmt *S) {
806 for (auto Child : S->children()) {
807 if (Child && Visit(Child))
808 return true;
809 }
810 return false;
811 }
Alexey Bataev23b69422014-06-18 07:08:49 +0000812 explicit LocalVarRefChecker(Sema &SemaRef) : SemaRef(SemaRef) {}
Alexey Bataev18b92ee2014-05-28 07:40:25 +0000813};
814} // namespace
815
Alexey Bataeved09d242014-05-28 05:53:51 +0000816OMPThreadPrivateDecl *
817Sema::CheckOMPThreadPrivateDecl(SourceLocation Loc, ArrayRef<Expr *> VarList) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000818 SmallVector<Expr *, 8> Vars;
Alexey Bataeved09d242014-05-28 05:53:51 +0000819 for (auto &RefExpr : VarList) {
820 DeclRefExpr *DE = cast<DeclRefExpr>(RefExpr);
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000821 VarDecl *VD = cast<VarDecl>(DE->getDecl());
822 SourceLocation ILoc = DE->getExprLoc();
Alexey Bataeva769e072013-03-22 06:34:35 +0000823
824 // OpenMP [2.9.2, Restrictions, C/C++, p.10]
825 // A threadprivate variable must not have an incomplete type.
826 if (RequireCompleteType(ILoc, VD->getType(),
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000827 diag::err_omp_threadprivate_incomplete_type)) {
Alexey Bataeva769e072013-03-22 06:34:35 +0000828 continue;
829 }
830
831 // OpenMP [2.9.2, Restrictions, C/C++, p.10]
832 // A threadprivate variable must not have a reference type.
833 if (VD->getType()->isReferenceType()) {
834 Diag(ILoc, diag::err_omp_ref_type_arg)
Alexey Bataeved09d242014-05-28 05:53:51 +0000835 << getOpenMPDirectiveName(OMPD_threadprivate) << VD->getType();
836 bool IsDecl =
837 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
838 Diag(VD->getLocation(),
839 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
840 << VD;
Alexey Bataeva769e072013-03-22 06:34:35 +0000841 continue;
842 }
843
Richard Smithfd3834f2013-04-13 02:43:54 +0000844 // Check if this is a TLS variable.
Alexey Bataev26a39242015-01-13 03:35:30 +0000845 if (VD->getTLSKind() != VarDecl::TLS_None ||
846 VD->getStorageClass() == SC_Register) {
847 Diag(ILoc, diag::err_omp_var_thread_local)
848 << VD << ((VD->getTLSKind() != VarDecl::TLS_None) ? 0 : 1);
Alexey Bataeved09d242014-05-28 05:53:51 +0000849 bool IsDecl =
850 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
851 Diag(VD->getLocation(),
852 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
853 << VD;
Alexey Bataeva769e072013-03-22 06:34:35 +0000854 continue;
855 }
856
Alexey Bataev18b92ee2014-05-28 07:40:25 +0000857 // Check if initial value of threadprivate variable reference variable with
858 // local storage (it is not supported by runtime).
859 if (auto Init = VD->getAnyInitializer()) {
860 LocalVarRefChecker Checker(*this);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000861 if (Checker.Visit(Init))
862 continue;
Alexey Bataev18b92ee2014-05-28 07:40:25 +0000863 }
864
Alexey Bataeved09d242014-05-28 05:53:51 +0000865 Vars.push_back(RefExpr);
Alexey Bataevd178ad42014-03-07 08:03:37 +0000866 DSAStack->addDSA(VD, DE, OMPC_threadprivate);
Alexey Bataev97720002014-11-11 04:05:39 +0000867 VD->addAttr(OMPThreadPrivateDeclAttr::CreateImplicit(
868 Context, SourceRange(Loc, Loc)));
869 if (auto *ML = Context.getASTMutationListener())
870 ML->DeclarationMarkedOpenMPThreadPrivate(VD);
Alexey Bataeva769e072013-03-22 06:34:35 +0000871 }
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000872 OMPThreadPrivateDecl *D = nullptr;
Alexey Bataevec3da872014-01-31 05:15:34 +0000873 if (!Vars.empty()) {
874 D = OMPThreadPrivateDecl::Create(Context, getCurLexicalContext(), Loc,
875 Vars);
876 D->setAccess(AS_public);
877 }
878 return D;
Alexey Bataeva769e072013-03-22 06:34:35 +0000879}
Alexey Bataev6f6f3b42013-05-13 04:18:18 +0000880
Alexey Bataev7ff55242014-06-19 09:13:45 +0000881static void ReportOriginalDSA(Sema &SemaRef, DSAStackTy *Stack,
882 const VarDecl *VD, DSAStackTy::DSAVarData DVar,
883 bool IsLoopIterVar = false) {
884 if (DVar.RefExpr) {
885 SemaRef.Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_explicit_dsa)
886 << getOpenMPClauseName(DVar.CKind);
887 return;
888 }
889 enum {
890 PDSA_StaticMemberShared,
891 PDSA_StaticLocalVarShared,
892 PDSA_LoopIterVarPrivate,
893 PDSA_LoopIterVarLinear,
894 PDSA_LoopIterVarLastprivate,
895 PDSA_ConstVarShared,
896 PDSA_GlobalVarShared,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000897 PDSA_TaskVarFirstprivate,
Alexey Bataevbae9a792014-06-27 10:37:06 +0000898 PDSA_LocalVarPrivate,
899 PDSA_Implicit
900 } Reason = PDSA_Implicit;
Alexey Bataev7ff55242014-06-19 09:13:45 +0000901 bool ReportHint = false;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000902 auto ReportLoc = VD->getLocation();
Alexey Bataev7ff55242014-06-19 09:13:45 +0000903 if (IsLoopIterVar) {
904 if (DVar.CKind == OMPC_private)
905 Reason = PDSA_LoopIterVarPrivate;
906 else if (DVar.CKind == OMPC_lastprivate)
907 Reason = PDSA_LoopIterVarLastprivate;
908 else
909 Reason = PDSA_LoopIterVarLinear;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000910 } else if (DVar.DKind == OMPD_task && DVar.CKind == OMPC_firstprivate) {
911 Reason = PDSA_TaskVarFirstprivate;
912 ReportLoc = DVar.ImplicitDSALoc;
Alexey Bataev7ff55242014-06-19 09:13:45 +0000913 } else if (VD->isStaticLocal())
914 Reason = PDSA_StaticLocalVarShared;
915 else if (VD->isStaticDataMember())
916 Reason = PDSA_StaticMemberShared;
917 else if (VD->isFileVarDecl())
918 Reason = PDSA_GlobalVarShared;
919 else if (VD->getType().isConstant(SemaRef.getASTContext()))
920 Reason = PDSA_ConstVarShared;
Alexey Bataevbae9a792014-06-27 10:37:06 +0000921 else if (VD->isLocalVarDecl() && DVar.CKind == OMPC_private) {
Alexey Bataev7ff55242014-06-19 09:13:45 +0000922 ReportHint = true;
923 Reason = PDSA_LocalVarPrivate;
924 }
Alexey Bataevbae9a792014-06-27 10:37:06 +0000925 if (Reason != PDSA_Implicit) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000926 SemaRef.Diag(ReportLoc, diag::note_omp_predetermined_dsa)
Alexey Bataevbae9a792014-06-27 10:37:06 +0000927 << Reason << ReportHint
928 << getOpenMPDirectiveName(Stack->getCurrentDirective());
929 } else if (DVar.ImplicitDSALoc.isValid()) {
930 SemaRef.Diag(DVar.ImplicitDSALoc, diag::note_omp_implicit_dsa)
931 << getOpenMPClauseName(DVar.CKind);
932 }
Alexey Bataev7ff55242014-06-19 09:13:45 +0000933}
934
Alexey Bataev758e55e2013-09-06 18:03:48 +0000935namespace {
936class DSAAttrChecker : public StmtVisitor<DSAAttrChecker, void> {
937 DSAStackTy *Stack;
Alexey Bataev7ff55242014-06-19 09:13:45 +0000938 Sema &SemaRef;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000939 bool ErrorFound;
940 CapturedStmt *CS;
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000941 llvm::SmallVector<Expr *, 8> ImplicitFirstprivate;
Alexey Bataev4acb8592014-07-07 13:01:15 +0000942 llvm::DenseMap<VarDecl *, Expr *> VarsWithInheritedDSA;
Alexey Bataeved09d242014-05-28 05:53:51 +0000943
Alexey Bataev758e55e2013-09-06 18:03:48 +0000944public:
945 void VisitDeclRefExpr(DeclRefExpr *E) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000946 if (auto *VD = dyn_cast<VarDecl>(E->getDecl())) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000947 // Skip internally declared variables.
Alexey Bataeved09d242014-05-28 05:53:51 +0000948 if (VD->isLocalVarDecl() && !CS->capturesVariable(VD))
949 return;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000950
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000951 auto DVar = Stack->getTopDSA(VD, false);
952 // Check if the variable has explicit DSA set and stop analysis if it so.
953 if (DVar.RefExpr) return;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000954
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000955 auto ELoc = E->getExprLoc();
956 auto DKind = Stack->getCurrentDirective();
Alexey Bataev758e55e2013-09-06 18:03:48 +0000957 // The default(none) clause requires that each variable that is referenced
958 // in the construct, and does not have a predetermined data-sharing
959 // attribute, must have its data-sharing attribute explicitly determined
960 // by being listed in a data-sharing attribute clause.
961 if (DVar.CKind == OMPC_unknown && Stack->getDefaultDSA() == DSA_none &&
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000962 isParallelOrTaskRegion(DKind) &&
Alexey Bataev4acb8592014-07-07 13:01:15 +0000963 VarsWithInheritedDSA.count(VD) == 0) {
964 VarsWithInheritedDSA[VD] = E;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000965 return;
966 }
967
968 // OpenMP [2.9.3.6, Restrictions, p.2]
969 // A list item that appears in a reduction clause of the innermost
970 // enclosing worksharing or parallel construct may not be accessed in an
971 // explicit task.
Alexey Bataevf29276e2014-06-18 04:14:57 +0000972 DVar = Stack->hasInnermostDSA(VD, MatchesAnyClause(OMPC_reduction),
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000973 [](OpenMPDirectiveKind K) -> bool {
974 return isOpenMPParallelDirective(K) ||
Alexey Bataev13314bf2014-10-09 04:18:56 +0000975 isOpenMPWorksharingDirective(K) ||
976 isOpenMPTeamsDirective(K);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000977 },
978 false);
Alexey Bataevc5e02582014-06-16 07:08:35 +0000979 if (DKind == OMPD_task && DVar.CKind == OMPC_reduction) {
980 ErrorFound = true;
Alexey Bataev7ff55242014-06-19 09:13:45 +0000981 SemaRef.Diag(ELoc, diag::err_omp_reduction_in_task);
982 ReportOriginalDSA(SemaRef, Stack, VD, DVar);
Alexey Bataevc5e02582014-06-16 07:08:35 +0000983 return;
984 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000985
986 // Define implicit data-sharing attributes for task.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000987 DVar = Stack->getImplicitDSA(VD, false);
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000988 if (DKind == OMPD_task && DVar.CKind != OMPC_shared)
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000989 ImplicitFirstprivate.push_back(E);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000990 }
991 }
992 void VisitOMPExecutableDirective(OMPExecutableDirective *S) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000993 for (auto *C : S->clauses()) {
994 // Skip analysis of arguments of implicitly defined firstprivate clause
995 // for task directives.
996 if (C && (!isa<OMPFirstprivateClause>(C) || C->getLocStart().isValid()))
997 for (auto *CC : C->children()) {
998 if (CC)
999 Visit(CC);
1000 }
1001 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001002 }
1003 void VisitStmt(Stmt *S) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001004 for (auto *C : S->children()) {
1005 if (C && !isa<OMPExecutableDirective>(C))
1006 Visit(C);
1007 }
Alexey Bataeved09d242014-05-28 05:53:51 +00001008 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001009
1010 bool isErrorFound() { return ErrorFound; }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001011 ArrayRef<Expr *> getImplicitFirstprivate() { return ImplicitFirstprivate; }
Alexey Bataev4acb8592014-07-07 13:01:15 +00001012 llvm::DenseMap<VarDecl *, Expr *> &getVarsWithInheritedDSA() {
1013 return VarsWithInheritedDSA;
1014 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001015
Alexey Bataev7ff55242014-06-19 09:13:45 +00001016 DSAAttrChecker(DSAStackTy *S, Sema &SemaRef, CapturedStmt *CS)
1017 : Stack(S), SemaRef(SemaRef), ErrorFound(false), CS(CS) {}
Alexey Bataev758e55e2013-09-06 18:03:48 +00001018};
Alexey Bataeved09d242014-05-28 05:53:51 +00001019} // namespace
Alexey Bataev758e55e2013-09-06 18:03:48 +00001020
Alexey Bataevbae9a792014-06-27 10:37:06 +00001021void Sema::ActOnOpenMPRegionStart(OpenMPDirectiveKind DKind, Scope *CurScope) {
Alexey Bataev9959db52014-05-06 10:08:46 +00001022 switch (DKind) {
1023 case OMPD_parallel: {
1024 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
1025 QualType KmpInt32PtrTy = Context.getPointerType(KmpInt32Ty);
Alexey Bataevdf9b1592014-06-25 04:09:13 +00001026 Sema::CapturedParamNameType Params[] = {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001027 std::make_pair(".global_tid.", KmpInt32PtrTy),
1028 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1029 std::make_pair(StringRef(), QualType()) // __context with shared vars
Alexey Bataev9959db52014-05-06 10:08:46 +00001030 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001031 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1032 Params);
Alexey Bataev9959db52014-05-06 10:08:46 +00001033 break;
1034 }
1035 case OMPD_simd: {
Alexey Bataevdf9b1592014-06-25 04:09:13 +00001036 Sema::CapturedParamNameType Params[] = {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001037 std::make_pair(StringRef(), QualType()) // __context with shared vars
1038 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001039 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1040 Params);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001041 break;
1042 }
1043 case OMPD_for: {
Alexey Bataevdf9b1592014-06-25 04:09:13 +00001044 Sema::CapturedParamNameType Params[] = {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001045 std::make_pair(StringRef(), QualType()) // __context with shared vars
Alexey Bataev9959db52014-05-06 10:08:46 +00001046 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001047 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1048 Params);
Alexey Bataev9959db52014-05-06 10:08:46 +00001049 break;
1050 }
Alexander Musmanf82886e2014-09-18 05:12:34 +00001051 case OMPD_for_simd: {
1052 Sema::CapturedParamNameType Params[] = {
1053 std::make_pair(StringRef(), QualType()) // __context with shared vars
1054 };
1055 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1056 Params);
1057 break;
1058 }
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00001059 case OMPD_sections: {
1060 Sema::CapturedParamNameType Params[] = {
1061 std::make_pair(StringRef(), QualType()) // __context with shared vars
1062 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001063 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1064 Params);
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00001065 break;
1066 }
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001067 case OMPD_section: {
1068 Sema::CapturedParamNameType Params[] = {
1069 std::make_pair(StringRef(), QualType()) // __context with shared vars
1070 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001071 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1072 Params);
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001073 break;
1074 }
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00001075 case OMPD_single: {
1076 Sema::CapturedParamNameType Params[] = {
1077 std::make_pair(StringRef(), QualType()) // __context with shared vars
1078 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001079 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1080 Params);
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00001081 break;
1082 }
Alexander Musman80c22892014-07-17 08:54:58 +00001083 case OMPD_master: {
1084 Sema::CapturedParamNameType Params[] = {
1085 std::make_pair(StringRef(), QualType()) // __context with shared vars
1086 };
1087 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1088 Params);
1089 break;
1090 }
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001091 case OMPD_critical: {
1092 Sema::CapturedParamNameType Params[] = {
1093 std::make_pair(StringRef(), QualType()) // __context with shared vars
1094 };
1095 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1096 Params);
1097 break;
1098 }
Alexey Bataev4acb8592014-07-07 13:01:15 +00001099 case OMPD_parallel_for: {
1100 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
1101 QualType KmpInt32PtrTy = Context.getPointerType(KmpInt32Ty);
1102 Sema::CapturedParamNameType Params[] = {
1103 std::make_pair(".global_tid.", KmpInt32PtrTy),
1104 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1105 std::make_pair(StringRef(), QualType()) // __context with shared vars
1106 };
1107 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1108 Params);
1109 break;
1110 }
Alexander Musmane4e893b2014-09-23 09:33:00 +00001111 case OMPD_parallel_for_simd: {
1112 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
1113 QualType KmpInt32PtrTy = Context.getPointerType(KmpInt32Ty);
1114 Sema::CapturedParamNameType Params[] = {
1115 std::make_pair(".global_tid.", KmpInt32PtrTy),
1116 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1117 std::make_pair(StringRef(), QualType()) // __context with shared vars
1118 };
1119 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1120 Params);
1121 break;
1122 }
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001123 case OMPD_parallel_sections: {
1124 Sema::CapturedParamNameType Params[] = {
1125 std::make_pair(StringRef(), QualType()) // __context with shared vars
1126 };
1127 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1128 Params);
1129 break;
1130 }
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001131 case OMPD_task: {
1132 Sema::CapturedParamNameType Params[] = {
1133 std::make_pair(StringRef(), QualType()) // __context with shared vars
1134 };
1135 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1136 Params);
1137 break;
1138 }
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001139 case OMPD_ordered: {
1140 Sema::CapturedParamNameType Params[] = {
1141 std::make_pair(StringRef(), QualType()) // __context with shared vars
1142 };
1143 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1144 Params);
1145 break;
1146 }
Alexey Bataev0162e452014-07-22 10:10:35 +00001147 case OMPD_atomic: {
1148 Sema::CapturedParamNameType Params[] = {
1149 std::make_pair(StringRef(), QualType()) // __context with shared vars
1150 };
1151 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1152 Params);
1153 break;
1154 }
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001155 case OMPD_target: {
1156 Sema::CapturedParamNameType Params[] = {
1157 std::make_pair(StringRef(), QualType()) // __context with shared vars
1158 };
1159 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1160 Params);
1161 break;
1162 }
Alexey Bataev13314bf2014-10-09 04:18:56 +00001163 case OMPD_teams: {
1164 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
1165 QualType KmpInt32PtrTy = Context.getPointerType(KmpInt32Ty);
1166 Sema::CapturedParamNameType Params[] = {
1167 std::make_pair(".global_tid.", KmpInt32PtrTy),
1168 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1169 std::make_pair(StringRef(), QualType()) // __context with shared vars
1170 };
1171 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1172 Params);
1173 break;
1174 }
Alexey Bataev9959db52014-05-06 10:08:46 +00001175 case OMPD_threadprivate:
Alexey Bataevee9af452014-11-21 11:33:46 +00001176 case OMPD_taskyield:
1177 case OMPD_barrier:
1178 case OMPD_taskwait:
1179 case OMPD_flush:
Alexey Bataev9959db52014-05-06 10:08:46 +00001180 llvm_unreachable("OpenMP Directive is not allowed");
1181 case OMPD_unknown:
Alexey Bataev9959db52014-05-06 10:08:46 +00001182 llvm_unreachable("Unknown OpenMP directive");
1183 }
1184}
1185
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001186static bool CheckNestingOfRegions(Sema &SemaRef, DSAStackTy *Stack,
1187 OpenMPDirectiveKind CurrentRegion,
1188 const DeclarationNameInfo &CurrentName,
1189 SourceLocation StartLoc) {
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001190 // Allowed nesting of constructs
1191 // +------------------+-----------------+------------------------------------+
1192 // | Parent directive | Child directive | Closely (!), No-Closely(+), Both(*)|
1193 // +------------------+-----------------+------------------------------------+
1194 // | parallel | parallel | * |
1195 // | parallel | for | * |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001196 // | parallel | for simd | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001197 // | parallel | master | * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001198 // | parallel | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001199 // | parallel | simd | * |
1200 // | parallel | sections | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001201 // | parallel | section | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001202 // | parallel | single | * |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001203 // | parallel | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001204 // | parallel |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001205 // | parallel |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001206 // | parallel | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001207 // | parallel | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001208 // | parallel | barrier | * |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001209 // | parallel | taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001210 // | parallel | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001211 // | parallel | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001212 // | parallel | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001213 // | parallel | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001214 // | parallel | teams | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001215 // +------------------+-----------------+------------------------------------+
1216 // | for | parallel | * |
1217 // | for | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001218 // | for | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001219 // | for | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001220 // | for | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001221 // | for | simd | * |
1222 // | for | sections | + |
1223 // | for | section | + |
1224 // | for | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001225 // | for | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001226 // | for |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001227 // | for |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001228 // | for | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001229 // | for | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001230 // | for | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001231 // | for | taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001232 // | for | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001233 // | for | ordered | * (if construct is ordered) |
Alexey Bataev0162e452014-07-22 10:10:35 +00001234 // | for | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001235 // | for | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001236 // | for | teams | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001237 // +------------------+-----------------+------------------------------------+
Alexander Musman80c22892014-07-17 08:54:58 +00001238 // | master | parallel | * |
1239 // | master | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001240 // | master | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001241 // | master | master | * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001242 // | master | critical | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001243 // | master | simd | * |
1244 // | master | sections | + |
1245 // | master | section | + |
1246 // | master | single | + |
1247 // | master | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001248 // | master |parallel for simd| * |
Alexander Musman80c22892014-07-17 08:54:58 +00001249 // | master |parallel sections| * |
1250 // | master | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001251 // | master | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001252 // | master | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001253 // | master | taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001254 // | master | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001255 // | master | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001256 // | master | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001257 // | master | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001258 // | master | teams | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001259 // +------------------+-----------------+------------------------------------+
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001260 // | critical | parallel | * |
1261 // | critical | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001262 // | critical | for simd | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001263 // | critical | master | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001264 // | critical | critical | * (should have different names) |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001265 // | critical | simd | * |
1266 // | critical | sections | + |
1267 // | critical | section | + |
1268 // | critical | single | + |
1269 // | critical | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001270 // | critical |parallel for simd| * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001271 // | critical |parallel sections| * |
1272 // | critical | task | * |
1273 // | critical | taskyield | * |
1274 // | critical | barrier | + |
1275 // | critical | taskwait | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001276 // | critical | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001277 // | critical | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001278 // | critical | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001279 // | critical | teams | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001280 // +------------------+-----------------+------------------------------------+
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001281 // | simd | parallel | |
1282 // | simd | for | |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001283 // | simd | for simd | |
Alexander Musman80c22892014-07-17 08:54:58 +00001284 // | simd | master | |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001285 // | simd | critical | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001286 // | simd | simd | |
1287 // | simd | sections | |
1288 // | simd | section | |
1289 // | simd | single | |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001290 // | simd | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001291 // | simd |parallel for simd| |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001292 // | simd |parallel sections| |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001293 // | simd | task | |
Alexey Bataev68446b72014-07-18 07:47:19 +00001294 // | simd | taskyield | |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001295 // | simd | barrier | |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001296 // | simd | taskwait | |
Alexey Bataev6125da92014-07-21 11:26:11 +00001297 // | simd | flush | |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001298 // | simd | ordered | |
Alexey Bataev0162e452014-07-22 10:10:35 +00001299 // | simd | atomic | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001300 // | simd | target | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001301 // | simd | teams | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001302 // +------------------+-----------------+------------------------------------+
Alexander Musmanf82886e2014-09-18 05:12:34 +00001303 // | for simd | parallel | |
1304 // | for simd | for | |
1305 // | for simd | for simd | |
1306 // | for simd | master | |
1307 // | for simd | critical | |
1308 // | for simd | simd | |
1309 // | for simd | sections | |
1310 // | for simd | section | |
1311 // | for simd | single | |
1312 // | for simd | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001313 // | for simd |parallel for simd| |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001314 // | for simd |parallel sections| |
1315 // | for simd | task | |
1316 // | for simd | taskyield | |
1317 // | for simd | barrier | |
1318 // | for simd | taskwait | |
1319 // | for simd | flush | |
1320 // | for simd | ordered | |
1321 // | for simd | atomic | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001322 // | for simd | target | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001323 // | for simd | teams | |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001324 // +------------------+-----------------+------------------------------------+
Alexander Musmane4e893b2014-09-23 09:33:00 +00001325 // | parallel for simd| parallel | |
1326 // | parallel for simd| for | |
1327 // | parallel for simd| for simd | |
1328 // | parallel for simd| master | |
1329 // | parallel for simd| critical | |
1330 // | parallel for simd| simd | |
1331 // | parallel for simd| sections | |
1332 // | parallel for simd| section | |
1333 // | parallel for simd| single | |
1334 // | parallel for simd| parallel for | |
1335 // | parallel for simd|parallel for simd| |
1336 // | parallel for simd|parallel sections| |
1337 // | parallel for simd| task | |
1338 // | parallel for simd| taskyield | |
1339 // | parallel for simd| barrier | |
1340 // | parallel for simd| taskwait | |
1341 // | parallel for simd| flush | |
1342 // | parallel for simd| ordered | |
1343 // | parallel for simd| atomic | |
1344 // | parallel for simd| target | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001345 // | parallel for simd| teams | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001346 // +------------------+-----------------+------------------------------------+
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001347 // | sections | parallel | * |
1348 // | sections | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001349 // | sections | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001350 // | sections | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001351 // | sections | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001352 // | sections | simd | * |
1353 // | sections | sections | + |
1354 // | sections | section | * |
1355 // | sections | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001356 // | sections | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001357 // | sections |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001358 // | sections |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001359 // | sections | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001360 // | sections | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001361 // | sections | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001362 // | sections | taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001363 // | sections | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001364 // | sections | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001365 // | sections | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001366 // | sections | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001367 // | sections | teams | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001368 // +------------------+-----------------+------------------------------------+
1369 // | section | parallel | * |
1370 // | section | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001371 // | section | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001372 // | section | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001373 // | section | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001374 // | section | simd | * |
1375 // | section | sections | + |
1376 // | section | section | + |
1377 // | section | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001378 // | section | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001379 // | section |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001380 // | section |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001381 // | section | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001382 // | section | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001383 // | section | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001384 // | section | taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001385 // | section | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001386 // | section | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001387 // | section | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001388 // | section | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001389 // | section | teams | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001390 // +------------------+-----------------+------------------------------------+
1391 // | single | parallel | * |
1392 // | single | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001393 // | single | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001394 // | single | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001395 // | single | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001396 // | single | simd | * |
1397 // | single | sections | + |
1398 // | single | section | + |
1399 // | single | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001400 // | single | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001401 // | single |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001402 // | single |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001403 // | single | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001404 // | single | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001405 // | single | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001406 // | single | taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001407 // | single | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001408 // | single | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001409 // | single | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001410 // | single | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001411 // | single | teams | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001412 // +------------------+-----------------+------------------------------------+
1413 // | parallel for | parallel | * |
1414 // | parallel for | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001415 // | parallel for | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001416 // | parallel for | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001417 // | parallel for | critical | * |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001418 // | parallel for | simd | * |
1419 // | parallel for | sections | + |
1420 // | parallel for | section | + |
1421 // | parallel for | single | + |
1422 // | parallel for | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001423 // | parallel for |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001424 // | parallel for |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001425 // | parallel for | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001426 // | parallel for | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001427 // | parallel for | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001428 // | parallel for | taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001429 // | parallel for | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001430 // | parallel for | ordered | * (if construct is ordered) |
Alexey Bataev0162e452014-07-22 10:10:35 +00001431 // | parallel for | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001432 // | parallel for | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001433 // | parallel for | teams | + |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001434 // +------------------+-----------------+------------------------------------+
1435 // | parallel sections| parallel | * |
1436 // | parallel sections| for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001437 // | parallel sections| for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001438 // | parallel sections| master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001439 // | parallel sections| critical | + |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001440 // | parallel sections| simd | * |
1441 // | parallel sections| sections | + |
1442 // | parallel sections| section | * |
1443 // | parallel sections| single | + |
1444 // | parallel sections| parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001445 // | parallel sections|parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001446 // | parallel sections|parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001447 // | parallel sections| task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001448 // | parallel sections| taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001449 // | parallel sections| barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001450 // | parallel sections| taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001451 // | parallel sections| flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001452 // | parallel sections| ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001453 // | parallel sections| atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001454 // | parallel sections| target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001455 // | parallel sections| teams | + |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001456 // +------------------+-----------------+------------------------------------+
1457 // | task | parallel | * |
1458 // | task | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001459 // | task | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001460 // | task | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001461 // | task | critical | * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001462 // | task | simd | * |
1463 // | task | sections | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001464 // | task | section | + |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001465 // | task | single | + |
1466 // | task | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001467 // | task |parallel for simd| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001468 // | task |parallel sections| * |
1469 // | task | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001470 // | task | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001471 // | task | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001472 // | task | taskwait | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001473 // | task | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001474 // | task | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001475 // | task | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001476 // | task | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001477 // | task | teams | + |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001478 // +------------------+-----------------+------------------------------------+
1479 // | ordered | parallel | * |
1480 // | ordered | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001481 // | ordered | for simd | + |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001482 // | ordered | master | * |
1483 // | ordered | critical | * |
1484 // | ordered | simd | * |
1485 // | ordered | sections | + |
1486 // | ordered | section | + |
1487 // | ordered | single | + |
1488 // | ordered | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001489 // | ordered |parallel for simd| * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001490 // | ordered |parallel sections| * |
1491 // | ordered | task | * |
1492 // | ordered | taskyield | * |
1493 // | ordered | barrier | + |
1494 // | ordered | taskwait | * |
1495 // | ordered | flush | * |
1496 // | ordered | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001497 // | ordered | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001498 // | ordered | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001499 // | ordered | teams | + |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001500 // +------------------+-----------------+------------------------------------+
1501 // | atomic | parallel | |
1502 // | atomic | for | |
1503 // | atomic | for simd | |
1504 // | atomic | master | |
1505 // | atomic | critical | |
1506 // | atomic | simd | |
1507 // | atomic | sections | |
1508 // | atomic | section | |
1509 // | atomic | single | |
1510 // | atomic | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001511 // | atomic |parallel for simd| |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001512 // | atomic |parallel sections| |
1513 // | atomic | task | |
1514 // | atomic | taskyield | |
1515 // | atomic | barrier | |
1516 // | atomic | taskwait | |
1517 // | atomic | flush | |
1518 // | atomic | ordered | |
1519 // | atomic | atomic | |
1520 // | atomic | target | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001521 // | atomic | teams | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001522 // +------------------+-----------------+------------------------------------+
1523 // | target | parallel | * |
1524 // | target | for | * |
1525 // | target | for simd | * |
1526 // | target | master | * |
1527 // | target | critical | * |
1528 // | target | simd | * |
1529 // | target | sections | * |
1530 // | target | section | * |
1531 // | target | single | * |
1532 // | target | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001533 // | target |parallel for simd| * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001534 // | target |parallel sections| * |
1535 // | target | task | * |
1536 // | target | taskyield | * |
1537 // | target | barrier | * |
1538 // | target | taskwait | * |
1539 // | target | flush | * |
1540 // | target | ordered | * |
1541 // | target | atomic | * |
1542 // | target | target | * |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001543 // | target | teams | * |
1544 // +------------------+-----------------+------------------------------------+
1545 // | teams | parallel | * |
1546 // | teams | for | + |
1547 // | teams | for simd | + |
1548 // | teams | master | + |
1549 // | teams | critical | + |
1550 // | teams | simd | + |
1551 // | teams | sections | + |
1552 // | teams | section | + |
1553 // | teams | single | + |
1554 // | teams | parallel for | * |
1555 // | teams |parallel for simd| * |
1556 // | teams |parallel sections| * |
1557 // | teams | task | + |
1558 // | teams | taskyield | + |
1559 // | teams | barrier | + |
1560 // | teams | taskwait | + |
1561 // | teams | flush | + |
1562 // | teams | ordered | + |
1563 // | teams | atomic | + |
1564 // | teams | target | + |
1565 // | teams | teams | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001566 // +------------------+-----------------+------------------------------------+
Alexey Bataev549210e2014-06-24 04:39:47 +00001567 if (Stack->getCurScope()) {
1568 auto ParentRegion = Stack->getParentDirective();
1569 bool NestingProhibited = false;
1570 bool CloseNesting = true;
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001571 enum {
1572 NoRecommend,
1573 ShouldBeInParallelRegion,
Alexey Bataev13314bf2014-10-09 04:18:56 +00001574 ShouldBeInOrderedRegion,
1575 ShouldBeInTargetRegion
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001576 } Recommend = NoRecommend;
Alexey Bataev549210e2014-06-24 04:39:47 +00001577 if (isOpenMPSimdDirective(ParentRegion)) {
1578 // OpenMP [2.16, Nesting of Regions]
1579 // OpenMP constructs may not be nested inside a simd region.
1580 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region_simd);
1581 return true;
1582 }
Alexey Bataev0162e452014-07-22 10:10:35 +00001583 if (ParentRegion == OMPD_atomic) {
1584 // OpenMP [2.16, Nesting of Regions]
1585 // OpenMP constructs may not be nested inside an atomic region.
1586 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region_atomic);
1587 return true;
1588 }
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001589 if (CurrentRegion == OMPD_section) {
1590 // OpenMP [2.7.2, sections Construct, Restrictions]
1591 // Orphaned section directives are prohibited. That is, the section
1592 // directives must appear within the sections construct and must not be
1593 // encountered elsewhere in the sections region.
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001594 if (ParentRegion != OMPD_sections &&
1595 ParentRegion != OMPD_parallel_sections) {
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001596 SemaRef.Diag(StartLoc, diag::err_omp_orphaned_section_directive)
1597 << (ParentRegion != OMPD_unknown)
1598 << getOpenMPDirectiveName(ParentRegion);
1599 return true;
1600 }
1601 return false;
1602 }
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001603 // Allow some constructs to be orphaned (they could be used in functions,
1604 // called from OpenMP regions with the required preconditions).
1605 if (ParentRegion == OMPD_unknown)
1606 return false;
Alexander Musman80c22892014-07-17 08:54:58 +00001607 if (CurrentRegion == OMPD_master) {
1608 // OpenMP [2.16, Nesting of Regions]
1609 // A master region may not be closely nested inside a worksharing,
Alexey Bataev0162e452014-07-22 10:10:35 +00001610 // atomic, or explicit task region.
Alexander Musman80c22892014-07-17 08:54:58 +00001611 NestingProhibited = isOpenMPWorksharingDirective(ParentRegion) ||
1612 ParentRegion == OMPD_task;
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001613 } else if (CurrentRegion == OMPD_critical && CurrentName.getName()) {
1614 // OpenMP [2.16, Nesting of Regions]
1615 // A critical region may not be nested (closely or otherwise) inside a
1616 // critical region with the same name. Note that this restriction is not
1617 // sufficient to prevent deadlock.
1618 SourceLocation PreviousCriticalLoc;
1619 bool DeadLock =
1620 Stack->hasDirective([CurrentName, &PreviousCriticalLoc](
1621 OpenMPDirectiveKind K,
1622 const DeclarationNameInfo &DNI,
1623 SourceLocation Loc)
1624 ->bool {
1625 if (K == OMPD_critical &&
1626 DNI.getName() == CurrentName.getName()) {
1627 PreviousCriticalLoc = Loc;
1628 return true;
1629 } else
1630 return false;
1631 },
1632 false /* skip top directive */);
1633 if (DeadLock) {
1634 SemaRef.Diag(StartLoc,
1635 diag::err_omp_prohibited_region_critical_same_name)
1636 << CurrentName.getName();
1637 if (PreviousCriticalLoc.isValid())
1638 SemaRef.Diag(PreviousCriticalLoc,
1639 diag::note_omp_previous_critical_region);
1640 return true;
1641 }
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001642 } else if (CurrentRegion == OMPD_barrier) {
1643 // OpenMP [2.16, Nesting of Regions]
1644 // A barrier region may not be closely nested inside a worksharing,
Alexey Bataev0162e452014-07-22 10:10:35 +00001645 // explicit task, critical, ordered, atomic, or master region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001646 NestingProhibited =
1647 isOpenMPWorksharingDirective(ParentRegion) ||
1648 ParentRegion == OMPD_task || ParentRegion == OMPD_master ||
1649 ParentRegion == OMPD_critical || ParentRegion == OMPD_ordered;
Alexander Musman80c22892014-07-17 08:54:58 +00001650 } else if (isOpenMPWorksharingDirective(CurrentRegion) &&
Alexander Musmanf82886e2014-09-18 05:12:34 +00001651 !isOpenMPParallelDirective(CurrentRegion)) {
Alexey Bataev549210e2014-06-24 04:39:47 +00001652 // OpenMP [2.16, Nesting of Regions]
1653 // A worksharing region may not be closely nested inside a worksharing,
1654 // explicit task, critical, ordered, atomic, or master region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001655 NestingProhibited =
Alexander Musmanf82886e2014-09-18 05:12:34 +00001656 isOpenMPWorksharingDirective(ParentRegion) ||
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001657 ParentRegion == OMPD_task || ParentRegion == OMPD_master ||
1658 ParentRegion == OMPD_critical || ParentRegion == OMPD_ordered;
1659 Recommend = ShouldBeInParallelRegion;
1660 } else if (CurrentRegion == OMPD_ordered) {
1661 // OpenMP [2.16, Nesting of Regions]
1662 // An ordered region may not be closely nested inside a critical,
Alexey Bataev0162e452014-07-22 10:10:35 +00001663 // atomic, or explicit task region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001664 // An ordered region must be closely nested inside a loop region (or
1665 // parallel loop region) with an ordered clause.
1666 NestingProhibited = ParentRegion == OMPD_critical ||
Alexander Musman80c22892014-07-17 08:54:58 +00001667 ParentRegion == OMPD_task ||
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001668 !Stack->isParentOrderedRegion();
1669 Recommend = ShouldBeInOrderedRegion;
Alexey Bataev13314bf2014-10-09 04:18:56 +00001670 } else if (isOpenMPTeamsDirective(CurrentRegion)) {
1671 // OpenMP [2.16, Nesting of Regions]
1672 // If specified, a teams construct must be contained within a target
1673 // construct.
1674 NestingProhibited = ParentRegion != OMPD_target;
1675 Recommend = ShouldBeInTargetRegion;
1676 Stack->setParentTeamsRegionLoc(Stack->getConstructLoc());
1677 }
1678 if (!NestingProhibited && isOpenMPTeamsDirective(ParentRegion)) {
1679 // OpenMP [2.16, Nesting of Regions]
1680 // distribute, parallel, parallel sections, parallel workshare, and the
1681 // parallel loop and parallel loop SIMD constructs are the only OpenMP
1682 // constructs that can be closely nested in the teams region.
1683 // TODO: add distribute directive.
1684 NestingProhibited = !isOpenMPParallelDirective(CurrentRegion);
1685 Recommend = ShouldBeInParallelRegion;
Alexey Bataev549210e2014-06-24 04:39:47 +00001686 }
1687 if (NestingProhibited) {
1688 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region)
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001689 << CloseNesting << getOpenMPDirectiveName(ParentRegion) << Recommend
1690 << getOpenMPDirectiveName(CurrentRegion);
Alexey Bataev549210e2014-06-24 04:39:47 +00001691 return true;
1692 }
1693 }
1694 return false;
1695}
1696
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001697StmtResult Sema::ActOnOpenMPExecutableDirective(OpenMPDirectiveKind Kind,
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001698 const DeclarationNameInfo &DirName,
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001699 ArrayRef<OMPClause *> Clauses,
1700 Stmt *AStmt,
1701 SourceLocation StartLoc,
1702 SourceLocation EndLoc) {
1703 StmtResult Res = StmtError();
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001704 if (CheckNestingOfRegions(*this, DSAStack, Kind, DirName, StartLoc))
Alexey Bataev549210e2014-06-24 04:39:47 +00001705 return StmtError();
Alexey Bataev758e55e2013-09-06 18:03:48 +00001706
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001707 llvm::SmallVector<OMPClause *, 8> ClausesWithImplicit;
Alexey Bataev68446b72014-07-18 07:47:19 +00001708 llvm::DenseMap<VarDecl *, Expr *> VarsWithInheritedDSA;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001709 bool ErrorFound = false;
Alexey Bataev6125da92014-07-21 11:26:11 +00001710 ClausesWithImplicit.append(Clauses.begin(), Clauses.end());
Alexey Bataev68446b72014-07-18 07:47:19 +00001711 if (AStmt) {
1712 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
1713
1714 // Check default data sharing attributes for referenced variables.
1715 DSAAttrChecker DSAChecker(DSAStack, *this, cast<CapturedStmt>(AStmt));
1716 DSAChecker.Visit(cast<CapturedStmt>(AStmt)->getCapturedStmt());
1717 if (DSAChecker.isErrorFound())
1718 return StmtError();
1719 // Generate list of implicitly defined firstprivate variables.
1720 VarsWithInheritedDSA = DSAChecker.getVarsWithInheritedDSA();
Alexey Bataev68446b72014-07-18 07:47:19 +00001721
1722 if (!DSAChecker.getImplicitFirstprivate().empty()) {
1723 if (OMPClause *Implicit = ActOnOpenMPFirstprivateClause(
1724 DSAChecker.getImplicitFirstprivate(), SourceLocation(),
1725 SourceLocation(), SourceLocation())) {
1726 ClausesWithImplicit.push_back(Implicit);
1727 ErrorFound = cast<OMPFirstprivateClause>(Implicit)->varlist_size() !=
1728 DSAChecker.getImplicitFirstprivate().size();
1729 } else
1730 ErrorFound = true;
1731 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001732 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001733
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001734 switch (Kind) {
1735 case OMPD_parallel:
Alexey Bataeved09d242014-05-28 05:53:51 +00001736 Res = ActOnOpenMPParallelDirective(ClausesWithImplicit, AStmt, StartLoc,
1737 EndLoc);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001738 break;
Alexey Bataev1b59ab52014-02-27 08:29:12 +00001739 case OMPD_simd:
Alexey Bataev4acb8592014-07-07 13:01:15 +00001740 Res = ActOnOpenMPSimdDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc,
1741 VarsWithInheritedDSA);
Alexey Bataev1b59ab52014-02-27 08:29:12 +00001742 break;
Alexey Bataevf29276e2014-06-18 04:14:57 +00001743 case OMPD_for:
Alexey Bataev4acb8592014-07-07 13:01:15 +00001744 Res = ActOnOpenMPForDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc,
1745 VarsWithInheritedDSA);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001746 break;
Alexander Musmanf82886e2014-09-18 05:12:34 +00001747 case OMPD_for_simd:
1748 Res = ActOnOpenMPForSimdDirective(ClausesWithImplicit, AStmt, StartLoc,
1749 EndLoc, VarsWithInheritedDSA);
1750 break;
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00001751 case OMPD_sections:
1752 Res = ActOnOpenMPSectionsDirective(ClausesWithImplicit, AStmt, StartLoc,
1753 EndLoc);
1754 break;
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001755 case OMPD_section:
1756 assert(ClausesWithImplicit.empty() &&
Alexander Musman80c22892014-07-17 08:54:58 +00001757 "No clauses are allowed for 'omp section' directive");
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001758 Res = ActOnOpenMPSectionDirective(AStmt, StartLoc, EndLoc);
1759 break;
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00001760 case OMPD_single:
1761 Res = ActOnOpenMPSingleDirective(ClausesWithImplicit, AStmt, StartLoc,
1762 EndLoc);
1763 break;
Alexander Musman80c22892014-07-17 08:54:58 +00001764 case OMPD_master:
1765 assert(ClausesWithImplicit.empty() &&
1766 "No clauses are allowed for 'omp master' directive");
1767 Res = ActOnOpenMPMasterDirective(AStmt, StartLoc, EndLoc);
1768 break;
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001769 case OMPD_critical:
1770 assert(ClausesWithImplicit.empty() &&
1771 "No clauses are allowed for 'omp critical' directive");
1772 Res = ActOnOpenMPCriticalDirective(DirName, AStmt, StartLoc, EndLoc);
1773 break;
Alexey Bataev4acb8592014-07-07 13:01:15 +00001774 case OMPD_parallel_for:
1775 Res = ActOnOpenMPParallelForDirective(ClausesWithImplicit, AStmt, StartLoc,
1776 EndLoc, VarsWithInheritedDSA);
1777 break;
Alexander Musmane4e893b2014-09-23 09:33:00 +00001778 case OMPD_parallel_for_simd:
1779 Res = ActOnOpenMPParallelForSimdDirective(
1780 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
1781 break;
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001782 case OMPD_parallel_sections:
1783 Res = ActOnOpenMPParallelSectionsDirective(ClausesWithImplicit, AStmt,
1784 StartLoc, EndLoc);
1785 break;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001786 case OMPD_task:
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001787 Res =
1788 ActOnOpenMPTaskDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc);
1789 break;
Alexey Bataev68446b72014-07-18 07:47:19 +00001790 case OMPD_taskyield:
1791 assert(ClausesWithImplicit.empty() &&
1792 "No clauses are allowed for 'omp taskyield' directive");
1793 assert(AStmt == nullptr &&
1794 "No associated statement allowed for 'omp taskyield' directive");
1795 Res = ActOnOpenMPTaskyieldDirective(StartLoc, EndLoc);
1796 break;
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001797 case OMPD_barrier:
1798 assert(ClausesWithImplicit.empty() &&
1799 "No clauses are allowed for 'omp barrier' directive");
1800 assert(AStmt == nullptr &&
1801 "No associated statement allowed for 'omp barrier' directive");
1802 Res = ActOnOpenMPBarrierDirective(StartLoc, EndLoc);
1803 break;
Alexey Bataev2df347a2014-07-18 10:17:07 +00001804 case OMPD_taskwait:
1805 assert(ClausesWithImplicit.empty() &&
1806 "No clauses are allowed for 'omp taskwait' directive");
1807 assert(AStmt == nullptr &&
1808 "No associated statement allowed for 'omp taskwait' directive");
1809 Res = ActOnOpenMPTaskwaitDirective(StartLoc, EndLoc);
1810 break;
Alexey Bataev6125da92014-07-21 11:26:11 +00001811 case OMPD_flush:
1812 assert(AStmt == nullptr &&
1813 "No associated statement allowed for 'omp flush' directive");
1814 Res = ActOnOpenMPFlushDirective(ClausesWithImplicit, StartLoc, EndLoc);
1815 break;
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001816 case OMPD_ordered:
1817 assert(ClausesWithImplicit.empty() &&
1818 "No clauses are allowed for 'omp ordered' directive");
1819 Res = ActOnOpenMPOrderedDirective(AStmt, StartLoc, EndLoc);
1820 break;
Alexey Bataev0162e452014-07-22 10:10:35 +00001821 case OMPD_atomic:
1822 Res = ActOnOpenMPAtomicDirective(ClausesWithImplicit, AStmt, StartLoc,
1823 EndLoc);
1824 break;
Alexey Bataev13314bf2014-10-09 04:18:56 +00001825 case OMPD_teams:
1826 Res =
1827 ActOnOpenMPTeamsDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc);
1828 break;
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001829 case OMPD_target:
1830 Res = ActOnOpenMPTargetDirective(ClausesWithImplicit, AStmt, StartLoc,
1831 EndLoc);
1832 break;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001833 case OMPD_threadprivate:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001834 llvm_unreachable("OpenMP Directive is not allowed");
1835 case OMPD_unknown:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001836 llvm_unreachable("Unknown OpenMP directive");
1837 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001838
Alexey Bataev4acb8592014-07-07 13:01:15 +00001839 for (auto P : VarsWithInheritedDSA) {
1840 Diag(P.second->getExprLoc(), diag::err_omp_no_dsa_for_variable)
1841 << P.first << P.second->getSourceRange();
1842 }
1843 if (!VarsWithInheritedDSA.empty())
1844 return StmtError();
1845
Alexey Bataeved09d242014-05-28 05:53:51 +00001846 if (ErrorFound)
1847 return StmtError();
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001848 return Res;
1849}
1850
1851StmtResult Sema::ActOnOpenMPParallelDirective(ArrayRef<OMPClause *> Clauses,
1852 Stmt *AStmt,
1853 SourceLocation StartLoc,
1854 SourceLocation EndLoc) {
Alexey Bataev9959db52014-05-06 10:08:46 +00001855 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
1856 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
1857 // 1.2.2 OpenMP Language Terminology
1858 // Structured block - An executable statement with a single entry at the
1859 // top and a single exit at the bottom.
1860 // The point of exit cannot be a branch out of the structured block.
1861 // longjmp() and throw() must not violate the entry/exit criteria.
1862 CS->getCapturedDecl()->setNothrow();
1863
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001864 getCurFunction()->setHasBranchProtectedScope();
1865
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001866 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses,
1867 AStmt);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001868}
1869
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001870namespace {
1871/// \brief Helper class for checking canonical form of the OpenMP loops and
1872/// extracting iteration space of each loop in the loop nest, that will be used
1873/// for IR generation.
1874class OpenMPIterationSpaceChecker {
1875 /// \brief Reference to Sema.
1876 Sema &SemaRef;
1877 /// \brief A location for diagnostics (when there is no some better location).
1878 SourceLocation DefaultLoc;
1879 /// \brief A location for diagnostics (when increment is not compatible).
1880 SourceLocation ConditionLoc;
Alexander Musmana5f070a2014-10-01 06:03:56 +00001881 /// \brief A source location for referring to loop init later.
1882 SourceRange InitSrcRange;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001883 /// \brief A source location for referring to condition later.
1884 SourceRange ConditionSrcRange;
Alexander Musmana5f070a2014-10-01 06:03:56 +00001885 /// \brief A source location for referring to increment later.
1886 SourceRange IncrementSrcRange;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001887 /// \brief Loop variable.
1888 VarDecl *Var;
Alexey Bataevcaf09b02014-07-25 06:27:47 +00001889 /// \brief Reference to loop variable.
1890 DeclRefExpr *VarRef;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001891 /// \brief Lower bound (initializer for the var).
1892 Expr *LB;
1893 /// \brief Upper bound.
1894 Expr *UB;
1895 /// \brief Loop step (increment).
1896 Expr *Step;
1897 /// \brief This flag is true when condition is one of:
1898 /// Var < UB
1899 /// Var <= UB
1900 /// UB > Var
1901 /// UB >= Var
1902 bool TestIsLessOp;
1903 /// \brief This flag is true when condition is strict ( < or > ).
1904 bool TestIsStrictOp;
1905 /// \brief This flag is true when step is subtracted on each iteration.
1906 bool SubtractStep;
1907
1908public:
1909 OpenMPIterationSpaceChecker(Sema &SemaRef, SourceLocation DefaultLoc)
1910 : SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc),
Alexander Musmana5f070a2014-10-01 06:03:56 +00001911 InitSrcRange(SourceRange()), ConditionSrcRange(SourceRange()),
1912 IncrementSrcRange(SourceRange()), Var(nullptr), VarRef(nullptr),
Alexey Bataevcaf09b02014-07-25 06:27:47 +00001913 LB(nullptr), UB(nullptr), Step(nullptr), TestIsLessOp(false),
1914 TestIsStrictOp(false), SubtractStep(false) {}
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001915 /// \brief Check init-expr for canonical loop form and save loop counter
1916 /// variable - #Var and its initialization value - #LB.
1917 bool CheckInit(Stmt *S);
1918 /// \brief Check test-expr for canonical form, save upper-bound (#UB), flags
1919 /// for less/greater and for strict/non-strict comparison.
1920 bool CheckCond(Expr *S);
1921 /// \brief Check incr-expr for canonical loop form and return true if it
1922 /// does not conform, otherwise save loop step (#Step).
1923 bool CheckInc(Expr *S);
1924 /// \brief Return the loop counter variable.
1925 VarDecl *GetLoopVar() const { return Var; }
Alexey Bataevcaf09b02014-07-25 06:27:47 +00001926 /// \brief Return the reference expression to loop counter variable.
1927 DeclRefExpr *GetLoopVarRefExpr() const { return VarRef; }
Alexander Musmana5f070a2014-10-01 06:03:56 +00001928 /// \brief Source range of the loop init.
1929 SourceRange GetInitSrcRange() const { return InitSrcRange; }
1930 /// \brief Source range of the loop condition.
1931 SourceRange GetConditionSrcRange() const { return ConditionSrcRange; }
1932 /// \brief Source range of the loop increment.
1933 SourceRange GetIncrementSrcRange() const { return IncrementSrcRange; }
1934 /// \brief True if the step should be subtracted.
1935 bool ShouldSubtractStep() const { return SubtractStep; }
1936 /// \brief Build the expression to calculate the number of iterations.
Alexander Musman174b3ca2014-10-06 11:16:29 +00001937 Expr *BuildNumIterations(Scope *S, const bool LimitedType) const;
Alexander Musmana5f070a2014-10-01 06:03:56 +00001938 /// \brief Build reference expression to the counter be used for codegen.
1939 Expr *BuildCounterVar() const;
1940 /// \brief Build initization of the counter be used for codegen.
1941 Expr *BuildCounterInit() const;
1942 /// \brief Build step of the counter be used for codegen.
1943 Expr *BuildCounterStep() const;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001944 /// \brief Return true if any expression is dependent.
1945 bool Dependent() const;
1946
1947private:
1948 /// \brief Check the right-hand side of an assignment in the increment
1949 /// expression.
1950 bool CheckIncRHS(Expr *RHS);
1951 /// \brief Helper to set loop counter variable and its initializer.
Alexey Bataevcaf09b02014-07-25 06:27:47 +00001952 bool SetVarAndLB(VarDecl *NewVar, DeclRefExpr *NewVarRefExpr, Expr *NewLB);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001953 /// \brief Helper to set upper bound.
1954 bool SetUB(Expr *NewUB, bool LessOp, bool StrictOp, const SourceRange &SR,
1955 const SourceLocation &SL);
1956 /// \brief Helper to set loop increment.
1957 bool SetStep(Expr *NewStep, bool Subtract);
1958};
1959
1960bool OpenMPIterationSpaceChecker::Dependent() const {
1961 if (!Var) {
1962 assert(!LB && !UB && !Step);
1963 return false;
1964 }
1965 return Var->getType()->isDependentType() || (LB && LB->isValueDependent()) ||
1966 (UB && UB->isValueDependent()) || (Step && Step->isValueDependent());
1967}
1968
Alexey Bataevcaf09b02014-07-25 06:27:47 +00001969bool OpenMPIterationSpaceChecker::SetVarAndLB(VarDecl *NewVar,
1970 DeclRefExpr *NewVarRefExpr,
1971 Expr *NewLB) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001972 // State consistency checking to ensure correct usage.
Alexey Bataevcaf09b02014-07-25 06:27:47 +00001973 assert(Var == nullptr && LB == nullptr && VarRef == nullptr &&
1974 UB == nullptr && Step == nullptr && !TestIsLessOp && !TestIsStrictOp);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001975 if (!NewVar || !NewLB)
1976 return true;
1977 Var = NewVar;
Alexey Bataevcaf09b02014-07-25 06:27:47 +00001978 VarRef = NewVarRefExpr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00001979 LB = NewLB;
1980 return false;
1981}
1982
1983bool OpenMPIterationSpaceChecker::SetUB(Expr *NewUB, bool LessOp, bool StrictOp,
1984 const SourceRange &SR,
1985 const SourceLocation &SL) {
1986 // State consistency checking to ensure correct usage.
1987 assert(Var != nullptr && LB != nullptr && UB == nullptr && Step == nullptr &&
1988 !TestIsLessOp && !TestIsStrictOp);
1989 if (!NewUB)
1990 return true;
1991 UB = NewUB;
1992 TestIsLessOp = LessOp;
1993 TestIsStrictOp = StrictOp;
1994 ConditionSrcRange = SR;
1995 ConditionLoc = SL;
1996 return false;
1997}
1998
1999bool OpenMPIterationSpaceChecker::SetStep(Expr *NewStep, bool Subtract) {
2000 // State consistency checking to ensure correct usage.
2001 assert(Var != nullptr && LB != nullptr && Step == nullptr);
2002 if (!NewStep)
2003 return true;
2004 if (!NewStep->isValueDependent()) {
2005 // Check that the step is integer expression.
2006 SourceLocation StepLoc = NewStep->getLocStart();
2007 ExprResult Val =
2008 SemaRef.PerformOpenMPImplicitIntegerConversion(StepLoc, NewStep);
2009 if (Val.isInvalid())
2010 return true;
2011 NewStep = Val.get();
2012
2013 // OpenMP [2.6, Canonical Loop Form, Restrictions]
2014 // If test-expr is of form var relational-op b and relational-op is < or
2015 // <= then incr-expr must cause var to increase on each iteration of the
2016 // loop. If test-expr is of form var relational-op b and relational-op is
2017 // > or >= then incr-expr must cause var to decrease on each iteration of
2018 // the loop.
2019 // If test-expr is of form b relational-op var and relational-op is < or
2020 // <= then incr-expr must cause var to decrease on each iteration of the
2021 // loop. If test-expr is of form b relational-op var and relational-op is
2022 // > or >= then incr-expr must cause var to increase on each iteration of
2023 // the loop.
2024 llvm::APSInt Result;
2025 bool IsConstant = NewStep->isIntegerConstantExpr(Result, SemaRef.Context);
2026 bool IsUnsigned = !NewStep->getType()->hasSignedIntegerRepresentation();
2027 bool IsConstNeg =
2028 IsConstant && Result.isSigned() && (Subtract != Result.isNegative());
Alexander Musmana5f070a2014-10-01 06:03:56 +00002029 bool IsConstPos =
2030 IsConstant && Result.isSigned() && (Subtract == Result.isNegative());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002031 bool IsConstZero = IsConstant && !Result.getBoolValue();
2032 if (UB && (IsConstZero ||
2033 (TestIsLessOp ? (IsConstNeg || (IsUnsigned && Subtract))
Alexander Musmana5f070a2014-10-01 06:03:56 +00002034 : (IsConstPos || (IsUnsigned && !Subtract))))) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002035 SemaRef.Diag(NewStep->getExprLoc(),
2036 diag::err_omp_loop_incr_not_compatible)
2037 << Var << TestIsLessOp << NewStep->getSourceRange();
2038 SemaRef.Diag(ConditionLoc,
2039 diag::note_omp_loop_cond_requres_compatible_incr)
2040 << TestIsLessOp << ConditionSrcRange;
2041 return true;
2042 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00002043 if (TestIsLessOp == Subtract) {
2044 NewStep = SemaRef.CreateBuiltinUnaryOp(NewStep->getExprLoc(), UO_Minus,
2045 NewStep).get();
2046 Subtract = !Subtract;
2047 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002048 }
2049
2050 Step = NewStep;
2051 SubtractStep = Subtract;
2052 return false;
2053}
2054
2055bool OpenMPIterationSpaceChecker::CheckInit(Stmt *S) {
2056 // Check init-expr for canonical loop form and save loop counter
2057 // variable - #Var and its initialization value - #LB.
2058 // OpenMP [2.6] Canonical loop form. init-expr may be one of the following:
2059 // var = lb
2060 // integer-type var = lb
2061 // random-access-iterator-type var = lb
2062 // pointer-type var = lb
2063 //
2064 if (!S) {
2065 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_init);
2066 return true;
2067 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00002068 InitSrcRange = S->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002069 if (Expr *E = dyn_cast<Expr>(S))
2070 S = E->IgnoreParens();
2071 if (auto BO = dyn_cast<BinaryOperator>(S)) {
2072 if (BO->getOpcode() == BO_Assign)
2073 if (auto DRE = dyn_cast<DeclRefExpr>(BO->getLHS()->IgnoreParens()))
Alexey Bataevcaf09b02014-07-25 06:27:47 +00002074 return SetVarAndLB(dyn_cast<VarDecl>(DRE->getDecl()), DRE,
Alexander Musmana5f070a2014-10-01 06:03:56 +00002075 BO->getRHS());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002076 } else if (auto DS = dyn_cast<DeclStmt>(S)) {
2077 if (DS->isSingleDecl()) {
2078 if (auto Var = dyn_cast_or_null<VarDecl>(DS->getSingleDecl())) {
2079 if (Var->hasInit()) {
2080 // Accept non-canonical init form here but emit ext. warning.
2081 if (Var->getInitStyle() != VarDecl::CInit)
2082 SemaRef.Diag(S->getLocStart(),
2083 diag::ext_omp_loop_not_canonical_init)
2084 << S->getSourceRange();
Alexey Bataevcaf09b02014-07-25 06:27:47 +00002085 return SetVarAndLB(Var, nullptr, Var->getInit());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002086 }
2087 }
2088 }
2089 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S))
2090 if (CE->getOperator() == OO_Equal)
2091 if (auto DRE = dyn_cast<DeclRefExpr>(CE->getArg(0)))
Alexey Bataevcaf09b02014-07-25 06:27:47 +00002092 return SetVarAndLB(dyn_cast<VarDecl>(DRE->getDecl()), DRE,
2093 CE->getArg(1));
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002094
2095 SemaRef.Diag(S->getLocStart(), diag::err_omp_loop_not_canonical_init)
2096 << S->getSourceRange();
2097 return true;
2098}
2099
Alexey Bataev23b69422014-06-18 07:08:49 +00002100/// \brief Ignore parenthesizes, implicit casts, copy constructor and return the
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002101/// variable (which may be the loop variable) if possible.
2102static const VarDecl *GetInitVarDecl(const Expr *E) {
2103 if (!E)
Craig Topper4b566922014-06-09 02:04:02 +00002104 return nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002105 E = E->IgnoreParenImpCasts();
2106 if (auto *CE = dyn_cast_or_null<CXXConstructExpr>(E))
2107 if (const CXXConstructorDecl *Ctor = CE->getConstructor())
2108 if (Ctor->isCopyConstructor() && CE->getNumArgs() == 1 &&
2109 CE->getArg(0) != nullptr)
2110 E = CE->getArg(0)->IgnoreParenImpCasts();
2111 auto DRE = dyn_cast_or_null<DeclRefExpr>(E);
2112 if (!DRE)
2113 return nullptr;
2114 return dyn_cast<VarDecl>(DRE->getDecl());
2115}
2116
2117bool OpenMPIterationSpaceChecker::CheckCond(Expr *S) {
2118 // Check test-expr for canonical form, save upper-bound UB, flags for
2119 // less/greater and for strict/non-strict comparison.
2120 // OpenMP [2.6] Canonical loop form. Test-expr may be one of the following:
2121 // var relational-op b
2122 // b relational-op var
2123 //
2124 if (!S) {
2125 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_cond) << Var;
2126 return true;
2127 }
2128 S = S->IgnoreParenImpCasts();
2129 SourceLocation CondLoc = S->getLocStart();
2130 if (auto BO = dyn_cast<BinaryOperator>(S)) {
2131 if (BO->isRelationalOp()) {
2132 if (GetInitVarDecl(BO->getLHS()) == Var)
2133 return SetUB(BO->getRHS(),
2134 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_LE),
2135 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
2136 BO->getSourceRange(), BO->getOperatorLoc());
2137 if (GetInitVarDecl(BO->getRHS()) == Var)
2138 return SetUB(BO->getLHS(),
2139 (BO->getOpcode() == BO_GT || BO->getOpcode() == BO_GE),
2140 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
2141 BO->getSourceRange(), BO->getOperatorLoc());
2142 }
2143 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
2144 if (CE->getNumArgs() == 2) {
2145 auto Op = CE->getOperator();
2146 switch (Op) {
2147 case OO_Greater:
2148 case OO_GreaterEqual:
2149 case OO_Less:
2150 case OO_LessEqual:
2151 if (GetInitVarDecl(CE->getArg(0)) == Var)
2152 return SetUB(CE->getArg(1), Op == OO_Less || Op == OO_LessEqual,
2153 Op == OO_Less || Op == OO_Greater, CE->getSourceRange(),
2154 CE->getOperatorLoc());
2155 if (GetInitVarDecl(CE->getArg(1)) == Var)
2156 return SetUB(CE->getArg(0), Op == OO_Greater || Op == OO_GreaterEqual,
2157 Op == OO_Less || Op == OO_Greater, CE->getSourceRange(),
2158 CE->getOperatorLoc());
2159 break;
2160 default:
2161 break;
2162 }
2163 }
2164 }
2165 SemaRef.Diag(CondLoc, diag::err_omp_loop_not_canonical_cond)
2166 << S->getSourceRange() << Var;
2167 return true;
2168}
2169
2170bool OpenMPIterationSpaceChecker::CheckIncRHS(Expr *RHS) {
2171 // RHS of canonical loop form increment can be:
2172 // var + incr
2173 // incr + var
2174 // var - incr
2175 //
2176 RHS = RHS->IgnoreParenImpCasts();
2177 if (auto BO = dyn_cast<BinaryOperator>(RHS)) {
2178 if (BO->isAdditiveOp()) {
2179 bool IsAdd = BO->getOpcode() == BO_Add;
2180 if (GetInitVarDecl(BO->getLHS()) == Var)
2181 return SetStep(BO->getRHS(), !IsAdd);
2182 if (IsAdd && GetInitVarDecl(BO->getRHS()) == Var)
2183 return SetStep(BO->getLHS(), false);
2184 }
2185 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(RHS)) {
2186 bool IsAdd = CE->getOperator() == OO_Plus;
2187 if ((IsAdd || CE->getOperator() == OO_Minus) && CE->getNumArgs() == 2) {
2188 if (GetInitVarDecl(CE->getArg(0)) == Var)
2189 return SetStep(CE->getArg(1), !IsAdd);
2190 if (IsAdd && GetInitVarDecl(CE->getArg(1)) == Var)
2191 return SetStep(CE->getArg(0), false);
2192 }
2193 }
2194 SemaRef.Diag(RHS->getLocStart(), diag::err_omp_loop_not_canonical_incr)
2195 << RHS->getSourceRange() << Var;
2196 return true;
2197}
2198
2199bool OpenMPIterationSpaceChecker::CheckInc(Expr *S) {
2200 // Check incr-expr for canonical loop form and return true if it
2201 // does not conform.
2202 // OpenMP [2.6] Canonical loop form. Test-expr may be one of the following:
2203 // ++var
2204 // var++
2205 // --var
2206 // var--
2207 // var += incr
2208 // var -= incr
2209 // var = var + incr
2210 // var = incr + var
2211 // var = var - incr
2212 //
2213 if (!S) {
2214 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_incr) << Var;
2215 return true;
2216 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00002217 IncrementSrcRange = S->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002218 S = S->IgnoreParens();
2219 if (auto UO = dyn_cast<UnaryOperator>(S)) {
2220 if (UO->isIncrementDecrementOp() && GetInitVarDecl(UO->getSubExpr()) == Var)
2221 return SetStep(
2222 SemaRef.ActOnIntegerConstant(UO->getLocStart(),
2223 (UO->isDecrementOp() ? -1 : 1)).get(),
2224 false);
2225 } else if (auto BO = dyn_cast<BinaryOperator>(S)) {
2226 switch (BO->getOpcode()) {
2227 case BO_AddAssign:
2228 case BO_SubAssign:
2229 if (GetInitVarDecl(BO->getLHS()) == Var)
2230 return SetStep(BO->getRHS(), BO->getOpcode() == BO_SubAssign);
2231 break;
2232 case BO_Assign:
2233 if (GetInitVarDecl(BO->getLHS()) == Var)
2234 return CheckIncRHS(BO->getRHS());
2235 break;
2236 default:
2237 break;
2238 }
2239 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
2240 switch (CE->getOperator()) {
2241 case OO_PlusPlus:
2242 case OO_MinusMinus:
2243 if (GetInitVarDecl(CE->getArg(0)) == Var)
2244 return SetStep(
2245 SemaRef.ActOnIntegerConstant(
2246 CE->getLocStart(),
2247 ((CE->getOperator() == OO_MinusMinus) ? -1 : 1)).get(),
2248 false);
2249 break;
2250 case OO_PlusEqual:
2251 case OO_MinusEqual:
2252 if (GetInitVarDecl(CE->getArg(0)) == Var)
2253 return SetStep(CE->getArg(1), CE->getOperator() == OO_MinusEqual);
2254 break;
2255 case OO_Equal:
2256 if (GetInitVarDecl(CE->getArg(0)) == Var)
2257 return CheckIncRHS(CE->getArg(1));
2258 break;
2259 default:
2260 break;
2261 }
2262 }
2263 SemaRef.Diag(S->getLocStart(), diag::err_omp_loop_not_canonical_incr)
2264 << S->getSourceRange() << Var;
2265 return true;
2266}
Alexander Musmana5f070a2014-10-01 06:03:56 +00002267
2268/// \brief Build the expression to calculate the number of iterations.
Alexander Musman174b3ca2014-10-06 11:16:29 +00002269Expr *
2270OpenMPIterationSpaceChecker::BuildNumIterations(Scope *S,
2271 const bool LimitedType) const {
Alexander Musmana5f070a2014-10-01 06:03:56 +00002272 ExprResult Diff;
2273 if (Var->getType()->isIntegerType() || Var->getType()->isPointerType() ||
2274 SemaRef.getLangOpts().CPlusPlus) {
2275 // Upper - Lower
2276 Expr *Upper = TestIsLessOp ? UB : LB;
2277 Expr *Lower = TestIsLessOp ? LB : UB;
2278
2279 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower);
2280
2281 if (!Diff.isUsable() && Var->getType()->getAsCXXRecordDecl()) {
2282 // BuildBinOp already emitted error, this one is to point user to upper
2283 // and lower bound, and to tell what is passed to 'operator-'.
2284 SemaRef.Diag(Upper->getLocStart(), diag::err_omp_loop_diff_cxx)
2285 << Upper->getSourceRange() << Lower->getSourceRange();
2286 return nullptr;
2287 }
2288 }
2289
2290 if (!Diff.isUsable())
2291 return nullptr;
2292
2293 // Upper - Lower [- 1]
2294 if (TestIsStrictOp)
2295 Diff = SemaRef.BuildBinOp(
2296 S, DefaultLoc, BO_Sub, Diff.get(),
2297 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
2298 if (!Diff.isUsable())
2299 return nullptr;
2300
2301 // Upper - Lower [- 1] + Step
2302 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Add, Diff.get(),
2303 Step->IgnoreImplicit());
2304 if (!Diff.isUsable())
2305 return nullptr;
2306
2307 // Parentheses (for dumping/debugging purposes only).
2308 Diff = SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, Diff.get());
2309 if (!Diff.isUsable())
2310 return nullptr;
2311
2312 // (Upper - Lower [- 1] + Step) / Step
2313 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Div, Diff.get(),
2314 Step->IgnoreImplicit());
2315 if (!Diff.isUsable())
2316 return nullptr;
2317
Alexander Musman174b3ca2014-10-06 11:16:29 +00002318 // OpenMP runtime requires 32-bit or 64-bit loop variables.
2319 if (LimitedType) {
2320 auto &C = SemaRef.Context;
2321 QualType Type = Diff.get()->getType();
2322 unsigned NewSize = (C.getTypeSize(Type) > 32) ? 64 : 32;
2323 if (NewSize != C.getTypeSize(Type)) {
2324 if (NewSize < C.getTypeSize(Type)) {
2325 assert(NewSize == 64 && "incorrect loop var size");
2326 SemaRef.Diag(DefaultLoc, diag::warn_omp_loop_64_bit_var)
2327 << InitSrcRange << ConditionSrcRange;
2328 }
2329 QualType NewType = C.getIntTypeForBitwidth(
2330 NewSize, Type->hasSignedIntegerRepresentation());
2331 Diff = SemaRef.PerformImplicitConversion(Diff.get(), NewType,
2332 Sema::AA_Converting, true);
2333 if (!Diff.isUsable())
2334 return nullptr;
2335 }
2336 }
2337
Alexander Musmana5f070a2014-10-01 06:03:56 +00002338 return Diff.get();
2339}
2340
2341/// \brief Build reference expression to the counter be used for codegen.
2342Expr *OpenMPIterationSpaceChecker::BuildCounterVar() const {
2343 return DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
2344 GetIncrementSrcRange().getBegin(), Var, false,
2345 DefaultLoc, Var->getType(), VK_LValue);
2346}
2347
2348/// \brief Build initization of the counter be used for codegen.
2349Expr *OpenMPIterationSpaceChecker::BuildCounterInit() const { return LB; }
2350
2351/// \brief Build step of the counter be used for codegen.
2352Expr *OpenMPIterationSpaceChecker::BuildCounterStep() const { return Step; }
2353
2354/// \brief Iteration space of a single for loop.
2355struct LoopIterationSpace {
2356 /// \brief This expression calculates the number of iterations in the loop.
2357 /// It is always possible to calculate it before starting the loop.
2358 Expr *NumIterations;
2359 /// \brief The loop counter variable.
2360 Expr *CounterVar;
2361 /// \brief This is initializer for the initial value of #CounterVar.
2362 Expr *CounterInit;
2363 /// \brief This is step for the #CounterVar used to generate its update:
2364 /// #CounterVar = #CounterInit + #CounterStep * CurrentIteration.
2365 Expr *CounterStep;
2366 /// \brief Should step be subtracted?
2367 bool Subtract;
2368 /// \brief Source range of the loop init.
2369 SourceRange InitSrcRange;
2370 /// \brief Source range of the loop condition.
2371 SourceRange CondSrcRange;
2372 /// \brief Source range of the loop increment.
2373 SourceRange IncSrcRange;
2374};
2375
Alexey Bataev23b69422014-06-18 07:08:49 +00002376} // namespace
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002377
2378/// \brief Called on a for stmt to check and extract its iteration space
2379/// for further processing (such as collapsing).
Alexey Bataev4acb8592014-07-07 13:01:15 +00002380static bool CheckOpenMPIterationSpace(
2381 OpenMPDirectiveKind DKind, Stmt *S, Sema &SemaRef, DSAStackTy &DSA,
2382 unsigned CurrentNestedLoopCount, unsigned NestedLoopCount,
2383 Expr *NestedLoopCountExpr,
Alexander Musmana5f070a2014-10-01 06:03:56 +00002384 llvm::DenseMap<VarDecl *, Expr *> &VarsWithImplicitDSA,
2385 LoopIterationSpace &ResultIterSpace) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002386 // OpenMP [2.6, Canonical Loop Form]
2387 // for (init-expr; test-expr; incr-expr) structured-block
2388 auto For = dyn_cast_or_null<ForStmt>(S);
2389 if (!For) {
2390 SemaRef.Diag(S->getLocStart(), diag::err_omp_not_for)
Alexey Bataeve2f07d42014-06-24 12:55:56 +00002391 << (NestedLoopCountExpr != nullptr) << getOpenMPDirectiveName(DKind)
2392 << NestedLoopCount << (CurrentNestedLoopCount > 0)
2393 << CurrentNestedLoopCount;
2394 if (NestedLoopCount > 1)
2395 SemaRef.Diag(NestedLoopCountExpr->getExprLoc(),
2396 diag::note_omp_collapse_expr)
2397 << NestedLoopCountExpr->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002398 return true;
2399 }
2400 assert(For->getBody());
2401
2402 OpenMPIterationSpaceChecker ISC(SemaRef, For->getForLoc());
2403
2404 // Check init.
Alexey Bataevdf9b1592014-06-25 04:09:13 +00002405 auto Init = For->getInit();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002406 if (ISC.CheckInit(Init)) {
2407 return true;
2408 }
2409
2410 bool HasErrors = false;
2411
2412 // Check loop variable's type.
Alexey Bataevdf9b1592014-06-25 04:09:13 +00002413 auto Var = ISC.GetLoopVar();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002414
2415 // OpenMP [2.6, Canonical Loop Form]
2416 // Var is one of the following:
2417 // A variable of signed or unsigned integer type.
2418 // For C++, a variable of a random access iterator type.
2419 // For C, a variable of a pointer type.
Alexey Bataevdf9b1592014-06-25 04:09:13 +00002420 auto VarType = Var->getType();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002421 if (!VarType->isDependentType() && !VarType->isIntegerType() &&
2422 !VarType->isPointerType() &&
2423 !(SemaRef.getLangOpts().CPlusPlus && VarType->isOverloadableType())) {
2424 SemaRef.Diag(Init->getLocStart(), diag::err_omp_loop_variable_type)
2425 << SemaRef.getLangOpts().CPlusPlus;
2426 HasErrors = true;
2427 }
2428
Alexey Bataev4acb8592014-07-07 13:01:15 +00002429 // OpenMP, 2.14.1.1 Data-sharing Attribute Rules for Variables Referenced in a
2430 // Construct
2431 // The loop iteration variable(s) in the associated for-loop(s) of a for or
2432 // parallel for construct is (are) private.
2433 // The loop iteration variable in the associated for-loop of a simd construct
2434 // with just one associated for-loop is linear with a constant-linear-step
2435 // that is the increment of the associated for-loop.
2436 // Exclude loop var from the list of variables with implicitly defined data
2437 // sharing attributes.
Benjamin Kramerad8e0792014-10-10 15:32:48 +00002438 VarsWithImplicitDSA.erase(Var);
Alexey Bataev4acb8592014-07-07 13:01:15 +00002439
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002440 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced in
2441 // a Construct, C/C++].
Alexey Bataevcefffae2014-06-23 08:21:53 +00002442 // The loop iteration variable in the associated for-loop of a simd construct
2443 // with just one associated for-loop may be listed in a linear clause with a
2444 // constant-linear-step that is the increment of the associated for-loop.
Alexey Bataevf29276e2014-06-18 04:14:57 +00002445 // The loop iteration variable(s) in the associated for-loop(s) of a for or
2446 // parallel for construct may be listed in a private or lastprivate clause.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002447 DSAStackTy::DSAVarData DVar = DSA.getTopDSA(Var, false);
Alexey Bataevcaf09b02014-07-25 06:27:47 +00002448 auto LoopVarRefExpr = ISC.GetLoopVarRefExpr();
2449 // If LoopVarRefExpr is nullptr it means the corresponding loop variable is
2450 // declared in the loop and it is predetermined as a private.
Alexey Bataev4acb8592014-07-07 13:01:15 +00002451 auto PredeterminedCKind =
2452 isOpenMPSimdDirective(DKind)
2453 ? ((NestedLoopCount == 1) ? OMPC_linear : OMPC_lastprivate)
2454 : OMPC_private;
Alexey Bataevf29276e2014-06-18 04:14:57 +00002455 if (((isOpenMPSimdDirective(DKind) && DVar.CKind != OMPC_unknown &&
Alexey Bataev4acb8592014-07-07 13:01:15 +00002456 DVar.CKind != PredeterminedCKind) ||
Alexander Musmanf82886e2014-09-18 05:12:34 +00002457 (isOpenMPWorksharingDirective(DKind) && !isOpenMPSimdDirective(DKind) &&
2458 DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_private &&
2459 DVar.CKind != OMPC_lastprivate)) &&
Alexander Musman1bb328c2014-06-04 13:06:39 +00002460 (DVar.CKind != OMPC_private || DVar.RefExpr != nullptr)) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002461 SemaRef.Diag(Init->getLocStart(), diag::err_omp_loop_var_dsa)
Alexey Bataev4acb8592014-07-07 13:01:15 +00002462 << getOpenMPClauseName(DVar.CKind) << getOpenMPDirectiveName(DKind)
2463 << getOpenMPClauseName(PredeterminedCKind);
Alexey Bataev7ff55242014-06-19 09:13:45 +00002464 ReportOriginalDSA(SemaRef, &DSA, Var, DVar, true);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002465 HasErrors = true;
Alexey Bataevcaf09b02014-07-25 06:27:47 +00002466 } else if (LoopVarRefExpr != nullptr) {
Alexey Bataev4acb8592014-07-07 13:01:15 +00002467 // Make the loop iteration variable private (for worksharing constructs),
2468 // linear (for simd directives with the only one associated loop) or
2469 // lastprivate (for simd directives with several collapsed loops).
Alexey Bataev9aba41c2014-11-14 04:08:45 +00002470 // FIXME: the next check and error message must be removed once the
2471 // capturing of global variables in loops is fixed.
2472 if (DVar.CKind == OMPC_unknown)
2473 DVar = DSA.hasDSA(Var, isOpenMPPrivate, MatchesAlways(),
2474 /*FromParent=*/false);
2475 if (!Var->hasLocalStorage() && DVar.CKind == OMPC_unknown) {
2476 SemaRef.Diag(Init->getLocStart(), diag::err_omp_global_loop_var_dsa)
2477 << getOpenMPClauseName(PredeterminedCKind)
2478 << getOpenMPDirectiveName(DKind);
2479 HasErrors = true;
2480 } else
2481 DSA.addDSA(Var, LoopVarRefExpr, PredeterminedCKind);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002482 }
2483
Alexey Bataev7ff55242014-06-19 09:13:45 +00002484 assert(isOpenMPLoopDirective(DKind) && "DSA for non-loop vars");
Alexander Musman1bb328c2014-06-04 13:06:39 +00002485
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002486 // Check test-expr.
2487 HasErrors |= ISC.CheckCond(For->getCond());
2488
2489 // Check incr-expr.
2490 HasErrors |= ISC.CheckInc(For->getInc());
2491
Alexander Musmana5f070a2014-10-01 06:03:56 +00002492 if (ISC.Dependent() || SemaRef.CurContext->isDependentContext() || HasErrors)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002493 return HasErrors;
2494
Alexander Musmana5f070a2014-10-01 06:03:56 +00002495 // Build the loop's iteration space representation.
Alexander Musman174b3ca2014-10-06 11:16:29 +00002496 ResultIterSpace.NumIterations = ISC.BuildNumIterations(
2497 DSA.getCurScope(), /* LimitedType */ isOpenMPWorksharingDirective(DKind));
Alexander Musmana5f070a2014-10-01 06:03:56 +00002498 ResultIterSpace.CounterVar = ISC.BuildCounterVar();
2499 ResultIterSpace.CounterInit = ISC.BuildCounterInit();
2500 ResultIterSpace.CounterStep = ISC.BuildCounterStep();
2501 ResultIterSpace.InitSrcRange = ISC.GetInitSrcRange();
2502 ResultIterSpace.CondSrcRange = ISC.GetConditionSrcRange();
2503 ResultIterSpace.IncSrcRange = ISC.GetIncrementSrcRange();
2504 ResultIterSpace.Subtract = ISC.ShouldSubtractStep();
2505
2506 HasErrors |= (ResultIterSpace.NumIterations == nullptr ||
2507 ResultIterSpace.CounterVar == nullptr ||
2508 ResultIterSpace.CounterInit == nullptr ||
2509 ResultIterSpace.CounterStep == nullptr);
2510
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002511 return HasErrors;
2512}
2513
Alexander Musmana5f070a2014-10-01 06:03:56 +00002514/// \brief Build a variable declaration for OpenMP loop iteration variable.
2515static VarDecl *BuildVarDecl(Sema &SemaRef, SourceLocation Loc, QualType Type,
2516 StringRef Name) {
2517 DeclContext *DC = SemaRef.CurContext;
2518 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
2519 TypeSourceInfo *TInfo = SemaRef.Context.getTrivialTypeSourceInfo(Type, Loc);
2520 VarDecl *Decl =
2521 VarDecl::Create(SemaRef.Context, DC, Loc, Loc, II, Type, TInfo, SC_None);
2522 Decl->setImplicit();
2523 return Decl;
2524}
2525
2526/// \brief Build 'VarRef = Start + Iter * Step'.
2527static ExprResult BuildCounterUpdate(Sema &SemaRef, Scope *S,
2528 SourceLocation Loc, ExprResult VarRef,
2529 ExprResult Start, ExprResult Iter,
2530 ExprResult Step, bool Subtract) {
2531 // Add parentheses (for debugging purposes only).
2532 Iter = SemaRef.ActOnParenExpr(Loc, Loc, Iter.get());
2533 if (!VarRef.isUsable() || !Start.isUsable() || !Iter.isUsable() ||
2534 !Step.isUsable())
2535 return ExprError();
2536
2537 ExprResult Update = SemaRef.BuildBinOp(S, Loc, BO_Mul, Iter.get(),
2538 Step.get()->IgnoreImplicit());
2539 if (!Update.isUsable())
2540 return ExprError();
2541
2542 // Build 'VarRef = Start + Iter * Step'.
2543 Update = SemaRef.BuildBinOp(S, Loc, (Subtract ? BO_Sub : BO_Add),
2544 Start.get()->IgnoreImplicit(), Update.get());
2545 if (!Update.isUsable())
2546 return ExprError();
2547
2548 Update = SemaRef.PerformImplicitConversion(
2549 Update.get(), VarRef.get()->getType(), Sema::AA_Converting, true);
2550 if (!Update.isUsable())
2551 return ExprError();
2552
2553 Update = SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), Update.get());
2554 return Update;
2555}
2556
2557/// \brief Convert integer expression \a E to make it have at least \a Bits
2558/// bits.
2559static ExprResult WidenIterationCount(unsigned Bits, Expr *E,
2560 Sema &SemaRef) {
2561 if (E == nullptr)
2562 return ExprError();
2563 auto &C = SemaRef.Context;
2564 QualType OldType = E->getType();
2565 unsigned HasBits = C.getTypeSize(OldType);
2566 if (HasBits >= Bits)
2567 return ExprResult(E);
2568 // OK to convert to signed, because new type has more bits than old.
2569 QualType NewType = C.getIntTypeForBitwidth(Bits, /* Signed */ true);
2570 return SemaRef.PerformImplicitConversion(E, NewType, Sema::AA_Converting,
2571 true);
2572}
2573
2574/// \brief Check if the given expression \a E is a constant integer that fits
2575/// into \a Bits bits.
2576static bool FitsInto(unsigned Bits, bool Signed, Expr *E, Sema &SemaRef) {
2577 if (E == nullptr)
2578 return false;
2579 llvm::APSInt Result;
2580 if (E->isIntegerConstantExpr(Result, SemaRef.Context))
2581 return Signed ? Result.isSignedIntN(Bits) : Result.isIntN(Bits);
2582 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002583}
2584
2585/// \brief Called on a for stmt to check itself and nested loops (if any).
Alexey Bataevabfc0692014-06-25 06:52:00 +00002586/// \return Returns 0 if one of the collapsed stmts is not canonical for loop,
2587/// number of collapsed loops otherwise.
Alexey Bataev4acb8592014-07-07 13:01:15 +00002588static unsigned
2589CheckOpenMPLoop(OpenMPDirectiveKind DKind, Expr *NestedLoopCountExpr,
2590 Stmt *AStmt, Sema &SemaRef, DSAStackTy &DSA,
Alexander Musmana5f070a2014-10-01 06:03:56 +00002591 llvm::DenseMap<VarDecl *, Expr *> &VarsWithImplicitDSA,
Alexander Musmanc6388682014-12-15 07:07:06 +00002592 OMPLoopDirective::HelperExprs &Built) {
Alexey Bataeve2f07d42014-06-24 12:55:56 +00002593 unsigned NestedLoopCount = 1;
2594 if (NestedLoopCountExpr) {
2595 // Found 'collapse' clause - calculate collapse number.
2596 llvm::APSInt Result;
2597 if (NestedLoopCountExpr->EvaluateAsInt(Result, SemaRef.getASTContext()))
2598 NestedLoopCount = Result.getLimitedValue();
2599 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002600 // This is helper routine for loop directives (e.g., 'for', 'simd',
2601 // 'for simd', etc.).
Alexander Musmana5f070a2014-10-01 06:03:56 +00002602 SmallVector<LoopIterationSpace, 4> IterSpaces;
2603 IterSpaces.resize(NestedLoopCount);
2604 Stmt *CurStmt = AStmt->IgnoreContainers(/* IgnoreCaptured */ true);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002605 for (unsigned Cnt = 0; Cnt < NestedLoopCount; ++Cnt) {
Alexey Bataeve2f07d42014-06-24 12:55:56 +00002606 if (CheckOpenMPIterationSpace(DKind, CurStmt, SemaRef, DSA, Cnt,
Alexey Bataev4acb8592014-07-07 13:01:15 +00002607 NestedLoopCount, NestedLoopCountExpr,
Alexander Musmana5f070a2014-10-01 06:03:56 +00002608 VarsWithImplicitDSA, IterSpaces[Cnt]))
Alexey Bataevabfc0692014-06-25 06:52:00 +00002609 return 0;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002610 // Move on to the next nested for loop, or to the loop body.
Alexander Musmana5f070a2014-10-01 06:03:56 +00002611 // OpenMP [2.8.1, simd construct, Restrictions]
2612 // All loops associated with the construct must be perfectly nested; that
2613 // is, there must be no intervening code nor any OpenMP directive between
2614 // any two loops.
2615 CurStmt = cast<ForStmt>(CurStmt)->getBody()->IgnoreContainers();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002616 }
2617
Alexander Musmana5f070a2014-10-01 06:03:56 +00002618 Built.clear(/* size */ NestedLoopCount);
2619
2620 if (SemaRef.CurContext->isDependentContext())
2621 return NestedLoopCount;
2622
2623 // An example of what is generated for the following code:
2624 //
2625 // #pragma omp simd collapse(2)
2626 // for (i = 0; i < NI; ++i)
2627 // for (j = J0; j < NJ; j+=2) {
2628 // <loop body>
2629 // }
2630 //
2631 // We generate the code below.
2632 // Note: the loop body may be outlined in CodeGen.
2633 // Note: some counters may be C++ classes, operator- is used to find number of
2634 // iterations and operator+= to calculate counter value.
2635 // Note: decltype(NumIterations) must be integer type (in 'omp for', only i32
2636 // or i64 is currently supported).
2637 //
2638 // #define NumIterations (NI * ((NJ - J0 - 1 + 2) / 2))
2639 // for (int[32|64]_t IV = 0; IV < NumIterations; ++IV ) {
2640 // .local.i = IV / ((NJ - J0 - 1 + 2) / 2);
2641 // .local.j = J0 + (IV % ((NJ - J0 - 1 + 2) / 2)) * 2;
2642 // // similar updates for vars in clauses (e.g. 'linear')
2643 // <loop body (using local i and j)>
2644 // }
2645 // i = NI; // assign final values of counters
2646 // j = NJ;
2647 //
2648
2649 // Last iteration number is (I1 * I2 * ... In) - 1, where I1, I2 ... In are
2650 // the iteration counts of the collapsed for loops.
2651 auto N0 = IterSpaces[0].NumIterations;
2652 ExprResult LastIteration32 = WidenIterationCount(32 /* Bits */, N0, SemaRef);
2653 ExprResult LastIteration64 = WidenIterationCount(64 /* Bits */, N0, SemaRef);
2654
2655 if (!LastIteration32.isUsable() || !LastIteration64.isUsable())
2656 return NestedLoopCount;
2657
2658 auto &C = SemaRef.Context;
2659 bool AllCountsNeedLessThan32Bits = C.getTypeSize(N0->getType()) < 32;
2660
2661 Scope *CurScope = DSA.getCurScope();
2662 for (unsigned Cnt = 1; Cnt < NestedLoopCount; ++Cnt) {
2663 auto N = IterSpaces[Cnt].NumIterations;
2664 AllCountsNeedLessThan32Bits &= C.getTypeSize(N->getType()) < 32;
2665 if (LastIteration32.isUsable())
2666 LastIteration32 = SemaRef.BuildBinOp(CurScope, SourceLocation(), BO_Mul,
2667 LastIteration32.get(), N);
2668 if (LastIteration64.isUsable())
2669 LastIteration64 = SemaRef.BuildBinOp(CurScope, SourceLocation(), BO_Mul,
2670 LastIteration64.get(), N);
2671 }
2672
2673 // Choose either the 32-bit or 64-bit version.
2674 ExprResult LastIteration = LastIteration64;
2675 if (LastIteration32.isUsable() &&
2676 C.getTypeSize(LastIteration32.get()->getType()) == 32 &&
2677 (AllCountsNeedLessThan32Bits || NestedLoopCount == 1 ||
2678 FitsInto(
2679 32 /* Bits */,
2680 LastIteration32.get()->getType()->hasSignedIntegerRepresentation(),
2681 LastIteration64.get(), SemaRef)))
2682 LastIteration = LastIteration32;
2683
2684 if (!LastIteration.isUsable())
2685 return 0;
2686
2687 // Save the number of iterations.
2688 ExprResult NumIterations = LastIteration;
2689 {
2690 LastIteration = SemaRef.BuildBinOp(
2691 CurScope, SourceLocation(), BO_Sub, LastIteration.get(),
2692 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
2693 if (!LastIteration.isUsable())
2694 return 0;
2695 }
2696
2697 // Calculate the last iteration number beforehand instead of doing this on
2698 // each iteration. Do not do this if the number of iterations may be kfold-ed.
2699 llvm::APSInt Result;
2700 bool IsConstant =
2701 LastIteration.get()->isIntegerConstantExpr(Result, SemaRef.Context);
2702 ExprResult CalcLastIteration;
2703 if (!IsConstant) {
2704 SourceLocation SaveLoc;
2705 VarDecl *SaveVar =
2706 BuildVarDecl(SemaRef, SaveLoc, LastIteration.get()->getType(),
2707 ".omp.last.iteration");
2708 ExprResult SaveRef = SemaRef.BuildDeclRefExpr(
2709 SaveVar, LastIteration.get()->getType(), VK_LValue, SaveLoc);
2710 CalcLastIteration = SemaRef.BuildBinOp(CurScope, SaveLoc, BO_Assign,
2711 SaveRef.get(), LastIteration.get());
2712 LastIteration = SaveRef;
2713
2714 // Prepare SaveRef + 1.
2715 NumIterations = SemaRef.BuildBinOp(
2716 CurScope, SaveLoc, BO_Add, SaveRef.get(),
2717 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
2718 if (!NumIterations.isUsable())
2719 return 0;
2720 }
2721
2722 SourceLocation InitLoc = IterSpaces[0].InitSrcRange.getBegin();
2723
2724 // Precondition tests if there is at least one iteration (LastIteration > 0).
2725 ExprResult PreCond = SemaRef.BuildBinOp(
2726 CurScope, InitLoc, BO_GT, LastIteration.get(),
2727 SemaRef.ActOnIntegerConstant(SourceLocation(), 0).get());
2728
Alexander Musmanc6388682014-12-15 07:07:06 +00002729 QualType VType = LastIteration.get()->getType();
2730 // Build variables passed into runtime, nesessary for worksharing directives.
2731 ExprResult LB, UB, IL, ST, EUB;
2732 if (isOpenMPWorksharingDirective(DKind)) {
2733 // Lower bound variable, initialized with zero.
2734 VarDecl *LBDecl = BuildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
2735 LB = SemaRef.BuildDeclRefExpr(LBDecl, VType, VK_LValue, InitLoc);
2736 SemaRef.AddInitializerToDecl(
2737 LBDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
2738 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
2739
2740 // Upper bound variable, initialized with last iteration number.
2741 VarDecl *UBDecl = BuildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
2742 UB = SemaRef.BuildDeclRefExpr(UBDecl, VType, VK_LValue, InitLoc);
2743 SemaRef.AddInitializerToDecl(UBDecl, LastIteration.get(),
2744 /*DirectInit*/ false,
2745 /*TypeMayContainAuto*/ false);
2746
2747 // A 32-bit variable-flag where runtime returns 1 for the last iteration.
2748 // This will be used to implement clause 'lastprivate'.
2749 QualType Int32Ty = SemaRef.Context.getIntTypeForBitwidth(32, true);
2750 VarDecl *ILDecl = BuildVarDecl(SemaRef, InitLoc, Int32Ty, ".omp.is_last");
2751 IL = SemaRef.BuildDeclRefExpr(ILDecl, Int32Ty, VK_LValue, InitLoc);
2752 SemaRef.AddInitializerToDecl(
2753 ILDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
2754 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
2755
2756 // Stride variable returned by runtime (we initialize it to 1 by default).
2757 VarDecl *STDecl = BuildVarDecl(SemaRef, InitLoc, VType, ".omp.stride");
2758 ST = SemaRef.BuildDeclRefExpr(STDecl, VType, VK_LValue, InitLoc);
2759 SemaRef.AddInitializerToDecl(
2760 STDecl, SemaRef.ActOnIntegerConstant(InitLoc, 1).get(),
2761 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
2762
2763 // Build expression: UB = min(UB, LastIteration)
2764 // It is nesessary for CodeGen of directives with static scheduling.
2765 ExprResult IsUBGreater = SemaRef.BuildBinOp(CurScope, InitLoc, BO_GT,
2766 UB.get(), LastIteration.get());
2767 ExprResult CondOp = SemaRef.ActOnConditionalOp(
2768 InitLoc, InitLoc, IsUBGreater.get(), LastIteration.get(), UB.get());
2769 EUB = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, UB.get(),
2770 CondOp.get());
2771 EUB = SemaRef.ActOnFinishFullExpr(EUB.get());
2772 }
2773
2774 // Build the iteration variable and its initialization before loop.
Alexander Musmana5f070a2014-10-01 06:03:56 +00002775 ExprResult IV;
2776 ExprResult Init;
2777 {
Alexander Musmanc6388682014-12-15 07:07:06 +00002778 VarDecl *IVDecl = BuildVarDecl(SemaRef, InitLoc, VType, ".omp.iv");
2779 IV = SemaRef.BuildDeclRefExpr(IVDecl, VType, VK_LValue, InitLoc);
2780 Expr *RHS = isOpenMPWorksharingDirective(DKind)
2781 ? LB.get()
2782 : SemaRef.ActOnIntegerConstant(SourceLocation(), 0).get();
2783 Init = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, IV.get(), RHS);
2784 Init = SemaRef.ActOnFinishFullExpr(Init.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00002785 }
2786
Alexander Musmanc6388682014-12-15 07:07:06 +00002787 // Loop condition (IV < NumIterations) or (IV <= UB) for worksharing loops.
Alexander Musmana5f070a2014-10-01 06:03:56 +00002788 SourceLocation CondLoc;
Alexander Musmanc6388682014-12-15 07:07:06 +00002789 ExprResult Cond =
2790 isOpenMPWorksharingDirective(DKind)
2791 ? SemaRef.BuildBinOp(CurScope, CondLoc, BO_LE, IV.get(), UB.get())
2792 : SemaRef.BuildBinOp(CurScope, CondLoc, BO_LT, IV.get(),
2793 NumIterations.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00002794 // Loop condition with 1 iteration separated (IV < LastIteration)
2795 ExprResult SeparatedCond = SemaRef.BuildBinOp(CurScope, CondLoc, BO_LT,
2796 IV.get(), LastIteration.get());
2797
2798 // Loop increment (IV = IV + 1)
2799 SourceLocation IncLoc;
2800 ExprResult Inc =
2801 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, IV.get(),
2802 SemaRef.ActOnIntegerConstant(IncLoc, 1).get());
2803 if (!Inc.isUsable())
2804 return 0;
2805 Inc = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, IV.get(), Inc.get());
Alexander Musmanc6388682014-12-15 07:07:06 +00002806 Inc = SemaRef.ActOnFinishFullExpr(Inc.get());
2807 if (!Inc.isUsable())
2808 return 0;
2809
2810 // Increments for worksharing loops (LB = LB + ST; UB = UB + ST).
2811 // Used for directives with static scheduling.
2812 ExprResult NextLB, NextUB;
2813 if (isOpenMPWorksharingDirective(DKind)) {
2814 // LB + ST
2815 NextLB = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, LB.get(), ST.get());
2816 if (!NextLB.isUsable())
2817 return 0;
2818 // LB = LB + ST
2819 NextLB =
2820 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, LB.get(), NextLB.get());
2821 NextLB = SemaRef.ActOnFinishFullExpr(NextLB.get());
2822 if (!NextLB.isUsable())
2823 return 0;
2824 // UB + ST
2825 NextUB = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, UB.get(), ST.get());
2826 if (!NextUB.isUsable())
2827 return 0;
2828 // UB = UB + ST
2829 NextUB =
2830 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, UB.get(), NextUB.get());
2831 NextUB = SemaRef.ActOnFinishFullExpr(NextUB.get());
2832 if (!NextUB.isUsable())
2833 return 0;
2834 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00002835
2836 // Build updates and final values of the loop counters.
2837 bool HasErrors = false;
2838 Built.Counters.resize(NestedLoopCount);
2839 Built.Updates.resize(NestedLoopCount);
2840 Built.Finals.resize(NestedLoopCount);
2841 {
2842 ExprResult Div;
2843 // Go from inner nested loop to outer.
2844 for (int Cnt = NestedLoopCount - 1; Cnt >= 0; --Cnt) {
2845 LoopIterationSpace &IS = IterSpaces[Cnt];
2846 SourceLocation UpdLoc = IS.IncSrcRange.getBegin();
2847 // Build: Iter = (IV / Div) % IS.NumIters
2848 // where Div is product of previous iterations' IS.NumIters.
2849 ExprResult Iter;
2850 if (Div.isUsable()) {
2851 Iter =
2852 SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Div, IV.get(), Div.get());
2853 } else {
2854 Iter = IV;
2855 assert((Cnt == (int)NestedLoopCount - 1) &&
2856 "unusable div expected on first iteration only");
2857 }
2858
2859 if (Cnt != 0 && Iter.isUsable())
2860 Iter = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Rem, Iter.get(),
2861 IS.NumIterations);
2862 if (!Iter.isUsable()) {
2863 HasErrors = true;
2864 break;
2865 }
2866
2867 // Build update: IS.CounterVar = IS.Start + Iter * IS.Step
2868 ExprResult Update =
2869 BuildCounterUpdate(SemaRef, CurScope, UpdLoc, IS.CounterVar,
2870 IS.CounterInit, Iter, IS.CounterStep, IS.Subtract);
2871 if (!Update.isUsable()) {
2872 HasErrors = true;
2873 break;
2874 }
2875
2876 // Build final: IS.CounterVar = IS.Start + IS.NumIters * IS.Step
2877 ExprResult Final = BuildCounterUpdate(
2878 SemaRef, CurScope, UpdLoc, IS.CounterVar, IS.CounterInit,
2879 IS.NumIterations, IS.CounterStep, IS.Subtract);
2880 if (!Final.isUsable()) {
2881 HasErrors = true;
2882 break;
2883 }
2884
2885 // Build Div for the next iteration: Div <- Div * IS.NumIters
2886 if (Cnt != 0) {
2887 if (Div.isUnset())
2888 Div = IS.NumIterations;
2889 else
2890 Div = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Mul, Div.get(),
2891 IS.NumIterations);
2892
2893 // Add parentheses (for debugging purposes only).
2894 if (Div.isUsable())
2895 Div = SemaRef.ActOnParenExpr(UpdLoc, UpdLoc, Div.get());
2896 if (!Div.isUsable()) {
2897 HasErrors = true;
2898 break;
2899 }
2900 }
2901 if (!Update.isUsable() || !Final.isUsable()) {
2902 HasErrors = true;
2903 break;
2904 }
2905 // Save results
2906 Built.Counters[Cnt] = IS.CounterVar;
2907 Built.Updates[Cnt] = Update.get();
2908 Built.Finals[Cnt] = Final.get();
2909 }
2910 }
2911
2912 if (HasErrors)
2913 return 0;
2914
2915 // Save results
2916 Built.IterationVarRef = IV.get();
2917 Built.LastIteration = LastIteration.get();
2918 Built.CalcLastIteration = CalcLastIteration.get();
2919 Built.PreCond = PreCond.get();
2920 Built.Cond = Cond.get();
2921 Built.SeparatedCond = SeparatedCond.get();
2922 Built.Init = Init.get();
2923 Built.Inc = Inc.get();
Alexander Musmanc6388682014-12-15 07:07:06 +00002924 Built.LB = LB.get();
2925 Built.UB = UB.get();
2926 Built.IL = IL.get();
2927 Built.ST = ST.get();
2928 Built.EUB = EUB.get();
2929 Built.NLB = NextLB.get();
2930 Built.NUB = NextUB.get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00002931
Alexey Bataevabfc0692014-06-25 06:52:00 +00002932 return NestedLoopCount;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002933}
2934
Alexey Bataeve2f07d42014-06-24 12:55:56 +00002935static Expr *GetCollapseNumberExpr(ArrayRef<OMPClause *> Clauses) {
Alexey Bataevdf9b1592014-06-25 04:09:13 +00002936 auto CollapseFilter = [](const OMPClause *C) -> bool {
2937 return C->getClauseKind() == OMPC_collapse;
2938 };
2939 OMPExecutableDirective::filtered_clause_iterator<decltype(CollapseFilter)> I(
2940 Clauses, CollapseFilter);
Alexey Bataeve2f07d42014-06-24 12:55:56 +00002941 if (I)
2942 return cast<OMPCollapseClause>(*I)->getNumForLoops();
2943 return nullptr;
2944}
2945
Alexey Bataev4acb8592014-07-07 13:01:15 +00002946StmtResult Sema::ActOnOpenMPSimdDirective(
2947 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
2948 SourceLocation EndLoc,
2949 llvm::DenseMap<VarDecl *, Expr *> &VarsWithImplicitDSA) {
Alexander Musmanc6388682014-12-15 07:07:06 +00002950 OMPLoopDirective::HelperExprs B;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002951 // In presence of clause 'collapse', it will define the nested loops number.
Alexey Bataev4acb8592014-07-07 13:01:15 +00002952 unsigned NestedLoopCount =
2953 CheckOpenMPLoop(OMPD_simd, GetCollapseNumberExpr(Clauses), AStmt, *this,
Alexander Musmana5f070a2014-10-01 06:03:56 +00002954 *DSAStack, VarsWithImplicitDSA, B);
Alexey Bataevabfc0692014-06-25 06:52:00 +00002955 if (NestedLoopCount == 0)
Alexey Bataev1b59ab52014-02-27 08:29:12 +00002956 return StmtError();
Alexey Bataev1b59ab52014-02-27 08:29:12 +00002957
Alexander Musmana5f070a2014-10-01 06:03:56 +00002958 assert((CurContext->isDependentContext() || B.builtAll()) &&
2959 "omp simd loop exprs were not built");
2960
Alexey Bataev1b59ab52014-02-27 08:29:12 +00002961 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00002962 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
2963 Clauses, AStmt, B);
Alexey Bataev1b59ab52014-02-27 08:29:12 +00002964}
2965
Alexey Bataev4acb8592014-07-07 13:01:15 +00002966StmtResult Sema::ActOnOpenMPForDirective(
2967 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
2968 SourceLocation EndLoc,
2969 llvm::DenseMap<VarDecl *, Expr *> &VarsWithImplicitDSA) {
Alexander Musmanc6388682014-12-15 07:07:06 +00002970 OMPLoopDirective::HelperExprs B;
Alexey Bataevf29276e2014-06-18 04:14:57 +00002971 // In presence of clause 'collapse', it will define the nested loops number.
Alexey Bataev4acb8592014-07-07 13:01:15 +00002972 unsigned NestedLoopCount =
2973 CheckOpenMPLoop(OMPD_for, GetCollapseNumberExpr(Clauses), AStmt, *this,
Alexander Musmana5f070a2014-10-01 06:03:56 +00002974 *DSAStack, VarsWithImplicitDSA, B);
Alexey Bataevabfc0692014-06-25 06:52:00 +00002975 if (NestedLoopCount == 0)
Alexey Bataevf29276e2014-06-18 04:14:57 +00002976 return StmtError();
2977
Alexander Musmana5f070a2014-10-01 06:03:56 +00002978 assert((CurContext->isDependentContext() || B.builtAll()) &&
2979 "omp for loop exprs were not built");
2980
Alexey Bataevf29276e2014-06-18 04:14:57 +00002981 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00002982 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
2983 Clauses, AStmt, B);
Alexey Bataevf29276e2014-06-18 04:14:57 +00002984}
2985
Alexander Musmanf82886e2014-09-18 05:12:34 +00002986StmtResult Sema::ActOnOpenMPForSimdDirective(
2987 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
2988 SourceLocation EndLoc,
2989 llvm::DenseMap<VarDecl *, Expr *> &VarsWithImplicitDSA) {
Alexander Musmanc6388682014-12-15 07:07:06 +00002990 OMPLoopDirective::HelperExprs B;
Alexander Musmanf82886e2014-09-18 05:12:34 +00002991 // In presence of clause 'collapse', it will define the nested loops number.
2992 unsigned NestedLoopCount =
2993 CheckOpenMPLoop(OMPD_for_simd, GetCollapseNumberExpr(Clauses), AStmt,
Alexander Musmana5f070a2014-10-01 06:03:56 +00002994 *this, *DSAStack, VarsWithImplicitDSA, B);
Alexander Musmanf82886e2014-09-18 05:12:34 +00002995 if (NestedLoopCount == 0)
2996 return StmtError();
2997
Alexander Musmanc6388682014-12-15 07:07:06 +00002998 assert((CurContext->isDependentContext() || B.builtAll()) &&
2999 "omp for simd loop exprs were not built");
3000
Alexander Musmanf82886e2014-09-18 05:12:34 +00003001 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00003002 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
3003 Clauses, AStmt, B);
Alexander Musmanf82886e2014-09-18 05:12:34 +00003004}
3005
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00003006StmtResult Sema::ActOnOpenMPSectionsDirective(ArrayRef<OMPClause *> Clauses,
3007 Stmt *AStmt,
3008 SourceLocation StartLoc,
3009 SourceLocation EndLoc) {
3010 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3011 auto BaseStmt = AStmt;
3012 while (CapturedStmt *CS = dyn_cast_or_null<CapturedStmt>(BaseStmt))
3013 BaseStmt = CS->getCapturedStmt();
3014 if (auto C = dyn_cast_or_null<CompoundStmt>(BaseStmt)) {
3015 auto S = C->children();
3016 if (!S)
3017 return StmtError();
3018 // All associated statements must be '#pragma omp section' except for
3019 // the first one.
Alexey Bataev1e0498a2014-06-26 08:21:58 +00003020 for (++S; S; ++S) {
3021 auto SectionStmt = *S;
3022 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) {
3023 if (SectionStmt)
3024 Diag(SectionStmt->getLocStart(),
3025 diag::err_omp_sections_substmt_not_section);
3026 return StmtError();
3027 }
3028 }
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00003029 } else {
3030 Diag(AStmt->getLocStart(), diag::err_omp_sections_not_compound_stmt);
3031 return StmtError();
3032 }
3033
3034 getCurFunction()->setHasBranchProtectedScope();
3035
3036 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses,
3037 AStmt);
3038}
3039
Alexey Bataev1e0498a2014-06-26 08:21:58 +00003040StmtResult Sema::ActOnOpenMPSectionDirective(Stmt *AStmt,
3041 SourceLocation StartLoc,
3042 SourceLocation EndLoc) {
3043 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3044
3045 getCurFunction()->setHasBranchProtectedScope();
3046
3047 return OMPSectionDirective::Create(Context, StartLoc, EndLoc, AStmt);
3048}
3049
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00003050StmtResult Sema::ActOnOpenMPSingleDirective(ArrayRef<OMPClause *> Clauses,
3051 Stmt *AStmt,
3052 SourceLocation StartLoc,
3053 SourceLocation EndLoc) {
Alexey Bataev74a05c92014-07-15 02:55:09 +00003054 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3055
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00003056 getCurFunction()->setHasBranchProtectedScope();
Alexey Bataev74a05c92014-07-15 02:55:09 +00003057
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00003058 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
3059}
3060
Alexander Musman80c22892014-07-17 08:54:58 +00003061StmtResult Sema::ActOnOpenMPMasterDirective(Stmt *AStmt,
3062 SourceLocation StartLoc,
3063 SourceLocation EndLoc) {
3064 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3065
3066 getCurFunction()->setHasBranchProtectedScope();
3067
3068 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt);
3069}
3070
Alexander Musmand9ed09f2014-07-21 09:42:05 +00003071StmtResult
3072Sema::ActOnOpenMPCriticalDirective(const DeclarationNameInfo &DirName,
3073 Stmt *AStmt, SourceLocation StartLoc,
3074 SourceLocation EndLoc) {
3075 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3076
3077 getCurFunction()->setHasBranchProtectedScope();
3078
3079 return OMPCriticalDirective::Create(Context, DirName, StartLoc, EndLoc,
3080 AStmt);
3081}
3082
Alexey Bataev4acb8592014-07-07 13:01:15 +00003083StmtResult Sema::ActOnOpenMPParallelForDirective(
3084 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
3085 SourceLocation EndLoc,
3086 llvm::DenseMap<VarDecl *, Expr *> &VarsWithImplicitDSA) {
3087 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3088 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
3089 // 1.2.2 OpenMP Language Terminology
3090 // Structured block - An executable statement with a single entry at the
3091 // top and a single exit at the bottom.
3092 // The point of exit cannot be a branch out of the structured block.
3093 // longjmp() and throw() must not violate the entry/exit criteria.
3094 CS->getCapturedDecl()->setNothrow();
3095
Alexander Musmanc6388682014-12-15 07:07:06 +00003096 OMPLoopDirective::HelperExprs B;
Alexey Bataev4acb8592014-07-07 13:01:15 +00003097 // In presence of clause 'collapse', it will define the nested loops number.
3098 unsigned NestedLoopCount =
3099 CheckOpenMPLoop(OMPD_parallel_for, GetCollapseNumberExpr(Clauses), AStmt,
Alexander Musmana5f070a2014-10-01 06:03:56 +00003100 *this, *DSAStack, VarsWithImplicitDSA, B);
Alexey Bataev4acb8592014-07-07 13:01:15 +00003101 if (NestedLoopCount == 0)
3102 return StmtError();
3103
Alexander Musmana5f070a2014-10-01 06:03:56 +00003104 assert((CurContext->isDependentContext() || B.builtAll()) &&
3105 "omp parallel for loop exprs were not built");
3106
Alexey Bataev4acb8592014-07-07 13:01:15 +00003107 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00003108 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc,
3109 NestedLoopCount, Clauses, AStmt, B);
Alexey Bataev4acb8592014-07-07 13:01:15 +00003110}
3111
Alexander Musmane4e893b2014-09-23 09:33:00 +00003112StmtResult Sema::ActOnOpenMPParallelForSimdDirective(
3113 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
3114 SourceLocation EndLoc,
3115 llvm::DenseMap<VarDecl *, Expr *> &VarsWithImplicitDSA) {
3116 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3117 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
3118 // 1.2.2 OpenMP Language Terminology
3119 // Structured block - An executable statement with a single entry at the
3120 // top and a single exit at the bottom.
3121 // The point of exit cannot be a branch out of the structured block.
3122 // longjmp() and throw() must not violate the entry/exit criteria.
3123 CS->getCapturedDecl()->setNothrow();
3124
Alexander Musmanc6388682014-12-15 07:07:06 +00003125 OMPLoopDirective::HelperExprs B;
Alexander Musmane4e893b2014-09-23 09:33:00 +00003126 // In presence of clause 'collapse', it will define the nested loops number.
3127 unsigned NestedLoopCount =
3128 CheckOpenMPLoop(OMPD_parallel_for_simd, GetCollapseNumberExpr(Clauses),
Alexander Musmana5f070a2014-10-01 06:03:56 +00003129 AStmt, *this, *DSAStack, VarsWithImplicitDSA, B);
Alexander Musmane4e893b2014-09-23 09:33:00 +00003130 if (NestedLoopCount == 0)
3131 return StmtError();
3132
3133 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmana5f070a2014-10-01 06:03:56 +00003134 return OMPParallelForSimdDirective::Create(
Alexander Musmanc6388682014-12-15 07:07:06 +00003135 Context, StartLoc, EndLoc, NestedLoopCount, Clauses, AStmt, B);
Alexander Musmane4e893b2014-09-23 09:33:00 +00003136}
3137
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00003138StmtResult
3139Sema::ActOnOpenMPParallelSectionsDirective(ArrayRef<OMPClause *> Clauses,
3140 Stmt *AStmt, SourceLocation StartLoc,
3141 SourceLocation EndLoc) {
3142 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3143 auto BaseStmt = AStmt;
3144 while (CapturedStmt *CS = dyn_cast_or_null<CapturedStmt>(BaseStmt))
3145 BaseStmt = CS->getCapturedStmt();
3146 if (auto C = dyn_cast_or_null<CompoundStmt>(BaseStmt)) {
3147 auto S = C->children();
3148 if (!S)
3149 return StmtError();
3150 // All associated statements must be '#pragma omp section' except for
3151 // the first one.
3152 for (++S; S; ++S) {
3153 auto SectionStmt = *S;
3154 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) {
3155 if (SectionStmt)
3156 Diag(SectionStmt->getLocStart(),
3157 diag::err_omp_parallel_sections_substmt_not_section);
3158 return StmtError();
3159 }
3160 }
3161 } else {
3162 Diag(AStmt->getLocStart(),
3163 diag::err_omp_parallel_sections_not_compound_stmt);
3164 return StmtError();
3165 }
3166
3167 getCurFunction()->setHasBranchProtectedScope();
3168
3169 return OMPParallelSectionsDirective::Create(Context, StartLoc, EndLoc,
3170 Clauses, AStmt);
3171}
3172
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00003173StmtResult Sema::ActOnOpenMPTaskDirective(ArrayRef<OMPClause *> Clauses,
3174 Stmt *AStmt, SourceLocation StartLoc,
3175 SourceLocation EndLoc) {
3176 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3177 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
3178 // 1.2.2 OpenMP Language Terminology
3179 // Structured block - An executable statement with a single entry at the
3180 // top and a single exit at the bottom.
3181 // The point of exit cannot be a branch out of the structured block.
3182 // longjmp() and throw() must not violate the entry/exit criteria.
3183 CS->getCapturedDecl()->setNothrow();
3184
3185 getCurFunction()->setHasBranchProtectedScope();
3186
3187 return OMPTaskDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
3188}
3189
Alexey Bataev68446b72014-07-18 07:47:19 +00003190StmtResult Sema::ActOnOpenMPTaskyieldDirective(SourceLocation StartLoc,
3191 SourceLocation EndLoc) {
3192 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc);
3193}
3194
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00003195StmtResult Sema::ActOnOpenMPBarrierDirective(SourceLocation StartLoc,
3196 SourceLocation EndLoc) {
3197 return OMPBarrierDirective::Create(Context, StartLoc, EndLoc);
3198}
3199
Alexey Bataev2df347a2014-07-18 10:17:07 +00003200StmtResult Sema::ActOnOpenMPTaskwaitDirective(SourceLocation StartLoc,
3201 SourceLocation EndLoc) {
3202 return OMPTaskwaitDirective::Create(Context, StartLoc, EndLoc);
3203}
3204
Alexey Bataev6125da92014-07-21 11:26:11 +00003205StmtResult Sema::ActOnOpenMPFlushDirective(ArrayRef<OMPClause *> Clauses,
3206 SourceLocation StartLoc,
3207 SourceLocation EndLoc) {
3208 assert(Clauses.size() <= 1 && "Extra clauses in flush directive");
3209 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses);
3210}
3211
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003212StmtResult Sema::ActOnOpenMPOrderedDirective(Stmt *AStmt,
3213 SourceLocation StartLoc,
3214 SourceLocation EndLoc) {
3215 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3216
3217 getCurFunction()->setHasBranchProtectedScope();
3218
3219 return OMPOrderedDirective::Create(Context, StartLoc, EndLoc, AStmt);
3220}
3221
Alexey Bataev0162e452014-07-22 10:10:35 +00003222StmtResult Sema::ActOnOpenMPAtomicDirective(ArrayRef<OMPClause *> Clauses,
3223 Stmt *AStmt,
3224 SourceLocation StartLoc,
3225 SourceLocation EndLoc) {
3226 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003227 auto CS = cast<CapturedStmt>(AStmt);
Alexey Bataev0162e452014-07-22 10:10:35 +00003228 // 1.2.2 OpenMP Language Terminology
3229 // Structured block - An executable statement with a single entry at the
3230 // top and a single exit at the bottom.
3231 // The point of exit cannot be a branch out of the structured block.
3232 // longjmp() and throw() must not violate the entry/exit criteria.
3233 // TODO further analysis of associated statements and clauses.
Alexey Bataevdea47612014-07-23 07:46:59 +00003234 OpenMPClauseKind AtomicKind = OMPC_unknown;
3235 SourceLocation AtomicKindLoc;
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003236 for (auto *C : Clauses) {
Alexey Bataev67a4f222014-07-23 10:25:33 +00003237 if (C->getClauseKind() == OMPC_read || C->getClauseKind() == OMPC_write ||
Alexey Bataev459dec02014-07-24 06:46:57 +00003238 C->getClauseKind() == OMPC_update ||
3239 C->getClauseKind() == OMPC_capture) {
Alexey Bataevdea47612014-07-23 07:46:59 +00003240 if (AtomicKind != OMPC_unknown) {
3241 Diag(C->getLocStart(), diag::err_omp_atomic_several_clauses)
3242 << SourceRange(C->getLocStart(), C->getLocEnd());
3243 Diag(AtomicKindLoc, diag::note_omp_atomic_previous_clause)
3244 << getOpenMPClauseName(AtomicKind);
3245 } else {
3246 AtomicKind = C->getClauseKind();
3247 AtomicKindLoc = C->getLocStart();
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003248 }
3249 }
3250 }
Alexey Bataev62cec442014-11-18 10:14:22 +00003251
Alexey Bataev459dec02014-07-24 06:46:57 +00003252 auto Body = CS->getCapturedStmt();
Alexey Bataev62cec442014-11-18 10:14:22 +00003253 Expr *X = nullptr;
3254 Expr *V = nullptr;
3255 Expr *E = nullptr;
3256 // OpenMP [2.12.6, atomic Construct]
3257 // In the next expressions:
3258 // * x and v (as applicable) are both l-value expressions with scalar type.
3259 // * During the execution of an atomic region, multiple syntactic
3260 // occurrences of x must designate the same storage location.
3261 // * Neither of v and expr (as applicable) may access the storage location
3262 // designated by x.
3263 // * Neither of x and expr (as applicable) may access the storage location
3264 // designated by v.
3265 // * expr is an expression with scalar type.
3266 // * binop is one of +, *, -, /, &, ^, |, <<, or >>.
3267 // * binop, binop=, ++, and -- are not overloaded operators.
3268 // * The expression x binop expr must be numerically equivalent to x binop
3269 // (expr). This requirement is satisfied if the operators in expr have
3270 // precedence greater than binop, or by using parentheses around expr or
3271 // subexpressions of expr.
3272 // * The expression expr binop x must be numerically equivalent to (expr)
3273 // binop x. This requirement is satisfied if the operators in expr have
3274 // precedence equal to or greater than binop, or by using parentheses around
3275 // expr or subexpressions of expr.
3276 // * For forms that allow multiple occurrences of x, the number of times
3277 // that x is evaluated is unspecified.
Alexey Bataevf33eba62014-11-28 07:21:40 +00003278 enum {
3279 NotAnExpression,
3280 NotAnAssignmentOp,
3281 NotAScalarType,
3282 NotAnLValue,
3283 NoError
3284 } ErrorFound = NoError;
Alexey Bataevdea47612014-07-23 07:46:59 +00003285 if (AtomicKind == OMPC_read) {
Alexey Bataev62cec442014-11-18 10:14:22 +00003286 SourceLocation ErrorLoc, NoteLoc;
3287 SourceRange ErrorRange, NoteRange;
3288 // If clause is read:
3289 // v = x;
3290 if (auto AtomicBody = dyn_cast<Expr>(Body)) {
3291 auto AtomicBinOp =
3292 dyn_cast<BinaryOperator>(AtomicBody->IgnoreParenImpCasts());
3293 if (AtomicBinOp && AtomicBinOp->getOpcode() == BO_Assign) {
3294 X = AtomicBinOp->getRHS()->IgnoreParenImpCasts();
3295 V = AtomicBinOp->getLHS()->IgnoreParenImpCasts();
3296 if ((X->isInstantiationDependent() || X->getType()->isScalarType()) &&
3297 (V->isInstantiationDependent() || V->getType()->isScalarType())) {
3298 if (!X->isLValue() || !V->isLValue()) {
3299 auto NotLValueExpr = X->isLValue() ? V : X;
3300 ErrorFound = NotAnLValue;
3301 ErrorLoc = AtomicBinOp->getExprLoc();
3302 ErrorRange = AtomicBinOp->getSourceRange();
3303 NoteLoc = NotLValueExpr->getExprLoc();
3304 NoteRange = NotLValueExpr->getSourceRange();
3305 }
3306 } else if (!X->isInstantiationDependent() ||
3307 !V->isInstantiationDependent()) {
3308 auto NotScalarExpr =
3309 (X->isInstantiationDependent() || X->getType()->isScalarType())
3310 ? V
3311 : X;
3312 ErrorFound = NotAScalarType;
3313 ErrorLoc = AtomicBinOp->getExprLoc();
3314 ErrorRange = AtomicBinOp->getSourceRange();
3315 NoteLoc = NotScalarExpr->getExprLoc();
3316 NoteRange = NotScalarExpr->getSourceRange();
3317 }
3318 } else {
3319 ErrorFound = NotAnAssignmentOp;
3320 ErrorLoc = AtomicBody->getExprLoc();
3321 ErrorRange = AtomicBody->getSourceRange();
3322 NoteLoc = AtomicBinOp ? AtomicBinOp->getOperatorLoc()
3323 : AtomicBody->getExprLoc();
3324 NoteRange = AtomicBinOp ? AtomicBinOp->getSourceRange()
3325 : AtomicBody->getSourceRange();
3326 }
3327 } else {
3328 ErrorFound = NotAnExpression;
3329 NoteLoc = ErrorLoc = Body->getLocStart();
3330 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
Alexey Bataevdea47612014-07-23 07:46:59 +00003331 }
Alexey Bataev62cec442014-11-18 10:14:22 +00003332 if (ErrorFound != NoError) {
3333 Diag(ErrorLoc, diag::err_omp_atomic_read_not_expression_statement)
3334 << ErrorRange;
Alexey Bataevf33eba62014-11-28 07:21:40 +00003335 Diag(NoteLoc, diag::note_omp_atomic_read_write) << ErrorFound
3336 << NoteRange;
Alexey Bataev62cec442014-11-18 10:14:22 +00003337 return StmtError();
3338 } else if (CurContext->isDependentContext())
3339 V = X = nullptr;
Alexey Bataevdea47612014-07-23 07:46:59 +00003340 } else if (AtomicKind == OMPC_write) {
Alexey Bataevf33eba62014-11-28 07:21:40 +00003341 SourceLocation ErrorLoc, NoteLoc;
3342 SourceRange ErrorRange, NoteRange;
3343 // If clause is write:
3344 // x = expr;
3345 if (auto AtomicBody = dyn_cast<Expr>(Body)) {
3346 auto AtomicBinOp =
3347 dyn_cast<BinaryOperator>(AtomicBody->IgnoreParenImpCasts());
3348 if (AtomicBinOp && AtomicBinOp->getOpcode() == BO_Assign) {
3349 X = AtomicBinOp->getLHS()->IgnoreParenImpCasts();
3350 E = AtomicBinOp->getRHS()->IgnoreParenImpCasts();
3351 if ((X->isInstantiationDependent() || X->getType()->isScalarType()) &&
3352 (E->isInstantiationDependent() || E->getType()->isScalarType())) {
3353 if (!X->isLValue()) {
3354 ErrorFound = NotAnLValue;
3355 ErrorLoc = AtomicBinOp->getExprLoc();
3356 ErrorRange = AtomicBinOp->getSourceRange();
3357 NoteLoc = X->getExprLoc();
3358 NoteRange = X->getSourceRange();
3359 }
3360 } else if (!X->isInstantiationDependent() ||
3361 !E->isInstantiationDependent()) {
3362 auto NotScalarExpr =
3363 (X->isInstantiationDependent() || X->getType()->isScalarType())
3364 ? E
3365 : X;
3366 ErrorFound = NotAScalarType;
3367 ErrorLoc = AtomicBinOp->getExprLoc();
3368 ErrorRange = AtomicBinOp->getSourceRange();
3369 NoteLoc = NotScalarExpr->getExprLoc();
3370 NoteRange = NotScalarExpr->getSourceRange();
3371 }
3372 } else {
3373 ErrorFound = NotAnAssignmentOp;
3374 ErrorLoc = AtomicBody->getExprLoc();
3375 ErrorRange = AtomicBody->getSourceRange();
3376 NoteLoc = AtomicBinOp ? AtomicBinOp->getOperatorLoc()
3377 : AtomicBody->getExprLoc();
3378 NoteRange = AtomicBinOp ? AtomicBinOp->getSourceRange()
3379 : AtomicBody->getSourceRange();
3380 }
3381 } else {
3382 ErrorFound = NotAnExpression;
3383 NoteLoc = ErrorLoc = Body->getLocStart();
3384 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
Alexey Bataevdea47612014-07-23 07:46:59 +00003385 }
Alexey Bataevf33eba62014-11-28 07:21:40 +00003386 if (ErrorFound != NoError) {
3387 Diag(ErrorLoc, diag::err_omp_atomic_write_not_expression_statement)
3388 << ErrorRange;
3389 Diag(NoteLoc, diag::note_omp_atomic_read_write) << ErrorFound
3390 << NoteRange;
3391 return StmtError();
3392 } else if (CurContext->isDependentContext())
3393 E = X = nullptr;
Alexey Bataev67a4f222014-07-23 10:25:33 +00003394 } else if (AtomicKind == OMPC_update || AtomicKind == OMPC_unknown) {
Alexey Bataev459dec02014-07-24 06:46:57 +00003395 if (!isa<Expr>(Body)) {
3396 Diag(Body->getLocStart(),
Alexey Bataev67a4f222014-07-23 10:25:33 +00003397 diag::err_omp_atomic_update_not_expression_statement)
3398 << (AtomicKind == OMPC_update);
3399 return StmtError();
3400 }
Alexey Bataev459dec02014-07-24 06:46:57 +00003401 } else if (AtomicKind == OMPC_capture) {
3402 if (isa<Expr>(Body) && !isa<BinaryOperator>(Body)) {
3403 Diag(Body->getLocStart(),
3404 diag::err_omp_atomic_capture_not_expression_statement);
3405 return StmtError();
3406 } else if (!isa<Expr>(Body) && !isa<CompoundStmt>(Body)) {
3407 Diag(Body->getLocStart(),
3408 diag::err_omp_atomic_capture_not_compound_statement);
3409 return StmtError();
3410 }
Alexey Bataevdea47612014-07-23 07:46:59 +00003411 }
Alexey Bataev0162e452014-07-22 10:10:35 +00003412
3413 getCurFunction()->setHasBranchProtectedScope();
3414
Alexey Bataev62cec442014-11-18 10:14:22 +00003415 return OMPAtomicDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
3416 X, V, E);
Alexey Bataev0162e452014-07-22 10:10:35 +00003417}
3418
Alexey Bataev0bd520b2014-09-19 08:19:49 +00003419StmtResult Sema::ActOnOpenMPTargetDirective(ArrayRef<OMPClause *> Clauses,
3420 Stmt *AStmt,
3421 SourceLocation StartLoc,
3422 SourceLocation EndLoc) {
3423 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3424
Alexey Bataev13314bf2014-10-09 04:18:56 +00003425 // OpenMP [2.16, Nesting of Regions]
3426 // If specified, a teams construct must be contained within a target
3427 // construct. That target construct must contain no statements or directives
3428 // outside of the teams construct.
3429 if (DSAStack->hasInnerTeamsRegion()) {
3430 auto S = AStmt->IgnoreContainers(/*IgnoreCaptured*/ true);
3431 bool OMPTeamsFound = true;
3432 if (auto *CS = dyn_cast<CompoundStmt>(S)) {
3433 auto I = CS->body_begin();
3434 while (I != CS->body_end()) {
3435 auto OED = dyn_cast<OMPExecutableDirective>(*I);
3436 if (!OED || !isOpenMPTeamsDirective(OED->getDirectiveKind())) {
3437 OMPTeamsFound = false;
3438 break;
3439 }
3440 ++I;
3441 }
3442 assert(I != CS->body_end() && "Not found statement");
3443 S = *I;
3444 }
3445 if (!OMPTeamsFound) {
3446 Diag(StartLoc, diag::err_omp_target_contains_not_only_teams);
3447 Diag(DSAStack->getInnerTeamsRegionLoc(),
3448 diag::note_omp_nested_teams_construct_here);
3449 Diag(S->getLocStart(), diag::note_omp_nested_statement_here)
3450 << isa<OMPExecutableDirective>(S);
3451 return StmtError();
3452 }
3453 }
3454
Alexey Bataev0bd520b2014-09-19 08:19:49 +00003455 getCurFunction()->setHasBranchProtectedScope();
3456
3457 return OMPTargetDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
3458}
3459
Alexey Bataev13314bf2014-10-09 04:18:56 +00003460StmtResult Sema::ActOnOpenMPTeamsDirective(ArrayRef<OMPClause *> Clauses,
3461 Stmt *AStmt, SourceLocation StartLoc,
3462 SourceLocation EndLoc) {
3463 assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
3464 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
3465 // 1.2.2 OpenMP Language Terminology
3466 // Structured block - An executable statement with a single entry at the
3467 // top and a single exit at the bottom.
3468 // The point of exit cannot be a branch out of the structured block.
3469 // longjmp() and throw() must not violate the entry/exit criteria.
3470 CS->getCapturedDecl()->setNothrow();
3471
3472 getCurFunction()->setHasBranchProtectedScope();
3473
3474 return OMPTeamsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
3475}
3476
Alexey Bataeved09d242014-05-28 05:53:51 +00003477OMPClause *Sema::ActOnOpenMPSingleExprClause(OpenMPClauseKind Kind, Expr *Expr,
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003478 SourceLocation StartLoc,
3479 SourceLocation LParenLoc,
3480 SourceLocation EndLoc) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00003481 OMPClause *Res = nullptr;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003482 switch (Kind) {
3483 case OMPC_if:
3484 Res = ActOnOpenMPIfClause(Expr, StartLoc, LParenLoc, EndLoc);
3485 break;
Alexey Bataev3778b602014-07-17 07:32:53 +00003486 case OMPC_final:
3487 Res = ActOnOpenMPFinalClause(Expr, StartLoc, LParenLoc, EndLoc);
3488 break;
Alexey Bataev568a8332014-03-06 06:15:19 +00003489 case OMPC_num_threads:
3490 Res = ActOnOpenMPNumThreadsClause(Expr, StartLoc, LParenLoc, EndLoc);
3491 break;
Alexey Bataev62c87d22014-03-21 04:51:18 +00003492 case OMPC_safelen:
3493 Res = ActOnOpenMPSafelenClause(Expr, StartLoc, LParenLoc, EndLoc);
3494 break;
Alexander Musman8bd31e62014-05-27 15:12:19 +00003495 case OMPC_collapse:
3496 Res = ActOnOpenMPCollapseClause(Expr, StartLoc, LParenLoc, EndLoc);
3497 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003498 case OMPC_default:
Alexey Bataevbcbadb62014-05-06 06:04:14 +00003499 case OMPC_proc_bind:
Alexey Bataev56dafe82014-06-20 07:16:17 +00003500 case OMPC_schedule:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003501 case OMPC_private:
3502 case OMPC_firstprivate:
Alexander Musman1bb328c2014-06-04 13:06:39 +00003503 case OMPC_lastprivate:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003504 case OMPC_shared:
Alexey Bataevc5e02582014-06-16 07:08:35 +00003505 case OMPC_reduction:
Alexander Musman8dba6642014-04-22 13:09:42 +00003506 case OMPC_linear:
Alexander Musmanf0d76e72014-05-29 14:36:25 +00003507 case OMPC_aligned:
Alexey Bataevd48bcd82014-03-31 03:36:38 +00003508 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00003509 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003510 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00003511 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00003512 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00003513 case OMPC_mergeable:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003514 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00003515 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003516 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00003517 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00003518 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00003519 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00003520 case OMPC_seq_cst:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003521 case OMPC_unknown:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003522 llvm_unreachable("Clause is not allowed.");
3523 }
3524 return Res;
3525}
3526
Alexey Bataeved09d242014-05-28 05:53:51 +00003527OMPClause *Sema::ActOnOpenMPIfClause(Expr *Condition, SourceLocation StartLoc,
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003528 SourceLocation LParenLoc,
3529 SourceLocation EndLoc) {
3530 Expr *ValExpr = Condition;
3531 if (!Condition->isValueDependent() && !Condition->isTypeDependent() &&
3532 !Condition->isInstantiationDependent() &&
3533 !Condition->containsUnexpandedParameterPack()) {
3534 ExprResult Val = ActOnBooleanCondition(DSAStack->getCurScope(),
Alexey Bataeved09d242014-05-28 05:53:51 +00003535 Condition->getExprLoc(), Condition);
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003536 if (Val.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00003537 return nullptr;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003538
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003539 ValExpr = Val.get();
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003540 }
3541
3542 return new (Context) OMPIfClause(ValExpr, StartLoc, LParenLoc, EndLoc);
3543}
3544
Alexey Bataev3778b602014-07-17 07:32:53 +00003545OMPClause *Sema::ActOnOpenMPFinalClause(Expr *Condition,
3546 SourceLocation StartLoc,
3547 SourceLocation LParenLoc,
3548 SourceLocation EndLoc) {
3549 Expr *ValExpr = Condition;
3550 if (!Condition->isValueDependent() && !Condition->isTypeDependent() &&
3551 !Condition->isInstantiationDependent() &&
3552 !Condition->containsUnexpandedParameterPack()) {
3553 ExprResult Val = ActOnBooleanCondition(DSAStack->getCurScope(),
3554 Condition->getExprLoc(), Condition);
3555 if (Val.isInvalid())
3556 return nullptr;
3557
3558 ValExpr = Val.get();
3559 }
3560
3561 return new (Context) OMPFinalClause(ValExpr, StartLoc, LParenLoc, EndLoc);
3562}
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003563ExprResult Sema::PerformOpenMPImplicitIntegerConversion(SourceLocation Loc,
3564 Expr *Op) {
Alexey Bataev568a8332014-03-06 06:15:19 +00003565 if (!Op)
3566 return ExprError();
3567
3568 class IntConvertDiagnoser : public ICEConvertDiagnoser {
3569 public:
3570 IntConvertDiagnoser()
Alexey Bataeved09d242014-05-28 05:53:51 +00003571 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/ false, false, true) {}
Craig Toppere14c0f82014-03-12 04:55:44 +00003572 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
3573 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00003574 return S.Diag(Loc, diag::err_omp_not_integral) << T;
3575 }
Alexey Bataeved09d242014-05-28 05:53:51 +00003576 SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc,
3577 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00003578 return S.Diag(Loc, diag::err_omp_incomplete_type) << T;
3579 }
Alexey Bataeved09d242014-05-28 05:53:51 +00003580 SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc,
3581 QualType T,
3582 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00003583 return S.Diag(Loc, diag::err_omp_explicit_conversion) << T << ConvTy;
3584 }
Alexey Bataeved09d242014-05-28 05:53:51 +00003585 SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
3586 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00003587 return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
Alexey Bataeved09d242014-05-28 05:53:51 +00003588 << ConvTy->isEnumeralType() << ConvTy;
Alexey Bataev568a8332014-03-06 06:15:19 +00003589 }
Alexey Bataeved09d242014-05-28 05:53:51 +00003590 SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
3591 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00003592 return S.Diag(Loc, diag::err_omp_ambiguous_conversion) << T;
3593 }
Alexey Bataeved09d242014-05-28 05:53:51 +00003594 SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
3595 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00003596 return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
Alexey Bataeved09d242014-05-28 05:53:51 +00003597 << ConvTy->isEnumeralType() << ConvTy;
Alexey Bataev568a8332014-03-06 06:15:19 +00003598 }
Alexey Bataeved09d242014-05-28 05:53:51 +00003599 SemaDiagnosticBuilder diagnoseConversion(Sema &, SourceLocation, QualType,
3600 QualType) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00003601 llvm_unreachable("conversion functions are permitted");
3602 }
3603 } ConvertDiagnoser;
3604 return PerformContextualImplicitConversion(Loc, Op, ConvertDiagnoser);
3605}
3606
3607OMPClause *Sema::ActOnOpenMPNumThreadsClause(Expr *NumThreads,
3608 SourceLocation StartLoc,
3609 SourceLocation LParenLoc,
3610 SourceLocation EndLoc) {
3611 Expr *ValExpr = NumThreads;
3612 if (!NumThreads->isValueDependent() && !NumThreads->isTypeDependent() &&
Alexey Bataev568a8332014-03-06 06:15:19 +00003613 !NumThreads->containsUnexpandedParameterPack()) {
3614 SourceLocation NumThreadsLoc = NumThreads->getLocStart();
3615 ExprResult Val =
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003616 PerformOpenMPImplicitIntegerConversion(NumThreadsLoc, NumThreads);
Alexey Bataev568a8332014-03-06 06:15:19 +00003617 if (Val.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00003618 return nullptr;
Alexey Bataev568a8332014-03-06 06:15:19 +00003619
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003620 ValExpr = Val.get();
Alexey Bataev568a8332014-03-06 06:15:19 +00003621
3622 // OpenMP [2.5, Restrictions]
3623 // The num_threads expression must evaluate to a positive integer value.
3624 llvm::APSInt Result;
Alexey Bataeved09d242014-05-28 05:53:51 +00003625 if (ValExpr->isIntegerConstantExpr(Result, Context) && Result.isSigned() &&
3626 !Result.isStrictlyPositive()) {
Alexey Bataev568a8332014-03-06 06:15:19 +00003627 Diag(NumThreadsLoc, diag::err_omp_negative_expression_in_clause)
3628 << "num_threads" << NumThreads->getSourceRange();
Alexander Musmancb7f9c42014-05-15 13:04:49 +00003629 return nullptr;
Alexey Bataev568a8332014-03-06 06:15:19 +00003630 }
3631 }
3632
Alexey Bataeved09d242014-05-28 05:53:51 +00003633 return new (Context)
3634 OMPNumThreadsClause(ValExpr, StartLoc, LParenLoc, EndLoc);
Alexey Bataev568a8332014-03-06 06:15:19 +00003635}
3636
Alexey Bataev62c87d22014-03-21 04:51:18 +00003637ExprResult Sema::VerifyPositiveIntegerConstantInClause(Expr *E,
3638 OpenMPClauseKind CKind) {
3639 if (!E)
3640 return ExprError();
3641 if (E->isValueDependent() || E->isTypeDependent() ||
3642 E->isInstantiationDependent() || E->containsUnexpandedParameterPack())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003643 return E;
Alexey Bataev62c87d22014-03-21 04:51:18 +00003644 llvm::APSInt Result;
3645 ExprResult ICE = VerifyIntegerConstantExpression(E, &Result);
3646 if (ICE.isInvalid())
3647 return ExprError();
3648 if (!Result.isStrictlyPositive()) {
3649 Diag(E->getExprLoc(), diag::err_omp_negative_expression_in_clause)
3650 << getOpenMPClauseName(CKind) << E->getSourceRange();
3651 return ExprError();
3652 }
Alexander Musman09184fe2014-09-30 05:29:28 +00003653 if (CKind == OMPC_aligned && !Result.isPowerOf2()) {
3654 Diag(E->getExprLoc(), diag::warn_omp_alignment_not_power_of_two)
3655 << E->getSourceRange();
3656 return ExprError();
3657 }
Alexey Bataev62c87d22014-03-21 04:51:18 +00003658 return ICE;
3659}
3660
3661OMPClause *Sema::ActOnOpenMPSafelenClause(Expr *Len, SourceLocation StartLoc,
3662 SourceLocation LParenLoc,
3663 SourceLocation EndLoc) {
3664 // OpenMP [2.8.1, simd construct, Description]
3665 // The parameter of the safelen clause must be a constant
3666 // positive integer expression.
3667 ExprResult Safelen = VerifyPositiveIntegerConstantInClause(Len, OMPC_safelen);
3668 if (Safelen.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00003669 return nullptr;
Alexey Bataev62c87d22014-03-21 04:51:18 +00003670 return new (Context)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003671 OMPSafelenClause(Safelen.get(), StartLoc, LParenLoc, EndLoc);
Alexey Bataev62c87d22014-03-21 04:51:18 +00003672}
3673
Alexander Musman64d33f12014-06-04 07:53:32 +00003674OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops,
3675 SourceLocation StartLoc,
Alexander Musman8bd31e62014-05-27 15:12:19 +00003676 SourceLocation LParenLoc,
3677 SourceLocation EndLoc) {
Alexander Musman64d33f12014-06-04 07:53:32 +00003678 // OpenMP [2.7.1, loop construct, Description]
Alexander Musman8bd31e62014-05-27 15:12:19 +00003679 // OpenMP [2.8.1, simd construct, Description]
Alexander Musman64d33f12014-06-04 07:53:32 +00003680 // OpenMP [2.9.6, distribute construct, Description]
Alexander Musman8bd31e62014-05-27 15:12:19 +00003681 // The parameter of the collapse clause must be a constant
3682 // positive integer expression.
Alexander Musman64d33f12014-06-04 07:53:32 +00003683 ExprResult NumForLoopsResult =
3684 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse);
3685 if (NumForLoopsResult.isInvalid())
Alexander Musman8bd31e62014-05-27 15:12:19 +00003686 return nullptr;
3687 return new (Context)
Alexander Musman64d33f12014-06-04 07:53:32 +00003688 OMPCollapseClause(NumForLoopsResult.get(), StartLoc, LParenLoc, EndLoc);
Alexander Musman8bd31e62014-05-27 15:12:19 +00003689}
3690
Alexey Bataeved09d242014-05-28 05:53:51 +00003691OMPClause *Sema::ActOnOpenMPSimpleClause(
3692 OpenMPClauseKind Kind, unsigned Argument, SourceLocation ArgumentLoc,
3693 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00003694 OMPClause *Res = nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003695 switch (Kind) {
3696 case OMPC_default:
Alexey Bataev758e55e2013-09-06 18:03:48 +00003697 Res =
Alexey Bataeved09d242014-05-28 05:53:51 +00003698 ActOnOpenMPDefaultClause(static_cast<OpenMPDefaultClauseKind>(Argument),
3699 ArgumentLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003700 break;
Alexey Bataevbcbadb62014-05-06 06:04:14 +00003701 case OMPC_proc_bind:
Alexey Bataeved09d242014-05-28 05:53:51 +00003702 Res = ActOnOpenMPProcBindClause(
3703 static_cast<OpenMPProcBindClauseKind>(Argument), ArgumentLoc, StartLoc,
3704 LParenLoc, EndLoc);
Alexey Bataevbcbadb62014-05-06 06:04:14 +00003705 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003706 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00003707 case OMPC_final:
Alexey Bataev568a8332014-03-06 06:15:19 +00003708 case OMPC_num_threads:
Alexey Bataev62c87d22014-03-21 04:51:18 +00003709 case OMPC_safelen:
Alexander Musman8bd31e62014-05-27 15:12:19 +00003710 case OMPC_collapse:
Alexey Bataev56dafe82014-06-20 07:16:17 +00003711 case OMPC_schedule:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003712 case OMPC_private:
Alexey Bataevd5af8e42013-10-01 05:32:34 +00003713 case OMPC_firstprivate:
Alexander Musman1bb328c2014-06-04 13:06:39 +00003714 case OMPC_lastprivate:
Alexey Bataev758e55e2013-09-06 18:03:48 +00003715 case OMPC_shared:
Alexey Bataevc5e02582014-06-16 07:08:35 +00003716 case OMPC_reduction:
Alexander Musman8dba6642014-04-22 13:09:42 +00003717 case OMPC_linear:
Alexander Musmanf0d76e72014-05-29 14:36:25 +00003718 case OMPC_aligned:
Alexey Bataevd48bcd82014-03-31 03:36:38 +00003719 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00003720 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003721 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00003722 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00003723 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00003724 case OMPC_mergeable:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003725 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00003726 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003727 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00003728 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00003729 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00003730 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00003731 case OMPC_seq_cst:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003732 case OMPC_unknown:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003733 llvm_unreachable("Clause is not allowed.");
3734 }
3735 return Res;
3736}
3737
3738OMPClause *Sema::ActOnOpenMPDefaultClause(OpenMPDefaultClauseKind Kind,
3739 SourceLocation KindKwLoc,
3740 SourceLocation StartLoc,
3741 SourceLocation LParenLoc,
3742 SourceLocation EndLoc) {
3743 if (Kind == OMPC_DEFAULT_unknown) {
3744 std::string Values;
Alexey Bataev4ca40ed2014-05-12 04:23:46 +00003745 static_assert(OMPC_DEFAULT_unknown > 0,
3746 "OMPC_DEFAULT_unknown not greater than 0");
Ted Kremenek725a0972014-03-21 17:34:28 +00003747 std::string Sep(", ");
Alexey Bataev4ca40ed2014-05-12 04:23:46 +00003748 for (unsigned i = 0; i < OMPC_DEFAULT_unknown; ++i) {
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003749 Values += "'";
3750 Values += getOpenMPSimpleClauseTypeName(OMPC_default, i);
3751 Values += "'";
3752 switch (i) {
Alexey Bataev4ca40ed2014-05-12 04:23:46 +00003753 case OMPC_DEFAULT_unknown - 2:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003754 Values += " or ";
3755 break;
Alexey Bataev4ca40ed2014-05-12 04:23:46 +00003756 case OMPC_DEFAULT_unknown - 1:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003757 break;
3758 default:
3759 Values += Sep;
3760 break;
3761 }
3762 }
3763 Diag(KindKwLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataeved09d242014-05-28 05:53:51 +00003764 << Values << getOpenMPClauseName(OMPC_default);
Alexander Musmancb7f9c42014-05-15 13:04:49 +00003765 return nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003766 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00003767 switch (Kind) {
3768 case OMPC_DEFAULT_none:
Alexey Bataevbae9a792014-06-27 10:37:06 +00003769 DSAStack->setDefaultDSANone(KindKwLoc);
Alexey Bataev758e55e2013-09-06 18:03:48 +00003770 break;
3771 case OMPC_DEFAULT_shared:
Alexey Bataevbae9a792014-06-27 10:37:06 +00003772 DSAStack->setDefaultDSAShared(KindKwLoc);
Alexey Bataev758e55e2013-09-06 18:03:48 +00003773 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003774 case OMPC_DEFAULT_unknown:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00003775 llvm_unreachable("Clause kind is not allowed.");
Alexey Bataev758e55e2013-09-06 18:03:48 +00003776 break;
3777 }
Alexey Bataeved09d242014-05-28 05:53:51 +00003778 return new (Context)
3779 OMPDefaultClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003780}
3781
Alexey Bataevbcbadb62014-05-06 06:04:14 +00003782OMPClause *Sema::ActOnOpenMPProcBindClause(OpenMPProcBindClauseKind Kind,
3783 SourceLocation KindKwLoc,
3784 SourceLocation StartLoc,
3785 SourceLocation LParenLoc,
3786 SourceLocation EndLoc) {
3787 if (Kind == OMPC_PROC_BIND_unknown) {
3788 std::string Values;
3789 std::string Sep(", ");
3790 for (unsigned i = 0; i < OMPC_PROC_BIND_unknown; ++i) {
3791 Values += "'";
3792 Values += getOpenMPSimpleClauseTypeName(OMPC_proc_bind, i);
3793 Values += "'";
3794 switch (i) {
3795 case OMPC_PROC_BIND_unknown - 2:
3796 Values += " or ";
3797 break;
3798 case OMPC_PROC_BIND_unknown - 1:
3799 break;
3800 default:
3801 Values += Sep;
3802 break;
3803 }
3804 }
3805 Diag(KindKwLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataeved09d242014-05-28 05:53:51 +00003806 << Values << getOpenMPClauseName(OMPC_proc_bind);
Alexander Musmancb7f9c42014-05-15 13:04:49 +00003807 return nullptr;
Alexey Bataevbcbadb62014-05-06 06:04:14 +00003808 }
Alexey Bataeved09d242014-05-28 05:53:51 +00003809 return new (Context)
3810 OMPProcBindClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataevbcbadb62014-05-06 06:04:14 +00003811}
3812
Alexey Bataev56dafe82014-06-20 07:16:17 +00003813OMPClause *Sema::ActOnOpenMPSingleExprWithArgClause(
3814 OpenMPClauseKind Kind, unsigned Argument, Expr *Expr,
3815 SourceLocation StartLoc, SourceLocation LParenLoc,
3816 SourceLocation ArgumentLoc, SourceLocation CommaLoc,
3817 SourceLocation EndLoc) {
3818 OMPClause *Res = nullptr;
3819 switch (Kind) {
3820 case OMPC_schedule:
3821 Res = ActOnOpenMPScheduleClause(
3822 static_cast<OpenMPScheduleClauseKind>(Argument), Expr, StartLoc,
3823 LParenLoc, ArgumentLoc, CommaLoc, EndLoc);
3824 break;
3825 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00003826 case OMPC_final:
Alexey Bataev56dafe82014-06-20 07:16:17 +00003827 case OMPC_num_threads:
3828 case OMPC_safelen:
3829 case OMPC_collapse:
3830 case OMPC_default:
3831 case OMPC_proc_bind:
3832 case OMPC_private:
3833 case OMPC_firstprivate:
3834 case OMPC_lastprivate:
3835 case OMPC_shared:
3836 case OMPC_reduction:
3837 case OMPC_linear:
3838 case OMPC_aligned:
3839 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00003840 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003841 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00003842 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00003843 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00003844 case OMPC_mergeable:
Alexey Bataev56dafe82014-06-20 07:16:17 +00003845 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00003846 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003847 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00003848 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00003849 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00003850 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00003851 case OMPC_seq_cst:
Alexey Bataev56dafe82014-06-20 07:16:17 +00003852 case OMPC_unknown:
3853 llvm_unreachable("Clause is not allowed.");
3854 }
3855 return Res;
3856}
3857
3858OMPClause *Sema::ActOnOpenMPScheduleClause(
3859 OpenMPScheduleClauseKind Kind, Expr *ChunkSize, SourceLocation StartLoc,
3860 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc,
3861 SourceLocation EndLoc) {
3862 if (Kind == OMPC_SCHEDULE_unknown) {
3863 std::string Values;
3864 std::string Sep(", ");
3865 for (unsigned i = 0; i < OMPC_SCHEDULE_unknown; ++i) {
3866 Values += "'";
3867 Values += getOpenMPSimpleClauseTypeName(OMPC_schedule, i);
3868 Values += "'";
3869 switch (i) {
3870 case OMPC_SCHEDULE_unknown - 2:
3871 Values += " or ";
3872 break;
3873 case OMPC_SCHEDULE_unknown - 1:
3874 break;
3875 default:
3876 Values += Sep;
3877 break;
3878 }
3879 }
3880 Diag(KindLoc, diag::err_omp_unexpected_clause_value)
3881 << Values << getOpenMPClauseName(OMPC_schedule);
3882 return nullptr;
3883 }
3884 Expr *ValExpr = ChunkSize;
3885 if (ChunkSize) {
3886 if (!ChunkSize->isValueDependent() && !ChunkSize->isTypeDependent() &&
3887 !ChunkSize->isInstantiationDependent() &&
3888 !ChunkSize->containsUnexpandedParameterPack()) {
3889 SourceLocation ChunkSizeLoc = ChunkSize->getLocStart();
3890 ExprResult Val =
3891 PerformOpenMPImplicitIntegerConversion(ChunkSizeLoc, ChunkSize);
3892 if (Val.isInvalid())
3893 return nullptr;
3894
3895 ValExpr = Val.get();
3896
3897 // OpenMP [2.7.1, Restrictions]
3898 // chunk_size must be a loop invariant integer expression with a positive
3899 // value.
3900 llvm::APSInt Result;
3901 if (ValExpr->isIntegerConstantExpr(Result, Context) &&
3902 Result.isSigned() && !Result.isStrictlyPositive()) {
3903 Diag(ChunkSizeLoc, diag::err_omp_negative_expression_in_clause)
3904 << "schedule" << ChunkSize->getSourceRange();
3905 return nullptr;
3906 }
3907 }
3908 }
3909
3910 return new (Context) OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc,
3911 EndLoc, Kind, ValExpr);
3912}
3913
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003914OMPClause *Sema::ActOnOpenMPClause(OpenMPClauseKind Kind,
3915 SourceLocation StartLoc,
3916 SourceLocation EndLoc) {
3917 OMPClause *Res = nullptr;
3918 switch (Kind) {
3919 case OMPC_ordered:
3920 Res = ActOnOpenMPOrderedClause(StartLoc, EndLoc);
3921 break;
Alexey Bataev236070f2014-06-20 11:19:47 +00003922 case OMPC_nowait:
3923 Res = ActOnOpenMPNowaitClause(StartLoc, EndLoc);
3924 break;
Alexey Bataev7aea99a2014-07-17 12:19:31 +00003925 case OMPC_untied:
3926 Res = ActOnOpenMPUntiedClause(StartLoc, EndLoc);
3927 break;
Alexey Bataev74ba3a52014-07-17 12:47:03 +00003928 case OMPC_mergeable:
3929 Res = ActOnOpenMPMergeableClause(StartLoc, EndLoc);
3930 break;
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003931 case OMPC_read:
3932 Res = ActOnOpenMPReadClause(StartLoc, EndLoc);
3933 break;
Alexey Bataevdea47612014-07-23 07:46:59 +00003934 case OMPC_write:
3935 Res = ActOnOpenMPWriteClause(StartLoc, EndLoc);
3936 break;
Alexey Bataev67a4f222014-07-23 10:25:33 +00003937 case OMPC_update:
3938 Res = ActOnOpenMPUpdateClause(StartLoc, EndLoc);
3939 break;
Alexey Bataev459dec02014-07-24 06:46:57 +00003940 case OMPC_capture:
3941 Res = ActOnOpenMPCaptureClause(StartLoc, EndLoc);
3942 break;
Alexey Bataev82bad8b2014-07-24 08:55:34 +00003943 case OMPC_seq_cst:
3944 Res = ActOnOpenMPSeqCstClause(StartLoc, EndLoc);
3945 break;
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003946 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00003947 case OMPC_final:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003948 case OMPC_num_threads:
3949 case OMPC_safelen:
3950 case OMPC_collapse:
3951 case OMPC_schedule:
3952 case OMPC_private:
3953 case OMPC_firstprivate:
3954 case OMPC_lastprivate:
3955 case OMPC_shared:
3956 case OMPC_reduction:
3957 case OMPC_linear:
3958 case OMPC_aligned:
3959 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00003960 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003961 case OMPC_default:
3962 case OMPC_proc_bind:
3963 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00003964 case OMPC_flush:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003965 case OMPC_unknown:
3966 llvm_unreachable("Clause is not allowed.");
3967 }
3968 return Res;
3969}
3970
3971OMPClause *Sema::ActOnOpenMPOrderedClause(SourceLocation StartLoc,
3972 SourceLocation EndLoc) {
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003973 DSAStack->setOrderedRegion();
Alexey Bataev142e1fc2014-06-20 09:44:06 +00003974 return new (Context) OMPOrderedClause(StartLoc, EndLoc);
3975}
3976
Alexey Bataev236070f2014-06-20 11:19:47 +00003977OMPClause *Sema::ActOnOpenMPNowaitClause(SourceLocation StartLoc,
3978 SourceLocation EndLoc) {
3979 return new (Context) OMPNowaitClause(StartLoc, EndLoc);
3980}
3981
Alexey Bataev7aea99a2014-07-17 12:19:31 +00003982OMPClause *Sema::ActOnOpenMPUntiedClause(SourceLocation StartLoc,
3983 SourceLocation EndLoc) {
3984 return new (Context) OMPUntiedClause(StartLoc, EndLoc);
3985}
3986
Alexey Bataev74ba3a52014-07-17 12:47:03 +00003987OMPClause *Sema::ActOnOpenMPMergeableClause(SourceLocation StartLoc,
3988 SourceLocation EndLoc) {
3989 return new (Context) OMPMergeableClause(StartLoc, EndLoc);
3990}
3991
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003992OMPClause *Sema::ActOnOpenMPReadClause(SourceLocation StartLoc,
3993 SourceLocation EndLoc) {
Alexey Bataevf98b00c2014-07-23 02:27:21 +00003994 return new (Context) OMPReadClause(StartLoc, EndLoc);
3995}
3996
Alexey Bataevdea47612014-07-23 07:46:59 +00003997OMPClause *Sema::ActOnOpenMPWriteClause(SourceLocation StartLoc,
3998 SourceLocation EndLoc) {
3999 return new (Context) OMPWriteClause(StartLoc, EndLoc);
4000}
4001
Alexey Bataev67a4f222014-07-23 10:25:33 +00004002OMPClause *Sema::ActOnOpenMPUpdateClause(SourceLocation StartLoc,
4003 SourceLocation EndLoc) {
4004 return new (Context) OMPUpdateClause(StartLoc, EndLoc);
4005}
4006
Alexey Bataev459dec02014-07-24 06:46:57 +00004007OMPClause *Sema::ActOnOpenMPCaptureClause(SourceLocation StartLoc,
4008 SourceLocation EndLoc) {
4009 return new (Context) OMPCaptureClause(StartLoc, EndLoc);
4010}
4011
Alexey Bataev82bad8b2014-07-24 08:55:34 +00004012OMPClause *Sema::ActOnOpenMPSeqCstClause(SourceLocation StartLoc,
4013 SourceLocation EndLoc) {
4014 return new (Context) OMPSeqCstClause(StartLoc, EndLoc);
4015}
4016
Alexey Bataevc5e02582014-06-16 07:08:35 +00004017OMPClause *Sema::ActOnOpenMPVarListClause(
4018 OpenMPClauseKind Kind, ArrayRef<Expr *> VarList, Expr *TailExpr,
4019 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc,
4020 SourceLocation EndLoc, CXXScopeSpec &ReductionIdScopeSpec,
4021 const DeclarationNameInfo &ReductionId) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00004022 OMPClause *Res = nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004023 switch (Kind) {
4024 case OMPC_private:
4025 Res = ActOnOpenMPPrivateClause(VarList, StartLoc, LParenLoc, EndLoc);
4026 break;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004027 case OMPC_firstprivate:
4028 Res = ActOnOpenMPFirstprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
4029 break;
Alexander Musman1bb328c2014-06-04 13:06:39 +00004030 case OMPC_lastprivate:
4031 Res = ActOnOpenMPLastprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
4032 break;
Alexey Bataev758e55e2013-09-06 18:03:48 +00004033 case OMPC_shared:
4034 Res = ActOnOpenMPSharedClause(VarList, StartLoc, LParenLoc, EndLoc);
4035 break;
Alexey Bataevc5e02582014-06-16 07:08:35 +00004036 case OMPC_reduction:
Alexey Bataev23b69422014-06-18 07:08:49 +00004037 Res = ActOnOpenMPReductionClause(VarList, StartLoc, LParenLoc, ColonLoc,
4038 EndLoc, ReductionIdScopeSpec, ReductionId);
Alexey Bataevc5e02582014-06-16 07:08:35 +00004039 break;
Alexander Musman8dba6642014-04-22 13:09:42 +00004040 case OMPC_linear:
4041 Res = ActOnOpenMPLinearClause(VarList, TailExpr, StartLoc, LParenLoc,
4042 ColonLoc, EndLoc);
4043 break;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00004044 case OMPC_aligned:
4045 Res = ActOnOpenMPAlignedClause(VarList, TailExpr, StartLoc, LParenLoc,
4046 ColonLoc, EndLoc);
4047 break;
Alexey Bataevd48bcd82014-03-31 03:36:38 +00004048 case OMPC_copyin:
4049 Res = ActOnOpenMPCopyinClause(VarList, StartLoc, LParenLoc, EndLoc);
4050 break;
Alexey Bataevbae9a792014-06-27 10:37:06 +00004051 case OMPC_copyprivate:
4052 Res = ActOnOpenMPCopyprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
4053 break;
Alexey Bataev6125da92014-07-21 11:26:11 +00004054 case OMPC_flush:
4055 Res = ActOnOpenMPFlushClause(VarList, StartLoc, LParenLoc, EndLoc);
4056 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00004057 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00004058 case OMPC_final:
Alexey Bataev568a8332014-03-06 06:15:19 +00004059 case OMPC_num_threads:
Alexey Bataev62c87d22014-03-21 04:51:18 +00004060 case OMPC_safelen:
Alexander Musman8bd31e62014-05-27 15:12:19 +00004061 case OMPC_collapse:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004062 case OMPC_default:
Alexey Bataevbcbadb62014-05-06 06:04:14 +00004063 case OMPC_proc_bind:
Alexey Bataev56dafe82014-06-20 07:16:17 +00004064 case OMPC_schedule:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00004065 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00004066 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00004067 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00004068 case OMPC_mergeable:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004069 case OMPC_threadprivate:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00004070 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00004071 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00004072 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00004073 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00004074 case OMPC_seq_cst:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004075 case OMPC_unknown:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004076 llvm_unreachable("Clause is not allowed.");
4077 }
4078 return Res;
4079}
4080
4081OMPClause *Sema::ActOnOpenMPPrivateClause(ArrayRef<Expr *> VarList,
4082 SourceLocation StartLoc,
4083 SourceLocation LParenLoc,
4084 SourceLocation EndLoc) {
4085 SmallVector<Expr *, 8> Vars;
Alexey Bataev03b340a2014-10-21 03:16:40 +00004086 SmallVector<Expr *, 8> PrivateCopies;
Alexey Bataeved09d242014-05-28 05:53:51 +00004087 for (auto &RefExpr : VarList) {
4088 assert(RefExpr && "NULL expr in OpenMP private clause.");
4089 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004090 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00004091 Vars.push_back(RefExpr);
Alexey Bataev03b340a2014-10-21 03:16:40 +00004092 PrivateCopies.push_back(nullptr);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004093 continue;
4094 }
4095
Alexey Bataeved09d242014-05-28 05:53:51 +00004096 SourceLocation ELoc = RefExpr->getExprLoc();
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004097 // OpenMP [2.1, C/C++]
4098 // A list item is a variable name.
4099 // OpenMP [2.9.3.3, Restrictions, p.1]
4100 // A variable that is part of another variable (as an array or
4101 // structure element) cannot appear in a private clause.
Alexey Bataeved09d242014-05-28 05:53:51 +00004102 DeclRefExpr *DE = dyn_cast_or_null<DeclRefExpr>(RefExpr);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004103 if (!DE || !isa<VarDecl>(DE->getDecl())) {
Alexey Bataeved09d242014-05-28 05:53:51 +00004104 Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004105 continue;
4106 }
4107 Decl *D = DE->getDecl();
4108 VarDecl *VD = cast<VarDecl>(D);
4109
4110 QualType Type = VD->getType();
4111 if (Type->isDependentType() || Type->isInstantiationDependentType()) {
4112 // It will be analyzed later.
4113 Vars.push_back(DE);
Alexey Bataev03b340a2014-10-21 03:16:40 +00004114 PrivateCopies.push_back(nullptr);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004115 continue;
4116 }
4117
4118 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
4119 // A variable that appears in a private clause must not have an incomplete
4120 // type or a reference type.
4121 if (RequireCompleteType(ELoc, Type,
4122 diag::err_omp_private_incomplete_type)) {
4123 continue;
4124 }
4125 if (Type->isReferenceType()) {
4126 Diag(ELoc, diag::err_omp_clause_ref_type_arg)
Alexey Bataeved09d242014-05-28 05:53:51 +00004127 << getOpenMPClauseName(OMPC_private) << Type;
4128 bool IsDecl =
4129 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
4130 Diag(VD->getLocation(),
4131 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4132 << VD;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004133 continue;
4134 }
4135
4136 // OpenMP [2.9.3.3, Restrictions, C/C++, p.1]
4137 // A variable of class type (or array thereof) that appears in a private
Alexey Bataev23b69422014-06-18 07:08:49 +00004138 // clause requires an accessible, unambiguous default constructor for the
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004139 // class type.
Alexey Bataev03b340a2014-10-21 03:16:40 +00004140 while (Type->isArrayType()) {
4141 Type = cast<ArrayType>(Type.getTypePtr())->getElementType();
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004142 }
4143
Alexey Bataev758e55e2013-09-06 18:03:48 +00004144 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
4145 // in a Construct]
4146 // Variables with the predetermined data-sharing attributes may not be
4147 // listed in data-sharing attributes clauses, except for the cases
4148 // listed below. For these exceptions only, listing a predetermined
4149 // variable in a data-sharing attribute clause is allowed and overrides
4150 // the variable's predetermined data-sharing attributes.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004151 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD, false);
Alexey Bataev758e55e2013-09-06 18:03:48 +00004152 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_private) {
Alexey Bataeved09d242014-05-28 05:53:51 +00004153 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
4154 << getOpenMPClauseName(OMPC_private);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004155 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexey Bataev758e55e2013-09-06 18:03:48 +00004156 continue;
4157 }
4158
Alexey Bataev03b340a2014-10-21 03:16:40 +00004159 // Generate helper private variable and initialize it with the default
4160 // value. The address of the original variable is replaced by the address of
4161 // the new private variable in CodeGen. This new variable is not added to
4162 // IdResolver, so the code in the OpenMP region uses original variable for
4163 // proper diagnostics.
4164 auto VDPrivate =
4165 VarDecl::Create(Context, CurContext, DE->getLocStart(),
4166 DE->getExprLoc(), VD->getIdentifier(), VD->getType(),
4167 VD->getTypeSourceInfo(), /*S*/ SC_Auto);
4168 ActOnUninitializedDecl(VDPrivate, /*TypeMayContainAuto*/ false);
4169 if (VDPrivate->isInvalidDecl())
4170 continue;
4171 CurContext->addDecl(VDPrivate);
Alexey Bataev07649fb2014-12-16 08:01:48 +00004172 auto VDPrivateRefExpr =
4173 DeclRefExpr::Create(Context, /*QualifierLoc*/ NestedNameSpecifierLoc(),
4174 /*TemplateKWLoc*/ SourceLocation(), VDPrivate,
Alexey Bataev19acc3d2015-01-12 10:17:46 +00004175 /*RefersToEnclosingVariableOrCapture*/ false,
Alexey Bataev07649fb2014-12-16 08:01:48 +00004176 /*NameLoc*/ SourceLocation(), DE->getType(),
4177 /*VK*/ VK_LValue);
Alexey Bataev03b340a2014-10-21 03:16:40 +00004178
Alexey Bataev758e55e2013-09-06 18:03:48 +00004179 DSAStack->addDSA(VD, DE, OMPC_private);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004180 Vars.push_back(DE);
Alexey Bataev03b340a2014-10-21 03:16:40 +00004181 PrivateCopies.push_back(VDPrivateRefExpr);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004182 }
4183
Alexey Bataeved09d242014-05-28 05:53:51 +00004184 if (Vars.empty())
4185 return nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004186
Alexey Bataev03b340a2014-10-21 03:16:40 +00004187 return OMPPrivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars,
4188 PrivateCopies);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004189}
4190
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004191namespace {
4192class DiagsUninitializedSeveretyRAII {
4193private:
4194 DiagnosticsEngine &Diags;
4195 SourceLocation SavedLoc;
4196 bool IsIgnored;
4197
4198public:
4199 DiagsUninitializedSeveretyRAII(DiagnosticsEngine &Diags, SourceLocation Loc,
4200 bool IsIgnored)
4201 : Diags(Diags), SavedLoc(Loc), IsIgnored(IsIgnored) {
4202 if (!IsIgnored) {
4203 Diags.setSeverity(/*Diag*/ diag::warn_uninit_self_reference_in_init,
4204 /*Map*/ diag::Severity::Ignored, Loc);
4205 }
4206 }
4207 ~DiagsUninitializedSeveretyRAII() {
4208 if (!IsIgnored)
4209 Diags.popMappings(SavedLoc);
4210 }
4211};
4212}
4213
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004214OMPClause *Sema::ActOnOpenMPFirstprivateClause(ArrayRef<Expr *> VarList,
4215 SourceLocation StartLoc,
4216 SourceLocation LParenLoc,
4217 SourceLocation EndLoc) {
4218 SmallVector<Expr *, 8> Vars;
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004219 SmallVector<Expr *, 8> PrivateCopies;
4220 SmallVector<Expr *, 8> Inits;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004221 bool IsImplicitClause =
4222 StartLoc.isInvalid() && LParenLoc.isInvalid() && EndLoc.isInvalid();
4223 auto ImplicitClauseLoc = DSAStack->getConstructLoc();
4224
Alexey Bataeved09d242014-05-28 05:53:51 +00004225 for (auto &RefExpr : VarList) {
4226 assert(RefExpr && "NULL expr in OpenMP firstprivate clause.");
4227 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004228 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00004229 Vars.push_back(RefExpr);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004230 PrivateCopies.push_back(nullptr);
4231 Inits.push_back(nullptr);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004232 continue;
4233 }
4234
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004235 SourceLocation ELoc =
4236 IsImplicitClause ? ImplicitClauseLoc : RefExpr->getExprLoc();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004237 // OpenMP [2.1, C/C++]
4238 // A list item is a variable name.
4239 // OpenMP [2.9.3.3, Restrictions, p.1]
4240 // A variable that is part of another variable (as an array or
4241 // structure element) cannot appear in a private clause.
Alexey Bataeved09d242014-05-28 05:53:51 +00004242 DeclRefExpr *DE = dyn_cast_or_null<DeclRefExpr>(RefExpr);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004243 if (!DE || !isa<VarDecl>(DE->getDecl())) {
Alexey Bataeved09d242014-05-28 05:53:51 +00004244 Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004245 continue;
4246 }
4247 Decl *D = DE->getDecl();
4248 VarDecl *VD = cast<VarDecl>(D);
4249
4250 QualType Type = VD->getType();
4251 if (Type->isDependentType() || Type->isInstantiationDependentType()) {
4252 // It will be analyzed later.
4253 Vars.push_back(DE);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004254 PrivateCopies.push_back(nullptr);
4255 Inits.push_back(nullptr);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004256 continue;
4257 }
4258
4259 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
4260 // A variable that appears in a private clause must not have an incomplete
4261 // type or a reference type.
4262 if (RequireCompleteType(ELoc, Type,
4263 diag::err_omp_firstprivate_incomplete_type)) {
4264 continue;
4265 }
4266 if (Type->isReferenceType()) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004267 if (IsImplicitClause) {
4268 Diag(ImplicitClauseLoc,
4269 diag::err_omp_task_predetermined_firstprivate_ref_type_arg)
4270 << Type;
4271 Diag(RefExpr->getExprLoc(), diag::note_used_here);
4272 } else {
4273 Diag(ELoc, diag::err_omp_clause_ref_type_arg)
4274 << getOpenMPClauseName(OMPC_firstprivate) << Type;
4275 }
Alexey Bataeved09d242014-05-28 05:53:51 +00004276 bool IsDecl =
4277 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
4278 Diag(VD->getLocation(),
4279 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4280 << VD;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004281 continue;
4282 }
4283
4284 // OpenMP [2.9.3.4, Restrictions, C/C++, p.1]
4285 // A variable of class type (or array thereof) that appears in a private
Alexey Bataev23b69422014-06-18 07:08:49 +00004286 // clause requires an accessible, unambiguous copy constructor for the
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004287 // class type.
4288 Type = Context.getBaseElementType(Type);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004289
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004290 // If an implicit firstprivate variable found it was checked already.
4291 if (!IsImplicitClause) {
4292 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD, false);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004293 Type = Type.getNonReferenceType().getCanonicalType();
4294 bool IsConstant = Type.isConstant(Context);
4295 Type = Context.getBaseElementType(Type);
4296 // OpenMP [2.4.13, Data-sharing Attribute Clauses]
4297 // A list item that specifies a given variable may not appear in more
4298 // than one clause on the same directive, except that a variable may be
4299 // specified in both firstprivate and lastprivate clauses.
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004300 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_firstprivate &&
Alexey Bataevf29276e2014-06-18 04:14:57 +00004301 DVar.CKind != OMPC_lastprivate && DVar.RefExpr) {
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004302 Diag(ELoc, diag::err_omp_wrong_dsa)
Alexey Bataeved09d242014-05-28 05:53:51 +00004303 << getOpenMPClauseName(DVar.CKind)
4304 << getOpenMPClauseName(OMPC_firstprivate);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004305 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004306 continue;
4307 }
4308
4309 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
4310 // in a Construct]
4311 // Variables with the predetermined data-sharing attributes may not be
4312 // listed in data-sharing attributes clauses, except for the cases
4313 // listed below. For these exceptions only, listing a predetermined
4314 // variable in a data-sharing attribute clause is allowed and overrides
4315 // the variable's predetermined data-sharing attributes.
4316 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
4317 // in a Construct, C/C++, p.2]
4318 // Variables with const-qualified type having no mutable member may be
4319 // listed in a firstprivate clause, even if they are static data members.
4320 if (!(IsConstant || VD->isStaticDataMember()) && !DVar.RefExpr &&
4321 DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_shared) {
4322 Diag(ELoc, diag::err_omp_wrong_dsa)
Alexey Bataeved09d242014-05-28 05:53:51 +00004323 << getOpenMPClauseName(DVar.CKind)
4324 << getOpenMPClauseName(OMPC_firstprivate);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004325 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004326 continue;
4327 }
4328
Alexey Bataevf29276e2014-06-18 04:14:57 +00004329 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004330 // OpenMP [2.9.3.4, Restrictions, p.2]
4331 // A list item that is private within a parallel region must not appear
4332 // in a firstprivate clause on a worksharing construct if any of the
4333 // worksharing regions arising from the worksharing construct ever bind
4334 // to any of the parallel regions arising from the parallel construct.
Alexey Bataev549210e2014-06-24 04:39:47 +00004335 if (isOpenMPWorksharingDirective(CurrDir) &&
4336 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004337 DVar = DSAStack->getImplicitDSA(VD, true);
4338 if (DVar.CKind != OMPC_shared &&
4339 (isOpenMPParallelDirective(DVar.DKind) ||
4340 DVar.DKind == OMPD_unknown)) {
Alexey Bataevf29276e2014-06-18 04:14:57 +00004341 Diag(ELoc, diag::err_omp_required_access)
4342 << getOpenMPClauseName(OMPC_firstprivate)
4343 << getOpenMPClauseName(OMPC_shared);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004344 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexey Bataevf29276e2014-06-18 04:14:57 +00004345 continue;
4346 }
4347 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004348 // OpenMP [2.9.3.4, Restrictions, p.3]
4349 // A list item that appears in a reduction clause of a parallel construct
4350 // must not appear in a firstprivate clause on a worksharing or task
4351 // construct if any of the worksharing or task regions arising from the
4352 // worksharing or task construct ever bind to any of the parallel regions
4353 // arising from the parallel construct.
4354 // OpenMP [2.9.3.4, Restrictions, p.4]
4355 // A list item that appears in a reduction clause in worksharing
4356 // construct must not appear in a firstprivate clause in a task construct
4357 // encountered during execution of any of the worksharing regions arising
4358 // from the worksharing construct.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004359 if (CurrDir == OMPD_task) {
4360 DVar =
4361 DSAStack->hasInnermostDSA(VD, MatchesAnyClause(OMPC_reduction),
4362 [](OpenMPDirectiveKind K) -> bool {
4363 return isOpenMPParallelDirective(K) ||
4364 isOpenMPWorksharingDirective(K);
4365 },
4366 false);
4367 if (DVar.CKind == OMPC_reduction &&
4368 (isOpenMPParallelDirective(DVar.DKind) ||
4369 isOpenMPWorksharingDirective(DVar.DKind))) {
4370 Diag(ELoc, diag::err_omp_parallel_reduction_in_task_firstprivate)
4371 << getOpenMPDirectiveName(DVar.DKind);
4372 ReportOriginalDSA(*this, DSAStack, VD, DVar);
4373 continue;
4374 }
4375 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004376 }
4377
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004378 Type = Type.getUnqualifiedType();
4379 auto VDPrivate = VarDecl::Create(Context, CurContext, DE->getLocStart(),
4380 ELoc, VD->getIdentifier(), VD->getType(),
4381 VD->getTypeSourceInfo(), /*S*/ SC_Auto);
4382 // Generate helper private variable and initialize it with the value of the
4383 // original variable. The address of the original variable is replaced by
4384 // the address of the new private variable in the CodeGen. This new variable
4385 // is not added to IdResolver, so the code in the OpenMP region uses
4386 // original variable for proper diagnostics and variable capturing.
4387 Expr *VDInitRefExpr = nullptr;
4388 // For arrays generate initializer for single element and replace it by the
4389 // original array element in CodeGen.
4390 if (DE->getType()->isArrayType()) {
4391 auto VDInit = VarDecl::Create(Context, CurContext, DE->getLocStart(),
4392 ELoc, VD->getIdentifier(), Type,
4393 VD->getTypeSourceInfo(), /*S*/ SC_Auto);
4394 CurContext->addHiddenDecl(VDInit);
4395 VDInitRefExpr = DeclRefExpr::Create(
4396 Context, /*QualifierLoc*/ NestedNameSpecifierLoc(),
4397 /*TemplateKWLoc*/ SourceLocation(), VDInit,
Alexey Bataev19acc3d2015-01-12 10:17:46 +00004398 /*RefersToEnclosingVariableOrCapture*/ true, ELoc, Type,
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004399 /*VK*/ VK_LValue);
4400 VDInit->setIsUsed();
4401 auto Init = DefaultLvalueConversion(VDInitRefExpr).get();
4402 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDInit);
4403 InitializationKind Kind = InitializationKind::CreateCopy(ELoc, ELoc);
4404
4405 InitializationSequence InitSeq(*this, Entity, Kind, Init);
4406 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Init);
4407 if (Result.isInvalid())
4408 VDPrivate->setInvalidDecl();
4409 else
4410 VDPrivate->setInit(Result.getAs<Expr>());
4411 } else {
Alexey Bataevf841bd92014-12-16 07:00:22 +00004412 AddInitializerToDecl(
Alexey Bataev19acc3d2015-01-12 10:17:46 +00004413 VDPrivate,
4414 DefaultLvalueConversion(
4415 DeclRefExpr::Create(Context, NestedNameSpecifierLoc(),
4416 SourceLocation(), DE->getDecl(),
4417 /*RefersToEnclosingVariableOrCapture=*/true,
4418 DE->getExprLoc(), DE->getType(),
4419 /*VK=*/VK_LValue)).get(),
Alexey Bataevf841bd92014-12-16 07:00:22 +00004420 /*DirectInit=*/false, /*TypeMayContainAuto=*/false);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004421 }
4422 if (VDPrivate->isInvalidDecl()) {
4423 if (IsImplicitClause) {
4424 Diag(DE->getExprLoc(),
4425 diag::note_omp_task_predetermined_firstprivate_here);
4426 }
4427 continue;
4428 }
4429 CurContext->addDecl(VDPrivate);
Alexey Bataev19acc3d2015-01-12 10:17:46 +00004430 auto VDPrivateRefExpr =
4431 DeclRefExpr::Create(Context, /*QualifierLoc*/ NestedNameSpecifierLoc(),
4432 /*TemplateKWLoc*/ SourceLocation(), VDPrivate,
4433 /*RefersToEnclosingVariableOrCapture*/ false,
4434 DE->getLocStart(), DE->getType(),
4435 /*VK*/ VK_LValue);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004436 DSAStack->addDSA(VD, DE, OMPC_firstprivate);
4437 Vars.push_back(DE);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004438 PrivateCopies.push_back(VDPrivateRefExpr);
4439 Inits.push_back(VDInitRefExpr);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004440 }
4441
Alexey Bataeved09d242014-05-28 05:53:51 +00004442 if (Vars.empty())
4443 return nullptr;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004444
4445 return OMPFirstprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
Alexey Bataev4a5bb772014-10-08 14:01:46 +00004446 Vars, PrivateCopies, Inits);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00004447}
4448
Alexander Musman1bb328c2014-06-04 13:06:39 +00004449OMPClause *Sema::ActOnOpenMPLastprivateClause(ArrayRef<Expr *> VarList,
4450 SourceLocation StartLoc,
4451 SourceLocation LParenLoc,
4452 SourceLocation EndLoc) {
4453 SmallVector<Expr *, 8> Vars;
4454 for (auto &RefExpr : VarList) {
4455 assert(RefExpr && "NULL expr in OpenMP lastprivate clause.");
4456 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
4457 // It will be analyzed later.
4458 Vars.push_back(RefExpr);
4459 continue;
4460 }
4461
4462 SourceLocation ELoc = RefExpr->getExprLoc();
4463 // OpenMP [2.1, C/C++]
4464 // A list item is a variable name.
4465 // OpenMP [2.14.3.5, Restrictions, p.1]
4466 // A variable that is part of another variable (as an array or structure
4467 // element) cannot appear in a lastprivate clause.
4468 DeclRefExpr *DE = dyn_cast_or_null<DeclRefExpr>(RefExpr);
4469 if (!DE || !isa<VarDecl>(DE->getDecl())) {
4470 Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
4471 continue;
4472 }
4473 Decl *D = DE->getDecl();
4474 VarDecl *VD = cast<VarDecl>(D);
4475
4476 QualType Type = VD->getType();
4477 if (Type->isDependentType() || Type->isInstantiationDependentType()) {
4478 // It will be analyzed later.
4479 Vars.push_back(DE);
4480 continue;
4481 }
4482
4483 // OpenMP [2.14.3.5, Restrictions, C/C++, p.2]
4484 // A variable that appears in a lastprivate clause must not have an
4485 // incomplete type or a reference type.
4486 if (RequireCompleteType(ELoc, Type,
4487 diag::err_omp_lastprivate_incomplete_type)) {
4488 continue;
4489 }
4490 if (Type->isReferenceType()) {
4491 Diag(ELoc, diag::err_omp_clause_ref_type_arg)
4492 << getOpenMPClauseName(OMPC_lastprivate) << Type;
4493 bool IsDecl =
4494 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
4495 Diag(VD->getLocation(),
4496 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4497 << VD;
4498 continue;
4499 }
4500
4501 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced
4502 // in a Construct]
4503 // Variables with the predetermined data-sharing attributes may not be
4504 // listed in data-sharing attributes clauses, except for the cases
4505 // listed below.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004506 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD, false);
Alexander Musman1bb328c2014-06-04 13:06:39 +00004507 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_lastprivate &&
4508 DVar.CKind != OMPC_firstprivate &&
4509 (DVar.CKind != OMPC_private || DVar.RefExpr != nullptr)) {
4510 Diag(ELoc, diag::err_omp_wrong_dsa)
4511 << getOpenMPClauseName(DVar.CKind)
4512 << getOpenMPClauseName(OMPC_lastprivate);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004513 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexander Musman1bb328c2014-06-04 13:06:39 +00004514 continue;
4515 }
4516
Alexey Bataevf29276e2014-06-18 04:14:57 +00004517 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
4518 // OpenMP [2.14.3.5, Restrictions, p.2]
4519 // A list item that is private within a parallel region, or that appears in
4520 // the reduction clause of a parallel construct, must not appear in a
4521 // lastprivate clause on a worksharing construct if any of the corresponding
4522 // worksharing regions ever binds to any of the corresponding parallel
4523 // regions.
Alexey Bataev549210e2014-06-24 04:39:47 +00004524 if (isOpenMPWorksharingDirective(CurrDir) &&
4525 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004526 DVar = DSAStack->getImplicitDSA(VD, true);
Alexey Bataevf29276e2014-06-18 04:14:57 +00004527 if (DVar.CKind != OMPC_shared) {
4528 Diag(ELoc, diag::err_omp_required_access)
4529 << getOpenMPClauseName(OMPC_lastprivate)
4530 << getOpenMPClauseName(OMPC_shared);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004531 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexey Bataevf29276e2014-06-18 04:14:57 +00004532 continue;
4533 }
4534 }
Alexander Musman1bb328c2014-06-04 13:06:39 +00004535 // OpenMP [2.14.3.5, Restrictions, C++, p.1,2]
Alexey Bataevf29276e2014-06-18 04:14:57 +00004536 // A variable of class type (or array thereof) that appears in a
4537 // lastprivate clause requires an accessible, unambiguous default
4538 // constructor for the class type, unless the list item is also specified
4539 // in a firstprivate clause.
Alexander Musman1bb328c2014-06-04 13:06:39 +00004540 // A variable of class type (or array thereof) that appears in a
4541 // lastprivate clause requires an accessible, unambiguous copy assignment
4542 // operator for the class type.
4543 while (Type.getNonReferenceType()->isArrayType())
4544 Type = cast<ArrayType>(Type.getNonReferenceType().getTypePtr())
4545 ->getElementType();
4546 CXXRecordDecl *RD = getLangOpts().CPlusPlus
4547 ? Type.getNonReferenceType()->getAsCXXRecordDecl()
4548 : nullptr;
Alexey Bataev23b69422014-06-18 07:08:49 +00004549 // FIXME This code must be replaced by actual copying and destructing of the
4550 // lastprivate variable.
Alexander Musman1bb328c2014-06-04 13:06:39 +00004551 if (RD) {
Alexander Musman1bb328c2014-06-04 13:06:39 +00004552 CXXMethodDecl *MD = LookupCopyingAssignment(RD, 0, false, 0);
4553 DeclAccessPair FoundDecl = DeclAccessPair::make(MD, MD->getAccess());
Alexey Bataevf29276e2014-06-18 04:14:57 +00004554 if (MD) {
4555 if (CheckMemberAccess(ELoc, RD, FoundDecl) == AR_inaccessible ||
4556 MD->isDeleted()) {
4557 Diag(ELoc, diag::err_omp_required_method)
4558 << getOpenMPClauseName(OMPC_lastprivate) << 2;
4559 bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
4560 VarDecl::DeclarationOnly;
4561 Diag(VD->getLocation(),
4562 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4563 << VD;
4564 Diag(RD->getLocation(), diag::note_previous_decl) << RD;
4565 continue;
4566 }
4567 MarkFunctionReferenced(ELoc, MD);
4568 DiagnoseUseOfDecl(MD, ELoc);
Alexander Musman1bb328c2014-06-04 13:06:39 +00004569 }
Alexander Musman1bb328c2014-06-04 13:06:39 +00004570
4571 CXXDestructorDecl *DD = RD->getDestructor();
4572 if (DD) {
Alexey Bataevf29276e2014-06-18 04:14:57 +00004573 PartialDiagnostic PD =
4574 PartialDiagnostic(PartialDiagnostic::NullDiagnostic());
Alexander Musman1bb328c2014-06-04 13:06:39 +00004575 if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
4576 DD->isDeleted()) {
4577 Diag(ELoc, diag::err_omp_required_method)
4578 << getOpenMPClauseName(OMPC_lastprivate) << 4;
4579 bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
4580 VarDecl::DeclarationOnly;
4581 Diag(VD->getLocation(),
4582 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4583 << VD;
4584 Diag(RD->getLocation(), diag::note_previous_decl) << RD;
4585 continue;
4586 }
4587 MarkFunctionReferenced(ELoc, DD);
4588 DiagnoseUseOfDecl(DD, ELoc);
4589 }
4590 }
4591
Alexey Bataevf29276e2014-06-18 04:14:57 +00004592 if (DVar.CKind != OMPC_firstprivate)
4593 DSAStack->addDSA(VD, DE, OMPC_lastprivate);
Alexander Musman1bb328c2014-06-04 13:06:39 +00004594 Vars.push_back(DE);
4595 }
4596
4597 if (Vars.empty())
4598 return nullptr;
4599
4600 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
4601 Vars);
4602}
4603
Alexey Bataev758e55e2013-09-06 18:03:48 +00004604OMPClause *Sema::ActOnOpenMPSharedClause(ArrayRef<Expr *> VarList,
4605 SourceLocation StartLoc,
4606 SourceLocation LParenLoc,
4607 SourceLocation EndLoc) {
4608 SmallVector<Expr *, 8> Vars;
Alexey Bataeved09d242014-05-28 05:53:51 +00004609 for (auto &RefExpr : VarList) {
4610 assert(RefExpr && "NULL expr in OpenMP shared clause.");
4611 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
Alexey Bataev758e55e2013-09-06 18:03:48 +00004612 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00004613 Vars.push_back(RefExpr);
Alexey Bataev758e55e2013-09-06 18:03:48 +00004614 continue;
4615 }
4616
Alexey Bataeved09d242014-05-28 05:53:51 +00004617 SourceLocation ELoc = RefExpr->getExprLoc();
Alexey Bataev758e55e2013-09-06 18:03:48 +00004618 // OpenMP [2.1, C/C++]
4619 // A list item is a variable name.
Alexey Bataevd4dbdf52014-03-06 12:27:56 +00004620 // OpenMP [2.14.3.2, Restrictions, p.1]
4621 // A variable that is part of another variable (as an array or structure
4622 // element) cannot appear in a shared unless it is a static data member
4623 // of a C++ class.
Alexey Bataeved09d242014-05-28 05:53:51 +00004624 DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
Alexey Bataev758e55e2013-09-06 18:03:48 +00004625 if (!DE || !isa<VarDecl>(DE->getDecl())) {
Alexey Bataeved09d242014-05-28 05:53:51 +00004626 Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
Alexey Bataev758e55e2013-09-06 18:03:48 +00004627 continue;
4628 }
4629 Decl *D = DE->getDecl();
4630 VarDecl *VD = cast<VarDecl>(D);
4631
4632 QualType Type = VD->getType();
4633 if (Type->isDependentType() || Type->isInstantiationDependentType()) {
4634 // It will be analyzed later.
4635 Vars.push_back(DE);
4636 continue;
4637 }
4638
4639 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
4640 // in a Construct]
4641 // Variables with the predetermined data-sharing attributes may not be
4642 // listed in data-sharing attributes clauses, except for the cases
4643 // listed below. For these exceptions only, listing a predetermined
4644 // variable in a data-sharing attribute clause is allowed and overrides
4645 // the variable's predetermined data-sharing attributes.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004646 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD, false);
Alexey Bataeved09d242014-05-28 05:53:51 +00004647 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_shared &&
4648 DVar.RefExpr) {
4649 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
4650 << getOpenMPClauseName(OMPC_shared);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004651 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexey Bataev758e55e2013-09-06 18:03:48 +00004652 continue;
4653 }
4654
4655 DSAStack->addDSA(VD, DE, OMPC_shared);
4656 Vars.push_back(DE);
4657 }
4658
Alexey Bataeved09d242014-05-28 05:53:51 +00004659 if (Vars.empty())
4660 return nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +00004661
4662 return OMPSharedClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
4663}
4664
Alexey Bataevc5e02582014-06-16 07:08:35 +00004665namespace {
4666class DSARefChecker : public StmtVisitor<DSARefChecker, bool> {
4667 DSAStackTy *Stack;
4668
4669public:
4670 bool VisitDeclRefExpr(DeclRefExpr *E) {
4671 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004672 DSAStackTy::DSAVarData DVar = Stack->getTopDSA(VD, false);
Alexey Bataevc5e02582014-06-16 07:08:35 +00004673 if (DVar.CKind == OMPC_shared && !DVar.RefExpr)
4674 return false;
4675 if (DVar.CKind != OMPC_unknown)
4676 return true;
Alexey Bataevf29276e2014-06-18 04:14:57 +00004677 DSAStackTy::DSAVarData DVarPrivate =
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004678 Stack->hasDSA(VD, isOpenMPPrivate, MatchesAlways(), false);
Alexey Bataevf29276e2014-06-18 04:14:57 +00004679 if (DVarPrivate.CKind != OMPC_unknown)
Alexey Bataevc5e02582014-06-16 07:08:35 +00004680 return true;
4681 return false;
4682 }
4683 return false;
4684 }
4685 bool VisitStmt(Stmt *S) {
4686 for (auto Child : S->children()) {
4687 if (Child && Visit(Child))
4688 return true;
4689 }
4690 return false;
4691 }
Alexey Bataev23b69422014-06-18 07:08:49 +00004692 explicit DSARefChecker(DSAStackTy *S) : Stack(S) {}
Alexey Bataevc5e02582014-06-16 07:08:35 +00004693};
Alexey Bataev23b69422014-06-18 07:08:49 +00004694} // namespace
Alexey Bataevc5e02582014-06-16 07:08:35 +00004695
4696OMPClause *Sema::ActOnOpenMPReductionClause(
4697 ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc,
4698 SourceLocation ColonLoc, SourceLocation EndLoc,
4699 CXXScopeSpec &ReductionIdScopeSpec,
4700 const DeclarationNameInfo &ReductionId) {
4701 // TODO: Allow scope specification search when 'declare reduction' is
4702 // supported.
4703 assert(ReductionIdScopeSpec.isEmpty() &&
4704 "No support for scoped reduction identifiers yet.");
4705
4706 auto DN = ReductionId.getName();
4707 auto OOK = DN.getCXXOverloadedOperator();
4708 BinaryOperatorKind BOK = BO_Comma;
4709
4710 // OpenMP [2.14.3.6, reduction clause]
4711 // C
4712 // reduction-identifier is either an identifier or one of the following
4713 // operators: +, -, *, &, |, ^, && and ||
4714 // C++
4715 // reduction-identifier is either an id-expression or one of the following
4716 // operators: +, -, *, &, |, ^, && and ||
4717 // FIXME: Only 'min' and 'max' identifiers are supported for now.
4718 switch (OOK) {
4719 case OO_Plus:
4720 case OO_Minus:
4721 BOK = BO_AddAssign;
4722 break;
4723 case OO_Star:
4724 BOK = BO_MulAssign;
4725 break;
4726 case OO_Amp:
4727 BOK = BO_AndAssign;
4728 break;
4729 case OO_Pipe:
4730 BOK = BO_OrAssign;
4731 break;
4732 case OO_Caret:
4733 BOK = BO_XorAssign;
4734 break;
4735 case OO_AmpAmp:
4736 BOK = BO_LAnd;
4737 break;
4738 case OO_PipePipe:
4739 BOK = BO_LOr;
4740 break;
4741 default:
4742 if (auto II = DN.getAsIdentifierInfo()) {
4743 if (II->isStr("max"))
4744 BOK = BO_GT;
4745 else if (II->isStr("min"))
4746 BOK = BO_LT;
4747 }
4748 break;
4749 }
4750 SourceRange ReductionIdRange;
4751 if (ReductionIdScopeSpec.isValid()) {
4752 ReductionIdRange.setBegin(ReductionIdScopeSpec.getBeginLoc());
4753 }
4754 ReductionIdRange.setEnd(ReductionId.getEndLoc());
4755 if (BOK == BO_Comma) {
4756 // Not allowed reduction identifier is found.
4757 Diag(ReductionId.getLocStart(), diag::err_omp_unknown_reduction_identifier)
4758 << ReductionIdRange;
4759 return nullptr;
4760 }
4761
4762 SmallVector<Expr *, 8> Vars;
4763 for (auto RefExpr : VarList) {
4764 assert(RefExpr && "nullptr expr in OpenMP reduction clause.");
4765 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
4766 // It will be analyzed later.
4767 Vars.push_back(RefExpr);
4768 continue;
4769 }
4770
4771 if (RefExpr->isTypeDependent() || RefExpr->isValueDependent() ||
4772 RefExpr->isInstantiationDependent() ||
4773 RefExpr->containsUnexpandedParameterPack()) {
4774 // It will be analyzed later.
4775 Vars.push_back(RefExpr);
4776 continue;
4777 }
4778
4779 auto ELoc = RefExpr->getExprLoc();
4780 auto ERange = RefExpr->getSourceRange();
4781 // OpenMP [2.1, C/C++]
4782 // A list item is a variable or array section, subject to the restrictions
4783 // specified in Section 2.4 on page 42 and in each of the sections
4784 // describing clauses and directives for which a list appears.
4785 // OpenMP [2.14.3.3, Restrictions, p.1]
4786 // A variable that is part of another variable (as an array or
4787 // structure element) cannot appear in a private clause.
4788 auto DE = dyn_cast<DeclRefExpr>(RefExpr);
4789 if (!DE || !isa<VarDecl>(DE->getDecl())) {
4790 Diag(ELoc, diag::err_omp_expected_var_name) << ERange;
4791 continue;
4792 }
4793 auto D = DE->getDecl();
4794 auto VD = cast<VarDecl>(D);
4795 auto Type = VD->getType();
4796 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
4797 // A variable that appears in a private clause must not have an incomplete
4798 // type or a reference type.
4799 if (RequireCompleteType(ELoc, Type,
4800 diag::err_omp_reduction_incomplete_type))
4801 continue;
4802 // OpenMP [2.14.3.6, reduction clause, Restrictions]
4803 // Arrays may not appear in a reduction clause.
4804 if (Type.getNonReferenceType()->isArrayType()) {
4805 Diag(ELoc, diag::err_omp_reduction_type_array) << Type << ERange;
4806 bool IsDecl =
4807 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
4808 Diag(VD->getLocation(),
4809 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4810 << VD;
4811 continue;
4812 }
4813 // OpenMP [2.14.3.6, reduction clause, Restrictions]
4814 // A list item that appears in a reduction clause must not be
4815 // const-qualified.
4816 if (Type.getNonReferenceType().isConstant(Context)) {
4817 Diag(ELoc, diag::err_omp_const_variable)
4818 << getOpenMPClauseName(OMPC_reduction) << Type << ERange;
4819 bool IsDecl =
4820 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
4821 Diag(VD->getLocation(),
4822 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4823 << VD;
4824 continue;
4825 }
4826 // OpenMP [2.9.3.6, Restrictions, C/C++, p.4]
4827 // If a list-item is a reference type then it must bind to the same object
4828 // for all threads of the team.
4829 VarDecl *VDDef = VD->getDefinition();
4830 if (Type->isReferenceType() && VDDef) {
4831 DSARefChecker Check(DSAStack);
4832 if (Check.Visit(VDDef->getInit())) {
4833 Diag(ELoc, diag::err_omp_reduction_ref_type_arg) << ERange;
4834 Diag(VDDef->getLocation(), diag::note_defined_here) << VDDef;
4835 continue;
4836 }
4837 }
4838 // OpenMP [2.14.3.6, reduction clause, Restrictions]
4839 // The type of a list item that appears in a reduction clause must be valid
4840 // for the reduction-identifier. For a max or min reduction in C, the type
4841 // of the list item must be an allowed arithmetic data type: char, int,
4842 // float, double, or _Bool, possibly modified with long, short, signed, or
4843 // unsigned. For a max or min reduction in C++, the type of the list item
4844 // must be an allowed arithmetic data type: char, wchar_t, int, float,
4845 // double, or bool, possibly modified with long, short, signed, or unsigned.
4846 if ((BOK == BO_GT || BOK == BO_LT) &&
4847 !(Type->isScalarType() ||
4848 (getLangOpts().CPlusPlus && Type->isArithmeticType()))) {
4849 Diag(ELoc, diag::err_omp_clause_not_arithmetic_type_arg)
4850 << getLangOpts().CPlusPlus;
4851 bool IsDecl =
4852 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
4853 Diag(VD->getLocation(),
4854 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4855 << VD;
4856 continue;
4857 }
4858 if ((BOK == BO_OrAssign || BOK == BO_AndAssign || BOK == BO_XorAssign) &&
4859 !getLangOpts().CPlusPlus && Type->isFloatingType()) {
4860 Diag(ELoc, diag::err_omp_clause_floating_type_arg);
4861 bool IsDecl =
4862 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
4863 Diag(VD->getLocation(),
4864 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4865 << VD;
4866 continue;
4867 }
4868 bool Suppress = getDiagnostics().getSuppressAllDiagnostics();
4869 getDiagnostics().setSuppressAllDiagnostics(true);
4870 ExprResult ReductionOp =
4871 BuildBinOp(DSAStack->getCurScope(), ReductionId.getLocStart(), BOK,
4872 RefExpr, RefExpr);
4873 getDiagnostics().setSuppressAllDiagnostics(Suppress);
4874 if (ReductionOp.isInvalid()) {
4875 Diag(ELoc, diag::err_omp_reduction_id_not_compatible) << Type
Alexey Bataev23b69422014-06-18 07:08:49 +00004876 << ReductionIdRange;
Alexey Bataevc5e02582014-06-16 07:08:35 +00004877 bool IsDecl =
4878 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
4879 Diag(VD->getLocation(),
4880 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4881 << VD;
4882 continue;
4883 }
4884
4885 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced
4886 // in a Construct]
4887 // Variables with the predetermined data-sharing attributes may not be
4888 // listed in data-sharing attributes clauses, except for the cases
4889 // listed below. For these exceptions only, listing a predetermined
4890 // variable in a data-sharing attribute clause is allowed and overrides
4891 // the variable's predetermined data-sharing attributes.
4892 // OpenMP [2.14.3.6, Restrictions, p.3]
4893 // Any number of reduction clauses can be specified on the directive,
4894 // but a list item can appear only once in the reduction clauses for that
4895 // directive.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004896 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD, false);
Alexey Bataevc5e02582014-06-16 07:08:35 +00004897 if (DVar.CKind == OMPC_reduction) {
4898 Diag(ELoc, diag::err_omp_once_referenced)
4899 << getOpenMPClauseName(OMPC_reduction);
4900 if (DVar.RefExpr) {
4901 Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_referenced);
4902 }
4903 } else if (DVar.CKind != OMPC_unknown) {
4904 Diag(ELoc, diag::err_omp_wrong_dsa)
4905 << getOpenMPClauseName(DVar.CKind)
4906 << getOpenMPClauseName(OMPC_reduction);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004907 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexey Bataevc5e02582014-06-16 07:08:35 +00004908 continue;
4909 }
4910
4911 // OpenMP [2.14.3.6, Restrictions, p.1]
4912 // A list item that appears in a reduction clause of a worksharing
4913 // construct must be shared in the parallel regions to which any of the
4914 // worksharing regions arising from the worksharing construct bind.
Alexey Bataevf29276e2014-06-18 04:14:57 +00004915 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
Alexey Bataev549210e2014-06-24 04:39:47 +00004916 if (isOpenMPWorksharingDirective(CurrDir) &&
4917 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004918 DVar = DSAStack->getImplicitDSA(VD, true);
Alexey Bataevf29276e2014-06-18 04:14:57 +00004919 if (DVar.CKind != OMPC_shared) {
4920 Diag(ELoc, diag::err_omp_required_access)
4921 << getOpenMPClauseName(OMPC_reduction)
4922 << getOpenMPClauseName(OMPC_shared);
Alexey Bataev7ff55242014-06-19 09:13:45 +00004923 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexey Bataevf29276e2014-06-18 04:14:57 +00004924 continue;
4925 }
4926 }
Alexey Bataevc5e02582014-06-16 07:08:35 +00004927
4928 CXXRecordDecl *RD = getLangOpts().CPlusPlus
4929 ? Type.getNonReferenceType()->getAsCXXRecordDecl()
4930 : nullptr;
Alexey Bataev23b69422014-06-18 07:08:49 +00004931 // FIXME This code must be replaced by actual constructing/destructing of
4932 // the reduction variable.
Alexey Bataevc5e02582014-06-16 07:08:35 +00004933 if (RD) {
4934 CXXConstructorDecl *CD = LookupDefaultConstructor(RD);
4935 PartialDiagnostic PD =
4936 PartialDiagnostic(PartialDiagnostic::NullDiagnostic());
Alexey Bataev23b69422014-06-18 07:08:49 +00004937 if (!CD ||
4938 CheckConstructorAccess(ELoc, CD,
4939 InitializedEntity::InitializeTemporary(Type),
4940 CD->getAccess(), PD) == AR_inaccessible ||
Alexey Bataevc5e02582014-06-16 07:08:35 +00004941 CD->isDeleted()) {
4942 Diag(ELoc, diag::err_omp_required_method)
4943 << getOpenMPClauseName(OMPC_reduction) << 0;
4944 bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
4945 VarDecl::DeclarationOnly;
4946 Diag(VD->getLocation(),
4947 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4948 << VD;
4949 Diag(RD->getLocation(), diag::note_previous_decl) << RD;
4950 continue;
4951 }
4952 MarkFunctionReferenced(ELoc, CD);
4953 DiagnoseUseOfDecl(CD, ELoc);
4954
4955 CXXDestructorDecl *DD = RD->getDestructor();
4956 if (DD) {
4957 if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
4958 DD->isDeleted()) {
4959 Diag(ELoc, diag::err_omp_required_method)
4960 << getOpenMPClauseName(OMPC_reduction) << 4;
4961 bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
4962 VarDecl::DeclarationOnly;
4963 Diag(VD->getLocation(),
4964 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
4965 << VD;
4966 Diag(RD->getLocation(), diag::note_previous_decl) << RD;
4967 continue;
4968 }
4969 MarkFunctionReferenced(ELoc, DD);
4970 DiagnoseUseOfDecl(DD, ELoc);
4971 }
4972 }
4973
4974 DSAStack->addDSA(VD, DE, OMPC_reduction);
4975 Vars.push_back(DE);
4976 }
4977
4978 if (Vars.empty())
4979 return nullptr;
4980
4981 return OMPReductionClause::Create(
4982 Context, StartLoc, LParenLoc, ColonLoc, EndLoc, Vars,
4983 ReductionIdScopeSpec.getWithLocInContext(Context), ReductionId);
4984}
4985
Alexander Musman8dba6642014-04-22 13:09:42 +00004986OMPClause *Sema::ActOnOpenMPLinearClause(ArrayRef<Expr *> VarList, Expr *Step,
4987 SourceLocation StartLoc,
4988 SourceLocation LParenLoc,
4989 SourceLocation ColonLoc,
4990 SourceLocation EndLoc) {
4991 SmallVector<Expr *, 8> Vars;
Alexey Bataeved09d242014-05-28 05:53:51 +00004992 for (auto &RefExpr : VarList) {
4993 assert(RefExpr && "NULL expr in OpenMP linear clause.");
4994 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
Alexander Musman8dba6642014-04-22 13:09:42 +00004995 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00004996 Vars.push_back(RefExpr);
Alexander Musman8dba6642014-04-22 13:09:42 +00004997 continue;
4998 }
4999
5000 // OpenMP [2.14.3.7, linear clause]
5001 // A list item that appears in a linear clause is subject to the private
5002 // clause semantics described in Section 2.14.3.3 on page 159 except as
5003 // noted. In addition, the value of the new list item on each iteration
5004 // of the associated loop(s) corresponds to the value of the original
5005 // list item before entering the construct plus the logical number of
5006 // the iteration times linear-step.
5007
Alexey Bataeved09d242014-05-28 05:53:51 +00005008 SourceLocation ELoc = RefExpr->getExprLoc();
Alexander Musman8dba6642014-04-22 13:09:42 +00005009 // OpenMP [2.1, C/C++]
5010 // A list item is a variable name.
5011 // OpenMP [2.14.3.3, Restrictions, p.1]
5012 // A variable that is part of another variable (as an array or
5013 // structure element) cannot appear in a private clause.
Alexey Bataeved09d242014-05-28 05:53:51 +00005014 DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
Alexander Musman8dba6642014-04-22 13:09:42 +00005015 if (!DE || !isa<VarDecl>(DE->getDecl())) {
Alexey Bataeved09d242014-05-28 05:53:51 +00005016 Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
Alexander Musman8dba6642014-04-22 13:09:42 +00005017 continue;
5018 }
5019
5020 VarDecl *VD = cast<VarDecl>(DE->getDecl());
5021
5022 // OpenMP [2.14.3.7, linear clause]
5023 // A list-item cannot appear in more than one linear clause.
5024 // A list-item that appears in a linear clause cannot appear in any
5025 // other data-sharing attribute clause.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005026 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD, false);
Alexander Musman8dba6642014-04-22 13:09:42 +00005027 if (DVar.RefExpr) {
5028 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
5029 << getOpenMPClauseName(OMPC_linear);
Alexey Bataev7ff55242014-06-19 09:13:45 +00005030 ReportOriginalDSA(*this, DSAStack, VD, DVar);
Alexander Musman8dba6642014-04-22 13:09:42 +00005031 continue;
5032 }
5033
5034 QualType QType = VD->getType();
5035 if (QType->isDependentType() || QType->isInstantiationDependentType()) {
5036 // It will be analyzed later.
5037 Vars.push_back(DE);
5038 continue;
5039 }
5040
5041 // A variable must not have an incomplete type or a reference type.
5042 if (RequireCompleteType(ELoc, QType,
5043 diag::err_omp_linear_incomplete_type)) {
5044 continue;
5045 }
5046 if (QType->isReferenceType()) {
5047 Diag(ELoc, diag::err_omp_clause_ref_type_arg)
5048 << getOpenMPClauseName(OMPC_linear) << QType;
5049 bool IsDecl =
5050 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
5051 Diag(VD->getLocation(),
5052 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
5053 << VD;
5054 continue;
5055 }
5056
5057 // A list item must not be const-qualified.
5058 if (QType.isConstant(Context)) {
5059 Diag(ELoc, diag::err_omp_const_variable)
5060 << getOpenMPClauseName(OMPC_linear);
5061 bool IsDecl =
5062 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
5063 Diag(VD->getLocation(),
5064 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
5065 << VD;
5066 continue;
5067 }
5068
5069 // A list item must be of integral or pointer type.
5070 QType = QType.getUnqualifiedType().getCanonicalType();
5071 const Type *Ty = QType.getTypePtrOrNull();
5072 if (!Ty || (!Ty->isDependentType() && !Ty->isIntegralType(Context) &&
5073 !Ty->isPointerType())) {
5074 Diag(ELoc, diag::err_omp_linear_expected_int_or_ptr) << QType;
5075 bool IsDecl =
5076 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
5077 Diag(VD->getLocation(),
5078 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
5079 << VD;
5080 continue;
5081 }
5082
5083 DSAStack->addDSA(VD, DE, OMPC_linear);
5084 Vars.push_back(DE);
5085 }
5086
5087 if (Vars.empty())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00005088 return nullptr;
Alexander Musman8dba6642014-04-22 13:09:42 +00005089
5090 Expr *StepExpr = Step;
5091 if (Step && !Step->isValueDependent() && !Step->isTypeDependent() &&
5092 !Step->isInstantiationDependent() &&
5093 !Step->containsUnexpandedParameterPack()) {
5094 SourceLocation StepLoc = Step->getLocStart();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00005095 ExprResult Val = PerformOpenMPImplicitIntegerConversion(StepLoc, Step);
Alexander Musman8dba6642014-04-22 13:09:42 +00005096 if (Val.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00005097 return nullptr;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005098 StepExpr = Val.get();
Alexander Musman8dba6642014-04-22 13:09:42 +00005099
5100 // Warn about zero linear step (it would be probably better specified as
5101 // making corresponding variables 'const').
5102 llvm::APSInt Result;
5103 if (StepExpr->isIntegerConstantExpr(Result, Context) &&
5104 !Result.isNegative() && !Result.isStrictlyPositive())
5105 Diag(StepLoc, diag::warn_omp_linear_step_zero) << Vars[0]
5106 << (Vars.size() > 1);
5107 }
5108
5109 return OMPLinearClause::Create(Context, StartLoc, LParenLoc, ColonLoc, EndLoc,
5110 Vars, StepExpr);
5111}
5112
Alexander Musmanf0d76e72014-05-29 14:36:25 +00005113OMPClause *Sema::ActOnOpenMPAlignedClause(
5114 ArrayRef<Expr *> VarList, Expr *Alignment, SourceLocation StartLoc,
5115 SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc) {
5116
5117 SmallVector<Expr *, 8> Vars;
5118 for (auto &RefExpr : VarList) {
5119 assert(RefExpr && "NULL expr in OpenMP aligned clause.");
5120 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
5121 // It will be analyzed later.
5122 Vars.push_back(RefExpr);
5123 continue;
5124 }
5125
5126 SourceLocation ELoc = RefExpr->getExprLoc();
5127 // OpenMP [2.1, C/C++]
5128 // A list item is a variable name.
5129 DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
5130 if (!DE || !isa<VarDecl>(DE->getDecl())) {
5131 Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
5132 continue;
5133 }
5134
5135 VarDecl *VD = cast<VarDecl>(DE->getDecl());
5136
5137 // OpenMP [2.8.1, simd construct, Restrictions]
5138 // The type of list items appearing in the aligned clause must be
5139 // array, pointer, reference to array, or reference to pointer.
5140 QualType QType = DE->getType()
5141 .getNonReferenceType()
5142 .getUnqualifiedType()
5143 .getCanonicalType();
5144 const Type *Ty = QType.getTypePtrOrNull();
5145 if (!Ty || (!Ty->isDependentType() && !Ty->isArrayType() &&
5146 !Ty->isPointerType())) {
5147 Diag(ELoc, diag::err_omp_aligned_expected_array_or_ptr)
5148 << QType << getLangOpts().CPlusPlus << RefExpr->getSourceRange();
5149 bool IsDecl =
5150 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
5151 Diag(VD->getLocation(),
5152 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
5153 << VD;
5154 continue;
5155 }
5156
5157 // OpenMP [2.8.1, simd construct, Restrictions]
5158 // A list-item cannot appear in more than one aligned clause.
5159 if (DeclRefExpr *PrevRef = DSAStack->addUniqueAligned(VD, DE)) {
5160 Diag(ELoc, diag::err_omp_aligned_twice) << RefExpr->getSourceRange();
5161 Diag(PrevRef->getExprLoc(), diag::note_omp_explicit_dsa)
5162 << getOpenMPClauseName(OMPC_aligned);
5163 continue;
5164 }
5165
5166 Vars.push_back(DE);
5167 }
5168
5169 // OpenMP [2.8.1, simd construct, Description]
5170 // The parameter of the aligned clause, alignment, must be a constant
5171 // positive integer expression.
5172 // If no optional parameter is specified, implementation-defined default
5173 // alignments for SIMD instructions on the target platforms are assumed.
5174 if (Alignment != nullptr) {
5175 ExprResult AlignResult =
5176 VerifyPositiveIntegerConstantInClause(Alignment, OMPC_aligned);
5177 if (AlignResult.isInvalid())
5178 return nullptr;
5179 Alignment = AlignResult.get();
5180 }
5181 if (Vars.empty())
5182 return nullptr;
5183
5184 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc,
5185 EndLoc, Vars, Alignment);
5186}
5187
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005188OMPClause *Sema::ActOnOpenMPCopyinClause(ArrayRef<Expr *> VarList,
5189 SourceLocation StartLoc,
5190 SourceLocation LParenLoc,
5191 SourceLocation EndLoc) {
5192 SmallVector<Expr *, 8> Vars;
Alexey Bataeved09d242014-05-28 05:53:51 +00005193 for (auto &RefExpr : VarList) {
5194 assert(RefExpr && "NULL expr in OpenMP copyin clause.");
5195 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005196 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00005197 Vars.push_back(RefExpr);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005198 continue;
5199 }
5200
Alexey Bataeved09d242014-05-28 05:53:51 +00005201 SourceLocation ELoc = RefExpr->getExprLoc();
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005202 // OpenMP [2.1, C/C++]
5203 // A list item is a variable name.
5204 // OpenMP [2.14.4.1, Restrictions, p.1]
5205 // A list item that appears in a copyin clause must be threadprivate.
Alexey Bataeved09d242014-05-28 05:53:51 +00005206 DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005207 if (!DE || !isa<VarDecl>(DE->getDecl())) {
Alexey Bataeved09d242014-05-28 05:53:51 +00005208 Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005209 continue;
5210 }
5211
5212 Decl *D = DE->getDecl();
5213 VarDecl *VD = cast<VarDecl>(D);
5214
5215 QualType Type = VD->getType();
5216 if (Type->isDependentType() || Type->isInstantiationDependentType()) {
5217 // It will be analyzed later.
5218 Vars.push_back(DE);
5219 continue;
5220 }
5221
5222 // OpenMP [2.14.4.1, Restrictions, C/C++, p.1]
5223 // A list item that appears in a copyin clause must be threadprivate.
5224 if (!DSAStack->isThreadPrivate(VD)) {
5225 Diag(ELoc, diag::err_omp_required_access)
Alexey Bataeved09d242014-05-28 05:53:51 +00005226 << getOpenMPClauseName(OMPC_copyin)
5227 << getOpenMPDirectiveName(OMPD_threadprivate);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005228 continue;
5229 }
5230
5231 // OpenMP [2.14.4.1, Restrictions, C/C++, p.2]
5232 // A variable of class type (or array thereof) that appears in a
Alexey Bataev23b69422014-06-18 07:08:49 +00005233 // copyin clause requires an accessible, unambiguous copy assignment
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005234 // operator for the class type.
5235 Type = Context.getBaseElementType(Type);
Alexander Musmancb7f9c42014-05-15 13:04:49 +00005236 CXXRecordDecl *RD =
5237 getLangOpts().CPlusPlus ? Type->getAsCXXRecordDecl() : nullptr;
Alexey Bataev23b69422014-06-18 07:08:49 +00005238 // FIXME This code must be replaced by actual assignment of the
5239 // threadprivate variable.
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005240 if (RD) {
5241 CXXMethodDecl *MD = LookupCopyingAssignment(RD, 0, false, 0);
5242 DeclAccessPair FoundDecl = DeclAccessPair::make(MD, MD->getAccess());
Alexey Bataevf29276e2014-06-18 04:14:57 +00005243 if (MD) {
5244 if (CheckMemberAccess(ELoc, RD, FoundDecl) == AR_inaccessible ||
5245 MD->isDeleted()) {
5246 Diag(ELoc, diag::err_omp_required_method)
5247 << getOpenMPClauseName(OMPC_copyin) << 2;
5248 bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
5249 VarDecl::DeclarationOnly;
5250 Diag(VD->getLocation(),
5251 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
5252 << VD;
5253 Diag(RD->getLocation(), diag::note_previous_decl) << RD;
5254 continue;
5255 }
5256 MarkFunctionReferenced(ELoc, MD);
5257 DiagnoseUseOfDecl(MD, ELoc);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005258 }
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005259 }
5260
5261 DSAStack->addDSA(VD, DE, OMPC_copyin);
5262 Vars.push_back(DE);
5263 }
5264
Alexey Bataeved09d242014-05-28 05:53:51 +00005265 if (Vars.empty())
5266 return nullptr;
Alexey Bataevd48bcd82014-03-31 03:36:38 +00005267
5268 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
5269}
5270
Alexey Bataevbae9a792014-06-27 10:37:06 +00005271OMPClause *Sema::ActOnOpenMPCopyprivateClause(ArrayRef<Expr *> VarList,
5272 SourceLocation StartLoc,
5273 SourceLocation LParenLoc,
5274 SourceLocation EndLoc) {
5275 SmallVector<Expr *, 8> Vars;
5276 for (auto &RefExpr : VarList) {
5277 assert(RefExpr && "NULL expr in OpenMP copyprivate clause.");
5278 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
5279 // It will be analyzed later.
5280 Vars.push_back(RefExpr);
5281 continue;
5282 }
5283
5284 SourceLocation ELoc = RefExpr->getExprLoc();
5285 // OpenMP [2.1, C/C++]
5286 // A list item is a variable name.
5287 // OpenMP [2.14.4.1, Restrictions, p.1]
5288 // A list item that appears in a copyin clause must be threadprivate.
5289 DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
5290 if (!DE || !isa<VarDecl>(DE->getDecl())) {
5291 Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
5292 continue;
5293 }
5294
5295 Decl *D = DE->getDecl();
5296 VarDecl *VD = cast<VarDecl>(D);
5297
5298 QualType Type = VD->getType();
5299 if (Type->isDependentType() || Type->isInstantiationDependentType()) {
5300 // It will be analyzed later.
5301 Vars.push_back(DE);
5302 continue;
5303 }
5304
5305 // OpenMP [2.14.4.2, Restrictions, p.2]
5306 // A list item that appears in a copyprivate clause may not appear in a
5307 // private or firstprivate clause on the single construct.
5308 if (!DSAStack->isThreadPrivate(VD)) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005309 auto DVar = DSAStack->getTopDSA(VD, false);
Alexey Bataevbae9a792014-06-27 10:37:06 +00005310 if (DVar.CKind != OMPC_copyprivate && DVar.CKind != OMPC_unknown &&
5311 !(DVar.CKind == OMPC_private && !DVar.RefExpr)) {
5312 Diag(ELoc, diag::err_omp_wrong_dsa)
5313 << getOpenMPClauseName(DVar.CKind)
5314 << getOpenMPClauseName(OMPC_copyprivate);
5315 ReportOriginalDSA(*this, DSAStack, VD, DVar);
5316 continue;
5317 }
5318
5319 // OpenMP [2.11.4.2, Restrictions, p.1]
5320 // All list items that appear in a copyprivate clause must be either
5321 // threadprivate or private in the enclosing context.
5322 if (DVar.CKind == OMPC_unknown) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005323 DVar = DSAStack->getImplicitDSA(VD, false);
Alexey Bataevbae9a792014-06-27 10:37:06 +00005324 if (DVar.CKind == OMPC_shared) {
5325 Diag(ELoc, diag::err_omp_required_access)
5326 << getOpenMPClauseName(OMPC_copyprivate)
5327 << "threadprivate or private in the enclosing context";
5328 ReportOriginalDSA(*this, DSAStack, VD, DVar);
5329 continue;
5330 }
5331 }
5332 }
5333
5334 // OpenMP [2.14.4.1, Restrictions, C/C++, p.2]
5335 // A variable of class type (or array thereof) that appears in a
5336 // copyin clause requires an accessible, unambiguous copy assignment
5337 // operator for the class type.
5338 Type = Context.getBaseElementType(Type);
5339 CXXRecordDecl *RD =
5340 getLangOpts().CPlusPlus ? Type->getAsCXXRecordDecl() : nullptr;
5341 // FIXME This code must be replaced by actual assignment of the
5342 // threadprivate variable.
5343 if (RD) {
5344 CXXMethodDecl *MD = LookupCopyingAssignment(RD, 0, false, 0);
5345 DeclAccessPair FoundDecl = DeclAccessPair::make(MD, MD->getAccess());
5346 if (MD) {
5347 if (CheckMemberAccess(ELoc, RD, FoundDecl) == AR_inaccessible ||
5348 MD->isDeleted()) {
5349 Diag(ELoc, diag::err_omp_required_method)
5350 << getOpenMPClauseName(OMPC_copyprivate) << 2;
5351 bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
5352 VarDecl::DeclarationOnly;
5353 Diag(VD->getLocation(),
5354 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
5355 << VD;
5356 Diag(RD->getLocation(), diag::note_previous_decl) << RD;
5357 continue;
5358 }
5359 MarkFunctionReferenced(ELoc, MD);
5360 DiagnoseUseOfDecl(MD, ELoc);
5361 }
5362 }
5363
5364 // No need to mark vars as copyprivate, they are already threadprivate or
5365 // implicitly private.
5366 Vars.push_back(DE);
5367 }
5368
5369 if (Vars.empty())
5370 return nullptr;
5371
5372 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
5373}
5374
Alexey Bataev6125da92014-07-21 11:26:11 +00005375OMPClause *Sema::ActOnOpenMPFlushClause(ArrayRef<Expr *> VarList,
5376 SourceLocation StartLoc,
5377 SourceLocation LParenLoc,
5378 SourceLocation EndLoc) {
5379 if (VarList.empty())
5380 return nullptr;
5381
5382 return OMPFlushClause::Create(Context, StartLoc, LParenLoc, EndLoc, VarList);
5383}
Alexey Bataevdea47612014-07-23 07:46:59 +00005384