blob: 9b8c95c1cb44b06784b5c926c00982c2ae6736f2 [file] [log] [blame]
Alexey Bataev9959db52014-05-06 10:08:46 +00001//===--- SemaOpenMP.cpp - Semantic Analysis for OpenMP constructs ---------===//
Alexey Bataeva769e072013-03-22 06:34:35 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9/// \file
10/// \brief This file implements semantic analysis for OpenMP directives and
Alexey Bataev6f6f3b42013-05-13 04:18:18 +000011/// clauses.
Alexey Bataeva769e072013-03-22 06:34:35 +000012///
13//===----------------------------------------------------------------------===//
14
Alexey Bataevb08f89f2015-08-14 12:25:37 +000015#include "TreeTransform.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000016#include "clang/AST/ASTContext.h"
Alexey Bataev97720002014-11-11 04:05:39 +000017#include "clang/AST/ASTMutationListener.h"
Alexey Bataeva839ddd2016-03-17 10:19:46 +000018#include "clang/AST/CXXInheritance.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000019#include "clang/AST/Decl.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000020#include "clang/AST/DeclCXX.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000021#include "clang/AST/DeclOpenMP.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000022#include "clang/AST/StmtCXX.h"
23#include "clang/AST/StmtOpenMP.h"
24#include "clang/AST/StmtVisitor.h"
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000025#include "clang/AST/TypeOrdering.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000026#include "clang/Basic/OpenMPKinds.h"
Samuel Antaof8b50122015-07-13 22:54:53 +000027#include "clang/Basic/TargetInfo.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000028#include "clang/Lex/Preprocessor.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000029#include "clang/Sema/Initialization.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000030#include "clang/Sema/Lookup.h"
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000031#include "clang/Sema/Scope.h"
32#include "clang/Sema/ScopeInfo.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000033#include "clang/Sema/SemaInternal.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000034using namespace clang;
35
Alexey Bataev758e55e2013-09-06 18:03:48 +000036//===----------------------------------------------------------------------===//
37// Stack of data-sharing attributes for variables
38//===----------------------------------------------------------------------===//
39
40namespace {
41/// \brief Default data sharing attributes, which can be applied to directive.
42enum DefaultDataSharingAttributes {
Alexey Bataeved09d242014-05-28 05:53:51 +000043 DSA_unspecified = 0, /// \brief Data sharing attribute not specified.
44 DSA_none = 1 << 0, /// \brief Default data sharing attribute 'none'.
45 DSA_shared = 1 << 1 /// \brief Default data sharing attribute 'shared'.
Alexey Bataev758e55e2013-09-06 18:03:48 +000046};
Alexey Bataev7ff55242014-06-19 09:13:45 +000047
Alexey Bataev758e55e2013-09-06 18:03:48 +000048/// \brief Stack for tracking declarations used in OpenMP directives and
49/// clauses and their data-sharing attributes.
Alexey Bataev7ace49d2016-05-17 08:55:33 +000050class DSAStackTy final {
Alexey Bataev758e55e2013-09-06 18:03:48 +000051public:
Alexey Bataev7ace49d2016-05-17 08:55:33 +000052 struct DSAVarData final {
53 OpenMPDirectiveKind DKind = OMPD_unknown;
54 OpenMPClauseKind CKind = OMPC_unknown;
55 Expr *RefExpr = nullptr;
56 DeclRefExpr *PrivateCopy = nullptr;
Alexey Bataevbae9a792014-06-27 10:37:06 +000057 SourceLocation ImplicitDSALoc;
Alexey Bataev7ace49d2016-05-17 08:55:33 +000058 DSAVarData() {}
Alexey Bataev758e55e2013-09-06 18:03:48 +000059 };
Alexey Bataev8b427062016-05-25 12:36:08 +000060 typedef llvm::SmallVector<std::pair<Expr *, OverloadedOperatorKind>, 4>
61 OperatorOffsetTy;
Alexey Bataeved09d242014-05-28 05:53:51 +000062
Alexey Bataev758e55e2013-09-06 18:03:48 +000063private:
Alexey Bataev7ace49d2016-05-17 08:55:33 +000064 struct DSAInfo final {
65 OpenMPClauseKind Attributes = OMPC_unknown;
66 /// Pointer to a reference expression and a flag which shows that the
67 /// variable is marked as lastprivate(true) or not (false).
68 llvm::PointerIntPair<Expr *, 1, bool> RefExpr;
69 DeclRefExpr *PrivateCopy = nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +000070 };
Alexey Bataev90c228f2016-02-08 09:29:13 +000071 typedef llvm::DenseMap<ValueDecl *, DSAInfo> DeclSAMapTy;
72 typedef llvm::DenseMap<ValueDecl *, Expr *> AlignedMapTy;
Alexey Bataevc6ad97a2016-04-01 09:23:34 +000073 typedef std::pair<unsigned, VarDecl *> LCDeclInfo;
74 typedef llvm::DenseMap<ValueDecl *, LCDeclInfo> LoopControlVariablesMapTy;
Samuel Antao90927002016-04-26 14:54:23 +000075 typedef llvm::DenseMap<
76 ValueDecl *, OMPClauseMappableExprCommon::MappableExprComponentLists>
77 MappedExprComponentsTy;
Alexey Bataev28c75412015-12-15 08:19:24 +000078 typedef llvm::StringMap<std::pair<OMPCriticalDirective *, llvm::APSInt>>
79 CriticalsWithHintsTy;
Alexey Bataev8b427062016-05-25 12:36:08 +000080 typedef llvm::DenseMap<OMPDependClause *, OperatorOffsetTy>
81 DoacrossDependMapTy;
Alexey Bataev758e55e2013-09-06 18:03:48 +000082
Alexey Bataev7ace49d2016-05-17 08:55:33 +000083 struct SharingMapTy final {
Alexey Bataev758e55e2013-09-06 18:03:48 +000084 DeclSAMapTy SharingMap;
Alexander Musmanf0d76e72014-05-29 14:36:25 +000085 AlignedMapTy AlignedMap;
Samuel Antao90927002016-04-26 14:54:23 +000086 MappedExprComponentsTy MappedExprComponents;
Alexey Bataeva636c7f2015-12-23 10:27:45 +000087 LoopControlVariablesMapTy LCVMap;
Alexey Bataev7ace49d2016-05-17 08:55:33 +000088 DefaultDataSharingAttributes DefaultAttr = DSA_unspecified;
Alexey Bataevbae9a792014-06-27 10:37:06 +000089 SourceLocation DefaultAttrLoc;
Alexey Bataev7ace49d2016-05-17 08:55:33 +000090 OpenMPDirectiveKind Directive = OMPD_unknown;
Alexey Bataev758e55e2013-09-06 18:03:48 +000091 DeclarationNameInfo DirectiveName;
Alexey Bataev7ace49d2016-05-17 08:55:33 +000092 Scope *CurScope = nullptr;
Alexey Bataevbae9a792014-06-27 10:37:06 +000093 SourceLocation ConstructLoc;
Alexey Bataev8b427062016-05-25 12:36:08 +000094 /// Set of 'depend' clauses with 'sink|source' dependence kind. Required to
95 /// get the data (loop counters etc.) about enclosing loop-based construct.
96 /// This data is required during codegen.
97 DoacrossDependMapTy DoacrossDepends;
Alexey Bataev346265e2015-09-25 10:37:12 +000098 /// \brief first argument (Expr *) contains optional argument of the
99 /// 'ordered' clause, the second one is true if the regions has 'ordered'
100 /// clause, false otherwise.
101 llvm::PointerIntPair<Expr *, 1, bool> OrderedRegion;
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000102 bool NowaitRegion = false;
103 bool CancelRegion = false;
104 unsigned AssociatedLoops = 1;
Alexey Bataev13314bf2014-10-09 04:18:56 +0000105 SourceLocation InnerTeamsRegionLoc;
Alexey Bataeved09d242014-05-28 05:53:51 +0000106 SharingMapTy(OpenMPDirectiveKind DKind, DeclarationNameInfo Name,
Alexey Bataevbae9a792014-06-27 10:37:06 +0000107 Scope *CurScope, SourceLocation Loc)
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000108 : Directive(DKind), DirectiveName(Name), CurScope(CurScope),
109 ConstructLoc(Loc) {}
110 SharingMapTy() {}
Alexey Bataev758e55e2013-09-06 18:03:48 +0000111 };
112
Axel Naumann323862e2016-02-03 10:45:22 +0000113 typedef SmallVector<SharingMapTy, 4> StackTy;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000114
115 /// \brief Stack of used declaration and their data-sharing attributes.
116 StackTy Stack;
Alexey Bataev39f915b82015-05-08 10:41:21 +0000117 /// \brief true, if check for DSA must be from parent directive, false, if
118 /// from current directive.
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000119 OpenMPClauseKind ClauseKindMode = OMPC_unknown;
Alexey Bataev7ff55242014-06-19 09:13:45 +0000120 Sema &SemaRef;
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000121 bool ForceCapturing = false;
Alexey Bataev28c75412015-12-15 08:19:24 +0000122 CriticalsWithHintsTy Criticals;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000123
124 typedef SmallVector<SharingMapTy, 8>::reverse_iterator reverse_iterator;
125
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000126 DSAVarData getDSA(StackTy::reverse_iterator& Iter, ValueDecl *D);
Alexey Bataevec3da872014-01-31 05:15:34 +0000127
128 /// \brief Checks if the variable is a local for OpenMP region.
129 bool isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter);
Alexey Bataeved09d242014-05-28 05:53:51 +0000130
Alexey Bataev758e55e2013-09-06 18:03:48 +0000131public:
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000132 explicit DSAStackTy(Sema &S) : Stack(1), SemaRef(S) {}
Alexey Bataev39f915b82015-05-08 10:41:21 +0000133
Alexey Bataevaac108a2015-06-23 04:51:00 +0000134 bool isClauseParsingMode() const { return ClauseKindMode != OMPC_unknown; }
135 void setClauseParsingMode(OpenMPClauseKind K) { ClauseKindMode = K; }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000136
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000137 bool isForceVarCapturing() const { return ForceCapturing; }
138 void setForceVarCapturing(bool V) { ForceCapturing = V; }
139
Alexey Bataev758e55e2013-09-06 18:03:48 +0000140 void push(OpenMPDirectiveKind DKind, const DeclarationNameInfo &DirName,
Alexey Bataevbae9a792014-06-27 10:37:06 +0000141 Scope *CurScope, SourceLocation Loc) {
142 Stack.push_back(SharingMapTy(DKind, DirName, CurScope, Loc));
143 Stack.back().DefaultAttrLoc = Loc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000144 }
145
146 void pop() {
147 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty!");
148 Stack.pop_back();
149 }
150
Alexey Bataev28c75412015-12-15 08:19:24 +0000151 void addCriticalWithHint(OMPCriticalDirective *D, llvm::APSInt Hint) {
152 Criticals[D->getDirectiveName().getAsString()] = std::make_pair(D, Hint);
153 }
154 const std::pair<OMPCriticalDirective *, llvm::APSInt>
155 getCriticalWithHint(const DeclarationNameInfo &Name) const {
156 auto I = Criticals.find(Name.getAsString());
157 if (I != Criticals.end())
158 return I->second;
159 return std::make_pair(nullptr, llvm::APSInt());
160 }
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000161 /// \brief If 'aligned' declaration for given variable \a D was not seen yet,
Alp Toker15e62a32014-06-06 12:02:07 +0000162 /// add it and return NULL; otherwise return previous occurrence's expression
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000163 /// for diagnostics.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000164 Expr *addUniqueAligned(ValueDecl *D, Expr *NewDE);
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000165
Alexey Bataev9c821032015-04-30 04:23:23 +0000166 /// \brief Register specified variable as loop control variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000167 void addLoopControlVariable(ValueDecl *D, VarDecl *Capture);
Alexey Bataev9c821032015-04-30 04:23:23 +0000168 /// \brief Check if the specified variable is a loop control variable for
169 /// current region.
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000170 /// \return The index of the loop control variable in the list of associated
171 /// for-loops (from outer to inner).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000172 LCDeclInfo isLoopControlVariable(ValueDecl *D);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000173 /// \brief Check if the specified variable is a loop control variable for
174 /// parent region.
175 /// \return The index of the loop control variable in the list of associated
176 /// for-loops (from outer to inner).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000177 LCDeclInfo isParentLoopControlVariable(ValueDecl *D);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000178 /// \brief Get the loop control variable for the I-th loop (or nullptr) in
179 /// parent directive.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000180 ValueDecl *getParentLoopControlVariable(unsigned I);
Alexey Bataev9c821032015-04-30 04:23:23 +0000181
Alexey Bataev758e55e2013-09-06 18:03:48 +0000182 /// \brief Adds explicit data sharing attribute to the specified declaration.
Alexey Bataev90c228f2016-02-08 09:29:13 +0000183 void addDSA(ValueDecl *D, Expr *E, OpenMPClauseKind A,
184 DeclRefExpr *PrivateCopy = nullptr);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000185
Alexey Bataev758e55e2013-09-06 18:03:48 +0000186 /// \brief Returns data sharing attributes from top of the stack for the
187 /// specified declaration.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000188 DSAVarData getTopDSA(ValueDecl *D, bool FromParent);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000189 /// \brief Returns data-sharing attributes for the specified declaration.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000190 DSAVarData getImplicitDSA(ValueDecl *D, bool FromParent);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000191 /// \brief Checks if the specified variables has data-sharing attributes which
192 /// match specified \a CPred predicate in any directive which matches \a DPred
193 /// predicate.
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000194 DSAVarData hasDSA(ValueDecl *D,
195 const llvm::function_ref<bool(OpenMPClauseKind)> &CPred,
196 const llvm::function_ref<bool(OpenMPDirectiveKind)> &DPred,
197 bool FromParent);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000198 /// \brief Checks if the specified variables has data-sharing attributes which
199 /// match specified \a CPred predicate in any innermost directive which
200 /// matches \a DPred predicate.
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000201 DSAVarData
202 hasInnermostDSA(ValueDecl *D,
203 const llvm::function_ref<bool(OpenMPClauseKind)> &CPred,
204 const llvm::function_ref<bool(OpenMPDirectiveKind)> &DPred,
205 bool FromParent);
Alexey Bataevaac108a2015-06-23 04:51:00 +0000206 /// \brief Checks if the specified variables has explicit data-sharing
207 /// attributes which match specified \a CPred predicate at the specified
208 /// OpenMP region.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000209 bool hasExplicitDSA(ValueDecl *D,
Alexey Bataevaac108a2015-06-23 04:51:00 +0000210 const llvm::function_ref<bool(OpenMPClauseKind)> &CPred,
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000211 unsigned Level, bool NotLastprivate = false);
Samuel Antao4be30e92015-10-02 17:14:03 +0000212
213 /// \brief Returns true if the directive at level \Level matches in the
214 /// specified \a DPred predicate.
215 bool hasExplicitDirective(
216 const llvm::function_ref<bool(OpenMPDirectiveKind)> &DPred,
217 unsigned Level);
218
Alexander Musmand9ed09f2014-07-21 09:42:05 +0000219 /// \brief Finds a directive which matches specified \a DPred predicate.
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000220 bool hasDirective(const llvm::function_ref<bool(OpenMPDirectiveKind,
221 const DeclarationNameInfo &,
222 SourceLocation)> &DPred,
223 bool FromParent);
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000224
Alexey Bataev758e55e2013-09-06 18:03:48 +0000225 /// \brief Returns currently analyzed directive.
226 OpenMPDirectiveKind getCurrentDirective() const {
227 return Stack.back().Directive;
228 }
Alexey Bataev549210e2014-06-24 04:39:47 +0000229 /// \brief Returns parent directive.
230 OpenMPDirectiveKind getParentDirective() const {
231 if (Stack.size() > 2)
232 return Stack[Stack.size() - 2].Directive;
233 return OMPD_unknown;
234 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000235
236 /// \brief Set default data sharing attribute to none.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000237 void setDefaultDSANone(SourceLocation Loc) {
238 Stack.back().DefaultAttr = DSA_none;
239 Stack.back().DefaultAttrLoc = Loc;
240 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000241 /// \brief Set default data sharing attribute to shared.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000242 void setDefaultDSAShared(SourceLocation Loc) {
243 Stack.back().DefaultAttr = DSA_shared;
244 Stack.back().DefaultAttrLoc = Loc;
245 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000246
247 DefaultDataSharingAttributes getDefaultDSA() const {
248 return Stack.back().DefaultAttr;
249 }
Alexey Bataevbae9a792014-06-27 10:37:06 +0000250 SourceLocation getDefaultDSALocation() const {
251 return Stack.back().DefaultAttrLoc;
252 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000253
Alexey Bataevf29276e2014-06-18 04:14:57 +0000254 /// \brief Checks if the specified variable is a threadprivate.
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000255 bool isThreadPrivate(VarDecl *D) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000256 DSAVarData DVar = getTopDSA(D, false);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000257 return isOpenMPThreadPrivate(DVar.CKind);
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000258 }
259
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000260 /// \brief Marks current region as ordered (it has an 'ordered' clause).
Alexey Bataev346265e2015-09-25 10:37:12 +0000261 void setOrderedRegion(bool IsOrdered, Expr *Param) {
262 Stack.back().OrderedRegion.setInt(IsOrdered);
263 Stack.back().OrderedRegion.setPointer(Param);
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000264 }
265 /// \brief Returns true, if parent region is ordered (has associated
266 /// 'ordered' clause), false - otherwise.
267 bool isParentOrderedRegion() const {
268 if (Stack.size() > 2)
Alexey Bataev346265e2015-09-25 10:37:12 +0000269 return Stack[Stack.size() - 2].OrderedRegion.getInt();
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000270 return false;
271 }
Alexey Bataev346265e2015-09-25 10:37:12 +0000272 /// \brief Returns optional parameter for the ordered region.
273 Expr *getParentOrderedRegionParam() const {
274 if (Stack.size() > 2)
275 return Stack[Stack.size() - 2].OrderedRegion.getPointer();
276 return nullptr;
277 }
Alexey Bataev6d4ed052015-07-01 06:57:41 +0000278 /// \brief Marks current region as nowait (it has a 'nowait' clause).
279 void setNowaitRegion(bool IsNowait = true) {
280 Stack.back().NowaitRegion = IsNowait;
281 }
282 /// \brief Returns true, if parent region is nowait (has associated
283 /// 'nowait' clause), false - otherwise.
284 bool isParentNowaitRegion() const {
285 if (Stack.size() > 2)
286 return Stack[Stack.size() - 2].NowaitRegion;
287 return false;
288 }
Alexey Bataev25e5b442015-09-15 12:52:43 +0000289 /// \brief Marks parent region as cancel region.
290 void setParentCancelRegion(bool Cancel = true) {
291 if (Stack.size() > 2)
292 Stack[Stack.size() - 2].CancelRegion =
293 Stack[Stack.size() - 2].CancelRegion || Cancel;
294 }
295 /// \brief Return true if current region has inner cancel construct.
296 bool isCancelRegion() const {
297 return Stack.back().CancelRegion;
298 }
Alexey Bataev9fb6e642014-07-22 06:45:04 +0000299
Alexey Bataev9c821032015-04-30 04:23:23 +0000300 /// \brief Set collapse value for the region.
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000301 void setAssociatedLoops(unsigned Val) { Stack.back().AssociatedLoops = Val; }
Alexey Bataev9c821032015-04-30 04:23:23 +0000302 /// \brief Return collapse value for region.
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000303 unsigned getAssociatedLoops() const { return Stack.back().AssociatedLoops; }
Alexey Bataev9c821032015-04-30 04:23:23 +0000304
Alexey Bataev13314bf2014-10-09 04:18:56 +0000305 /// \brief Marks current target region as one with closely nested teams
306 /// region.
307 void setParentTeamsRegionLoc(SourceLocation TeamsRegionLoc) {
308 if (Stack.size() > 2)
309 Stack[Stack.size() - 2].InnerTeamsRegionLoc = TeamsRegionLoc;
310 }
311 /// \brief Returns true, if current region has closely nested teams region.
312 bool hasInnerTeamsRegion() const {
313 return getInnerTeamsRegionLoc().isValid();
314 }
315 /// \brief Returns location of the nested teams region (if any).
316 SourceLocation getInnerTeamsRegionLoc() const {
317 if (Stack.size() > 1)
318 return Stack.back().InnerTeamsRegionLoc;
319 return SourceLocation();
320 }
321
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000322 Scope *getCurScope() const { return Stack.back().CurScope; }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000323 Scope *getCurScope() { return Stack.back().CurScope; }
Alexey Bataevbae9a792014-06-27 10:37:06 +0000324 SourceLocation getConstructLoc() { return Stack.back().ConstructLoc; }
Kelvin Li0bff7af2015-11-23 05:32:03 +0000325
Samuel Antao90927002016-04-26 14:54:23 +0000326 // Do the check specified in \a Check to all component lists and return true
327 // if any issue is found.
328 bool checkMappableExprComponentListsForDecl(
329 ValueDecl *VD, bool CurrentRegionOnly,
330 const llvm::function_ref<bool(
331 OMPClauseMappableExprCommon::MappableExprComponentListRef)> &Check) {
Samuel Antao5de996e2016-01-22 20:21:36 +0000332 auto SI = Stack.rbegin();
333 auto SE = Stack.rend();
334
335 if (SI == SE)
336 return false;
337
338 if (CurrentRegionOnly) {
339 SE = std::next(SI);
340 } else {
341 ++SI;
342 }
343
344 for (; SI != SE; ++SI) {
Samuel Antao90927002016-04-26 14:54:23 +0000345 auto MI = SI->MappedExprComponents.find(VD);
346 if (MI != SI->MappedExprComponents.end())
347 for (auto &L : MI->second)
348 if (Check(L))
Samuel Antao5de996e2016-01-22 20:21:36 +0000349 return true;
Kelvin Li0bff7af2015-11-23 05:32:03 +0000350 }
Samuel Antao5de996e2016-01-22 20:21:36 +0000351 return false;
Kelvin Li0bff7af2015-11-23 05:32:03 +0000352 }
353
Samuel Antao90927002016-04-26 14:54:23 +0000354 // Create a new mappable expression component list associated with a given
355 // declaration and initialize it with the provided list of components.
356 void addMappableExpressionComponents(
357 ValueDecl *VD,
358 OMPClauseMappableExprCommon::MappableExprComponentListRef Components) {
359 assert(Stack.size() > 1 &&
360 "Not expecting to retrieve components from a empty stack!");
361 auto &MEC = Stack.back().MappedExprComponents[VD];
362 // Create new entry and append the new components there.
363 MEC.resize(MEC.size() + 1);
364 MEC.back().append(Components.begin(), Components.end());
Kelvin Li0bff7af2015-11-23 05:32:03 +0000365 }
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000366
367 unsigned getNestingLevel() const {
368 assert(Stack.size() > 1);
369 return Stack.size() - 2;
370 }
Alexey Bataev8b427062016-05-25 12:36:08 +0000371 void addDoacrossDependClause(OMPDependClause *C, OperatorOffsetTy &OpsOffs) {
372 assert(Stack.size() > 2);
373 assert(isOpenMPWorksharingDirective(Stack[Stack.size() - 2].Directive));
374 Stack[Stack.size() - 2].DoacrossDepends.insert({C, OpsOffs});
375 }
376 llvm::iterator_range<DoacrossDependMapTy::const_iterator>
377 getDoacrossDependClauses() const {
378 assert(Stack.size() > 1);
379 if (isOpenMPWorksharingDirective(Stack[Stack.size() - 1].Directive)) {
380 auto &Ref = Stack[Stack.size() - 1].DoacrossDepends;
381 return llvm::make_range(Ref.begin(), Ref.end());
382 }
383 return llvm::make_range(Stack[0].DoacrossDepends.end(),
384 Stack[0].DoacrossDepends.end());
385 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000386};
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000387bool isParallelOrTaskRegion(OpenMPDirectiveKind DKind) {
Alexey Bataev35aaee62016-04-13 13:36:48 +0000388 return isOpenMPParallelDirective(DKind) || isOpenMPTaskingDirective(DKind) ||
389 isOpenMPTeamsDirective(DKind) || DKind == OMPD_unknown;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000390}
Alexey Bataeved09d242014-05-28 05:53:51 +0000391} // namespace
Alexey Bataev758e55e2013-09-06 18:03:48 +0000392
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000393static ValueDecl *getCanonicalDecl(ValueDecl *D) {
394 auto *VD = dyn_cast<VarDecl>(D);
395 auto *FD = dyn_cast<FieldDecl>(D);
396 if (VD != nullptr) {
397 VD = VD->getCanonicalDecl();
398 D = VD;
399 } else {
400 assert(FD);
401 FD = FD->getCanonicalDecl();
402 D = FD;
403 }
404 return D;
405}
406
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000407DSAStackTy::DSAVarData DSAStackTy::getDSA(StackTy::reverse_iterator& Iter,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000408 ValueDecl *D) {
409 D = getCanonicalDecl(D);
410 auto *VD = dyn_cast<VarDecl>(D);
411 auto *FD = dyn_cast<FieldDecl>(D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000412 DSAVarData DVar;
Alexey Bataevdf9b1592014-06-25 04:09:13 +0000413 if (Iter == std::prev(Stack.rend())) {
Alexey Bataev750a58b2014-03-18 12:19:12 +0000414 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
415 // in a region but not in construct]
416 // File-scope or namespace-scope variables referenced in called routines
417 // in the region are shared unless they appear in a threadprivate
418 // directive.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000419 if (VD && !VD->isFunctionOrMethodVarDecl() && !isa<ParmVarDecl>(D))
Alexey Bataev750a58b2014-03-18 12:19:12 +0000420 DVar.CKind = OMPC_shared;
421
422 // OpenMP [2.9.1.2, Data-sharing Attribute Rules for Variables Referenced
423 // in a region but not in construct]
424 // Variables with static storage duration that are declared in called
425 // routines in the region are shared.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000426 if (VD && VD->hasGlobalStorage())
427 DVar.CKind = OMPC_shared;
428
429 // Non-static data members are shared by default.
430 if (FD)
Alexey Bataev750a58b2014-03-18 12:19:12 +0000431 DVar.CKind = OMPC_shared;
432
Alexey Bataev758e55e2013-09-06 18:03:48 +0000433 return DVar;
434 }
Alexey Bataevec3da872014-01-31 05:15:34 +0000435
Alexey Bataev758e55e2013-09-06 18:03:48 +0000436 DVar.DKind = Iter->Directive;
Alexey Bataevec3da872014-01-31 05:15:34 +0000437 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
438 // in a Construct, C/C++, predetermined, p.1]
439 // Variables with automatic storage duration that are declared in a scope
440 // inside the construct are private.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000441 if (VD && isOpenMPLocal(VD, Iter) && VD->isLocalVarDecl() &&
442 (VD->getStorageClass() == SC_Auto || VD->getStorageClass() == SC_None)) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000443 DVar.CKind = OMPC_private;
444 return DVar;
Alexey Bataevec3da872014-01-31 05:15:34 +0000445 }
446
Alexey Bataev758e55e2013-09-06 18:03:48 +0000447 // Explicitly specified attributes and local variables with predetermined
448 // attributes.
449 if (Iter->SharingMap.count(D)) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000450 DVar.RefExpr = Iter->SharingMap[D].RefExpr.getPointer();
Alexey Bataev90c228f2016-02-08 09:29:13 +0000451 DVar.PrivateCopy = Iter->SharingMap[D].PrivateCopy;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000452 DVar.CKind = Iter->SharingMap[D].Attributes;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000453 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000454 return DVar;
455 }
456
457 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
458 // in a Construct, C/C++, implicitly determined, p.1]
459 // In a parallel or task construct, the data-sharing attributes of these
460 // variables are determined by the default clause, if present.
461 switch (Iter->DefaultAttr) {
462 case DSA_shared:
463 DVar.CKind = OMPC_shared;
Alexey Bataevbae9a792014-06-27 10:37:06 +0000464 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000465 return DVar;
466 case DSA_none:
467 return DVar;
468 case DSA_unspecified:
469 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
470 // in a Construct, implicitly determined, p.2]
471 // In a parallel construct, if no default clause is present, these
472 // variables are shared.
Alexey Bataevbae9a792014-06-27 10:37:06 +0000473 DVar.ImplicitDSALoc = Iter->DefaultAttrLoc;
Alexey Bataev13314bf2014-10-09 04:18:56 +0000474 if (isOpenMPParallelDirective(DVar.DKind) ||
475 isOpenMPTeamsDirective(DVar.DKind)) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000476 DVar.CKind = OMPC_shared;
477 return DVar;
478 }
479
480 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
481 // in a Construct, implicitly determined, p.4]
482 // In a task construct, if no default clause is present, a variable that in
483 // the enclosing context is determined to be shared by all implicit tasks
484 // bound to the current team is shared.
Alexey Bataev35aaee62016-04-13 13:36:48 +0000485 if (isOpenMPTaskingDirective(DVar.DKind)) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000486 DSAVarData DVarTemp;
Alexey Bataev62b63b12015-03-10 07:28:44 +0000487 for (StackTy::reverse_iterator I = std::next(Iter), EE = Stack.rend();
Alexey Bataev758e55e2013-09-06 18:03:48 +0000488 I != EE; ++I) {
Alexey Bataeved09d242014-05-28 05:53:51 +0000489 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables
Alexey Bataev35aaee62016-04-13 13:36:48 +0000490 // Referenced in a Construct, implicitly determined, p.6]
Alexey Bataev758e55e2013-09-06 18:03:48 +0000491 // In a task construct, if no default clause is present, a variable
492 // whose data-sharing attribute is not determined by the rules above is
493 // firstprivate.
494 DVarTemp = getDSA(I, D);
495 if (DVarTemp.CKind != OMPC_shared) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000496 DVar.RefExpr = nullptr;
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000497 DVar.CKind = OMPC_firstprivate;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000498 return DVar;
499 }
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000500 if (isParallelOrTaskRegion(I->Directive))
Alexey Bataeved09d242014-05-28 05:53:51 +0000501 break;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000502 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000503 DVar.CKind =
Alexey Bataeved09d242014-05-28 05:53:51 +0000504 (DVarTemp.CKind == OMPC_unknown) ? OMPC_firstprivate : OMPC_shared;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000505 return DVar;
506 }
507 }
508 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
509 // in a Construct, implicitly determined, p.3]
510 // For constructs other than task, if no default clause is present, these
511 // variables inherit their data-sharing attributes from the enclosing
512 // context.
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000513 return getDSA(++Iter, D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000514}
515
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000516Expr *DSAStackTy::addUniqueAligned(ValueDecl *D, Expr *NewDE) {
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000517 assert(Stack.size() > 1 && "Data sharing attributes stack is empty");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000518 D = getCanonicalDecl(D);
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000519 auto It = Stack.back().AlignedMap.find(D);
520 if (It == Stack.back().AlignedMap.end()) {
521 assert(NewDE && "Unexpected nullptr expr to be added into aligned map");
522 Stack.back().AlignedMap[D] = NewDE;
523 return nullptr;
524 } else {
525 assert(It->second && "Unexpected nullptr expr in the aligned map");
526 return It->second;
527 }
528 return nullptr;
529}
530
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000531void DSAStackTy::addLoopControlVariable(ValueDecl *D, VarDecl *Capture) {
Alexey Bataev9c821032015-04-30 04:23:23 +0000532 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000533 D = getCanonicalDecl(D);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000534 Stack.back().LCVMap.insert(
535 std::make_pair(D, LCDeclInfo(Stack.back().LCVMap.size() + 1, Capture)));
Alexey Bataev9c821032015-04-30 04:23:23 +0000536}
537
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000538DSAStackTy::LCDeclInfo DSAStackTy::isLoopControlVariable(ValueDecl *D) {
Alexey Bataev9c821032015-04-30 04:23:23 +0000539 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000540 D = getCanonicalDecl(D);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000541 return Stack.back().LCVMap.count(D) > 0 ? Stack.back().LCVMap[D]
542 : LCDeclInfo(0, nullptr);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000543}
544
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000545DSAStackTy::LCDeclInfo DSAStackTy::isParentLoopControlVariable(ValueDecl *D) {
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000546 assert(Stack.size() > 2 && "Data-sharing attributes stack is empty");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000547 D = getCanonicalDecl(D);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000548 return Stack[Stack.size() - 2].LCVMap.count(D) > 0
549 ? Stack[Stack.size() - 2].LCVMap[D]
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000550 : LCDeclInfo(0, nullptr);
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000551}
552
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000553ValueDecl *DSAStackTy::getParentLoopControlVariable(unsigned I) {
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000554 assert(Stack.size() > 2 && "Data-sharing attributes stack is empty");
555 if (Stack[Stack.size() - 2].LCVMap.size() < I)
556 return nullptr;
557 for (auto &Pair : Stack[Stack.size() - 2].LCVMap) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +0000558 if (Pair.second.first == I)
Alexey Bataeva636c7f2015-12-23 10:27:45 +0000559 return Pair.first;
560 }
561 return nullptr;
Alexey Bataev9c821032015-04-30 04:23:23 +0000562}
563
Alexey Bataev90c228f2016-02-08 09:29:13 +0000564void DSAStackTy::addDSA(ValueDecl *D, Expr *E, OpenMPClauseKind A,
565 DeclRefExpr *PrivateCopy) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000566 D = getCanonicalDecl(D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000567 if (A == OMPC_threadprivate) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000568 auto &Data = Stack[0].SharingMap[D];
569 Data.Attributes = A;
570 Data.RefExpr.setPointer(E);
571 Data.PrivateCopy = nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000572 } else {
573 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000574 auto &Data = Stack.back().SharingMap[D];
575 assert(Data.Attributes == OMPC_unknown || (A == Data.Attributes) ||
576 (A == OMPC_firstprivate && Data.Attributes == OMPC_lastprivate) ||
577 (A == OMPC_lastprivate && Data.Attributes == OMPC_firstprivate) ||
578 (isLoopControlVariable(D).first && A == OMPC_private));
579 if (A == OMPC_lastprivate && Data.Attributes == OMPC_firstprivate) {
580 Data.RefExpr.setInt(/*IntVal=*/true);
581 return;
582 }
583 const bool IsLastprivate =
584 A == OMPC_lastprivate || Data.Attributes == OMPC_lastprivate;
585 Data.Attributes = A;
586 Data.RefExpr.setPointerAndInt(E, IsLastprivate);
587 Data.PrivateCopy = PrivateCopy;
588 if (PrivateCopy) {
589 auto &Data = Stack.back().SharingMap[PrivateCopy->getDecl()];
590 Data.Attributes = A;
591 Data.RefExpr.setPointerAndInt(PrivateCopy, IsLastprivate);
592 Data.PrivateCopy = nullptr;
593 }
Alexey Bataev758e55e2013-09-06 18:03:48 +0000594 }
595}
596
Alexey Bataeved09d242014-05-28 05:53:51 +0000597bool DSAStackTy::isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter) {
Alexey Bataev6ddfe1a2015-04-16 13:49:42 +0000598 D = D->getCanonicalDecl();
Alexey Bataevec3da872014-01-31 05:15:34 +0000599 if (Stack.size() > 2) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000600 reverse_iterator I = Iter, E = std::prev(Stack.rend());
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000601 Scope *TopScope = nullptr;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000602 while (I != E && !isParallelOrTaskRegion(I->Directive)) {
Alexey Bataevec3da872014-01-31 05:15:34 +0000603 ++I;
604 }
Alexey Bataeved09d242014-05-28 05:53:51 +0000605 if (I == E)
606 return false;
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000607 TopScope = I->CurScope ? I->CurScope->getParent() : nullptr;
Alexey Bataevec3da872014-01-31 05:15:34 +0000608 Scope *CurScope = getCurScope();
609 while (CurScope != TopScope && !CurScope->isDeclScope(D)) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000610 CurScope = CurScope->getParent();
Alexey Bataevec3da872014-01-31 05:15:34 +0000611 }
612 return CurScope != TopScope;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000613 }
Alexey Bataevec3da872014-01-31 05:15:34 +0000614 return false;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000615}
616
Alexey Bataev39f915b82015-05-08 10:41:21 +0000617/// \brief Build a variable declaration for OpenMP loop iteration variable.
618static VarDecl *buildVarDecl(Sema &SemaRef, SourceLocation Loc, QualType Type,
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +0000619 StringRef Name, const AttrVec *Attrs = nullptr) {
Alexey Bataev39f915b82015-05-08 10:41:21 +0000620 DeclContext *DC = SemaRef.CurContext;
621 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
622 TypeSourceInfo *TInfo = SemaRef.Context.getTrivialTypeSourceInfo(Type, Loc);
623 VarDecl *Decl =
624 VarDecl::Create(SemaRef.Context, DC, Loc, Loc, II, Type, TInfo, SC_None);
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +0000625 if (Attrs) {
626 for (specific_attr_iterator<AlignedAttr> I(Attrs->begin()), E(Attrs->end());
627 I != E; ++I)
628 Decl->addAttr(*I);
629 }
Alexey Bataev39f915b82015-05-08 10:41:21 +0000630 Decl->setImplicit();
631 return Decl;
632}
633
634static DeclRefExpr *buildDeclRefExpr(Sema &S, VarDecl *D, QualType Ty,
635 SourceLocation Loc,
636 bool RefersToCapture = false) {
637 D->setReferenced();
638 D->markUsed(S.Context);
639 return DeclRefExpr::Create(S.getASTContext(), NestedNameSpecifierLoc(),
640 SourceLocation(), D, RefersToCapture, Loc, Ty,
641 VK_LValue);
642}
643
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000644DSAStackTy::DSAVarData DSAStackTy::getTopDSA(ValueDecl *D, bool FromParent) {
645 D = getCanonicalDecl(D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000646 DSAVarData DVar;
647
648 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
649 // in a Construct, C/C++, predetermined, p.1]
650 // Variables appearing in threadprivate directives are threadprivate.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000651 auto *VD = dyn_cast<VarDecl>(D);
652 if ((VD && VD->getTLSKind() != VarDecl::TLS_None &&
653 !(VD->hasAttr<OMPThreadPrivateDeclAttr>() &&
Samuel Antaof8b50122015-07-13 22:54:53 +0000654 SemaRef.getLangOpts().OpenMPUseTLS &&
655 SemaRef.getASTContext().getTargetInfo().isTLSSupported())) ||
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000656 (VD && VD->getStorageClass() == SC_Register &&
657 VD->hasAttr<AsmLabelAttr>() && !VD->isLocalVarDecl())) {
658 addDSA(D, buildDeclRefExpr(SemaRef, VD, D->getType().getNonReferenceType(),
Alexey Bataev39f915b82015-05-08 10:41:21 +0000659 D->getLocation()),
Alexey Bataevf2453a02015-05-06 07:25:08 +0000660 OMPC_threadprivate);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000661 }
662 if (Stack[0].SharingMap.count(D)) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000663 DVar.RefExpr = Stack[0].SharingMap[D].RefExpr.getPointer();
Alexey Bataev758e55e2013-09-06 18:03:48 +0000664 DVar.CKind = OMPC_threadprivate;
665 return DVar;
666 }
667
Dmitry Polukhin0b0da292016-04-06 11:38:59 +0000668 if (Stack.size() == 1) {
669 // Not in OpenMP execution region and top scope was already checked.
670 return DVar;
671 }
672
Alexey Bataev758e55e2013-09-06 18:03:48 +0000673 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
Alexey Bataevdffa93a2015-12-10 08:20:58 +0000674 // in a Construct, C/C++, predetermined, p.4]
675 // Static data members are shared.
676 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
677 // in a Construct, C/C++, predetermined, p.7]
678 // Variables with static storage duration that are declared in a scope
679 // inside the construct are shared.
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000680 auto &&MatchesAlways = [](OpenMPDirectiveKind) -> bool { return true; };
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000681 if (VD && VD->isStaticDataMember()) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000682 DSAVarData DVarTemp = hasDSA(D, isOpenMPPrivate, MatchesAlways, FromParent);
Alexey Bataevdffa93a2015-12-10 08:20:58 +0000683 if (DVarTemp.CKind != OMPC_unknown && DVarTemp.RefExpr)
Alexey Bataevec3da872014-01-31 05:15:34 +0000684 return DVar;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000685
Alexey Bataevdffa93a2015-12-10 08:20:58 +0000686 DVar.CKind = OMPC_shared;
687 return DVar;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000688 }
689
690 QualType Type = D->getType().getNonReferenceType().getCanonicalType();
Alexey Bataevf120c0d2015-05-19 07:46:42 +0000691 bool IsConstant = Type.isConstant(SemaRef.getASTContext());
692 Type = SemaRef.getASTContext().getBaseElementType(Type);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000693 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
694 // in a Construct, C/C++, predetermined, p.6]
695 // Variables with const qualified type having no mutable member are
696 // shared.
Alexander Musmancb7f9c42014-05-15 13:04:49 +0000697 CXXRecordDecl *RD =
Alexey Bataev7ff55242014-06-19 09:13:45 +0000698 SemaRef.getLangOpts().CPlusPlus ? Type->getAsCXXRecordDecl() : nullptr;
Alexey Bataevc9bd03d2015-12-17 06:55:08 +0000699 if (auto *CTSD = dyn_cast_or_null<ClassTemplateSpecializationDecl>(RD))
700 if (auto *CTD = CTSD->getSpecializedTemplate())
701 RD = CTD->getTemplatedDecl();
Alexey Bataev758e55e2013-09-06 18:03:48 +0000702 if (IsConstant &&
Alexey Bataev4bcad7f2016-02-10 10:50:12 +0000703 !(SemaRef.getLangOpts().CPlusPlus && RD && RD->hasDefinition() &&
704 RD->hasMutableFields())) {
Alexey Bataev758e55e2013-09-06 18:03:48 +0000705 // Variables with const-qualified type having no mutable member may be
706 // listed in a firstprivate clause, even if they are static data members.
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000707 DSAVarData DVarTemp = hasDSA(
708 D, [](OpenMPClauseKind C) -> bool { return C == OMPC_firstprivate; },
709 MatchesAlways, FromParent);
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000710 if (DVarTemp.CKind == OMPC_firstprivate && DVarTemp.RefExpr)
711 return DVar;
712
Alexey Bataev758e55e2013-09-06 18:03:48 +0000713 DVar.CKind = OMPC_shared;
714 return DVar;
715 }
716
Alexey Bataev758e55e2013-09-06 18:03:48 +0000717 // Explicitly specified attributes and local variables with predetermined
718 // attributes.
Alexey Bataevdffa93a2015-12-10 08:20:58 +0000719 auto StartI = std::next(Stack.rbegin());
720 auto EndI = std::prev(Stack.rend());
721 if (FromParent && StartI != EndI) {
722 StartI = std::next(StartI);
723 }
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000724 auto I = std::prev(StartI);
725 if (I->SharingMap.count(D)) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000726 DVar.RefExpr = I->SharingMap[D].RefExpr.getPointer();
Alexey Bataev90c228f2016-02-08 09:29:13 +0000727 DVar.PrivateCopy = I->SharingMap[D].PrivateCopy;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000728 DVar.CKind = I->SharingMap[D].Attributes;
729 DVar.ImplicitDSALoc = I->DefaultAttrLoc;
Alexey Bataev758e55e2013-09-06 18:03:48 +0000730 }
731
732 return DVar;
733}
734
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000735DSAStackTy::DSAVarData DSAStackTy::getImplicitDSA(ValueDecl *D,
736 bool FromParent) {
737 D = getCanonicalDecl(D);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000738 auto StartI = Stack.rbegin();
739 auto EndI = std::prev(Stack.rend());
740 if (FromParent && StartI != EndI) {
741 StartI = std::next(StartI);
742 }
743 return getDSA(StartI, D);
Alexey Bataev758e55e2013-09-06 18:03:48 +0000744}
745
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000746DSAStackTy::DSAVarData
747DSAStackTy::hasDSA(ValueDecl *D,
748 const llvm::function_ref<bool(OpenMPClauseKind)> &CPred,
749 const llvm::function_ref<bool(OpenMPDirectiveKind)> &DPred,
750 bool FromParent) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000751 D = getCanonicalDecl(D);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000752 auto StartI = std::next(Stack.rbegin());
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000753 auto EndI = Stack.rend();
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000754 if (FromParent && StartI != EndI) {
755 StartI = std::next(StartI);
756 }
757 for (auto I = StartI, EE = EndI; I != EE; ++I) {
758 if (!DPred(I->Directive) && !isParallelOrTaskRegion(I->Directive))
Alexey Bataeved09d242014-05-28 05:53:51 +0000759 continue;
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000760 DSAVarData DVar = getDSA(I, D);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000761 if (CPred(DVar.CKind))
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000762 return DVar;
763 }
764 return DSAVarData();
765}
766
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000767DSAStackTy::DSAVarData DSAStackTy::hasInnermostDSA(
768 ValueDecl *D, const llvm::function_ref<bool(OpenMPClauseKind)> &CPred,
769 const llvm::function_ref<bool(OpenMPDirectiveKind)> &DPred,
770 bool FromParent) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000771 D = getCanonicalDecl(D);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000772 auto StartI = std::next(Stack.rbegin());
Dmitry Polukhindc78bc822016-04-01 09:52:30 +0000773 auto EndI = Stack.rend();
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000774 if (FromParent && StartI != EndI) {
775 StartI = std::next(StartI);
776 }
777 for (auto I = StartI, EE = EndI; I != EE; ++I) {
Alexey Bataevf29276e2014-06-18 04:14:57 +0000778 if (!DPred(I->Directive))
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000779 break;
Alexey Bataevc5e02582014-06-16 07:08:35 +0000780 DSAVarData DVar = getDSA(I, D);
Alexey Bataevf29276e2014-06-18 04:14:57 +0000781 if (CPred(DVar.CKind))
Alexey Bataevc5e02582014-06-16 07:08:35 +0000782 return DVar;
783 return DSAVarData();
784 }
785 return DSAVarData();
786}
787
Alexey Bataevaac108a2015-06-23 04:51:00 +0000788bool DSAStackTy::hasExplicitDSA(
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000789 ValueDecl *D, const llvm::function_ref<bool(OpenMPClauseKind)> &CPred,
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000790 unsigned Level, bool NotLastprivate) {
Alexey Bataevaac108a2015-06-23 04:51:00 +0000791 if (CPred(ClauseKindMode))
792 return true;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000793 D = getCanonicalDecl(D);
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000794 auto StartI = std::next(Stack.begin());
795 auto EndI = Stack.end();
NAKAMURA Takumi0332eda2015-06-23 10:01:20 +0000796 if (std::distance(StartI, EndI) <= (int)Level)
Alexey Bataevaac108a2015-06-23 04:51:00 +0000797 return false;
798 std::advance(StartI, Level);
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000799 return (StartI->SharingMap.count(D) > 0) &&
800 StartI->SharingMap[D].RefExpr.getPointer() &&
801 CPred(StartI->SharingMap[D].Attributes) &&
802 (!NotLastprivate || !StartI->SharingMap[D].RefExpr.getInt());
Alexey Bataevaac108a2015-06-23 04:51:00 +0000803}
804
Samuel Antao4be30e92015-10-02 17:14:03 +0000805bool DSAStackTy::hasExplicitDirective(
806 const llvm::function_ref<bool(OpenMPDirectiveKind)> &DPred,
807 unsigned Level) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000808 auto StartI = std::next(Stack.begin());
809 auto EndI = Stack.end();
Samuel Antao4be30e92015-10-02 17:14:03 +0000810 if (std::distance(StartI, EndI) <= (int)Level)
811 return false;
812 std::advance(StartI, Level);
813 return DPred(StartI->Directive);
814}
815
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000816bool DSAStackTy::hasDirective(
817 const llvm::function_ref<bool(OpenMPDirectiveKind,
818 const DeclarationNameInfo &, SourceLocation)>
819 &DPred,
820 bool FromParent) {
Samuel Antaof0d79752016-05-27 15:21:27 +0000821 // We look only in the enclosing region.
822 if (Stack.size() < 2)
823 return false;
Alexander Musmand9ed09f2014-07-21 09:42:05 +0000824 auto StartI = std::next(Stack.rbegin());
825 auto EndI = std::prev(Stack.rend());
826 if (FromParent && StartI != EndI) {
827 StartI = std::next(StartI);
828 }
829 for (auto I = StartI, EE = EndI; I != EE; ++I) {
830 if (DPred(I->Directive, I->DirectiveName, I->ConstructLoc))
831 return true;
832 }
833 return false;
834}
835
Alexey Bataev758e55e2013-09-06 18:03:48 +0000836void Sema::InitDataSharingAttributesStack() {
837 VarDataSharingAttributesStack = new DSAStackTy(*this);
838}
839
840#define DSAStack static_cast<DSAStackTy *>(VarDataSharingAttributesStack)
841
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000842bool Sema::IsOpenMPCapturedByRef(ValueDecl *D, unsigned Level) {
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000843 assert(LangOpts.OpenMP && "OpenMP is not allowed");
844
845 auto &Ctx = getASTContext();
846 bool IsByRef = true;
847
848 // Find the directive that is associated with the provided scope.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000849 auto Ty = D->getType();
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000850
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000851 if (DSAStack->hasExplicitDirective(isOpenMPTargetExecutionDirective, Level)) {
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000852 // This table summarizes how a given variable should be passed to the device
853 // given its type and the clauses where it appears. This table is based on
854 // the description in OpenMP 4.5 [2.10.4, target Construct] and
855 // OpenMP 4.5 [2.15.5, Data-mapping Attribute Rules and Clauses].
856 //
857 // =========================================================================
858 // | type | defaultmap | pvt | first | is_device_ptr | map | res. |
859 // | |(tofrom:scalar)| | pvt | | | |
860 // =========================================================================
861 // | scl | | | | - | | bycopy|
862 // | scl | | - | x | - | - | bycopy|
863 // | scl | | x | - | - | - | null |
864 // | scl | x | | | - | | byref |
865 // | scl | x | - | x | - | - | bycopy|
866 // | scl | x | x | - | - | - | null |
867 // | scl | | - | - | - | x | byref |
868 // | scl | x | - | - | - | x | byref |
869 //
870 // | agg | n.a. | | | - | | byref |
871 // | agg | n.a. | - | x | - | - | byref |
872 // | agg | n.a. | x | - | - | - | null |
873 // | agg | n.a. | - | - | - | x | byref |
874 // | agg | n.a. | - | - | - | x[] | byref |
875 //
876 // | ptr | n.a. | | | - | | bycopy|
877 // | ptr | n.a. | - | x | - | - | bycopy|
878 // | ptr | n.a. | x | - | - | - | null |
879 // | ptr | n.a. | - | - | - | x | byref |
880 // | ptr | n.a. | - | - | - | x[] | bycopy|
881 // | ptr | n.a. | - | - | x | | bycopy|
882 // | ptr | n.a. | - | - | x | x | bycopy|
883 // | ptr | n.a. | - | - | x | x[] | bycopy|
884 // =========================================================================
885 // Legend:
886 // scl - scalar
887 // ptr - pointer
888 // agg - aggregate
889 // x - applies
890 // - - invalid in this combination
891 // [] - mapped with an array section
892 // byref - should be mapped by reference
893 // byval - should be mapped by value
894 // null - initialize a local variable to null on the device
895 //
896 // Observations:
897 // - All scalar declarations that show up in a map clause have to be passed
898 // by reference, because they may have been mapped in the enclosing data
899 // environment.
900 // - If the scalar value does not fit the size of uintptr, it has to be
901 // passed by reference, regardless the result in the table above.
902 // - For pointers mapped by value that have either an implicit map or an
903 // array section, the runtime library may pass the NULL value to the
904 // device instead of the value passed to it by the compiler.
905
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000906
907 if (Ty->isReferenceType())
908 Ty = Ty->castAs<ReferenceType>()->getPointeeType();
Samuel Antao86ace552016-04-27 22:40:57 +0000909
910 // Locate map clauses and see if the variable being captured is referred to
911 // in any of those clauses. Here we only care about variables, not fields,
912 // because fields are part of aggregates.
913 bool IsVariableUsedInMapClause = false;
914 bool IsVariableAssociatedWithSection = false;
915
916 DSAStack->checkMappableExprComponentListsForDecl(
917 D, /*CurrentRegionOnly=*/true,
918 [&](OMPClauseMappableExprCommon::MappableExprComponentListRef
919 MapExprComponents) {
920
921 auto EI = MapExprComponents.rbegin();
922 auto EE = MapExprComponents.rend();
923
924 assert(EI != EE && "Invalid map expression!");
925
926 if (isa<DeclRefExpr>(EI->getAssociatedExpression()))
927 IsVariableUsedInMapClause |= EI->getAssociatedDeclaration() == D;
928
929 ++EI;
930 if (EI == EE)
931 return false;
932
933 if (isa<ArraySubscriptExpr>(EI->getAssociatedExpression()) ||
934 isa<OMPArraySectionExpr>(EI->getAssociatedExpression()) ||
935 isa<MemberExpr>(EI->getAssociatedExpression())) {
936 IsVariableAssociatedWithSection = true;
937 // There is nothing more we need to know about this variable.
938 return true;
939 }
940
941 // Keep looking for more map info.
942 return false;
943 });
944
945 if (IsVariableUsedInMapClause) {
946 // If variable is identified in a map clause it is always captured by
947 // reference except if it is a pointer that is dereferenced somehow.
948 IsByRef = !(Ty->isPointerType() && IsVariableAssociatedWithSection);
949 } else {
950 // By default, all the data that has a scalar type is mapped by copy.
951 IsByRef = !Ty->isScalarType();
952 }
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000953 }
954
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000955 if (IsByRef && Ty.getNonReferenceType()->isScalarType()) {
956 IsByRef = !DSAStack->hasExplicitDSA(
957 D, [](OpenMPClauseKind K) -> bool { return K == OMPC_firstprivate; },
958 Level, /*NotLastprivate=*/true);
959 }
960
Samuel Antao86ace552016-04-27 22:40:57 +0000961 // When passing data by copy, we need to make sure it fits the uintptr size
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000962 // and alignment, because the runtime library only deals with uintptr types.
963 // If it does not fit the uintptr size, we need to pass the data by reference
964 // instead.
965 if (!IsByRef &&
966 (Ctx.getTypeSizeInChars(Ty) >
967 Ctx.getTypeSizeInChars(Ctx.getUIntPtrType()) ||
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000968 Ctx.getDeclAlign(D) > Ctx.getTypeAlignInChars(Ctx.getUIntPtrType()))) {
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000969 IsByRef = true;
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000970 }
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000971
972 return IsByRef;
973}
974
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000975unsigned Sema::getOpenMPNestingLevel() const {
976 assert(getLangOpts().OpenMP);
977 return DSAStack->getNestingLevel();
978}
979
Alexey Bataev90c228f2016-02-08 09:29:13 +0000980VarDecl *Sema::IsOpenMPCapturedDecl(ValueDecl *D) {
Alexey Bataevf841bd92014-12-16 07:00:22 +0000981 assert(LangOpts.OpenMP && "OpenMP is not allowed");
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000982 D = getCanonicalDecl(D);
Samuel Antao4be30e92015-10-02 17:14:03 +0000983
984 // If we are attempting to capture a global variable in a directive with
985 // 'target' we return true so that this global is also mapped to the device.
986 //
987 // FIXME: If the declaration is enclosed in a 'declare target' directive,
988 // then it should not be captured. Therefore, an extra check has to be
989 // inserted here once support for 'declare target' is added.
990 //
Alexey Bataev48c0bfb2016-01-20 09:07:54 +0000991 auto *VD = dyn_cast<VarDecl>(D);
992 if (VD && !VD->hasLocalStorage()) {
Samuel Antao4be30e92015-10-02 17:14:03 +0000993 if (DSAStack->getCurrentDirective() == OMPD_target &&
Alexey Bataev90c228f2016-02-08 09:29:13 +0000994 !DSAStack->isClauseParsingMode())
995 return VD;
Samuel Antaof0d79752016-05-27 15:21:27 +0000996 if (DSAStack->hasDirective(
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000997 [](OpenMPDirectiveKind K, const DeclarationNameInfo &,
998 SourceLocation) -> bool {
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +0000999 return isOpenMPTargetExecutionDirective(K);
Samuel Antao4be30e92015-10-02 17:14:03 +00001000 },
Alexey Bataev90c228f2016-02-08 09:29:13 +00001001 false))
1002 return VD;
Samuel Antao4be30e92015-10-02 17:14:03 +00001003 }
1004
Alexey Bataev48977c32015-08-04 08:10:48 +00001005 if (DSAStack->getCurrentDirective() != OMPD_unknown &&
1006 (!DSAStack->isClauseParsingMode() ||
1007 DSAStack->getParentDirective() != OMPD_unknown)) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00001008 auto &&Info = DSAStack->isLoopControlVariable(D);
1009 if (Info.first ||
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001010 (VD && VD->hasLocalStorage() &&
Samuel Antao9c75cfe2015-07-27 16:38:06 +00001011 isParallelOrTaskRegion(DSAStack->getCurrentDirective())) ||
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001012 (VD && DSAStack->isForceVarCapturing()))
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00001013 return VD ? VD : Info.second;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001014 auto DVarPrivate = DSAStack->getTopDSA(D, DSAStack->isClauseParsingMode());
Alexey Bataevf841bd92014-12-16 07:00:22 +00001015 if (DVarPrivate.CKind != OMPC_unknown && isOpenMPPrivate(DVarPrivate.CKind))
Alexey Bataev90c228f2016-02-08 09:29:13 +00001016 return VD ? VD : cast<VarDecl>(DVarPrivate.PrivateCopy->getDecl());
Alexey Bataev7ace49d2016-05-17 08:55:33 +00001017 DVarPrivate = DSAStack->hasDSA(
1018 D, isOpenMPPrivate, [](OpenMPDirectiveKind) -> bool { return true; },
1019 DSAStack->isClauseParsingMode());
Alexey Bataev90c228f2016-02-08 09:29:13 +00001020 if (DVarPrivate.CKind != OMPC_unknown)
1021 return VD ? VD : cast<VarDecl>(DVarPrivate.PrivateCopy->getDecl());
Alexey Bataevf841bd92014-12-16 07:00:22 +00001022 }
Alexey Bataev90c228f2016-02-08 09:29:13 +00001023 return nullptr;
Alexey Bataevf841bd92014-12-16 07:00:22 +00001024}
1025
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001026bool Sema::isOpenMPPrivateDecl(ValueDecl *D, unsigned Level) {
Alexey Bataevaac108a2015-06-23 04:51:00 +00001027 assert(LangOpts.OpenMP && "OpenMP is not allowed");
1028 return DSAStack->hasExplicitDSA(
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001029 D, [](OpenMPClauseKind K) -> bool { return K == OMPC_private; }, Level);
Alexey Bataevaac108a2015-06-23 04:51:00 +00001030}
1031
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001032bool Sema::isOpenMPTargetCapturedDecl(ValueDecl *D, unsigned Level) {
Samuel Antao4be30e92015-10-02 17:14:03 +00001033 assert(LangOpts.OpenMP && "OpenMP is not allowed");
1034 // Return true if the current level is no longer enclosed in a target region.
1035
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001036 auto *VD = dyn_cast<VarDecl>(D);
1037 return VD && !VD->hasLocalStorage() &&
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00001038 DSAStack->hasExplicitDirective(isOpenMPTargetExecutionDirective,
1039 Level);
Samuel Antao4be30e92015-10-02 17:14:03 +00001040}
1041
Alexey Bataeved09d242014-05-28 05:53:51 +00001042void Sema::DestroyDataSharingAttributesStack() { delete DSAStack; }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001043
1044void Sema::StartOpenMPDSABlock(OpenMPDirectiveKind DKind,
1045 const DeclarationNameInfo &DirName,
Alexey Bataevbae9a792014-06-27 10:37:06 +00001046 Scope *CurScope, SourceLocation Loc) {
1047 DSAStack->push(DKind, DirName, CurScope, Loc);
Alexey Bataev758e55e2013-09-06 18:03:48 +00001048 PushExpressionEvaluationContext(PotentiallyEvaluated);
1049}
1050
Alexey Bataevaac108a2015-06-23 04:51:00 +00001051void Sema::StartOpenMPClause(OpenMPClauseKind K) {
1052 DSAStack->setClauseParsingMode(K);
Alexey Bataev39f915b82015-05-08 10:41:21 +00001053}
1054
Alexey Bataevaac108a2015-06-23 04:51:00 +00001055void Sema::EndOpenMPClause() {
1056 DSAStack->setClauseParsingMode(/*K=*/OMPC_unknown);
Alexey Bataev39f915b82015-05-08 10:41:21 +00001057}
1058
Alexey Bataev758e55e2013-09-06 18:03:48 +00001059void Sema::EndOpenMPDSABlock(Stmt *CurDirective) {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001060 // OpenMP [2.14.3.5, Restrictions, C/C++, p.1]
1061 // A variable of class type (or array thereof) that appears in a lastprivate
1062 // clause requires an accessible, unambiguous default constructor for the
1063 // class type, unless the list item is also specified in a firstprivate
1064 // clause.
1065 if (auto D = dyn_cast_or_null<OMPExecutableDirective>(CurDirective)) {
Alexey Bataev38e89532015-04-16 04:54:05 +00001066 for (auto *C : D->clauses()) {
1067 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) {
1068 SmallVector<Expr *, 8> PrivateCopies;
1069 for (auto *DE : Clause->varlists()) {
1070 if (DE->isValueDependent() || DE->isTypeDependent()) {
1071 PrivateCopies.push_back(nullptr);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001072 continue;
Alexey Bataev38e89532015-04-16 04:54:05 +00001073 }
Alexey Bataev74caaf22016-02-20 04:09:36 +00001074 auto *DRE = cast<DeclRefExpr>(DE->IgnoreParens());
Alexey Bataev005248a2016-02-25 05:25:57 +00001075 VarDecl *VD = cast<VarDecl>(DRE->getDecl());
1076 QualType Type = VD->getType().getNonReferenceType();
1077 auto DVar = DSAStack->getTopDSA(VD, false);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001078 if (DVar.CKind == OMPC_lastprivate) {
Alexey Bataev38e89532015-04-16 04:54:05 +00001079 // Generate helper private variable and initialize it with the
1080 // default value. The address of the original variable is replaced
1081 // by the address of the new private variable in CodeGen. This new
1082 // variable is not added to IdResolver, so the code in the OpenMP
1083 // region uses original variable for proper diagnostics.
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00001084 auto *VDPrivate = buildVarDecl(
1085 *this, DE->getExprLoc(), Type.getUnqualifiedType(),
Alexey Bataev005248a2016-02-25 05:25:57 +00001086 VD->getName(), VD->hasAttrs() ? &VD->getAttrs() : nullptr);
Alexey Bataev38e89532015-04-16 04:54:05 +00001087 ActOnUninitializedDecl(VDPrivate, /*TypeMayContainAuto=*/false);
1088 if (VDPrivate->isInvalidDecl())
1089 continue;
Alexey Bataev39f915b82015-05-08 10:41:21 +00001090 PrivateCopies.push_back(buildDeclRefExpr(
1091 *this, VDPrivate, DE->getType(), DE->getExprLoc()));
Alexey Bataev38e89532015-04-16 04:54:05 +00001092 } else {
1093 // The variable is also a firstprivate, so initialization sequence
1094 // for private copy is generated already.
1095 PrivateCopies.push_back(nullptr);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001096 }
1097 }
Alexey Bataev38e89532015-04-16 04:54:05 +00001098 // Set initializers to private copies if no errors were found.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001099 if (PrivateCopies.size() == Clause->varlist_size())
Alexey Bataev38e89532015-04-16 04:54:05 +00001100 Clause->setPrivateCopies(PrivateCopies);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001101 }
1102 }
1103 }
1104
Alexey Bataev758e55e2013-09-06 18:03:48 +00001105 DSAStack->pop();
1106 DiscardCleanupsInEvaluationContext();
1107 PopExpressionEvaluationContext();
1108}
1109
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001110static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV,
1111 Expr *NumIterations, Sema &SemaRef,
1112 Scope *S, DSAStackTy *Stack);
Alexander Musman3276a272015-03-21 10:12:56 +00001113
Alexey Bataeva769e072013-03-22 06:34:35 +00001114namespace {
1115
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001116class VarDeclFilterCCC : public CorrectionCandidateCallback {
1117private:
Alexey Bataev7ff55242014-06-19 09:13:45 +00001118 Sema &SemaRef;
Alexey Bataeved09d242014-05-28 05:53:51 +00001119
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001120public:
Alexey Bataev7ff55242014-06-19 09:13:45 +00001121 explicit VarDeclFilterCCC(Sema &S) : SemaRef(S) {}
Craig Toppere14c0f82014-03-12 04:55:44 +00001122 bool ValidateCandidate(const TypoCorrection &Candidate) override {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001123 NamedDecl *ND = Candidate.getCorrectionDecl();
1124 if (VarDecl *VD = dyn_cast_or_null<VarDecl>(ND)) {
1125 return VD->hasGlobalStorage() &&
Alexey Bataev7ff55242014-06-19 09:13:45 +00001126 SemaRef.isDeclInScope(ND, SemaRef.getCurLexicalContext(),
1127 SemaRef.getCurScope());
Alexey Bataeva769e072013-03-22 06:34:35 +00001128 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001129 return false;
Alexey Bataeva769e072013-03-22 06:34:35 +00001130 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001131};
Dmitry Polukhind69b5052016-05-09 14:59:13 +00001132
1133class VarOrFuncDeclFilterCCC : public CorrectionCandidateCallback {
1134private:
1135 Sema &SemaRef;
1136
1137public:
1138 explicit VarOrFuncDeclFilterCCC(Sema &S) : SemaRef(S) {}
1139 bool ValidateCandidate(const TypoCorrection &Candidate) override {
1140 NamedDecl *ND = Candidate.getCorrectionDecl();
1141 if (isa<VarDecl>(ND) || isa<FunctionDecl>(ND)) {
1142 return SemaRef.isDeclInScope(ND, SemaRef.getCurLexicalContext(),
1143 SemaRef.getCurScope());
1144 }
1145 return false;
1146 }
1147};
1148
Alexey Bataeved09d242014-05-28 05:53:51 +00001149} // namespace
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001150
1151ExprResult Sema::ActOnOpenMPIdExpression(Scope *CurScope,
1152 CXXScopeSpec &ScopeSpec,
1153 const DeclarationNameInfo &Id) {
1154 LookupResult Lookup(*this, Id, LookupOrdinaryName);
1155 LookupParsedName(Lookup, CurScope, &ScopeSpec, true);
1156
1157 if (Lookup.isAmbiguous())
1158 return ExprError();
1159
1160 VarDecl *VD;
1161 if (!Lookup.isSingleResult()) {
Kaelyn Takata89c881b2014-10-27 18:07:29 +00001162 if (TypoCorrection Corrected = CorrectTypo(
1163 Id, LookupOrdinaryName, CurScope, nullptr,
1164 llvm::make_unique<VarDeclFilterCCC>(*this), CTK_ErrorRecovery)) {
Richard Smithf9b15102013-08-17 00:46:16 +00001165 diagnoseTypo(Corrected,
Alexander Musmancb7f9c42014-05-15 13:04:49 +00001166 PDiag(Lookup.empty()
1167 ? diag::err_undeclared_var_use_suggest
1168 : diag::err_omp_expected_var_arg_suggest)
1169 << Id.getName());
Richard Smithf9b15102013-08-17 00:46:16 +00001170 VD = Corrected.getCorrectionDeclAs<VarDecl>();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001171 } else {
Richard Smithf9b15102013-08-17 00:46:16 +00001172 Diag(Id.getLoc(), Lookup.empty() ? diag::err_undeclared_var_use
1173 : diag::err_omp_expected_var_arg)
1174 << Id.getName();
1175 return ExprError();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001176 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001177 } else {
1178 if (!(VD = Lookup.getAsSingle<VarDecl>())) {
Alexey Bataeved09d242014-05-28 05:53:51 +00001179 Diag(Id.getLoc(), diag::err_omp_expected_var_arg) << Id.getName();
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001180 Diag(Lookup.getFoundDecl()->getLocation(), diag::note_declared_at);
1181 return ExprError();
1182 }
1183 }
1184 Lookup.suppressDiagnostics();
1185
1186 // OpenMP [2.9.2, Syntax, C/C++]
1187 // Variables must be file-scope, namespace-scope, or static block-scope.
1188 if (!VD->hasGlobalStorage()) {
1189 Diag(Id.getLoc(), diag::err_omp_global_var_arg)
Alexey Bataeved09d242014-05-28 05:53:51 +00001190 << getOpenMPDirectiveName(OMPD_threadprivate) << !VD->isStaticLocal();
1191 bool IsDecl =
1192 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001193 Diag(VD->getLocation(),
Alexey Bataeved09d242014-05-28 05:53:51 +00001194 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1195 << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001196 return ExprError();
1197 }
1198
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001199 VarDecl *CanonicalVD = VD->getCanonicalDecl();
1200 NamedDecl *ND = cast<NamedDecl>(CanonicalVD);
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001201 // OpenMP [2.9.2, Restrictions, C/C++, p.2]
1202 // A threadprivate directive for file-scope variables must appear outside
1203 // any definition or declaration.
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001204 if (CanonicalVD->getDeclContext()->isTranslationUnit() &&
1205 !getCurLexicalContext()->isTranslationUnit()) {
1206 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +00001207 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
1208 bool IsDecl =
1209 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1210 Diag(VD->getLocation(),
1211 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1212 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001213 return ExprError();
1214 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001215 // OpenMP [2.9.2, Restrictions, C/C++, p.3]
1216 // A threadprivate directive for static class member variables must appear
1217 // in the class definition, in the same scope in which the member
1218 // variables are declared.
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001219 if (CanonicalVD->isStaticDataMember() &&
1220 !CanonicalVD->getDeclContext()->Equals(getCurLexicalContext())) {
1221 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +00001222 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
1223 bool IsDecl =
1224 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1225 Diag(VD->getLocation(),
1226 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1227 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001228 return ExprError();
1229 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001230 // OpenMP [2.9.2, Restrictions, C/C++, p.4]
1231 // A threadprivate directive for namespace-scope variables must appear
1232 // outside any definition or declaration other than the namespace
1233 // definition itself.
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001234 if (CanonicalVD->getDeclContext()->isNamespace() &&
1235 (!getCurLexicalContext()->isFileContext() ||
1236 !getCurLexicalContext()->Encloses(CanonicalVD->getDeclContext()))) {
1237 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +00001238 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
1239 bool IsDecl =
1240 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1241 Diag(VD->getLocation(),
1242 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1243 << VD;
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001244 return ExprError();
1245 }
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001246 // OpenMP [2.9.2, Restrictions, C/C++, p.6]
1247 // A threadprivate directive for static block-scope variables must appear
1248 // in the scope of the variable and not in a nested scope.
Alexey Bataev7d2960b2013-09-26 03:24:06 +00001249 if (CanonicalVD->isStaticLocal() && CurScope &&
1250 !isDeclInScope(ND, getCurLexicalContext(), CurScope)) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001251 Diag(Id.getLoc(), diag::err_omp_var_scope)
Alexey Bataeved09d242014-05-28 05:53:51 +00001252 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
1253 bool IsDecl =
1254 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1255 Diag(VD->getLocation(),
1256 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1257 << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001258 return ExprError();
1259 }
1260
1261 // OpenMP [2.9.2, Restrictions, C/C++, p.2-6]
1262 // A threadprivate directive must lexically precede all references to any
1263 // of the variables in its list.
Alexey Bataev6ddfe1a2015-04-16 13:49:42 +00001264 if (VD->isUsed() && !DSAStack->isThreadPrivate(VD)) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001265 Diag(Id.getLoc(), diag::err_omp_var_used)
Alexey Bataeved09d242014-05-28 05:53:51 +00001266 << getOpenMPDirectiveName(OMPD_threadprivate) << VD;
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001267 return ExprError();
1268 }
1269
1270 QualType ExprType = VD->getType().getNonReferenceType();
Alexey Bataev376b4a42016-02-09 09:41:09 +00001271 return DeclRefExpr::Create(Context, NestedNameSpecifierLoc(),
1272 SourceLocation(), VD,
1273 /*RefersToEnclosingVariableOrCapture=*/false,
1274 Id.getLoc(), ExprType, VK_LValue);
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001275}
1276
Alexey Bataeved09d242014-05-28 05:53:51 +00001277Sema::DeclGroupPtrTy
1278Sema::ActOnOpenMPThreadprivateDirective(SourceLocation Loc,
1279 ArrayRef<Expr *> VarList) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001280 if (OMPThreadPrivateDecl *D = CheckOMPThreadPrivateDecl(Loc, VarList)) {
Alexey Bataeva769e072013-03-22 06:34:35 +00001281 CurContext->addDecl(D);
1282 return DeclGroupPtrTy::make(DeclGroupRef(D));
1283 }
David Blaikie0403cb12016-01-15 23:43:25 +00001284 return nullptr;
Alexey Bataeva769e072013-03-22 06:34:35 +00001285}
1286
Alexey Bataev18b92ee2014-05-28 07:40:25 +00001287namespace {
1288class LocalVarRefChecker : public ConstStmtVisitor<LocalVarRefChecker, bool> {
1289 Sema &SemaRef;
1290
1291public:
1292 bool VisitDeclRefExpr(const DeclRefExpr *E) {
1293 if (auto VD = dyn_cast<VarDecl>(E->getDecl())) {
1294 if (VD->hasLocalStorage()) {
1295 SemaRef.Diag(E->getLocStart(),
1296 diag::err_omp_local_var_in_threadprivate_init)
1297 << E->getSourceRange();
1298 SemaRef.Diag(VD->getLocation(), diag::note_defined_here)
1299 << VD << VD->getSourceRange();
1300 return true;
1301 }
1302 }
1303 return false;
1304 }
1305 bool VisitStmt(const Stmt *S) {
1306 for (auto Child : S->children()) {
1307 if (Child && Visit(Child))
1308 return true;
1309 }
1310 return false;
1311 }
Alexey Bataev23b69422014-06-18 07:08:49 +00001312 explicit LocalVarRefChecker(Sema &SemaRef) : SemaRef(SemaRef) {}
Alexey Bataev18b92ee2014-05-28 07:40:25 +00001313};
1314} // namespace
1315
Alexey Bataeved09d242014-05-28 05:53:51 +00001316OMPThreadPrivateDecl *
1317Sema::CheckOMPThreadPrivateDecl(SourceLocation Loc, ArrayRef<Expr *> VarList) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001318 SmallVector<Expr *, 8> Vars;
Alexey Bataeved09d242014-05-28 05:53:51 +00001319 for (auto &RefExpr : VarList) {
1320 DeclRefExpr *DE = cast<DeclRefExpr>(RefExpr);
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001321 VarDecl *VD = cast<VarDecl>(DE->getDecl());
1322 SourceLocation ILoc = DE->getExprLoc();
Alexey Bataeva769e072013-03-22 06:34:35 +00001323
Alexey Bataev376b4a42016-02-09 09:41:09 +00001324 // Mark variable as used.
1325 VD->setReferenced();
1326 VD->markUsed(Context);
1327
Alexey Bataevf56f98c2015-04-16 05:39:01 +00001328 QualType QType = VD->getType();
1329 if (QType->isDependentType() || QType->isInstantiationDependentType()) {
1330 // It will be analyzed later.
1331 Vars.push_back(DE);
1332 continue;
1333 }
1334
Alexey Bataeva769e072013-03-22 06:34:35 +00001335 // OpenMP [2.9.2, Restrictions, C/C++, p.10]
1336 // A threadprivate variable must not have an incomplete type.
1337 if (RequireCompleteType(ILoc, VD->getType(),
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001338 diag::err_omp_threadprivate_incomplete_type)) {
Alexey Bataeva769e072013-03-22 06:34:35 +00001339 continue;
1340 }
1341
1342 // OpenMP [2.9.2, Restrictions, C/C++, p.10]
1343 // A threadprivate variable must not have a reference type.
1344 if (VD->getType()->isReferenceType()) {
1345 Diag(ILoc, diag::err_omp_ref_type_arg)
Alexey Bataeved09d242014-05-28 05:53:51 +00001346 << getOpenMPDirectiveName(OMPD_threadprivate) << VD->getType();
1347 bool IsDecl =
1348 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1349 Diag(VD->getLocation(),
1350 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1351 << VD;
Alexey Bataeva769e072013-03-22 06:34:35 +00001352 continue;
1353 }
1354
Samuel Antaof8b50122015-07-13 22:54:53 +00001355 // Check if this is a TLS variable. If TLS is not being supported, produce
1356 // the corresponding diagnostic.
1357 if ((VD->getTLSKind() != VarDecl::TLS_None &&
1358 !(VD->hasAttr<OMPThreadPrivateDeclAttr>() &&
1359 getLangOpts().OpenMPUseTLS &&
1360 getASTContext().getTargetInfo().isTLSSupported())) ||
Alexey Bataev1a8b3f12015-05-06 06:34:55 +00001361 (VD->getStorageClass() == SC_Register && VD->hasAttr<AsmLabelAttr>() &&
1362 !VD->isLocalVarDecl())) {
Alexey Bataev26a39242015-01-13 03:35:30 +00001363 Diag(ILoc, diag::err_omp_var_thread_local)
1364 << VD << ((VD->getTLSKind() != VarDecl::TLS_None) ? 0 : 1);
Alexey Bataeved09d242014-05-28 05:53:51 +00001365 bool IsDecl =
1366 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
1367 Diag(VD->getLocation(),
1368 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
1369 << VD;
Alexey Bataeva769e072013-03-22 06:34:35 +00001370 continue;
1371 }
1372
Alexey Bataev18b92ee2014-05-28 07:40:25 +00001373 // Check if initial value of threadprivate variable reference variable with
1374 // local storage (it is not supported by runtime).
1375 if (auto Init = VD->getAnyInitializer()) {
1376 LocalVarRefChecker Checker(*this);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001377 if (Checker.Visit(Init))
1378 continue;
Alexey Bataev18b92ee2014-05-28 07:40:25 +00001379 }
1380
Alexey Bataeved09d242014-05-28 05:53:51 +00001381 Vars.push_back(RefExpr);
Alexey Bataevd178ad42014-03-07 08:03:37 +00001382 DSAStack->addDSA(VD, DE, OMPC_threadprivate);
Alexey Bataev97720002014-11-11 04:05:39 +00001383 VD->addAttr(OMPThreadPrivateDeclAttr::CreateImplicit(
1384 Context, SourceRange(Loc, Loc)));
1385 if (auto *ML = Context.getASTMutationListener())
1386 ML->DeclarationMarkedOpenMPThreadPrivate(VD);
Alexey Bataeva769e072013-03-22 06:34:35 +00001387 }
Alexander Musmancb7f9c42014-05-15 13:04:49 +00001388 OMPThreadPrivateDecl *D = nullptr;
Alexey Bataevec3da872014-01-31 05:15:34 +00001389 if (!Vars.empty()) {
1390 D = OMPThreadPrivateDecl::Create(Context, getCurLexicalContext(), Loc,
1391 Vars);
1392 D->setAccess(AS_public);
1393 }
1394 return D;
Alexey Bataeva769e072013-03-22 06:34:35 +00001395}
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00001396
Alexey Bataev7ff55242014-06-19 09:13:45 +00001397static void ReportOriginalDSA(Sema &SemaRef, DSAStackTy *Stack,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001398 const ValueDecl *D, DSAStackTy::DSAVarData DVar,
Alexey Bataev7ff55242014-06-19 09:13:45 +00001399 bool IsLoopIterVar = false) {
1400 if (DVar.RefExpr) {
1401 SemaRef.Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_explicit_dsa)
1402 << getOpenMPClauseName(DVar.CKind);
1403 return;
1404 }
1405 enum {
1406 PDSA_StaticMemberShared,
1407 PDSA_StaticLocalVarShared,
1408 PDSA_LoopIterVarPrivate,
1409 PDSA_LoopIterVarLinear,
1410 PDSA_LoopIterVarLastprivate,
1411 PDSA_ConstVarShared,
1412 PDSA_GlobalVarShared,
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001413 PDSA_TaskVarFirstprivate,
Alexey Bataevbae9a792014-06-27 10:37:06 +00001414 PDSA_LocalVarPrivate,
1415 PDSA_Implicit
1416 } Reason = PDSA_Implicit;
Alexey Bataev7ff55242014-06-19 09:13:45 +00001417 bool ReportHint = false;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001418 auto ReportLoc = D->getLocation();
1419 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataev7ff55242014-06-19 09:13:45 +00001420 if (IsLoopIterVar) {
1421 if (DVar.CKind == OMPC_private)
1422 Reason = PDSA_LoopIterVarPrivate;
1423 else if (DVar.CKind == OMPC_lastprivate)
1424 Reason = PDSA_LoopIterVarLastprivate;
1425 else
1426 Reason = PDSA_LoopIterVarLinear;
Alexey Bataev35aaee62016-04-13 13:36:48 +00001427 } else if (isOpenMPTaskingDirective(DVar.DKind) &&
1428 DVar.CKind == OMPC_firstprivate) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001429 Reason = PDSA_TaskVarFirstprivate;
1430 ReportLoc = DVar.ImplicitDSALoc;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001431 } else if (VD && VD->isStaticLocal())
Alexey Bataev7ff55242014-06-19 09:13:45 +00001432 Reason = PDSA_StaticLocalVarShared;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001433 else if (VD && VD->isStaticDataMember())
Alexey Bataev7ff55242014-06-19 09:13:45 +00001434 Reason = PDSA_StaticMemberShared;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001435 else if (VD && VD->isFileVarDecl())
Alexey Bataev7ff55242014-06-19 09:13:45 +00001436 Reason = PDSA_GlobalVarShared;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001437 else if (D->getType().isConstant(SemaRef.getASTContext()))
Alexey Bataev7ff55242014-06-19 09:13:45 +00001438 Reason = PDSA_ConstVarShared;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001439 else if (VD && VD->isLocalVarDecl() && DVar.CKind == OMPC_private) {
Alexey Bataev7ff55242014-06-19 09:13:45 +00001440 ReportHint = true;
1441 Reason = PDSA_LocalVarPrivate;
1442 }
Alexey Bataevbae9a792014-06-27 10:37:06 +00001443 if (Reason != PDSA_Implicit) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001444 SemaRef.Diag(ReportLoc, diag::note_omp_predetermined_dsa)
Alexey Bataevbae9a792014-06-27 10:37:06 +00001445 << Reason << ReportHint
1446 << getOpenMPDirectiveName(Stack->getCurrentDirective());
1447 } else if (DVar.ImplicitDSALoc.isValid()) {
1448 SemaRef.Diag(DVar.ImplicitDSALoc, diag::note_omp_implicit_dsa)
1449 << getOpenMPClauseName(DVar.CKind);
1450 }
Alexey Bataev7ff55242014-06-19 09:13:45 +00001451}
1452
Alexey Bataev758e55e2013-09-06 18:03:48 +00001453namespace {
1454class DSAAttrChecker : public StmtVisitor<DSAAttrChecker, void> {
1455 DSAStackTy *Stack;
Alexey Bataev7ff55242014-06-19 09:13:45 +00001456 Sema &SemaRef;
Alexey Bataev758e55e2013-09-06 18:03:48 +00001457 bool ErrorFound;
1458 CapturedStmt *CS;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001459 llvm::SmallVector<Expr *, 8> ImplicitFirstprivate;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001460 llvm::DenseMap<ValueDecl *, Expr *> VarsWithInheritedDSA;
Alexey Bataeved09d242014-05-28 05:53:51 +00001461
Alexey Bataev758e55e2013-09-06 18:03:48 +00001462public:
1463 void VisitDeclRefExpr(DeclRefExpr *E) {
Alexey Bataev07b79c22016-04-29 09:56:11 +00001464 if (E->isTypeDependent() || E->isValueDependent() ||
1465 E->containsUnexpandedParameterPack() || E->isInstantiationDependent())
1466 return;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001467 if (auto *VD = dyn_cast<VarDecl>(E->getDecl())) {
Alexey Bataev758e55e2013-09-06 18:03:48 +00001468 // Skip internally declared variables.
Alexey Bataeved09d242014-05-28 05:53:51 +00001469 if (VD->isLocalVarDecl() && !CS->capturesVariable(VD))
1470 return;
Alexey Bataev758e55e2013-09-06 18:03:48 +00001471
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001472 auto DVar = Stack->getTopDSA(VD, false);
1473 // Check if the variable has explicit DSA set and stop analysis if it so.
1474 if (DVar.RefExpr) return;
Alexey Bataev758e55e2013-09-06 18:03:48 +00001475
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001476 auto ELoc = E->getExprLoc();
1477 auto DKind = Stack->getCurrentDirective();
Alexey Bataev758e55e2013-09-06 18:03:48 +00001478 // The default(none) clause requires that each variable that is referenced
1479 // in the construct, and does not have a predetermined data-sharing
1480 // attribute, must have its data-sharing attribute explicitly determined
1481 // by being listed in a data-sharing attribute clause.
1482 if (DVar.CKind == OMPC_unknown && Stack->getDefaultDSA() == DSA_none &&
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001483 isParallelOrTaskRegion(DKind) &&
Alexey Bataev4acb8592014-07-07 13:01:15 +00001484 VarsWithInheritedDSA.count(VD) == 0) {
1485 VarsWithInheritedDSA[VD] = E;
Alexey Bataev758e55e2013-09-06 18:03:48 +00001486 return;
1487 }
1488
1489 // OpenMP [2.9.3.6, Restrictions, p.2]
1490 // A list item that appears in a reduction clause of the innermost
1491 // enclosing worksharing or parallel construct may not be accessed in an
1492 // explicit task.
Alexey Bataev7ace49d2016-05-17 08:55:33 +00001493 DVar = Stack->hasInnermostDSA(
1494 VD, [](OpenMPClauseKind C) -> bool { return C == OMPC_reduction; },
1495 [](OpenMPDirectiveKind K) -> bool {
1496 return isOpenMPParallelDirective(K) ||
1497 isOpenMPWorksharingDirective(K) || isOpenMPTeamsDirective(K);
1498 },
1499 false);
Alexey Bataev35aaee62016-04-13 13:36:48 +00001500 if (isOpenMPTaskingDirective(DKind) && DVar.CKind == OMPC_reduction) {
Alexey Bataevc5e02582014-06-16 07:08:35 +00001501 ErrorFound = true;
Alexey Bataev7ff55242014-06-19 09:13:45 +00001502 SemaRef.Diag(ELoc, diag::err_omp_reduction_in_task);
1503 ReportOriginalDSA(SemaRef, Stack, VD, DVar);
Alexey Bataevc5e02582014-06-16 07:08:35 +00001504 return;
1505 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001506
1507 // Define implicit data-sharing attributes for task.
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001508 DVar = Stack->getImplicitDSA(VD, false);
Alexey Bataev35aaee62016-04-13 13:36:48 +00001509 if (isOpenMPTaskingDirective(DKind) && DVar.CKind != OMPC_shared &&
1510 !Stack->isLoopControlVariable(VD).first)
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001511 ImplicitFirstprivate.push_back(E);
Alexey Bataev758e55e2013-09-06 18:03:48 +00001512 }
1513 }
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001514 void VisitMemberExpr(MemberExpr *E) {
Alexey Bataev07b79c22016-04-29 09:56:11 +00001515 if (E->isTypeDependent() || E->isValueDependent() ||
1516 E->containsUnexpandedParameterPack() || E->isInstantiationDependent())
1517 return;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001518 if (isa<CXXThisExpr>(E->getBase()->IgnoreParens())) {
1519 if (auto *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) {
1520 auto DVar = Stack->getTopDSA(FD, false);
1521 // Check if the variable has explicit DSA set and stop analysis if it
1522 // so.
1523 if (DVar.RefExpr)
1524 return;
1525
1526 auto ELoc = E->getExprLoc();
1527 auto DKind = Stack->getCurrentDirective();
1528 // OpenMP [2.9.3.6, Restrictions, p.2]
1529 // A list item that appears in a reduction clause of the innermost
1530 // enclosing worksharing or parallel construct may not be accessed in
Alexey Bataevd985eda2016-02-10 11:29:16 +00001531 // an explicit task.
Alexey Bataev7ace49d2016-05-17 08:55:33 +00001532 DVar = Stack->hasInnermostDSA(
1533 FD, [](OpenMPClauseKind C) -> bool { return C == OMPC_reduction; },
1534 [](OpenMPDirectiveKind K) -> bool {
1535 return isOpenMPParallelDirective(K) ||
1536 isOpenMPWorksharingDirective(K) ||
1537 isOpenMPTeamsDirective(K);
1538 },
1539 false);
Alexey Bataev35aaee62016-04-13 13:36:48 +00001540 if (isOpenMPTaskingDirective(DKind) && DVar.CKind == OMPC_reduction) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001541 ErrorFound = true;
1542 SemaRef.Diag(ELoc, diag::err_omp_reduction_in_task);
1543 ReportOriginalDSA(SemaRef, Stack, FD, DVar);
1544 return;
1545 }
1546
1547 // Define implicit data-sharing attributes for task.
1548 DVar = Stack->getImplicitDSA(FD, false);
Alexey Bataev35aaee62016-04-13 13:36:48 +00001549 if (isOpenMPTaskingDirective(DKind) && DVar.CKind != OMPC_shared &&
1550 !Stack->isLoopControlVariable(FD).first)
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001551 ImplicitFirstprivate.push_back(E);
1552 }
1553 }
1554 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001555 void VisitOMPExecutableDirective(OMPExecutableDirective *S) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001556 for (auto *C : S->clauses()) {
1557 // Skip analysis of arguments of implicitly defined firstprivate clause
1558 // for task directives.
1559 if (C && (!isa<OMPFirstprivateClause>(C) || C->getLocStart().isValid()))
1560 for (auto *CC : C->children()) {
1561 if (CC)
1562 Visit(CC);
1563 }
1564 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001565 }
1566 void VisitStmt(Stmt *S) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001567 for (auto *C : S->children()) {
1568 if (C && !isa<OMPExecutableDirective>(C))
1569 Visit(C);
1570 }
Alexey Bataeved09d242014-05-28 05:53:51 +00001571 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001572
1573 bool isErrorFound() { return ErrorFound; }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00001574 ArrayRef<Expr *> getImplicitFirstprivate() { return ImplicitFirstprivate; }
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00001575 llvm::DenseMap<ValueDecl *, Expr *> &getVarsWithInheritedDSA() {
Alexey Bataev4acb8592014-07-07 13:01:15 +00001576 return VarsWithInheritedDSA;
1577 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00001578
Alexey Bataev7ff55242014-06-19 09:13:45 +00001579 DSAAttrChecker(DSAStackTy *S, Sema &SemaRef, CapturedStmt *CS)
1580 : Stack(S), SemaRef(SemaRef), ErrorFound(false), CS(CS) {}
Alexey Bataev758e55e2013-09-06 18:03:48 +00001581};
Alexey Bataeved09d242014-05-28 05:53:51 +00001582} // namespace
Alexey Bataev758e55e2013-09-06 18:03:48 +00001583
Alexey Bataevbae9a792014-06-27 10:37:06 +00001584void Sema::ActOnOpenMPRegionStart(OpenMPDirectiveKind DKind, Scope *CurScope) {
Alexey Bataev9959db52014-05-06 10:08:46 +00001585 switch (DKind) {
Kelvin Li70a12c52016-07-13 21:51:49 +00001586 case OMPD_parallel:
1587 case OMPD_parallel_for:
1588 case OMPD_parallel_for_simd:
1589 case OMPD_parallel_sections:
1590 case OMPD_teams: {
Alexey Bataev9959db52014-05-06 10:08:46 +00001591 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
Alexey Bataev2377fe92015-09-10 08:12:02 +00001592 QualType KmpInt32PtrTy =
1593 Context.getPointerType(KmpInt32Ty).withConst().withRestrict();
Alexey Bataevdf9b1592014-06-25 04:09:13 +00001594 Sema::CapturedParamNameType Params[] = {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001595 std::make_pair(".global_tid.", KmpInt32PtrTy),
1596 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1597 std::make_pair(StringRef(), QualType()) // __context with shared vars
Alexey Bataev9959db52014-05-06 10:08:46 +00001598 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001599 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1600 Params);
Alexey Bataev9959db52014-05-06 10:08:46 +00001601 break;
1602 }
Kelvin Li70a12c52016-07-13 21:51:49 +00001603 case OMPD_simd:
1604 case OMPD_for:
1605 case OMPD_for_simd:
1606 case OMPD_sections:
1607 case OMPD_section:
1608 case OMPD_single:
1609 case OMPD_master:
1610 case OMPD_critical:
Kelvin Lia579b912016-07-14 02:54:56 +00001611 case OMPD_taskgroup:
1612 case OMPD_distribute:
Kelvin Li70a12c52016-07-13 21:51:49 +00001613 case OMPD_ordered:
1614 case OMPD_atomic:
1615 case OMPD_target_data:
1616 case OMPD_target:
1617 case OMPD_target_parallel:
1618 case OMPD_target_parallel_for:
Kelvin Lia579b912016-07-14 02:54:56 +00001619 case OMPD_target_parallel_for_simd: {
Alexey Bataevdf9b1592014-06-25 04:09:13 +00001620 Sema::CapturedParamNameType Params[] = {
Alexey Bataevf29276e2014-06-18 04:14:57 +00001621 std::make_pair(StringRef(), QualType()) // __context with shared vars
1622 };
Alexey Bataevbae9a792014-06-27 10:37:06 +00001623 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1624 Params);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001625 break;
1626 }
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001627 case OMPD_task: {
Alexey Bataev62b63b12015-03-10 07:28:44 +00001628 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00001629 QualType Args[] = {Context.VoidPtrTy.withConst().withRestrict()};
1630 FunctionProtoType::ExtProtoInfo EPI;
1631 EPI.Variadic = true;
1632 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001633 Sema::CapturedParamNameType Params[] = {
Alexey Bataev62b63b12015-03-10 07:28:44 +00001634 std::make_pair(".global_tid.", KmpInt32Ty),
Alexey Bataev48591dd2016-04-20 04:01:36 +00001635 std::make_pair(".part_id.", Context.getPointerType(KmpInt32Ty)),
1636 std::make_pair(".privates.", Context.VoidPtrTy.withConst()),
1637 std::make_pair(".copy_fn.",
1638 Context.getPointerType(CopyFnType).withConst()),
1639 std::make_pair(".task_t.", Context.VoidPtrTy.withConst()),
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001640 std::make_pair(StringRef(), QualType()) // __context with shared vars
1641 };
1642 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1643 Params);
Alexey Bataev62b63b12015-03-10 07:28:44 +00001644 // Mark this captured region as inlined, because we don't use outlined
1645 // function directly.
1646 getCurCapturedRegion()->TheCapturedDecl->addAttr(
1647 AlwaysInlineAttr::CreateImplicit(
1648 Context, AlwaysInlineAttr::Keyword_forceinline, SourceRange()));
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001649 break;
1650 }
Alexey Bataev1e73ef32016-04-28 12:14:51 +00001651 case OMPD_taskloop:
1652 case OMPD_taskloop_simd: {
Alexey Bataev7292c292016-04-25 12:22:29 +00001653 QualType KmpInt32Ty =
1654 Context.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1);
1655 QualType KmpUInt64Ty =
1656 Context.getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/0);
1657 QualType KmpInt64Ty =
1658 Context.getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/1);
1659 QualType Args[] = {Context.VoidPtrTy.withConst().withRestrict()};
1660 FunctionProtoType::ExtProtoInfo EPI;
1661 EPI.Variadic = true;
1662 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
Alexey Bataev49f6e782015-12-01 04:18:41 +00001663 Sema::CapturedParamNameType Params[] = {
Alexey Bataev7292c292016-04-25 12:22:29 +00001664 std::make_pair(".global_tid.", KmpInt32Ty),
1665 std::make_pair(".part_id.", Context.getPointerType(KmpInt32Ty)),
1666 std::make_pair(".privates.",
1667 Context.VoidPtrTy.withConst().withRestrict()),
1668 std::make_pair(
1669 ".copy_fn.",
1670 Context.getPointerType(CopyFnType).withConst().withRestrict()),
1671 std::make_pair(".task_t.", Context.VoidPtrTy.withConst()),
1672 std::make_pair(".lb.", KmpUInt64Ty),
1673 std::make_pair(".ub.", KmpUInt64Ty), std::make_pair(".st.", KmpInt64Ty),
1674 std::make_pair(".liter.", KmpInt32Ty),
Alexey Bataev49f6e782015-12-01 04:18:41 +00001675 std::make_pair(StringRef(), QualType()) // __context with shared vars
1676 };
1677 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1678 Params);
Alexey Bataev7292c292016-04-25 12:22:29 +00001679 // Mark this captured region as inlined, because we don't use outlined
1680 // function directly.
1681 getCurCapturedRegion()->TheCapturedDecl->addAttr(
1682 AlwaysInlineAttr::CreateImplicit(
1683 Context, AlwaysInlineAttr::Keyword_forceinline, SourceRange()));
Alexey Bataev49f6e782015-12-01 04:18:41 +00001684 break;
1685 }
Kelvin Li4a39add2016-07-05 05:00:15 +00001686 case OMPD_distribute_parallel_for_simd:
Kelvin Li787f3fc2016-07-06 04:45:38 +00001687 case OMPD_distribute_simd:
Carlo Bertolli9925f152016-06-27 14:55:37 +00001688 case OMPD_distribute_parallel_for: {
1689 QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
1690 QualType KmpInt32PtrTy =
1691 Context.getPointerType(KmpInt32Ty).withConst().withRestrict();
1692 Sema::CapturedParamNameType Params[] = {
1693 std::make_pair(".global_tid.", KmpInt32PtrTy),
1694 std::make_pair(".bound_tid.", KmpInt32PtrTy),
1695 std::make_pair(".previous.lb.", Context.getSizeType()),
1696 std::make_pair(".previous.ub.", Context.getSizeType()),
1697 std::make_pair(StringRef(), QualType()) // __context with shared vars
1698 };
1699 ActOnCapturedRegionStart(DSAStack->getConstructLoc(), CurScope, CR_OpenMP,
1700 Params);
1701 break;
1702 }
Alexey Bataev9959db52014-05-06 10:08:46 +00001703 case OMPD_threadprivate:
Alexey Bataevee9af452014-11-21 11:33:46 +00001704 case OMPD_taskyield:
1705 case OMPD_barrier:
1706 case OMPD_taskwait:
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001707 case OMPD_cancellation_point:
Alexey Bataev80909872015-07-02 11:25:17 +00001708 case OMPD_cancel:
Alexey Bataevee9af452014-11-21 11:33:46 +00001709 case OMPD_flush:
Samuel Antaodf67fc42016-01-19 19:15:56 +00001710 case OMPD_target_enter_data:
Samuel Antao72590762016-01-19 20:04:50 +00001711 case OMPD_target_exit_data:
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00001712 case OMPD_declare_reduction:
Alexey Bataev587e1de2016-03-30 10:43:55 +00001713 case OMPD_declare_simd:
Dmitry Polukhin0b0da292016-04-06 11:38:59 +00001714 case OMPD_declare_target:
1715 case OMPD_end_declare_target:
Samuel Antao686c70c2016-05-26 17:30:50 +00001716 case OMPD_target_update:
Alexey Bataev9959db52014-05-06 10:08:46 +00001717 llvm_unreachable("OpenMP Directive is not allowed");
1718 case OMPD_unknown:
Alexey Bataev9959db52014-05-06 10:08:46 +00001719 llvm_unreachable("Unknown OpenMP directive");
1720 }
1721}
1722
Alexey Bataev3392d762016-02-16 11:18:12 +00001723static OMPCapturedExprDecl *buildCaptureDecl(Sema &S, IdentifierInfo *Id,
Alexey Bataev5a3af132016-03-29 08:58:54 +00001724 Expr *CaptureExpr, bool WithInit,
1725 bool AsExpression) {
Alexey Bataev2bbf7212016-03-03 03:52:24 +00001726 assert(CaptureExpr);
Alexey Bataev4244be22016-02-11 05:35:55 +00001727 ASTContext &C = S.getASTContext();
Alexey Bataev5a3af132016-03-29 08:58:54 +00001728 Expr *Init = AsExpression ? CaptureExpr : CaptureExpr->IgnoreImpCasts();
Alexey Bataev4244be22016-02-11 05:35:55 +00001729 QualType Ty = Init->getType();
1730 if (CaptureExpr->getObjectKind() == OK_Ordinary && CaptureExpr->isGLValue()) {
1731 if (S.getLangOpts().CPlusPlus)
1732 Ty = C.getLValueReferenceType(Ty);
1733 else {
1734 Ty = C.getPointerType(Ty);
1735 ExprResult Res =
1736 S.CreateBuiltinUnaryOp(CaptureExpr->getExprLoc(), UO_AddrOf, Init);
1737 if (!Res.isUsable())
1738 return nullptr;
1739 Init = Res.get();
1740 }
Alexey Bataev61205072016-03-02 04:57:40 +00001741 WithInit = true;
Alexey Bataev4244be22016-02-11 05:35:55 +00001742 }
1743 auto *CED = OMPCapturedExprDecl::Create(C, S.CurContext, Id, Ty);
Alexey Bataev2bbf7212016-03-03 03:52:24 +00001744 if (!WithInit)
1745 CED->addAttr(OMPCaptureNoInitAttr::CreateImplicit(C, SourceRange()));
Alexey Bataev4244be22016-02-11 05:35:55 +00001746 S.CurContext->addHiddenDecl(CED);
Alexey Bataev2bbf7212016-03-03 03:52:24 +00001747 S.AddInitializerToDecl(CED, Init, /*DirectInit=*/false,
1748 /*TypeMayContainAuto=*/true);
Alexey Bataev3392d762016-02-16 11:18:12 +00001749 return CED;
1750}
1751
Alexey Bataev61205072016-03-02 04:57:40 +00001752static DeclRefExpr *buildCapture(Sema &S, ValueDecl *D, Expr *CaptureExpr,
1753 bool WithInit) {
Alexey Bataevb7a34b62016-02-25 03:59:29 +00001754 OMPCapturedExprDecl *CD;
1755 if (auto *VD = S.IsOpenMPCapturedDecl(D))
1756 CD = cast<OMPCapturedExprDecl>(VD);
1757 else
Alexey Bataev5a3af132016-03-29 08:58:54 +00001758 CD = buildCaptureDecl(S, D->getIdentifier(), CaptureExpr, WithInit,
1759 /*AsExpression=*/false);
Alexey Bataev3392d762016-02-16 11:18:12 +00001760 return buildDeclRefExpr(S, CD, CD->getType().getNonReferenceType(),
Alexey Bataev1efd1662016-03-29 10:59:56 +00001761 CaptureExpr->getExprLoc());
Alexey Bataev3392d762016-02-16 11:18:12 +00001762}
1763
Alexey Bataev5a3af132016-03-29 08:58:54 +00001764static ExprResult buildCapture(Sema &S, Expr *CaptureExpr, DeclRefExpr *&Ref) {
1765 if (!Ref) {
1766 auto *CD =
1767 buildCaptureDecl(S, &S.getASTContext().Idents.get(".capture_expr."),
1768 CaptureExpr, /*WithInit=*/true, /*AsExpression=*/true);
1769 Ref = buildDeclRefExpr(S, CD, CD->getType().getNonReferenceType(),
1770 CaptureExpr->getExprLoc());
1771 }
1772 ExprResult Res = Ref;
1773 if (!S.getLangOpts().CPlusPlus &&
1774 CaptureExpr->getObjectKind() == OK_Ordinary && CaptureExpr->isGLValue() &&
1775 Ref->getType()->isPointerType())
1776 Res = S.CreateBuiltinUnaryOp(CaptureExpr->getExprLoc(), UO_Deref, Ref);
1777 if (!Res.isUsable())
1778 return ExprError();
1779 return CaptureExpr->isGLValue() ? Res : S.DefaultLvalueConversion(Res.get());
Alexey Bataev4244be22016-02-11 05:35:55 +00001780}
1781
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001782StmtResult Sema::ActOnOpenMPRegionEnd(StmtResult S,
1783 ArrayRef<OMPClause *> Clauses) {
1784 if (!S.isUsable()) {
1785 ActOnCapturedRegionError();
1786 return StmtError();
1787 }
Alexey Bataev993d2802015-12-28 06:23:08 +00001788
1789 OMPOrderedClause *OC = nullptr;
Alexey Bataev6402bca2015-12-28 07:25:51 +00001790 OMPScheduleClause *SC = nullptr;
Alexey Bataev993d2802015-12-28 06:23:08 +00001791 SmallVector<OMPLinearClause *, 4> LCs;
Alexey Bataev040d5402015-05-12 08:35:28 +00001792 // This is required for proper codegen.
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001793 for (auto *Clause : Clauses) {
Alexey Bataev16dc7b62015-05-20 03:46:04 +00001794 if (isOpenMPPrivate(Clause->getClauseKind()) ||
Samuel Antao9c75cfe2015-07-27 16:38:06 +00001795 Clause->getClauseKind() == OMPC_copyprivate ||
1796 (getLangOpts().OpenMPUseTLS &&
1797 getASTContext().getTargetInfo().isTLSSupported() &&
1798 Clause->getClauseKind() == OMPC_copyin)) {
1799 DSAStack->setForceVarCapturing(Clause->getClauseKind() == OMPC_copyin);
Alexey Bataev040d5402015-05-12 08:35:28 +00001800 // Mark all variables in private list clauses as used in inner region.
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001801 for (auto *VarRef : Clause->children()) {
1802 if (auto *E = cast_or_null<Expr>(VarRef)) {
Alexey Bataev8bf6b3e2015-04-02 13:07:08 +00001803 MarkDeclarationsReferencedInExpr(E);
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001804 }
1805 }
Samuel Antao9c75cfe2015-07-27 16:38:06 +00001806 DSAStack->setForceVarCapturing(/*V=*/false);
Alexey Bataev3392d762016-02-16 11:18:12 +00001807 } else if (isParallelOrTaskRegion(DSAStack->getCurrentDirective())) {
Alexey Bataev040d5402015-05-12 08:35:28 +00001808 // Mark all variables in private list clauses as used in inner region.
1809 // Required for proper codegen of combined directives.
1810 // TODO: add processing for other clauses.
Alexey Bataev3392d762016-02-16 11:18:12 +00001811 if (auto *C = OMPClauseWithPreInit::get(Clause)) {
Alexey Bataev005248a2016-02-25 05:25:57 +00001812 if (auto *DS = cast_or_null<DeclStmt>(C->getPreInitStmt())) {
1813 for (auto *D : DS->decls())
Alexey Bataev3392d762016-02-16 11:18:12 +00001814 MarkVariableReferenced(D->getLocation(), cast<VarDecl>(D));
1815 }
Alexey Bataev4244be22016-02-11 05:35:55 +00001816 }
Alexey Bataev005248a2016-02-25 05:25:57 +00001817 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) {
1818 if (auto *E = C->getPostUpdateExpr())
1819 MarkDeclarationsReferencedInExpr(E);
1820 }
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001821 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00001822 if (Clause->getClauseKind() == OMPC_schedule)
1823 SC = cast<OMPScheduleClause>(Clause);
1824 else if (Clause->getClauseKind() == OMPC_ordered)
Alexey Bataev993d2802015-12-28 06:23:08 +00001825 OC = cast<OMPOrderedClause>(Clause);
1826 else if (Clause->getClauseKind() == OMPC_linear)
1827 LCs.push_back(cast<OMPLinearClause>(Clause));
1828 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00001829 bool ErrorFound = false;
1830 // OpenMP, 2.7.1 Loop Construct, Restrictions
1831 // The nonmonotonic modifier cannot be specified if an ordered clause is
1832 // specified.
1833 if (SC &&
1834 (SC->getFirstScheduleModifier() == OMPC_SCHEDULE_MODIFIER_nonmonotonic ||
1835 SC->getSecondScheduleModifier() ==
1836 OMPC_SCHEDULE_MODIFIER_nonmonotonic) &&
1837 OC) {
1838 Diag(SC->getFirstScheduleModifier() == OMPC_SCHEDULE_MODIFIER_nonmonotonic
1839 ? SC->getFirstScheduleModifierLoc()
1840 : SC->getSecondScheduleModifierLoc(),
1841 diag::err_omp_schedule_nonmonotonic_ordered)
1842 << SourceRange(OC->getLocStart(), OC->getLocEnd());
1843 ErrorFound = true;
1844 }
Alexey Bataev993d2802015-12-28 06:23:08 +00001845 if (!LCs.empty() && OC && OC->getNumForLoops()) {
1846 for (auto *C : LCs) {
1847 Diag(C->getLocStart(), diag::err_omp_linear_ordered)
1848 << SourceRange(OC->getLocStart(), OC->getLocEnd());
1849 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00001850 ErrorFound = true;
1851 }
Alexey Bataev113438c2015-12-30 12:06:23 +00001852 if (isOpenMPWorksharingDirective(DSAStack->getCurrentDirective()) &&
1853 isOpenMPSimdDirective(DSAStack->getCurrentDirective()) && OC &&
1854 OC->getNumForLoops()) {
1855 Diag(OC->getLocStart(), diag::err_omp_ordered_simd)
1856 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
1857 ErrorFound = true;
1858 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00001859 if (ErrorFound) {
Alexey Bataev993d2802015-12-28 06:23:08 +00001860 ActOnCapturedRegionError();
1861 return StmtError();
Alexey Bataeva8d4a5432015-04-02 07:48:16 +00001862 }
1863 return ActOnCapturedRegionEnd(S.get());
1864}
1865
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001866static bool CheckNestingOfRegions(Sema &SemaRef, DSAStackTy *Stack,
1867 OpenMPDirectiveKind CurrentRegion,
1868 const DeclarationNameInfo &CurrentName,
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001869 OpenMPDirectiveKind CancelRegion,
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001870 SourceLocation StartLoc) {
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001871 // Allowed nesting of constructs
1872 // +------------------+-----------------+------------------------------------+
1873 // | Parent directive | Child directive | Closely (!), No-Closely(+), Both(*)|
1874 // +------------------+-----------------+------------------------------------+
1875 // | parallel | parallel | * |
1876 // | parallel | for | * |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001877 // | parallel | for simd | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001878 // | parallel | master | * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001879 // | parallel | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001880 // | parallel | simd | * |
1881 // | parallel | sections | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001882 // | parallel | section | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001883 // | parallel | single | * |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001884 // | parallel | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001885 // | parallel |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001886 // | parallel |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001887 // | parallel | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001888 // | parallel | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001889 // | parallel | barrier | * |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001890 // | parallel | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001891 // | parallel | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001892 // | parallel | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001893 // | parallel | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001894 // | parallel | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001895 // | parallel | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00001896 // | parallel | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00001897 // | parallel | target parallel | * |
1898 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00001899 // | parallel | target enter | * |
1900 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00001901 // | parallel | target exit | * |
1902 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001903 // | parallel | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001904 // | parallel | cancellation | |
1905 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00001906 // | parallel | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00001907 // | parallel | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00001908 // | parallel | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00001909 // | parallel | distribute | + |
1910 // | parallel | distribute | + |
1911 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00001912 // | parallel | distribute | + |
1913 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00001914 // | parallel | distribute simd | + |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001915 // +------------------+-----------------+------------------------------------+
1916 // | for | parallel | * |
1917 // | for | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001918 // | for | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001919 // | for | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001920 // | for | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001921 // | for | simd | * |
1922 // | for | sections | + |
1923 // | for | section | + |
1924 // | for | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00001925 // | for | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001926 // | for |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001927 // | for |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001928 // | for | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001929 // | for | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001930 // | for | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001931 // | for | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001932 // | for | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001933 // | for | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001934 // | for | ordered | * (if construct is ordered) |
Alexey Bataev0162e452014-07-22 10:10:35 +00001935 // | for | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001936 // | for | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00001937 // | for | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00001938 // | for | target parallel | * |
1939 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00001940 // | for | target enter | * |
1941 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00001942 // | for | target exit | * |
1943 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001944 // | for | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001945 // | for | cancellation | |
1946 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00001947 // | for | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00001948 // | for | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00001949 // | for | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00001950 // | for | distribute | + |
1951 // | for | distribute | + |
1952 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00001953 // | for | distribute | + |
1954 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00001955 // | for | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00001956 // | for | target parallel | + |
1957 // | | for simd | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00001958 // +------------------+-----------------+------------------------------------+
Alexander Musman80c22892014-07-17 08:54:58 +00001959 // | master | parallel | * |
1960 // | master | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00001961 // | master | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00001962 // | master | master | * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001963 // | master | critical | * |
Alexander Musman80c22892014-07-17 08:54:58 +00001964 // | master | simd | * |
1965 // | master | sections | + |
1966 // | master | section | + |
1967 // | master | single | + |
1968 // | master | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00001969 // | master |parallel for simd| * |
Alexander Musman80c22892014-07-17 08:54:58 +00001970 // | master |parallel sections| * |
1971 // | master | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00001972 // | master | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001973 // | master | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00001974 // | master | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001975 // | master | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00001976 // | master | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001977 // | master | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00001978 // | master | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001979 // | master | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00001980 // | master | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00001981 // | master | target parallel | * |
1982 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00001983 // | master | target enter | * |
1984 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00001985 // | master | target exit | * |
1986 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00001987 // | master | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001988 // | master | cancellation | |
1989 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00001990 // | master | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00001991 // | master | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00001992 // | master | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00001993 // | master | distribute | + |
1994 // | master | distribute | + |
1995 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00001996 // | master | distribute | + |
1997 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00001998 // | master | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00001999 // | master | target parallel | + |
2000 // | | for simd | |
Alexander Musman80c22892014-07-17 08:54:58 +00002001 // +------------------+-----------------+------------------------------------+
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002002 // | critical | parallel | * |
2003 // | critical | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002004 // | critical | for simd | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002005 // | critical | master | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002006 // | critical | critical | * (should have different names) |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002007 // | critical | simd | * |
2008 // | critical | sections | + |
2009 // | critical | section | + |
2010 // | critical | single | + |
2011 // | critical | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002012 // | critical |parallel for simd| * |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002013 // | critical |parallel sections| * |
2014 // | critical | task | * |
2015 // | critical | taskyield | * |
2016 // | critical | barrier | + |
2017 // | critical | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002018 // | critical | taskgroup | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002019 // | critical | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002020 // | critical | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002021 // | critical | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002022 // | critical | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002023 // | critical | target parallel | * |
2024 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002025 // | critical | target enter | * |
2026 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002027 // | critical | target exit | * |
2028 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002029 // | critical | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002030 // | critical | cancellation | |
2031 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002032 // | critical | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002033 // | critical | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002034 // | critical | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002035 // | critical | distribute | + |
2036 // | critical | distribute | + |
2037 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002038 // | critical | distribute | + |
2039 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002040 // | critical | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002041 // | critical | target parallel | + |
2042 // | | for simd | |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002043 // +------------------+-----------------+------------------------------------+
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002044 // | simd | parallel | |
2045 // | simd | for | |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002046 // | simd | for simd | |
Alexander Musman80c22892014-07-17 08:54:58 +00002047 // | simd | master | |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002048 // | simd | critical | |
Alexey Bataev1f092212016-02-02 04:59:52 +00002049 // | simd | simd | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002050 // | simd | sections | |
2051 // | simd | section | |
2052 // | simd | single | |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002053 // | simd | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002054 // | simd |parallel for simd| |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002055 // | simd |parallel sections| |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002056 // | simd | task | |
Alexey Bataev68446b72014-07-18 07:47:19 +00002057 // | simd | taskyield | |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002058 // | simd | barrier | |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002059 // | simd | taskwait | |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002060 // | simd | taskgroup | |
Alexey Bataev6125da92014-07-21 11:26:11 +00002061 // | simd | flush | |
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002062 // | simd | ordered | + (with simd clause) |
Alexey Bataev0162e452014-07-22 10:10:35 +00002063 // | simd | atomic | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002064 // | simd | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002065 // | simd | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002066 // | simd | target parallel | |
2067 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002068 // | simd | target enter | |
2069 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002070 // | simd | target exit | |
2071 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002072 // | simd | teams | |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002073 // | simd | cancellation | |
2074 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002075 // | simd | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002076 // | simd | taskloop | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002077 // | simd | taskloop simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002078 // | simd | distribute | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002079 // | simd | distribute | |
2080 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002081 // | simd | distribute | |
2082 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002083 // | simd | distribute simd | |
Kelvin Lia579b912016-07-14 02:54:56 +00002084 // | simd | target parallel | |
2085 // | | for simd | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002086 // +------------------+-----------------+------------------------------------+
Alexander Musmanf82886e2014-09-18 05:12:34 +00002087 // | for simd | parallel | |
2088 // | for simd | for | |
2089 // | for simd | for simd | |
2090 // | for simd | master | |
2091 // | for simd | critical | |
Alexey Bataev1f092212016-02-02 04:59:52 +00002092 // | for simd | simd | * |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002093 // | for simd | sections | |
2094 // | for simd | section | |
2095 // | for simd | single | |
2096 // | for simd | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002097 // | for simd |parallel for simd| |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002098 // | for simd |parallel sections| |
2099 // | for simd | task | |
2100 // | for simd | taskyield | |
2101 // | for simd | barrier | |
2102 // | for simd | taskwait | |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002103 // | for simd | taskgroup | |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002104 // | for simd | flush | |
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002105 // | for simd | ordered | + (with simd clause) |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002106 // | for simd | atomic | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002107 // | for simd | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002108 // | for simd | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002109 // | for simd | target parallel | |
2110 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002111 // | for simd | target enter | |
2112 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002113 // | for simd | target exit | |
2114 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002115 // | for simd | teams | |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002116 // | for simd | cancellation | |
2117 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002118 // | for simd | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002119 // | for simd | taskloop | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002120 // | for simd | taskloop simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002121 // | for simd | distribute | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002122 // | for simd | distribute | |
2123 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002124 // | for simd | distribute | |
2125 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002126 // | for simd | distribute simd | |
Kelvin Lia579b912016-07-14 02:54:56 +00002127 // | for simd | target parallel | |
2128 // | | for simd | |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002129 // +------------------+-----------------+------------------------------------+
Alexander Musmane4e893b2014-09-23 09:33:00 +00002130 // | parallel for simd| parallel | |
2131 // | parallel for simd| for | |
2132 // | parallel for simd| for simd | |
2133 // | parallel for simd| master | |
2134 // | parallel for simd| critical | |
Alexey Bataev1f092212016-02-02 04:59:52 +00002135 // | parallel for simd| simd | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002136 // | parallel for simd| sections | |
2137 // | parallel for simd| section | |
2138 // | parallel for simd| single | |
2139 // | parallel for simd| parallel for | |
2140 // | parallel for simd|parallel for simd| |
2141 // | parallel for simd|parallel sections| |
2142 // | parallel for simd| task | |
2143 // | parallel for simd| taskyield | |
2144 // | parallel for simd| barrier | |
2145 // | parallel for simd| taskwait | |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002146 // | parallel for simd| taskgroup | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002147 // | parallel for simd| flush | |
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002148 // | parallel for simd| ordered | + (with simd clause) |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002149 // | parallel for simd| atomic | |
2150 // | parallel for simd| target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002151 // | parallel for simd| target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002152 // | parallel for simd| target parallel | |
2153 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002154 // | parallel for simd| target enter | |
2155 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002156 // | parallel for simd| target exit | |
2157 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002158 // | parallel for simd| teams | |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002159 // | parallel for simd| cancellation | |
2160 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002161 // | parallel for simd| cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002162 // | parallel for simd| taskloop | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002163 // | parallel for simd| taskloop simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002164 // | parallel for simd| distribute | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002165 // | parallel for simd| distribute | |
2166 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002167 // | parallel for simd| distribute | |
2168 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002169 // | parallel for simd| distribute simd | |
Kelvin Lia579b912016-07-14 02:54:56 +00002170 // | | for simd | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002171 // +------------------+-----------------+------------------------------------+
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002172 // | sections | parallel | * |
2173 // | sections | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002174 // | sections | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002175 // | sections | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002176 // | sections | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002177 // | sections | simd | * |
2178 // | sections | sections | + |
2179 // | sections | section | * |
2180 // | sections | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002181 // | sections | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002182 // | sections |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002183 // | sections |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002184 // | sections | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002185 // | sections | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002186 // | sections | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002187 // | sections | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002188 // | sections | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002189 // | sections | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002190 // | sections | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002191 // | sections | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002192 // | sections | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002193 // | sections | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002194 // | sections | target parallel | * |
2195 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002196 // | sections | target enter | * |
2197 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002198 // | sections | target exit | * |
2199 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002200 // | sections | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002201 // | sections | cancellation | |
2202 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00002203 // | sections | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002204 // | sections | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002205 // | sections | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002206 // | sections | distribute | + |
2207 // | sections | distribute | + |
2208 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002209 // | sections | distribute | + |
2210 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002211 // | sections | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002212 // | sections | target parallel | + |
2213 // | | for simd | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002214 // +------------------+-----------------+------------------------------------+
2215 // | section | parallel | * |
2216 // | section | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002217 // | section | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002218 // | section | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002219 // | section | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002220 // | section | simd | * |
2221 // | section | sections | + |
2222 // | section | section | + |
2223 // | section | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002224 // | section | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002225 // | section |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002226 // | section |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002227 // | section | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002228 // | section | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002229 // | section | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002230 // | section | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002231 // | section | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002232 // | section | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002233 // | section | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002234 // | section | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002235 // | section | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002236 // | section | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002237 // | section | target parallel | * |
2238 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002239 // | section | target enter | * |
2240 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002241 // | section | target exit | * |
2242 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002243 // | section | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002244 // | section | cancellation | |
2245 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00002246 // | section | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002247 // | section | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002248 // | section | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002249 // | section | distribute | + |
2250 // | section | distribute | + |
2251 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002252 // | section | distribute | + |
2253 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002254 // | section | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002255 // | section | target parallel | + |
2256 // | | for simd | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002257 // +------------------+-----------------+------------------------------------+
2258 // | single | parallel | * |
2259 // | single | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002260 // | single | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002261 // | single | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002262 // | single | critical | * |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002263 // | single | simd | * |
2264 // | single | sections | + |
2265 // | single | section | + |
2266 // | single | single | + |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002267 // | single | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002268 // | single |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002269 // | single |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002270 // | single | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002271 // | single | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002272 // | single | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002273 // | single | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002274 // | single | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002275 // | single | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002276 // | single | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002277 // | single | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002278 // | single | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002279 // | single | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002280 // | single | target parallel | * |
2281 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002282 // | single | target enter | * |
2283 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002284 // | single | target exit | * |
2285 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002286 // | single | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002287 // | single | cancellation | |
2288 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002289 // | single | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002290 // | single | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002291 // | single | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002292 // | single | distribute | + |
2293 // | single | distribute | + |
2294 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002295 // | single | distribute | + |
2296 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002297 // | single | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002298 // | single | target parallel | + |
2299 // | | for simd | |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002300 // +------------------+-----------------+------------------------------------+
2301 // | parallel for | parallel | * |
2302 // | parallel for | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002303 // | parallel for | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002304 // | parallel for | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002305 // | parallel for | critical | * |
Alexey Bataev4acb8592014-07-07 13:01:15 +00002306 // | parallel for | simd | * |
2307 // | parallel for | sections | + |
2308 // | parallel for | section | + |
2309 // | parallel for | single | + |
2310 // | parallel for | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002311 // | parallel for |parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002312 // | parallel for |parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002313 // | parallel for | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002314 // | parallel for | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002315 // | parallel for | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002316 // | parallel for | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002317 // | parallel for | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002318 // | parallel for | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002319 // | parallel for | ordered | * (if construct is ordered) |
Alexey Bataev0162e452014-07-22 10:10:35 +00002320 // | parallel for | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002321 // | parallel for | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002322 // | parallel for | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002323 // | parallel for | target parallel | * |
2324 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002325 // | parallel for | target enter | * |
2326 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002327 // | parallel for | target exit | * |
2328 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002329 // | parallel for | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002330 // | parallel for | cancellation | |
2331 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00002332 // | parallel for | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002333 // | parallel for | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002334 // | parallel for | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002335 // | parallel for | distribute | + |
2336 // | parallel for | distribute | + |
2337 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002338 // | parallel for | distribute | + |
2339 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002340 // | parallel for | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002341 // | parallel for | target parallel | + |
2342 // | | for simd | |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002343 // +------------------+-----------------+------------------------------------+
2344 // | parallel sections| parallel | * |
2345 // | parallel sections| for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002346 // | parallel sections| for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002347 // | parallel sections| master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002348 // | parallel sections| critical | + |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002349 // | parallel sections| simd | * |
2350 // | parallel sections| sections | + |
2351 // | parallel sections| section | * |
2352 // | parallel sections| single | + |
2353 // | parallel sections| parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002354 // | parallel sections|parallel for simd| * |
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002355 // | parallel sections|parallel sections| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002356 // | parallel sections| task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002357 // | parallel sections| taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002358 // | parallel sections| barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002359 // | parallel sections| taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002360 // | parallel sections| taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002361 // | parallel sections| flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002362 // | parallel sections| ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002363 // | parallel sections| atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002364 // | parallel sections| target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002365 // | parallel sections| target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002366 // | parallel sections| target parallel | * |
2367 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002368 // | parallel sections| target enter | * |
2369 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002370 // | parallel sections| target exit | * |
2371 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002372 // | parallel sections| teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002373 // | parallel sections| cancellation | |
2374 // | | point | ! |
Alexey Bataev80909872015-07-02 11:25:17 +00002375 // | parallel sections| cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002376 // | parallel sections| taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002377 // | parallel sections| taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002378 // | parallel sections| distribute | + |
2379 // | parallel sections| distribute | + |
2380 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002381 // | parallel sections| distribute | + |
2382 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002383 // | parallel sections| distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002384 // | parallel sections| target parallel | + |
2385 // | | for simd | |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002386 // +------------------+-----------------+------------------------------------+
2387 // | task | parallel | * |
2388 // | task | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002389 // | task | for simd | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002390 // | task | master | + |
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002391 // | task | critical | * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002392 // | task | simd | * |
2393 // | task | sections | + |
Alexander Musman80c22892014-07-17 08:54:58 +00002394 // | task | section | + |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002395 // | task | single | + |
2396 // | task | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002397 // | task |parallel for simd| * |
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002398 // | task |parallel sections| * |
2399 // | task | task | * |
Alexey Bataev68446b72014-07-18 07:47:19 +00002400 // | task | taskyield | * |
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002401 // | task | barrier | + |
Alexey Bataev2df347a2014-07-18 10:17:07 +00002402 // | task | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002403 // | task | taskgroup | * |
Alexey Bataev6125da92014-07-21 11:26:11 +00002404 // | task | flush | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002405 // | task | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002406 // | task | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002407 // | task | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002408 // | task | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002409 // | task | target parallel | * |
2410 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002411 // | task | target enter | * |
2412 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002413 // | task | target exit | * |
2414 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002415 // | task | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002416 // | task | cancellation | |
Alexey Bataev80909872015-07-02 11:25:17 +00002417 // | | point | ! |
2418 // | task | cancel | ! |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002419 // | task | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002420 // | task | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002421 // | task | distribute | + |
2422 // | task | distribute | + |
2423 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002424 // | task | distribute | + |
2425 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002426 // | task | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002427 // | task | target parallel | + |
2428 // | | for simd | |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002429 // +------------------+-----------------+------------------------------------+
2430 // | ordered | parallel | * |
2431 // | ordered | for | + |
Alexander Musmanf82886e2014-09-18 05:12:34 +00002432 // | ordered | for simd | + |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002433 // | ordered | master | * |
2434 // | ordered | critical | * |
2435 // | ordered | simd | * |
2436 // | ordered | sections | + |
2437 // | ordered | section | + |
2438 // | ordered | single | + |
2439 // | ordered | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002440 // | ordered |parallel for simd| * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002441 // | ordered |parallel sections| * |
2442 // | ordered | task | * |
2443 // | ordered | taskyield | * |
2444 // | ordered | barrier | + |
2445 // | ordered | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002446 // | ordered | taskgroup | * |
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002447 // | ordered | flush | * |
2448 // | ordered | ordered | + |
Alexey Bataev0162e452014-07-22 10:10:35 +00002449 // | ordered | atomic | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002450 // | ordered | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002451 // | ordered | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002452 // | ordered | target parallel | * |
2453 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002454 // | ordered | target enter | * |
2455 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002456 // | ordered | target exit | * |
2457 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002458 // | ordered | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002459 // | ordered | cancellation | |
2460 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002461 // | ordered | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002462 // | ordered | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002463 // | ordered | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002464 // | ordered | distribute | + |
2465 // | ordered | distribute | + |
2466 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002467 // | ordered | distribute | + |
2468 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002469 // | ordered | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002470 // | ordered | target parallel | + |
2471 // | | for simd | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002472 // +------------------+-----------------+------------------------------------+
2473 // | atomic | parallel | |
2474 // | atomic | for | |
2475 // | atomic | for simd | |
2476 // | atomic | master | |
2477 // | atomic | critical | |
2478 // | atomic | simd | |
2479 // | atomic | sections | |
2480 // | atomic | section | |
2481 // | atomic | single | |
2482 // | atomic | parallel for | |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002483 // | atomic |parallel for simd| |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002484 // | atomic |parallel sections| |
2485 // | atomic | task | |
2486 // | atomic | taskyield | |
2487 // | atomic | barrier | |
2488 // | atomic | taskwait | |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002489 // | atomic | taskgroup | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002490 // | atomic | flush | |
2491 // | atomic | ordered | |
2492 // | atomic | atomic | |
2493 // | atomic | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002494 // | atomic | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002495 // | atomic | target parallel | |
2496 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002497 // | atomic | target enter | |
2498 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002499 // | atomic | target exit | |
2500 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002501 // | atomic | teams | |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002502 // | atomic | cancellation | |
2503 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002504 // | atomic | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002505 // | atomic | taskloop | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002506 // | atomic | taskloop simd | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002507 // | atomic | distribute | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002508 // | atomic | distribute | |
2509 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002510 // | atomic | distribute | |
2511 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002512 // | atomic | distribute simd | |
Kelvin Lia579b912016-07-14 02:54:56 +00002513 // | atomic | target parallel | |
2514 // | | for simd | |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002515 // +------------------+-----------------+------------------------------------+
2516 // | target | parallel | * |
2517 // | target | for | * |
2518 // | target | for simd | * |
2519 // | target | master | * |
2520 // | target | critical | * |
2521 // | target | simd | * |
2522 // | target | sections | * |
2523 // | target | section | * |
2524 // | target | single | * |
2525 // | target | parallel for | * |
Alexander Musmane4e893b2014-09-23 09:33:00 +00002526 // | target |parallel for simd| * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002527 // | target |parallel sections| * |
2528 // | target | task | * |
2529 // | target | taskyield | * |
2530 // | target | barrier | * |
2531 // | target | taskwait | * |
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002532 // | target | taskgroup | * |
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002533 // | target | flush | * |
2534 // | target | ordered | * |
2535 // | target | atomic | * |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002536 // | target | target | |
2537 // | target | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002538 // | target | target parallel | |
2539 // | | for | |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002540 // | target | target enter | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002541 // | | data | |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002542 // | target | target exit | |
Samuel Antao72590762016-01-19 20:04:50 +00002543 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002544 // | target | teams | * |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002545 // | target | cancellation | |
2546 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002547 // | target | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002548 // | target | taskloop | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002549 // | target | taskloop simd | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002550 // | target | distribute | + |
2551 // | target | distribute | + |
2552 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002553 // | target | distribute | + |
2554 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002555 // | target | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002556 // | target | target parallel | |
2557 // | | for simd | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002558 // +------------------+-----------------+------------------------------------+
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002559 // | target parallel | parallel | * |
2560 // | target parallel | for | * |
2561 // | target parallel | for simd | * |
2562 // | target parallel | master | * |
2563 // | target parallel | critical | * |
2564 // | target parallel | simd | * |
2565 // | target parallel | sections | * |
2566 // | target parallel | section | * |
2567 // | target parallel | single | * |
2568 // | target parallel | parallel for | * |
2569 // | target parallel |parallel for simd| * |
2570 // | target parallel |parallel sections| * |
2571 // | target parallel | task | * |
2572 // | target parallel | taskyield | * |
2573 // | target parallel | barrier | * |
2574 // | target parallel | taskwait | * |
2575 // | target parallel | taskgroup | * |
2576 // | target parallel | flush | * |
2577 // | target parallel | ordered | * |
2578 // | target parallel | atomic | * |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002579 // | target parallel | target | |
2580 // | target parallel | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002581 // | target parallel | target parallel | |
2582 // | | for | |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002583 // | target parallel | target enter | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002584 // | | data | |
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00002585 // | target parallel | target exit | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002586 // | | data | |
2587 // | target parallel | teams | |
2588 // | target parallel | cancellation | |
2589 // | | point | ! |
2590 // | target parallel | cancel | ! |
2591 // | target parallel | taskloop | * |
2592 // | target parallel | taskloop simd | * |
2593 // | target parallel | distribute | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002594 // | target parallel | distribute | |
2595 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002596 // | target parallel | distribute | |
2597 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002598 // | target parallel | distribute simd | |
Kelvin Lia579b912016-07-14 02:54:56 +00002599 // | target parallel | target parallel | |
2600 // | | for simd | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002601 // +------------------+-----------------+------------------------------------+
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002602 // | target parallel | parallel | * |
2603 // | for | | |
2604 // | target parallel | for | * |
2605 // | for | | |
2606 // | target parallel | for simd | * |
2607 // | for | | |
2608 // | target parallel | master | * |
2609 // | for | | |
2610 // | target parallel | critical | * |
2611 // | for | | |
2612 // | target parallel | simd | * |
2613 // | for | | |
2614 // | target parallel | sections | * |
2615 // | for | | |
2616 // | target parallel | section | * |
2617 // | for | | |
2618 // | target parallel | single | * |
2619 // | for | | |
2620 // | target parallel | parallel for | * |
2621 // | for | | |
2622 // | target parallel |parallel for simd| * |
2623 // | for | | |
2624 // | target parallel |parallel sections| * |
2625 // | for | | |
2626 // | target parallel | task | * |
2627 // | for | | |
2628 // | target parallel | taskyield | * |
2629 // | for | | |
2630 // | target parallel | barrier | * |
2631 // | for | | |
2632 // | target parallel | taskwait | * |
2633 // | for | | |
2634 // | target parallel | taskgroup | * |
2635 // | for | | |
2636 // | target parallel | flush | * |
2637 // | for | | |
2638 // | target parallel | ordered | * |
2639 // | for | | |
2640 // | target parallel | atomic | * |
2641 // | for | | |
2642 // | target parallel | target | |
2643 // | for | | |
2644 // | target parallel | target parallel | |
2645 // | for | | |
2646 // | target parallel | target parallel | |
2647 // | for | for | |
2648 // | target parallel | target enter | |
2649 // | for | data | |
2650 // | target parallel | target exit | |
2651 // | for | data | |
2652 // | target parallel | teams | |
2653 // | for | | |
2654 // | target parallel | cancellation | |
2655 // | for | point | ! |
2656 // | target parallel | cancel | ! |
2657 // | for | | |
2658 // | target parallel | taskloop | * |
2659 // | for | | |
2660 // | target parallel | taskloop simd | * |
2661 // | for | | |
2662 // | target parallel | distribute | |
2663 // | for | | |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002664 // | target parallel | distribute | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002665 // | for | parallel for | |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002666 // | target parallel | distribute | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002667 // | for |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002668 // | target parallel | distribute simd | |
2669 // | for | | |
Kelvin Lia579b912016-07-14 02:54:56 +00002670 // | target parallel | target parallel | |
2671 // | for | for simd | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002672 // +------------------+-----------------+------------------------------------+
Alexey Bataev13314bf2014-10-09 04:18:56 +00002673 // | teams | parallel | * |
2674 // | teams | for | + |
2675 // | teams | for simd | + |
2676 // | teams | master | + |
2677 // | teams | critical | + |
2678 // | teams | simd | + |
2679 // | teams | sections | + |
2680 // | teams | section | + |
2681 // | teams | single | + |
2682 // | teams | parallel for | * |
2683 // | teams |parallel for simd| * |
2684 // | teams |parallel sections| * |
2685 // | teams | task | + |
2686 // | teams | taskyield | + |
2687 // | teams | barrier | + |
2688 // | teams | taskwait | + |
Alexey Bataev80909872015-07-02 11:25:17 +00002689 // | teams | taskgroup | + |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002690 // | teams | flush | + |
2691 // | teams | ordered | + |
2692 // | teams | atomic | + |
2693 // | teams | target | + |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002694 // | teams | target parallel | + |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002695 // | teams | target parallel | + |
2696 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002697 // | teams | target enter | + |
2698 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002699 // | teams | target exit | + |
2700 // | | data | |
Alexey Bataev13314bf2014-10-09 04:18:56 +00002701 // | teams | teams | + |
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002702 // | teams | cancellation | |
2703 // | | point | |
Alexey Bataev80909872015-07-02 11:25:17 +00002704 // | teams | cancel | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002705 // | teams | taskloop | + |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002706 // | teams | taskloop simd | + |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002707 // | teams | distribute | ! |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002708 // | teams | distribute | ! |
2709 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002710 // | teams | distribute | ! |
2711 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002712 // | teams | distribute simd | ! |
Kelvin Lia579b912016-07-14 02:54:56 +00002713 // | teams | target parallel | + |
2714 // | | for simd | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002715 // +------------------+-----------------+------------------------------------+
2716 // | taskloop | parallel | * |
2717 // | taskloop | for | + |
2718 // | taskloop | for simd | + |
2719 // | taskloop | master | + |
2720 // | taskloop | critical | * |
2721 // | taskloop | simd | * |
2722 // | taskloop | sections | + |
2723 // | taskloop | section | + |
2724 // | taskloop | single | + |
2725 // | taskloop | parallel for | * |
2726 // | taskloop |parallel for simd| * |
2727 // | taskloop |parallel sections| * |
2728 // | taskloop | task | * |
2729 // | taskloop | taskyield | * |
2730 // | taskloop | barrier | + |
2731 // | taskloop | taskwait | * |
2732 // | taskloop | taskgroup | * |
2733 // | taskloop | flush | * |
2734 // | taskloop | ordered | + |
2735 // | taskloop | atomic | * |
2736 // | taskloop | target | * |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002737 // | taskloop | target parallel | * |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002738 // | taskloop | target parallel | * |
2739 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002740 // | taskloop | target enter | * |
2741 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002742 // | taskloop | target exit | * |
2743 // | | data | |
Alexey Bataev49f6e782015-12-01 04:18:41 +00002744 // | taskloop | teams | + |
2745 // | taskloop | cancellation | |
2746 // | | point | |
2747 // | taskloop | cancel | |
2748 // | taskloop | taskloop | * |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002749 // | taskloop | distribute | + |
2750 // | taskloop | distribute | + |
2751 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002752 // | taskloop | distribute | + |
2753 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002754 // | taskloop | distribute simd | + |
Kelvin Lia579b912016-07-14 02:54:56 +00002755 // | taskloop | target parallel | * |
2756 // | | for simd | |
Alexey Bataev18eb25e2014-06-30 10:22:46 +00002757 // +------------------+-----------------+------------------------------------+
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002758 // | taskloop simd | parallel | |
2759 // | taskloop simd | for | |
2760 // | taskloop simd | for simd | |
2761 // | taskloop simd | master | |
2762 // | taskloop simd | critical | |
Alexey Bataev1f092212016-02-02 04:59:52 +00002763 // | taskloop simd | simd | * |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002764 // | taskloop simd | sections | |
2765 // | taskloop simd | section | |
2766 // | taskloop simd | single | |
2767 // | taskloop simd | parallel for | |
2768 // | taskloop simd |parallel for simd| |
2769 // | taskloop simd |parallel sections| |
2770 // | taskloop simd | task | |
2771 // | taskloop simd | taskyield | |
2772 // | taskloop simd | barrier | |
2773 // | taskloop simd | taskwait | |
2774 // | taskloop simd | taskgroup | |
2775 // | taskloop simd | flush | |
2776 // | taskloop simd | ordered | + (with simd clause) |
2777 // | taskloop simd | atomic | |
2778 // | taskloop simd | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002779 // | taskloop simd | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002780 // | taskloop simd | target parallel | |
2781 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002782 // | taskloop simd | target enter | |
2783 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002784 // | taskloop simd | target exit | |
2785 // | | data | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002786 // | taskloop simd | teams | |
2787 // | taskloop simd | cancellation | |
2788 // | | point | |
2789 // | taskloop simd | cancel | |
2790 // | taskloop simd | taskloop | |
2791 // | taskloop simd | taskloop simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002792 // | taskloop simd | distribute | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002793 // | taskloop simd | distribute | |
2794 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002795 // | taskloop simd | distribute | |
2796 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002797 // | taskloop simd | distribute simd | |
Kelvin Lia579b912016-07-14 02:54:56 +00002798 // | taskloop simd | target parallel | |
2799 // | | for simd | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002800 // +------------------+-----------------+------------------------------------+
2801 // | distribute | parallel | * |
2802 // | distribute | for | * |
2803 // | distribute | for simd | * |
2804 // | distribute | master | * |
2805 // | distribute | critical | * |
2806 // | distribute | simd | * |
2807 // | distribute | sections | * |
2808 // | distribute | section | * |
2809 // | distribute | single | * |
2810 // | distribute | parallel for | * |
2811 // | distribute |parallel for simd| * |
2812 // | distribute |parallel sections| * |
2813 // | distribute | task | * |
2814 // | distribute | taskyield | * |
2815 // | distribute | barrier | * |
2816 // | distribute | taskwait | * |
2817 // | distribute | taskgroup | * |
2818 // | distribute | flush | * |
2819 // | distribute | ordered | + |
2820 // | distribute | atomic | * |
2821 // | distribute | target | |
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002822 // | distribute | target parallel | |
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002823 // | distribute | target parallel | |
2824 // | | for | |
Samuel Antaodf67fc42016-01-19 19:15:56 +00002825 // | distribute | target enter | |
2826 // | | data | |
Samuel Antao72590762016-01-19 20:04:50 +00002827 // | distribute | target exit | |
2828 // | | data | |
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002829 // | distribute | teams | |
2830 // | distribute | cancellation | + |
2831 // | | point | |
2832 // | distribute | cancel | + |
2833 // | distribute | taskloop | * |
2834 // | distribute | taskloop simd | * |
2835 // | distribute | distribute | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002836 // | distribute | distribute | |
2837 // | | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002838 // | distribute | distribute | |
2839 // | |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002840 // | distribute | distribute simd | |
Kelvin Lia579b912016-07-14 02:54:56 +00002841 // | distribute | target parallel | |
2842 // | | for simd | |
Carlo Bertolli9925f152016-06-27 14:55:37 +00002843 // +------------------+-----------------+------------------------------------+
2844 // | distribute | parallel | * |
2845 // | parallel for | | |
2846 // | distribute | for | * |
2847 // | parallel for | | |
2848 // | distribute | for simd | * |
2849 // | parallel for | | |
2850 // | distribute | master | * |
2851 // | parallel for | | |
2852 // | distribute | critical | * |
2853 // | parallel for | | |
2854 // | distribute | simd | * |
2855 // | parallel for | | |
2856 // | distribute | sections | * |
2857 // | parallel for | | |
2858 // | distribute | section | * |
2859 // | parallel for | | |
2860 // | distribute | single | * |
2861 // | parallel for | | |
2862 // | distribute | parallel for | * |
2863 // | parallel for | | |
2864 // | distribute |parallel for simd| * |
2865 // | parallel for | | |
2866 // | distribute |parallel sections| * |
2867 // | parallel for | | |
2868 // | distribute | task | * |
2869 // | parallel for | | |
2870 // | parallel for | | |
2871 // | distribute | taskyield | * |
2872 // | parallel for | | |
2873 // | distribute | barrier | * |
2874 // | parallel for | | |
2875 // | distribute | taskwait | * |
2876 // | parallel for | | |
2877 // | distribute | taskgroup | * |
2878 // | parallel for | | |
2879 // | distribute | flush | * |
2880 // | parallel for | | |
2881 // | distribute | ordered | + |
2882 // | parallel for | | |
2883 // | distribute | atomic | * |
2884 // | parallel for | | |
2885 // | distribute | target | |
2886 // | parallel for | | |
2887 // | distribute | target parallel | |
2888 // | parallel for | | |
2889 // | distribute | target parallel | |
2890 // | parallel for | for | |
2891 // | distribute | target enter | |
2892 // | parallel for | data | |
2893 // | distribute | target exit | |
2894 // | parallel for | data | |
2895 // | distribute | teams | |
2896 // | parallel for | | |
2897 // | distribute | cancellation | + |
2898 // | parallel for | point | |
2899 // | distribute | cancel | + |
2900 // | parallel for | | |
2901 // | distribute | taskloop | * |
2902 // | parallel for | | |
2903 // | distribute | taskloop simd | * |
2904 // | parallel for | | |
2905 // | distribute | distribute | |
2906 // | parallel for | | |
2907 // | distribute | distribute | |
2908 // | parallel for | parallel for | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002909 // | distribute | distribute | |
2910 // | parallel for |parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002911 // | distribute | distribute simd | |
2912 // | parallel for | | |
Kelvin Lia579b912016-07-14 02:54:56 +00002913 // | distribute | target parallel | |
2914 // | parallel for | for simd | |
Kelvin Li4a39add2016-07-05 05:00:15 +00002915 // +------------------+-----------------+------------------------------------+
2916 // | distribute | parallel | * |
2917 // | parallel for simd| | |
2918 // | distribute | for | * |
2919 // | parallel for simd| | |
2920 // | distribute | for simd | * |
2921 // | parallel for simd| | |
2922 // | distribute | master | * |
2923 // | parallel for simd| | |
2924 // | distribute | critical | * |
2925 // | parallel for simd| | |
2926 // | distribute | simd | * |
2927 // | parallel for simd| | |
2928 // | distribute | sections | * |
2929 // | parallel for simd| | |
2930 // | distribute | section | * |
2931 // | parallel for simd| | |
2932 // | distribute | single | * |
2933 // | parallel for simd| | |
2934 // | distribute | parallel for | * |
2935 // | parallel for simd| | |
2936 // | distribute |parallel for simd| * |
2937 // | parallel for simd| | |
2938 // | distribute |parallel sections| * |
2939 // | parallel for simd| | |
2940 // | distribute | task | * |
2941 // | parallel for simd| | |
2942 // | distribute | taskyield | * |
2943 // | parallel for simd| | |
2944 // | distribute | barrier | * |
2945 // | parallel for simd| | |
2946 // | distribute | taskwait | * |
2947 // | parallel for simd| | |
2948 // | distribute | taskgroup | * |
2949 // | parallel for simd| | |
2950 // | distribute | flush | * |
2951 // | parallel for simd| | |
2952 // | distribute | ordered | + |
2953 // | parallel for simd| | |
2954 // | distribute | atomic | * |
2955 // | parallel for simd| | |
2956 // | distribute | target | |
2957 // | parallel for simd| | |
2958 // | distribute | target parallel | |
2959 // | parallel for simd| | |
2960 // | distribute | target parallel | |
2961 // | parallel for simd| for | |
2962 // | distribute | target enter | |
2963 // | parallel for simd| data | |
2964 // | distribute | target exit | |
2965 // | parallel for simd| data | |
2966 // | distribute | teams | |
2967 // | parallel for simd| | |
2968 // | distribute | cancellation | + |
2969 // | parallel for simd| point | |
2970 // | distribute | cancel | + |
2971 // | parallel for simd| | |
2972 // | distribute | taskloop | * |
2973 // | parallel for simd| | |
2974 // | distribute | taskloop simd | * |
2975 // | parallel for simd| | |
2976 // | distribute | distribute | |
2977 // | parallel for simd| | |
2978 // | distribute | distribute | * |
2979 // | parallel for simd| parallel for | |
2980 // | distribute | distribute | * |
2981 // | parallel for simd|parallel for simd| |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002982 // | distribute | distribute simd | * |
2983 // | parallel for simd| | |
Kelvin Lia579b912016-07-14 02:54:56 +00002984 // | distribute | target parallel | |
2985 // | parallel for simd| for simd | |
Kelvin Li787f3fc2016-07-06 04:45:38 +00002986 // +------------------+-----------------+------------------------------------+
2987 // | distribute simd | parallel | * |
2988 // | distribute simd | for | * |
2989 // | distribute simd | for simd | * |
2990 // | distribute simd | master | * |
2991 // | distribute simd | critical | * |
2992 // | distribute simd | simd | * |
2993 // | distribute simd | sections | * |
2994 // | distribute simd | section | * |
2995 // | distribute simd | single | * |
2996 // | distribute simd | parallel for | * |
2997 // | distribute simd |parallel for simd| * |
2998 // | distribute simd |parallel sections| * |
2999 // | distribute simd | task | * |
3000 // | distribute simd | taskyield | * |
3001 // | distribute simd | barrier | * |
3002 // | distribute simd | taskwait | * |
3003 // | distribute simd | taskgroup | * |
3004 // | distribute simd | flush | * |
3005 // | distribute simd | ordered | + |
3006 // | distribute simd | atomic | * |
3007 // | distribute simd | target | * |
3008 // | distribute simd | target parallel | * |
3009 // | distribute simd | target parallel | * |
3010 // | | for | |
3011 // | distribute simd | target enter | * |
3012 // | | data | |
3013 // | distribute simd | target exit | * |
3014 // | | data | |
3015 // | distribute simd | teams | * |
3016 // | distribute simd | cancellation | + |
3017 // | | point | |
3018 // | distribute simd | cancel | + |
3019 // | distribute simd | taskloop | * |
3020 // | distribute simd | taskloop simd | * |
3021 // | distribute simd | distribute | |
3022 // | distribute simd | distribute | * |
3023 // | | parallel for | |
3024 // | distribute simd | distribute | * |
3025 // | |parallel for simd| |
3026 // | distribute simd | distribute simd | * |
Kelvin Lia579b912016-07-14 02:54:56 +00003027 // | distribute simd | target parallel | * |
3028 // | | for simd | |
3029 // +------------------+-----------------+------------------------------------+
3030 // | target parallel | parallel | * |
3031 // | for simd | | |
3032 // | target parallel | for | * |
3033 // | for simd | | |
3034 // | target parallel | for simd | * |
3035 // | for simd | | |
3036 // | target parallel | master | * |
3037 // | for simd | | |
3038 // | target parallel | critical | * |
3039 // | for simd | | |
3040 // | target parallel | simd | ! |
3041 // | for simd | | |
3042 // | target parallel | sections | * |
3043 // | for simd | | |
3044 // | target parallel | section | * |
3045 // | for simd | | |
3046 // | target parallel | single | * |
3047 // | for simd | | |
3048 // | target parallel | parallel for | * |
3049 // | for simd | | |
3050 // | target parallel |parallel for simd| * |
3051 // | for simd | | |
3052 // | target parallel |parallel sections| * |
3053 // | for simd | | |
3054 // | target parallel | task | * |
3055 // | for simd | | |
3056 // | target parallel | taskyield | * |
3057 // | for simd | | |
3058 // | target parallel | barrier | * |
3059 // | for simd | | |
3060 // | target parallel | taskwait | * |
3061 // | for simd | | |
3062 // | target parallel | taskgroup | * |
3063 // | for simd | | |
3064 // | target parallel | flush | * |
3065 // | for simd | | |
3066 // | target parallel | ordered | + (with simd clause) |
3067 // | for simd | | |
3068 // | target parallel | atomic | * |
3069 // | for simd | | |
3070 // | target parallel | target | * |
3071 // | for simd | | |
3072 // | target parallel | target parallel | * |
3073 // | for simd | | |
3074 // | target parallel | target parallel | * |
3075 // | for simd | for | |
3076 // | target parallel | target enter | * |
3077 // | for simd | data | |
3078 // | target parallel | target exit | * |
3079 // | for simd | data | |
3080 // | target parallel | teams | * |
3081 // | for simd | | |
3082 // | target parallel | cancellation | * |
3083 // | for simd | point | |
3084 // | target parallel | cancel | * |
3085 // | for simd | | |
3086 // | target parallel | taskloop | * |
3087 // | for simd | | |
3088 // | target parallel | taskloop simd | * |
3089 // | for simd | | |
3090 // | target parallel | distribute | * |
3091 // | for simd | | |
3092 // | target parallel | distribute | * |
3093 // | for simd | parallel for | |
3094 // | target parallel | distribute | * |
3095 // | for simd |parallel for simd| |
3096 // | target parallel | distribute simd | * |
3097 // | for simd | | |
3098 // | target parallel | target parallel | * |
3099 // | for simd | for simd | |
Alexey Bataev0a6ed842015-12-03 09:40:15 +00003100 // +------------------+-----------------+------------------------------------+
Alexey Bataev549210e2014-06-24 04:39:47 +00003101 if (Stack->getCurScope()) {
3102 auto ParentRegion = Stack->getParentDirective();
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00003103 auto OffendingRegion = ParentRegion;
Alexey Bataev549210e2014-06-24 04:39:47 +00003104 bool NestingProhibited = false;
3105 bool CloseNesting = true;
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003106 enum {
3107 NoRecommend,
3108 ShouldBeInParallelRegion,
Alexey Bataev13314bf2014-10-09 04:18:56 +00003109 ShouldBeInOrderedRegion,
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00003110 ShouldBeInTargetRegion,
3111 ShouldBeInTeamsRegion
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003112 } Recommend = NoRecommend;
Kelvin Lifd8b5742016-07-01 14:30:25 +00003113 if (isOpenMPSimdDirective(ParentRegion) && CurrentRegion != OMPD_ordered) {
Alexey Bataev549210e2014-06-24 04:39:47 +00003114 // OpenMP [2.16, Nesting of Regions]
3115 // OpenMP constructs may not be nested inside a simd region.
Alexey Bataevd14d1e62015-09-28 06:39:35 +00003116 // OpenMP [2.8.1,simd Construct, Restrictions]
Kelvin Lifd8b5742016-07-01 14:30:25 +00003117 // An ordered construct with the simd clause is the only OpenMP
3118 // construct that can appear in the simd region.
3119 // Allowing a SIMD consruct nested in another SIMD construct is an
3120 // extension. The OpenMP 4.5 spec does not allow it. Issue a warning
3121 // message.
3122 SemaRef.Diag(StartLoc, (CurrentRegion != OMPD_simd)
3123 ? diag::err_omp_prohibited_region_simd
3124 : diag::warn_omp_nesting_simd);
3125 return CurrentRegion != OMPD_simd;
Alexey Bataev549210e2014-06-24 04:39:47 +00003126 }
Alexey Bataev0162e452014-07-22 10:10:35 +00003127 if (ParentRegion == OMPD_atomic) {
3128 // OpenMP [2.16, Nesting of Regions]
3129 // OpenMP constructs may not be nested inside an atomic region.
3130 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region_atomic);
3131 return true;
3132 }
Alexey Bataev1e0498a2014-06-26 08:21:58 +00003133 if (CurrentRegion == OMPD_section) {
3134 // OpenMP [2.7.2, sections Construct, Restrictions]
3135 // Orphaned section directives are prohibited. That is, the section
3136 // directives must appear within the sections construct and must not be
3137 // encountered elsewhere in the sections region.
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00003138 if (ParentRegion != OMPD_sections &&
3139 ParentRegion != OMPD_parallel_sections) {
Alexey Bataev1e0498a2014-06-26 08:21:58 +00003140 SemaRef.Diag(StartLoc, diag::err_omp_orphaned_section_directive)
3141 << (ParentRegion != OMPD_unknown)
3142 << getOpenMPDirectiveName(ParentRegion);
3143 return true;
3144 }
3145 return false;
3146 }
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003147 // Allow some constructs to be orphaned (they could be used in functions,
3148 // called from OpenMP regions with the required preconditions).
3149 if (ParentRegion == OMPD_unknown)
3150 return false;
Alexey Bataev80909872015-07-02 11:25:17 +00003151 if (CurrentRegion == OMPD_cancellation_point ||
3152 CurrentRegion == OMPD_cancel) {
Alexey Bataev6d4ed052015-07-01 06:57:41 +00003153 // OpenMP [2.16, Nesting of Regions]
3154 // A cancellation point construct for which construct-type-clause is
3155 // taskgroup must be nested inside a task construct. A cancellation
3156 // point construct for which construct-type-clause is not taskgroup must
3157 // be closely nested inside an OpenMP construct that matches the type
3158 // specified in construct-type-clause.
Alexey Bataev80909872015-07-02 11:25:17 +00003159 // A cancel construct for which construct-type-clause is taskgroup must be
3160 // nested inside a task construct. A cancel construct for which
3161 // construct-type-clause is not taskgroup must be closely nested inside an
3162 // OpenMP construct that matches the type specified in
3163 // construct-type-clause.
Alexey Bataev6d4ed052015-07-01 06:57:41 +00003164 NestingProhibited =
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00003165 !((CancelRegion == OMPD_parallel &&
3166 (ParentRegion == OMPD_parallel ||
3167 ParentRegion == OMPD_target_parallel)) ||
Alexey Bataev25e5b442015-09-15 12:52:43 +00003168 (CancelRegion == OMPD_for &&
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00003169 (ParentRegion == OMPD_for || ParentRegion == OMPD_parallel_for ||
3170 ParentRegion == OMPD_target_parallel_for)) ||
Alexey Bataev6d4ed052015-07-01 06:57:41 +00003171 (CancelRegion == OMPD_taskgroup && ParentRegion == OMPD_task) ||
3172 (CancelRegion == OMPD_sections &&
Alexey Bataev25e5b442015-09-15 12:52:43 +00003173 (ParentRegion == OMPD_section || ParentRegion == OMPD_sections ||
3174 ParentRegion == OMPD_parallel_sections)));
Alexey Bataev6d4ed052015-07-01 06:57:41 +00003175 } else if (CurrentRegion == OMPD_master) {
Alexander Musman80c22892014-07-17 08:54:58 +00003176 // OpenMP [2.16, Nesting of Regions]
3177 // A master region may not be closely nested inside a worksharing,
Alexey Bataev0162e452014-07-22 10:10:35 +00003178 // atomic, or explicit task region.
Alexander Musman80c22892014-07-17 08:54:58 +00003179 NestingProhibited = isOpenMPWorksharingDirective(ParentRegion) ||
Alexey Bataev35aaee62016-04-13 13:36:48 +00003180 isOpenMPTaskingDirective(ParentRegion);
Alexander Musmand9ed09f2014-07-21 09:42:05 +00003181 } else if (CurrentRegion == OMPD_critical && CurrentName.getName()) {
3182 // OpenMP [2.16, Nesting of Regions]
3183 // A critical region may not be nested (closely or otherwise) inside a
3184 // critical region with the same name. Note that this restriction is not
3185 // sufficient to prevent deadlock.
3186 SourceLocation PreviousCriticalLoc;
3187 bool DeadLock =
3188 Stack->hasDirective([CurrentName, &PreviousCriticalLoc](
3189 OpenMPDirectiveKind K,
3190 const DeclarationNameInfo &DNI,
3191 SourceLocation Loc)
3192 ->bool {
3193 if (K == OMPD_critical &&
3194 DNI.getName() == CurrentName.getName()) {
3195 PreviousCriticalLoc = Loc;
3196 return true;
3197 } else
3198 return false;
3199 },
3200 false /* skip top directive */);
3201 if (DeadLock) {
3202 SemaRef.Diag(StartLoc,
3203 diag::err_omp_prohibited_region_critical_same_name)
3204 << CurrentName.getName();
3205 if (PreviousCriticalLoc.isValid())
3206 SemaRef.Diag(PreviousCriticalLoc,
3207 diag::note_omp_previous_critical_region);
3208 return true;
3209 }
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00003210 } else if (CurrentRegion == OMPD_barrier) {
3211 // OpenMP [2.16, Nesting of Regions]
3212 // A barrier region may not be closely nested inside a worksharing,
Alexey Bataev0162e452014-07-22 10:10:35 +00003213 // explicit task, critical, ordered, atomic, or master region.
Alexey Bataev35aaee62016-04-13 13:36:48 +00003214 NestingProhibited = isOpenMPWorksharingDirective(ParentRegion) ||
3215 isOpenMPTaskingDirective(ParentRegion) ||
3216 ParentRegion == OMPD_master ||
3217 ParentRegion == OMPD_critical ||
3218 ParentRegion == OMPD_ordered;
Alexander Musman80c22892014-07-17 08:54:58 +00003219 } else if (isOpenMPWorksharingDirective(CurrentRegion) &&
Alexander Musmanf82886e2014-09-18 05:12:34 +00003220 !isOpenMPParallelDirective(CurrentRegion)) {
Alexey Bataev549210e2014-06-24 04:39:47 +00003221 // OpenMP [2.16, Nesting of Regions]
3222 // A worksharing region may not be closely nested inside a worksharing,
3223 // explicit task, critical, ordered, atomic, or master region.
Alexey Bataev35aaee62016-04-13 13:36:48 +00003224 NestingProhibited = isOpenMPWorksharingDirective(ParentRegion) ||
3225 isOpenMPTaskingDirective(ParentRegion) ||
3226 ParentRegion == OMPD_master ||
3227 ParentRegion == OMPD_critical ||
3228 ParentRegion == OMPD_ordered;
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003229 Recommend = ShouldBeInParallelRegion;
3230 } else if (CurrentRegion == OMPD_ordered) {
3231 // OpenMP [2.16, Nesting of Regions]
3232 // An ordered region may not be closely nested inside a critical,
Alexey Bataev0162e452014-07-22 10:10:35 +00003233 // atomic, or explicit task region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003234 // An ordered region must be closely nested inside a loop region (or
3235 // parallel loop region) with an ordered clause.
Alexey Bataevd14d1e62015-09-28 06:39:35 +00003236 // OpenMP [2.8.1,simd Construct, Restrictions]
3237 // An ordered construct with the simd clause is the only OpenMP construct
3238 // that can appear in the simd region.
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003239 NestingProhibited = ParentRegion == OMPD_critical ||
Alexey Bataev35aaee62016-04-13 13:36:48 +00003240 isOpenMPTaskingDirective(ParentRegion) ||
Alexey Bataevd14d1e62015-09-28 06:39:35 +00003241 !(isOpenMPSimdDirective(ParentRegion) ||
3242 Stack->isParentOrderedRegion());
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003243 Recommend = ShouldBeInOrderedRegion;
Alexey Bataev13314bf2014-10-09 04:18:56 +00003244 } else if (isOpenMPTeamsDirective(CurrentRegion)) {
3245 // OpenMP [2.16, Nesting of Regions]
3246 // If specified, a teams construct must be contained within a target
3247 // construct.
3248 NestingProhibited = ParentRegion != OMPD_target;
3249 Recommend = ShouldBeInTargetRegion;
3250 Stack->setParentTeamsRegionLoc(Stack->getConstructLoc());
3251 }
3252 if (!NestingProhibited && isOpenMPTeamsDirective(ParentRegion)) {
3253 // OpenMP [2.16, Nesting of Regions]
3254 // distribute, parallel, parallel sections, parallel workshare, and the
3255 // parallel loop and parallel loop SIMD constructs are the only OpenMP
3256 // constructs that can be closely nested in the teams region.
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00003257 NestingProhibited = !isOpenMPParallelDirective(CurrentRegion) &&
3258 !isOpenMPDistributeDirective(CurrentRegion);
Alexey Bataev13314bf2014-10-09 04:18:56 +00003259 Recommend = ShouldBeInParallelRegion;
Alexey Bataev549210e2014-06-24 04:39:47 +00003260 }
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00003261 if (!NestingProhibited && isOpenMPDistributeDirective(CurrentRegion)) {
3262 // OpenMP 4.5 [2.17 Nesting of Regions]
3263 // The region associated with the distribute construct must be strictly
3264 // nested inside a teams region
3265 NestingProhibited = !isOpenMPTeamsDirective(ParentRegion);
3266 Recommend = ShouldBeInTeamsRegion;
3267 }
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00003268 if (!NestingProhibited &&
3269 (isOpenMPTargetExecutionDirective(CurrentRegion) ||
3270 isOpenMPTargetDataManagementDirective(CurrentRegion))) {
3271 // OpenMP 4.5 [2.17 Nesting of Regions]
3272 // If a target, target update, target data, target enter data, or
3273 // target exit data construct is encountered during execution of a
3274 // target region, the behavior is unspecified.
3275 NestingProhibited = Stack->hasDirective(
Alexey Bataev7ace49d2016-05-17 08:55:33 +00003276 [&OffendingRegion](OpenMPDirectiveKind K, const DeclarationNameInfo &,
3277 SourceLocation) -> bool {
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00003278 if (isOpenMPTargetExecutionDirective(K)) {
3279 OffendingRegion = K;
3280 return true;
3281 } else
3282 return false;
3283 },
3284 false /* don't skip top directive */);
3285 CloseNesting = false;
3286 }
Alexey Bataev549210e2014-06-24 04:39:47 +00003287 if (NestingProhibited) {
3288 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region)
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +00003289 << CloseNesting << getOpenMPDirectiveName(OffendingRegion)
3290 << Recommend << getOpenMPDirectiveName(CurrentRegion);
Alexey Bataev549210e2014-06-24 04:39:47 +00003291 return true;
3292 }
3293 }
3294 return false;
3295}
3296
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003297static bool checkIfClauses(Sema &S, OpenMPDirectiveKind Kind,
3298 ArrayRef<OMPClause *> Clauses,
3299 ArrayRef<OpenMPDirectiveKind> AllowedNameModifiers) {
3300 bool ErrorFound = false;
3301 unsigned NamedModifiersNumber = 0;
3302 SmallVector<const OMPIfClause *, OMPC_unknown + 1> FoundNameModifiers(
3303 OMPD_unknown + 1);
Alexey Bataevecb156a2015-09-15 17:23:56 +00003304 SmallVector<SourceLocation, 4> NameModifierLoc;
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003305 for (const auto *C : Clauses) {
3306 if (const auto *IC = dyn_cast_or_null<OMPIfClause>(C)) {
3307 // At most one if clause without a directive-name-modifier can appear on
3308 // the directive.
3309 OpenMPDirectiveKind CurNM = IC->getNameModifier();
3310 if (FoundNameModifiers[CurNM]) {
3311 S.Diag(C->getLocStart(), diag::err_omp_more_one_clause)
3312 << getOpenMPDirectiveName(Kind) << getOpenMPClauseName(OMPC_if)
3313 << (CurNM != OMPD_unknown) << getOpenMPDirectiveName(CurNM);
3314 ErrorFound = true;
Alexey Bataevecb156a2015-09-15 17:23:56 +00003315 } else if (CurNM != OMPD_unknown) {
3316 NameModifierLoc.push_back(IC->getNameModifierLoc());
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003317 ++NamedModifiersNumber;
Alexey Bataevecb156a2015-09-15 17:23:56 +00003318 }
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003319 FoundNameModifiers[CurNM] = IC;
3320 if (CurNM == OMPD_unknown)
3321 continue;
3322 // Check if the specified name modifier is allowed for the current
3323 // directive.
3324 // At most one if clause with the particular directive-name-modifier can
3325 // appear on the directive.
3326 bool MatchFound = false;
3327 for (auto NM : AllowedNameModifiers) {
3328 if (CurNM == NM) {
3329 MatchFound = true;
3330 break;
3331 }
3332 }
3333 if (!MatchFound) {
3334 S.Diag(IC->getNameModifierLoc(),
3335 diag::err_omp_wrong_if_directive_name_modifier)
3336 << getOpenMPDirectiveName(CurNM) << getOpenMPDirectiveName(Kind);
3337 ErrorFound = true;
3338 }
3339 }
3340 }
3341 // If any if clause on the directive includes a directive-name-modifier then
3342 // all if clauses on the directive must include a directive-name-modifier.
3343 if (FoundNameModifiers[OMPD_unknown] && NamedModifiersNumber > 0) {
3344 if (NamedModifiersNumber == AllowedNameModifiers.size()) {
3345 S.Diag(FoundNameModifiers[OMPD_unknown]->getLocStart(),
3346 diag::err_omp_no_more_if_clause);
3347 } else {
3348 std::string Values;
3349 std::string Sep(", ");
3350 unsigned AllowedCnt = 0;
3351 unsigned TotalAllowedNum =
3352 AllowedNameModifiers.size() - NamedModifiersNumber;
3353 for (unsigned Cnt = 0, End = AllowedNameModifiers.size(); Cnt < End;
3354 ++Cnt) {
3355 OpenMPDirectiveKind NM = AllowedNameModifiers[Cnt];
3356 if (!FoundNameModifiers[NM]) {
3357 Values += "'";
3358 Values += getOpenMPDirectiveName(NM);
3359 Values += "'";
3360 if (AllowedCnt + 2 == TotalAllowedNum)
3361 Values += " or ";
3362 else if (AllowedCnt + 1 != TotalAllowedNum)
3363 Values += Sep;
3364 ++AllowedCnt;
3365 }
3366 }
3367 S.Diag(FoundNameModifiers[OMPD_unknown]->getCondition()->getLocStart(),
3368 diag::err_omp_unnamed_if_clause)
3369 << (TotalAllowedNum > 1) << Values;
3370 }
Alexey Bataevecb156a2015-09-15 17:23:56 +00003371 for (auto Loc : NameModifierLoc) {
3372 S.Diag(Loc, diag::note_omp_previous_named_if_clause);
3373 }
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003374 ErrorFound = true;
3375 }
3376 return ErrorFound;
3377}
3378
Alexey Bataev6d4ed052015-07-01 06:57:41 +00003379StmtResult Sema::ActOnOpenMPExecutableDirective(
3380 OpenMPDirectiveKind Kind, const DeclarationNameInfo &DirName,
3381 OpenMPDirectiveKind CancelRegion, ArrayRef<OMPClause *> Clauses,
3382 Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) {
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003383 StmtResult Res = StmtError();
Alexey Bataev6d4ed052015-07-01 06:57:41 +00003384 if (CheckNestingOfRegions(*this, DSAStack, Kind, DirName, CancelRegion,
3385 StartLoc))
Alexey Bataev549210e2014-06-24 04:39:47 +00003386 return StmtError();
Alexey Bataev758e55e2013-09-06 18:03:48 +00003387
Alexey Bataevd5af8e42013-10-01 05:32:34 +00003388 llvm::SmallVector<OMPClause *, 8> ClausesWithImplicit;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00003389 llvm::DenseMap<ValueDecl *, Expr *> VarsWithInheritedDSA;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00003390 bool ErrorFound = false;
Alexey Bataev6125da92014-07-21 11:26:11 +00003391 ClausesWithImplicit.append(Clauses.begin(), Clauses.end());
Alexey Bataev68446b72014-07-18 07:47:19 +00003392 if (AStmt) {
3393 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
3394
3395 // Check default data sharing attributes for referenced variables.
3396 DSAAttrChecker DSAChecker(DSAStack, *this, cast<CapturedStmt>(AStmt));
3397 DSAChecker.Visit(cast<CapturedStmt>(AStmt)->getCapturedStmt());
3398 if (DSAChecker.isErrorFound())
3399 return StmtError();
3400 // Generate list of implicitly defined firstprivate variables.
3401 VarsWithInheritedDSA = DSAChecker.getVarsWithInheritedDSA();
Alexey Bataev68446b72014-07-18 07:47:19 +00003402
3403 if (!DSAChecker.getImplicitFirstprivate().empty()) {
3404 if (OMPClause *Implicit = ActOnOpenMPFirstprivateClause(
3405 DSAChecker.getImplicitFirstprivate(), SourceLocation(),
3406 SourceLocation(), SourceLocation())) {
3407 ClausesWithImplicit.push_back(Implicit);
3408 ErrorFound = cast<OMPFirstprivateClause>(Implicit)->varlist_size() !=
3409 DSAChecker.getImplicitFirstprivate().size();
3410 } else
3411 ErrorFound = true;
3412 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00003413 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00003414
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003415 llvm::SmallVector<OpenMPDirectiveKind, 4> AllowedNameModifiers;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003416 switch (Kind) {
3417 case OMPD_parallel:
Alexey Bataeved09d242014-05-28 05:53:51 +00003418 Res = ActOnOpenMPParallelDirective(ClausesWithImplicit, AStmt, StartLoc,
3419 EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003420 AllowedNameModifiers.push_back(OMPD_parallel);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003421 break;
Alexey Bataev1b59ab52014-02-27 08:29:12 +00003422 case OMPD_simd:
Alexey Bataev4acb8592014-07-07 13:01:15 +00003423 Res = ActOnOpenMPSimdDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc,
3424 VarsWithInheritedDSA);
Alexey Bataev1b59ab52014-02-27 08:29:12 +00003425 break;
Alexey Bataevf29276e2014-06-18 04:14:57 +00003426 case OMPD_for:
Alexey Bataev4acb8592014-07-07 13:01:15 +00003427 Res = ActOnOpenMPForDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc,
3428 VarsWithInheritedDSA);
Alexey Bataevf29276e2014-06-18 04:14:57 +00003429 break;
Alexander Musmanf82886e2014-09-18 05:12:34 +00003430 case OMPD_for_simd:
3431 Res = ActOnOpenMPForSimdDirective(ClausesWithImplicit, AStmt, StartLoc,
3432 EndLoc, VarsWithInheritedDSA);
3433 break;
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00003434 case OMPD_sections:
3435 Res = ActOnOpenMPSectionsDirective(ClausesWithImplicit, AStmt, StartLoc,
3436 EndLoc);
3437 break;
Alexey Bataev1e0498a2014-06-26 08:21:58 +00003438 case OMPD_section:
3439 assert(ClausesWithImplicit.empty() &&
Alexander Musman80c22892014-07-17 08:54:58 +00003440 "No clauses are allowed for 'omp section' directive");
Alexey Bataev1e0498a2014-06-26 08:21:58 +00003441 Res = ActOnOpenMPSectionDirective(AStmt, StartLoc, EndLoc);
3442 break;
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00003443 case OMPD_single:
3444 Res = ActOnOpenMPSingleDirective(ClausesWithImplicit, AStmt, StartLoc,
3445 EndLoc);
3446 break;
Alexander Musman80c22892014-07-17 08:54:58 +00003447 case OMPD_master:
3448 assert(ClausesWithImplicit.empty() &&
3449 "No clauses are allowed for 'omp master' directive");
3450 Res = ActOnOpenMPMasterDirective(AStmt, StartLoc, EndLoc);
3451 break;
Alexander Musmand9ed09f2014-07-21 09:42:05 +00003452 case OMPD_critical:
Alexey Bataev28c75412015-12-15 08:19:24 +00003453 Res = ActOnOpenMPCriticalDirective(DirName, ClausesWithImplicit, AStmt,
3454 StartLoc, EndLoc);
Alexander Musmand9ed09f2014-07-21 09:42:05 +00003455 break;
Alexey Bataev4acb8592014-07-07 13:01:15 +00003456 case OMPD_parallel_for:
3457 Res = ActOnOpenMPParallelForDirective(ClausesWithImplicit, AStmt, StartLoc,
3458 EndLoc, VarsWithInheritedDSA);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003459 AllowedNameModifiers.push_back(OMPD_parallel);
Alexey Bataev4acb8592014-07-07 13:01:15 +00003460 break;
Alexander Musmane4e893b2014-09-23 09:33:00 +00003461 case OMPD_parallel_for_simd:
3462 Res = ActOnOpenMPParallelForSimdDirective(
3463 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003464 AllowedNameModifiers.push_back(OMPD_parallel);
Alexander Musmane4e893b2014-09-23 09:33:00 +00003465 break;
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00003466 case OMPD_parallel_sections:
3467 Res = ActOnOpenMPParallelSectionsDirective(ClausesWithImplicit, AStmt,
3468 StartLoc, EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003469 AllowedNameModifiers.push_back(OMPD_parallel);
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00003470 break;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003471 case OMPD_task:
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00003472 Res =
3473 ActOnOpenMPTaskDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003474 AllowedNameModifiers.push_back(OMPD_task);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00003475 break;
Alexey Bataev68446b72014-07-18 07:47:19 +00003476 case OMPD_taskyield:
3477 assert(ClausesWithImplicit.empty() &&
3478 "No clauses are allowed for 'omp taskyield' directive");
3479 assert(AStmt == nullptr &&
3480 "No associated statement allowed for 'omp taskyield' directive");
3481 Res = ActOnOpenMPTaskyieldDirective(StartLoc, EndLoc);
3482 break;
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00003483 case OMPD_barrier:
3484 assert(ClausesWithImplicit.empty() &&
3485 "No clauses are allowed for 'omp barrier' directive");
3486 assert(AStmt == nullptr &&
3487 "No associated statement allowed for 'omp barrier' directive");
3488 Res = ActOnOpenMPBarrierDirective(StartLoc, EndLoc);
3489 break;
Alexey Bataev2df347a2014-07-18 10:17:07 +00003490 case OMPD_taskwait:
3491 assert(ClausesWithImplicit.empty() &&
3492 "No clauses are allowed for 'omp taskwait' directive");
3493 assert(AStmt == nullptr &&
3494 "No associated statement allowed for 'omp taskwait' directive");
3495 Res = ActOnOpenMPTaskwaitDirective(StartLoc, EndLoc);
3496 break;
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00003497 case OMPD_taskgroup:
3498 assert(ClausesWithImplicit.empty() &&
3499 "No clauses are allowed for 'omp taskgroup' directive");
3500 Res = ActOnOpenMPTaskgroupDirective(AStmt, StartLoc, EndLoc);
3501 break;
Alexey Bataev6125da92014-07-21 11:26:11 +00003502 case OMPD_flush:
3503 assert(AStmt == nullptr &&
3504 "No associated statement allowed for 'omp flush' directive");
3505 Res = ActOnOpenMPFlushDirective(ClausesWithImplicit, StartLoc, EndLoc);
3506 break;
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003507 case OMPD_ordered:
Alexey Bataev346265e2015-09-25 10:37:12 +00003508 Res = ActOnOpenMPOrderedDirective(ClausesWithImplicit, AStmt, StartLoc,
3509 EndLoc);
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003510 break;
Alexey Bataev0162e452014-07-22 10:10:35 +00003511 case OMPD_atomic:
3512 Res = ActOnOpenMPAtomicDirective(ClausesWithImplicit, AStmt, StartLoc,
3513 EndLoc);
3514 break;
Alexey Bataev13314bf2014-10-09 04:18:56 +00003515 case OMPD_teams:
3516 Res =
3517 ActOnOpenMPTeamsDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc);
3518 break;
Alexey Bataev0bd520b2014-09-19 08:19:49 +00003519 case OMPD_target:
3520 Res = ActOnOpenMPTargetDirective(ClausesWithImplicit, AStmt, StartLoc,
3521 EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003522 AllowedNameModifiers.push_back(OMPD_target);
Alexey Bataev0bd520b2014-09-19 08:19:49 +00003523 break;
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00003524 case OMPD_target_parallel:
3525 Res = ActOnOpenMPTargetParallelDirective(ClausesWithImplicit, AStmt,
3526 StartLoc, EndLoc);
3527 AllowedNameModifiers.push_back(OMPD_target);
3528 AllowedNameModifiers.push_back(OMPD_parallel);
3529 break;
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00003530 case OMPD_target_parallel_for:
3531 Res = ActOnOpenMPTargetParallelForDirective(
3532 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
3533 AllowedNameModifiers.push_back(OMPD_target);
3534 AllowedNameModifiers.push_back(OMPD_parallel);
3535 break;
Alexey Bataev6d4ed052015-07-01 06:57:41 +00003536 case OMPD_cancellation_point:
3537 assert(ClausesWithImplicit.empty() &&
3538 "No clauses are allowed for 'omp cancellation point' directive");
3539 assert(AStmt == nullptr && "No associated statement allowed for 'omp "
3540 "cancellation point' directive");
3541 Res = ActOnOpenMPCancellationPointDirective(StartLoc, EndLoc, CancelRegion);
3542 break;
Alexey Bataev80909872015-07-02 11:25:17 +00003543 case OMPD_cancel:
Alexey Bataev80909872015-07-02 11:25:17 +00003544 assert(AStmt == nullptr &&
3545 "No associated statement allowed for 'omp cancel' directive");
Alexey Bataev87933c72015-09-18 08:07:34 +00003546 Res = ActOnOpenMPCancelDirective(ClausesWithImplicit, StartLoc, EndLoc,
3547 CancelRegion);
3548 AllowedNameModifiers.push_back(OMPD_cancel);
Alexey Bataev80909872015-07-02 11:25:17 +00003549 break;
Michael Wong65f367f2015-07-21 13:44:28 +00003550 case OMPD_target_data:
3551 Res = ActOnOpenMPTargetDataDirective(ClausesWithImplicit, AStmt, StartLoc,
3552 EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003553 AllowedNameModifiers.push_back(OMPD_target_data);
Michael Wong65f367f2015-07-21 13:44:28 +00003554 break;
Samuel Antaodf67fc42016-01-19 19:15:56 +00003555 case OMPD_target_enter_data:
3556 Res = ActOnOpenMPTargetEnterDataDirective(ClausesWithImplicit, StartLoc,
3557 EndLoc);
3558 AllowedNameModifiers.push_back(OMPD_target_enter_data);
3559 break;
Samuel Antao72590762016-01-19 20:04:50 +00003560 case OMPD_target_exit_data:
3561 Res = ActOnOpenMPTargetExitDataDirective(ClausesWithImplicit, StartLoc,
3562 EndLoc);
3563 AllowedNameModifiers.push_back(OMPD_target_exit_data);
3564 break;
Alexey Bataev49f6e782015-12-01 04:18:41 +00003565 case OMPD_taskloop:
3566 Res = ActOnOpenMPTaskLoopDirective(ClausesWithImplicit, AStmt, StartLoc,
3567 EndLoc, VarsWithInheritedDSA);
3568 AllowedNameModifiers.push_back(OMPD_taskloop);
3569 break;
Alexey Bataev0a6ed842015-12-03 09:40:15 +00003570 case OMPD_taskloop_simd:
3571 Res = ActOnOpenMPTaskLoopSimdDirective(ClausesWithImplicit, AStmt, StartLoc,
3572 EndLoc, VarsWithInheritedDSA);
3573 AllowedNameModifiers.push_back(OMPD_taskloop);
3574 break;
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00003575 case OMPD_distribute:
3576 Res = ActOnOpenMPDistributeDirective(ClausesWithImplicit, AStmt, StartLoc,
3577 EndLoc, VarsWithInheritedDSA);
3578 break;
Samuel Antao686c70c2016-05-26 17:30:50 +00003579 case OMPD_target_update:
3580 assert(!AStmt && "Statement is not allowed for target update");
3581 Res =
3582 ActOnOpenMPTargetUpdateDirective(ClausesWithImplicit, StartLoc, EndLoc);
3583 AllowedNameModifiers.push_back(OMPD_target_update);
3584 break;
Carlo Bertolli9925f152016-06-27 14:55:37 +00003585 case OMPD_distribute_parallel_for:
3586 Res = ActOnOpenMPDistributeParallelForDirective(
3587 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
3588 AllowedNameModifiers.push_back(OMPD_parallel);
3589 break;
Kelvin Li4a39add2016-07-05 05:00:15 +00003590 case OMPD_distribute_parallel_for_simd:
3591 Res = ActOnOpenMPDistributeParallelForSimdDirective(
3592 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
3593 AllowedNameModifiers.push_back(OMPD_parallel);
3594 break;
Kelvin Li787f3fc2016-07-06 04:45:38 +00003595 case OMPD_distribute_simd:
3596 Res = ActOnOpenMPDistributeSimdDirective(
3597 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
3598 break;
Kelvin Lia579b912016-07-14 02:54:56 +00003599 case OMPD_target_parallel_for_simd:
3600 Res = ActOnOpenMPTargetParallelForSimdDirective(
3601 ClausesWithImplicit, AStmt, StartLoc, EndLoc, VarsWithInheritedDSA);
3602 AllowedNameModifiers.push_back(OMPD_target);
3603 AllowedNameModifiers.push_back(OMPD_parallel);
3604 break;
Dmitry Polukhin0b0da292016-04-06 11:38:59 +00003605 case OMPD_declare_target:
3606 case OMPD_end_declare_target:
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00003607 case OMPD_threadprivate:
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00003608 case OMPD_declare_reduction:
Alexey Bataev587e1de2016-03-30 10:43:55 +00003609 case OMPD_declare_simd:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003610 llvm_unreachable("OpenMP Directive is not allowed");
3611 case OMPD_unknown:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003612 llvm_unreachable("Unknown OpenMP directive");
3613 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00003614
Alexey Bataev4acb8592014-07-07 13:01:15 +00003615 for (auto P : VarsWithInheritedDSA) {
3616 Diag(P.second->getExprLoc(), diag::err_omp_no_dsa_for_variable)
3617 << P.first << P.second->getSourceRange();
3618 }
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003619 ErrorFound = !VarsWithInheritedDSA.empty() || ErrorFound;
3620
3621 if (!AllowedNameModifiers.empty())
3622 ErrorFound = checkIfClauses(*this, Kind, Clauses, AllowedNameModifiers) ||
3623 ErrorFound;
Alexey Bataev4acb8592014-07-07 13:01:15 +00003624
Alexey Bataeved09d242014-05-28 05:53:51 +00003625 if (ErrorFound)
3626 return StmtError();
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003627 return Res;
3628}
3629
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003630Sema::DeclGroupPtrTy Sema::ActOnOpenMPDeclareSimdDirective(
3631 DeclGroupPtrTy DG, OMPDeclareSimdDeclAttr::BranchStateTy BS, Expr *Simdlen,
Alexey Bataevd93d3762016-04-12 09:35:56 +00003632 ArrayRef<Expr *> Uniforms, ArrayRef<Expr *> Aligneds,
Alexey Bataevecba70f2016-04-12 11:02:11 +00003633 ArrayRef<Expr *> Alignments, ArrayRef<Expr *> Linears,
3634 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR) {
Alexey Bataevd93d3762016-04-12 09:35:56 +00003635 assert(Aligneds.size() == Alignments.size());
Alexey Bataevecba70f2016-04-12 11:02:11 +00003636 assert(Linears.size() == LinModifiers.size());
3637 assert(Linears.size() == Steps.size());
Alexey Bataev587e1de2016-03-30 10:43:55 +00003638 if (!DG || DG.get().isNull())
3639 return DeclGroupPtrTy();
3640
3641 if (!DG.get().isSingleDecl()) {
Alexey Bataev20dfd772016-04-04 10:12:15 +00003642 Diag(SR.getBegin(), diag::err_omp_single_decl_in_declare_simd);
Alexey Bataev587e1de2016-03-30 10:43:55 +00003643 return DG;
3644 }
3645 auto *ADecl = DG.get().getSingleDecl();
3646 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(ADecl))
3647 ADecl = FTD->getTemplatedDecl();
3648
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003649 auto *FD = dyn_cast<FunctionDecl>(ADecl);
3650 if (!FD) {
3651 Diag(ADecl->getLocation(), diag::err_omp_function_expected);
Alexey Bataev587e1de2016-03-30 10:43:55 +00003652 return DeclGroupPtrTy();
3653 }
3654
Alexey Bataev2af33e32016-04-07 12:45:37 +00003655 // OpenMP [2.8.2, declare simd construct, Description]
3656 // The parameter of the simdlen clause must be a constant positive integer
3657 // expression.
3658 ExprResult SL;
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003659 if (Simdlen)
Alexey Bataev2af33e32016-04-07 12:45:37 +00003660 SL = VerifyPositiveIntegerConstantInClause(Simdlen, OMPC_simdlen);
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003661 // OpenMP [2.8.2, declare simd construct, Description]
3662 // The special this pointer can be used as if was one of the arguments to the
3663 // function in any of the linear, aligned, or uniform clauses.
3664 // The uniform clause declares one or more arguments to have an invariant
3665 // value for all concurrent invocations of the function in the execution of a
3666 // single SIMD loop.
Alexey Bataevecba70f2016-04-12 11:02:11 +00003667 llvm::DenseMap<Decl *, Expr *> UniformedArgs;
3668 Expr *UniformedLinearThis = nullptr;
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003669 for (auto *E : Uniforms) {
3670 E = E->IgnoreParenImpCasts();
3671 if (auto *DRE = dyn_cast<DeclRefExpr>(E))
3672 if (auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl()))
3673 if (FD->getNumParams() > PVD->getFunctionScopeIndex() &&
3674 FD->getParamDecl(PVD->getFunctionScopeIndex())
Alexey Bataevecba70f2016-04-12 11:02:11 +00003675 ->getCanonicalDecl() == PVD->getCanonicalDecl()) {
3676 UniformedArgs.insert(std::make_pair(PVD->getCanonicalDecl(), E));
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003677 continue;
Alexey Bataevecba70f2016-04-12 11:02:11 +00003678 }
3679 if (isa<CXXThisExpr>(E)) {
3680 UniformedLinearThis = E;
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003681 continue;
Alexey Bataevecba70f2016-04-12 11:02:11 +00003682 }
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003683 Diag(E->getExprLoc(), diag::err_omp_param_or_this_in_clause)
3684 << FD->getDeclName() << (isa<CXXMethodDecl>(ADecl) ? 1 : 0);
Alexey Bataev2af33e32016-04-07 12:45:37 +00003685 }
Alexey Bataevd93d3762016-04-12 09:35:56 +00003686 // OpenMP [2.8.2, declare simd construct, Description]
3687 // The aligned clause declares that the object to which each list item points
3688 // is aligned to the number of bytes expressed in the optional parameter of
3689 // the aligned clause.
3690 // The special this pointer can be used as if was one of the arguments to the
3691 // function in any of the linear, aligned, or uniform clauses.
3692 // The type of list items appearing in the aligned clause must be array,
3693 // pointer, reference to array, or reference to pointer.
3694 llvm::DenseMap<Decl *, Expr *> AlignedArgs;
3695 Expr *AlignedThis = nullptr;
3696 for (auto *E : Aligneds) {
3697 E = E->IgnoreParenImpCasts();
3698 if (auto *DRE = dyn_cast<DeclRefExpr>(E))
3699 if (auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
3700 auto *CanonPVD = PVD->getCanonicalDecl();
3701 if (FD->getNumParams() > PVD->getFunctionScopeIndex() &&
3702 FD->getParamDecl(PVD->getFunctionScopeIndex())
3703 ->getCanonicalDecl() == CanonPVD) {
3704 // OpenMP [2.8.1, simd construct, Restrictions]
3705 // A list-item cannot appear in more than one aligned clause.
3706 if (AlignedArgs.count(CanonPVD) > 0) {
3707 Diag(E->getExprLoc(), diag::err_omp_aligned_twice)
3708 << 1 << E->getSourceRange();
3709 Diag(AlignedArgs[CanonPVD]->getExprLoc(),
3710 diag::note_omp_explicit_dsa)
3711 << getOpenMPClauseName(OMPC_aligned);
3712 continue;
3713 }
3714 AlignedArgs[CanonPVD] = E;
3715 QualType QTy = PVD->getType()
3716 .getNonReferenceType()
3717 .getUnqualifiedType()
3718 .getCanonicalType();
3719 const Type *Ty = QTy.getTypePtrOrNull();
3720 if (!Ty || (!Ty->isArrayType() && !Ty->isPointerType())) {
3721 Diag(E->getExprLoc(), diag::err_omp_aligned_expected_array_or_ptr)
3722 << QTy << getLangOpts().CPlusPlus << E->getSourceRange();
3723 Diag(PVD->getLocation(), diag::note_previous_decl) << PVD;
3724 }
3725 continue;
3726 }
3727 }
3728 if (isa<CXXThisExpr>(E)) {
3729 if (AlignedThis) {
3730 Diag(E->getExprLoc(), diag::err_omp_aligned_twice)
3731 << 2 << E->getSourceRange();
3732 Diag(AlignedThis->getExprLoc(), diag::note_omp_explicit_dsa)
3733 << getOpenMPClauseName(OMPC_aligned);
3734 }
3735 AlignedThis = E;
3736 continue;
3737 }
3738 Diag(E->getExprLoc(), diag::err_omp_param_or_this_in_clause)
3739 << FD->getDeclName() << (isa<CXXMethodDecl>(ADecl) ? 1 : 0);
3740 }
3741 // The optional parameter of the aligned clause, alignment, must be a constant
3742 // positive integer expression. If no optional parameter is specified,
3743 // implementation-defined default alignments for SIMD instructions on the
3744 // target platforms are assumed.
3745 SmallVector<Expr *, 4> NewAligns;
3746 for (auto *E : Alignments) {
3747 ExprResult Align;
3748 if (E)
3749 Align = VerifyPositiveIntegerConstantInClause(E, OMPC_aligned);
3750 NewAligns.push_back(Align.get());
3751 }
Alexey Bataevecba70f2016-04-12 11:02:11 +00003752 // OpenMP [2.8.2, declare simd construct, Description]
3753 // The linear clause declares one or more list items to be private to a SIMD
3754 // lane and to have a linear relationship with respect to the iteration space
3755 // of a loop.
3756 // The special this pointer can be used as if was one of the arguments to the
3757 // function in any of the linear, aligned, or uniform clauses.
3758 // When a linear-step expression is specified in a linear clause it must be
3759 // either a constant integer expression or an integer-typed parameter that is
3760 // specified in a uniform clause on the directive.
3761 llvm::DenseMap<Decl *, Expr *> LinearArgs;
3762 const bool IsUniformedThis = UniformedLinearThis != nullptr;
3763 auto MI = LinModifiers.begin();
3764 for (auto *E : Linears) {
3765 auto LinKind = static_cast<OpenMPLinearClauseKind>(*MI);
3766 ++MI;
3767 E = E->IgnoreParenImpCasts();
3768 if (auto *DRE = dyn_cast<DeclRefExpr>(E))
3769 if (auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
3770 auto *CanonPVD = PVD->getCanonicalDecl();
3771 if (FD->getNumParams() > PVD->getFunctionScopeIndex() &&
3772 FD->getParamDecl(PVD->getFunctionScopeIndex())
3773 ->getCanonicalDecl() == CanonPVD) {
3774 // OpenMP [2.15.3.7, linear Clause, Restrictions]
3775 // A list-item cannot appear in more than one linear clause.
3776 if (LinearArgs.count(CanonPVD) > 0) {
3777 Diag(E->getExprLoc(), diag::err_omp_wrong_dsa)
3778 << getOpenMPClauseName(OMPC_linear)
3779 << getOpenMPClauseName(OMPC_linear) << E->getSourceRange();
3780 Diag(LinearArgs[CanonPVD]->getExprLoc(),
3781 diag::note_omp_explicit_dsa)
3782 << getOpenMPClauseName(OMPC_linear);
3783 continue;
3784 }
3785 // Each argument can appear in at most one uniform or linear clause.
3786 if (UniformedArgs.count(CanonPVD) > 0) {
3787 Diag(E->getExprLoc(), diag::err_omp_wrong_dsa)
3788 << getOpenMPClauseName(OMPC_linear)
3789 << getOpenMPClauseName(OMPC_uniform) << E->getSourceRange();
3790 Diag(UniformedArgs[CanonPVD]->getExprLoc(),
3791 diag::note_omp_explicit_dsa)
3792 << getOpenMPClauseName(OMPC_uniform);
3793 continue;
3794 }
3795 LinearArgs[CanonPVD] = E;
3796 if (E->isValueDependent() || E->isTypeDependent() ||
3797 E->isInstantiationDependent() ||
3798 E->containsUnexpandedParameterPack())
3799 continue;
3800 (void)CheckOpenMPLinearDecl(CanonPVD, E->getExprLoc(), LinKind,
3801 PVD->getOriginalType());
3802 continue;
3803 }
3804 }
3805 if (isa<CXXThisExpr>(E)) {
3806 if (UniformedLinearThis) {
3807 Diag(E->getExprLoc(), diag::err_omp_wrong_dsa)
3808 << getOpenMPClauseName(OMPC_linear)
3809 << getOpenMPClauseName(IsUniformedThis ? OMPC_uniform : OMPC_linear)
3810 << E->getSourceRange();
3811 Diag(UniformedLinearThis->getExprLoc(), diag::note_omp_explicit_dsa)
3812 << getOpenMPClauseName(IsUniformedThis ? OMPC_uniform
3813 : OMPC_linear);
3814 continue;
3815 }
3816 UniformedLinearThis = E;
3817 if (E->isValueDependent() || E->isTypeDependent() ||
3818 E->isInstantiationDependent() || E->containsUnexpandedParameterPack())
3819 continue;
3820 (void)CheckOpenMPLinearDecl(/*D=*/nullptr, E->getExprLoc(), LinKind,
3821 E->getType());
3822 continue;
3823 }
3824 Diag(E->getExprLoc(), diag::err_omp_param_or_this_in_clause)
3825 << FD->getDeclName() << (isa<CXXMethodDecl>(ADecl) ? 1 : 0);
3826 }
3827 Expr *Step = nullptr;
3828 Expr *NewStep = nullptr;
3829 SmallVector<Expr *, 4> NewSteps;
3830 for (auto *E : Steps) {
3831 // Skip the same step expression, it was checked already.
3832 if (Step == E || !E) {
3833 NewSteps.push_back(E ? NewStep : nullptr);
3834 continue;
3835 }
3836 Step = E;
3837 if (auto *DRE = dyn_cast<DeclRefExpr>(Step))
3838 if (auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
3839 auto *CanonPVD = PVD->getCanonicalDecl();
3840 if (UniformedArgs.count(CanonPVD) == 0) {
3841 Diag(Step->getExprLoc(), diag::err_omp_expected_uniform_param)
3842 << Step->getSourceRange();
3843 } else if (E->isValueDependent() || E->isTypeDependent() ||
3844 E->isInstantiationDependent() ||
3845 E->containsUnexpandedParameterPack() ||
3846 CanonPVD->getType()->hasIntegerRepresentation())
3847 NewSteps.push_back(Step);
3848 else {
3849 Diag(Step->getExprLoc(), diag::err_omp_expected_int_param)
3850 << Step->getSourceRange();
3851 }
3852 continue;
3853 }
3854 NewStep = Step;
3855 if (Step && !Step->isValueDependent() && !Step->isTypeDependent() &&
3856 !Step->isInstantiationDependent() &&
3857 !Step->containsUnexpandedParameterPack()) {
3858 NewStep = PerformOpenMPImplicitIntegerConversion(Step->getExprLoc(), Step)
3859 .get();
3860 if (NewStep)
3861 NewStep = VerifyIntegerConstantExpression(NewStep).get();
3862 }
3863 NewSteps.push_back(NewStep);
3864 }
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003865 auto *NewAttr = OMPDeclareSimdDeclAttr::CreateImplicit(
3866 Context, BS, SL.get(), const_cast<Expr **>(Uniforms.data()),
Alexey Bataevd93d3762016-04-12 09:35:56 +00003867 Uniforms.size(), const_cast<Expr **>(Aligneds.data()), Aligneds.size(),
Alexey Bataevecba70f2016-04-12 11:02:11 +00003868 const_cast<Expr **>(NewAligns.data()), NewAligns.size(),
3869 const_cast<Expr **>(Linears.data()), Linears.size(),
3870 const_cast<unsigned *>(LinModifiers.data()), LinModifiers.size(),
3871 NewSteps.data(), NewSteps.size(), SR);
Alexey Bataev587e1de2016-03-30 10:43:55 +00003872 ADecl->addAttr(NewAttr);
3873 return ConvertDeclToDeclGroup(ADecl);
3874}
3875
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003876StmtResult Sema::ActOnOpenMPParallelDirective(ArrayRef<OMPClause *> Clauses,
3877 Stmt *AStmt,
3878 SourceLocation StartLoc,
3879 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00003880 if (!AStmt)
3881 return StmtError();
3882
Alexey Bataev9959db52014-05-06 10:08:46 +00003883 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
3884 // 1.2.2 OpenMP Language Terminology
3885 // Structured block - An executable statement with a single entry at the
3886 // top and a single exit at the bottom.
3887 // The point of exit cannot be a branch out of the structured block.
3888 // longjmp() and throw() must not violate the entry/exit criteria.
3889 CS->getCapturedDecl()->setNothrow();
3890
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003891 getCurFunction()->setHasBranchProtectedScope();
3892
Alexey Bataev25e5b442015-09-15 12:52:43 +00003893 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
3894 DSAStack->isCancelRegion());
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00003895}
3896
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003897namespace {
3898/// \brief Helper class for checking canonical form of the OpenMP loops and
3899/// extracting iteration space of each loop in the loop nest, that will be used
3900/// for IR generation.
3901class OpenMPIterationSpaceChecker {
3902 /// \brief Reference to Sema.
3903 Sema &SemaRef;
3904 /// \brief A location for diagnostics (when there is no some better location).
3905 SourceLocation DefaultLoc;
3906 /// \brief A location for diagnostics (when increment is not compatible).
3907 SourceLocation ConditionLoc;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003908 /// \brief A source location for referring to loop init later.
3909 SourceRange InitSrcRange;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003910 /// \brief A source location for referring to condition later.
3911 SourceRange ConditionSrcRange;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003912 /// \brief A source location for referring to increment later.
3913 SourceRange IncrementSrcRange;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003914 /// \brief Loop variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003915 ValueDecl *LCDecl = nullptr;
Alexey Bataevcaf09b02014-07-25 06:27:47 +00003916 /// \brief Reference to loop variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003917 Expr *LCRef = nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003918 /// \brief Lower bound (initializer for the var).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003919 Expr *LB = nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003920 /// \brief Upper bound.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003921 Expr *UB = nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003922 /// \brief Loop step (increment).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003923 Expr *Step = nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003924 /// \brief This flag is true when condition is one of:
3925 /// Var < UB
3926 /// Var <= UB
3927 /// UB > Var
3928 /// UB >= Var
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003929 bool TestIsLessOp = false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003930 /// \brief This flag is true when condition is strict ( < or > ).
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003931 bool TestIsStrictOp = false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003932 /// \brief This flag is true when step is subtracted on each iteration.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003933 bool SubtractStep = false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003934
3935public:
3936 OpenMPIterationSpaceChecker(Sema &SemaRef, SourceLocation DefaultLoc)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003937 : SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc) {}
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003938 /// \brief Check init-expr for canonical loop form and save loop counter
3939 /// variable - #Var and its initialization value - #LB.
Alexey Bataev9c821032015-04-30 04:23:23 +00003940 bool CheckInit(Stmt *S, bool EmitDiags = true);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003941 /// \brief Check test-expr for canonical form, save upper-bound (#UB), flags
3942 /// for less/greater and for strict/non-strict comparison.
3943 bool CheckCond(Expr *S);
3944 /// \brief Check incr-expr for canonical loop form and return true if it
3945 /// does not conform, otherwise save loop step (#Step).
3946 bool CheckInc(Expr *S);
3947 /// \brief Return the loop counter variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003948 ValueDecl *GetLoopDecl() const { return LCDecl; }
Alexey Bataevcaf09b02014-07-25 06:27:47 +00003949 /// \brief Return the reference expression to loop counter variable.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003950 Expr *GetLoopDeclRefExpr() const { return LCRef; }
Alexander Musmana5f070a2014-10-01 06:03:56 +00003951 /// \brief Source range of the loop init.
3952 SourceRange GetInitSrcRange() const { return InitSrcRange; }
3953 /// \brief Source range of the loop condition.
3954 SourceRange GetConditionSrcRange() const { return ConditionSrcRange; }
3955 /// \brief Source range of the loop increment.
3956 SourceRange GetIncrementSrcRange() const { return IncrementSrcRange; }
3957 /// \brief True if the step should be subtracted.
3958 bool ShouldSubtractStep() const { return SubtractStep; }
3959 /// \brief Build the expression to calculate the number of iterations.
Alexey Bataev5a3af132016-03-29 08:58:54 +00003960 Expr *
3961 BuildNumIterations(Scope *S, const bool LimitedType,
3962 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const;
Alexey Bataev62dbb972015-04-22 11:59:37 +00003963 /// \brief Build the precondition expression for the loops.
Alexey Bataev5a3af132016-03-29 08:58:54 +00003964 Expr *BuildPreCond(Scope *S, Expr *Cond,
3965 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003966 /// \brief Build reference expression to the counter be used for codegen.
Alexey Bataev5dff95c2016-04-22 03:56:56 +00003967 DeclRefExpr *BuildCounterVar(llvm::MapVector<Expr *, DeclRefExpr *> &Captures,
3968 DSAStackTy &DSA) const;
Alexey Bataeva8899172015-08-06 12:30:57 +00003969 /// \brief Build reference expression to the private counter be used for
3970 /// codegen.
3971 Expr *BuildPrivateCounterVar() const;
Alexander Musmana5f070a2014-10-01 06:03:56 +00003972 /// \brief Build initization of the counter be used for codegen.
3973 Expr *BuildCounterInit() const;
3974 /// \brief Build step of the counter be used for codegen.
3975 Expr *BuildCounterStep() const;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003976 /// \brief Return true if any expression is dependent.
3977 bool Dependent() const;
3978
3979private:
3980 /// \brief Check the right-hand side of an assignment in the increment
3981 /// expression.
3982 bool CheckIncRHS(Expr *RHS);
3983 /// \brief Helper to set loop counter variable and its initializer.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003984 bool SetLCDeclAndLB(ValueDecl *NewLCDecl, Expr *NewDeclRefExpr, Expr *NewLB);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003985 /// \brief Helper to set upper bound.
Craig Toppere335f252015-10-04 04:53:55 +00003986 bool SetUB(Expr *NewUB, bool LessOp, bool StrictOp, SourceRange SR,
Craig Topper9cd5e4f2015-09-21 01:23:32 +00003987 SourceLocation SL);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003988 /// \brief Helper to set loop increment.
3989 bool SetStep(Expr *NewStep, bool Subtract);
3990};
3991
3992bool OpenMPIterationSpaceChecker::Dependent() const {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003993 if (!LCDecl) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003994 assert(!LB && !UB && !Step);
3995 return false;
3996 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00003997 return LCDecl->getType()->isDependentType() ||
3998 (LB && LB->isValueDependent()) || (UB && UB->isValueDependent()) ||
3999 (Step && Step->isValueDependent());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004000}
4001
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004002static Expr *getExprAsWritten(Expr *E) {
Alexey Bataev3bed68c2015-07-15 12:14:07 +00004003 if (auto *ExprTemp = dyn_cast<ExprWithCleanups>(E))
4004 E = ExprTemp->getSubExpr();
4005
4006 if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E))
4007 E = MTE->GetTemporaryExpr();
4008
4009 while (auto *Binder = dyn_cast<CXXBindTemporaryExpr>(E))
4010 E = Binder->getSubExpr();
4011
4012 if (auto *ICE = dyn_cast<ImplicitCastExpr>(E))
4013 E = ICE->getSubExprAsWritten();
4014 return E->IgnoreParens();
4015}
4016
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004017bool OpenMPIterationSpaceChecker::SetLCDeclAndLB(ValueDecl *NewLCDecl,
4018 Expr *NewLCRefExpr,
4019 Expr *NewLB) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004020 // State consistency checking to ensure correct usage.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004021 assert(LCDecl == nullptr && LB == nullptr && LCRef == nullptr &&
Alexey Bataevcaf09b02014-07-25 06:27:47 +00004022 UB == nullptr && Step == nullptr && !TestIsLessOp && !TestIsStrictOp);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004023 if (!NewLCDecl || !NewLB)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004024 return true;
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004025 LCDecl = getCanonicalDecl(NewLCDecl);
4026 LCRef = NewLCRefExpr;
Alexey Bataev3bed68c2015-07-15 12:14:07 +00004027 if (auto *CE = dyn_cast_or_null<CXXConstructExpr>(NewLB))
4028 if (const CXXConstructorDecl *Ctor = CE->getConstructor())
Alexey Bataev0d08a7f2015-07-16 04:19:43 +00004029 if ((Ctor->isCopyOrMoveConstructor() ||
4030 Ctor->isConvertingConstructor(/*AllowExplicit=*/false)) &&
4031 CE->getNumArgs() > 0 && CE->getArg(0) != nullptr)
Alexey Bataev3bed68c2015-07-15 12:14:07 +00004032 NewLB = CE->getArg(0)->IgnoreParenImpCasts();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004033 LB = NewLB;
4034 return false;
4035}
4036
4037bool OpenMPIterationSpaceChecker::SetUB(Expr *NewUB, bool LessOp, bool StrictOp,
Craig Toppere335f252015-10-04 04:53:55 +00004038 SourceRange SR, SourceLocation SL) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004039 // State consistency checking to ensure correct usage.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004040 assert(LCDecl != nullptr && LB != nullptr && UB == nullptr &&
4041 Step == nullptr && !TestIsLessOp && !TestIsStrictOp);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004042 if (!NewUB)
4043 return true;
4044 UB = NewUB;
4045 TestIsLessOp = LessOp;
4046 TestIsStrictOp = StrictOp;
4047 ConditionSrcRange = SR;
4048 ConditionLoc = SL;
4049 return false;
4050}
4051
4052bool OpenMPIterationSpaceChecker::SetStep(Expr *NewStep, bool Subtract) {
4053 // State consistency checking to ensure correct usage.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004054 assert(LCDecl != nullptr && LB != nullptr && Step == nullptr);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004055 if (!NewStep)
4056 return true;
4057 if (!NewStep->isValueDependent()) {
4058 // Check that the step is integer expression.
4059 SourceLocation StepLoc = NewStep->getLocStart();
4060 ExprResult Val =
4061 SemaRef.PerformOpenMPImplicitIntegerConversion(StepLoc, NewStep);
4062 if (Val.isInvalid())
4063 return true;
4064 NewStep = Val.get();
4065
4066 // OpenMP [2.6, Canonical Loop Form, Restrictions]
4067 // If test-expr is of form var relational-op b and relational-op is < or
4068 // <= then incr-expr must cause var to increase on each iteration of the
4069 // loop. If test-expr is of form var relational-op b and relational-op is
4070 // > or >= then incr-expr must cause var to decrease on each iteration of
4071 // the loop.
4072 // If test-expr is of form b relational-op var and relational-op is < or
4073 // <= then incr-expr must cause var to decrease on each iteration of the
4074 // loop. If test-expr is of form b relational-op var and relational-op is
4075 // > or >= then incr-expr must cause var to increase on each iteration of
4076 // the loop.
4077 llvm::APSInt Result;
4078 bool IsConstant = NewStep->isIntegerConstantExpr(Result, SemaRef.Context);
4079 bool IsUnsigned = !NewStep->getType()->hasSignedIntegerRepresentation();
4080 bool IsConstNeg =
4081 IsConstant && Result.isSigned() && (Subtract != Result.isNegative());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004082 bool IsConstPos =
4083 IsConstant && Result.isSigned() && (Subtract == Result.isNegative());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004084 bool IsConstZero = IsConstant && !Result.getBoolValue();
4085 if (UB && (IsConstZero ||
4086 (TestIsLessOp ? (IsConstNeg || (IsUnsigned && Subtract))
Alexander Musmana5f070a2014-10-01 06:03:56 +00004087 : (IsConstPos || (IsUnsigned && !Subtract))))) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004088 SemaRef.Diag(NewStep->getExprLoc(),
4089 diag::err_omp_loop_incr_not_compatible)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004090 << LCDecl << TestIsLessOp << NewStep->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004091 SemaRef.Diag(ConditionLoc,
4092 diag::note_omp_loop_cond_requres_compatible_incr)
4093 << TestIsLessOp << ConditionSrcRange;
4094 return true;
4095 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004096 if (TestIsLessOp == Subtract) {
4097 NewStep = SemaRef.CreateBuiltinUnaryOp(NewStep->getExprLoc(), UO_Minus,
4098 NewStep).get();
4099 Subtract = !Subtract;
4100 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004101 }
4102
4103 Step = NewStep;
4104 SubtractStep = Subtract;
4105 return false;
4106}
4107
Alexey Bataev9c821032015-04-30 04:23:23 +00004108bool OpenMPIterationSpaceChecker::CheckInit(Stmt *S, bool EmitDiags) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004109 // Check init-expr for canonical loop form and save loop counter
4110 // variable - #Var and its initialization value - #LB.
4111 // OpenMP [2.6] Canonical loop form. init-expr may be one of the following:
4112 // var = lb
4113 // integer-type var = lb
4114 // random-access-iterator-type var = lb
4115 // pointer-type var = lb
4116 //
4117 if (!S) {
Alexey Bataev9c821032015-04-30 04:23:23 +00004118 if (EmitDiags) {
4119 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_init);
4120 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004121 return true;
4122 }
Tim Shen4a05bb82016-06-21 20:29:17 +00004123 if (auto *ExprTemp = dyn_cast<ExprWithCleanups>(S))
4124 if (!ExprTemp->cleanupsHaveSideEffects())
4125 S = ExprTemp->getSubExpr();
4126
Alexander Musmana5f070a2014-10-01 06:03:56 +00004127 InitSrcRange = S->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004128 if (Expr *E = dyn_cast<Expr>(S))
4129 S = E->IgnoreParens();
4130 if (auto BO = dyn_cast<BinaryOperator>(S)) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004131 if (BO->getOpcode() == BO_Assign) {
4132 auto *LHS = BO->getLHS()->IgnoreParens();
4133 if (auto *DRE = dyn_cast<DeclRefExpr>(LHS)) {
4134 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(DRE->getDecl()))
4135 if (auto *ME = dyn_cast<MemberExpr>(getExprAsWritten(CED->getInit())))
4136 return SetLCDeclAndLB(ME->getMemberDecl(), ME, BO->getRHS());
4137 return SetLCDeclAndLB(DRE->getDecl(), DRE, BO->getRHS());
4138 }
4139 if (auto *ME = dyn_cast<MemberExpr>(LHS)) {
4140 if (ME->isArrow() &&
4141 isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()))
4142 return SetLCDeclAndLB(ME->getMemberDecl(), ME, BO->getRHS());
4143 }
4144 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004145 } else if (auto DS = dyn_cast<DeclStmt>(S)) {
4146 if (DS->isSingleDecl()) {
4147 if (auto Var = dyn_cast_or_null<VarDecl>(DS->getSingleDecl())) {
Alexey Bataeva8899172015-08-06 12:30:57 +00004148 if (Var->hasInit() && !Var->getType()->isReferenceType()) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004149 // Accept non-canonical init form here but emit ext. warning.
Alexey Bataev9c821032015-04-30 04:23:23 +00004150 if (Var->getInitStyle() != VarDecl::CInit && EmitDiags)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004151 SemaRef.Diag(S->getLocStart(),
4152 diag::ext_omp_loop_not_canonical_init)
4153 << S->getSourceRange();
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004154 return SetLCDeclAndLB(Var, nullptr, Var->getInit());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004155 }
4156 }
4157 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004158 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
4159 if (CE->getOperator() == OO_Equal) {
4160 auto *LHS = CE->getArg(0);
4161 if (auto DRE = dyn_cast<DeclRefExpr>(LHS)) {
4162 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(DRE->getDecl()))
4163 if (auto *ME = dyn_cast<MemberExpr>(getExprAsWritten(CED->getInit())))
4164 return SetLCDeclAndLB(ME->getMemberDecl(), ME, BO->getRHS());
4165 return SetLCDeclAndLB(DRE->getDecl(), DRE, CE->getArg(1));
4166 }
4167 if (auto *ME = dyn_cast<MemberExpr>(LHS)) {
4168 if (ME->isArrow() &&
4169 isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()))
4170 return SetLCDeclAndLB(ME->getMemberDecl(), ME, BO->getRHS());
4171 }
4172 }
4173 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004174
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004175 if (Dependent() || SemaRef.CurContext->isDependentContext())
4176 return false;
Alexey Bataev9c821032015-04-30 04:23:23 +00004177 if (EmitDiags) {
4178 SemaRef.Diag(S->getLocStart(), diag::err_omp_loop_not_canonical_init)
4179 << S->getSourceRange();
4180 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004181 return true;
4182}
4183
Alexey Bataev23b69422014-06-18 07:08:49 +00004184/// \brief Ignore parenthesizes, implicit casts, copy constructor and return the
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004185/// variable (which may be the loop variable) if possible.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004186static const ValueDecl *GetInitLCDecl(Expr *E) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004187 if (!E)
Craig Topper4b566922014-06-09 02:04:02 +00004188 return nullptr;
Alexey Bataev3bed68c2015-07-15 12:14:07 +00004189 E = getExprAsWritten(E);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004190 if (auto *CE = dyn_cast_or_null<CXXConstructExpr>(E))
4191 if (const CXXConstructorDecl *Ctor = CE->getConstructor())
Alexey Bataev0d08a7f2015-07-16 04:19:43 +00004192 if ((Ctor->isCopyOrMoveConstructor() ||
4193 Ctor->isConvertingConstructor(/*AllowExplicit=*/false)) &&
4194 CE->getNumArgs() > 0 && CE->getArg(0) != nullptr)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004195 E = CE->getArg(0)->IgnoreParenImpCasts();
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004196 if (auto *DRE = dyn_cast_or_null<DeclRefExpr>(E)) {
4197 if (auto *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
4198 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(VD))
4199 if (auto *ME = dyn_cast<MemberExpr>(getExprAsWritten(CED->getInit())))
4200 return getCanonicalDecl(ME->getMemberDecl());
4201 return getCanonicalDecl(VD);
4202 }
4203 }
4204 if (auto *ME = dyn_cast_or_null<MemberExpr>(E))
4205 if (ME->isArrow() && isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()))
4206 return getCanonicalDecl(ME->getMemberDecl());
4207 return nullptr;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004208}
4209
4210bool OpenMPIterationSpaceChecker::CheckCond(Expr *S) {
4211 // Check test-expr for canonical form, save upper-bound UB, flags for
4212 // less/greater and for strict/non-strict comparison.
4213 // OpenMP [2.6] Canonical loop form. Test-expr may be one of the following:
4214 // var relational-op b
4215 // b relational-op var
4216 //
4217 if (!S) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004218 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_cond) << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004219 return true;
4220 }
Alexey Bataev3bed68c2015-07-15 12:14:07 +00004221 S = getExprAsWritten(S);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004222 SourceLocation CondLoc = S->getLocStart();
4223 if (auto BO = dyn_cast<BinaryOperator>(S)) {
4224 if (BO->isRelationalOp()) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004225 if (GetInitLCDecl(BO->getLHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004226 return SetUB(BO->getRHS(),
4227 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_LE),
4228 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
4229 BO->getSourceRange(), BO->getOperatorLoc());
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004230 if (GetInitLCDecl(BO->getRHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004231 return SetUB(BO->getLHS(),
4232 (BO->getOpcode() == BO_GT || BO->getOpcode() == BO_GE),
4233 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
4234 BO->getSourceRange(), BO->getOperatorLoc());
4235 }
4236 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
4237 if (CE->getNumArgs() == 2) {
4238 auto Op = CE->getOperator();
4239 switch (Op) {
4240 case OO_Greater:
4241 case OO_GreaterEqual:
4242 case OO_Less:
4243 case OO_LessEqual:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004244 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004245 return SetUB(CE->getArg(1), Op == OO_Less || Op == OO_LessEqual,
4246 Op == OO_Less || Op == OO_Greater, CE->getSourceRange(),
4247 CE->getOperatorLoc());
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004248 if (GetInitLCDecl(CE->getArg(1)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004249 return SetUB(CE->getArg(0), Op == OO_Greater || Op == OO_GreaterEqual,
4250 Op == OO_Less || Op == OO_Greater, CE->getSourceRange(),
4251 CE->getOperatorLoc());
4252 break;
4253 default:
4254 break;
4255 }
4256 }
4257 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004258 if (Dependent() || SemaRef.CurContext->isDependentContext())
4259 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004260 SemaRef.Diag(CondLoc, diag::err_omp_loop_not_canonical_cond)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004261 << S->getSourceRange() << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004262 return true;
4263}
4264
4265bool OpenMPIterationSpaceChecker::CheckIncRHS(Expr *RHS) {
4266 // RHS of canonical loop form increment can be:
4267 // var + incr
4268 // incr + var
4269 // var - incr
4270 //
4271 RHS = RHS->IgnoreParenImpCasts();
4272 if (auto BO = dyn_cast<BinaryOperator>(RHS)) {
4273 if (BO->isAdditiveOp()) {
4274 bool IsAdd = BO->getOpcode() == BO_Add;
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004275 if (GetInitLCDecl(BO->getLHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004276 return SetStep(BO->getRHS(), !IsAdd);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004277 if (IsAdd && GetInitLCDecl(BO->getRHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004278 return SetStep(BO->getLHS(), false);
4279 }
4280 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(RHS)) {
4281 bool IsAdd = CE->getOperator() == OO_Plus;
4282 if ((IsAdd || CE->getOperator() == OO_Minus) && CE->getNumArgs() == 2) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004283 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004284 return SetStep(CE->getArg(1), !IsAdd);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004285 if (IsAdd && GetInitLCDecl(CE->getArg(1)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004286 return SetStep(CE->getArg(0), false);
4287 }
4288 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004289 if (Dependent() || SemaRef.CurContext->isDependentContext())
4290 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004291 SemaRef.Diag(RHS->getLocStart(), diag::err_omp_loop_not_canonical_incr)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004292 << RHS->getSourceRange() << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004293 return true;
4294}
4295
4296bool OpenMPIterationSpaceChecker::CheckInc(Expr *S) {
4297 // Check incr-expr for canonical loop form and return true if it
4298 // does not conform.
4299 // OpenMP [2.6] Canonical loop form. Test-expr may be one of the following:
4300 // ++var
4301 // var++
4302 // --var
4303 // var--
4304 // var += incr
4305 // var -= incr
4306 // var = var + incr
4307 // var = incr + var
4308 // var = var - incr
4309 //
4310 if (!S) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004311 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_incr) << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004312 return true;
4313 }
Tim Shen4a05bb82016-06-21 20:29:17 +00004314 if (auto *ExprTemp = dyn_cast<ExprWithCleanups>(S))
4315 if (!ExprTemp->cleanupsHaveSideEffects())
4316 S = ExprTemp->getSubExpr();
4317
Alexander Musmana5f070a2014-10-01 06:03:56 +00004318 IncrementSrcRange = S->getSourceRange();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004319 S = S->IgnoreParens();
4320 if (auto UO = dyn_cast<UnaryOperator>(S)) {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004321 if (UO->isIncrementDecrementOp() &&
4322 GetInitLCDecl(UO->getSubExpr()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004323 return SetStep(
4324 SemaRef.ActOnIntegerConstant(UO->getLocStart(),
4325 (UO->isDecrementOp() ? -1 : 1)).get(),
4326 false);
4327 } else if (auto BO = dyn_cast<BinaryOperator>(S)) {
4328 switch (BO->getOpcode()) {
4329 case BO_AddAssign:
4330 case BO_SubAssign:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004331 if (GetInitLCDecl(BO->getLHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004332 return SetStep(BO->getRHS(), BO->getOpcode() == BO_SubAssign);
4333 break;
4334 case BO_Assign:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004335 if (GetInitLCDecl(BO->getLHS()) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004336 return CheckIncRHS(BO->getRHS());
4337 break;
4338 default:
4339 break;
4340 }
4341 } else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
4342 switch (CE->getOperator()) {
4343 case OO_PlusPlus:
4344 case OO_MinusMinus:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004345 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004346 return SetStep(
4347 SemaRef.ActOnIntegerConstant(
4348 CE->getLocStart(),
4349 ((CE->getOperator() == OO_MinusMinus) ? -1 : 1)).get(),
4350 false);
4351 break;
4352 case OO_PlusEqual:
4353 case OO_MinusEqual:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004354 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004355 return SetStep(CE->getArg(1), CE->getOperator() == OO_MinusEqual);
4356 break;
4357 case OO_Equal:
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004358 if (GetInitLCDecl(CE->getArg(0)) == LCDecl)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004359 return CheckIncRHS(CE->getArg(1));
4360 break;
4361 default:
4362 break;
4363 }
4364 }
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004365 if (Dependent() || SemaRef.CurContext->isDependentContext())
4366 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004367 SemaRef.Diag(S->getLocStart(), diag::err_omp_loop_not_canonical_incr)
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004368 << S->getSourceRange() << LCDecl;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004369 return true;
4370}
Alexander Musmana5f070a2014-10-01 06:03:56 +00004371
Alexey Bataev5a3af132016-03-29 08:58:54 +00004372static ExprResult
4373tryBuildCapture(Sema &SemaRef, Expr *Capture,
4374 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) {
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00004375 if (SemaRef.CurContext->isDependentContext())
4376 return ExprResult(Capture);
Alexey Bataev5a3af132016-03-29 08:58:54 +00004377 if (Capture->isEvaluatable(SemaRef.Context, Expr::SE_AllowSideEffects))
4378 return SemaRef.PerformImplicitConversion(
4379 Capture->IgnoreImpCasts(), Capture->getType(), Sema::AA_Converting,
4380 /*AllowExplicit=*/true);
4381 auto I = Captures.find(Capture);
4382 if (I != Captures.end())
4383 return buildCapture(SemaRef, Capture, I->second);
4384 DeclRefExpr *Ref = nullptr;
4385 ExprResult Res = buildCapture(SemaRef, Capture, Ref);
4386 Captures[Capture] = Ref;
4387 return Res;
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004388}
4389
Alexander Musmana5f070a2014-10-01 06:03:56 +00004390/// \brief Build the expression to calculate the number of iterations.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004391Expr *OpenMPIterationSpaceChecker::BuildNumIterations(
4392 Scope *S, const bool LimitedType,
4393 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const {
Alexander Musmana5f070a2014-10-01 06:03:56 +00004394 ExprResult Diff;
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004395 auto VarType = LCDecl->getType().getNonReferenceType();
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004396 if (VarType->isIntegerType() || VarType->isPointerType() ||
Alexander Musmana5f070a2014-10-01 06:03:56 +00004397 SemaRef.getLangOpts().CPlusPlus) {
4398 // Upper - Lower
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004399 auto *UBExpr = TestIsLessOp ? UB : LB;
4400 auto *LBExpr = TestIsLessOp ? LB : UB;
Alexey Bataev5a3af132016-03-29 08:58:54 +00004401 Expr *Upper = tryBuildCapture(SemaRef, UBExpr, Captures).get();
4402 Expr *Lower = tryBuildCapture(SemaRef, LBExpr, Captures).get();
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004403 if (!Upper || !Lower)
4404 return nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004405
4406 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower);
4407
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004408 if (!Diff.isUsable() && VarType->getAsCXXRecordDecl()) {
Alexander Musmana5f070a2014-10-01 06:03:56 +00004409 // BuildBinOp already emitted error, this one is to point user to upper
4410 // and lower bound, and to tell what is passed to 'operator-'.
4411 SemaRef.Diag(Upper->getLocStart(), diag::err_omp_loop_diff_cxx)
4412 << Upper->getSourceRange() << Lower->getSourceRange();
4413 return nullptr;
4414 }
4415 }
4416
4417 if (!Diff.isUsable())
4418 return nullptr;
4419
4420 // Upper - Lower [- 1]
4421 if (TestIsStrictOp)
4422 Diff = SemaRef.BuildBinOp(
4423 S, DefaultLoc, BO_Sub, Diff.get(),
4424 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
4425 if (!Diff.isUsable())
4426 return nullptr;
4427
4428 // Upper - Lower [- 1] + Step
Alexey Bataev5a3af132016-03-29 08:58:54 +00004429 auto NewStep = tryBuildCapture(SemaRef, Step, Captures);
4430 if (!NewStep.isUsable())
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004431 return nullptr;
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004432 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Add, Diff.get(), NewStep.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004433 if (!Diff.isUsable())
4434 return nullptr;
4435
4436 // Parentheses (for dumping/debugging purposes only).
4437 Diff = SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, Diff.get());
4438 if (!Diff.isUsable())
4439 return nullptr;
4440
4441 // (Upper - Lower [- 1] + Step) / Step
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004442 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Div, Diff.get(), NewStep.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004443 if (!Diff.isUsable())
4444 return nullptr;
4445
Alexander Musman174b3ca2014-10-06 11:16:29 +00004446 // OpenMP runtime requires 32-bit or 64-bit loop variables.
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004447 QualType Type = Diff.get()->getType();
4448 auto &C = SemaRef.Context;
4449 bool UseVarType = VarType->hasIntegerRepresentation() &&
4450 C.getTypeSize(Type) > C.getTypeSize(VarType);
4451 if (!Type->isIntegerType() || UseVarType) {
4452 unsigned NewSize =
4453 UseVarType ? C.getTypeSize(VarType) : C.getTypeSize(Type);
4454 bool IsSigned = UseVarType ? VarType->hasSignedIntegerRepresentation()
4455 : Type->hasSignedIntegerRepresentation();
4456 Type = C.getIntTypeForBitwidth(NewSize, IsSigned);
Alexey Bataev11481f52016-02-17 10:29:05 +00004457 if (!SemaRef.Context.hasSameType(Diff.get()->getType(), Type)) {
4458 Diff = SemaRef.PerformImplicitConversion(
4459 Diff.get(), Type, Sema::AA_Converting, /*AllowExplicit=*/true);
4460 if (!Diff.isUsable())
4461 return nullptr;
4462 }
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004463 }
Alexander Musman174b3ca2014-10-06 11:16:29 +00004464 if (LimitedType) {
Alexander Musman174b3ca2014-10-06 11:16:29 +00004465 unsigned NewSize = (C.getTypeSize(Type) > 32) ? 64 : 32;
4466 if (NewSize != C.getTypeSize(Type)) {
4467 if (NewSize < C.getTypeSize(Type)) {
4468 assert(NewSize == 64 && "incorrect loop var size");
4469 SemaRef.Diag(DefaultLoc, diag::warn_omp_loop_64_bit_var)
4470 << InitSrcRange << ConditionSrcRange;
4471 }
4472 QualType NewType = C.getIntTypeForBitwidth(
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004473 NewSize, Type->hasSignedIntegerRepresentation() ||
4474 C.getTypeSize(Type) < NewSize);
Alexey Bataev11481f52016-02-17 10:29:05 +00004475 if (!SemaRef.Context.hasSameType(Diff.get()->getType(), NewType)) {
4476 Diff = SemaRef.PerformImplicitConversion(Diff.get(), NewType,
4477 Sema::AA_Converting, true);
4478 if (!Diff.isUsable())
4479 return nullptr;
4480 }
Alexander Musman174b3ca2014-10-06 11:16:29 +00004481 }
4482 }
4483
Alexander Musmana5f070a2014-10-01 06:03:56 +00004484 return Diff.get();
4485}
4486
Alexey Bataev5a3af132016-03-29 08:58:54 +00004487Expr *OpenMPIterationSpaceChecker::BuildPreCond(
4488 Scope *S, Expr *Cond,
4489 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) const {
Alexey Bataev62dbb972015-04-22 11:59:37 +00004490 // Try to build LB <op> UB, where <op> is <, >, <=, or >=.
4491 bool Suppress = SemaRef.getDiagnostics().getSuppressAllDiagnostics();
4492 SemaRef.getDiagnostics().setSuppressAllDiagnostics(/*Val=*/true);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004493
Alexey Bataev5a3af132016-03-29 08:58:54 +00004494 auto NewLB = tryBuildCapture(SemaRef, LB, Captures);
4495 auto NewUB = tryBuildCapture(SemaRef, UB, Captures);
4496 if (!NewLB.isUsable() || !NewUB.isUsable())
4497 return nullptr;
4498
Alexey Bataev62dbb972015-04-22 11:59:37 +00004499 auto CondExpr = SemaRef.BuildBinOp(
4500 S, DefaultLoc, TestIsLessOp ? (TestIsStrictOp ? BO_LT : BO_LE)
4501 : (TestIsStrictOp ? BO_GT : BO_GE),
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004502 NewLB.get(), NewUB.get());
Alexey Bataev3bed68c2015-07-15 12:14:07 +00004503 if (CondExpr.isUsable()) {
Alexey Bataev5a3af132016-03-29 08:58:54 +00004504 if (!SemaRef.Context.hasSameUnqualifiedType(CondExpr.get()->getType(),
4505 SemaRef.Context.BoolTy))
Alexey Bataev11481f52016-02-17 10:29:05 +00004506 CondExpr = SemaRef.PerformImplicitConversion(
4507 CondExpr.get(), SemaRef.Context.BoolTy, /*Action=*/Sema::AA_Casting,
4508 /*AllowExplicit=*/true);
Alexey Bataev3bed68c2015-07-15 12:14:07 +00004509 }
Alexey Bataev62dbb972015-04-22 11:59:37 +00004510 SemaRef.getDiagnostics().setSuppressAllDiagnostics(Suppress);
4511 // Otherwise use original loop conditon and evaluate it in runtime.
4512 return CondExpr.isUsable() ? CondExpr.get() : Cond;
4513}
4514
Alexander Musmana5f070a2014-10-01 06:03:56 +00004515/// \brief Build reference expression to the counter be used for codegen.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004516DeclRefExpr *OpenMPIterationSpaceChecker::BuildCounterVar(
Alexey Bataev5dff95c2016-04-22 03:56:56 +00004517 llvm::MapVector<Expr *, DeclRefExpr *> &Captures, DSAStackTy &DSA) const {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004518 auto *VD = dyn_cast<VarDecl>(LCDecl);
4519 if (!VD) {
4520 VD = SemaRef.IsOpenMPCapturedDecl(LCDecl);
4521 auto *Ref = buildDeclRefExpr(
4522 SemaRef, VD, VD->getType().getNonReferenceType(), DefaultLoc);
Alexey Bataev5dff95c2016-04-22 03:56:56 +00004523 DSAStackTy::DSAVarData Data = DSA.getTopDSA(LCDecl, /*FromParent=*/false);
4524 // If the loop control decl is explicitly marked as private, do not mark it
4525 // as captured again.
4526 if (!isOpenMPPrivate(Data.CKind) || !Data.RefExpr)
4527 Captures.insert(std::make_pair(LCRef, Ref));
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004528 return Ref;
4529 }
4530 return buildDeclRefExpr(SemaRef, VD, VD->getType().getNonReferenceType(),
Alexey Bataeva8899172015-08-06 12:30:57 +00004531 DefaultLoc);
4532}
4533
4534Expr *OpenMPIterationSpaceChecker::BuildPrivateCounterVar() const {
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004535 if (LCDecl && !LCDecl->isInvalidDecl()) {
4536 auto Type = LCDecl->getType().getNonReferenceType();
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00004537 auto *PrivateVar =
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004538 buildVarDecl(SemaRef, DefaultLoc, Type, LCDecl->getName(),
4539 LCDecl->hasAttrs() ? &LCDecl->getAttrs() : nullptr);
Alexey Bataeva8899172015-08-06 12:30:57 +00004540 if (PrivateVar->isInvalidDecl())
4541 return nullptr;
4542 return buildDeclRefExpr(SemaRef, PrivateVar, Type, DefaultLoc);
4543 }
4544 return nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004545}
4546
4547/// \brief Build initization of the counter be used for codegen.
4548Expr *OpenMPIterationSpaceChecker::BuildCounterInit() const { return LB; }
4549
4550/// \brief Build step of the counter be used for codegen.
4551Expr *OpenMPIterationSpaceChecker::BuildCounterStep() const { return Step; }
4552
4553/// \brief Iteration space of a single for loop.
Alexey Bataev8b427062016-05-25 12:36:08 +00004554struct LoopIterationSpace final {
Alexey Bataev62dbb972015-04-22 11:59:37 +00004555 /// \brief Condition of the loop.
Alexey Bataev8b427062016-05-25 12:36:08 +00004556 Expr *PreCond = nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004557 /// \brief This expression calculates the number of iterations in the loop.
4558 /// It is always possible to calculate it before starting the loop.
Alexey Bataev8b427062016-05-25 12:36:08 +00004559 Expr *NumIterations = nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004560 /// \brief The loop counter variable.
Alexey Bataev8b427062016-05-25 12:36:08 +00004561 Expr *CounterVar = nullptr;
Alexey Bataeva8899172015-08-06 12:30:57 +00004562 /// \brief Private loop counter variable.
Alexey Bataev8b427062016-05-25 12:36:08 +00004563 Expr *PrivateCounterVar = nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004564 /// \brief This is initializer for the initial value of #CounterVar.
Alexey Bataev8b427062016-05-25 12:36:08 +00004565 Expr *CounterInit = nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004566 /// \brief This is step for the #CounterVar used to generate its update:
4567 /// #CounterVar = #CounterInit + #CounterStep * CurrentIteration.
Alexey Bataev8b427062016-05-25 12:36:08 +00004568 Expr *CounterStep = nullptr;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004569 /// \brief Should step be subtracted?
Alexey Bataev8b427062016-05-25 12:36:08 +00004570 bool Subtract = false;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004571 /// \brief Source range of the loop init.
4572 SourceRange InitSrcRange;
4573 /// \brief Source range of the loop condition.
4574 SourceRange CondSrcRange;
4575 /// \brief Source range of the loop increment.
4576 SourceRange IncSrcRange;
4577};
4578
Alexey Bataev23b69422014-06-18 07:08:49 +00004579} // namespace
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004580
Alexey Bataev9c821032015-04-30 04:23:23 +00004581void Sema::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init) {
4582 assert(getLangOpts().OpenMP && "OpenMP is not active.");
4583 assert(Init && "Expected loop in canonical form.");
Alexey Bataeva636c7f2015-12-23 10:27:45 +00004584 unsigned AssociatedLoops = DSAStack->getAssociatedLoops();
4585 if (AssociatedLoops > 0 &&
Alexey Bataev9c821032015-04-30 04:23:23 +00004586 isOpenMPLoopDirective(DSAStack->getCurrentDirective())) {
4587 OpenMPIterationSpaceChecker ISC(*this, ForLoc);
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004588 if (!ISC.CheckInit(Init, /*EmitDiags=*/false)) {
4589 if (auto *D = ISC.GetLoopDecl()) {
4590 auto *VD = dyn_cast<VarDecl>(D);
4591 if (!VD) {
4592 if (auto *Private = IsOpenMPCapturedDecl(D))
4593 VD = Private;
4594 else {
4595 auto *Ref = buildCapture(*this, D, ISC.GetLoopDeclRefExpr(),
4596 /*WithInit=*/false);
4597 VD = cast<VarDecl>(Ref->getDecl());
4598 }
4599 }
4600 DSAStack->addLoopControlVariable(D, VD);
4601 }
4602 }
Alexey Bataeva636c7f2015-12-23 10:27:45 +00004603 DSAStack->setAssociatedLoops(AssociatedLoops - 1);
Alexey Bataev9c821032015-04-30 04:23:23 +00004604 }
4605}
4606
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004607/// \brief Called on a for stmt to check and extract its iteration space
4608/// for further processing (such as collapsing).
Alexey Bataev4acb8592014-07-07 13:01:15 +00004609static bool CheckOpenMPIterationSpace(
4610 OpenMPDirectiveKind DKind, Stmt *S, Sema &SemaRef, DSAStackTy &DSA,
4611 unsigned CurrentNestedLoopCount, unsigned NestedLoopCount,
Alexey Bataev10e775f2015-07-30 11:36:16 +00004612 Expr *CollapseLoopCountExpr, Expr *OrderedLoopCountExpr,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00004613 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA,
Alexey Bataev5a3af132016-03-29 08:58:54 +00004614 LoopIterationSpace &ResultIterSpace,
4615 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) {
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004616 // OpenMP [2.6, Canonical Loop Form]
4617 // for (init-expr; test-expr; incr-expr) structured-block
4618 auto For = dyn_cast_or_null<ForStmt>(S);
4619 if (!For) {
4620 SemaRef.Diag(S->getLocStart(), diag::err_omp_not_for)
Alexey Bataev10e775f2015-07-30 11:36:16 +00004621 << (CollapseLoopCountExpr != nullptr || OrderedLoopCountExpr != nullptr)
4622 << getOpenMPDirectiveName(DKind) << NestedLoopCount
4623 << (CurrentNestedLoopCount > 0) << CurrentNestedLoopCount;
4624 if (NestedLoopCount > 1) {
4625 if (CollapseLoopCountExpr && OrderedLoopCountExpr)
4626 SemaRef.Diag(DSA.getConstructLoc(),
4627 diag::note_omp_collapse_ordered_expr)
4628 << 2 << CollapseLoopCountExpr->getSourceRange()
4629 << OrderedLoopCountExpr->getSourceRange();
4630 else if (CollapseLoopCountExpr)
4631 SemaRef.Diag(CollapseLoopCountExpr->getExprLoc(),
4632 diag::note_omp_collapse_ordered_expr)
4633 << 0 << CollapseLoopCountExpr->getSourceRange();
4634 else
4635 SemaRef.Diag(OrderedLoopCountExpr->getExprLoc(),
4636 diag::note_omp_collapse_ordered_expr)
4637 << 1 << OrderedLoopCountExpr->getSourceRange();
4638 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004639 return true;
4640 }
4641 assert(For->getBody());
4642
4643 OpenMPIterationSpaceChecker ISC(SemaRef, For->getForLoc());
4644
4645 // Check init.
Alexey Bataevdf9b1592014-06-25 04:09:13 +00004646 auto Init = For->getInit();
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004647 if (ISC.CheckInit(Init))
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004648 return true;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004649
4650 bool HasErrors = false;
4651
4652 // Check loop variable's type.
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004653 if (auto *LCDecl = ISC.GetLoopDecl()) {
4654 auto *LoopDeclRefExpr = ISC.GetLoopDeclRefExpr();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004655
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004656 // OpenMP [2.6, Canonical Loop Form]
4657 // Var is one of the following:
4658 // A variable of signed or unsigned integer type.
4659 // For C++, a variable of a random access iterator type.
4660 // For C, a variable of a pointer type.
4661 auto VarType = LCDecl->getType().getNonReferenceType();
4662 if (!VarType->isDependentType() && !VarType->isIntegerType() &&
4663 !VarType->isPointerType() &&
4664 !(SemaRef.getLangOpts().CPlusPlus && VarType->isOverloadableType())) {
4665 SemaRef.Diag(Init->getLocStart(), diag::err_omp_loop_variable_type)
4666 << SemaRef.getLangOpts().CPlusPlus;
4667 HasErrors = true;
4668 }
4669
4670 // OpenMP, 2.14.1.1 Data-sharing Attribute Rules for Variables Referenced in
4671 // a Construct
4672 // The loop iteration variable(s) in the associated for-loop(s) of a for or
4673 // parallel for construct is (are) private.
4674 // The loop iteration variable in the associated for-loop of a simd
4675 // construct with just one associated for-loop is linear with a
4676 // constant-linear-step that is the increment of the associated for-loop.
4677 // Exclude loop var from the list of variables with implicitly defined data
4678 // sharing attributes.
4679 VarsWithImplicitDSA.erase(LCDecl);
4680
4681 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced
4682 // in a Construct, C/C++].
4683 // The loop iteration variable in the associated for-loop of a simd
4684 // construct with just one associated for-loop may be listed in a linear
4685 // clause with a constant-linear-step that is the increment of the
4686 // associated for-loop.
4687 // The loop iteration variable(s) in the associated for-loop(s) of a for or
4688 // parallel for construct may be listed in a private or lastprivate clause.
4689 DSAStackTy::DSAVarData DVar = DSA.getTopDSA(LCDecl, false);
4690 // If LoopVarRefExpr is nullptr it means the corresponding loop variable is
4691 // declared in the loop and it is predetermined as a private.
4692 auto PredeterminedCKind =
4693 isOpenMPSimdDirective(DKind)
4694 ? ((NestedLoopCount == 1) ? OMPC_linear : OMPC_lastprivate)
4695 : OMPC_private;
4696 if (((isOpenMPSimdDirective(DKind) && DVar.CKind != OMPC_unknown &&
4697 DVar.CKind != PredeterminedCKind) ||
4698 ((isOpenMPWorksharingDirective(DKind) || DKind == OMPD_taskloop ||
4699 isOpenMPDistributeDirective(DKind)) &&
4700 !isOpenMPSimdDirective(DKind) && DVar.CKind != OMPC_unknown &&
4701 DVar.CKind != OMPC_private && DVar.CKind != OMPC_lastprivate)) &&
4702 (DVar.CKind != OMPC_private || DVar.RefExpr != nullptr)) {
4703 SemaRef.Diag(Init->getLocStart(), diag::err_omp_loop_var_dsa)
4704 << getOpenMPClauseName(DVar.CKind) << getOpenMPDirectiveName(DKind)
4705 << getOpenMPClauseName(PredeterminedCKind);
4706 if (DVar.RefExpr == nullptr)
4707 DVar.CKind = PredeterminedCKind;
4708 ReportOriginalDSA(SemaRef, &DSA, LCDecl, DVar, /*IsLoopIterVar=*/true);
4709 HasErrors = true;
4710 } else if (LoopDeclRefExpr != nullptr) {
4711 // Make the loop iteration variable private (for worksharing constructs),
4712 // linear (for simd directives with the only one associated loop) or
4713 // lastprivate (for simd directives with several collapsed or ordered
4714 // loops).
4715 if (DVar.CKind == OMPC_unknown)
Alexey Bataev7ace49d2016-05-17 08:55:33 +00004716 DVar = DSA.hasDSA(LCDecl, isOpenMPPrivate,
4717 [](OpenMPDirectiveKind) -> bool { return true; },
Alexey Bataevc6ad97a2016-04-01 09:23:34 +00004718 /*FromParent=*/false);
4719 DSA.addDSA(LCDecl, LoopDeclRefExpr, PredeterminedCKind);
4720 }
4721
4722 assert(isOpenMPLoopDirective(DKind) && "DSA for non-loop vars");
4723
4724 // Check test-expr.
4725 HasErrors |= ISC.CheckCond(For->getCond());
4726
4727 // Check incr-expr.
4728 HasErrors |= ISC.CheckInc(For->getInc());
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004729 }
4730
Alexander Musmana5f070a2014-10-01 06:03:56 +00004731 if (ISC.Dependent() || SemaRef.CurContext->isDependentContext() || HasErrors)
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004732 return HasErrors;
4733
Alexander Musmana5f070a2014-10-01 06:03:56 +00004734 // Build the loop's iteration space representation.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004735 ResultIterSpace.PreCond =
4736 ISC.BuildPreCond(DSA.getCurScope(), For->getCond(), Captures);
Alexander Musman174b3ca2014-10-06 11:16:29 +00004737 ResultIterSpace.NumIterations = ISC.BuildNumIterations(
Alexey Bataev5a3af132016-03-29 08:58:54 +00004738 DSA.getCurScope(),
4739 (isOpenMPWorksharingDirective(DKind) ||
4740 isOpenMPTaskLoopDirective(DKind) || isOpenMPDistributeDirective(DKind)),
4741 Captures);
Alexey Bataev5dff95c2016-04-22 03:56:56 +00004742 ResultIterSpace.CounterVar = ISC.BuildCounterVar(Captures, DSA);
Alexey Bataeva8899172015-08-06 12:30:57 +00004743 ResultIterSpace.PrivateCounterVar = ISC.BuildPrivateCounterVar();
Alexander Musmana5f070a2014-10-01 06:03:56 +00004744 ResultIterSpace.CounterInit = ISC.BuildCounterInit();
4745 ResultIterSpace.CounterStep = ISC.BuildCounterStep();
4746 ResultIterSpace.InitSrcRange = ISC.GetInitSrcRange();
4747 ResultIterSpace.CondSrcRange = ISC.GetConditionSrcRange();
4748 ResultIterSpace.IncSrcRange = ISC.GetIncrementSrcRange();
4749 ResultIterSpace.Subtract = ISC.ShouldSubtractStep();
4750
Alexey Bataev62dbb972015-04-22 11:59:37 +00004751 HasErrors |= (ResultIterSpace.PreCond == nullptr ||
4752 ResultIterSpace.NumIterations == nullptr ||
Alexander Musmana5f070a2014-10-01 06:03:56 +00004753 ResultIterSpace.CounterVar == nullptr ||
Alexey Bataeva8899172015-08-06 12:30:57 +00004754 ResultIterSpace.PrivateCounterVar == nullptr ||
Alexander Musmana5f070a2014-10-01 06:03:56 +00004755 ResultIterSpace.CounterInit == nullptr ||
4756 ResultIterSpace.CounterStep == nullptr);
4757
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004758 return HasErrors;
4759}
4760
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004761/// \brief Build 'VarRef = Start.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004762static ExprResult
4763BuildCounterInit(Sema &SemaRef, Scope *S, SourceLocation Loc, ExprResult VarRef,
4764 ExprResult Start,
4765 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) {
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004766 // Build 'VarRef = Start.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004767 auto NewStart = tryBuildCapture(SemaRef, Start.get(), Captures);
4768 if (!NewStart.isUsable())
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004769 return ExprError();
Alexey Bataev11481f52016-02-17 10:29:05 +00004770 if (!SemaRef.Context.hasSameType(NewStart.get()->getType(),
Alexey Bataev11481f52016-02-17 10:29:05 +00004771 VarRef.get()->getType())) {
4772 NewStart = SemaRef.PerformImplicitConversion(
4773 NewStart.get(), VarRef.get()->getType(), Sema::AA_Converting,
4774 /*AllowExplicit=*/true);
4775 if (!NewStart.isUsable())
4776 return ExprError();
4777 }
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004778
4779 auto Init =
4780 SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), NewStart.get());
4781 return Init;
4782}
4783
Alexander Musmana5f070a2014-10-01 06:03:56 +00004784/// \brief Build 'VarRef = Start + Iter * Step'.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004785static ExprResult
4786BuildCounterUpdate(Sema &SemaRef, Scope *S, SourceLocation Loc,
4787 ExprResult VarRef, ExprResult Start, ExprResult Iter,
4788 ExprResult Step, bool Subtract,
4789 llvm::MapVector<Expr *, DeclRefExpr *> *Captures = nullptr) {
Alexander Musmana5f070a2014-10-01 06:03:56 +00004790 // Add parentheses (for debugging purposes only).
4791 Iter = SemaRef.ActOnParenExpr(Loc, Loc, Iter.get());
4792 if (!VarRef.isUsable() || !Start.isUsable() || !Iter.isUsable() ||
4793 !Step.isUsable())
4794 return ExprError();
4795
Alexey Bataev5a3af132016-03-29 08:58:54 +00004796 ExprResult NewStep = Step;
4797 if (Captures)
4798 NewStep = tryBuildCapture(SemaRef, Step.get(), *Captures);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004799 if (NewStep.isInvalid())
4800 return ExprError();
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004801 ExprResult Update =
4802 SemaRef.BuildBinOp(S, Loc, BO_Mul, Iter.get(), NewStep.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00004803 if (!Update.isUsable())
4804 return ExprError();
4805
Alexey Bataevc0214e02016-02-16 12:13:49 +00004806 // Try to build 'VarRef = Start, VarRef (+|-)= Iter * Step' or
4807 // 'VarRef = Start (+|-) Iter * Step'.
Alexey Bataev5a3af132016-03-29 08:58:54 +00004808 ExprResult NewStart = Start;
4809 if (Captures)
4810 NewStart = tryBuildCapture(SemaRef, Start.get(), *Captures);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00004811 if (NewStart.isInvalid())
4812 return ExprError();
Alexander Musmana5f070a2014-10-01 06:03:56 +00004813
Alexey Bataevc0214e02016-02-16 12:13:49 +00004814 // First attempt: try to build 'VarRef = Start, VarRef += Iter * Step'.
4815 ExprResult SavedUpdate = Update;
4816 ExprResult UpdateVal;
4817 if (VarRef.get()->getType()->isOverloadableType() ||
4818 NewStart.get()->getType()->isOverloadableType() ||
4819 Update.get()->getType()->isOverloadableType()) {
4820 bool Suppress = SemaRef.getDiagnostics().getSuppressAllDiagnostics();
4821 SemaRef.getDiagnostics().setSuppressAllDiagnostics(/*Val=*/true);
4822 Update =
4823 SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), NewStart.get());
4824 if (Update.isUsable()) {
4825 UpdateVal =
4826 SemaRef.BuildBinOp(S, Loc, Subtract ? BO_SubAssign : BO_AddAssign,
4827 VarRef.get(), SavedUpdate.get());
4828 if (UpdateVal.isUsable()) {
4829 Update = SemaRef.CreateBuiltinBinOp(Loc, BO_Comma, Update.get(),
4830 UpdateVal.get());
4831 }
4832 }
4833 SemaRef.getDiagnostics().setSuppressAllDiagnostics(Suppress);
4834 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004835
Alexey Bataevc0214e02016-02-16 12:13:49 +00004836 // Second attempt: try to build 'VarRef = Start (+|-) Iter * Step'.
4837 if (!Update.isUsable() || !UpdateVal.isUsable()) {
4838 Update = SemaRef.BuildBinOp(S, Loc, Subtract ? BO_Sub : BO_Add,
4839 NewStart.get(), SavedUpdate.get());
4840 if (!Update.isUsable())
4841 return ExprError();
4842
Alexey Bataev11481f52016-02-17 10:29:05 +00004843 if (!SemaRef.Context.hasSameType(Update.get()->getType(),
4844 VarRef.get()->getType())) {
4845 Update = SemaRef.PerformImplicitConversion(
4846 Update.get(), VarRef.get()->getType(), Sema::AA_Converting, true);
4847 if (!Update.isUsable())
4848 return ExprError();
4849 }
Alexey Bataevc0214e02016-02-16 12:13:49 +00004850
4851 Update = SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), Update.get());
4852 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004853 return Update;
4854}
4855
4856/// \brief Convert integer expression \a E to make it have at least \a Bits
4857/// bits.
4858static ExprResult WidenIterationCount(unsigned Bits, Expr *E,
4859 Sema &SemaRef) {
4860 if (E == nullptr)
4861 return ExprError();
4862 auto &C = SemaRef.Context;
4863 QualType OldType = E->getType();
4864 unsigned HasBits = C.getTypeSize(OldType);
4865 if (HasBits >= Bits)
4866 return ExprResult(E);
4867 // OK to convert to signed, because new type has more bits than old.
4868 QualType NewType = C.getIntTypeForBitwidth(Bits, /* Signed */ true);
4869 return SemaRef.PerformImplicitConversion(E, NewType, Sema::AA_Converting,
4870 true);
4871}
4872
4873/// \brief Check if the given expression \a E is a constant integer that fits
4874/// into \a Bits bits.
4875static bool FitsInto(unsigned Bits, bool Signed, Expr *E, Sema &SemaRef) {
4876 if (E == nullptr)
4877 return false;
4878 llvm::APSInt Result;
4879 if (E->isIntegerConstantExpr(Result, SemaRef.Context))
4880 return Signed ? Result.isSignedIntN(Bits) : Result.isIntN(Bits);
4881 return false;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004882}
4883
Alexey Bataev5a3af132016-03-29 08:58:54 +00004884/// Build preinits statement for the given declarations.
4885static Stmt *buildPreInits(ASTContext &Context,
4886 SmallVectorImpl<Decl *> &PreInits) {
4887 if (!PreInits.empty()) {
4888 return new (Context) DeclStmt(
4889 DeclGroupRef::Create(Context, PreInits.begin(), PreInits.size()),
4890 SourceLocation(), SourceLocation());
4891 }
4892 return nullptr;
4893}
4894
4895/// Build preinits statement for the given declarations.
4896static Stmt *buildPreInits(ASTContext &Context,
4897 llvm::MapVector<Expr *, DeclRefExpr *> &Captures) {
4898 if (!Captures.empty()) {
4899 SmallVector<Decl *, 16> PreInits;
4900 for (auto &Pair : Captures)
4901 PreInits.push_back(Pair.second->getDecl());
4902 return buildPreInits(Context, PreInits);
4903 }
4904 return nullptr;
4905}
4906
4907/// Build postupdate expression for the given list of postupdates expressions.
4908static Expr *buildPostUpdate(Sema &S, ArrayRef<Expr *> PostUpdates) {
4909 Expr *PostUpdate = nullptr;
4910 if (!PostUpdates.empty()) {
4911 for (auto *E : PostUpdates) {
4912 Expr *ConvE = S.BuildCStyleCastExpr(
4913 E->getExprLoc(),
4914 S.Context.getTrivialTypeSourceInfo(S.Context.VoidTy),
4915 E->getExprLoc(), E)
4916 .get();
4917 PostUpdate = PostUpdate
4918 ? S.CreateBuiltinBinOp(ConvE->getExprLoc(), BO_Comma,
4919 PostUpdate, ConvE)
4920 .get()
4921 : ConvE;
4922 }
4923 }
4924 return PostUpdate;
4925}
4926
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004927/// \brief Called on a for stmt to check itself and nested loops (if any).
Alexey Bataevabfc0692014-06-25 06:52:00 +00004928/// \return Returns 0 if one of the collapsed stmts is not canonical for loop,
4929/// number of collapsed loops otherwise.
Alexey Bataev4acb8592014-07-07 13:01:15 +00004930static unsigned
Alexey Bataev10e775f2015-07-30 11:36:16 +00004931CheckOpenMPLoop(OpenMPDirectiveKind DKind, Expr *CollapseLoopCountExpr,
4932 Expr *OrderedLoopCountExpr, Stmt *AStmt, Sema &SemaRef,
4933 DSAStackTy &DSA,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00004934 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA,
Alexander Musmanc6388682014-12-15 07:07:06 +00004935 OMPLoopDirective::HelperExprs &Built) {
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004936 unsigned NestedLoopCount = 1;
Alexey Bataev10e775f2015-07-30 11:36:16 +00004937 if (CollapseLoopCountExpr) {
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004938 // Found 'collapse' clause - calculate collapse number.
4939 llvm::APSInt Result;
Alexey Bataev10e775f2015-07-30 11:36:16 +00004940 if (CollapseLoopCountExpr->EvaluateAsInt(Result, SemaRef.getASTContext()))
Alexey Bataev7b6bc882015-11-26 07:50:39 +00004941 NestedLoopCount = Result.getLimitedValue();
Alexey Bataev10e775f2015-07-30 11:36:16 +00004942 }
4943 if (OrderedLoopCountExpr) {
4944 // Found 'ordered' clause - calculate collapse number.
4945 llvm::APSInt Result;
Alexey Bataev7b6bc882015-11-26 07:50:39 +00004946 if (OrderedLoopCountExpr->EvaluateAsInt(Result, SemaRef.getASTContext())) {
4947 if (Result.getLimitedValue() < NestedLoopCount) {
4948 SemaRef.Diag(OrderedLoopCountExpr->getExprLoc(),
4949 diag::err_omp_wrong_ordered_loop_count)
4950 << OrderedLoopCountExpr->getSourceRange();
4951 SemaRef.Diag(CollapseLoopCountExpr->getExprLoc(),
4952 diag::note_collapse_loop_count)
4953 << CollapseLoopCountExpr->getSourceRange();
4954 }
4955 NestedLoopCount = Result.getLimitedValue();
4956 }
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004957 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004958 // This is helper routine for loop directives (e.g., 'for', 'simd',
4959 // 'for simd', etc.).
Alexey Bataev5a3af132016-03-29 08:58:54 +00004960 llvm::MapVector<Expr *, DeclRefExpr *> Captures;
Alexander Musmana5f070a2014-10-01 06:03:56 +00004961 SmallVector<LoopIterationSpace, 4> IterSpaces;
4962 IterSpaces.resize(NestedLoopCount);
4963 Stmt *CurStmt = AStmt->IgnoreContainers(/* IgnoreCaptured */ true);
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004964 for (unsigned Cnt = 0; Cnt < NestedLoopCount; ++Cnt) {
Alexey Bataeve2f07d42014-06-24 12:55:56 +00004965 if (CheckOpenMPIterationSpace(DKind, CurStmt, SemaRef, DSA, Cnt,
Alexey Bataev10e775f2015-07-30 11:36:16 +00004966 NestedLoopCount, CollapseLoopCountExpr,
4967 OrderedLoopCountExpr, VarsWithImplicitDSA,
Alexey Bataev5a3af132016-03-29 08:58:54 +00004968 IterSpaces[Cnt], Captures))
Alexey Bataevabfc0692014-06-25 06:52:00 +00004969 return 0;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004970 // Move on to the next nested for loop, or to the loop body.
Alexander Musmana5f070a2014-10-01 06:03:56 +00004971 // OpenMP [2.8.1, simd construct, Restrictions]
4972 // All loops associated with the construct must be perfectly nested; that
4973 // is, there must be no intervening code nor any OpenMP directive between
4974 // any two loops.
4975 CurStmt = cast<ForStmt>(CurStmt)->getBody()->IgnoreContainers();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00004976 }
4977
Alexander Musmana5f070a2014-10-01 06:03:56 +00004978 Built.clear(/* size */ NestedLoopCount);
4979
4980 if (SemaRef.CurContext->isDependentContext())
4981 return NestedLoopCount;
4982
4983 // An example of what is generated for the following code:
4984 //
Alexey Bataev10e775f2015-07-30 11:36:16 +00004985 // #pragma omp simd collapse(2) ordered(2)
Alexander Musmana5f070a2014-10-01 06:03:56 +00004986 // for (i = 0; i < NI; ++i)
Alexey Bataev10e775f2015-07-30 11:36:16 +00004987 // for (k = 0; k < NK; ++k)
4988 // for (j = J0; j < NJ; j+=2) {
4989 // <loop body>
4990 // }
Alexander Musmana5f070a2014-10-01 06:03:56 +00004991 //
4992 // We generate the code below.
4993 // Note: the loop body may be outlined in CodeGen.
4994 // Note: some counters may be C++ classes, operator- is used to find number of
4995 // iterations and operator+= to calculate counter value.
4996 // Note: decltype(NumIterations) must be integer type (in 'omp for', only i32
4997 // or i64 is currently supported).
4998 //
4999 // #define NumIterations (NI * ((NJ - J0 - 1 + 2) / 2))
5000 // for (int[32|64]_t IV = 0; IV < NumIterations; ++IV ) {
5001 // .local.i = IV / ((NJ - J0 - 1 + 2) / 2);
5002 // .local.j = J0 + (IV % ((NJ - J0 - 1 + 2) / 2)) * 2;
5003 // // similar updates for vars in clauses (e.g. 'linear')
5004 // <loop body (using local i and j)>
5005 // }
5006 // i = NI; // assign final values of counters
5007 // j = NJ;
5008 //
5009
5010 // Last iteration number is (I1 * I2 * ... In) - 1, where I1, I2 ... In are
5011 // the iteration counts of the collapsed for loops.
Alexey Bataev62dbb972015-04-22 11:59:37 +00005012 // Precondition tests if there is at least one iteration (all conditions are
5013 // true).
5014 auto PreCond = ExprResult(IterSpaces[0].PreCond);
Alexander Musmana5f070a2014-10-01 06:03:56 +00005015 auto N0 = IterSpaces[0].NumIterations;
Alexey Bataevb08f89f2015-08-14 12:25:37 +00005016 ExprResult LastIteration32 = WidenIterationCount(
5017 32 /* Bits */, SemaRef.PerformImplicitConversion(
5018 N0->IgnoreImpCasts(), N0->getType(),
5019 Sema::AA_Converting, /*AllowExplicit=*/true)
5020 .get(),
5021 SemaRef);
5022 ExprResult LastIteration64 = WidenIterationCount(
5023 64 /* Bits */, SemaRef.PerformImplicitConversion(
5024 N0->IgnoreImpCasts(), N0->getType(),
5025 Sema::AA_Converting, /*AllowExplicit=*/true)
5026 .get(),
5027 SemaRef);
Alexander Musmana5f070a2014-10-01 06:03:56 +00005028
5029 if (!LastIteration32.isUsable() || !LastIteration64.isUsable())
5030 return NestedLoopCount;
5031
5032 auto &C = SemaRef.Context;
5033 bool AllCountsNeedLessThan32Bits = C.getTypeSize(N0->getType()) < 32;
5034
5035 Scope *CurScope = DSA.getCurScope();
5036 for (unsigned Cnt = 1; Cnt < NestedLoopCount; ++Cnt) {
Alexey Bataev62dbb972015-04-22 11:59:37 +00005037 if (PreCond.isUsable()) {
5038 PreCond = SemaRef.BuildBinOp(CurScope, SourceLocation(), BO_LAnd,
5039 PreCond.get(), IterSpaces[Cnt].PreCond);
5040 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00005041 auto N = IterSpaces[Cnt].NumIterations;
5042 AllCountsNeedLessThan32Bits &= C.getTypeSize(N->getType()) < 32;
5043 if (LastIteration32.isUsable())
Alexey Bataevb08f89f2015-08-14 12:25:37 +00005044 LastIteration32 = SemaRef.BuildBinOp(
5045 CurScope, SourceLocation(), BO_Mul, LastIteration32.get(),
5046 SemaRef.PerformImplicitConversion(N->IgnoreImpCasts(), N->getType(),
5047 Sema::AA_Converting,
5048 /*AllowExplicit=*/true)
5049 .get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00005050 if (LastIteration64.isUsable())
Alexey Bataevb08f89f2015-08-14 12:25:37 +00005051 LastIteration64 = SemaRef.BuildBinOp(
5052 CurScope, SourceLocation(), BO_Mul, LastIteration64.get(),
5053 SemaRef.PerformImplicitConversion(N->IgnoreImpCasts(), N->getType(),
5054 Sema::AA_Converting,
5055 /*AllowExplicit=*/true)
5056 .get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00005057 }
5058
5059 // Choose either the 32-bit or 64-bit version.
5060 ExprResult LastIteration = LastIteration64;
5061 if (LastIteration32.isUsable() &&
5062 C.getTypeSize(LastIteration32.get()->getType()) == 32 &&
5063 (AllCountsNeedLessThan32Bits || NestedLoopCount == 1 ||
5064 FitsInto(
5065 32 /* Bits */,
5066 LastIteration32.get()->getType()->hasSignedIntegerRepresentation(),
5067 LastIteration64.get(), SemaRef)))
5068 LastIteration = LastIteration32;
Alexey Bataev7292c292016-04-25 12:22:29 +00005069 QualType VType = LastIteration.get()->getType();
5070 QualType RealVType = VType;
5071 QualType StrideVType = VType;
5072 if (isOpenMPTaskLoopDirective(DKind)) {
5073 VType =
5074 SemaRef.Context.getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/0);
5075 StrideVType =
5076 SemaRef.Context.getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/1);
5077 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00005078
5079 if (!LastIteration.isUsable())
5080 return 0;
5081
5082 // Save the number of iterations.
5083 ExprResult NumIterations = LastIteration;
5084 {
5085 LastIteration = SemaRef.BuildBinOp(
5086 CurScope, SourceLocation(), BO_Sub, LastIteration.get(),
5087 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
5088 if (!LastIteration.isUsable())
5089 return 0;
5090 }
5091
5092 // Calculate the last iteration number beforehand instead of doing this on
5093 // each iteration. Do not do this if the number of iterations may be kfold-ed.
5094 llvm::APSInt Result;
5095 bool IsConstant =
5096 LastIteration.get()->isIntegerConstantExpr(Result, SemaRef.Context);
5097 ExprResult CalcLastIteration;
5098 if (!IsConstant) {
Alexey Bataev5a3af132016-03-29 08:58:54 +00005099 ExprResult SaveRef =
5100 tryBuildCapture(SemaRef, LastIteration.get(), Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00005101 LastIteration = SaveRef;
5102
5103 // Prepare SaveRef + 1.
5104 NumIterations = SemaRef.BuildBinOp(
Alexey Bataev5a3af132016-03-29 08:58:54 +00005105 CurScope, SourceLocation(), BO_Add, SaveRef.get(),
Alexander Musmana5f070a2014-10-01 06:03:56 +00005106 SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get());
5107 if (!NumIterations.isUsable())
5108 return 0;
5109 }
5110
5111 SourceLocation InitLoc = IterSpaces[0].InitSrcRange.getBegin();
5112
Alexander Musmanc6388682014-12-15 07:07:06 +00005113 // Build variables passed into runtime, nesessary for worksharing directives.
Carlo Bertolli9925f152016-06-27 14:55:37 +00005114 ExprResult LB, UB, IL, ST, EUB, PrevLB, PrevUB;
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00005115 if (isOpenMPWorksharingDirective(DKind) || isOpenMPTaskLoopDirective(DKind) ||
5116 isOpenMPDistributeDirective(DKind)) {
Alexander Musmanc6388682014-12-15 07:07:06 +00005117 // Lower bound variable, initialized with zero.
Alexey Bataev39f915b82015-05-08 10:41:21 +00005118 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
5119 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc);
Alexander Musmanc6388682014-12-15 07:07:06 +00005120 SemaRef.AddInitializerToDecl(
5121 LBDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
5122 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
5123
5124 // Upper bound variable, initialized with last iteration number.
Alexey Bataev39f915b82015-05-08 10:41:21 +00005125 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
5126 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc);
Alexander Musmanc6388682014-12-15 07:07:06 +00005127 SemaRef.AddInitializerToDecl(UBDecl, LastIteration.get(),
5128 /*DirectInit*/ false,
5129 /*TypeMayContainAuto*/ false);
5130
5131 // A 32-bit variable-flag where runtime returns 1 for the last iteration.
5132 // This will be used to implement clause 'lastprivate'.
5133 QualType Int32Ty = SemaRef.Context.getIntTypeForBitwidth(32, true);
Alexey Bataev39f915b82015-05-08 10:41:21 +00005134 VarDecl *ILDecl = buildVarDecl(SemaRef, InitLoc, Int32Ty, ".omp.is_last");
5135 IL = buildDeclRefExpr(SemaRef, ILDecl, Int32Ty, InitLoc);
Alexander Musmanc6388682014-12-15 07:07:06 +00005136 SemaRef.AddInitializerToDecl(
5137 ILDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
5138 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
5139
5140 // Stride variable returned by runtime (we initialize it to 1 by default).
Alexey Bataev7292c292016-04-25 12:22:29 +00005141 VarDecl *STDecl =
5142 buildVarDecl(SemaRef, InitLoc, StrideVType, ".omp.stride");
5143 ST = buildDeclRefExpr(SemaRef, STDecl, StrideVType, InitLoc);
Alexander Musmanc6388682014-12-15 07:07:06 +00005144 SemaRef.AddInitializerToDecl(
5145 STDecl, SemaRef.ActOnIntegerConstant(InitLoc, 1).get(),
5146 /*DirectInit*/ false, /*TypeMayContainAuto*/ false);
5147
5148 // Build expression: UB = min(UB, LastIteration)
5149 // It is nesessary for CodeGen of directives with static scheduling.
5150 ExprResult IsUBGreater = SemaRef.BuildBinOp(CurScope, InitLoc, BO_GT,
5151 UB.get(), LastIteration.get());
5152 ExprResult CondOp = SemaRef.ActOnConditionalOp(
5153 InitLoc, InitLoc, IsUBGreater.get(), LastIteration.get(), UB.get());
5154 EUB = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, UB.get(),
5155 CondOp.get());
5156 EUB = SemaRef.ActOnFinishFullExpr(EUB.get());
Carlo Bertolli9925f152016-06-27 14:55:37 +00005157
5158 // If we have a combined directive that combines 'distribute', 'for' or
5159 // 'simd' we need to be able to access the bounds of the schedule of the
5160 // enclosing region. E.g. in 'distribute parallel for' the bounds obtained
5161 // by scheduling 'distribute' have to be passed to the schedule of 'for'.
5162 if (isOpenMPLoopBoundSharingDirective(DKind)) {
5163 auto *CD = cast<CapturedStmt>(AStmt)->getCapturedDecl();
5164
5165 // We expect to have at least 2 more parameters than the 'parallel'
5166 // directive does - the lower and upper bounds of the previous schedule.
5167 assert(CD->getNumParams() >= 4 &&
5168 "Unexpected number of parameters in loop combined directive");
5169
5170 // Set the proper type for the bounds given what we learned from the
5171 // enclosed loops.
5172 auto *PrevLBDecl = CD->getParam(/*PrevLB=*/2);
5173 auto *PrevUBDecl = CD->getParam(/*PrevUB=*/3);
5174
5175 // Previous lower and upper bounds are obtained from the region
5176 // parameters.
5177 PrevLB =
5178 buildDeclRefExpr(SemaRef, PrevLBDecl, PrevLBDecl->getType(), InitLoc);
5179 PrevUB =
5180 buildDeclRefExpr(SemaRef, PrevUBDecl, PrevUBDecl->getType(), InitLoc);
5181 }
Alexander Musmanc6388682014-12-15 07:07:06 +00005182 }
5183
5184 // Build the iteration variable and its initialization before loop.
Alexander Musmana5f070a2014-10-01 06:03:56 +00005185 ExprResult IV;
5186 ExprResult Init;
5187 {
Alexey Bataev7292c292016-04-25 12:22:29 +00005188 VarDecl *IVDecl = buildVarDecl(SemaRef, InitLoc, RealVType, ".omp.iv");
5189 IV = buildDeclRefExpr(SemaRef, IVDecl, RealVType, InitLoc);
Alexey Bataev0a6ed842015-12-03 09:40:15 +00005190 Expr *RHS = (isOpenMPWorksharingDirective(DKind) ||
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00005191 isOpenMPTaskLoopDirective(DKind) ||
5192 isOpenMPDistributeDirective(DKind))
Alexander Musmanc6388682014-12-15 07:07:06 +00005193 ? LB.get()
5194 : SemaRef.ActOnIntegerConstant(SourceLocation(), 0).get();
5195 Init = SemaRef.BuildBinOp(CurScope, InitLoc, BO_Assign, IV.get(), RHS);
5196 Init = SemaRef.ActOnFinishFullExpr(Init.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00005197 }
5198
Alexander Musmanc6388682014-12-15 07:07:06 +00005199 // Loop condition (IV < NumIterations) or (IV <= UB) for worksharing loops.
Alexander Musmana5f070a2014-10-01 06:03:56 +00005200 SourceLocation CondLoc;
Alexander Musmanc6388682014-12-15 07:07:06 +00005201 ExprResult Cond =
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00005202 (isOpenMPWorksharingDirective(DKind) ||
5203 isOpenMPTaskLoopDirective(DKind) || isOpenMPDistributeDirective(DKind))
Alexander Musmanc6388682014-12-15 07:07:06 +00005204 ? SemaRef.BuildBinOp(CurScope, CondLoc, BO_LE, IV.get(), UB.get())
5205 : SemaRef.BuildBinOp(CurScope, CondLoc, BO_LT, IV.get(),
5206 NumIterations.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00005207
5208 // Loop increment (IV = IV + 1)
5209 SourceLocation IncLoc;
5210 ExprResult Inc =
5211 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, IV.get(),
5212 SemaRef.ActOnIntegerConstant(IncLoc, 1).get());
5213 if (!Inc.isUsable())
5214 return 0;
5215 Inc = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, IV.get(), Inc.get());
Alexander Musmanc6388682014-12-15 07:07:06 +00005216 Inc = SemaRef.ActOnFinishFullExpr(Inc.get());
5217 if (!Inc.isUsable())
5218 return 0;
5219
5220 // Increments for worksharing loops (LB = LB + ST; UB = UB + ST).
5221 // Used for directives with static scheduling.
5222 ExprResult NextLB, NextUB;
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00005223 if (isOpenMPWorksharingDirective(DKind) || isOpenMPTaskLoopDirective(DKind) ||
5224 isOpenMPDistributeDirective(DKind)) {
Alexander Musmanc6388682014-12-15 07:07:06 +00005225 // LB + ST
5226 NextLB = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, LB.get(), ST.get());
5227 if (!NextLB.isUsable())
5228 return 0;
5229 // LB = LB + ST
5230 NextLB =
5231 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, LB.get(), NextLB.get());
5232 NextLB = SemaRef.ActOnFinishFullExpr(NextLB.get());
5233 if (!NextLB.isUsable())
5234 return 0;
5235 // UB + ST
5236 NextUB = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, UB.get(), ST.get());
5237 if (!NextUB.isUsable())
5238 return 0;
5239 // UB = UB + ST
5240 NextUB =
5241 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, UB.get(), NextUB.get());
5242 NextUB = SemaRef.ActOnFinishFullExpr(NextUB.get());
5243 if (!NextUB.isUsable())
5244 return 0;
5245 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00005246
5247 // Build updates and final values of the loop counters.
5248 bool HasErrors = false;
5249 Built.Counters.resize(NestedLoopCount);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00005250 Built.Inits.resize(NestedLoopCount);
Alexander Musmana5f070a2014-10-01 06:03:56 +00005251 Built.Updates.resize(NestedLoopCount);
5252 Built.Finals.resize(NestedLoopCount);
Alexey Bataev8b427062016-05-25 12:36:08 +00005253 SmallVector<Expr *, 4> LoopMultipliers;
Alexander Musmana5f070a2014-10-01 06:03:56 +00005254 {
5255 ExprResult Div;
5256 // Go from inner nested loop to outer.
5257 for (int Cnt = NestedLoopCount - 1; Cnt >= 0; --Cnt) {
5258 LoopIterationSpace &IS = IterSpaces[Cnt];
5259 SourceLocation UpdLoc = IS.IncSrcRange.getBegin();
5260 // Build: Iter = (IV / Div) % IS.NumIters
5261 // where Div is product of previous iterations' IS.NumIters.
5262 ExprResult Iter;
5263 if (Div.isUsable()) {
5264 Iter =
5265 SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Div, IV.get(), Div.get());
5266 } else {
5267 Iter = IV;
5268 assert((Cnt == (int)NestedLoopCount - 1) &&
5269 "unusable div expected on first iteration only");
5270 }
5271
5272 if (Cnt != 0 && Iter.isUsable())
5273 Iter = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Rem, Iter.get(),
5274 IS.NumIterations);
5275 if (!Iter.isUsable()) {
5276 HasErrors = true;
5277 break;
5278 }
5279
Alexey Bataev39f915b82015-05-08 10:41:21 +00005280 // Build update: IS.CounterVar(Private) = IS.Start + Iter * IS.Step
Alexey Bataev5dff95c2016-04-22 03:56:56 +00005281 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(IS.CounterVar)->getDecl());
5282 auto *CounterVar = buildDeclRefExpr(SemaRef, VD, IS.CounterVar->getType(),
5283 IS.CounterVar->getExprLoc(),
5284 /*RefersToCapture=*/true);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00005285 ExprResult Init = BuildCounterInit(SemaRef, CurScope, UpdLoc, CounterVar,
Alexey Bataev5a3af132016-03-29 08:58:54 +00005286 IS.CounterInit, Captures);
Alexey Bataevb08f89f2015-08-14 12:25:37 +00005287 if (!Init.isUsable()) {
5288 HasErrors = true;
5289 break;
5290 }
Alexey Bataev5a3af132016-03-29 08:58:54 +00005291 ExprResult Update = BuildCounterUpdate(
5292 SemaRef, CurScope, UpdLoc, CounterVar, IS.CounterInit, Iter,
5293 IS.CounterStep, IS.Subtract, &Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00005294 if (!Update.isUsable()) {
5295 HasErrors = true;
5296 break;
5297 }
5298
5299 // Build final: IS.CounterVar = IS.Start + IS.NumIters * IS.Step
5300 ExprResult Final = BuildCounterUpdate(
Alexey Bataev39f915b82015-05-08 10:41:21 +00005301 SemaRef, CurScope, UpdLoc, CounterVar, IS.CounterInit,
Alexey Bataev5a3af132016-03-29 08:58:54 +00005302 IS.NumIterations, IS.CounterStep, IS.Subtract, &Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00005303 if (!Final.isUsable()) {
5304 HasErrors = true;
5305 break;
5306 }
5307
5308 // Build Div for the next iteration: Div <- Div * IS.NumIters
5309 if (Cnt != 0) {
5310 if (Div.isUnset())
5311 Div = IS.NumIterations;
5312 else
5313 Div = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Mul, Div.get(),
5314 IS.NumIterations);
5315
5316 // Add parentheses (for debugging purposes only).
5317 if (Div.isUsable())
Alexey Bataev8b427062016-05-25 12:36:08 +00005318 Div = tryBuildCapture(SemaRef, Div.get(), Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00005319 if (!Div.isUsable()) {
5320 HasErrors = true;
5321 break;
5322 }
Alexey Bataev8b427062016-05-25 12:36:08 +00005323 LoopMultipliers.push_back(Div.get());
Alexander Musmana5f070a2014-10-01 06:03:56 +00005324 }
5325 if (!Update.isUsable() || !Final.isUsable()) {
5326 HasErrors = true;
5327 break;
5328 }
5329 // Save results
5330 Built.Counters[Cnt] = IS.CounterVar;
Alexey Bataeva8899172015-08-06 12:30:57 +00005331 Built.PrivateCounters[Cnt] = IS.PrivateCounterVar;
Alexey Bataevb08f89f2015-08-14 12:25:37 +00005332 Built.Inits[Cnt] = Init.get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00005333 Built.Updates[Cnt] = Update.get();
5334 Built.Finals[Cnt] = Final.get();
5335 }
5336 }
5337
5338 if (HasErrors)
5339 return 0;
5340
5341 // Save results
5342 Built.IterationVarRef = IV.get();
5343 Built.LastIteration = LastIteration.get();
Alexander Musman3276a272015-03-21 10:12:56 +00005344 Built.NumIterations = NumIterations.get();
Alexey Bataev3bed68c2015-07-15 12:14:07 +00005345 Built.CalcLastIteration =
5346 SemaRef.ActOnFinishFullExpr(CalcLastIteration.get()).get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00005347 Built.PreCond = PreCond.get();
Alexey Bataev5a3af132016-03-29 08:58:54 +00005348 Built.PreInits = buildPreInits(C, Captures);
Alexander Musmana5f070a2014-10-01 06:03:56 +00005349 Built.Cond = Cond.get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00005350 Built.Init = Init.get();
5351 Built.Inc = Inc.get();
Alexander Musmanc6388682014-12-15 07:07:06 +00005352 Built.LB = LB.get();
5353 Built.UB = UB.get();
5354 Built.IL = IL.get();
5355 Built.ST = ST.get();
5356 Built.EUB = EUB.get();
5357 Built.NLB = NextLB.get();
5358 Built.NUB = NextUB.get();
Carlo Bertolli9925f152016-06-27 14:55:37 +00005359 Built.PrevLB = PrevLB.get();
5360 Built.PrevUB = PrevUB.get();
Alexander Musmana5f070a2014-10-01 06:03:56 +00005361
Alexey Bataev8b427062016-05-25 12:36:08 +00005362 Expr *CounterVal = SemaRef.DefaultLvalueConversion(IV.get()).get();
5363 // Fill data for doacross depend clauses.
5364 for (auto Pair : DSA.getDoacrossDependClauses()) {
5365 if (Pair.first->getDependencyKind() == OMPC_DEPEND_source)
5366 Pair.first->setCounterValue(CounterVal);
5367 else {
5368 if (NestedLoopCount != Pair.second.size() ||
5369 NestedLoopCount != LoopMultipliers.size() + 1) {
5370 // Erroneous case - clause has some problems.
5371 Pair.first->setCounterValue(CounterVal);
5372 continue;
5373 }
5374 assert(Pair.first->getDependencyKind() == OMPC_DEPEND_sink);
5375 auto I = Pair.second.rbegin();
5376 auto IS = IterSpaces.rbegin();
5377 auto ILM = LoopMultipliers.rbegin();
5378 Expr *UpCounterVal = CounterVal;
5379 Expr *Multiplier = nullptr;
5380 for (int Cnt = NestedLoopCount - 1; Cnt >= 0; --Cnt) {
5381 if (I->first) {
5382 assert(IS->CounterStep);
5383 Expr *NormalizedOffset =
5384 SemaRef
5385 .BuildBinOp(CurScope, I->first->getExprLoc(), BO_Div,
5386 I->first, IS->CounterStep)
5387 .get();
5388 if (Multiplier) {
5389 NormalizedOffset =
5390 SemaRef
5391 .BuildBinOp(CurScope, I->first->getExprLoc(), BO_Mul,
5392 NormalizedOffset, Multiplier)
5393 .get();
5394 }
5395 assert(I->second == OO_Plus || I->second == OO_Minus);
5396 BinaryOperatorKind BOK = (I->second == OO_Plus) ? BO_Add : BO_Sub;
5397 UpCounterVal =
5398 SemaRef.BuildBinOp(CurScope, I->first->getExprLoc(), BOK,
5399 UpCounterVal, NormalizedOffset).get();
5400 }
5401 Multiplier = *ILM;
5402 ++I;
5403 ++IS;
5404 ++ILM;
5405 }
5406 Pair.first->setCounterValue(UpCounterVal);
5407 }
5408 }
5409
Alexey Bataevabfc0692014-06-25 06:52:00 +00005410 return NestedLoopCount;
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00005411}
5412
Alexey Bataev10e775f2015-07-30 11:36:16 +00005413static Expr *getCollapseNumberExpr(ArrayRef<OMPClause *> Clauses) {
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00005414 auto CollapseClauses =
5415 OMPExecutableDirective::getClausesOfKind<OMPCollapseClause>(Clauses);
5416 if (CollapseClauses.begin() != CollapseClauses.end())
5417 return (*CollapseClauses.begin())->getNumForLoops();
Alexey Bataeve2f07d42014-06-24 12:55:56 +00005418 return nullptr;
5419}
5420
Alexey Bataev10e775f2015-07-30 11:36:16 +00005421static Expr *getOrderedNumberExpr(ArrayRef<OMPClause *> Clauses) {
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00005422 auto OrderedClauses =
5423 OMPExecutableDirective::getClausesOfKind<OMPOrderedClause>(Clauses);
5424 if (OrderedClauses.begin() != OrderedClauses.end())
5425 return (*OrderedClauses.begin())->getNumForLoops();
Alexey Bataev10e775f2015-07-30 11:36:16 +00005426 return nullptr;
5427}
5428
Kelvin Lic5609492016-07-15 04:39:07 +00005429static bool checkSimdlenSafelenSpecified(Sema &S,
5430 const ArrayRef<OMPClause *> Clauses) {
5431 OMPSafelenClause *Safelen = nullptr;
5432 OMPSimdlenClause *Simdlen = nullptr;
5433
5434 for (auto *Clause : Clauses) {
5435 if (Clause->getClauseKind() == OMPC_safelen)
5436 Safelen = cast<OMPSafelenClause>(Clause);
5437 else if (Clause->getClauseKind() == OMPC_simdlen)
5438 Simdlen = cast<OMPSimdlenClause>(Clause);
5439 if (Safelen && Simdlen)
5440 break;
5441 }
5442
5443 if (Simdlen && Safelen) {
5444 llvm::APSInt SimdlenRes, SafelenRes;
5445 auto SimdlenLength = Simdlen->getSimdlen();
5446 auto SafelenLength = Safelen->getSafelen();
5447 if (SimdlenLength->isValueDependent() || SimdlenLength->isTypeDependent() ||
5448 SimdlenLength->isInstantiationDependent() ||
5449 SimdlenLength->containsUnexpandedParameterPack())
5450 return false;
5451 if (SafelenLength->isValueDependent() || SafelenLength->isTypeDependent() ||
5452 SafelenLength->isInstantiationDependent() ||
5453 SafelenLength->containsUnexpandedParameterPack())
5454 return false;
5455 SimdlenLength->EvaluateAsInt(SimdlenRes, S.Context);
5456 SafelenLength->EvaluateAsInt(SafelenRes, S.Context);
5457 // OpenMP 4.5 [2.8.1, simd Construct, Restrictions]
5458 // If both simdlen and safelen clauses are specified, the value of the
5459 // simdlen parameter must be less than or equal to the value of the safelen
5460 // parameter.
5461 if (SimdlenRes > SafelenRes) {
5462 S.Diag(SimdlenLength->getExprLoc(),
5463 diag::err_omp_wrong_simdlen_safelen_values)
5464 << SimdlenLength->getSourceRange() << SafelenLength->getSourceRange();
5465 return true;
5466 }
Alexey Bataev66b15b52015-08-21 11:14:16 +00005467 }
5468 return false;
5469}
5470
Alexey Bataev4acb8592014-07-07 13:01:15 +00005471StmtResult Sema::ActOnOpenMPSimdDirective(
5472 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
5473 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00005474 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005475 if (!AStmt)
5476 return StmtError();
5477
5478 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musmanc6388682014-12-15 07:07:06 +00005479 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00005480 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
5481 // define the nested loops number.
5482 unsigned NestedLoopCount = CheckOpenMPLoop(
5483 OMPD_simd, getCollapseNumberExpr(Clauses), getOrderedNumberExpr(Clauses),
5484 AStmt, *this, *DSAStack, VarsWithImplicitDSA, B);
Alexey Bataevabfc0692014-06-25 06:52:00 +00005485 if (NestedLoopCount == 0)
Alexey Bataev1b59ab52014-02-27 08:29:12 +00005486 return StmtError();
Alexey Bataev1b59ab52014-02-27 08:29:12 +00005487
Alexander Musmana5f070a2014-10-01 06:03:56 +00005488 assert((CurContext->isDependentContext() || B.builtAll()) &&
5489 "omp simd loop exprs were not built");
5490
Alexander Musman3276a272015-03-21 10:12:56 +00005491 if (!CurContext->isDependentContext()) {
5492 // Finalize the clauses that need pre-built expressions for CodeGen.
5493 for (auto C : Clauses) {
5494 if (auto LC = dyn_cast<OMPLinearClause>(C))
5495 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00005496 B.NumIterations, *this, CurScope,
5497 DSAStack))
Alexander Musman3276a272015-03-21 10:12:56 +00005498 return StmtError();
5499 }
5500 }
5501
Kelvin Lic5609492016-07-15 04:39:07 +00005502 if (checkSimdlenSafelenSpecified(*this, Clauses))
Alexey Bataev66b15b52015-08-21 11:14:16 +00005503 return StmtError();
5504
Alexey Bataev1b59ab52014-02-27 08:29:12 +00005505 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00005506 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
5507 Clauses, AStmt, B);
Alexey Bataev1b59ab52014-02-27 08:29:12 +00005508}
5509
Alexey Bataev4acb8592014-07-07 13:01:15 +00005510StmtResult Sema::ActOnOpenMPForDirective(
5511 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
5512 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00005513 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005514 if (!AStmt)
5515 return StmtError();
5516
5517 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musmanc6388682014-12-15 07:07:06 +00005518 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00005519 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
5520 // define the nested loops number.
5521 unsigned NestedLoopCount = CheckOpenMPLoop(
5522 OMPD_for, getCollapseNumberExpr(Clauses), getOrderedNumberExpr(Clauses),
5523 AStmt, *this, *DSAStack, VarsWithImplicitDSA, B);
Alexey Bataevabfc0692014-06-25 06:52:00 +00005524 if (NestedLoopCount == 0)
Alexey Bataevf29276e2014-06-18 04:14:57 +00005525 return StmtError();
5526
Alexander Musmana5f070a2014-10-01 06:03:56 +00005527 assert((CurContext->isDependentContext() || B.builtAll()) &&
5528 "omp for loop exprs were not built");
5529
Alexey Bataev54acd402015-08-04 11:18:19 +00005530 if (!CurContext->isDependentContext()) {
5531 // Finalize the clauses that need pre-built expressions for CodeGen.
5532 for (auto C : Clauses) {
5533 if (auto LC = dyn_cast<OMPLinearClause>(C))
5534 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00005535 B.NumIterations, *this, CurScope,
5536 DSAStack))
Alexey Bataev54acd402015-08-04 11:18:19 +00005537 return StmtError();
5538 }
5539 }
5540
Alexey Bataevf29276e2014-06-18 04:14:57 +00005541 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00005542 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
Alexey Bataev25e5b442015-09-15 12:52:43 +00005543 Clauses, AStmt, B, DSAStack->isCancelRegion());
Alexey Bataevf29276e2014-06-18 04:14:57 +00005544}
5545
Alexander Musmanf82886e2014-09-18 05:12:34 +00005546StmtResult Sema::ActOnOpenMPForSimdDirective(
5547 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
5548 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00005549 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005550 if (!AStmt)
5551 return StmtError();
5552
5553 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musmanc6388682014-12-15 07:07:06 +00005554 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00005555 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
5556 // define the nested loops number.
Alexander Musmanf82886e2014-09-18 05:12:34 +00005557 unsigned NestedLoopCount =
Alexey Bataev10e775f2015-07-30 11:36:16 +00005558 CheckOpenMPLoop(OMPD_for_simd, getCollapseNumberExpr(Clauses),
5559 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
5560 VarsWithImplicitDSA, B);
Alexander Musmanf82886e2014-09-18 05:12:34 +00005561 if (NestedLoopCount == 0)
5562 return StmtError();
5563
Alexander Musmanc6388682014-12-15 07:07:06 +00005564 assert((CurContext->isDependentContext() || B.builtAll()) &&
5565 "omp for simd loop exprs were not built");
5566
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00005567 if (!CurContext->isDependentContext()) {
5568 // Finalize the clauses that need pre-built expressions for CodeGen.
5569 for (auto C : Clauses) {
5570 if (auto LC = dyn_cast<OMPLinearClause>(C))
5571 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00005572 B.NumIterations, *this, CurScope,
5573 DSAStack))
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00005574 return StmtError();
5575 }
5576 }
5577
Kelvin Lic5609492016-07-15 04:39:07 +00005578 if (checkSimdlenSafelenSpecified(*this, Clauses))
Alexey Bataev66b15b52015-08-21 11:14:16 +00005579 return StmtError();
5580
Alexander Musmanf82886e2014-09-18 05:12:34 +00005581 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00005582 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
5583 Clauses, AStmt, B);
Alexander Musmanf82886e2014-09-18 05:12:34 +00005584}
5585
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00005586StmtResult Sema::ActOnOpenMPSectionsDirective(ArrayRef<OMPClause *> Clauses,
5587 Stmt *AStmt,
5588 SourceLocation StartLoc,
5589 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005590 if (!AStmt)
5591 return StmtError();
5592
5593 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00005594 auto BaseStmt = AStmt;
5595 while (CapturedStmt *CS = dyn_cast_or_null<CapturedStmt>(BaseStmt))
5596 BaseStmt = CS->getCapturedStmt();
5597 if (auto C = dyn_cast_or_null<CompoundStmt>(BaseStmt)) {
5598 auto S = C->children();
Benjamin Kramer5733e352015-07-18 17:09:36 +00005599 if (S.begin() == S.end())
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00005600 return StmtError();
5601 // All associated statements must be '#pragma omp section' except for
5602 // the first one.
Benjamin Kramer5733e352015-07-18 17:09:36 +00005603 for (Stmt *SectionStmt : llvm::make_range(std::next(S.begin()), S.end())) {
Alexey Bataev1e0498a2014-06-26 08:21:58 +00005604 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) {
5605 if (SectionStmt)
5606 Diag(SectionStmt->getLocStart(),
5607 diag::err_omp_sections_substmt_not_section);
5608 return StmtError();
5609 }
Alexey Bataev25e5b442015-09-15 12:52:43 +00005610 cast<OMPSectionDirective>(SectionStmt)
5611 ->setHasCancel(DSAStack->isCancelRegion());
Alexey Bataev1e0498a2014-06-26 08:21:58 +00005612 }
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00005613 } else {
5614 Diag(AStmt->getLocStart(), diag::err_omp_sections_not_compound_stmt);
5615 return StmtError();
5616 }
5617
5618 getCurFunction()->setHasBranchProtectedScope();
5619
Alexey Bataev25e5b442015-09-15 12:52:43 +00005620 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
5621 DSAStack->isCancelRegion());
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00005622}
5623
Alexey Bataev1e0498a2014-06-26 08:21:58 +00005624StmtResult Sema::ActOnOpenMPSectionDirective(Stmt *AStmt,
5625 SourceLocation StartLoc,
5626 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005627 if (!AStmt)
5628 return StmtError();
5629
5630 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataev1e0498a2014-06-26 08:21:58 +00005631
5632 getCurFunction()->setHasBranchProtectedScope();
Alexey Bataev25e5b442015-09-15 12:52:43 +00005633 DSAStack->setParentCancelRegion(DSAStack->isCancelRegion());
Alexey Bataev1e0498a2014-06-26 08:21:58 +00005634
Alexey Bataev25e5b442015-09-15 12:52:43 +00005635 return OMPSectionDirective::Create(Context, StartLoc, EndLoc, AStmt,
5636 DSAStack->isCancelRegion());
Alexey Bataev1e0498a2014-06-26 08:21:58 +00005637}
5638
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00005639StmtResult Sema::ActOnOpenMPSingleDirective(ArrayRef<OMPClause *> Clauses,
5640 Stmt *AStmt,
5641 SourceLocation StartLoc,
5642 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005643 if (!AStmt)
5644 return StmtError();
5645
5646 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataev74a05c92014-07-15 02:55:09 +00005647
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00005648 getCurFunction()->setHasBranchProtectedScope();
Alexey Bataev74a05c92014-07-15 02:55:09 +00005649
Alexey Bataev3255bf32015-01-19 05:20:46 +00005650 // OpenMP [2.7.3, single Construct, Restrictions]
5651 // The copyprivate clause must not be used with the nowait clause.
5652 OMPClause *Nowait = nullptr;
5653 OMPClause *Copyprivate = nullptr;
5654 for (auto *Clause : Clauses) {
5655 if (Clause->getClauseKind() == OMPC_nowait)
5656 Nowait = Clause;
5657 else if (Clause->getClauseKind() == OMPC_copyprivate)
5658 Copyprivate = Clause;
5659 if (Copyprivate && Nowait) {
5660 Diag(Copyprivate->getLocStart(),
5661 diag::err_omp_single_copyprivate_with_nowait);
5662 Diag(Nowait->getLocStart(), diag::note_omp_nowait_clause_here);
5663 return StmtError();
5664 }
5665 }
5666
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00005667 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
5668}
5669
Alexander Musman80c22892014-07-17 08:54:58 +00005670StmtResult Sema::ActOnOpenMPMasterDirective(Stmt *AStmt,
5671 SourceLocation StartLoc,
5672 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005673 if (!AStmt)
5674 return StmtError();
5675
5676 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musman80c22892014-07-17 08:54:58 +00005677
5678 getCurFunction()->setHasBranchProtectedScope();
5679
5680 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt);
5681}
5682
Alexey Bataev28c75412015-12-15 08:19:24 +00005683StmtResult Sema::ActOnOpenMPCriticalDirective(
5684 const DeclarationNameInfo &DirName, ArrayRef<OMPClause *> Clauses,
5685 Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005686 if (!AStmt)
5687 return StmtError();
5688
5689 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexander Musmand9ed09f2014-07-21 09:42:05 +00005690
Alexey Bataev28c75412015-12-15 08:19:24 +00005691 bool ErrorFound = false;
5692 llvm::APSInt Hint;
5693 SourceLocation HintLoc;
5694 bool DependentHint = false;
5695 for (auto *C : Clauses) {
5696 if (C->getClauseKind() == OMPC_hint) {
5697 if (!DirName.getName()) {
5698 Diag(C->getLocStart(), diag::err_omp_hint_clause_no_name);
5699 ErrorFound = true;
5700 }
5701 Expr *E = cast<OMPHintClause>(C)->getHint();
5702 if (E->isTypeDependent() || E->isValueDependent() ||
5703 E->isInstantiationDependent())
5704 DependentHint = true;
5705 else {
5706 Hint = E->EvaluateKnownConstInt(Context);
5707 HintLoc = C->getLocStart();
5708 }
5709 }
5710 }
5711 if (ErrorFound)
5712 return StmtError();
5713 auto Pair = DSAStack->getCriticalWithHint(DirName);
5714 if (Pair.first && DirName.getName() && !DependentHint) {
5715 if (llvm::APSInt::compareValues(Hint, Pair.second) != 0) {
5716 Diag(StartLoc, diag::err_omp_critical_with_hint);
5717 if (HintLoc.isValid()) {
5718 Diag(HintLoc, diag::note_omp_critical_hint_here)
5719 << 0 << Hint.toString(/*Radix=*/10, /*Signed=*/false);
5720 } else
5721 Diag(StartLoc, diag::note_omp_critical_no_hint) << 0;
5722 if (auto *C = Pair.first->getSingleClause<OMPHintClause>()) {
5723 Diag(C->getLocStart(), diag::note_omp_critical_hint_here)
5724 << 1
5725 << C->getHint()->EvaluateKnownConstInt(Context).toString(
5726 /*Radix=*/10, /*Signed=*/false);
5727 } else
5728 Diag(Pair.first->getLocStart(), diag::note_omp_critical_no_hint) << 1;
5729 }
5730 }
5731
Alexander Musmand9ed09f2014-07-21 09:42:05 +00005732 getCurFunction()->setHasBranchProtectedScope();
5733
Alexey Bataev28c75412015-12-15 08:19:24 +00005734 auto *Dir = OMPCriticalDirective::Create(Context, DirName, StartLoc, EndLoc,
5735 Clauses, AStmt);
5736 if (!Pair.first && DirName.getName() && !DependentHint)
5737 DSAStack->addCriticalWithHint(Dir, Hint);
5738 return Dir;
Alexander Musmand9ed09f2014-07-21 09:42:05 +00005739}
5740
Alexey Bataev4acb8592014-07-07 13:01:15 +00005741StmtResult Sema::ActOnOpenMPParallelForDirective(
5742 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
5743 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00005744 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005745 if (!AStmt)
5746 return StmtError();
5747
Alexey Bataev4acb8592014-07-07 13:01:15 +00005748 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
5749 // 1.2.2 OpenMP Language Terminology
5750 // Structured block - An executable statement with a single entry at the
5751 // top and a single exit at the bottom.
5752 // The point of exit cannot be a branch out of the structured block.
5753 // longjmp() and throw() must not violate the entry/exit criteria.
5754 CS->getCapturedDecl()->setNothrow();
5755
Alexander Musmanc6388682014-12-15 07:07:06 +00005756 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00005757 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
5758 // define the nested loops number.
Alexey Bataev4acb8592014-07-07 13:01:15 +00005759 unsigned NestedLoopCount =
Alexey Bataev10e775f2015-07-30 11:36:16 +00005760 CheckOpenMPLoop(OMPD_parallel_for, getCollapseNumberExpr(Clauses),
5761 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
5762 VarsWithImplicitDSA, B);
Alexey Bataev4acb8592014-07-07 13:01:15 +00005763 if (NestedLoopCount == 0)
5764 return StmtError();
5765
Alexander Musmana5f070a2014-10-01 06:03:56 +00005766 assert((CurContext->isDependentContext() || B.builtAll()) &&
5767 "omp parallel for loop exprs were not built");
5768
Alexey Bataev54acd402015-08-04 11:18:19 +00005769 if (!CurContext->isDependentContext()) {
5770 // Finalize the clauses that need pre-built expressions for CodeGen.
5771 for (auto C : Clauses) {
5772 if (auto LC = dyn_cast<OMPLinearClause>(C))
5773 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00005774 B.NumIterations, *this, CurScope,
5775 DSAStack))
Alexey Bataev54acd402015-08-04 11:18:19 +00005776 return StmtError();
5777 }
5778 }
5779
Alexey Bataev4acb8592014-07-07 13:01:15 +00005780 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmanc6388682014-12-15 07:07:06 +00005781 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc,
Alexey Bataev25e5b442015-09-15 12:52:43 +00005782 NestedLoopCount, Clauses, AStmt, B,
5783 DSAStack->isCancelRegion());
Alexey Bataev4acb8592014-07-07 13:01:15 +00005784}
5785
Alexander Musmane4e893b2014-09-23 09:33:00 +00005786StmtResult Sema::ActOnOpenMPParallelForSimdDirective(
5787 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
5788 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00005789 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005790 if (!AStmt)
5791 return StmtError();
5792
Alexander Musmane4e893b2014-09-23 09:33:00 +00005793 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
5794 // 1.2.2 OpenMP Language Terminology
5795 // Structured block - An executable statement with a single entry at the
5796 // top and a single exit at the bottom.
5797 // The point of exit cannot be a branch out of the structured block.
5798 // longjmp() and throw() must not violate the entry/exit criteria.
5799 CS->getCapturedDecl()->setNothrow();
5800
Alexander Musmanc6388682014-12-15 07:07:06 +00005801 OMPLoopDirective::HelperExprs B;
Alexey Bataev10e775f2015-07-30 11:36:16 +00005802 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
5803 // define the nested loops number.
Alexander Musmane4e893b2014-09-23 09:33:00 +00005804 unsigned NestedLoopCount =
Alexey Bataev10e775f2015-07-30 11:36:16 +00005805 CheckOpenMPLoop(OMPD_parallel_for_simd, getCollapseNumberExpr(Clauses),
5806 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
5807 VarsWithImplicitDSA, B);
Alexander Musmane4e893b2014-09-23 09:33:00 +00005808 if (NestedLoopCount == 0)
5809 return StmtError();
5810
Alexey Bataev3b5b5c42015-06-18 10:10:12 +00005811 if (!CurContext->isDependentContext()) {
5812 // Finalize the clauses that need pre-built expressions for CodeGen.
5813 for (auto C : Clauses) {
5814 if (auto LC = dyn_cast<OMPLinearClause>(C))
5815 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00005816 B.NumIterations, *this, CurScope,
5817 DSAStack))
Alexey Bataev3b5b5c42015-06-18 10:10:12 +00005818 return StmtError();
5819 }
5820 }
5821
Kelvin Lic5609492016-07-15 04:39:07 +00005822 if (checkSimdlenSafelenSpecified(*this, Clauses))
Alexey Bataev66b15b52015-08-21 11:14:16 +00005823 return StmtError();
5824
Alexander Musmane4e893b2014-09-23 09:33:00 +00005825 getCurFunction()->setHasBranchProtectedScope();
Alexander Musmana5f070a2014-10-01 06:03:56 +00005826 return OMPParallelForSimdDirective::Create(
Alexander Musmanc6388682014-12-15 07:07:06 +00005827 Context, StartLoc, EndLoc, NestedLoopCount, Clauses, AStmt, B);
Alexander Musmane4e893b2014-09-23 09:33:00 +00005828}
5829
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005830StmtResult
5831Sema::ActOnOpenMPParallelSectionsDirective(ArrayRef<OMPClause *> Clauses,
5832 Stmt *AStmt, SourceLocation StartLoc,
5833 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005834 if (!AStmt)
5835 return StmtError();
5836
5837 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005838 auto BaseStmt = AStmt;
5839 while (CapturedStmt *CS = dyn_cast_or_null<CapturedStmt>(BaseStmt))
5840 BaseStmt = CS->getCapturedStmt();
5841 if (auto C = dyn_cast_or_null<CompoundStmt>(BaseStmt)) {
5842 auto S = C->children();
Benjamin Kramer5733e352015-07-18 17:09:36 +00005843 if (S.begin() == S.end())
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005844 return StmtError();
5845 // All associated statements must be '#pragma omp section' except for
5846 // the first one.
Benjamin Kramer5733e352015-07-18 17:09:36 +00005847 for (Stmt *SectionStmt : llvm::make_range(std::next(S.begin()), S.end())) {
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005848 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) {
5849 if (SectionStmt)
5850 Diag(SectionStmt->getLocStart(),
5851 diag::err_omp_parallel_sections_substmt_not_section);
5852 return StmtError();
5853 }
Alexey Bataev25e5b442015-09-15 12:52:43 +00005854 cast<OMPSectionDirective>(SectionStmt)
5855 ->setHasCancel(DSAStack->isCancelRegion());
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005856 }
5857 } else {
5858 Diag(AStmt->getLocStart(),
5859 diag::err_omp_parallel_sections_not_compound_stmt);
5860 return StmtError();
5861 }
5862
5863 getCurFunction()->setHasBranchProtectedScope();
5864
Alexey Bataev25e5b442015-09-15 12:52:43 +00005865 return OMPParallelSectionsDirective::Create(
5866 Context, StartLoc, EndLoc, Clauses, AStmt, DSAStack->isCancelRegion());
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00005867}
5868
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005869StmtResult Sema::ActOnOpenMPTaskDirective(ArrayRef<OMPClause *> Clauses,
5870 Stmt *AStmt, SourceLocation StartLoc,
5871 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005872 if (!AStmt)
5873 return StmtError();
5874
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005875 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
5876 // 1.2.2 OpenMP Language Terminology
5877 // Structured block - An executable statement with a single entry at the
5878 // top and a single exit at the bottom.
5879 // The point of exit cannot be a branch out of the structured block.
5880 // longjmp() and throw() must not violate the entry/exit criteria.
5881 CS->getCapturedDecl()->setNothrow();
5882
5883 getCurFunction()->setHasBranchProtectedScope();
5884
Alexey Bataev25e5b442015-09-15 12:52:43 +00005885 return OMPTaskDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
5886 DSAStack->isCancelRegion());
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00005887}
5888
Alexey Bataev68446b72014-07-18 07:47:19 +00005889StmtResult Sema::ActOnOpenMPTaskyieldDirective(SourceLocation StartLoc,
5890 SourceLocation EndLoc) {
5891 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc);
5892}
5893
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00005894StmtResult Sema::ActOnOpenMPBarrierDirective(SourceLocation StartLoc,
5895 SourceLocation EndLoc) {
5896 return OMPBarrierDirective::Create(Context, StartLoc, EndLoc);
5897}
5898
Alexey Bataev2df347a2014-07-18 10:17:07 +00005899StmtResult Sema::ActOnOpenMPTaskwaitDirective(SourceLocation StartLoc,
5900 SourceLocation EndLoc) {
5901 return OMPTaskwaitDirective::Create(Context, StartLoc, EndLoc);
5902}
5903
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00005904StmtResult Sema::ActOnOpenMPTaskgroupDirective(Stmt *AStmt,
5905 SourceLocation StartLoc,
5906 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00005907 if (!AStmt)
5908 return StmtError();
5909
5910 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00005911
5912 getCurFunction()->setHasBranchProtectedScope();
5913
5914 return OMPTaskgroupDirective::Create(Context, StartLoc, EndLoc, AStmt);
5915}
5916
Alexey Bataev6125da92014-07-21 11:26:11 +00005917StmtResult Sema::ActOnOpenMPFlushDirective(ArrayRef<OMPClause *> Clauses,
5918 SourceLocation StartLoc,
5919 SourceLocation EndLoc) {
5920 assert(Clauses.size() <= 1 && "Extra clauses in flush directive");
5921 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses);
5922}
5923
Alexey Bataev346265e2015-09-25 10:37:12 +00005924StmtResult Sema::ActOnOpenMPOrderedDirective(ArrayRef<OMPClause *> Clauses,
5925 Stmt *AStmt,
Alexey Bataev9fb6e642014-07-22 06:45:04 +00005926 SourceLocation StartLoc,
5927 SourceLocation EndLoc) {
Alexey Bataeveb482352015-12-18 05:05:56 +00005928 OMPClause *DependFound = nullptr;
5929 OMPClause *DependSourceClause = nullptr;
Alexey Bataeva636c7f2015-12-23 10:27:45 +00005930 OMPClause *DependSinkClause = nullptr;
Alexey Bataeveb482352015-12-18 05:05:56 +00005931 bool ErrorFound = false;
Alexey Bataev346265e2015-09-25 10:37:12 +00005932 OMPThreadsClause *TC = nullptr;
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005933 OMPSIMDClause *SC = nullptr;
Alexey Bataeveb482352015-12-18 05:05:56 +00005934 for (auto *C : Clauses) {
5935 if (auto *DC = dyn_cast<OMPDependClause>(C)) {
5936 DependFound = C;
5937 if (DC->getDependencyKind() == OMPC_DEPEND_source) {
5938 if (DependSourceClause) {
5939 Diag(C->getLocStart(), diag::err_omp_more_one_clause)
5940 << getOpenMPDirectiveName(OMPD_ordered)
5941 << getOpenMPClauseName(OMPC_depend) << 2;
5942 ErrorFound = true;
5943 } else
5944 DependSourceClause = C;
Alexey Bataeva636c7f2015-12-23 10:27:45 +00005945 if (DependSinkClause) {
5946 Diag(C->getLocStart(), diag::err_omp_depend_sink_source_not_allowed)
5947 << 0;
5948 ErrorFound = true;
5949 }
5950 } else if (DC->getDependencyKind() == OMPC_DEPEND_sink) {
5951 if (DependSourceClause) {
5952 Diag(C->getLocStart(), diag::err_omp_depend_sink_source_not_allowed)
5953 << 1;
5954 ErrorFound = true;
5955 }
5956 DependSinkClause = C;
Alexey Bataeveb482352015-12-18 05:05:56 +00005957 }
5958 } else if (C->getClauseKind() == OMPC_threads)
Alexey Bataev346265e2015-09-25 10:37:12 +00005959 TC = cast<OMPThreadsClause>(C);
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005960 else if (C->getClauseKind() == OMPC_simd)
5961 SC = cast<OMPSIMDClause>(C);
Alexey Bataev346265e2015-09-25 10:37:12 +00005962 }
Alexey Bataeveb482352015-12-18 05:05:56 +00005963 if (!ErrorFound && !SC &&
5964 isOpenMPSimdDirective(DSAStack->getParentDirective())) {
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005965 // OpenMP [2.8.1,simd Construct, Restrictions]
5966 // An ordered construct with the simd clause is the only OpenMP construct
5967 // that can appear in the simd region.
5968 Diag(StartLoc, diag::err_omp_prohibited_region_simd);
Alexey Bataeveb482352015-12-18 05:05:56 +00005969 ErrorFound = true;
5970 } else if (DependFound && (TC || SC)) {
5971 Diag(DependFound->getLocStart(), diag::err_omp_depend_clause_thread_simd)
5972 << getOpenMPClauseName(TC ? TC->getClauseKind() : SC->getClauseKind());
5973 ErrorFound = true;
5974 } else if (DependFound && !DSAStack->getParentOrderedRegionParam()) {
5975 Diag(DependFound->getLocStart(),
5976 diag::err_omp_ordered_directive_without_param);
5977 ErrorFound = true;
5978 } else if (TC || Clauses.empty()) {
5979 if (auto *Param = DSAStack->getParentOrderedRegionParam()) {
5980 SourceLocation ErrLoc = TC ? TC->getLocStart() : StartLoc;
5981 Diag(ErrLoc, diag::err_omp_ordered_directive_with_param)
5982 << (TC != nullptr);
5983 Diag(Param->getLocStart(), diag::note_omp_ordered_param);
5984 ErrorFound = true;
5985 }
5986 }
5987 if ((!AStmt && !DependFound) || ErrorFound)
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005988 return StmtError();
Alexey Bataeveb482352015-12-18 05:05:56 +00005989
5990 if (AStmt) {
5991 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
5992
5993 getCurFunction()->setHasBranchProtectedScope();
Alexey Bataevd14d1e62015-09-28 06:39:35 +00005994 }
Alexey Bataev346265e2015-09-25 10:37:12 +00005995
5996 return OMPOrderedDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
Alexey Bataev9fb6e642014-07-22 06:45:04 +00005997}
5998
Alexey Bataev1d160b12015-03-13 12:27:31 +00005999namespace {
6000/// \brief Helper class for checking expression in 'omp atomic [update]'
6001/// construct.
6002class OpenMPAtomicUpdateChecker {
6003 /// \brief Error results for atomic update expressions.
6004 enum ExprAnalysisErrorCode {
6005 /// \brief A statement is not an expression statement.
6006 NotAnExpression,
6007 /// \brief Expression is not builtin binary or unary operation.
6008 NotABinaryOrUnaryExpression,
6009 /// \brief Unary operation is not post-/pre- increment/decrement operation.
6010 NotAnUnaryIncDecExpression,
6011 /// \brief An expression is not of scalar type.
6012 NotAScalarType,
6013 /// \brief A binary operation is not an assignment operation.
6014 NotAnAssignmentOp,
6015 /// \brief RHS part of the binary operation is not a binary expression.
6016 NotABinaryExpression,
6017 /// \brief RHS part is not additive/multiplicative/shift/biwise binary
6018 /// expression.
6019 NotABinaryOperator,
6020 /// \brief RHS binary operation does not have reference to the updated LHS
6021 /// part.
6022 NotAnUpdateExpression,
6023 /// \brief No errors is found.
6024 NoError
6025 };
6026 /// \brief Reference to Sema.
6027 Sema &SemaRef;
6028 /// \brief A location for note diagnostics (when error is found).
6029 SourceLocation NoteLoc;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006030 /// \brief 'x' lvalue part of the source atomic expression.
6031 Expr *X;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006032 /// \brief 'expr' rvalue part of the source atomic expression.
6033 Expr *E;
Alexey Bataevb4505a72015-03-30 05:20:59 +00006034 /// \brief Helper expression of the form
6035 /// 'OpaqueValueExpr(x) binop OpaqueValueExpr(expr)' or
6036 /// 'OpaqueValueExpr(expr) binop OpaqueValueExpr(x)'.
6037 Expr *UpdateExpr;
6038 /// \brief Is 'x' a LHS in a RHS part of full update expression. It is
6039 /// important for non-associative operations.
6040 bool IsXLHSInRHSPart;
6041 BinaryOperatorKind Op;
6042 SourceLocation OpLoc;
Alexey Bataevb78ca832015-04-01 03:33:17 +00006043 /// \brief true if the source expression is a postfix unary operation, false
6044 /// if it is a prefix unary operation.
6045 bool IsPostfixUpdate;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006046
6047public:
6048 OpenMPAtomicUpdateChecker(Sema &SemaRef)
Alexey Bataevb4505a72015-03-30 05:20:59 +00006049 : SemaRef(SemaRef), X(nullptr), E(nullptr), UpdateExpr(nullptr),
Alexey Bataevb78ca832015-04-01 03:33:17 +00006050 IsXLHSInRHSPart(false), Op(BO_PtrMemD), IsPostfixUpdate(false) {}
Alexey Bataev1d160b12015-03-13 12:27:31 +00006051 /// \brief Check specified statement that it is suitable for 'atomic update'
6052 /// constructs and extract 'x', 'expr' and Operation from the original
Alexey Bataevb78ca832015-04-01 03:33:17 +00006053 /// expression. If DiagId and NoteId == 0, then only check is performed
6054 /// without error notification.
Alexey Bataev1d160b12015-03-13 12:27:31 +00006055 /// \param DiagId Diagnostic which should be emitted if error is found.
6056 /// \param NoteId Diagnostic note for the main error message.
6057 /// \return true if statement is not an update expression, false otherwise.
Alexey Bataevb78ca832015-04-01 03:33:17 +00006058 bool checkStatement(Stmt *S, unsigned DiagId = 0, unsigned NoteId = 0);
Alexey Bataev1d160b12015-03-13 12:27:31 +00006059 /// \brief Return the 'x' lvalue part of the source atomic expression.
6060 Expr *getX() const { return X; }
Alexey Bataev1d160b12015-03-13 12:27:31 +00006061 /// \brief Return the 'expr' rvalue part of the source atomic expression.
6062 Expr *getExpr() const { return E; }
Alexey Bataevb4505a72015-03-30 05:20:59 +00006063 /// \brief Return the update expression used in calculation of the updated
6064 /// value. Always has form 'OpaqueValueExpr(x) binop OpaqueValueExpr(expr)' or
6065 /// 'OpaqueValueExpr(expr) binop OpaqueValueExpr(x)'.
6066 Expr *getUpdateExpr() const { return UpdateExpr; }
6067 /// \brief Return true if 'x' is LHS in RHS part of full update expression,
6068 /// false otherwise.
6069 bool isXLHSInRHSPart() const { return IsXLHSInRHSPart; }
6070
Alexey Bataevb78ca832015-04-01 03:33:17 +00006071 /// \brief true if the source expression is a postfix unary operation, false
6072 /// if it is a prefix unary operation.
6073 bool isPostfixUpdate() const { return IsPostfixUpdate; }
6074
Alexey Bataev1d160b12015-03-13 12:27:31 +00006075private:
Alexey Bataevb78ca832015-04-01 03:33:17 +00006076 bool checkBinaryOperation(BinaryOperator *AtomicBinOp, unsigned DiagId = 0,
6077 unsigned NoteId = 0);
Alexey Bataev1d160b12015-03-13 12:27:31 +00006078};
6079} // namespace
6080
6081bool OpenMPAtomicUpdateChecker::checkBinaryOperation(
6082 BinaryOperator *AtomicBinOp, unsigned DiagId, unsigned NoteId) {
6083 ExprAnalysisErrorCode ErrorFound = NoError;
6084 SourceLocation ErrorLoc, NoteLoc;
6085 SourceRange ErrorRange, NoteRange;
6086 // Allowed constructs are:
6087 // x = x binop expr;
6088 // x = expr binop x;
6089 if (AtomicBinOp->getOpcode() == BO_Assign) {
6090 X = AtomicBinOp->getLHS();
6091 if (auto *AtomicInnerBinOp = dyn_cast<BinaryOperator>(
6092 AtomicBinOp->getRHS()->IgnoreParenImpCasts())) {
6093 if (AtomicInnerBinOp->isMultiplicativeOp() ||
6094 AtomicInnerBinOp->isAdditiveOp() || AtomicInnerBinOp->isShiftOp() ||
6095 AtomicInnerBinOp->isBitwiseOp()) {
Alexey Bataevb4505a72015-03-30 05:20:59 +00006096 Op = AtomicInnerBinOp->getOpcode();
6097 OpLoc = AtomicInnerBinOp->getOperatorLoc();
Alexey Bataev1d160b12015-03-13 12:27:31 +00006098 auto *LHS = AtomicInnerBinOp->getLHS();
6099 auto *RHS = AtomicInnerBinOp->getRHS();
6100 llvm::FoldingSetNodeID XId, LHSId, RHSId;
6101 X->IgnoreParenImpCasts()->Profile(XId, SemaRef.getASTContext(),
6102 /*Canonical=*/true);
6103 LHS->IgnoreParenImpCasts()->Profile(LHSId, SemaRef.getASTContext(),
6104 /*Canonical=*/true);
6105 RHS->IgnoreParenImpCasts()->Profile(RHSId, SemaRef.getASTContext(),
6106 /*Canonical=*/true);
6107 if (XId == LHSId) {
6108 E = RHS;
Alexey Bataevb4505a72015-03-30 05:20:59 +00006109 IsXLHSInRHSPart = true;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006110 } else if (XId == RHSId) {
6111 E = LHS;
Alexey Bataevb4505a72015-03-30 05:20:59 +00006112 IsXLHSInRHSPart = false;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006113 } else {
6114 ErrorLoc = AtomicInnerBinOp->getExprLoc();
6115 ErrorRange = AtomicInnerBinOp->getSourceRange();
6116 NoteLoc = X->getExprLoc();
6117 NoteRange = X->getSourceRange();
6118 ErrorFound = NotAnUpdateExpression;
6119 }
6120 } else {
6121 ErrorLoc = AtomicInnerBinOp->getExprLoc();
6122 ErrorRange = AtomicInnerBinOp->getSourceRange();
6123 NoteLoc = AtomicInnerBinOp->getOperatorLoc();
6124 NoteRange = SourceRange(NoteLoc, NoteLoc);
6125 ErrorFound = NotABinaryOperator;
6126 }
6127 } else {
6128 NoteLoc = ErrorLoc = AtomicBinOp->getRHS()->getExprLoc();
6129 NoteRange = ErrorRange = AtomicBinOp->getRHS()->getSourceRange();
6130 ErrorFound = NotABinaryExpression;
6131 }
6132 } else {
6133 ErrorLoc = AtomicBinOp->getExprLoc();
6134 ErrorRange = AtomicBinOp->getSourceRange();
6135 NoteLoc = AtomicBinOp->getOperatorLoc();
6136 NoteRange = SourceRange(NoteLoc, NoteLoc);
6137 ErrorFound = NotAnAssignmentOp;
6138 }
Alexey Bataevb78ca832015-04-01 03:33:17 +00006139 if (ErrorFound != NoError && DiagId != 0 && NoteId != 0) {
Alexey Bataev1d160b12015-03-13 12:27:31 +00006140 SemaRef.Diag(ErrorLoc, DiagId) << ErrorRange;
6141 SemaRef.Diag(NoteLoc, NoteId) << ErrorFound << NoteRange;
6142 return true;
6143 } else if (SemaRef.CurContext->isDependentContext())
Alexey Bataevb4505a72015-03-30 05:20:59 +00006144 E = X = UpdateExpr = nullptr;
Alexey Bataev5e018f92015-04-23 06:35:10 +00006145 return ErrorFound != NoError;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006146}
6147
6148bool OpenMPAtomicUpdateChecker::checkStatement(Stmt *S, unsigned DiagId,
6149 unsigned NoteId) {
6150 ExprAnalysisErrorCode ErrorFound = NoError;
6151 SourceLocation ErrorLoc, NoteLoc;
6152 SourceRange ErrorRange, NoteRange;
6153 // Allowed constructs are:
6154 // x++;
6155 // x--;
6156 // ++x;
6157 // --x;
6158 // x binop= expr;
6159 // x = x binop expr;
6160 // x = expr binop x;
6161 if (auto *AtomicBody = dyn_cast<Expr>(S)) {
6162 AtomicBody = AtomicBody->IgnoreParenImpCasts();
6163 if (AtomicBody->getType()->isScalarType() ||
6164 AtomicBody->isInstantiationDependent()) {
6165 if (auto *AtomicCompAssignOp = dyn_cast<CompoundAssignOperator>(
6166 AtomicBody->IgnoreParenImpCasts())) {
6167 // Check for Compound Assignment Operation
Alexey Bataevb4505a72015-03-30 05:20:59 +00006168 Op = BinaryOperator::getOpForCompoundAssignment(
Alexey Bataev1d160b12015-03-13 12:27:31 +00006169 AtomicCompAssignOp->getOpcode());
Alexey Bataevb4505a72015-03-30 05:20:59 +00006170 OpLoc = AtomicCompAssignOp->getOperatorLoc();
Alexey Bataev1d160b12015-03-13 12:27:31 +00006171 E = AtomicCompAssignOp->getRHS();
Alexey Bataevb4505a72015-03-30 05:20:59 +00006172 X = AtomicCompAssignOp->getLHS();
6173 IsXLHSInRHSPart = true;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006174 } else if (auto *AtomicBinOp = dyn_cast<BinaryOperator>(
6175 AtomicBody->IgnoreParenImpCasts())) {
6176 // Check for Binary Operation
Alexey Bataevb4505a72015-03-30 05:20:59 +00006177 if(checkBinaryOperation(AtomicBinOp, DiagId, NoteId))
6178 return true;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006179 } else if (auto *AtomicUnaryOp =
Alexey Bataev1d160b12015-03-13 12:27:31 +00006180 dyn_cast<UnaryOperator>(AtomicBody->IgnoreParenImpCasts())) {
6181 // Check for Unary Operation
6182 if (AtomicUnaryOp->isIncrementDecrementOp()) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00006183 IsPostfixUpdate = AtomicUnaryOp->isPostfix();
Alexey Bataevb4505a72015-03-30 05:20:59 +00006184 Op = AtomicUnaryOp->isIncrementOp() ? BO_Add : BO_Sub;
6185 OpLoc = AtomicUnaryOp->getOperatorLoc();
6186 X = AtomicUnaryOp->getSubExpr();
6187 E = SemaRef.ActOnIntegerConstant(OpLoc, /*uint64_t Val=*/1).get();
6188 IsXLHSInRHSPart = true;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006189 } else {
6190 ErrorFound = NotAnUnaryIncDecExpression;
6191 ErrorLoc = AtomicUnaryOp->getExprLoc();
6192 ErrorRange = AtomicUnaryOp->getSourceRange();
6193 NoteLoc = AtomicUnaryOp->getOperatorLoc();
6194 NoteRange = SourceRange(NoteLoc, NoteLoc);
6195 }
Alexey Bataev5a195472015-09-04 12:55:50 +00006196 } else if (!AtomicBody->isInstantiationDependent()) {
Alexey Bataev1d160b12015-03-13 12:27:31 +00006197 ErrorFound = NotABinaryOrUnaryExpression;
6198 NoteLoc = ErrorLoc = AtomicBody->getExprLoc();
6199 NoteRange = ErrorRange = AtomicBody->getSourceRange();
6200 }
6201 } else {
6202 ErrorFound = NotAScalarType;
6203 NoteLoc = ErrorLoc = AtomicBody->getLocStart();
6204 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
6205 }
6206 } else {
6207 ErrorFound = NotAnExpression;
6208 NoteLoc = ErrorLoc = S->getLocStart();
6209 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
6210 }
Alexey Bataevb78ca832015-04-01 03:33:17 +00006211 if (ErrorFound != NoError && DiagId != 0 && NoteId != 0) {
Alexey Bataev1d160b12015-03-13 12:27:31 +00006212 SemaRef.Diag(ErrorLoc, DiagId) << ErrorRange;
6213 SemaRef.Diag(NoteLoc, NoteId) << ErrorFound << NoteRange;
6214 return true;
6215 } else if (SemaRef.CurContext->isDependentContext())
Alexey Bataevb4505a72015-03-30 05:20:59 +00006216 E = X = UpdateExpr = nullptr;
Alexey Bataev5e018f92015-04-23 06:35:10 +00006217 if (ErrorFound == NoError && E && X) {
Alexey Bataevb4505a72015-03-30 05:20:59 +00006218 // Build an update expression of form 'OpaqueValueExpr(x) binop
6219 // OpaqueValueExpr(expr)' or 'OpaqueValueExpr(expr) binop
6220 // OpaqueValueExpr(x)' and then cast it to the type of the 'x' expression.
6221 auto *OVEX = new (SemaRef.getASTContext())
6222 OpaqueValueExpr(X->getExprLoc(), X->getType(), VK_RValue);
6223 auto *OVEExpr = new (SemaRef.getASTContext())
6224 OpaqueValueExpr(E->getExprLoc(), E->getType(), VK_RValue);
6225 auto Update =
6226 SemaRef.CreateBuiltinBinOp(OpLoc, Op, IsXLHSInRHSPart ? OVEX : OVEExpr,
6227 IsXLHSInRHSPart ? OVEExpr : OVEX);
6228 if (Update.isInvalid())
6229 return true;
6230 Update = SemaRef.PerformImplicitConversion(Update.get(), X->getType(),
6231 Sema::AA_Casting);
6232 if (Update.isInvalid())
6233 return true;
6234 UpdateExpr = Update.get();
6235 }
Alexey Bataev5e018f92015-04-23 06:35:10 +00006236 return ErrorFound != NoError;
Alexey Bataev1d160b12015-03-13 12:27:31 +00006237}
6238
Alexey Bataev0162e452014-07-22 10:10:35 +00006239StmtResult Sema::ActOnOpenMPAtomicDirective(ArrayRef<OMPClause *> Clauses,
6240 Stmt *AStmt,
6241 SourceLocation StartLoc,
6242 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006243 if (!AStmt)
6244 return StmtError();
6245
Alexey Bataevf98b00c2014-07-23 02:27:21 +00006246 auto CS = cast<CapturedStmt>(AStmt);
Alexey Bataev0162e452014-07-22 10:10:35 +00006247 // 1.2.2 OpenMP Language Terminology
6248 // Structured block - An executable statement with a single entry at the
6249 // top and a single exit at the bottom.
6250 // The point of exit cannot be a branch out of the structured block.
6251 // longjmp() and throw() must not violate the entry/exit criteria.
Alexey Bataevdea47612014-07-23 07:46:59 +00006252 OpenMPClauseKind AtomicKind = OMPC_unknown;
6253 SourceLocation AtomicKindLoc;
Alexey Bataevf98b00c2014-07-23 02:27:21 +00006254 for (auto *C : Clauses) {
Alexey Bataev67a4f222014-07-23 10:25:33 +00006255 if (C->getClauseKind() == OMPC_read || C->getClauseKind() == OMPC_write ||
Alexey Bataev459dec02014-07-24 06:46:57 +00006256 C->getClauseKind() == OMPC_update ||
6257 C->getClauseKind() == OMPC_capture) {
Alexey Bataevdea47612014-07-23 07:46:59 +00006258 if (AtomicKind != OMPC_unknown) {
6259 Diag(C->getLocStart(), diag::err_omp_atomic_several_clauses)
6260 << SourceRange(C->getLocStart(), C->getLocEnd());
6261 Diag(AtomicKindLoc, diag::note_omp_atomic_previous_clause)
6262 << getOpenMPClauseName(AtomicKind);
6263 } else {
6264 AtomicKind = C->getClauseKind();
6265 AtomicKindLoc = C->getLocStart();
Alexey Bataevf98b00c2014-07-23 02:27:21 +00006266 }
6267 }
6268 }
Alexey Bataev62cec442014-11-18 10:14:22 +00006269
Alexey Bataev459dec02014-07-24 06:46:57 +00006270 auto Body = CS->getCapturedStmt();
Alexey Bataev10fec572015-03-11 04:48:56 +00006271 if (auto *EWC = dyn_cast<ExprWithCleanups>(Body))
6272 Body = EWC->getSubExpr();
6273
Alexey Bataev62cec442014-11-18 10:14:22 +00006274 Expr *X = nullptr;
6275 Expr *V = nullptr;
6276 Expr *E = nullptr;
Alexey Bataevb4505a72015-03-30 05:20:59 +00006277 Expr *UE = nullptr;
6278 bool IsXLHSInRHSPart = false;
Alexey Bataevb78ca832015-04-01 03:33:17 +00006279 bool IsPostfixUpdate = false;
Alexey Bataev62cec442014-11-18 10:14:22 +00006280 // OpenMP [2.12.6, atomic Construct]
6281 // In the next expressions:
6282 // * x and v (as applicable) are both l-value expressions with scalar type.
6283 // * During the execution of an atomic region, multiple syntactic
6284 // occurrences of x must designate the same storage location.
6285 // * Neither of v and expr (as applicable) may access the storage location
6286 // designated by x.
6287 // * Neither of x and expr (as applicable) may access the storage location
6288 // designated by v.
6289 // * expr is an expression with scalar type.
6290 // * binop is one of +, *, -, /, &, ^, |, <<, or >>.
6291 // * binop, binop=, ++, and -- are not overloaded operators.
6292 // * The expression x binop expr must be numerically equivalent to x binop
6293 // (expr). This requirement is satisfied if the operators in expr have
6294 // precedence greater than binop, or by using parentheses around expr or
6295 // subexpressions of expr.
6296 // * The expression expr binop x must be numerically equivalent to (expr)
6297 // binop x. This requirement is satisfied if the operators in expr have
6298 // precedence equal to or greater than binop, or by using parentheses around
6299 // expr or subexpressions of expr.
6300 // * For forms that allow multiple occurrences of x, the number of times
6301 // that x is evaluated is unspecified.
Alexey Bataevdea47612014-07-23 07:46:59 +00006302 if (AtomicKind == OMPC_read) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00006303 enum {
6304 NotAnExpression,
6305 NotAnAssignmentOp,
6306 NotAScalarType,
6307 NotAnLValue,
6308 NoError
6309 } ErrorFound = NoError;
Alexey Bataev62cec442014-11-18 10:14:22 +00006310 SourceLocation ErrorLoc, NoteLoc;
6311 SourceRange ErrorRange, NoteRange;
6312 // If clause is read:
6313 // v = x;
6314 if (auto AtomicBody = dyn_cast<Expr>(Body)) {
6315 auto AtomicBinOp =
6316 dyn_cast<BinaryOperator>(AtomicBody->IgnoreParenImpCasts());
6317 if (AtomicBinOp && AtomicBinOp->getOpcode() == BO_Assign) {
6318 X = AtomicBinOp->getRHS()->IgnoreParenImpCasts();
6319 V = AtomicBinOp->getLHS()->IgnoreParenImpCasts();
6320 if ((X->isInstantiationDependent() || X->getType()->isScalarType()) &&
6321 (V->isInstantiationDependent() || V->getType()->isScalarType())) {
6322 if (!X->isLValue() || !V->isLValue()) {
6323 auto NotLValueExpr = X->isLValue() ? V : X;
6324 ErrorFound = NotAnLValue;
6325 ErrorLoc = AtomicBinOp->getExprLoc();
6326 ErrorRange = AtomicBinOp->getSourceRange();
6327 NoteLoc = NotLValueExpr->getExprLoc();
6328 NoteRange = NotLValueExpr->getSourceRange();
6329 }
6330 } else if (!X->isInstantiationDependent() ||
6331 !V->isInstantiationDependent()) {
6332 auto NotScalarExpr =
6333 (X->isInstantiationDependent() || X->getType()->isScalarType())
6334 ? V
6335 : X;
6336 ErrorFound = NotAScalarType;
6337 ErrorLoc = AtomicBinOp->getExprLoc();
6338 ErrorRange = AtomicBinOp->getSourceRange();
6339 NoteLoc = NotScalarExpr->getExprLoc();
6340 NoteRange = NotScalarExpr->getSourceRange();
6341 }
Alexey Bataev5a195472015-09-04 12:55:50 +00006342 } else if (!AtomicBody->isInstantiationDependent()) {
Alexey Bataev62cec442014-11-18 10:14:22 +00006343 ErrorFound = NotAnAssignmentOp;
6344 ErrorLoc = AtomicBody->getExprLoc();
6345 ErrorRange = AtomicBody->getSourceRange();
6346 NoteLoc = AtomicBinOp ? AtomicBinOp->getOperatorLoc()
6347 : AtomicBody->getExprLoc();
6348 NoteRange = AtomicBinOp ? AtomicBinOp->getSourceRange()
6349 : AtomicBody->getSourceRange();
6350 }
6351 } else {
6352 ErrorFound = NotAnExpression;
6353 NoteLoc = ErrorLoc = Body->getLocStart();
6354 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
Alexey Bataevdea47612014-07-23 07:46:59 +00006355 }
Alexey Bataev62cec442014-11-18 10:14:22 +00006356 if (ErrorFound != NoError) {
6357 Diag(ErrorLoc, diag::err_omp_atomic_read_not_expression_statement)
6358 << ErrorRange;
Alexey Bataevf33eba62014-11-28 07:21:40 +00006359 Diag(NoteLoc, diag::note_omp_atomic_read_write) << ErrorFound
6360 << NoteRange;
Alexey Bataev62cec442014-11-18 10:14:22 +00006361 return StmtError();
6362 } else if (CurContext->isDependentContext())
6363 V = X = nullptr;
Alexey Bataevdea47612014-07-23 07:46:59 +00006364 } else if (AtomicKind == OMPC_write) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00006365 enum {
6366 NotAnExpression,
6367 NotAnAssignmentOp,
6368 NotAScalarType,
6369 NotAnLValue,
6370 NoError
6371 } ErrorFound = NoError;
Alexey Bataevf33eba62014-11-28 07:21:40 +00006372 SourceLocation ErrorLoc, NoteLoc;
6373 SourceRange ErrorRange, NoteRange;
6374 // If clause is write:
6375 // x = expr;
6376 if (auto AtomicBody = dyn_cast<Expr>(Body)) {
6377 auto AtomicBinOp =
6378 dyn_cast<BinaryOperator>(AtomicBody->IgnoreParenImpCasts());
6379 if (AtomicBinOp && AtomicBinOp->getOpcode() == BO_Assign) {
Alexey Bataevb8329262015-02-27 06:33:30 +00006380 X = AtomicBinOp->getLHS();
6381 E = AtomicBinOp->getRHS();
Alexey Bataevf33eba62014-11-28 07:21:40 +00006382 if ((X->isInstantiationDependent() || X->getType()->isScalarType()) &&
6383 (E->isInstantiationDependent() || E->getType()->isScalarType())) {
6384 if (!X->isLValue()) {
6385 ErrorFound = NotAnLValue;
6386 ErrorLoc = AtomicBinOp->getExprLoc();
6387 ErrorRange = AtomicBinOp->getSourceRange();
6388 NoteLoc = X->getExprLoc();
6389 NoteRange = X->getSourceRange();
6390 }
6391 } else if (!X->isInstantiationDependent() ||
6392 !E->isInstantiationDependent()) {
6393 auto NotScalarExpr =
6394 (X->isInstantiationDependent() || X->getType()->isScalarType())
6395 ? E
6396 : X;
6397 ErrorFound = NotAScalarType;
6398 ErrorLoc = AtomicBinOp->getExprLoc();
6399 ErrorRange = AtomicBinOp->getSourceRange();
6400 NoteLoc = NotScalarExpr->getExprLoc();
6401 NoteRange = NotScalarExpr->getSourceRange();
6402 }
Alexey Bataev5a195472015-09-04 12:55:50 +00006403 } else if (!AtomicBody->isInstantiationDependent()) {
Alexey Bataevf33eba62014-11-28 07:21:40 +00006404 ErrorFound = NotAnAssignmentOp;
6405 ErrorLoc = AtomicBody->getExprLoc();
6406 ErrorRange = AtomicBody->getSourceRange();
6407 NoteLoc = AtomicBinOp ? AtomicBinOp->getOperatorLoc()
6408 : AtomicBody->getExprLoc();
6409 NoteRange = AtomicBinOp ? AtomicBinOp->getSourceRange()
6410 : AtomicBody->getSourceRange();
6411 }
6412 } else {
6413 ErrorFound = NotAnExpression;
6414 NoteLoc = ErrorLoc = Body->getLocStart();
6415 NoteRange = ErrorRange = SourceRange(NoteLoc, NoteLoc);
Alexey Bataevdea47612014-07-23 07:46:59 +00006416 }
Alexey Bataevf33eba62014-11-28 07:21:40 +00006417 if (ErrorFound != NoError) {
6418 Diag(ErrorLoc, diag::err_omp_atomic_write_not_expression_statement)
6419 << ErrorRange;
6420 Diag(NoteLoc, diag::note_omp_atomic_read_write) << ErrorFound
6421 << NoteRange;
6422 return StmtError();
6423 } else if (CurContext->isDependentContext())
6424 E = X = nullptr;
Alexey Bataev67a4f222014-07-23 10:25:33 +00006425 } else if (AtomicKind == OMPC_update || AtomicKind == OMPC_unknown) {
Alexey Bataev1d160b12015-03-13 12:27:31 +00006426 // If clause is update:
6427 // x++;
6428 // x--;
6429 // ++x;
6430 // --x;
6431 // x binop= expr;
6432 // x = x binop expr;
6433 // x = expr binop x;
6434 OpenMPAtomicUpdateChecker Checker(*this);
6435 if (Checker.checkStatement(
6436 Body, (AtomicKind == OMPC_update)
6437 ? diag::err_omp_atomic_update_not_expression_statement
6438 : diag::err_omp_atomic_not_expression_statement,
6439 diag::note_omp_atomic_update))
Alexey Bataev67a4f222014-07-23 10:25:33 +00006440 return StmtError();
Alexey Bataev1d160b12015-03-13 12:27:31 +00006441 if (!CurContext->isDependentContext()) {
6442 E = Checker.getExpr();
6443 X = Checker.getX();
Alexey Bataevb4505a72015-03-30 05:20:59 +00006444 UE = Checker.getUpdateExpr();
6445 IsXLHSInRHSPart = Checker.isXLHSInRHSPart();
Alexey Bataev67a4f222014-07-23 10:25:33 +00006446 }
Alexey Bataev459dec02014-07-24 06:46:57 +00006447 } else if (AtomicKind == OMPC_capture) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00006448 enum {
6449 NotAnAssignmentOp,
6450 NotACompoundStatement,
6451 NotTwoSubstatements,
6452 NotASpecificExpression,
6453 NoError
6454 } ErrorFound = NoError;
6455 SourceLocation ErrorLoc, NoteLoc;
6456 SourceRange ErrorRange, NoteRange;
6457 if (auto *AtomicBody = dyn_cast<Expr>(Body)) {
6458 // If clause is a capture:
6459 // v = x++;
6460 // v = x--;
6461 // v = ++x;
6462 // v = --x;
6463 // v = x binop= expr;
6464 // v = x = x binop expr;
6465 // v = x = expr binop x;
6466 auto *AtomicBinOp =
6467 dyn_cast<BinaryOperator>(AtomicBody->IgnoreParenImpCasts());
6468 if (AtomicBinOp && AtomicBinOp->getOpcode() == BO_Assign) {
6469 V = AtomicBinOp->getLHS();
6470 Body = AtomicBinOp->getRHS()->IgnoreParenImpCasts();
6471 OpenMPAtomicUpdateChecker Checker(*this);
6472 if (Checker.checkStatement(
6473 Body, diag::err_omp_atomic_capture_not_expression_statement,
6474 diag::note_omp_atomic_update))
6475 return StmtError();
6476 E = Checker.getExpr();
6477 X = Checker.getX();
6478 UE = Checker.getUpdateExpr();
6479 IsXLHSInRHSPart = Checker.isXLHSInRHSPart();
6480 IsPostfixUpdate = Checker.isPostfixUpdate();
Alexey Bataev5a195472015-09-04 12:55:50 +00006481 } else if (!AtomicBody->isInstantiationDependent()) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00006482 ErrorLoc = AtomicBody->getExprLoc();
6483 ErrorRange = AtomicBody->getSourceRange();
6484 NoteLoc = AtomicBinOp ? AtomicBinOp->getOperatorLoc()
6485 : AtomicBody->getExprLoc();
6486 NoteRange = AtomicBinOp ? AtomicBinOp->getSourceRange()
6487 : AtomicBody->getSourceRange();
6488 ErrorFound = NotAnAssignmentOp;
6489 }
6490 if (ErrorFound != NoError) {
6491 Diag(ErrorLoc, diag::err_omp_atomic_capture_not_expression_statement)
6492 << ErrorRange;
6493 Diag(NoteLoc, diag::note_omp_atomic_capture) << ErrorFound << NoteRange;
6494 return StmtError();
6495 } else if (CurContext->isDependentContext()) {
6496 UE = V = E = X = nullptr;
6497 }
6498 } else {
6499 // If clause is a capture:
6500 // { v = x; x = expr; }
6501 // { v = x; x++; }
6502 // { v = x; x--; }
6503 // { v = x; ++x; }
6504 // { v = x; --x; }
6505 // { v = x; x binop= expr; }
6506 // { v = x; x = x binop expr; }
6507 // { v = x; x = expr binop x; }
6508 // { x++; v = x; }
6509 // { x--; v = x; }
6510 // { ++x; v = x; }
6511 // { --x; v = x; }
6512 // { x binop= expr; v = x; }
6513 // { x = x binop expr; v = x; }
6514 // { x = expr binop x; v = x; }
6515 if (auto *CS = dyn_cast<CompoundStmt>(Body)) {
6516 // Check that this is { expr1; expr2; }
6517 if (CS->size() == 2) {
6518 auto *First = CS->body_front();
6519 auto *Second = CS->body_back();
6520 if (auto *EWC = dyn_cast<ExprWithCleanups>(First))
6521 First = EWC->getSubExpr()->IgnoreParenImpCasts();
6522 if (auto *EWC = dyn_cast<ExprWithCleanups>(Second))
6523 Second = EWC->getSubExpr()->IgnoreParenImpCasts();
6524 // Need to find what subexpression is 'v' and what is 'x'.
6525 OpenMPAtomicUpdateChecker Checker(*this);
6526 bool IsUpdateExprFound = !Checker.checkStatement(Second);
6527 BinaryOperator *BinOp = nullptr;
6528 if (IsUpdateExprFound) {
6529 BinOp = dyn_cast<BinaryOperator>(First);
6530 IsUpdateExprFound = BinOp && BinOp->getOpcode() == BO_Assign;
6531 }
6532 if (IsUpdateExprFound && !CurContext->isDependentContext()) {
6533 // { v = x; x++; }
6534 // { v = x; x--; }
6535 // { v = x; ++x; }
6536 // { v = x; --x; }
6537 // { v = x; x binop= expr; }
6538 // { v = x; x = x binop expr; }
6539 // { v = x; x = expr binop x; }
6540 // Check that the first expression has form v = x.
6541 auto *PossibleX = BinOp->getRHS()->IgnoreParenImpCasts();
6542 llvm::FoldingSetNodeID XId, PossibleXId;
6543 Checker.getX()->Profile(XId, Context, /*Canonical=*/true);
6544 PossibleX->Profile(PossibleXId, Context, /*Canonical=*/true);
6545 IsUpdateExprFound = XId == PossibleXId;
6546 if (IsUpdateExprFound) {
6547 V = BinOp->getLHS();
6548 X = Checker.getX();
6549 E = Checker.getExpr();
6550 UE = Checker.getUpdateExpr();
6551 IsXLHSInRHSPart = Checker.isXLHSInRHSPart();
Alexey Bataev5e018f92015-04-23 06:35:10 +00006552 IsPostfixUpdate = true;
Alexey Bataevb78ca832015-04-01 03:33:17 +00006553 }
6554 }
6555 if (!IsUpdateExprFound) {
6556 IsUpdateExprFound = !Checker.checkStatement(First);
6557 BinOp = nullptr;
6558 if (IsUpdateExprFound) {
6559 BinOp = dyn_cast<BinaryOperator>(Second);
6560 IsUpdateExprFound = BinOp && BinOp->getOpcode() == BO_Assign;
6561 }
6562 if (IsUpdateExprFound && !CurContext->isDependentContext()) {
6563 // { x++; v = x; }
6564 // { x--; v = x; }
6565 // { ++x; v = x; }
6566 // { --x; v = x; }
6567 // { x binop= expr; v = x; }
6568 // { x = x binop expr; v = x; }
6569 // { x = expr binop x; v = x; }
6570 // Check that the second expression has form v = x.
6571 auto *PossibleX = BinOp->getRHS()->IgnoreParenImpCasts();
6572 llvm::FoldingSetNodeID XId, PossibleXId;
6573 Checker.getX()->Profile(XId, Context, /*Canonical=*/true);
6574 PossibleX->Profile(PossibleXId, Context, /*Canonical=*/true);
6575 IsUpdateExprFound = XId == PossibleXId;
6576 if (IsUpdateExprFound) {
6577 V = BinOp->getLHS();
6578 X = Checker.getX();
6579 E = Checker.getExpr();
6580 UE = Checker.getUpdateExpr();
6581 IsXLHSInRHSPart = Checker.isXLHSInRHSPart();
Alexey Bataev5e018f92015-04-23 06:35:10 +00006582 IsPostfixUpdate = false;
Alexey Bataevb78ca832015-04-01 03:33:17 +00006583 }
6584 }
6585 }
6586 if (!IsUpdateExprFound) {
6587 // { v = x; x = expr; }
Alexey Bataev5a195472015-09-04 12:55:50 +00006588 auto *FirstExpr = dyn_cast<Expr>(First);
6589 auto *SecondExpr = dyn_cast<Expr>(Second);
6590 if (!FirstExpr || !SecondExpr ||
6591 !(FirstExpr->isInstantiationDependent() ||
6592 SecondExpr->isInstantiationDependent())) {
6593 auto *FirstBinOp = dyn_cast<BinaryOperator>(First);
6594 if (!FirstBinOp || FirstBinOp->getOpcode() != BO_Assign) {
Alexey Bataevb78ca832015-04-01 03:33:17 +00006595 ErrorFound = NotAnAssignmentOp;
Alexey Bataev5a195472015-09-04 12:55:50 +00006596 NoteLoc = ErrorLoc = FirstBinOp ? FirstBinOp->getOperatorLoc()
6597 : First->getLocStart();
6598 NoteRange = ErrorRange = FirstBinOp
6599 ? FirstBinOp->getSourceRange()
Alexey Bataevb78ca832015-04-01 03:33:17 +00006600 : SourceRange(ErrorLoc, ErrorLoc);
6601 } else {
Alexey Bataev5a195472015-09-04 12:55:50 +00006602 auto *SecondBinOp = dyn_cast<BinaryOperator>(Second);
6603 if (!SecondBinOp || SecondBinOp->getOpcode() != BO_Assign) {
6604 ErrorFound = NotAnAssignmentOp;
6605 NoteLoc = ErrorLoc = SecondBinOp
6606 ? SecondBinOp->getOperatorLoc()
6607 : Second->getLocStart();
6608 NoteRange = ErrorRange =
6609 SecondBinOp ? SecondBinOp->getSourceRange()
6610 : SourceRange(ErrorLoc, ErrorLoc);
Alexey Bataevb78ca832015-04-01 03:33:17 +00006611 } else {
Alexey Bataev5a195472015-09-04 12:55:50 +00006612 auto *PossibleXRHSInFirst =
6613 FirstBinOp->getRHS()->IgnoreParenImpCasts();
6614 auto *PossibleXLHSInSecond =
6615 SecondBinOp->getLHS()->IgnoreParenImpCasts();
6616 llvm::FoldingSetNodeID X1Id, X2Id;
6617 PossibleXRHSInFirst->Profile(X1Id, Context,
6618 /*Canonical=*/true);
6619 PossibleXLHSInSecond->Profile(X2Id, Context,
6620 /*Canonical=*/true);
6621 IsUpdateExprFound = X1Id == X2Id;
6622 if (IsUpdateExprFound) {
6623 V = FirstBinOp->getLHS();
6624 X = SecondBinOp->getLHS();
6625 E = SecondBinOp->getRHS();
6626 UE = nullptr;
6627 IsXLHSInRHSPart = false;
6628 IsPostfixUpdate = true;
6629 } else {
6630 ErrorFound = NotASpecificExpression;
6631 ErrorLoc = FirstBinOp->getExprLoc();
6632 ErrorRange = FirstBinOp->getSourceRange();
6633 NoteLoc = SecondBinOp->getLHS()->getExprLoc();
6634 NoteRange = SecondBinOp->getRHS()->getSourceRange();
6635 }
Alexey Bataevb78ca832015-04-01 03:33:17 +00006636 }
6637 }
6638 }
6639 }
6640 } else {
6641 NoteLoc = ErrorLoc = Body->getLocStart();
6642 NoteRange = ErrorRange =
6643 SourceRange(Body->getLocStart(), Body->getLocStart());
6644 ErrorFound = NotTwoSubstatements;
6645 }
6646 } else {
6647 NoteLoc = ErrorLoc = Body->getLocStart();
6648 NoteRange = ErrorRange =
6649 SourceRange(Body->getLocStart(), Body->getLocStart());
6650 ErrorFound = NotACompoundStatement;
6651 }
6652 if (ErrorFound != NoError) {
6653 Diag(ErrorLoc, diag::err_omp_atomic_capture_not_compound_statement)
6654 << ErrorRange;
6655 Diag(NoteLoc, diag::note_omp_atomic_capture) << ErrorFound << NoteRange;
6656 return StmtError();
6657 } else if (CurContext->isDependentContext()) {
6658 UE = V = E = X = nullptr;
6659 }
Alexey Bataev459dec02014-07-24 06:46:57 +00006660 }
Alexey Bataevdea47612014-07-23 07:46:59 +00006661 }
Alexey Bataev0162e452014-07-22 10:10:35 +00006662
6663 getCurFunction()->setHasBranchProtectedScope();
6664
Alexey Bataev62cec442014-11-18 10:14:22 +00006665 return OMPAtomicDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,
Alexey Bataevb78ca832015-04-01 03:33:17 +00006666 X, V, E, UE, IsXLHSInRHSPart,
6667 IsPostfixUpdate);
Alexey Bataev0162e452014-07-22 10:10:35 +00006668}
6669
Alexey Bataev0bd520b2014-09-19 08:19:49 +00006670StmtResult Sema::ActOnOpenMPTargetDirective(ArrayRef<OMPClause *> Clauses,
6671 Stmt *AStmt,
6672 SourceLocation StartLoc,
6673 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006674 if (!AStmt)
6675 return StmtError();
6676
Samuel Antao4af1b7b2015-12-02 17:44:43 +00006677 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
6678 // 1.2.2 OpenMP Language Terminology
6679 // Structured block - An executable statement with a single entry at the
6680 // top and a single exit at the bottom.
6681 // The point of exit cannot be a branch out of the structured block.
6682 // longjmp() and throw() must not violate the entry/exit criteria.
6683 CS->getCapturedDecl()->setNothrow();
Alexey Bataev0bd520b2014-09-19 08:19:49 +00006684
Alexey Bataev13314bf2014-10-09 04:18:56 +00006685 // OpenMP [2.16, Nesting of Regions]
6686 // If specified, a teams construct must be contained within a target
6687 // construct. That target construct must contain no statements or directives
6688 // outside of the teams construct.
6689 if (DSAStack->hasInnerTeamsRegion()) {
6690 auto S = AStmt->IgnoreContainers(/*IgnoreCaptured*/ true);
6691 bool OMPTeamsFound = true;
6692 if (auto *CS = dyn_cast<CompoundStmt>(S)) {
6693 auto I = CS->body_begin();
6694 while (I != CS->body_end()) {
6695 auto OED = dyn_cast<OMPExecutableDirective>(*I);
6696 if (!OED || !isOpenMPTeamsDirective(OED->getDirectiveKind())) {
6697 OMPTeamsFound = false;
6698 break;
6699 }
6700 ++I;
6701 }
6702 assert(I != CS->body_end() && "Not found statement");
6703 S = *I;
Kelvin Li3834dce2016-06-27 19:15:43 +00006704 } else {
6705 auto *OED = dyn_cast<OMPExecutableDirective>(S);
6706 OMPTeamsFound = OED && isOpenMPTeamsDirective(OED->getDirectiveKind());
Alexey Bataev13314bf2014-10-09 04:18:56 +00006707 }
6708 if (!OMPTeamsFound) {
6709 Diag(StartLoc, diag::err_omp_target_contains_not_only_teams);
6710 Diag(DSAStack->getInnerTeamsRegionLoc(),
6711 diag::note_omp_nested_teams_construct_here);
6712 Diag(S->getLocStart(), diag::note_omp_nested_statement_here)
6713 << isa<OMPExecutableDirective>(S);
6714 return StmtError();
6715 }
6716 }
6717
Alexey Bataev0bd520b2014-09-19 08:19:49 +00006718 getCurFunction()->setHasBranchProtectedScope();
6719
6720 return OMPTargetDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
6721}
6722
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00006723StmtResult
6724Sema::ActOnOpenMPTargetParallelDirective(ArrayRef<OMPClause *> Clauses,
6725 Stmt *AStmt, SourceLocation StartLoc,
6726 SourceLocation EndLoc) {
6727 if (!AStmt)
6728 return StmtError();
6729
6730 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
6731 // 1.2.2 OpenMP Language Terminology
6732 // Structured block - An executable statement with a single entry at the
6733 // top and a single exit at the bottom.
6734 // The point of exit cannot be a branch out of the structured block.
6735 // longjmp() and throw() must not violate the entry/exit criteria.
6736 CS->getCapturedDecl()->setNothrow();
6737
6738 getCurFunction()->setHasBranchProtectedScope();
6739
6740 return OMPTargetParallelDirective::Create(Context, StartLoc, EndLoc, Clauses,
6741 AStmt);
6742}
6743
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00006744StmtResult Sema::ActOnOpenMPTargetParallelForDirective(
6745 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
6746 SourceLocation EndLoc,
6747 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
6748 if (!AStmt)
6749 return StmtError();
6750
6751 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
6752 // 1.2.2 OpenMP Language Terminology
6753 // Structured block - An executable statement with a single entry at the
6754 // top and a single exit at the bottom.
6755 // The point of exit cannot be a branch out of the structured block.
6756 // longjmp() and throw() must not violate the entry/exit criteria.
6757 CS->getCapturedDecl()->setNothrow();
6758
6759 OMPLoopDirective::HelperExprs B;
6760 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
6761 // define the nested loops number.
6762 unsigned NestedLoopCount =
6763 CheckOpenMPLoop(OMPD_target_parallel_for, getCollapseNumberExpr(Clauses),
6764 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
6765 VarsWithImplicitDSA, B);
6766 if (NestedLoopCount == 0)
6767 return StmtError();
6768
6769 assert((CurContext->isDependentContext() || B.builtAll()) &&
6770 "omp target parallel for loop exprs were not built");
6771
6772 if (!CurContext->isDependentContext()) {
6773 // Finalize the clauses that need pre-built expressions for CodeGen.
6774 for (auto C : Clauses) {
6775 if (auto LC = dyn_cast<OMPLinearClause>(C))
6776 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00006777 B.NumIterations, *this, CurScope,
6778 DSAStack))
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00006779 return StmtError();
6780 }
6781 }
6782
6783 getCurFunction()->setHasBranchProtectedScope();
6784 return OMPTargetParallelForDirective::Create(Context, StartLoc, EndLoc,
6785 NestedLoopCount, Clauses, AStmt,
6786 B, DSAStack->isCancelRegion());
6787}
6788
Samuel Antaodf67fc42016-01-19 19:15:56 +00006789/// \brief Check for existence of a map clause in the list of clauses.
6790static bool HasMapClause(ArrayRef<OMPClause *> Clauses) {
6791 for (ArrayRef<OMPClause *>::iterator I = Clauses.begin(), E = Clauses.end();
6792 I != E; ++I) {
6793 if (*I != nullptr && (*I)->getClauseKind() == OMPC_map) {
6794 return true;
6795 }
6796 }
6797
6798 return false;
6799}
6800
Michael Wong65f367f2015-07-21 13:44:28 +00006801StmtResult Sema::ActOnOpenMPTargetDataDirective(ArrayRef<OMPClause *> Clauses,
6802 Stmt *AStmt,
6803 SourceLocation StartLoc,
6804 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006805 if (!AStmt)
6806 return StmtError();
6807
6808 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
6809
Arpith Chacko Jacob46a04bb2016-01-21 19:57:55 +00006810 // OpenMP [2.10.1, Restrictions, p. 97]
6811 // At least one map clause must appear on the directive.
6812 if (!HasMapClause(Clauses)) {
6813 Diag(StartLoc, diag::err_omp_no_map_for_directive) <<
6814 getOpenMPDirectiveName(OMPD_target_data);
6815 return StmtError();
6816 }
6817
Michael Wong65f367f2015-07-21 13:44:28 +00006818 getCurFunction()->setHasBranchProtectedScope();
6819
6820 return OMPTargetDataDirective::Create(Context, StartLoc, EndLoc, Clauses,
6821 AStmt);
6822}
6823
Samuel Antaodf67fc42016-01-19 19:15:56 +00006824StmtResult
6825Sema::ActOnOpenMPTargetEnterDataDirective(ArrayRef<OMPClause *> Clauses,
6826 SourceLocation StartLoc,
6827 SourceLocation EndLoc) {
6828 // OpenMP [2.10.2, Restrictions, p. 99]
6829 // At least one map clause must appear on the directive.
6830 if (!HasMapClause(Clauses)) {
6831 Diag(StartLoc, diag::err_omp_no_map_for_directive)
6832 << getOpenMPDirectiveName(OMPD_target_enter_data);
6833 return StmtError();
6834 }
6835
6836 return OMPTargetEnterDataDirective::Create(Context, StartLoc, EndLoc,
6837 Clauses);
6838}
6839
Samuel Antao72590762016-01-19 20:04:50 +00006840StmtResult
6841Sema::ActOnOpenMPTargetExitDataDirective(ArrayRef<OMPClause *> Clauses,
6842 SourceLocation StartLoc,
6843 SourceLocation EndLoc) {
6844 // OpenMP [2.10.3, Restrictions, p. 102]
6845 // At least one map clause must appear on the directive.
6846 if (!HasMapClause(Clauses)) {
6847 Diag(StartLoc, diag::err_omp_no_map_for_directive)
6848 << getOpenMPDirectiveName(OMPD_target_exit_data);
6849 return StmtError();
6850 }
6851
6852 return OMPTargetExitDataDirective::Create(Context, StartLoc, EndLoc, Clauses);
6853}
6854
Samuel Antao686c70c2016-05-26 17:30:50 +00006855StmtResult Sema::ActOnOpenMPTargetUpdateDirective(ArrayRef<OMPClause *> Clauses,
6856 SourceLocation StartLoc,
6857 SourceLocation EndLoc) {
Samuel Antao686c70c2016-05-26 17:30:50 +00006858 bool seenMotionClause = false;
Samuel Antao661c0902016-05-26 17:39:58 +00006859 for (auto *C : Clauses) {
Samuel Antaoec172c62016-05-26 17:49:04 +00006860 if (C->getClauseKind() == OMPC_to || C->getClauseKind() == OMPC_from)
Samuel Antao661c0902016-05-26 17:39:58 +00006861 seenMotionClause = true;
6862 }
Samuel Antao686c70c2016-05-26 17:30:50 +00006863 if (!seenMotionClause) {
6864 Diag(StartLoc, diag::err_omp_at_least_one_motion_clause_required);
6865 return StmtError();
6866 }
6867 return OMPTargetUpdateDirective::Create(Context, StartLoc, EndLoc, Clauses);
6868}
6869
Alexey Bataev13314bf2014-10-09 04:18:56 +00006870StmtResult Sema::ActOnOpenMPTeamsDirective(ArrayRef<OMPClause *> Clauses,
6871 Stmt *AStmt, SourceLocation StartLoc,
6872 SourceLocation EndLoc) {
Alexey Bataev6b8046a2015-09-03 07:23:48 +00006873 if (!AStmt)
6874 return StmtError();
6875
Alexey Bataev13314bf2014-10-09 04:18:56 +00006876 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
6877 // 1.2.2 OpenMP Language Terminology
6878 // Structured block - An executable statement with a single entry at the
6879 // top and a single exit at the bottom.
6880 // The point of exit cannot be a branch out of the structured block.
6881 // longjmp() and throw() must not violate the entry/exit criteria.
6882 CS->getCapturedDecl()->setNothrow();
6883
6884 getCurFunction()->setHasBranchProtectedScope();
6885
6886 return OMPTeamsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
6887}
6888
Alexey Bataev6d4ed052015-07-01 06:57:41 +00006889StmtResult
6890Sema::ActOnOpenMPCancellationPointDirective(SourceLocation StartLoc,
6891 SourceLocation EndLoc,
6892 OpenMPDirectiveKind CancelRegion) {
6893 if (CancelRegion != OMPD_parallel && CancelRegion != OMPD_for &&
6894 CancelRegion != OMPD_sections && CancelRegion != OMPD_taskgroup) {
6895 Diag(StartLoc, diag::err_omp_wrong_cancel_region)
6896 << getOpenMPDirectiveName(CancelRegion);
6897 return StmtError();
6898 }
6899 if (DSAStack->isParentNowaitRegion()) {
6900 Diag(StartLoc, diag::err_omp_parent_cancel_region_nowait) << 0;
6901 return StmtError();
6902 }
6903 if (DSAStack->isParentOrderedRegion()) {
6904 Diag(StartLoc, diag::err_omp_parent_cancel_region_ordered) << 0;
6905 return StmtError();
6906 }
6907 return OMPCancellationPointDirective::Create(Context, StartLoc, EndLoc,
6908 CancelRegion);
6909}
6910
Alexey Bataev87933c72015-09-18 08:07:34 +00006911StmtResult Sema::ActOnOpenMPCancelDirective(ArrayRef<OMPClause *> Clauses,
6912 SourceLocation StartLoc,
Alexey Bataev80909872015-07-02 11:25:17 +00006913 SourceLocation EndLoc,
6914 OpenMPDirectiveKind CancelRegion) {
6915 if (CancelRegion != OMPD_parallel && CancelRegion != OMPD_for &&
6916 CancelRegion != OMPD_sections && CancelRegion != OMPD_taskgroup) {
6917 Diag(StartLoc, diag::err_omp_wrong_cancel_region)
6918 << getOpenMPDirectiveName(CancelRegion);
6919 return StmtError();
6920 }
6921 if (DSAStack->isParentNowaitRegion()) {
6922 Diag(StartLoc, diag::err_omp_parent_cancel_region_nowait) << 1;
6923 return StmtError();
6924 }
6925 if (DSAStack->isParentOrderedRegion()) {
6926 Diag(StartLoc, diag::err_omp_parent_cancel_region_ordered) << 1;
6927 return StmtError();
6928 }
Alexey Bataev25e5b442015-09-15 12:52:43 +00006929 DSAStack->setParentCancelRegion(/*Cancel=*/true);
Alexey Bataev87933c72015-09-18 08:07:34 +00006930 return OMPCancelDirective::Create(Context, StartLoc, EndLoc, Clauses,
6931 CancelRegion);
Alexey Bataev80909872015-07-02 11:25:17 +00006932}
6933
Alexey Bataev382967a2015-12-08 12:06:20 +00006934static bool checkGrainsizeNumTasksClauses(Sema &S,
6935 ArrayRef<OMPClause *> Clauses) {
6936 OMPClause *PrevClause = nullptr;
6937 bool ErrorFound = false;
6938 for (auto *C : Clauses) {
6939 if (C->getClauseKind() == OMPC_grainsize ||
6940 C->getClauseKind() == OMPC_num_tasks) {
6941 if (!PrevClause)
6942 PrevClause = C;
6943 else if (PrevClause->getClauseKind() != C->getClauseKind()) {
6944 S.Diag(C->getLocStart(),
6945 diag::err_omp_grainsize_num_tasks_mutually_exclusive)
6946 << getOpenMPClauseName(C->getClauseKind())
6947 << getOpenMPClauseName(PrevClause->getClauseKind());
6948 S.Diag(PrevClause->getLocStart(),
6949 diag::note_omp_previous_grainsize_num_tasks)
6950 << getOpenMPClauseName(PrevClause->getClauseKind());
6951 ErrorFound = true;
6952 }
6953 }
6954 }
6955 return ErrorFound;
6956}
6957
Alexey Bataev49f6e782015-12-01 04:18:41 +00006958StmtResult Sema::ActOnOpenMPTaskLoopDirective(
6959 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
6960 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00006961 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev49f6e782015-12-01 04:18:41 +00006962 if (!AStmt)
6963 return StmtError();
6964
6965 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
6966 OMPLoopDirective::HelperExprs B;
6967 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
6968 // define the nested loops number.
6969 unsigned NestedLoopCount =
6970 CheckOpenMPLoop(OMPD_taskloop, getCollapseNumberExpr(Clauses),
Alexey Bataev0a6ed842015-12-03 09:40:15 +00006971 /*OrderedLoopCountExpr=*/nullptr, AStmt, *this, *DSAStack,
Alexey Bataev49f6e782015-12-01 04:18:41 +00006972 VarsWithImplicitDSA, B);
6973 if (NestedLoopCount == 0)
6974 return StmtError();
6975
6976 assert((CurContext->isDependentContext() || B.builtAll()) &&
6977 "omp for loop exprs were not built");
6978
Alexey Bataev382967a2015-12-08 12:06:20 +00006979 // OpenMP, [2.9.2 taskloop Construct, Restrictions]
6980 // The grainsize clause and num_tasks clause are mutually exclusive and may
6981 // not appear on the same taskloop directive.
6982 if (checkGrainsizeNumTasksClauses(*this, Clauses))
6983 return StmtError();
6984
Alexey Bataev49f6e782015-12-01 04:18:41 +00006985 getCurFunction()->setHasBranchProtectedScope();
6986 return OMPTaskLoopDirective::Create(Context, StartLoc, EndLoc,
6987 NestedLoopCount, Clauses, AStmt, B);
6988}
6989
Alexey Bataev0a6ed842015-12-03 09:40:15 +00006990StmtResult Sema::ActOnOpenMPTaskLoopSimdDirective(
6991 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
6992 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00006993 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Alexey Bataev0a6ed842015-12-03 09:40:15 +00006994 if (!AStmt)
6995 return StmtError();
6996
6997 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
6998 OMPLoopDirective::HelperExprs B;
6999 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
7000 // define the nested loops number.
7001 unsigned NestedLoopCount =
7002 CheckOpenMPLoop(OMPD_taskloop_simd, getCollapseNumberExpr(Clauses),
7003 /*OrderedLoopCountExpr=*/nullptr, AStmt, *this, *DSAStack,
7004 VarsWithImplicitDSA, B);
7005 if (NestedLoopCount == 0)
7006 return StmtError();
7007
7008 assert((CurContext->isDependentContext() || B.builtAll()) &&
7009 "omp for loop exprs were not built");
7010
Alexey Bataev5a3af132016-03-29 08:58:54 +00007011 if (!CurContext->isDependentContext()) {
7012 // Finalize the clauses that need pre-built expressions for CodeGen.
7013 for (auto C : Clauses) {
7014 if (auto LC = dyn_cast<OMPLinearClause>(C))
7015 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00007016 B.NumIterations, *this, CurScope,
7017 DSAStack))
Alexey Bataev5a3af132016-03-29 08:58:54 +00007018 return StmtError();
7019 }
7020 }
7021
Alexey Bataev382967a2015-12-08 12:06:20 +00007022 // OpenMP, [2.9.2 taskloop Construct, Restrictions]
7023 // The grainsize clause and num_tasks clause are mutually exclusive and may
7024 // not appear on the same taskloop directive.
7025 if (checkGrainsizeNumTasksClauses(*this, Clauses))
7026 return StmtError();
7027
Alexey Bataev0a6ed842015-12-03 09:40:15 +00007028 getCurFunction()->setHasBranchProtectedScope();
7029 return OMPTaskLoopSimdDirective::Create(Context, StartLoc, EndLoc,
7030 NestedLoopCount, Clauses, AStmt, B);
7031}
7032
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007033StmtResult Sema::ActOnOpenMPDistributeDirective(
7034 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
7035 SourceLocation EndLoc,
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00007036 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00007037 if (!AStmt)
7038 return StmtError();
7039
7040 assert(isa<CapturedStmt>(AStmt) && "Captured statement expected");
7041 OMPLoopDirective::HelperExprs B;
7042 // In presence of clause 'collapse' with number of loops, it will
7043 // define the nested loops number.
7044 unsigned NestedLoopCount =
7045 CheckOpenMPLoop(OMPD_distribute, getCollapseNumberExpr(Clauses),
7046 nullptr /*ordered not a clause on distribute*/, AStmt,
7047 *this, *DSAStack, VarsWithImplicitDSA, B);
7048 if (NestedLoopCount == 0)
7049 return StmtError();
7050
7051 assert((CurContext->isDependentContext() || B.builtAll()) &&
7052 "omp for loop exprs were not built");
7053
7054 getCurFunction()->setHasBranchProtectedScope();
7055 return OMPDistributeDirective::Create(Context, StartLoc, EndLoc,
7056 NestedLoopCount, Clauses, AStmt, B);
7057}
7058
Carlo Bertolli9925f152016-06-27 14:55:37 +00007059StmtResult Sema::ActOnOpenMPDistributeParallelForDirective(
7060 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
7061 SourceLocation EndLoc,
7062 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
7063 if (!AStmt)
7064 return StmtError();
7065
7066 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
7067 // 1.2.2 OpenMP Language Terminology
7068 // Structured block - An executable statement with a single entry at the
7069 // top and a single exit at the bottom.
7070 // The point of exit cannot be a branch out of the structured block.
7071 // longjmp() and throw() must not violate the entry/exit criteria.
7072 CS->getCapturedDecl()->setNothrow();
7073
7074 OMPLoopDirective::HelperExprs B;
7075 // In presence of clause 'collapse' with number of loops, it will
7076 // define the nested loops number.
7077 unsigned NestedLoopCount = CheckOpenMPLoop(
7078 OMPD_distribute_parallel_for, getCollapseNumberExpr(Clauses),
7079 nullptr /*ordered not a clause on distribute*/, AStmt, *this, *DSAStack,
7080 VarsWithImplicitDSA, B);
7081 if (NestedLoopCount == 0)
7082 return StmtError();
7083
7084 assert((CurContext->isDependentContext() || B.builtAll()) &&
7085 "omp for loop exprs were not built");
7086
7087 getCurFunction()->setHasBranchProtectedScope();
7088 return OMPDistributeParallelForDirective::Create(
7089 Context, StartLoc, EndLoc, NestedLoopCount, Clauses, AStmt, B);
7090}
7091
Kelvin Li4a39add2016-07-05 05:00:15 +00007092StmtResult Sema::ActOnOpenMPDistributeParallelForSimdDirective(
7093 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
7094 SourceLocation EndLoc,
7095 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
7096 if (!AStmt)
7097 return StmtError();
7098
7099 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
7100 // 1.2.2 OpenMP Language Terminology
7101 // Structured block - An executable statement with a single entry at the
7102 // top and a single exit at the bottom.
7103 // The point of exit cannot be a branch out of the structured block.
7104 // longjmp() and throw() must not violate the entry/exit criteria.
7105 CS->getCapturedDecl()->setNothrow();
7106
7107 OMPLoopDirective::HelperExprs B;
7108 // In presence of clause 'collapse' with number of loops, it will
7109 // define the nested loops number.
7110 unsigned NestedLoopCount = CheckOpenMPLoop(
7111 OMPD_distribute_parallel_for_simd, getCollapseNumberExpr(Clauses),
7112 nullptr /*ordered not a clause on distribute*/, AStmt, *this, *DSAStack,
7113 VarsWithImplicitDSA, B);
7114 if (NestedLoopCount == 0)
7115 return StmtError();
7116
7117 assert((CurContext->isDependentContext() || B.builtAll()) &&
7118 "omp for loop exprs were not built");
7119
Kelvin Lic5609492016-07-15 04:39:07 +00007120 if (checkSimdlenSafelenSpecified(*this, Clauses))
7121 return StmtError();
7122
Kelvin Li4a39add2016-07-05 05:00:15 +00007123 getCurFunction()->setHasBranchProtectedScope();
7124 return OMPDistributeParallelForSimdDirective::Create(
7125 Context, StartLoc, EndLoc, NestedLoopCount, Clauses, AStmt, B);
7126}
7127
Kelvin Li787f3fc2016-07-06 04:45:38 +00007128StmtResult Sema::ActOnOpenMPDistributeSimdDirective(
7129 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
7130 SourceLocation EndLoc,
7131 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
7132 if (!AStmt)
7133 return StmtError();
7134
7135 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
7136 // 1.2.2 OpenMP Language Terminology
7137 // Structured block - An executable statement with a single entry at the
7138 // top and a single exit at the bottom.
7139 // The point of exit cannot be a branch out of the structured block.
7140 // longjmp() and throw() must not violate the entry/exit criteria.
7141 CS->getCapturedDecl()->setNothrow();
7142
7143 OMPLoopDirective::HelperExprs B;
7144 // In presence of clause 'collapse' with number of loops, it will
7145 // define the nested loops number.
7146 unsigned NestedLoopCount =
7147 CheckOpenMPLoop(OMPD_distribute_simd, getCollapseNumberExpr(Clauses),
7148 nullptr /*ordered not a clause on distribute*/, AStmt,
7149 *this, *DSAStack, VarsWithImplicitDSA, B);
7150 if (NestedLoopCount == 0)
7151 return StmtError();
7152
7153 assert((CurContext->isDependentContext() || B.builtAll()) &&
7154 "omp for loop exprs were not built");
7155
Kelvin Lic5609492016-07-15 04:39:07 +00007156 if (checkSimdlenSafelenSpecified(*this, Clauses))
7157 return StmtError();
7158
Kelvin Li787f3fc2016-07-06 04:45:38 +00007159 getCurFunction()->setHasBranchProtectedScope();
7160 return OMPDistributeSimdDirective::Create(Context, StartLoc, EndLoc,
7161 NestedLoopCount, Clauses, AStmt, B);
7162}
7163
Kelvin Lia579b912016-07-14 02:54:56 +00007164StmtResult Sema::ActOnOpenMPTargetParallelForSimdDirective(
7165 ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc,
7166 SourceLocation EndLoc,
7167 llvm::DenseMap<ValueDecl *, Expr *> &VarsWithImplicitDSA) {
7168 if (!AStmt)
7169 return StmtError();
7170
7171 CapturedStmt *CS = cast<CapturedStmt>(AStmt);
7172 // 1.2.2 OpenMP Language Terminology
7173 // Structured block - An executable statement with a single entry at the
7174 // top and a single exit at the bottom.
7175 // The point of exit cannot be a branch out of the structured block.
7176 // longjmp() and throw() must not violate the entry/exit criteria.
7177 CS->getCapturedDecl()->setNothrow();
7178
7179 OMPLoopDirective::HelperExprs B;
7180 // In presence of clause 'collapse' or 'ordered' with number of loops, it will
7181 // define the nested loops number.
7182 unsigned NestedLoopCount = CheckOpenMPLoop(
7183 OMPD_target_parallel_for_simd, getCollapseNumberExpr(Clauses),
7184 getOrderedNumberExpr(Clauses), AStmt, *this, *DSAStack,
7185 VarsWithImplicitDSA, B);
7186 if (NestedLoopCount == 0)
7187 return StmtError();
7188
7189 assert((CurContext->isDependentContext() || B.builtAll()) &&
7190 "omp target parallel for simd loop exprs were not built");
7191
7192 if (!CurContext->isDependentContext()) {
7193 // Finalize the clauses that need pre-built expressions for CodeGen.
7194 for (auto C : Clauses) {
7195 if (auto LC = dyn_cast<OMPLinearClause>(C))
7196 if (FinishOpenMPLinearClause(*LC, cast<DeclRefExpr>(B.IterationVarRef),
7197 B.NumIterations, *this, CurScope,
7198 DSAStack))
7199 return StmtError();
7200 }
7201 }
Kelvin Lic5609492016-07-15 04:39:07 +00007202 if (checkSimdlenSafelenSpecified(*this, Clauses))
Kelvin Lia579b912016-07-14 02:54:56 +00007203 return StmtError();
7204
7205 getCurFunction()->setHasBranchProtectedScope();
7206 return OMPTargetParallelForSimdDirective::Create(
7207 Context, StartLoc, EndLoc, NestedLoopCount, Clauses, AStmt, B);
7208}
7209
Alexey Bataeved09d242014-05-28 05:53:51 +00007210OMPClause *Sema::ActOnOpenMPSingleExprClause(OpenMPClauseKind Kind, Expr *Expr,
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007211 SourceLocation StartLoc,
7212 SourceLocation LParenLoc,
7213 SourceLocation EndLoc) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00007214 OMPClause *Res = nullptr;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007215 switch (Kind) {
Alexey Bataev3778b602014-07-17 07:32:53 +00007216 case OMPC_final:
7217 Res = ActOnOpenMPFinalClause(Expr, StartLoc, LParenLoc, EndLoc);
7218 break;
Alexey Bataev568a8332014-03-06 06:15:19 +00007219 case OMPC_num_threads:
7220 Res = ActOnOpenMPNumThreadsClause(Expr, StartLoc, LParenLoc, EndLoc);
7221 break;
Alexey Bataev62c87d22014-03-21 04:51:18 +00007222 case OMPC_safelen:
7223 Res = ActOnOpenMPSafelenClause(Expr, StartLoc, LParenLoc, EndLoc);
7224 break;
Alexey Bataev66b15b52015-08-21 11:14:16 +00007225 case OMPC_simdlen:
7226 Res = ActOnOpenMPSimdlenClause(Expr, StartLoc, LParenLoc, EndLoc);
7227 break;
Alexander Musman8bd31e62014-05-27 15:12:19 +00007228 case OMPC_collapse:
7229 Res = ActOnOpenMPCollapseClause(Expr, StartLoc, LParenLoc, EndLoc);
7230 break;
Alexey Bataev10e775f2015-07-30 11:36:16 +00007231 case OMPC_ordered:
7232 Res = ActOnOpenMPOrderedClause(StartLoc, EndLoc, LParenLoc, Expr);
7233 break;
Michael Wonge710d542015-08-07 16:16:36 +00007234 case OMPC_device:
7235 Res = ActOnOpenMPDeviceClause(Expr, StartLoc, LParenLoc, EndLoc);
7236 break;
Kelvin Li099bb8c2015-11-24 20:50:12 +00007237 case OMPC_num_teams:
7238 Res = ActOnOpenMPNumTeamsClause(Expr, StartLoc, LParenLoc, EndLoc);
7239 break;
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007240 case OMPC_thread_limit:
7241 Res = ActOnOpenMPThreadLimitClause(Expr, StartLoc, LParenLoc, EndLoc);
7242 break;
Alexey Bataeva0569352015-12-01 10:17:31 +00007243 case OMPC_priority:
7244 Res = ActOnOpenMPPriorityClause(Expr, StartLoc, LParenLoc, EndLoc);
7245 break;
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00007246 case OMPC_grainsize:
7247 Res = ActOnOpenMPGrainsizeClause(Expr, StartLoc, LParenLoc, EndLoc);
7248 break;
Alexey Bataev382967a2015-12-08 12:06:20 +00007249 case OMPC_num_tasks:
7250 Res = ActOnOpenMPNumTasksClause(Expr, StartLoc, LParenLoc, EndLoc);
7251 break;
Alexey Bataev28c75412015-12-15 08:19:24 +00007252 case OMPC_hint:
7253 Res = ActOnOpenMPHintClause(Expr, StartLoc, LParenLoc, EndLoc);
7254 break;
Alexey Bataev6b8046a2015-09-03 07:23:48 +00007255 case OMPC_if:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007256 case OMPC_default:
Alexey Bataevbcbadb62014-05-06 06:04:14 +00007257 case OMPC_proc_bind:
Alexey Bataev56dafe82014-06-20 07:16:17 +00007258 case OMPC_schedule:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007259 case OMPC_private:
7260 case OMPC_firstprivate:
Alexander Musman1bb328c2014-06-04 13:06:39 +00007261 case OMPC_lastprivate:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007262 case OMPC_shared:
Alexey Bataevc5e02582014-06-16 07:08:35 +00007263 case OMPC_reduction:
Alexander Musman8dba6642014-04-22 13:09:42 +00007264 case OMPC_linear:
Alexander Musmanf0d76e72014-05-29 14:36:25 +00007265 case OMPC_aligned:
Alexey Bataevd48bcd82014-03-31 03:36:38 +00007266 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00007267 case OMPC_copyprivate:
Alexey Bataev236070f2014-06-20 11:19:47 +00007268 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00007269 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00007270 case OMPC_mergeable:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007271 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00007272 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007273 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00007274 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00007275 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00007276 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00007277 case OMPC_seq_cst:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007278 case OMPC_depend:
Alexey Bataev346265e2015-09-25 10:37:12 +00007279 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00007280 case OMPC_simd:
Kelvin Li0bff7af2015-11-23 05:32:03 +00007281 case OMPC_map:
Alexey Bataevb825de12015-12-07 10:51:44 +00007282 case OMPC_nogroup:
Carlo Bertollib4adf552016-01-15 18:50:31 +00007283 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00007284 case OMPC_defaultmap:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007285 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00007286 case OMPC_uniform:
Samuel Antao661c0902016-05-26 17:39:58 +00007287 case OMPC_to:
Samuel Antaoec172c62016-05-26 17:49:04 +00007288 case OMPC_from:
Carlo Bertolli2404b172016-07-13 15:37:16 +00007289 case OMPC_use_device_ptr:
Carlo Bertolli70594e92016-07-13 17:16:49 +00007290 case OMPC_is_device_ptr:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007291 llvm_unreachable("Clause is not allowed.");
7292 }
7293 return Res;
7294}
7295
Alexey Bataev6b8046a2015-09-03 07:23:48 +00007296OMPClause *Sema::ActOnOpenMPIfClause(OpenMPDirectiveKind NameModifier,
7297 Expr *Condition, SourceLocation StartLoc,
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007298 SourceLocation LParenLoc,
Alexey Bataev6b8046a2015-09-03 07:23:48 +00007299 SourceLocation NameModifierLoc,
7300 SourceLocation ColonLoc,
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007301 SourceLocation EndLoc) {
7302 Expr *ValExpr = Condition;
7303 if (!Condition->isValueDependent() && !Condition->isTypeDependent() &&
7304 !Condition->isInstantiationDependent() &&
7305 !Condition->containsUnexpandedParameterPack()) {
Richard Smith03a4aa32016-06-23 19:02:52 +00007306 ExprResult Val = CheckBooleanCondition(StartLoc, Condition);
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007307 if (Val.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00007308 return nullptr;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007309
Richard Smith03a4aa32016-06-23 19:02:52 +00007310 ValExpr = MakeFullExpr(Val.get()).get();
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007311 }
7312
Alexey Bataev6b8046a2015-09-03 07:23:48 +00007313 return new (Context) OMPIfClause(NameModifier, ValExpr, StartLoc, LParenLoc,
7314 NameModifierLoc, ColonLoc, EndLoc);
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007315}
7316
Alexey Bataev3778b602014-07-17 07:32:53 +00007317OMPClause *Sema::ActOnOpenMPFinalClause(Expr *Condition,
7318 SourceLocation StartLoc,
7319 SourceLocation LParenLoc,
7320 SourceLocation EndLoc) {
7321 Expr *ValExpr = Condition;
7322 if (!Condition->isValueDependent() && !Condition->isTypeDependent() &&
7323 !Condition->isInstantiationDependent() &&
7324 !Condition->containsUnexpandedParameterPack()) {
Richard Smith03a4aa32016-06-23 19:02:52 +00007325 ExprResult Val = CheckBooleanCondition(StartLoc, Condition);
Alexey Bataev3778b602014-07-17 07:32:53 +00007326 if (Val.isInvalid())
7327 return nullptr;
7328
Richard Smith03a4aa32016-06-23 19:02:52 +00007329 ValExpr = MakeFullExpr(Val.get()).get();
Alexey Bataev3778b602014-07-17 07:32:53 +00007330 }
7331
7332 return new (Context) OMPFinalClause(ValExpr, StartLoc, LParenLoc, EndLoc);
7333}
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00007334ExprResult Sema::PerformOpenMPImplicitIntegerConversion(SourceLocation Loc,
7335 Expr *Op) {
Alexey Bataev568a8332014-03-06 06:15:19 +00007336 if (!Op)
7337 return ExprError();
7338
7339 class IntConvertDiagnoser : public ICEConvertDiagnoser {
7340 public:
7341 IntConvertDiagnoser()
Alexey Bataeved09d242014-05-28 05:53:51 +00007342 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/ false, false, true) {}
Craig Toppere14c0f82014-03-12 04:55:44 +00007343 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
7344 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00007345 return S.Diag(Loc, diag::err_omp_not_integral) << T;
7346 }
Alexey Bataeved09d242014-05-28 05:53:51 +00007347 SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc,
7348 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00007349 return S.Diag(Loc, diag::err_omp_incomplete_type) << T;
7350 }
Alexey Bataeved09d242014-05-28 05:53:51 +00007351 SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc,
7352 QualType T,
7353 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00007354 return S.Diag(Loc, diag::err_omp_explicit_conversion) << T << ConvTy;
7355 }
Alexey Bataeved09d242014-05-28 05:53:51 +00007356 SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
7357 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00007358 return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
Alexey Bataeved09d242014-05-28 05:53:51 +00007359 << ConvTy->isEnumeralType() << ConvTy;
Alexey Bataev568a8332014-03-06 06:15:19 +00007360 }
Alexey Bataeved09d242014-05-28 05:53:51 +00007361 SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
7362 QualType T) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00007363 return S.Diag(Loc, diag::err_omp_ambiguous_conversion) << T;
7364 }
Alexey Bataeved09d242014-05-28 05:53:51 +00007365 SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
7366 QualType ConvTy) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00007367 return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
Alexey Bataeved09d242014-05-28 05:53:51 +00007368 << ConvTy->isEnumeralType() << ConvTy;
Alexey Bataev568a8332014-03-06 06:15:19 +00007369 }
Alexey Bataeved09d242014-05-28 05:53:51 +00007370 SemaDiagnosticBuilder diagnoseConversion(Sema &, SourceLocation, QualType,
7371 QualType) override {
Alexey Bataev568a8332014-03-06 06:15:19 +00007372 llvm_unreachable("conversion functions are permitted");
7373 }
7374 } ConvertDiagnoser;
7375 return PerformContextualImplicitConversion(Loc, Op, ConvertDiagnoser);
7376}
7377
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007378static bool IsNonNegativeIntegerValue(Expr *&ValExpr, Sema &SemaRef,
Alexey Bataeva0569352015-12-01 10:17:31 +00007379 OpenMPClauseKind CKind,
7380 bool StrictlyPositive) {
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007381 if (!ValExpr->isTypeDependent() && !ValExpr->isValueDependent() &&
7382 !ValExpr->isInstantiationDependent()) {
7383 SourceLocation Loc = ValExpr->getExprLoc();
7384 ExprResult Value =
7385 SemaRef.PerformOpenMPImplicitIntegerConversion(Loc, ValExpr);
7386 if (Value.isInvalid())
7387 return false;
7388
7389 ValExpr = Value.get();
7390 // The expression must evaluate to a non-negative integer value.
7391 llvm::APSInt Result;
7392 if (ValExpr->isIntegerConstantExpr(Result, SemaRef.Context) &&
Alexey Bataeva0569352015-12-01 10:17:31 +00007393 Result.isSigned() &&
7394 !((!StrictlyPositive && Result.isNonNegative()) ||
7395 (StrictlyPositive && Result.isStrictlyPositive()))) {
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007396 SemaRef.Diag(Loc, diag::err_omp_negative_expression_in_clause)
Alexey Bataeva0569352015-12-01 10:17:31 +00007397 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0)
7398 << ValExpr->getSourceRange();
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007399 return false;
7400 }
7401 }
7402 return true;
7403}
7404
Alexey Bataev568a8332014-03-06 06:15:19 +00007405OMPClause *Sema::ActOnOpenMPNumThreadsClause(Expr *NumThreads,
7406 SourceLocation StartLoc,
7407 SourceLocation LParenLoc,
7408 SourceLocation EndLoc) {
7409 Expr *ValExpr = NumThreads;
Alexey Bataev568a8332014-03-06 06:15:19 +00007410
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007411 // OpenMP [2.5, Restrictions]
7412 // The num_threads expression must evaluate to a positive integer value.
Alexey Bataeva0569352015-12-01 10:17:31 +00007413 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_num_threads,
7414 /*StrictlyPositive=*/true))
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007415 return nullptr;
Alexey Bataev568a8332014-03-06 06:15:19 +00007416
Alexey Bataeved09d242014-05-28 05:53:51 +00007417 return new (Context)
7418 OMPNumThreadsClause(ValExpr, StartLoc, LParenLoc, EndLoc);
Alexey Bataev568a8332014-03-06 06:15:19 +00007419}
7420
Alexey Bataev62c87d22014-03-21 04:51:18 +00007421ExprResult Sema::VerifyPositiveIntegerConstantInClause(Expr *E,
Alexey Bataeva636c7f2015-12-23 10:27:45 +00007422 OpenMPClauseKind CKind,
7423 bool StrictlyPositive) {
Alexey Bataev62c87d22014-03-21 04:51:18 +00007424 if (!E)
7425 return ExprError();
7426 if (E->isValueDependent() || E->isTypeDependent() ||
7427 E->isInstantiationDependent() || E->containsUnexpandedParameterPack())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00007428 return E;
Alexey Bataev62c87d22014-03-21 04:51:18 +00007429 llvm::APSInt Result;
7430 ExprResult ICE = VerifyIntegerConstantExpression(E, &Result);
7431 if (ICE.isInvalid())
7432 return ExprError();
Alexey Bataeva636c7f2015-12-23 10:27:45 +00007433 if ((StrictlyPositive && !Result.isStrictlyPositive()) ||
7434 (!StrictlyPositive && !Result.isNonNegative())) {
Alexey Bataev62c87d22014-03-21 04:51:18 +00007435 Diag(E->getExprLoc(), diag::err_omp_negative_expression_in_clause)
Alexey Bataeva636c7f2015-12-23 10:27:45 +00007436 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0)
7437 << E->getSourceRange();
Alexey Bataev62c87d22014-03-21 04:51:18 +00007438 return ExprError();
7439 }
Alexander Musman09184fe2014-09-30 05:29:28 +00007440 if (CKind == OMPC_aligned && !Result.isPowerOf2()) {
7441 Diag(E->getExprLoc(), diag::warn_omp_alignment_not_power_of_two)
7442 << E->getSourceRange();
7443 return ExprError();
7444 }
Alexey Bataeva636c7f2015-12-23 10:27:45 +00007445 if (CKind == OMPC_collapse && DSAStack->getAssociatedLoops() == 1)
7446 DSAStack->setAssociatedLoops(Result.getExtValue());
Alexey Bataev7b6bc882015-11-26 07:50:39 +00007447 else if (CKind == OMPC_ordered)
Alexey Bataeva636c7f2015-12-23 10:27:45 +00007448 DSAStack->setAssociatedLoops(Result.getExtValue());
Alexey Bataev62c87d22014-03-21 04:51:18 +00007449 return ICE;
7450}
7451
7452OMPClause *Sema::ActOnOpenMPSafelenClause(Expr *Len, SourceLocation StartLoc,
7453 SourceLocation LParenLoc,
7454 SourceLocation EndLoc) {
7455 // OpenMP [2.8.1, simd construct, Description]
7456 // The parameter of the safelen clause must be a constant
7457 // positive integer expression.
7458 ExprResult Safelen = VerifyPositiveIntegerConstantInClause(Len, OMPC_safelen);
7459 if (Safelen.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00007460 return nullptr;
Alexey Bataev62c87d22014-03-21 04:51:18 +00007461 return new (Context)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007462 OMPSafelenClause(Safelen.get(), StartLoc, LParenLoc, EndLoc);
Alexey Bataev62c87d22014-03-21 04:51:18 +00007463}
7464
Alexey Bataev66b15b52015-08-21 11:14:16 +00007465OMPClause *Sema::ActOnOpenMPSimdlenClause(Expr *Len, SourceLocation StartLoc,
7466 SourceLocation LParenLoc,
7467 SourceLocation EndLoc) {
7468 // OpenMP [2.8.1, simd construct, Description]
7469 // The parameter of the simdlen clause must be a constant
7470 // positive integer expression.
7471 ExprResult Simdlen = VerifyPositiveIntegerConstantInClause(Len, OMPC_simdlen);
7472 if (Simdlen.isInvalid())
7473 return nullptr;
7474 return new (Context)
7475 OMPSimdlenClause(Simdlen.get(), StartLoc, LParenLoc, EndLoc);
7476}
7477
Alexander Musman64d33f12014-06-04 07:53:32 +00007478OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops,
7479 SourceLocation StartLoc,
Alexander Musman8bd31e62014-05-27 15:12:19 +00007480 SourceLocation LParenLoc,
7481 SourceLocation EndLoc) {
Alexander Musman64d33f12014-06-04 07:53:32 +00007482 // OpenMP [2.7.1, loop construct, Description]
Alexander Musman8bd31e62014-05-27 15:12:19 +00007483 // OpenMP [2.8.1, simd construct, Description]
Alexander Musman64d33f12014-06-04 07:53:32 +00007484 // OpenMP [2.9.6, distribute construct, Description]
Alexander Musman8bd31e62014-05-27 15:12:19 +00007485 // The parameter of the collapse clause must be a constant
7486 // positive integer expression.
Alexander Musman64d33f12014-06-04 07:53:32 +00007487 ExprResult NumForLoopsResult =
7488 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse);
7489 if (NumForLoopsResult.isInvalid())
Alexander Musman8bd31e62014-05-27 15:12:19 +00007490 return nullptr;
7491 return new (Context)
Alexander Musman64d33f12014-06-04 07:53:32 +00007492 OMPCollapseClause(NumForLoopsResult.get(), StartLoc, LParenLoc, EndLoc);
Alexander Musman8bd31e62014-05-27 15:12:19 +00007493}
7494
Alexey Bataev10e775f2015-07-30 11:36:16 +00007495OMPClause *Sema::ActOnOpenMPOrderedClause(SourceLocation StartLoc,
7496 SourceLocation EndLoc,
7497 SourceLocation LParenLoc,
7498 Expr *NumForLoops) {
Alexey Bataev10e775f2015-07-30 11:36:16 +00007499 // OpenMP [2.7.1, loop construct, Description]
7500 // OpenMP [2.8.1, simd construct, Description]
7501 // OpenMP [2.9.6, distribute construct, Description]
7502 // The parameter of the ordered clause must be a constant
7503 // positive integer expression if any.
7504 if (NumForLoops && LParenLoc.isValid()) {
7505 ExprResult NumForLoopsResult =
7506 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered);
7507 if (NumForLoopsResult.isInvalid())
7508 return nullptr;
7509 NumForLoops = NumForLoopsResult.get();
Alexey Bataev346265e2015-09-25 10:37:12 +00007510 } else
7511 NumForLoops = nullptr;
7512 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops);
Alexey Bataev10e775f2015-07-30 11:36:16 +00007513 return new (Context)
7514 OMPOrderedClause(NumForLoops, StartLoc, LParenLoc, EndLoc);
7515}
7516
Alexey Bataeved09d242014-05-28 05:53:51 +00007517OMPClause *Sema::ActOnOpenMPSimpleClause(
7518 OpenMPClauseKind Kind, unsigned Argument, SourceLocation ArgumentLoc,
7519 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00007520 OMPClause *Res = nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007521 switch (Kind) {
7522 case OMPC_default:
Alexey Bataev758e55e2013-09-06 18:03:48 +00007523 Res =
Alexey Bataeved09d242014-05-28 05:53:51 +00007524 ActOnOpenMPDefaultClause(static_cast<OpenMPDefaultClauseKind>(Argument),
7525 ArgumentLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007526 break;
Alexey Bataevbcbadb62014-05-06 06:04:14 +00007527 case OMPC_proc_bind:
Alexey Bataeved09d242014-05-28 05:53:51 +00007528 Res = ActOnOpenMPProcBindClause(
7529 static_cast<OpenMPProcBindClauseKind>(Argument), ArgumentLoc, StartLoc,
7530 LParenLoc, EndLoc);
Alexey Bataevbcbadb62014-05-06 06:04:14 +00007531 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007532 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00007533 case OMPC_final:
Alexey Bataev568a8332014-03-06 06:15:19 +00007534 case OMPC_num_threads:
Alexey Bataev62c87d22014-03-21 04:51:18 +00007535 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00007536 case OMPC_simdlen:
Alexander Musman8bd31e62014-05-27 15:12:19 +00007537 case OMPC_collapse:
Alexey Bataev56dafe82014-06-20 07:16:17 +00007538 case OMPC_schedule:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007539 case OMPC_private:
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007540 case OMPC_firstprivate:
Alexander Musman1bb328c2014-06-04 13:06:39 +00007541 case OMPC_lastprivate:
Alexey Bataev758e55e2013-09-06 18:03:48 +00007542 case OMPC_shared:
Alexey Bataevc5e02582014-06-16 07:08:35 +00007543 case OMPC_reduction:
Alexander Musman8dba6642014-04-22 13:09:42 +00007544 case OMPC_linear:
Alexander Musmanf0d76e72014-05-29 14:36:25 +00007545 case OMPC_aligned:
Alexey Bataevd48bcd82014-03-31 03:36:38 +00007546 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00007547 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007548 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00007549 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00007550 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00007551 case OMPC_mergeable:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007552 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00007553 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007554 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00007555 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00007556 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00007557 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00007558 case OMPC_seq_cst:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007559 case OMPC_depend:
Michael Wonge710d542015-08-07 16:16:36 +00007560 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +00007561 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00007562 case OMPC_simd:
Kelvin Li0bff7af2015-11-23 05:32:03 +00007563 case OMPC_map:
Kelvin Li099bb8c2015-11-24 20:50:12 +00007564 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007565 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00007566 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00007567 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +00007568 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +00007569 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00007570 case OMPC_hint:
Carlo Bertollib4adf552016-01-15 18:50:31 +00007571 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00007572 case OMPC_defaultmap:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007573 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00007574 case OMPC_uniform:
Samuel Antao661c0902016-05-26 17:39:58 +00007575 case OMPC_to:
Samuel Antaoec172c62016-05-26 17:49:04 +00007576 case OMPC_from:
Carlo Bertolli2404b172016-07-13 15:37:16 +00007577 case OMPC_use_device_ptr:
Carlo Bertolli70594e92016-07-13 17:16:49 +00007578 case OMPC_is_device_ptr:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007579 llvm_unreachable("Clause is not allowed.");
7580 }
7581 return Res;
7582}
7583
Alexey Bataev6402bca2015-12-28 07:25:51 +00007584static std::string
7585getListOfPossibleValues(OpenMPClauseKind K, unsigned First, unsigned Last,
7586 ArrayRef<unsigned> Exclude = llvm::None) {
7587 std::string Values;
7588 unsigned Bound = Last >= 2 ? Last - 2 : 0;
7589 unsigned Skipped = Exclude.size();
7590 auto S = Exclude.begin(), E = Exclude.end();
7591 for (unsigned i = First; i < Last; ++i) {
7592 if (std::find(S, E, i) != E) {
7593 --Skipped;
7594 continue;
7595 }
7596 Values += "'";
7597 Values += getOpenMPSimpleClauseTypeName(K, i);
7598 Values += "'";
7599 if (i == Bound - Skipped)
7600 Values += " or ";
7601 else if (i != Bound + 1 - Skipped)
7602 Values += ", ";
7603 }
7604 return Values;
7605}
7606
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007607OMPClause *Sema::ActOnOpenMPDefaultClause(OpenMPDefaultClauseKind Kind,
7608 SourceLocation KindKwLoc,
7609 SourceLocation StartLoc,
7610 SourceLocation LParenLoc,
7611 SourceLocation EndLoc) {
7612 if (Kind == OMPC_DEFAULT_unknown) {
Alexey Bataev4ca40ed2014-05-12 04:23:46 +00007613 static_assert(OMPC_DEFAULT_unknown > 0,
7614 "OMPC_DEFAULT_unknown not greater than 0");
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007615 Diag(KindKwLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataev6402bca2015-12-28 07:25:51 +00007616 << getListOfPossibleValues(OMPC_default, /*First=*/0,
7617 /*Last=*/OMPC_DEFAULT_unknown)
7618 << getOpenMPClauseName(OMPC_default);
Alexander Musmancb7f9c42014-05-15 13:04:49 +00007619 return nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007620 }
Alexey Bataev758e55e2013-09-06 18:03:48 +00007621 switch (Kind) {
7622 case OMPC_DEFAULT_none:
Alexey Bataevbae9a792014-06-27 10:37:06 +00007623 DSAStack->setDefaultDSANone(KindKwLoc);
Alexey Bataev758e55e2013-09-06 18:03:48 +00007624 break;
7625 case OMPC_DEFAULT_shared:
Alexey Bataevbae9a792014-06-27 10:37:06 +00007626 DSAStack->setDefaultDSAShared(KindKwLoc);
Alexey Bataev758e55e2013-09-06 18:03:48 +00007627 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007628 case OMPC_DEFAULT_unknown:
Alexey Bataevaadd52e2014-02-13 05:29:23 +00007629 llvm_unreachable("Clause kind is not allowed.");
Alexey Bataev758e55e2013-09-06 18:03:48 +00007630 break;
7631 }
Alexey Bataeved09d242014-05-28 05:53:51 +00007632 return new (Context)
7633 OMPDefaultClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007634}
7635
Alexey Bataevbcbadb62014-05-06 06:04:14 +00007636OMPClause *Sema::ActOnOpenMPProcBindClause(OpenMPProcBindClauseKind Kind,
7637 SourceLocation KindKwLoc,
7638 SourceLocation StartLoc,
7639 SourceLocation LParenLoc,
7640 SourceLocation EndLoc) {
7641 if (Kind == OMPC_PROC_BIND_unknown) {
Alexey Bataevbcbadb62014-05-06 06:04:14 +00007642 Diag(KindKwLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataev6402bca2015-12-28 07:25:51 +00007643 << getListOfPossibleValues(OMPC_proc_bind, /*First=*/0,
7644 /*Last=*/OMPC_PROC_BIND_unknown)
7645 << getOpenMPClauseName(OMPC_proc_bind);
Alexander Musmancb7f9c42014-05-15 13:04:49 +00007646 return nullptr;
Alexey Bataevbcbadb62014-05-06 06:04:14 +00007647 }
Alexey Bataeved09d242014-05-28 05:53:51 +00007648 return new (Context)
7649 OMPProcBindClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
Alexey Bataevbcbadb62014-05-06 06:04:14 +00007650}
7651
Alexey Bataev56dafe82014-06-20 07:16:17 +00007652OMPClause *Sema::ActOnOpenMPSingleExprWithArgClause(
Alexey Bataev6402bca2015-12-28 07:25:51 +00007653 OpenMPClauseKind Kind, ArrayRef<unsigned> Argument, Expr *Expr,
Alexey Bataev56dafe82014-06-20 07:16:17 +00007654 SourceLocation StartLoc, SourceLocation LParenLoc,
Alexey Bataev6402bca2015-12-28 07:25:51 +00007655 ArrayRef<SourceLocation> ArgumentLoc, SourceLocation DelimLoc,
Alexey Bataev56dafe82014-06-20 07:16:17 +00007656 SourceLocation EndLoc) {
7657 OMPClause *Res = nullptr;
7658 switch (Kind) {
7659 case OMPC_schedule:
Alexey Bataev6402bca2015-12-28 07:25:51 +00007660 enum { Modifier1, Modifier2, ScheduleKind, NumberOfElements };
7661 assert(Argument.size() == NumberOfElements &&
7662 ArgumentLoc.size() == NumberOfElements);
Alexey Bataev56dafe82014-06-20 07:16:17 +00007663 Res = ActOnOpenMPScheduleClause(
Alexey Bataev6402bca2015-12-28 07:25:51 +00007664 static_cast<OpenMPScheduleClauseModifier>(Argument[Modifier1]),
7665 static_cast<OpenMPScheduleClauseModifier>(Argument[Modifier2]),
7666 static_cast<OpenMPScheduleClauseKind>(Argument[ScheduleKind]), Expr,
7667 StartLoc, LParenLoc, ArgumentLoc[Modifier1], ArgumentLoc[Modifier2],
7668 ArgumentLoc[ScheduleKind], DelimLoc, EndLoc);
Alexey Bataev56dafe82014-06-20 07:16:17 +00007669 break;
7670 case OMPC_if:
Alexey Bataev6402bca2015-12-28 07:25:51 +00007671 assert(Argument.size() == 1 && ArgumentLoc.size() == 1);
7672 Res = ActOnOpenMPIfClause(static_cast<OpenMPDirectiveKind>(Argument.back()),
7673 Expr, StartLoc, LParenLoc, ArgumentLoc.back(),
7674 DelimLoc, EndLoc);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00007675 break;
Carlo Bertollib4adf552016-01-15 18:50:31 +00007676 case OMPC_dist_schedule:
7677 Res = ActOnOpenMPDistScheduleClause(
7678 static_cast<OpenMPDistScheduleClauseKind>(Argument.back()), Expr,
7679 StartLoc, LParenLoc, ArgumentLoc.back(), DelimLoc, EndLoc);
7680 break;
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00007681 case OMPC_defaultmap:
7682 enum { Modifier, DefaultmapKind };
7683 Res = ActOnOpenMPDefaultmapClause(
7684 static_cast<OpenMPDefaultmapClauseModifier>(Argument[Modifier]),
7685 static_cast<OpenMPDefaultmapClauseKind>(Argument[DefaultmapKind]),
7686 StartLoc, LParenLoc, ArgumentLoc[Modifier],
7687 ArgumentLoc[DefaultmapKind], EndLoc);
7688 break;
Alexey Bataev3778b602014-07-17 07:32:53 +00007689 case OMPC_final:
Alexey Bataev56dafe82014-06-20 07:16:17 +00007690 case OMPC_num_threads:
7691 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00007692 case OMPC_simdlen:
Alexey Bataev56dafe82014-06-20 07:16:17 +00007693 case OMPC_collapse:
7694 case OMPC_default:
7695 case OMPC_proc_bind:
7696 case OMPC_private:
7697 case OMPC_firstprivate:
7698 case OMPC_lastprivate:
7699 case OMPC_shared:
7700 case OMPC_reduction:
7701 case OMPC_linear:
7702 case OMPC_aligned:
7703 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00007704 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007705 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00007706 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00007707 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00007708 case OMPC_mergeable:
Alexey Bataev56dafe82014-06-20 07:16:17 +00007709 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00007710 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007711 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00007712 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00007713 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00007714 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00007715 case OMPC_seq_cst:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007716 case OMPC_depend:
Michael Wonge710d542015-08-07 16:16:36 +00007717 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +00007718 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00007719 case OMPC_simd:
Kelvin Li0bff7af2015-11-23 05:32:03 +00007720 case OMPC_map:
Kelvin Li099bb8c2015-11-24 20:50:12 +00007721 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007722 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00007723 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00007724 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +00007725 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +00007726 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00007727 case OMPC_hint:
Alexey Bataev56dafe82014-06-20 07:16:17 +00007728 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00007729 case OMPC_uniform:
Samuel Antao661c0902016-05-26 17:39:58 +00007730 case OMPC_to:
Samuel Antaoec172c62016-05-26 17:49:04 +00007731 case OMPC_from:
Carlo Bertolli2404b172016-07-13 15:37:16 +00007732 case OMPC_use_device_ptr:
Carlo Bertolli70594e92016-07-13 17:16:49 +00007733 case OMPC_is_device_ptr:
Alexey Bataev56dafe82014-06-20 07:16:17 +00007734 llvm_unreachable("Clause is not allowed.");
7735 }
7736 return Res;
7737}
7738
Alexey Bataev6402bca2015-12-28 07:25:51 +00007739static bool checkScheduleModifiers(Sema &S, OpenMPScheduleClauseModifier M1,
7740 OpenMPScheduleClauseModifier M2,
7741 SourceLocation M1Loc, SourceLocation M2Loc) {
7742 if (M1 == OMPC_SCHEDULE_MODIFIER_unknown && M1Loc.isValid()) {
7743 SmallVector<unsigned, 2> Excluded;
7744 if (M2 != OMPC_SCHEDULE_MODIFIER_unknown)
7745 Excluded.push_back(M2);
7746 if (M2 == OMPC_SCHEDULE_MODIFIER_nonmonotonic)
7747 Excluded.push_back(OMPC_SCHEDULE_MODIFIER_monotonic);
7748 if (M2 == OMPC_SCHEDULE_MODIFIER_monotonic)
7749 Excluded.push_back(OMPC_SCHEDULE_MODIFIER_nonmonotonic);
7750 S.Diag(M1Loc, diag::err_omp_unexpected_clause_value)
7751 << getListOfPossibleValues(OMPC_schedule,
7752 /*First=*/OMPC_SCHEDULE_MODIFIER_unknown + 1,
7753 /*Last=*/OMPC_SCHEDULE_MODIFIER_last,
7754 Excluded)
7755 << getOpenMPClauseName(OMPC_schedule);
7756 return true;
7757 }
7758 return false;
7759}
7760
Alexey Bataev56dafe82014-06-20 07:16:17 +00007761OMPClause *Sema::ActOnOpenMPScheduleClause(
Alexey Bataev6402bca2015-12-28 07:25:51 +00007762 OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2,
Alexey Bataev56dafe82014-06-20 07:16:17 +00007763 OpenMPScheduleClauseKind Kind, Expr *ChunkSize, SourceLocation StartLoc,
Alexey Bataev6402bca2015-12-28 07:25:51 +00007764 SourceLocation LParenLoc, SourceLocation M1Loc, SourceLocation M2Loc,
7765 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) {
7766 if (checkScheduleModifiers(*this, M1, M2, M1Loc, M2Loc) ||
7767 checkScheduleModifiers(*this, M2, M1, M2Loc, M1Loc))
7768 return nullptr;
7769 // OpenMP, 2.7.1, Loop Construct, Restrictions
7770 // Either the monotonic modifier or the nonmonotonic modifier can be specified
7771 // but not both.
7772 if ((M1 == M2 && M1 != OMPC_SCHEDULE_MODIFIER_unknown) ||
7773 (M1 == OMPC_SCHEDULE_MODIFIER_monotonic &&
7774 M2 == OMPC_SCHEDULE_MODIFIER_nonmonotonic) ||
7775 (M1 == OMPC_SCHEDULE_MODIFIER_nonmonotonic &&
7776 M2 == OMPC_SCHEDULE_MODIFIER_monotonic)) {
7777 Diag(M2Loc, diag::err_omp_unexpected_schedule_modifier)
7778 << getOpenMPSimpleClauseTypeName(OMPC_schedule, M2)
7779 << getOpenMPSimpleClauseTypeName(OMPC_schedule, M1);
7780 return nullptr;
7781 }
Alexey Bataev56dafe82014-06-20 07:16:17 +00007782 if (Kind == OMPC_SCHEDULE_unknown) {
7783 std::string Values;
Alexey Bataev6402bca2015-12-28 07:25:51 +00007784 if (M1Loc.isInvalid() && M2Loc.isInvalid()) {
7785 unsigned Exclude[] = {OMPC_SCHEDULE_unknown};
7786 Values = getListOfPossibleValues(OMPC_schedule, /*First=*/0,
7787 /*Last=*/OMPC_SCHEDULE_MODIFIER_last,
7788 Exclude);
7789 } else {
7790 Values = getListOfPossibleValues(OMPC_schedule, /*First=*/0,
7791 /*Last=*/OMPC_SCHEDULE_unknown);
Alexey Bataev56dafe82014-06-20 07:16:17 +00007792 }
7793 Diag(KindLoc, diag::err_omp_unexpected_clause_value)
7794 << Values << getOpenMPClauseName(OMPC_schedule);
7795 return nullptr;
7796 }
Alexey Bataev6402bca2015-12-28 07:25:51 +00007797 // OpenMP, 2.7.1, Loop Construct, Restrictions
7798 // The nonmonotonic modifier can only be specified with schedule(dynamic) or
7799 // schedule(guided).
7800 if ((M1 == OMPC_SCHEDULE_MODIFIER_nonmonotonic ||
7801 M2 == OMPC_SCHEDULE_MODIFIER_nonmonotonic) &&
7802 Kind != OMPC_SCHEDULE_dynamic && Kind != OMPC_SCHEDULE_guided) {
7803 Diag(M1 == OMPC_SCHEDULE_MODIFIER_nonmonotonic ? M1Loc : M2Loc,
7804 diag::err_omp_schedule_nonmonotonic_static);
7805 return nullptr;
7806 }
Alexey Bataev56dafe82014-06-20 07:16:17 +00007807 Expr *ValExpr = ChunkSize;
Alexey Bataev3392d762016-02-16 11:18:12 +00007808 Stmt *HelperValStmt = nullptr;
Alexey Bataev56dafe82014-06-20 07:16:17 +00007809 if (ChunkSize) {
7810 if (!ChunkSize->isValueDependent() && !ChunkSize->isTypeDependent() &&
7811 !ChunkSize->isInstantiationDependent() &&
7812 !ChunkSize->containsUnexpandedParameterPack()) {
7813 SourceLocation ChunkSizeLoc = ChunkSize->getLocStart();
7814 ExprResult Val =
7815 PerformOpenMPImplicitIntegerConversion(ChunkSizeLoc, ChunkSize);
7816 if (Val.isInvalid())
7817 return nullptr;
7818
7819 ValExpr = Val.get();
7820
7821 // OpenMP [2.7.1, Restrictions]
7822 // chunk_size must be a loop invariant integer expression with a positive
7823 // value.
7824 llvm::APSInt Result;
Alexey Bataev040d5402015-05-12 08:35:28 +00007825 if (ValExpr->isIntegerConstantExpr(Result, Context)) {
7826 if (Result.isSigned() && !Result.isStrictlyPositive()) {
7827 Diag(ChunkSizeLoc, diag::err_omp_negative_expression_in_clause)
Alexey Bataeva0569352015-12-01 10:17:31 +00007828 << "schedule" << 1 << ChunkSize->getSourceRange();
Alexey Bataev040d5402015-05-12 08:35:28 +00007829 return nullptr;
7830 }
Alexey Bataevb46cdea2016-06-15 11:20:48 +00007831 } else if (isParallelOrTaskRegion(DSAStack->getCurrentDirective()) &&
7832 !CurContext->isDependentContext()) {
Alexey Bataev5a3af132016-03-29 08:58:54 +00007833 llvm::MapVector<Expr *, DeclRefExpr *> Captures;
7834 ValExpr = tryBuildCapture(*this, ValExpr, Captures).get();
7835 HelperValStmt = buildPreInits(Context, Captures);
Alexey Bataev56dafe82014-06-20 07:16:17 +00007836 }
7837 }
7838 }
7839
Alexey Bataev6402bca2015-12-28 07:25:51 +00007840 return new (Context)
7841 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind,
Alexey Bataev3392d762016-02-16 11:18:12 +00007842 ValExpr, HelperValStmt, M1, M1Loc, M2, M2Loc);
Alexey Bataev56dafe82014-06-20 07:16:17 +00007843}
7844
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007845OMPClause *Sema::ActOnOpenMPClause(OpenMPClauseKind Kind,
7846 SourceLocation StartLoc,
7847 SourceLocation EndLoc) {
7848 OMPClause *Res = nullptr;
7849 switch (Kind) {
7850 case OMPC_ordered:
7851 Res = ActOnOpenMPOrderedClause(StartLoc, EndLoc);
7852 break;
Alexey Bataev236070f2014-06-20 11:19:47 +00007853 case OMPC_nowait:
7854 Res = ActOnOpenMPNowaitClause(StartLoc, EndLoc);
7855 break;
Alexey Bataev7aea99a2014-07-17 12:19:31 +00007856 case OMPC_untied:
7857 Res = ActOnOpenMPUntiedClause(StartLoc, EndLoc);
7858 break;
Alexey Bataev74ba3a52014-07-17 12:47:03 +00007859 case OMPC_mergeable:
7860 Res = ActOnOpenMPMergeableClause(StartLoc, EndLoc);
7861 break;
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007862 case OMPC_read:
7863 Res = ActOnOpenMPReadClause(StartLoc, EndLoc);
7864 break;
Alexey Bataevdea47612014-07-23 07:46:59 +00007865 case OMPC_write:
7866 Res = ActOnOpenMPWriteClause(StartLoc, EndLoc);
7867 break;
Alexey Bataev67a4f222014-07-23 10:25:33 +00007868 case OMPC_update:
7869 Res = ActOnOpenMPUpdateClause(StartLoc, EndLoc);
7870 break;
Alexey Bataev459dec02014-07-24 06:46:57 +00007871 case OMPC_capture:
7872 Res = ActOnOpenMPCaptureClause(StartLoc, EndLoc);
7873 break;
Alexey Bataev82bad8b2014-07-24 08:55:34 +00007874 case OMPC_seq_cst:
7875 Res = ActOnOpenMPSeqCstClause(StartLoc, EndLoc);
7876 break;
Alexey Bataev346265e2015-09-25 10:37:12 +00007877 case OMPC_threads:
7878 Res = ActOnOpenMPThreadsClause(StartLoc, EndLoc);
7879 break;
Alexey Bataevd14d1e62015-09-28 06:39:35 +00007880 case OMPC_simd:
7881 Res = ActOnOpenMPSIMDClause(StartLoc, EndLoc);
7882 break;
Alexey Bataevb825de12015-12-07 10:51:44 +00007883 case OMPC_nogroup:
7884 Res = ActOnOpenMPNogroupClause(StartLoc, EndLoc);
7885 break;
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007886 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00007887 case OMPC_final:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007888 case OMPC_num_threads:
7889 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00007890 case OMPC_simdlen:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007891 case OMPC_collapse:
7892 case OMPC_schedule:
7893 case OMPC_private:
7894 case OMPC_firstprivate:
7895 case OMPC_lastprivate:
7896 case OMPC_shared:
7897 case OMPC_reduction:
7898 case OMPC_linear:
7899 case OMPC_aligned:
7900 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +00007901 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007902 case OMPC_default:
7903 case OMPC_proc_bind:
7904 case OMPC_threadprivate:
Alexey Bataev6125da92014-07-21 11:26:11 +00007905 case OMPC_flush:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007906 case OMPC_depend:
Michael Wonge710d542015-08-07 16:16:36 +00007907 case OMPC_device:
Kelvin Li0bff7af2015-11-23 05:32:03 +00007908 case OMPC_map:
Kelvin Li099bb8c2015-11-24 20:50:12 +00007909 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00007910 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00007911 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00007912 case OMPC_grainsize:
Alexey Bataev382967a2015-12-08 12:06:20 +00007913 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00007914 case OMPC_hint:
Carlo Bertollib4adf552016-01-15 18:50:31 +00007915 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00007916 case OMPC_defaultmap:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007917 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00007918 case OMPC_uniform:
Samuel Antao661c0902016-05-26 17:39:58 +00007919 case OMPC_to:
Samuel Antaoec172c62016-05-26 17:49:04 +00007920 case OMPC_from:
Carlo Bertolli2404b172016-07-13 15:37:16 +00007921 case OMPC_use_device_ptr:
Carlo Bertolli70594e92016-07-13 17:16:49 +00007922 case OMPC_is_device_ptr:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00007923 llvm_unreachable("Clause is not allowed.");
7924 }
7925 return Res;
7926}
7927
Alexey Bataev236070f2014-06-20 11:19:47 +00007928OMPClause *Sema::ActOnOpenMPNowaitClause(SourceLocation StartLoc,
7929 SourceLocation EndLoc) {
Alexey Bataev6d4ed052015-07-01 06:57:41 +00007930 DSAStack->setNowaitRegion();
Alexey Bataev236070f2014-06-20 11:19:47 +00007931 return new (Context) OMPNowaitClause(StartLoc, EndLoc);
7932}
7933
Alexey Bataev7aea99a2014-07-17 12:19:31 +00007934OMPClause *Sema::ActOnOpenMPUntiedClause(SourceLocation StartLoc,
7935 SourceLocation EndLoc) {
7936 return new (Context) OMPUntiedClause(StartLoc, EndLoc);
7937}
7938
Alexey Bataev74ba3a52014-07-17 12:47:03 +00007939OMPClause *Sema::ActOnOpenMPMergeableClause(SourceLocation StartLoc,
7940 SourceLocation EndLoc) {
7941 return new (Context) OMPMergeableClause(StartLoc, EndLoc);
7942}
7943
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007944OMPClause *Sema::ActOnOpenMPReadClause(SourceLocation StartLoc,
7945 SourceLocation EndLoc) {
Alexey Bataevf98b00c2014-07-23 02:27:21 +00007946 return new (Context) OMPReadClause(StartLoc, EndLoc);
7947}
7948
Alexey Bataevdea47612014-07-23 07:46:59 +00007949OMPClause *Sema::ActOnOpenMPWriteClause(SourceLocation StartLoc,
7950 SourceLocation EndLoc) {
7951 return new (Context) OMPWriteClause(StartLoc, EndLoc);
7952}
7953
Alexey Bataev67a4f222014-07-23 10:25:33 +00007954OMPClause *Sema::ActOnOpenMPUpdateClause(SourceLocation StartLoc,
7955 SourceLocation EndLoc) {
7956 return new (Context) OMPUpdateClause(StartLoc, EndLoc);
7957}
7958
Alexey Bataev459dec02014-07-24 06:46:57 +00007959OMPClause *Sema::ActOnOpenMPCaptureClause(SourceLocation StartLoc,
7960 SourceLocation EndLoc) {
7961 return new (Context) OMPCaptureClause(StartLoc, EndLoc);
7962}
7963
Alexey Bataev82bad8b2014-07-24 08:55:34 +00007964OMPClause *Sema::ActOnOpenMPSeqCstClause(SourceLocation StartLoc,
7965 SourceLocation EndLoc) {
7966 return new (Context) OMPSeqCstClause(StartLoc, EndLoc);
7967}
7968
Alexey Bataev346265e2015-09-25 10:37:12 +00007969OMPClause *Sema::ActOnOpenMPThreadsClause(SourceLocation StartLoc,
7970 SourceLocation EndLoc) {
7971 return new (Context) OMPThreadsClause(StartLoc, EndLoc);
7972}
7973
Alexey Bataevd14d1e62015-09-28 06:39:35 +00007974OMPClause *Sema::ActOnOpenMPSIMDClause(SourceLocation StartLoc,
7975 SourceLocation EndLoc) {
7976 return new (Context) OMPSIMDClause(StartLoc, EndLoc);
7977}
7978
Alexey Bataevb825de12015-12-07 10:51:44 +00007979OMPClause *Sema::ActOnOpenMPNogroupClause(SourceLocation StartLoc,
7980 SourceLocation EndLoc) {
7981 return new (Context) OMPNogroupClause(StartLoc, EndLoc);
7982}
7983
Alexey Bataevc5e02582014-06-16 07:08:35 +00007984OMPClause *Sema::ActOnOpenMPVarListClause(
7985 OpenMPClauseKind Kind, ArrayRef<Expr *> VarList, Expr *TailExpr,
7986 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc,
7987 SourceLocation EndLoc, CXXScopeSpec &ReductionIdScopeSpec,
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00007988 const DeclarationNameInfo &ReductionId, OpenMPDependClauseKind DepKind,
Samuel Antao23abd722016-01-19 20:40:49 +00007989 OpenMPLinearClauseKind LinKind, OpenMPMapClauseKind MapTypeModifier,
7990 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit,
7991 SourceLocation DepLinMapLoc) {
Alexander Musmancb7f9c42014-05-15 13:04:49 +00007992 OMPClause *Res = nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00007993 switch (Kind) {
7994 case OMPC_private:
7995 Res = ActOnOpenMPPrivateClause(VarList, StartLoc, LParenLoc, EndLoc);
7996 break;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00007997 case OMPC_firstprivate:
7998 Res = ActOnOpenMPFirstprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
7999 break;
Alexander Musman1bb328c2014-06-04 13:06:39 +00008000 case OMPC_lastprivate:
8001 Res = ActOnOpenMPLastprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
8002 break;
Alexey Bataev758e55e2013-09-06 18:03:48 +00008003 case OMPC_shared:
8004 Res = ActOnOpenMPSharedClause(VarList, StartLoc, LParenLoc, EndLoc);
8005 break;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008006 case OMPC_reduction:
Alexey Bataev23b69422014-06-18 07:08:49 +00008007 Res = ActOnOpenMPReductionClause(VarList, StartLoc, LParenLoc, ColonLoc,
8008 EndLoc, ReductionIdScopeSpec, ReductionId);
Alexey Bataevc5e02582014-06-16 07:08:35 +00008009 break;
Alexander Musman8dba6642014-04-22 13:09:42 +00008010 case OMPC_linear:
8011 Res = ActOnOpenMPLinearClause(VarList, TailExpr, StartLoc, LParenLoc,
Kelvin Li0bff7af2015-11-23 05:32:03 +00008012 LinKind, DepLinMapLoc, ColonLoc, EndLoc);
Alexander Musman8dba6642014-04-22 13:09:42 +00008013 break;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00008014 case OMPC_aligned:
8015 Res = ActOnOpenMPAlignedClause(VarList, TailExpr, StartLoc, LParenLoc,
8016 ColonLoc, EndLoc);
8017 break;
Alexey Bataevd48bcd82014-03-31 03:36:38 +00008018 case OMPC_copyin:
8019 Res = ActOnOpenMPCopyinClause(VarList, StartLoc, LParenLoc, EndLoc);
8020 break;
Alexey Bataevbae9a792014-06-27 10:37:06 +00008021 case OMPC_copyprivate:
8022 Res = ActOnOpenMPCopyprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
8023 break;
Alexey Bataev6125da92014-07-21 11:26:11 +00008024 case OMPC_flush:
8025 Res = ActOnOpenMPFlushClause(VarList, StartLoc, LParenLoc, EndLoc);
8026 break;
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00008027 case OMPC_depend:
Kelvin Li0bff7af2015-11-23 05:32:03 +00008028 Res = ActOnOpenMPDependClause(DepKind, DepLinMapLoc, ColonLoc, VarList,
8029 StartLoc, LParenLoc, EndLoc);
8030 break;
8031 case OMPC_map:
Samuel Antao23abd722016-01-19 20:40:49 +00008032 Res = ActOnOpenMPMapClause(MapTypeModifier, MapType, IsMapTypeImplicit,
8033 DepLinMapLoc, ColonLoc, VarList, StartLoc,
8034 LParenLoc, EndLoc);
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00008035 break;
Samuel Antao661c0902016-05-26 17:39:58 +00008036 case OMPC_to:
8037 Res = ActOnOpenMPToClause(VarList, StartLoc, LParenLoc, EndLoc);
8038 break;
Samuel Antaoec172c62016-05-26 17:49:04 +00008039 case OMPC_from:
8040 Res = ActOnOpenMPFromClause(VarList, StartLoc, LParenLoc, EndLoc);
8041 break;
Carlo Bertolli2404b172016-07-13 15:37:16 +00008042 case OMPC_use_device_ptr:
8043 Res = ActOnOpenMPUseDevicePtrClause(VarList, StartLoc, LParenLoc, EndLoc);
8044 break;
Carlo Bertolli70594e92016-07-13 17:16:49 +00008045 case OMPC_is_device_ptr:
8046 Res = ActOnOpenMPIsDevicePtrClause(VarList, StartLoc, LParenLoc, EndLoc);
8047 break;
Alexey Bataevaadd52e2014-02-13 05:29:23 +00008048 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +00008049 case OMPC_final:
Alexey Bataev568a8332014-03-06 06:15:19 +00008050 case OMPC_num_threads:
Alexey Bataev62c87d22014-03-21 04:51:18 +00008051 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00008052 case OMPC_simdlen:
Alexander Musman8bd31e62014-05-27 15:12:19 +00008053 case OMPC_collapse:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008054 case OMPC_default:
Alexey Bataevbcbadb62014-05-06 06:04:14 +00008055 case OMPC_proc_bind:
Alexey Bataev56dafe82014-06-20 07:16:17 +00008056 case OMPC_schedule:
Alexey Bataev142e1fc2014-06-20 09:44:06 +00008057 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +00008058 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +00008059 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +00008060 case OMPC_mergeable:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008061 case OMPC_threadprivate:
Alexey Bataevf98b00c2014-07-23 02:27:21 +00008062 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +00008063 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +00008064 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +00008065 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +00008066 case OMPC_seq_cst:
Michael Wonge710d542015-08-07 16:16:36 +00008067 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +00008068 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00008069 case OMPC_simd:
Kelvin Li099bb8c2015-11-24 20:50:12 +00008070 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00008071 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00008072 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00008073 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +00008074 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +00008075 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00008076 case OMPC_hint:
Carlo Bertollib4adf552016-01-15 18:50:31 +00008077 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00008078 case OMPC_defaultmap:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008079 case OMPC_unknown:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00008080 case OMPC_uniform:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008081 llvm_unreachable("Clause is not allowed.");
8082 }
8083 return Res;
8084}
8085
Alexey Bataev90c228f2016-02-08 09:29:13 +00008086ExprResult Sema::getOpenMPCapturedExpr(VarDecl *Capture, ExprValueKind VK,
Alexey Bataev61205072016-03-02 04:57:40 +00008087 ExprObjectKind OK, SourceLocation Loc) {
Alexey Bataev90c228f2016-02-08 09:29:13 +00008088 ExprResult Res = BuildDeclRefExpr(
8089 Capture, Capture->getType().getNonReferenceType(), VK_LValue, Loc);
8090 if (!Res.isUsable())
8091 return ExprError();
8092 if (OK == OK_Ordinary && !getLangOpts().CPlusPlus) {
8093 Res = CreateBuiltinUnaryOp(Loc, UO_Deref, Res.get());
8094 if (!Res.isUsable())
8095 return ExprError();
8096 }
8097 if (VK != VK_LValue && Res.get()->isGLValue()) {
8098 Res = DefaultLvalueConversion(Res.get());
8099 if (!Res.isUsable())
8100 return ExprError();
8101 }
8102 return Res;
8103}
8104
Alexey Bataev60da77e2016-02-29 05:54:20 +00008105static std::pair<ValueDecl *, bool>
8106getPrivateItem(Sema &S, Expr *&RefExpr, SourceLocation &ELoc,
8107 SourceRange &ERange, bool AllowArraySection = false) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00008108 if (RefExpr->isTypeDependent() || RefExpr->isValueDependent() ||
8109 RefExpr->containsUnexpandedParameterPack())
8110 return std::make_pair(nullptr, true);
8111
Alexey Bataevd985eda2016-02-10 11:29:16 +00008112 // OpenMP [3.1, C/C++]
8113 // A list item is a variable name.
8114 // OpenMP [2.9.3.3, Restrictions, p.1]
8115 // A variable that is part of another variable (as an array or
8116 // structure element) cannot appear in a private clause.
8117 RefExpr = RefExpr->IgnoreParens();
Alexey Bataev60da77e2016-02-29 05:54:20 +00008118 enum {
8119 NoArrayExpr = -1,
8120 ArraySubscript = 0,
8121 OMPArraySection = 1
8122 } IsArrayExpr = NoArrayExpr;
8123 if (AllowArraySection) {
8124 if (auto *ASE = dyn_cast_or_null<ArraySubscriptExpr>(RefExpr)) {
8125 auto *Base = ASE->getBase()->IgnoreParenImpCasts();
8126 while (auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base))
8127 Base = TempASE->getBase()->IgnoreParenImpCasts();
8128 RefExpr = Base;
8129 IsArrayExpr = ArraySubscript;
8130 } else if (auto *OASE = dyn_cast_or_null<OMPArraySectionExpr>(RefExpr)) {
8131 auto *Base = OASE->getBase()->IgnoreParenImpCasts();
8132 while (auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base))
8133 Base = TempOASE->getBase()->IgnoreParenImpCasts();
8134 while (auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base))
8135 Base = TempASE->getBase()->IgnoreParenImpCasts();
8136 RefExpr = Base;
8137 IsArrayExpr = OMPArraySection;
8138 }
8139 }
8140 ELoc = RefExpr->getExprLoc();
8141 ERange = RefExpr->getSourceRange();
8142 RefExpr = RefExpr->IgnoreParenImpCasts();
Alexey Bataevd985eda2016-02-10 11:29:16 +00008143 auto *DE = dyn_cast_or_null<DeclRefExpr>(RefExpr);
8144 auto *ME = dyn_cast_or_null<MemberExpr>(RefExpr);
8145 if ((!DE || !isa<VarDecl>(DE->getDecl())) &&
8146 (S.getCurrentThisType().isNull() || !ME ||
8147 !isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()) ||
8148 !isa<FieldDecl>(ME->getMemberDecl()))) {
Alexey Bataev60da77e2016-02-29 05:54:20 +00008149 if (IsArrayExpr != NoArrayExpr)
8150 S.Diag(ELoc, diag::err_omp_expected_base_var_name) << IsArrayExpr
8151 << ERange;
8152 else {
8153 S.Diag(ELoc,
8154 AllowArraySection
8155 ? diag::err_omp_expected_var_name_member_expr_or_array_item
8156 : diag::err_omp_expected_var_name_member_expr)
8157 << (S.getCurrentThisType().isNull() ? 0 : 1) << ERange;
8158 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00008159 return std::make_pair(nullptr, false);
8160 }
8161 return std::make_pair(DE ? DE->getDecl() : ME->getMemberDecl(), false);
8162}
8163
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008164OMPClause *Sema::ActOnOpenMPPrivateClause(ArrayRef<Expr *> VarList,
8165 SourceLocation StartLoc,
8166 SourceLocation LParenLoc,
8167 SourceLocation EndLoc) {
8168 SmallVector<Expr *, 8> Vars;
Alexey Bataev03b340a2014-10-21 03:16:40 +00008169 SmallVector<Expr *, 8> PrivateCopies;
Alexey Bataeved09d242014-05-28 05:53:51 +00008170 for (auto &RefExpr : VarList) {
8171 assert(RefExpr && "NULL expr in OpenMP private clause.");
Alexey Bataev60da77e2016-02-29 05:54:20 +00008172 SourceLocation ELoc;
8173 SourceRange ERange;
8174 Expr *SimpleRefExpr = RefExpr;
8175 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008176 if (Res.second) {
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008177 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00008178 Vars.push_back(RefExpr);
Alexey Bataev03b340a2014-10-21 03:16:40 +00008179 PrivateCopies.push_back(nullptr);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008180 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00008181 ValueDecl *D = Res.first;
8182 if (!D)
8183 continue;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008184
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008185 QualType Type = D->getType();
8186 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008187
8188 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
8189 // A variable that appears in a private clause must not have an incomplete
8190 // type or a reference type.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008191 if (RequireCompleteType(ELoc, Type, diag::err_omp_private_incomplete_type))
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008192 continue;
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008193 Type = Type.getNonReferenceType();
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008194
Alexey Bataev758e55e2013-09-06 18:03:48 +00008195 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
8196 // in a Construct]
8197 // Variables with the predetermined data-sharing attributes may not be
8198 // listed in data-sharing attributes clauses, except for the cases
8199 // listed below. For these exceptions only, listing a predetermined
8200 // variable in a data-sharing attribute clause is allowed and overrides
8201 // the variable's predetermined data-sharing attributes.
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008202 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexey Bataev758e55e2013-09-06 18:03:48 +00008203 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_private) {
Alexey Bataeved09d242014-05-28 05:53:51 +00008204 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
8205 << getOpenMPClauseName(OMPC_private);
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008206 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataev758e55e2013-09-06 18:03:48 +00008207 continue;
8208 }
8209
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008210 // Variably modified types are not supported for tasks.
Alexey Bataev5129d3a2015-05-21 09:47:46 +00008211 if (!Type->isAnyPointerType() && Type->isVariablyModifiedType() &&
Alexey Bataev35aaee62016-04-13 13:36:48 +00008212 isOpenMPTaskingDirective(DSAStack->getCurrentDirective())) {
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008213 Diag(ELoc, diag::err_omp_variably_modified_type_not_supported)
8214 << getOpenMPClauseName(OMPC_private) << Type
8215 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
8216 bool IsDecl =
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008217 !VD ||
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008218 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008219 Diag(D->getLocation(),
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008220 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008221 << D;
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008222 continue;
8223 }
8224
Carlo Bertollib74bfc82016-03-18 21:43:32 +00008225 // OpenMP 4.5 [2.15.5.1, Restrictions, p.3]
8226 // A list item cannot appear in both a map clause and a data-sharing
8227 // attribute clause on the same construct
8228 if (DSAStack->getCurrentDirective() == OMPD_target) {
Samuel Antao90927002016-04-26 14:54:23 +00008229 if (DSAStack->checkMappableExprComponentListsForDecl(
8230 VD, /* CurrentRegionOnly = */ true,
8231 [&](OMPClauseMappableExprCommon::MappableExprComponentListRef)
8232 -> bool { return true; })) {
Carlo Bertollib74bfc82016-03-18 21:43:32 +00008233 Diag(ELoc, diag::err_omp_variable_in_map_and_dsa)
8234 << getOpenMPClauseName(OMPC_private)
8235 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
8236 ReportOriginalDSA(*this, DSAStack, D, DVar);
8237 continue;
8238 }
8239 }
8240
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008241 // OpenMP [2.9.3.3, Restrictions, C/C++, p.1]
8242 // A variable of class type (or array thereof) that appears in a private
8243 // clause requires an accessible, unambiguous default constructor for the
8244 // class type.
Alexey Bataev03b340a2014-10-21 03:16:40 +00008245 // Generate helper private variable and initialize it with the default
8246 // value. The address of the original variable is replaced by the address of
8247 // the new private variable in CodeGen. This new variable is not added to
8248 // IdResolver, so the code in the OpenMP region uses original variable for
8249 // proper diagnostics.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008250 Type = Type.getUnqualifiedType();
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008251 auto VDPrivate = buildVarDecl(*this, ELoc, Type, D->getName(),
8252 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataev39f915b82015-05-08 10:41:21 +00008253 ActOnUninitializedDecl(VDPrivate, /*TypeMayContainAuto=*/false);
Alexey Bataev03b340a2014-10-21 03:16:40 +00008254 if (VDPrivate->isInvalidDecl())
8255 continue;
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008256 auto VDPrivateRefExpr = buildDeclRefExpr(
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00008257 *this, VDPrivate, RefExpr->getType().getUnqualifiedType(), ELoc);
Alexey Bataev03b340a2014-10-21 03:16:40 +00008258
Alexey Bataev90c228f2016-02-08 09:29:13 +00008259 DeclRefExpr *Ref = nullptr;
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00008260 if (!VD && !CurContext->isDependentContext())
Alexey Bataev61205072016-03-02 04:57:40 +00008261 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false);
Alexey Bataev90c228f2016-02-08 09:29:13 +00008262 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_private, Ref);
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00008263 Vars.push_back((VD || CurContext->isDependentContext())
8264 ? RefExpr->IgnoreParens()
8265 : Ref);
Alexey Bataev03b340a2014-10-21 03:16:40 +00008266 PrivateCopies.push_back(VDPrivateRefExpr);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008267 }
8268
Alexey Bataeved09d242014-05-28 05:53:51 +00008269 if (Vars.empty())
8270 return nullptr;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008271
Alexey Bataev03b340a2014-10-21 03:16:40 +00008272 return OMPPrivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars,
8273 PrivateCopies);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00008274}
8275
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008276namespace {
8277class DiagsUninitializedSeveretyRAII {
8278private:
8279 DiagnosticsEngine &Diags;
8280 SourceLocation SavedLoc;
8281 bool IsIgnored;
8282
8283public:
8284 DiagsUninitializedSeveretyRAII(DiagnosticsEngine &Diags, SourceLocation Loc,
8285 bool IsIgnored)
8286 : Diags(Diags), SavedLoc(Loc), IsIgnored(IsIgnored) {
8287 if (!IsIgnored) {
8288 Diags.setSeverity(/*Diag*/ diag::warn_uninit_self_reference_in_init,
8289 /*Map*/ diag::Severity::Ignored, Loc);
8290 }
8291 }
8292 ~DiagsUninitializedSeveretyRAII() {
8293 if (!IsIgnored)
8294 Diags.popMappings(SavedLoc);
8295 }
8296};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00008297}
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008298
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008299OMPClause *Sema::ActOnOpenMPFirstprivateClause(ArrayRef<Expr *> VarList,
8300 SourceLocation StartLoc,
8301 SourceLocation LParenLoc,
8302 SourceLocation EndLoc) {
8303 SmallVector<Expr *, 8> Vars;
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008304 SmallVector<Expr *, 8> PrivateCopies;
8305 SmallVector<Expr *, 8> Inits;
Alexey Bataev417089f2016-02-17 13:19:37 +00008306 SmallVector<Decl *, 4> ExprCaptures;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00008307 bool IsImplicitClause =
8308 StartLoc.isInvalid() && LParenLoc.isInvalid() && EndLoc.isInvalid();
8309 auto ImplicitClauseLoc = DSAStack->getConstructLoc();
8310
Alexey Bataeved09d242014-05-28 05:53:51 +00008311 for (auto &RefExpr : VarList) {
8312 assert(RefExpr && "NULL expr in OpenMP firstprivate clause.");
Alexey Bataev60da77e2016-02-29 05:54:20 +00008313 SourceLocation ELoc;
8314 SourceRange ERange;
8315 Expr *SimpleRefExpr = RefExpr;
8316 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008317 if (Res.second) {
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008318 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00008319 Vars.push_back(RefExpr);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008320 PrivateCopies.push_back(nullptr);
8321 Inits.push_back(nullptr);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008322 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00008323 ValueDecl *D = Res.first;
8324 if (!D)
8325 continue;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008326
Alexey Bataev60da77e2016-02-29 05:54:20 +00008327 ELoc = IsImplicitClause ? ImplicitClauseLoc : ELoc;
Alexey Bataevd985eda2016-02-10 11:29:16 +00008328 QualType Type = D->getType();
8329 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008330
8331 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
8332 // A variable that appears in a private clause must not have an incomplete
8333 // type or a reference type.
8334 if (RequireCompleteType(ELoc, Type,
Alexey Bataevd985eda2016-02-10 11:29:16 +00008335 diag::err_omp_firstprivate_incomplete_type))
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008336 continue;
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008337 Type = Type.getNonReferenceType();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008338
8339 // OpenMP [2.9.3.4, Restrictions, C/C++, p.1]
8340 // A variable of class type (or array thereof) that appears in a private
Alexey Bataev23b69422014-06-18 07:08:49 +00008341 // clause requires an accessible, unambiguous copy constructor for the
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008342 // class type.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008343 auto ElemType = Context.getBaseElementType(Type).getNonReferenceType();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008344
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00008345 // If an implicit firstprivate variable found it was checked already.
Alexey Bataev005248a2016-02-25 05:25:57 +00008346 DSAStackTy::DSAVarData TopDVar;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00008347 if (!IsImplicitClause) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00008348 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexey Bataev005248a2016-02-25 05:25:57 +00008349 TopDVar = DVar;
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008350 bool IsConstant = ElemType.isConstant(Context);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008351 // OpenMP [2.4.13, Data-sharing Attribute Clauses]
8352 // A list item that specifies a given variable may not appear in more
8353 // than one clause on the same directive, except that a variable may be
8354 // specified in both firstprivate and lastprivate clauses.
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008355 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_firstprivate &&
Alexey Bataevf29276e2014-06-18 04:14:57 +00008356 DVar.CKind != OMPC_lastprivate && DVar.RefExpr) {
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008357 Diag(ELoc, diag::err_omp_wrong_dsa)
Alexey Bataeved09d242014-05-28 05:53:51 +00008358 << getOpenMPClauseName(DVar.CKind)
8359 << getOpenMPClauseName(OMPC_firstprivate);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008360 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008361 continue;
8362 }
8363
8364 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
8365 // in a Construct]
8366 // Variables with the predetermined data-sharing attributes may not be
8367 // listed in data-sharing attributes clauses, except for the cases
8368 // listed below. For these exceptions only, listing a predetermined
8369 // variable in a data-sharing attribute clause is allowed and overrides
8370 // the variable's predetermined data-sharing attributes.
8371 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
8372 // in a Construct, C/C++, p.2]
8373 // Variables with const-qualified type having no mutable member may be
8374 // listed in a firstprivate clause, even if they are static data members.
Alexey Bataevd985eda2016-02-10 11:29:16 +00008375 if (!(IsConstant || (VD && VD->isStaticDataMember())) && !DVar.RefExpr &&
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008376 DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_shared) {
8377 Diag(ELoc, diag::err_omp_wrong_dsa)
Alexey Bataeved09d242014-05-28 05:53:51 +00008378 << getOpenMPClauseName(DVar.CKind)
8379 << getOpenMPClauseName(OMPC_firstprivate);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008380 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008381 continue;
8382 }
8383
Alexey Bataevf29276e2014-06-18 04:14:57 +00008384 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008385 // OpenMP [2.9.3.4, Restrictions, p.2]
8386 // A list item that is private within a parallel region must not appear
8387 // in a firstprivate clause on a worksharing construct if any of the
8388 // worksharing regions arising from the worksharing construct ever bind
8389 // to any of the parallel regions arising from the parallel construct.
Alexey Bataev549210e2014-06-24 04:39:47 +00008390 if (isOpenMPWorksharingDirective(CurrDir) &&
8391 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00008392 DVar = DSAStack->getImplicitDSA(D, true);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00008393 if (DVar.CKind != OMPC_shared &&
8394 (isOpenMPParallelDirective(DVar.DKind) ||
8395 DVar.DKind == OMPD_unknown)) {
Alexey Bataevf29276e2014-06-18 04:14:57 +00008396 Diag(ELoc, diag::err_omp_required_access)
8397 << getOpenMPClauseName(OMPC_firstprivate)
8398 << getOpenMPClauseName(OMPC_shared);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008399 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevf29276e2014-06-18 04:14:57 +00008400 continue;
8401 }
8402 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008403 // OpenMP [2.9.3.4, Restrictions, p.3]
8404 // A list item that appears in a reduction clause of a parallel construct
8405 // must not appear in a firstprivate clause on a worksharing or task
8406 // construct if any of the worksharing or task regions arising from the
8407 // worksharing or task construct ever bind to any of the parallel regions
8408 // arising from the parallel construct.
8409 // OpenMP [2.9.3.4, Restrictions, p.4]
8410 // A list item that appears in a reduction clause in worksharing
8411 // construct must not appear in a firstprivate clause in a task construct
8412 // encountered during execution of any of the worksharing regions arising
8413 // from the worksharing construct.
Alexey Bataev35aaee62016-04-13 13:36:48 +00008414 if (isOpenMPTaskingDirective(CurrDir)) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +00008415 DVar = DSAStack->hasInnermostDSA(
8416 D, [](OpenMPClauseKind C) -> bool { return C == OMPC_reduction; },
8417 [](OpenMPDirectiveKind K) -> bool {
8418 return isOpenMPParallelDirective(K) ||
8419 isOpenMPWorksharingDirective(K);
8420 },
8421 false);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00008422 if (DVar.CKind == OMPC_reduction &&
8423 (isOpenMPParallelDirective(DVar.DKind) ||
8424 isOpenMPWorksharingDirective(DVar.DKind))) {
8425 Diag(ELoc, diag::err_omp_parallel_reduction_in_task_firstprivate)
8426 << getOpenMPDirectiveName(DVar.DKind);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008427 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00008428 continue;
8429 }
8430 }
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00008431
8432 // OpenMP 4.5 [2.15.3.4, Restrictions, p.3]
8433 // A list item that is private within a teams region must not appear in a
8434 // firstprivate clause on a distribute construct if any of the distribute
8435 // regions arising from the distribute construct ever bind to any of the
8436 // teams regions arising from the teams construct.
8437 // OpenMP 4.5 [2.15.3.4, Restrictions, p.3]
8438 // A list item that appears in a reduction clause of a teams construct
8439 // must not appear in a firstprivate clause on a distribute construct if
8440 // any of the distribute regions arising from the distribute construct
8441 // ever bind to any of the teams regions arising from the teams construct.
8442 // OpenMP 4.5 [2.10.8, Distribute Construct, p.3]
8443 // A list item may appear in a firstprivate or lastprivate clause but not
8444 // both.
8445 if (CurrDir == OMPD_distribute) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +00008446 DVar = DSAStack->hasInnermostDSA(
8447 D, [](OpenMPClauseKind C) -> bool { return C == OMPC_private; },
8448 [](OpenMPDirectiveKind K) -> bool {
8449 return isOpenMPTeamsDirective(K);
8450 },
8451 false);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00008452 if (DVar.CKind == OMPC_private && isOpenMPTeamsDirective(DVar.DKind)) {
8453 Diag(ELoc, diag::err_omp_firstprivate_distribute_private_teams);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008454 ReportOriginalDSA(*this, DSAStack, D, DVar);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00008455 continue;
8456 }
Alexey Bataev7ace49d2016-05-17 08:55:33 +00008457 DVar = DSAStack->hasInnermostDSA(
8458 D, [](OpenMPClauseKind C) -> bool { return C == OMPC_reduction; },
8459 [](OpenMPDirectiveKind K) -> bool {
8460 return isOpenMPTeamsDirective(K);
8461 },
8462 false);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00008463 if (DVar.CKind == OMPC_reduction &&
8464 isOpenMPTeamsDirective(DVar.DKind)) {
8465 Diag(ELoc, diag::err_omp_firstprivate_distribute_in_teams_reduction);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008466 ReportOriginalDSA(*this, DSAStack, D, DVar);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00008467 continue;
8468 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00008469 DVar = DSAStack->getTopDSA(D, false);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00008470 if (DVar.CKind == OMPC_lastprivate) {
8471 Diag(ELoc, diag::err_omp_firstprivate_and_lastprivate_in_distribute);
Alexey Bataevd985eda2016-02-10 11:29:16 +00008472 ReportOriginalDSA(*this, DSAStack, D, DVar);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00008473 continue;
8474 }
8475 }
Carlo Bertollib74bfc82016-03-18 21:43:32 +00008476 // OpenMP 4.5 [2.15.5.1, Restrictions, p.3]
8477 // A list item cannot appear in both a map clause and a data-sharing
8478 // attribute clause on the same construct
8479 if (CurrDir == OMPD_target) {
Samuel Antao90927002016-04-26 14:54:23 +00008480 if (DSAStack->checkMappableExprComponentListsForDecl(
8481 VD, /* CurrentRegionOnly = */ true,
8482 [&](OMPClauseMappableExprCommon::MappableExprComponentListRef)
8483 -> bool { return true; })) {
Carlo Bertollib74bfc82016-03-18 21:43:32 +00008484 Diag(ELoc, diag::err_omp_variable_in_map_and_dsa)
8485 << getOpenMPClauseName(OMPC_firstprivate)
8486 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
8487 ReportOriginalDSA(*this, DSAStack, D, DVar);
8488 continue;
8489 }
8490 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008491 }
8492
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008493 // Variably modified types are not supported for tasks.
Alexey Bataev5129d3a2015-05-21 09:47:46 +00008494 if (!Type->isAnyPointerType() && Type->isVariablyModifiedType() &&
Alexey Bataev35aaee62016-04-13 13:36:48 +00008495 isOpenMPTaskingDirective(DSAStack->getCurrentDirective())) {
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008496 Diag(ELoc, diag::err_omp_variably_modified_type_not_supported)
8497 << getOpenMPClauseName(OMPC_firstprivate) << Type
8498 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
8499 bool IsDecl =
Alexey Bataevd985eda2016-02-10 11:29:16 +00008500 !VD ||
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008501 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataevd985eda2016-02-10 11:29:16 +00008502 Diag(D->getLocation(),
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008503 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataevd985eda2016-02-10 11:29:16 +00008504 << D;
Alexey Bataevccb59ec2015-05-19 08:44:56 +00008505 continue;
8506 }
8507
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008508 Type = Type.getUnqualifiedType();
Alexey Bataevd985eda2016-02-10 11:29:16 +00008509 auto VDPrivate = buildVarDecl(*this, ELoc, Type, D->getName(),
8510 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008511 // Generate helper private variable and initialize it with the value of the
8512 // original variable. The address of the original variable is replaced by
8513 // the address of the new private variable in the CodeGen. This new variable
8514 // is not added to IdResolver, so the code in the OpenMP region uses
8515 // original variable for proper diagnostics and variable capturing.
8516 Expr *VDInitRefExpr = nullptr;
8517 // For arrays generate initializer for single element and replace it by the
8518 // original array element in CodeGen.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008519 if (Type->isArrayType()) {
8520 auto VDInit =
Alexey Bataevd985eda2016-02-10 11:29:16 +00008521 buildVarDecl(*this, RefExpr->getExprLoc(), ElemType, D->getName());
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008522 VDInitRefExpr = buildDeclRefExpr(*this, VDInit, ElemType, ELoc);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008523 auto Init = DefaultLvalueConversion(VDInitRefExpr).get();
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008524 ElemType = ElemType.getUnqualifiedType();
Alexey Bataevd985eda2016-02-10 11:29:16 +00008525 auto *VDInitTemp = buildVarDecl(*this, RefExpr->getExprLoc(), ElemType,
Alexey Bataevf120c0d2015-05-19 07:46:42 +00008526 ".firstprivate.temp");
Alexey Bataev69c62a92015-04-15 04:52:20 +00008527 InitializedEntity Entity =
8528 InitializedEntity::InitializeVariable(VDInitTemp);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008529 InitializationKind Kind = InitializationKind::CreateCopy(ELoc, ELoc);
8530
8531 InitializationSequence InitSeq(*this, Entity, Kind, Init);
8532 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Init);
8533 if (Result.isInvalid())
8534 VDPrivate->setInvalidDecl();
8535 else
8536 VDPrivate->setInit(Result.getAs<Expr>());
Alexey Bataevf24e7b12015-10-08 09:10:53 +00008537 // Remove temp variable declaration.
8538 Context.Deallocate(VDInitTemp);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008539 } else {
Alexey Bataevd985eda2016-02-10 11:29:16 +00008540 auto *VDInit = buildVarDecl(*this, RefExpr->getExprLoc(), Type,
8541 ".firstprivate.temp");
8542 VDInitRefExpr = buildDeclRefExpr(*this, VDInit, RefExpr->getType(),
8543 RefExpr->getExprLoc());
Alexey Bataev69c62a92015-04-15 04:52:20 +00008544 AddInitializerToDecl(VDPrivate,
8545 DefaultLvalueConversion(VDInitRefExpr).get(),
8546 /*DirectInit=*/false, /*TypeMayContainAuto=*/false);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008547 }
8548 if (VDPrivate->isInvalidDecl()) {
8549 if (IsImplicitClause) {
Alexey Bataevd985eda2016-02-10 11:29:16 +00008550 Diag(RefExpr->getExprLoc(),
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008551 diag::note_omp_task_predetermined_firstprivate_here);
8552 }
8553 continue;
8554 }
8555 CurContext->addDecl(VDPrivate);
Alexey Bataev39f915b82015-05-08 10:41:21 +00008556 auto VDPrivateRefExpr = buildDeclRefExpr(
Alexey Bataevd985eda2016-02-10 11:29:16 +00008557 *this, VDPrivate, RefExpr->getType().getUnqualifiedType(),
8558 RefExpr->getExprLoc());
8559 DeclRefExpr *Ref = nullptr;
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00008560 if (!VD && !CurContext->isDependentContext()) {
Alexey Bataev005248a2016-02-25 05:25:57 +00008561 if (TopDVar.CKind == OMPC_lastprivate)
8562 Ref = TopDVar.PrivateCopy;
8563 else {
Alexey Bataev61205072016-03-02 04:57:40 +00008564 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/true);
Alexey Bataev005248a2016-02-25 05:25:57 +00008565 if (!IsOpenMPCapturedDecl(D))
8566 ExprCaptures.push_back(Ref->getDecl());
8567 }
Alexey Bataev417089f2016-02-17 13:19:37 +00008568 }
Alexey Bataevd985eda2016-02-10 11:29:16 +00008569 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_firstprivate, Ref);
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00008570 Vars.push_back((VD || CurContext->isDependentContext())
8571 ? RefExpr->IgnoreParens()
8572 : Ref);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00008573 PrivateCopies.push_back(VDPrivateRefExpr);
8574 Inits.push_back(VDInitRefExpr);
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008575 }
8576
Alexey Bataeved09d242014-05-28 05:53:51 +00008577 if (Vars.empty())
8578 return nullptr;
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008579
8580 return OMPFirstprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
Alexey Bataev5a3af132016-03-29 08:58:54 +00008581 Vars, PrivateCopies, Inits,
8582 buildPreInits(Context, ExprCaptures));
Alexey Bataevd5af8e42013-10-01 05:32:34 +00008583}
8584
Alexander Musman1bb328c2014-06-04 13:06:39 +00008585OMPClause *Sema::ActOnOpenMPLastprivateClause(ArrayRef<Expr *> VarList,
8586 SourceLocation StartLoc,
8587 SourceLocation LParenLoc,
8588 SourceLocation EndLoc) {
8589 SmallVector<Expr *, 8> Vars;
Alexey Bataev38e89532015-04-16 04:54:05 +00008590 SmallVector<Expr *, 8> SrcExprs;
8591 SmallVector<Expr *, 8> DstExprs;
8592 SmallVector<Expr *, 8> AssignmentOps;
Alexey Bataev005248a2016-02-25 05:25:57 +00008593 SmallVector<Decl *, 4> ExprCaptures;
8594 SmallVector<Expr *, 4> ExprPostUpdates;
Alexander Musman1bb328c2014-06-04 13:06:39 +00008595 for (auto &RefExpr : VarList) {
8596 assert(RefExpr && "NULL expr in OpenMP lastprivate clause.");
Alexey Bataev60da77e2016-02-29 05:54:20 +00008597 SourceLocation ELoc;
8598 SourceRange ERange;
8599 Expr *SimpleRefExpr = RefExpr;
8600 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
Alexey Bataev74caaf22016-02-20 04:09:36 +00008601 if (Res.second) {
Alexander Musman1bb328c2014-06-04 13:06:39 +00008602 // It will be analyzed later.
8603 Vars.push_back(RefExpr);
Alexey Bataev38e89532015-04-16 04:54:05 +00008604 SrcExprs.push_back(nullptr);
8605 DstExprs.push_back(nullptr);
8606 AssignmentOps.push_back(nullptr);
Alexander Musman1bb328c2014-06-04 13:06:39 +00008607 }
Alexey Bataev74caaf22016-02-20 04:09:36 +00008608 ValueDecl *D = Res.first;
8609 if (!D)
8610 continue;
Alexander Musman1bb328c2014-06-04 13:06:39 +00008611
Alexey Bataev74caaf22016-02-20 04:09:36 +00008612 QualType Type = D->getType();
8613 auto *VD = dyn_cast<VarDecl>(D);
Alexander Musman1bb328c2014-06-04 13:06:39 +00008614
8615 // OpenMP [2.14.3.5, Restrictions, C/C++, p.2]
8616 // A variable that appears in a lastprivate clause must not have an
8617 // incomplete type or a reference type.
8618 if (RequireCompleteType(ELoc, Type,
Alexey Bataev74caaf22016-02-20 04:09:36 +00008619 diag::err_omp_lastprivate_incomplete_type))
Alexander Musman1bb328c2014-06-04 13:06:39 +00008620 continue;
Alexey Bataevbd9fec12015-08-18 06:47:21 +00008621 Type = Type.getNonReferenceType();
Alexander Musman1bb328c2014-06-04 13:06:39 +00008622
8623 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced
8624 // in a Construct]
8625 // Variables with the predetermined data-sharing attributes may not be
8626 // listed in data-sharing attributes clauses, except for the cases
8627 // listed below.
Alexey Bataev74caaf22016-02-20 04:09:36 +00008628 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexander Musman1bb328c2014-06-04 13:06:39 +00008629 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_lastprivate &&
8630 DVar.CKind != OMPC_firstprivate &&
8631 (DVar.CKind != OMPC_private || DVar.RefExpr != nullptr)) {
8632 Diag(ELoc, diag::err_omp_wrong_dsa)
8633 << getOpenMPClauseName(DVar.CKind)
8634 << getOpenMPClauseName(OMPC_lastprivate);
Alexey Bataev74caaf22016-02-20 04:09:36 +00008635 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexander Musman1bb328c2014-06-04 13:06:39 +00008636 continue;
8637 }
8638
Alexey Bataevf29276e2014-06-18 04:14:57 +00008639 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
8640 // OpenMP [2.14.3.5, Restrictions, p.2]
8641 // A list item that is private within a parallel region, or that appears in
8642 // the reduction clause of a parallel construct, must not appear in a
8643 // lastprivate clause on a worksharing construct if any of the corresponding
8644 // worksharing regions ever binds to any of the corresponding parallel
8645 // regions.
Alexey Bataev39f915b82015-05-08 10:41:21 +00008646 DSAStackTy::DSAVarData TopDVar = DVar;
Alexey Bataev549210e2014-06-24 04:39:47 +00008647 if (isOpenMPWorksharingDirective(CurrDir) &&
8648 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataev74caaf22016-02-20 04:09:36 +00008649 DVar = DSAStack->getImplicitDSA(D, true);
Alexey Bataevf29276e2014-06-18 04:14:57 +00008650 if (DVar.CKind != OMPC_shared) {
8651 Diag(ELoc, diag::err_omp_required_access)
8652 << getOpenMPClauseName(OMPC_lastprivate)
8653 << getOpenMPClauseName(OMPC_shared);
Alexey Bataev74caaf22016-02-20 04:09:36 +00008654 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevf29276e2014-06-18 04:14:57 +00008655 continue;
8656 }
8657 }
Alexey Bataev74caaf22016-02-20 04:09:36 +00008658
8659 // OpenMP 4.5 [2.10.8, Distribute Construct, p.3]
8660 // A list item may appear in a firstprivate or lastprivate clause but not
8661 // both.
8662 if (CurrDir == OMPD_distribute) {
8663 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
8664 if (DVar.CKind == OMPC_firstprivate) {
8665 Diag(ELoc, diag::err_omp_firstprivate_and_lastprivate_in_distribute);
8666 ReportOriginalDSA(*this, DSAStack, D, DVar);
8667 continue;
8668 }
8669 }
8670
Alexander Musman1bb328c2014-06-04 13:06:39 +00008671 // OpenMP [2.14.3.5, Restrictions, C++, p.1,2]
Alexey Bataevf29276e2014-06-18 04:14:57 +00008672 // A variable of class type (or array thereof) that appears in a
8673 // lastprivate clause requires an accessible, unambiguous default
8674 // constructor for the class type, unless the list item is also specified
8675 // in a firstprivate clause.
Alexander Musman1bb328c2014-06-04 13:06:39 +00008676 // A variable of class type (or array thereof) that appears in a
8677 // lastprivate clause requires an accessible, unambiguous copy assignment
8678 // operator for the class type.
Alexey Bataev38e89532015-04-16 04:54:05 +00008679 Type = Context.getBaseElementType(Type).getNonReferenceType();
Alexey Bataev60da77e2016-02-29 05:54:20 +00008680 auto *SrcVD = buildVarDecl(*this, ERange.getBegin(),
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00008681 Type.getUnqualifiedType(), ".lastprivate.src",
Alexey Bataev74caaf22016-02-20 04:09:36 +00008682 D->hasAttrs() ? &D->getAttrs() : nullptr);
8683 auto *PseudoSrcExpr =
8684 buildDeclRefExpr(*this, SrcVD, Type.getUnqualifiedType(), ELoc);
Alexey Bataev38e89532015-04-16 04:54:05 +00008685 auto *DstVD =
Alexey Bataev60da77e2016-02-29 05:54:20 +00008686 buildVarDecl(*this, ERange.getBegin(), Type, ".lastprivate.dst",
Alexey Bataev74caaf22016-02-20 04:09:36 +00008687 D->hasAttrs() ? &D->getAttrs() : nullptr);
8688 auto *PseudoDstExpr = buildDeclRefExpr(*this, DstVD, Type, ELoc);
Alexey Bataev38e89532015-04-16 04:54:05 +00008689 // For arrays generate assignment operation for single element and replace
8690 // it by the original array element in CodeGen.
Alexey Bataev74caaf22016-02-20 04:09:36 +00008691 auto AssignmentOp = BuildBinOp(/*S=*/nullptr, ELoc, BO_Assign,
Alexey Bataev38e89532015-04-16 04:54:05 +00008692 PseudoDstExpr, PseudoSrcExpr);
8693 if (AssignmentOp.isInvalid())
8694 continue;
Alexey Bataev74caaf22016-02-20 04:09:36 +00008695 AssignmentOp = ActOnFinishFullExpr(AssignmentOp.get(), ELoc,
Alexey Bataev38e89532015-04-16 04:54:05 +00008696 /*DiscardedValue=*/true);
8697 if (AssignmentOp.isInvalid())
8698 continue;
Alexander Musman1bb328c2014-06-04 13:06:39 +00008699
Alexey Bataev74caaf22016-02-20 04:09:36 +00008700 DeclRefExpr *Ref = nullptr;
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00008701 if (!VD && !CurContext->isDependentContext()) {
Alexey Bataev005248a2016-02-25 05:25:57 +00008702 if (TopDVar.CKind == OMPC_firstprivate)
8703 Ref = TopDVar.PrivateCopy;
8704 else {
Alexey Bataev61205072016-03-02 04:57:40 +00008705 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false);
Alexey Bataev005248a2016-02-25 05:25:57 +00008706 if (!IsOpenMPCapturedDecl(D))
8707 ExprCaptures.push_back(Ref->getDecl());
8708 }
8709 if (TopDVar.CKind == OMPC_firstprivate ||
8710 (!IsOpenMPCapturedDecl(D) &&
Alexey Bataev2bbf7212016-03-03 03:52:24 +00008711 Ref->getDecl()->hasAttr<OMPCaptureNoInitAttr>())) {
Alexey Bataev005248a2016-02-25 05:25:57 +00008712 ExprResult RefRes = DefaultLvalueConversion(Ref);
8713 if (!RefRes.isUsable())
8714 continue;
8715 ExprResult PostUpdateRes =
Alexey Bataev60da77e2016-02-29 05:54:20 +00008716 BuildBinOp(DSAStack->getCurScope(), ELoc, BO_Assign, SimpleRefExpr,
8717 RefRes.get());
Alexey Bataev005248a2016-02-25 05:25:57 +00008718 if (!PostUpdateRes.isUsable())
8719 continue;
Alexey Bataev78849fb2016-03-09 09:49:00 +00008720 ExprPostUpdates.push_back(
8721 IgnoredValueConversions(PostUpdateRes.get()).get());
Alexey Bataev005248a2016-02-25 05:25:57 +00008722 }
8723 }
Alexey Bataev7ace49d2016-05-17 08:55:33 +00008724 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_lastprivate, Ref);
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00008725 Vars.push_back((VD || CurContext->isDependentContext())
8726 ? RefExpr->IgnoreParens()
8727 : Ref);
Alexey Bataev38e89532015-04-16 04:54:05 +00008728 SrcExprs.push_back(PseudoSrcExpr);
8729 DstExprs.push_back(PseudoDstExpr);
8730 AssignmentOps.push_back(AssignmentOp.get());
Alexander Musman1bb328c2014-06-04 13:06:39 +00008731 }
8732
8733 if (Vars.empty())
8734 return nullptr;
8735
8736 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
Alexey Bataev005248a2016-02-25 05:25:57 +00008737 Vars, SrcExprs, DstExprs, AssignmentOps,
Alexey Bataev5a3af132016-03-29 08:58:54 +00008738 buildPreInits(Context, ExprCaptures),
8739 buildPostUpdate(*this, ExprPostUpdates));
Alexander Musman1bb328c2014-06-04 13:06:39 +00008740}
8741
Alexey Bataev758e55e2013-09-06 18:03:48 +00008742OMPClause *Sema::ActOnOpenMPSharedClause(ArrayRef<Expr *> VarList,
8743 SourceLocation StartLoc,
8744 SourceLocation LParenLoc,
8745 SourceLocation EndLoc) {
8746 SmallVector<Expr *, 8> Vars;
Alexey Bataeved09d242014-05-28 05:53:51 +00008747 for (auto &RefExpr : VarList) {
Alexey Bataevb7a34b62016-02-25 03:59:29 +00008748 assert(RefExpr && "NULL expr in OpenMP lastprivate clause.");
Alexey Bataev60da77e2016-02-29 05:54:20 +00008749 SourceLocation ELoc;
8750 SourceRange ERange;
8751 Expr *SimpleRefExpr = RefExpr;
8752 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
Alexey Bataevb7a34b62016-02-25 03:59:29 +00008753 if (Res.second) {
Alexey Bataev758e55e2013-09-06 18:03:48 +00008754 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00008755 Vars.push_back(RefExpr);
Alexey Bataev758e55e2013-09-06 18:03:48 +00008756 }
Alexey Bataevb7a34b62016-02-25 03:59:29 +00008757 ValueDecl *D = Res.first;
8758 if (!D)
8759 continue;
Alexey Bataev758e55e2013-09-06 18:03:48 +00008760
Alexey Bataevb7a34b62016-02-25 03:59:29 +00008761 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataev758e55e2013-09-06 18:03:48 +00008762 // OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
8763 // in a Construct]
8764 // Variables with the predetermined data-sharing attributes may not be
8765 // listed in data-sharing attributes clauses, except for the cases
8766 // listed below. For these exceptions only, listing a predetermined
8767 // variable in a data-sharing attribute clause is allowed and overrides
8768 // the variable's predetermined data-sharing attributes.
Alexey Bataevb7a34b62016-02-25 03:59:29 +00008769 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexey Bataeved09d242014-05-28 05:53:51 +00008770 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_shared &&
8771 DVar.RefExpr) {
8772 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
8773 << getOpenMPClauseName(OMPC_shared);
Alexey Bataevb7a34b62016-02-25 03:59:29 +00008774 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataev758e55e2013-09-06 18:03:48 +00008775 continue;
8776 }
8777
Alexey Bataevb7a34b62016-02-25 03:59:29 +00008778 DeclRefExpr *Ref = nullptr;
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00008779 if (!VD && IsOpenMPCapturedDecl(D) && !CurContext->isDependentContext())
Alexey Bataev61205072016-03-02 04:57:40 +00008780 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/true);
Alexey Bataevb7a34b62016-02-25 03:59:29 +00008781 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_shared, Ref);
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00008782 Vars.push_back((VD || !Ref || CurContext->isDependentContext())
8783 ? RefExpr->IgnoreParens()
8784 : Ref);
Alexey Bataev758e55e2013-09-06 18:03:48 +00008785 }
8786
Alexey Bataeved09d242014-05-28 05:53:51 +00008787 if (Vars.empty())
8788 return nullptr;
Alexey Bataev758e55e2013-09-06 18:03:48 +00008789
8790 return OMPSharedClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
8791}
8792
Alexey Bataevc5e02582014-06-16 07:08:35 +00008793namespace {
8794class DSARefChecker : public StmtVisitor<DSARefChecker, bool> {
8795 DSAStackTy *Stack;
8796
8797public:
8798 bool VisitDeclRefExpr(DeclRefExpr *E) {
8799 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) {
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00008800 DSAStackTy::DSAVarData DVar = Stack->getTopDSA(VD, false);
Alexey Bataevc5e02582014-06-16 07:08:35 +00008801 if (DVar.CKind == OMPC_shared && !DVar.RefExpr)
8802 return false;
8803 if (DVar.CKind != OMPC_unknown)
8804 return true;
Alexey Bataev7ace49d2016-05-17 08:55:33 +00008805 DSAStackTy::DSAVarData DVarPrivate = Stack->hasDSA(
8806 VD, isOpenMPPrivate, [](OpenMPDirectiveKind) -> bool { return true; },
8807 false);
Alexey Bataevf29276e2014-06-18 04:14:57 +00008808 if (DVarPrivate.CKind != OMPC_unknown)
Alexey Bataevc5e02582014-06-16 07:08:35 +00008809 return true;
8810 return false;
8811 }
8812 return false;
8813 }
8814 bool VisitStmt(Stmt *S) {
8815 for (auto Child : S->children()) {
8816 if (Child && Visit(Child))
8817 return true;
8818 }
8819 return false;
8820 }
Alexey Bataev23b69422014-06-18 07:08:49 +00008821 explicit DSARefChecker(DSAStackTy *S) : Stack(S) {}
Alexey Bataevc5e02582014-06-16 07:08:35 +00008822};
Alexey Bataev23b69422014-06-18 07:08:49 +00008823} // namespace
Alexey Bataevc5e02582014-06-16 07:08:35 +00008824
Alexey Bataev60da77e2016-02-29 05:54:20 +00008825namespace {
8826// Transform MemberExpression for specified FieldDecl of current class to
8827// DeclRefExpr to specified OMPCapturedExprDecl.
8828class TransformExprToCaptures : public TreeTransform<TransformExprToCaptures> {
8829 typedef TreeTransform<TransformExprToCaptures> BaseTransform;
8830 ValueDecl *Field;
8831 DeclRefExpr *CapturedExpr;
8832
8833public:
8834 TransformExprToCaptures(Sema &SemaRef, ValueDecl *FieldDecl)
8835 : BaseTransform(SemaRef), Field(FieldDecl), CapturedExpr(nullptr) {}
8836
8837 ExprResult TransformMemberExpr(MemberExpr *E) {
8838 if (isa<CXXThisExpr>(E->getBase()->IgnoreParenImpCasts()) &&
8839 E->getMemberDecl() == Field) {
Alexey Bataev61205072016-03-02 04:57:40 +00008840 CapturedExpr = buildCapture(SemaRef, Field, E, /*WithInit=*/false);
Alexey Bataev60da77e2016-02-29 05:54:20 +00008841 return CapturedExpr;
8842 }
8843 return BaseTransform::TransformMemberExpr(E);
8844 }
8845 DeclRefExpr *getCapturedExpr() { return CapturedExpr; }
8846};
8847} // namespace
8848
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008849template <typename T>
8850static T filterLookupForUDR(SmallVectorImpl<UnresolvedSet<8>> &Lookups,
8851 const llvm::function_ref<T(ValueDecl *)> &Gen) {
8852 for (auto &Set : Lookups) {
8853 for (auto *D : Set) {
8854 if (auto Res = Gen(cast<ValueDecl>(D)))
8855 return Res;
8856 }
8857 }
8858 return T();
8859}
8860
8861static ExprResult
8862buildDeclareReductionRef(Sema &SemaRef, SourceLocation Loc, SourceRange Range,
8863 Scope *S, CXXScopeSpec &ReductionIdScopeSpec,
8864 const DeclarationNameInfo &ReductionId, QualType Ty,
8865 CXXCastPath &BasePath, Expr *UnresolvedReduction) {
8866 if (ReductionIdScopeSpec.isInvalid())
8867 return ExprError();
8868 SmallVector<UnresolvedSet<8>, 4> Lookups;
8869 if (S) {
8870 LookupResult Lookup(SemaRef, ReductionId, Sema::LookupOMPReductionName);
8871 Lookup.suppressDiagnostics();
8872 while (S && SemaRef.LookupParsedName(Lookup, S, &ReductionIdScopeSpec)) {
8873 auto *D = Lookup.getRepresentativeDecl();
8874 do {
8875 S = S->getParent();
8876 } while (S && !S->isDeclScope(D));
8877 if (S)
8878 S = S->getParent();
8879 Lookups.push_back(UnresolvedSet<8>());
8880 Lookups.back().append(Lookup.begin(), Lookup.end());
8881 Lookup.clear();
8882 }
8883 } else if (auto *ULE =
8884 cast_or_null<UnresolvedLookupExpr>(UnresolvedReduction)) {
8885 Lookups.push_back(UnresolvedSet<8>());
8886 Decl *PrevD = nullptr;
8887 for(auto *D : ULE->decls()) {
8888 if (D == PrevD)
8889 Lookups.push_back(UnresolvedSet<8>());
8890 else if (auto *DRD = cast<OMPDeclareReductionDecl>(D))
8891 Lookups.back().addDecl(DRD);
8892 PrevD = D;
8893 }
8894 }
8895 if (Ty->isDependentType() || Ty->isInstantiationDependentType() ||
8896 Ty->containsUnexpandedParameterPack() ||
8897 filterLookupForUDR<bool>(Lookups, [](ValueDecl *D) -> bool {
8898 return !D->isInvalidDecl() &&
8899 (D->getType()->isDependentType() ||
8900 D->getType()->isInstantiationDependentType() ||
8901 D->getType()->containsUnexpandedParameterPack());
8902 })) {
8903 UnresolvedSet<8> ResSet;
8904 for (auto &Set : Lookups) {
8905 ResSet.append(Set.begin(), Set.end());
8906 // The last item marks the end of all declarations at the specified scope.
8907 ResSet.addDecl(Set[Set.size() - 1]);
8908 }
8909 return UnresolvedLookupExpr::Create(
8910 SemaRef.Context, /*NamingClass=*/nullptr,
8911 ReductionIdScopeSpec.getWithLocInContext(SemaRef.Context), ReductionId,
8912 /*ADL=*/true, /*Overloaded=*/true, ResSet.begin(), ResSet.end());
8913 }
8914 if (auto *VD = filterLookupForUDR<ValueDecl *>(
8915 Lookups, [&SemaRef, Ty](ValueDecl *D) -> ValueDecl * {
8916 if (!D->isInvalidDecl() &&
8917 SemaRef.Context.hasSameType(D->getType(), Ty))
8918 return D;
8919 return nullptr;
8920 }))
8921 return SemaRef.BuildDeclRefExpr(VD, Ty, VK_LValue, Loc);
8922 if (auto *VD = filterLookupForUDR<ValueDecl *>(
8923 Lookups, [&SemaRef, Ty, Loc](ValueDecl *D) -> ValueDecl * {
8924 if (!D->isInvalidDecl() &&
8925 SemaRef.IsDerivedFrom(Loc, Ty, D->getType()) &&
8926 !Ty.isMoreQualifiedThan(D->getType()))
8927 return D;
8928 return nullptr;
8929 })) {
8930 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
8931 /*DetectVirtual=*/false);
8932 if (SemaRef.IsDerivedFrom(Loc, Ty, VD->getType(), Paths)) {
8933 if (!Paths.isAmbiguous(SemaRef.Context.getCanonicalType(
8934 VD->getType().getUnqualifiedType()))) {
8935 if (SemaRef.CheckBaseClassAccess(Loc, VD->getType(), Ty, Paths.front(),
8936 /*DiagID=*/0) !=
8937 Sema::AR_inaccessible) {
8938 SemaRef.BuildBasePathArray(Paths, BasePath);
8939 return SemaRef.BuildDeclRefExpr(VD, Ty, VK_LValue, Loc);
8940 }
8941 }
8942 }
8943 }
8944 if (ReductionIdScopeSpec.isSet()) {
8945 SemaRef.Diag(Loc, diag::err_omp_not_resolved_reduction_identifier) << Range;
8946 return ExprError();
8947 }
8948 return ExprEmpty();
8949}
8950
Alexey Bataevc5e02582014-06-16 07:08:35 +00008951OMPClause *Sema::ActOnOpenMPReductionClause(
8952 ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc,
8953 SourceLocation ColonLoc, SourceLocation EndLoc,
Alexey Bataeva839ddd2016-03-17 10:19:46 +00008954 CXXScopeSpec &ReductionIdScopeSpec, const DeclarationNameInfo &ReductionId,
8955 ArrayRef<Expr *> UnresolvedReductions) {
Alexey Bataevc5e02582014-06-16 07:08:35 +00008956 auto DN = ReductionId.getName();
8957 auto OOK = DN.getCXXOverloadedOperator();
8958 BinaryOperatorKind BOK = BO_Comma;
8959
8960 // OpenMP [2.14.3.6, reduction clause]
8961 // C
8962 // reduction-identifier is either an identifier or one of the following
8963 // operators: +, -, *, &, |, ^, && and ||
8964 // C++
8965 // reduction-identifier is either an id-expression or one of the following
8966 // operators: +, -, *, &, |, ^, && and ||
8967 // FIXME: Only 'min' and 'max' identifiers are supported for now.
8968 switch (OOK) {
8969 case OO_Plus:
8970 case OO_Minus:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008971 BOK = BO_Add;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008972 break;
8973 case OO_Star:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008974 BOK = BO_Mul;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008975 break;
8976 case OO_Amp:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008977 BOK = BO_And;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008978 break;
8979 case OO_Pipe:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008980 BOK = BO_Or;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008981 break;
8982 case OO_Caret:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008983 BOK = BO_Xor;
Alexey Bataevc5e02582014-06-16 07:08:35 +00008984 break;
8985 case OO_AmpAmp:
8986 BOK = BO_LAnd;
8987 break;
8988 case OO_PipePipe:
8989 BOK = BO_LOr;
8990 break;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00008991 case OO_New:
8992 case OO_Delete:
8993 case OO_Array_New:
8994 case OO_Array_Delete:
8995 case OO_Slash:
8996 case OO_Percent:
8997 case OO_Tilde:
8998 case OO_Exclaim:
8999 case OO_Equal:
9000 case OO_Less:
9001 case OO_Greater:
9002 case OO_LessEqual:
9003 case OO_GreaterEqual:
9004 case OO_PlusEqual:
9005 case OO_MinusEqual:
9006 case OO_StarEqual:
9007 case OO_SlashEqual:
9008 case OO_PercentEqual:
9009 case OO_CaretEqual:
9010 case OO_AmpEqual:
9011 case OO_PipeEqual:
9012 case OO_LessLess:
9013 case OO_GreaterGreater:
9014 case OO_LessLessEqual:
9015 case OO_GreaterGreaterEqual:
9016 case OO_EqualEqual:
9017 case OO_ExclaimEqual:
9018 case OO_PlusPlus:
9019 case OO_MinusMinus:
9020 case OO_Comma:
9021 case OO_ArrowStar:
9022 case OO_Arrow:
9023 case OO_Call:
9024 case OO_Subscript:
9025 case OO_Conditional:
Richard Smith9be594e2015-10-22 05:12:22 +00009026 case OO_Coawait:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009027 case NUM_OVERLOADED_OPERATORS:
9028 llvm_unreachable("Unexpected reduction identifier");
9029 case OO_None:
Alexey Bataevc5e02582014-06-16 07:08:35 +00009030 if (auto II = DN.getAsIdentifierInfo()) {
9031 if (II->isStr("max"))
9032 BOK = BO_GT;
9033 else if (II->isStr("min"))
9034 BOK = BO_LT;
9035 }
9036 break;
9037 }
9038 SourceRange ReductionIdRange;
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009039 if (ReductionIdScopeSpec.isValid())
Alexey Bataevc5e02582014-06-16 07:08:35 +00009040 ReductionIdRange.setBegin(ReductionIdScopeSpec.getBeginLoc());
Alexey Bataevc5e02582014-06-16 07:08:35 +00009041 ReductionIdRange.setEnd(ReductionId.getEndLoc());
Alexey Bataevc5e02582014-06-16 07:08:35 +00009042
9043 SmallVector<Expr *, 8> Vars;
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009044 SmallVector<Expr *, 8> Privates;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009045 SmallVector<Expr *, 8> LHSs;
9046 SmallVector<Expr *, 8> RHSs;
9047 SmallVector<Expr *, 8> ReductionOps;
Alexey Bataev61205072016-03-02 04:57:40 +00009048 SmallVector<Decl *, 4> ExprCaptures;
9049 SmallVector<Expr *, 4> ExprPostUpdates;
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009050 auto IR = UnresolvedReductions.begin(), ER = UnresolvedReductions.end();
9051 bool FirstIter = true;
Alexey Bataevc5e02582014-06-16 07:08:35 +00009052 for (auto RefExpr : VarList) {
9053 assert(RefExpr && "nullptr expr in OpenMP reduction clause.");
Alexey Bataevc5e02582014-06-16 07:08:35 +00009054 // OpenMP [2.1, C/C++]
9055 // A list item is a variable or array section, subject to the restrictions
9056 // specified in Section 2.4 on page 42 and in each of the sections
9057 // describing clauses and directives for which a list appears.
9058 // OpenMP [2.14.3.3, Restrictions, p.1]
9059 // A variable that is part of another variable (as an array or
9060 // structure element) cannot appear in a private clause.
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009061 if (!FirstIter && IR != ER)
9062 ++IR;
9063 FirstIter = false;
Alexey Bataev60da77e2016-02-29 05:54:20 +00009064 SourceLocation ELoc;
9065 SourceRange ERange;
9066 Expr *SimpleRefExpr = RefExpr;
9067 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange,
9068 /*AllowArraySection=*/true);
9069 if (Res.second) {
9070 // It will be analyzed later.
9071 Vars.push_back(RefExpr);
9072 Privates.push_back(nullptr);
9073 LHSs.push_back(nullptr);
9074 RHSs.push_back(nullptr);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009075 // Try to find 'declare reduction' corresponding construct before using
9076 // builtin/overloaded operators.
9077 QualType Type = Context.DependentTy;
9078 CXXCastPath BasePath;
9079 ExprResult DeclareReductionRef = buildDeclareReductionRef(
9080 *this, ELoc, ERange, DSAStack->getCurScope(), ReductionIdScopeSpec,
9081 ReductionId, Type, BasePath, IR == ER ? nullptr : *IR);
9082 if (CurContext->isDependentContext() &&
9083 (DeclareReductionRef.isUnset() ||
9084 isa<UnresolvedLookupExpr>(DeclareReductionRef.get())))
9085 ReductionOps.push_back(DeclareReductionRef.get());
9086 else
9087 ReductionOps.push_back(nullptr);
Alexey Bataevc5e02582014-06-16 07:08:35 +00009088 }
Alexey Bataev60da77e2016-02-29 05:54:20 +00009089 ValueDecl *D = Res.first;
9090 if (!D)
9091 continue;
9092
Alexey Bataeva1764212015-09-30 09:22:36 +00009093 QualType Type;
Alexey Bataev60da77e2016-02-29 05:54:20 +00009094 auto *ASE = dyn_cast<ArraySubscriptExpr>(RefExpr->IgnoreParens());
9095 auto *OASE = dyn_cast<OMPArraySectionExpr>(RefExpr->IgnoreParens());
9096 if (ASE)
Alexey Bataev31300ed2016-02-04 11:27:03 +00009097 Type = ASE->getType().getNonReferenceType();
Alexey Bataev60da77e2016-02-29 05:54:20 +00009098 else if (OASE) {
Alexey Bataeva1764212015-09-30 09:22:36 +00009099 auto BaseType = OMPArraySectionExpr::getBaseOriginalType(OASE->getBase());
9100 if (auto *ATy = BaseType->getAsArrayTypeUnsafe())
9101 Type = ATy->getElementType();
9102 else
9103 Type = BaseType->getPointeeType();
Alexey Bataev31300ed2016-02-04 11:27:03 +00009104 Type = Type.getNonReferenceType();
Alexey Bataev60da77e2016-02-29 05:54:20 +00009105 } else
9106 Type = Context.getBaseElementType(D->getType().getNonReferenceType());
9107 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataeva1764212015-09-30 09:22:36 +00009108
Alexey Bataevc5e02582014-06-16 07:08:35 +00009109 // OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
9110 // A variable that appears in a private clause must not have an incomplete
9111 // type or a reference type.
9112 if (RequireCompleteType(ELoc, Type,
9113 diag::err_omp_reduction_incomplete_type))
9114 continue;
9115 // OpenMP [2.14.3.6, reduction clause, Restrictions]
Alexey Bataevc5e02582014-06-16 07:08:35 +00009116 // A list item that appears in a reduction clause must not be
9117 // const-qualified.
9118 if (Type.getNonReferenceType().isConstant(Context)) {
Alexey Bataeva1764212015-09-30 09:22:36 +00009119 Diag(ELoc, diag::err_omp_const_reduction_list_item)
Alexey Bataevc5e02582014-06-16 07:08:35 +00009120 << getOpenMPClauseName(OMPC_reduction) << Type << ERange;
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009121 if (!ASE && !OASE) {
Alexey Bataev60da77e2016-02-29 05:54:20 +00009122 bool IsDecl = !VD ||
9123 VD->isThisDeclarationADefinition(Context) ==
9124 VarDecl::DeclarationOnly;
9125 Diag(D->getLocation(),
Alexey Bataeva1764212015-09-30 09:22:36 +00009126 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataev60da77e2016-02-29 05:54:20 +00009127 << D;
Alexey Bataeva1764212015-09-30 09:22:36 +00009128 }
Alexey Bataevc5e02582014-06-16 07:08:35 +00009129 continue;
9130 }
9131 // OpenMP [2.9.3.6, Restrictions, C/C++, p.4]
9132 // If a list-item is a reference type then it must bind to the same object
9133 // for all threads of the team.
Alexey Bataev60da77e2016-02-29 05:54:20 +00009134 if (!ASE && !OASE && VD) {
Alexey Bataeva1764212015-09-30 09:22:36 +00009135 VarDecl *VDDef = VD->getDefinition();
Alexey Bataev31300ed2016-02-04 11:27:03 +00009136 if (VD->getType()->isReferenceType() && VDDef) {
Alexey Bataeva1764212015-09-30 09:22:36 +00009137 DSARefChecker Check(DSAStack);
9138 if (Check.Visit(VDDef->getInit())) {
9139 Diag(ELoc, diag::err_omp_reduction_ref_type_arg) << ERange;
9140 Diag(VDDef->getLocation(), diag::note_defined_here) << VDDef;
9141 continue;
9142 }
Alexey Bataevc5e02582014-06-16 07:08:35 +00009143 }
9144 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009145
Alexey Bataevc5e02582014-06-16 07:08:35 +00009146 // OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced
9147 // in a Construct]
9148 // Variables with the predetermined data-sharing attributes may not be
9149 // listed in data-sharing attributes clauses, except for the cases
9150 // listed below. For these exceptions only, listing a predetermined
9151 // variable in a data-sharing attribute clause is allowed and overrides
9152 // the variable's predetermined data-sharing attributes.
9153 // OpenMP [2.14.3.6, Restrictions, p.3]
9154 // Any number of reduction clauses can be specified on the directive,
9155 // but a list item can appear only once in the reduction clauses for that
9156 // directive.
Alexey Bataeva1764212015-09-30 09:22:36 +00009157 DSAStackTy::DSAVarData DVar;
Alexey Bataev60da77e2016-02-29 05:54:20 +00009158 DVar = DSAStack->getTopDSA(D, false);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009159 if (DVar.CKind == OMPC_reduction) {
9160 Diag(ELoc, diag::err_omp_once_referenced)
9161 << getOpenMPClauseName(OMPC_reduction);
Alexey Bataev60da77e2016-02-29 05:54:20 +00009162 if (DVar.RefExpr)
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009163 Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_referenced);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009164 } else if (DVar.CKind != OMPC_unknown) {
9165 Diag(ELoc, diag::err_omp_wrong_dsa)
9166 << getOpenMPClauseName(DVar.CKind)
9167 << getOpenMPClauseName(OMPC_reduction);
Alexey Bataev60da77e2016-02-29 05:54:20 +00009168 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009169 continue;
Alexey Bataevc5e02582014-06-16 07:08:35 +00009170 }
9171
9172 // OpenMP [2.14.3.6, Restrictions, p.1]
9173 // A list item that appears in a reduction clause of a worksharing
9174 // construct must be shared in the parallel regions to which any of the
9175 // worksharing regions arising from the worksharing construct bind.
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009176 OpenMPDirectiveKind CurrDir = DSAStack->getCurrentDirective();
9177 if (isOpenMPWorksharingDirective(CurrDir) &&
9178 !isOpenMPParallelDirective(CurrDir)) {
Alexey Bataev60da77e2016-02-29 05:54:20 +00009179 DVar = DSAStack->getImplicitDSA(D, true);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009180 if (DVar.CKind != OMPC_shared) {
9181 Diag(ELoc, diag::err_omp_required_access)
9182 << getOpenMPClauseName(OMPC_reduction)
9183 << getOpenMPClauseName(OMPC_shared);
Alexey Bataev60da77e2016-02-29 05:54:20 +00009184 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009185 continue;
Alexey Bataevf29276e2014-06-18 04:14:57 +00009186 }
9187 }
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009188
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009189 // Try to find 'declare reduction' corresponding construct before using
9190 // builtin/overloaded operators.
9191 CXXCastPath BasePath;
9192 ExprResult DeclareReductionRef = buildDeclareReductionRef(
9193 *this, ELoc, ERange, DSAStack->getCurScope(), ReductionIdScopeSpec,
9194 ReductionId, Type, BasePath, IR == ER ? nullptr : *IR);
9195 if (DeclareReductionRef.isInvalid())
9196 continue;
9197 if (CurContext->isDependentContext() &&
9198 (DeclareReductionRef.isUnset() ||
9199 isa<UnresolvedLookupExpr>(DeclareReductionRef.get()))) {
9200 Vars.push_back(RefExpr);
9201 Privates.push_back(nullptr);
9202 LHSs.push_back(nullptr);
9203 RHSs.push_back(nullptr);
9204 ReductionOps.push_back(DeclareReductionRef.get());
9205 continue;
9206 }
9207 if (BOK == BO_Comma && DeclareReductionRef.isUnset()) {
9208 // Not allowed reduction identifier is found.
9209 Diag(ReductionId.getLocStart(),
9210 diag::err_omp_unknown_reduction_identifier)
9211 << Type << ReductionIdRange;
9212 continue;
9213 }
9214
9215 // OpenMP [2.14.3.6, reduction clause, Restrictions]
9216 // The type of a list item that appears in a reduction clause must be valid
9217 // for the reduction-identifier. For a max or min reduction in C, the type
9218 // of the list item must be an allowed arithmetic data type: char, int,
9219 // float, double, or _Bool, possibly modified with long, short, signed, or
9220 // unsigned. For a max or min reduction in C++, the type of the list item
9221 // must be an allowed arithmetic data type: char, wchar_t, int, float,
9222 // double, or bool, possibly modified with long, short, signed, or unsigned.
9223 if (DeclareReductionRef.isUnset()) {
9224 if ((BOK == BO_GT || BOK == BO_LT) &&
9225 !(Type->isScalarType() ||
9226 (getLangOpts().CPlusPlus && Type->isArithmeticType()))) {
9227 Diag(ELoc, diag::err_omp_clause_not_arithmetic_type_arg)
9228 << getLangOpts().CPlusPlus;
9229 if (!ASE && !OASE) {
9230 bool IsDecl = !VD ||
9231 VD->isThisDeclarationADefinition(Context) ==
9232 VarDecl::DeclarationOnly;
9233 Diag(D->getLocation(),
9234 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
9235 << D;
9236 }
9237 continue;
9238 }
9239 if ((BOK == BO_OrAssign || BOK == BO_AndAssign || BOK == BO_XorAssign) &&
9240 !getLangOpts().CPlusPlus && Type->isFloatingType()) {
9241 Diag(ELoc, diag::err_omp_clause_floating_type_arg);
9242 if (!ASE && !OASE) {
9243 bool IsDecl = !VD ||
9244 VD->isThisDeclarationADefinition(Context) ==
9245 VarDecl::DeclarationOnly;
9246 Diag(D->getLocation(),
9247 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
9248 << D;
9249 }
9250 continue;
9251 }
9252 }
9253
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009254 Type = Type.getNonLValueExprType(Context).getUnqualifiedType();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009255 auto *LHSVD = buildVarDecl(*this, ELoc, Type, ".reduction.lhs",
Alexey Bataev60da77e2016-02-29 05:54:20 +00009256 D->hasAttrs() ? &D->getAttrs() : nullptr);
9257 auto *RHSVD = buildVarDecl(*this, ELoc, Type, D->getName(),
9258 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009259 auto PrivateTy = Type;
Alexey Bataev1189bd02016-01-26 12:20:39 +00009260 if (OASE ||
Alexey Bataev60da77e2016-02-29 05:54:20 +00009261 (!ASE &&
9262 D->getType().getNonReferenceType()->isVariablyModifiedType())) {
Alexey Bataev1189bd02016-01-26 12:20:39 +00009263 // For arays/array sections only:
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009264 // Create pseudo array type for private copy. The size for this array will
9265 // be generated during codegen.
9266 // For array subscripts or single variables Private Ty is the same as Type
9267 // (type of the variable or single array element).
9268 PrivateTy = Context.getVariableArrayType(
9269 Type, new (Context) OpaqueValueExpr(SourceLocation(),
9270 Context.getSizeType(), VK_RValue),
9271 ArrayType::Normal, /*IndexTypeQuals=*/0, SourceRange());
Alexey Bataev60da77e2016-02-29 05:54:20 +00009272 } else if (!ASE && !OASE &&
9273 Context.getAsArrayType(D->getType().getNonReferenceType()))
9274 PrivateTy = D->getType().getNonReferenceType();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009275 // Private copy.
Alexey Bataev60da77e2016-02-29 05:54:20 +00009276 auto *PrivateVD = buildVarDecl(*this, ELoc, PrivateTy, D->getName(),
9277 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009278 // Add initializer for private variable.
9279 Expr *Init = nullptr;
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009280 auto *LHSDRE = buildDeclRefExpr(*this, LHSVD, Type, ELoc);
9281 auto *RHSDRE = buildDeclRefExpr(*this, RHSVD, Type, ELoc);
9282 if (DeclareReductionRef.isUsable()) {
9283 auto *DRDRef = DeclareReductionRef.getAs<DeclRefExpr>();
9284 auto *DRD = cast<OMPDeclareReductionDecl>(DRDRef->getDecl());
9285 if (DRD->getInitializer()) {
9286 Init = DRDRef;
9287 RHSVD->setInit(DRDRef);
9288 RHSVD->setInitStyle(VarDecl::CallInit);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009289 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009290 } else {
9291 switch (BOK) {
9292 case BO_Add:
9293 case BO_Xor:
9294 case BO_Or:
9295 case BO_LOr:
9296 // '+', '-', '^', '|', '||' reduction ops - initializer is '0'.
9297 if (Type->isScalarType() || Type->isAnyComplexType())
9298 Init = ActOnIntegerConstant(ELoc, /*Val=*/0).get();
9299 break;
9300 case BO_Mul:
9301 case BO_LAnd:
9302 if (Type->isScalarType() || Type->isAnyComplexType()) {
9303 // '*' and '&&' reduction ops - initializer is '1'.
9304 Init = ActOnIntegerConstant(ELoc, /*Val=*/1).get();
Alexey Bataevc5e02582014-06-16 07:08:35 +00009305 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009306 break;
9307 case BO_And: {
9308 // '&' reduction op - initializer is '~0'.
9309 QualType OrigType = Type;
9310 if (auto *ComplexTy = OrigType->getAs<ComplexType>())
9311 Type = ComplexTy->getElementType();
9312 if (Type->isRealFloatingType()) {
9313 llvm::APFloat InitValue =
9314 llvm::APFloat::getAllOnesValue(Context.getTypeSize(Type),
9315 /*isIEEE=*/true);
9316 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true,
9317 Type, ELoc);
9318 } else if (Type->isScalarType()) {
9319 auto Size = Context.getTypeSize(Type);
9320 QualType IntTy = Context.getIntTypeForBitwidth(Size, /*Signed=*/0);
9321 llvm::APInt InitValue = llvm::APInt::getAllOnesValue(Size);
9322 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc);
9323 }
9324 if (Init && OrigType->isAnyComplexType()) {
9325 // Init = 0xFFFF + 0xFFFFi;
9326 auto *Im = new (Context) ImaginaryLiteral(Init, OrigType);
9327 Init = CreateBuiltinBinOp(ELoc, BO_Add, Init, Im).get();
9328 }
9329 Type = OrigType;
9330 break;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009331 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009332 case BO_LT:
9333 case BO_GT: {
9334 // 'min' reduction op - initializer is 'Largest representable number in
9335 // the reduction list item type'.
9336 // 'max' reduction op - initializer is 'Least representable number in
9337 // the reduction list item type'.
9338 if (Type->isIntegerType() || Type->isPointerType()) {
9339 bool IsSigned = Type->hasSignedIntegerRepresentation();
9340 auto Size = Context.getTypeSize(Type);
9341 QualType IntTy =
9342 Context.getIntTypeForBitwidth(Size, /*Signed=*/IsSigned);
9343 llvm::APInt InitValue =
9344 (BOK != BO_LT)
9345 ? IsSigned ? llvm::APInt::getSignedMinValue(Size)
9346 : llvm::APInt::getMinValue(Size)
9347 : IsSigned ? llvm::APInt::getSignedMaxValue(Size)
9348 : llvm::APInt::getMaxValue(Size);
9349 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc);
9350 if (Type->isPointerType()) {
9351 // Cast to pointer type.
9352 auto CastExpr = BuildCStyleCastExpr(
9353 SourceLocation(), Context.getTrivialTypeSourceInfo(Type, ELoc),
9354 SourceLocation(), Init);
9355 if (CastExpr.isInvalid())
9356 continue;
9357 Init = CastExpr.get();
9358 }
9359 } else if (Type->isRealFloatingType()) {
9360 llvm::APFloat InitValue = llvm::APFloat::getLargest(
9361 Context.getFloatTypeSemantics(Type), BOK != BO_LT);
9362 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true,
9363 Type, ELoc);
9364 }
9365 break;
9366 }
9367 case BO_PtrMemD:
9368 case BO_PtrMemI:
9369 case BO_MulAssign:
9370 case BO_Div:
9371 case BO_Rem:
9372 case BO_Sub:
9373 case BO_Shl:
9374 case BO_Shr:
9375 case BO_LE:
9376 case BO_GE:
9377 case BO_EQ:
9378 case BO_NE:
9379 case BO_AndAssign:
9380 case BO_XorAssign:
9381 case BO_OrAssign:
9382 case BO_Assign:
9383 case BO_AddAssign:
9384 case BO_SubAssign:
9385 case BO_DivAssign:
9386 case BO_RemAssign:
9387 case BO_ShlAssign:
9388 case BO_ShrAssign:
9389 case BO_Comma:
9390 llvm_unreachable("Unexpected reduction operation");
9391 }
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009392 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009393 if (Init && DeclareReductionRef.isUnset()) {
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009394 AddInitializerToDecl(RHSVD, Init, /*DirectInit=*/false,
9395 /*TypeMayContainAuto=*/false);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009396 } else if (!Init)
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009397 ActOnUninitializedDecl(RHSVD, /*TypeMayContainAuto=*/false);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009398 if (RHSVD->isInvalidDecl())
9399 continue;
9400 if (!RHSVD->hasInit() && DeclareReductionRef.isUnset()) {
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009401 Diag(ELoc, diag::err_omp_reduction_id_not_compatible) << Type
9402 << ReductionIdRange;
Alexey Bataev60da77e2016-02-29 05:54:20 +00009403 bool IsDecl =
9404 !VD ||
9405 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
9406 Diag(D->getLocation(),
9407 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
9408 << D;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009409 continue;
9410 }
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009411 // Store initializer for single element in private copy. Will be used during
9412 // codegen.
9413 PrivateVD->setInit(RHSVD->getInit());
9414 PrivateVD->setInitStyle(RHSVD->getInitStyle());
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009415 auto *PrivateDRE = buildDeclRefExpr(*this, PrivateVD, PrivateTy, ELoc);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009416 ExprResult ReductionOp;
9417 if (DeclareReductionRef.isUsable()) {
9418 QualType RedTy = DeclareReductionRef.get()->getType();
9419 QualType PtrRedTy = Context.getPointerType(RedTy);
9420 ExprResult LHS = CreateBuiltinUnaryOp(ELoc, UO_AddrOf, LHSDRE);
9421 ExprResult RHS = CreateBuiltinUnaryOp(ELoc, UO_AddrOf, RHSDRE);
9422 if (!BasePath.empty()) {
9423 LHS = DefaultLvalueConversion(LHS.get());
9424 RHS = DefaultLvalueConversion(RHS.get());
9425 LHS = ImplicitCastExpr::Create(Context, PtrRedTy,
9426 CK_UncheckedDerivedToBase, LHS.get(),
9427 &BasePath, LHS.get()->getValueKind());
9428 RHS = ImplicitCastExpr::Create(Context, PtrRedTy,
9429 CK_UncheckedDerivedToBase, RHS.get(),
9430 &BasePath, RHS.get()->getValueKind());
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009431 }
Alexey Bataeva839ddd2016-03-17 10:19:46 +00009432 FunctionProtoType::ExtProtoInfo EPI;
9433 QualType Params[] = {PtrRedTy, PtrRedTy};
9434 QualType FnTy = Context.getFunctionType(Context.VoidTy, Params, EPI);
9435 auto *OVE = new (Context) OpaqueValueExpr(
9436 ELoc, Context.getPointerType(FnTy), VK_RValue, OK_Ordinary,
9437 DefaultLvalueConversion(DeclareReductionRef.get()).get());
9438 Expr *Args[] = {LHS.get(), RHS.get()};
9439 ReductionOp = new (Context)
9440 CallExpr(Context, OVE, Args, Context.VoidTy, VK_RValue, ELoc);
9441 } else {
9442 ReductionOp = BuildBinOp(DSAStack->getCurScope(),
9443 ReductionId.getLocStart(), BOK, LHSDRE, RHSDRE);
9444 if (ReductionOp.isUsable()) {
9445 if (BOK != BO_LT && BOK != BO_GT) {
9446 ReductionOp =
9447 BuildBinOp(DSAStack->getCurScope(), ReductionId.getLocStart(),
9448 BO_Assign, LHSDRE, ReductionOp.get());
9449 } else {
9450 auto *ConditionalOp = new (Context) ConditionalOperator(
9451 ReductionOp.get(), SourceLocation(), LHSDRE, SourceLocation(),
9452 RHSDRE, Type, VK_LValue, OK_Ordinary);
9453 ReductionOp =
9454 BuildBinOp(DSAStack->getCurScope(), ReductionId.getLocStart(),
9455 BO_Assign, LHSDRE, ConditionalOp);
9456 }
9457 ReductionOp = ActOnFinishFullExpr(ReductionOp.get());
9458 }
9459 if (ReductionOp.isInvalid())
9460 continue;
Alexey Bataevc5e02582014-06-16 07:08:35 +00009461 }
9462
Alexey Bataev60da77e2016-02-29 05:54:20 +00009463 DeclRefExpr *Ref = nullptr;
9464 Expr *VarsExpr = RefExpr->IgnoreParens();
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00009465 if (!VD && !CurContext->isDependentContext()) {
Alexey Bataev60da77e2016-02-29 05:54:20 +00009466 if (ASE || OASE) {
9467 TransformExprToCaptures RebuildToCapture(*this, D);
9468 VarsExpr =
9469 RebuildToCapture.TransformExpr(RefExpr->IgnoreParens()).get();
9470 Ref = RebuildToCapture.getCapturedExpr();
Alexey Bataev61205072016-03-02 04:57:40 +00009471 } else {
9472 VarsExpr = Ref =
9473 buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false);
Alexey Bataev5a3af132016-03-29 08:58:54 +00009474 }
9475 if (!IsOpenMPCapturedDecl(D)) {
9476 ExprCaptures.push_back(Ref->getDecl());
9477 if (Ref->getDecl()->hasAttr<OMPCaptureNoInitAttr>()) {
9478 ExprResult RefRes = DefaultLvalueConversion(Ref);
9479 if (!RefRes.isUsable())
9480 continue;
9481 ExprResult PostUpdateRes =
9482 BuildBinOp(DSAStack->getCurScope(), ELoc, BO_Assign,
9483 SimpleRefExpr, RefRes.get());
9484 if (!PostUpdateRes.isUsable())
9485 continue;
9486 ExprPostUpdates.push_back(
9487 IgnoredValueConversions(PostUpdateRes.get()).get());
Alexey Bataev61205072016-03-02 04:57:40 +00009488 }
9489 }
Alexey Bataev60da77e2016-02-29 05:54:20 +00009490 }
9491 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_reduction, Ref);
9492 Vars.push_back(VarsExpr);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009493 Privates.push_back(PrivateDRE);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00009494 LHSs.push_back(LHSDRE);
9495 RHSs.push_back(RHSDRE);
9496 ReductionOps.push_back(ReductionOp.get());
Alexey Bataevc5e02582014-06-16 07:08:35 +00009497 }
9498
9499 if (Vars.empty())
9500 return nullptr;
Alexey Bataev61205072016-03-02 04:57:40 +00009501
Alexey Bataevc5e02582014-06-16 07:08:35 +00009502 return OMPReductionClause::Create(
9503 Context, StartLoc, LParenLoc, ColonLoc, EndLoc, Vars,
Alexey Bataevf24e7b12015-10-08 09:10:53 +00009504 ReductionIdScopeSpec.getWithLocInContext(Context), ReductionId, Privates,
Alexey Bataev5a3af132016-03-29 08:58:54 +00009505 LHSs, RHSs, ReductionOps, buildPreInits(Context, ExprCaptures),
9506 buildPostUpdate(*this, ExprPostUpdates));
Alexey Bataevc5e02582014-06-16 07:08:35 +00009507}
9508
Alexey Bataevecba70f2016-04-12 11:02:11 +00009509bool Sema::CheckOpenMPLinearModifier(OpenMPLinearClauseKind LinKind,
9510 SourceLocation LinLoc) {
9511 if ((!LangOpts.CPlusPlus && LinKind != OMPC_LINEAR_val) ||
9512 LinKind == OMPC_LINEAR_unknown) {
9513 Diag(LinLoc, diag::err_omp_wrong_linear_modifier) << LangOpts.CPlusPlus;
9514 return true;
9515 }
9516 return false;
9517}
9518
9519bool Sema::CheckOpenMPLinearDecl(ValueDecl *D, SourceLocation ELoc,
9520 OpenMPLinearClauseKind LinKind,
9521 QualType Type) {
9522 auto *VD = dyn_cast_or_null<VarDecl>(D);
9523 // A variable must not have an incomplete type or a reference type.
9524 if (RequireCompleteType(ELoc, Type, diag::err_omp_linear_incomplete_type))
9525 return true;
9526 if ((LinKind == OMPC_LINEAR_uval || LinKind == OMPC_LINEAR_ref) &&
9527 !Type->isReferenceType()) {
9528 Diag(ELoc, diag::err_omp_wrong_linear_modifier_non_reference)
9529 << Type << getOpenMPSimpleClauseTypeName(OMPC_linear, LinKind);
9530 return true;
9531 }
9532 Type = Type.getNonReferenceType();
9533
9534 // A list item must not be const-qualified.
9535 if (Type.isConstant(Context)) {
9536 Diag(ELoc, diag::err_omp_const_variable)
9537 << getOpenMPClauseName(OMPC_linear);
9538 if (D) {
9539 bool IsDecl =
9540 !VD ||
9541 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
9542 Diag(D->getLocation(),
9543 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
9544 << D;
9545 }
9546 return true;
9547 }
9548
9549 // A list item must be of integral or pointer type.
9550 Type = Type.getUnqualifiedType().getCanonicalType();
9551 const auto *Ty = Type.getTypePtrOrNull();
9552 if (!Ty || (!Ty->isDependentType() && !Ty->isIntegralType(Context) &&
9553 !Ty->isPointerType())) {
9554 Diag(ELoc, diag::err_omp_linear_expected_int_or_ptr) << Type;
9555 if (D) {
9556 bool IsDecl =
9557 !VD ||
9558 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
9559 Diag(D->getLocation(),
9560 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
9561 << D;
9562 }
9563 return true;
9564 }
9565 return false;
9566}
9567
Alexey Bataev182227b2015-08-20 10:54:39 +00009568OMPClause *Sema::ActOnOpenMPLinearClause(
9569 ArrayRef<Expr *> VarList, Expr *Step, SourceLocation StartLoc,
9570 SourceLocation LParenLoc, OpenMPLinearClauseKind LinKind,
9571 SourceLocation LinLoc, SourceLocation ColonLoc, SourceLocation EndLoc) {
Alexander Musman8dba6642014-04-22 13:09:42 +00009572 SmallVector<Expr *, 8> Vars;
Alexey Bataevbd9fec12015-08-18 06:47:21 +00009573 SmallVector<Expr *, 8> Privates;
Alexander Musman3276a272015-03-21 10:12:56 +00009574 SmallVector<Expr *, 8> Inits;
Alexey Bataev78849fb2016-03-09 09:49:00 +00009575 SmallVector<Decl *, 4> ExprCaptures;
9576 SmallVector<Expr *, 4> ExprPostUpdates;
Alexey Bataevecba70f2016-04-12 11:02:11 +00009577 if (CheckOpenMPLinearModifier(LinKind, LinLoc))
Alexey Bataev182227b2015-08-20 10:54:39 +00009578 LinKind = OMPC_LINEAR_val;
Alexey Bataeved09d242014-05-28 05:53:51 +00009579 for (auto &RefExpr : VarList) {
9580 assert(RefExpr && "NULL expr in OpenMP linear clause.");
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009581 SourceLocation ELoc;
9582 SourceRange ERange;
9583 Expr *SimpleRefExpr = RefExpr;
9584 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange,
9585 /*AllowArraySection=*/false);
9586 if (Res.second) {
Alexander Musman8dba6642014-04-22 13:09:42 +00009587 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00009588 Vars.push_back(RefExpr);
Alexey Bataevbd9fec12015-08-18 06:47:21 +00009589 Privates.push_back(nullptr);
Alexander Musman3276a272015-03-21 10:12:56 +00009590 Inits.push_back(nullptr);
Alexander Musman8dba6642014-04-22 13:09:42 +00009591 }
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009592 ValueDecl *D = Res.first;
9593 if (!D)
Alexander Musman8dba6642014-04-22 13:09:42 +00009594 continue;
Alexander Musman8dba6642014-04-22 13:09:42 +00009595
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009596 QualType Type = D->getType();
9597 auto *VD = dyn_cast<VarDecl>(D);
Alexander Musman8dba6642014-04-22 13:09:42 +00009598
9599 // OpenMP [2.14.3.7, linear clause]
9600 // A list-item cannot appear in more than one linear clause.
9601 // A list-item that appears in a linear clause cannot appear in any
9602 // other data-sharing attribute clause.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009603 DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(D, false);
Alexander Musman8dba6642014-04-22 13:09:42 +00009604 if (DVar.RefExpr) {
9605 Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
9606 << getOpenMPClauseName(OMPC_linear);
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009607 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexander Musman8dba6642014-04-22 13:09:42 +00009608 continue;
9609 }
9610
Alexey Bataevecba70f2016-04-12 11:02:11 +00009611 if (CheckOpenMPLinearDecl(D, ELoc, LinKind, Type))
Alexander Musman8dba6642014-04-22 13:09:42 +00009612 continue;
Alexey Bataevecba70f2016-04-12 11:02:11 +00009613 Type = Type.getNonReferenceType().getUnqualifiedType().getCanonicalType();
Alexander Musman8dba6642014-04-22 13:09:42 +00009614
Alexey Bataevbd9fec12015-08-18 06:47:21 +00009615 // Build private copy of original var.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009616 auto *Private = buildVarDecl(*this, ELoc, Type, D->getName(),
9617 D->hasAttrs() ? &D->getAttrs() : nullptr);
9618 auto *PrivateRef = buildDeclRefExpr(*this, Private, Type, ELoc);
Alexander Musman3276a272015-03-21 10:12:56 +00009619 // Build var to save initial value.
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009620 VarDecl *Init = buildVarDecl(*this, ELoc, Type, ".linear.start");
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00009621 Expr *InitExpr;
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009622 DeclRefExpr *Ref = nullptr;
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00009623 if (!VD && !CurContext->isDependentContext()) {
Alexey Bataev78849fb2016-03-09 09:49:00 +00009624 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false);
9625 if (!IsOpenMPCapturedDecl(D)) {
9626 ExprCaptures.push_back(Ref->getDecl());
9627 if (Ref->getDecl()->hasAttr<OMPCaptureNoInitAttr>()) {
9628 ExprResult RefRes = DefaultLvalueConversion(Ref);
9629 if (!RefRes.isUsable())
9630 continue;
9631 ExprResult PostUpdateRes =
9632 BuildBinOp(DSAStack->getCurScope(), ELoc, BO_Assign,
9633 SimpleRefExpr, RefRes.get());
9634 if (!PostUpdateRes.isUsable())
9635 continue;
9636 ExprPostUpdates.push_back(
9637 IgnoredValueConversions(PostUpdateRes.get()).get());
9638 }
9639 }
9640 }
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00009641 if (LinKind == OMPC_LINEAR_uval)
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009642 InitExpr = VD ? VD->getInit() : SimpleRefExpr;
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00009643 else
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009644 InitExpr = VD ? SimpleRefExpr : Ref;
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00009645 AddInitializerToDecl(Init, DefaultLvalueConversion(InitExpr).get(),
Alexey Bataev2bbf7212016-03-03 03:52:24 +00009646 /*DirectInit=*/false, /*TypeMayContainAuto=*/false);
9647 auto InitRef = buildDeclRefExpr(*this, Init, Type, ELoc);
9648
9649 DSAStack->addDSA(D, RefExpr->IgnoreParens(), OMPC_linear, Ref);
Alexey Bataevbe8b8b52016-07-07 11:04:06 +00009650 Vars.push_back((VD || CurContext->isDependentContext())
9651 ? RefExpr->IgnoreParens()
9652 : Ref);
Alexey Bataevbd9fec12015-08-18 06:47:21 +00009653 Privates.push_back(PrivateRef);
Alexander Musman3276a272015-03-21 10:12:56 +00009654 Inits.push_back(InitRef);
Alexander Musman8dba6642014-04-22 13:09:42 +00009655 }
9656
9657 if (Vars.empty())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00009658 return nullptr;
Alexander Musman8dba6642014-04-22 13:09:42 +00009659
9660 Expr *StepExpr = Step;
Alexander Musman3276a272015-03-21 10:12:56 +00009661 Expr *CalcStepExpr = nullptr;
Alexander Musman8dba6642014-04-22 13:09:42 +00009662 if (Step && !Step->isValueDependent() && !Step->isTypeDependent() &&
9663 !Step->isInstantiationDependent() &&
9664 !Step->containsUnexpandedParameterPack()) {
9665 SourceLocation StepLoc = Step->getLocStart();
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00009666 ExprResult Val = PerformOpenMPImplicitIntegerConversion(StepLoc, Step);
Alexander Musman8dba6642014-04-22 13:09:42 +00009667 if (Val.isInvalid())
Alexander Musmancb7f9c42014-05-15 13:04:49 +00009668 return nullptr;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009669 StepExpr = Val.get();
Alexander Musman8dba6642014-04-22 13:09:42 +00009670
Alexander Musman3276a272015-03-21 10:12:56 +00009671 // Build var to save the step value.
9672 VarDecl *SaveVar =
Alexey Bataev39f915b82015-05-08 10:41:21 +00009673 buildVarDecl(*this, StepLoc, StepExpr->getType(), ".linear.step");
Alexander Musman3276a272015-03-21 10:12:56 +00009674 ExprResult SaveRef =
Alexey Bataev39f915b82015-05-08 10:41:21 +00009675 buildDeclRefExpr(*this, SaveVar, StepExpr->getType(), StepLoc);
Alexander Musman3276a272015-03-21 10:12:56 +00009676 ExprResult CalcStep =
9677 BuildBinOp(CurScope, StepLoc, BO_Assign, SaveRef.get(), StepExpr);
Alexey Bataev6b8046a2015-09-03 07:23:48 +00009678 CalcStep = ActOnFinishFullExpr(CalcStep.get());
Alexander Musman3276a272015-03-21 10:12:56 +00009679
Alexander Musman8dba6642014-04-22 13:09:42 +00009680 // Warn about zero linear step (it would be probably better specified as
9681 // making corresponding variables 'const').
9682 llvm::APSInt Result;
Alexander Musman3276a272015-03-21 10:12:56 +00009683 bool IsConstant = StepExpr->isIntegerConstantExpr(Result, Context);
9684 if (IsConstant && !Result.isNegative() && !Result.isStrictlyPositive())
Alexander Musman8dba6642014-04-22 13:09:42 +00009685 Diag(StepLoc, diag::warn_omp_linear_step_zero) << Vars[0]
9686 << (Vars.size() > 1);
Alexander Musman3276a272015-03-21 10:12:56 +00009687 if (!IsConstant && CalcStep.isUsable()) {
9688 // Calculate the step beforehand instead of doing this on each iteration.
9689 // (This is not used if the number of iterations may be kfold-ed).
9690 CalcStepExpr = CalcStep.get();
9691 }
Alexander Musman8dba6642014-04-22 13:09:42 +00009692 }
9693
Alexey Bataev182227b2015-08-20 10:54:39 +00009694 return OMPLinearClause::Create(Context, StartLoc, LParenLoc, LinKind, LinLoc,
9695 ColonLoc, EndLoc, Vars, Privates, Inits,
Alexey Bataev5a3af132016-03-29 08:58:54 +00009696 StepExpr, CalcStepExpr,
9697 buildPreInits(Context, ExprCaptures),
9698 buildPostUpdate(*this, ExprPostUpdates));
Alexander Musman3276a272015-03-21 10:12:56 +00009699}
9700
Alexey Bataev5dff95c2016-04-22 03:56:56 +00009701static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV,
9702 Expr *NumIterations, Sema &SemaRef,
9703 Scope *S, DSAStackTy *Stack) {
Alexander Musman3276a272015-03-21 10:12:56 +00009704 // Walk the vars and build update/final expressions for the CodeGen.
9705 SmallVector<Expr *, 8> Updates;
9706 SmallVector<Expr *, 8> Finals;
9707 Expr *Step = Clause.getStep();
9708 Expr *CalcStep = Clause.getCalcStep();
9709 // OpenMP [2.14.3.7, linear clause]
9710 // If linear-step is not specified it is assumed to be 1.
9711 if (Step == nullptr)
9712 Step = SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get();
Alexey Bataev5a3af132016-03-29 08:58:54 +00009713 else if (CalcStep) {
Alexander Musman3276a272015-03-21 10:12:56 +00009714 Step = cast<BinaryOperator>(CalcStep)->getLHS();
Alexey Bataev5a3af132016-03-29 08:58:54 +00009715 }
Alexander Musman3276a272015-03-21 10:12:56 +00009716 bool HasErrors = false;
9717 auto CurInit = Clause.inits().begin();
Alexey Bataevbd9fec12015-08-18 06:47:21 +00009718 auto CurPrivate = Clause.privates().begin();
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00009719 auto LinKind = Clause.getModifier();
Alexander Musman3276a272015-03-21 10:12:56 +00009720 for (auto &RefExpr : Clause.varlists()) {
Alexey Bataev5dff95c2016-04-22 03:56:56 +00009721 SourceLocation ELoc;
9722 SourceRange ERange;
9723 Expr *SimpleRefExpr = RefExpr;
9724 auto Res = getPrivateItem(SemaRef, SimpleRefExpr, ELoc, ERange,
9725 /*AllowArraySection=*/false);
9726 ValueDecl *D = Res.first;
9727 if (Res.second || !D) {
9728 Updates.push_back(nullptr);
9729 Finals.push_back(nullptr);
9730 HasErrors = true;
9731 continue;
9732 }
9733 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(D)) {
9734 D = cast<MemberExpr>(CED->getInit()->IgnoreParenImpCasts())
9735 ->getMemberDecl();
9736 }
9737 auto &&Info = Stack->isLoopControlVariable(D);
Alexander Musman3276a272015-03-21 10:12:56 +00009738 Expr *InitExpr = *CurInit;
9739
9740 // Build privatized reference to the current linear var.
Alexey Bataev5dff95c2016-04-22 03:56:56 +00009741 auto DE = cast<DeclRefExpr>(SimpleRefExpr);
Alexey Bataev84cfb1d2015-08-21 06:41:23 +00009742 Expr *CapturedRef;
9743 if (LinKind == OMPC_LINEAR_uval)
9744 CapturedRef = cast<VarDecl>(DE->getDecl())->getInit();
9745 else
9746 CapturedRef =
9747 buildDeclRefExpr(SemaRef, cast<VarDecl>(DE->getDecl()),
9748 DE->getType().getUnqualifiedType(), DE->getExprLoc(),
9749 /*RefersToCapture=*/true);
Alexander Musman3276a272015-03-21 10:12:56 +00009750
9751 // Build update: Var = InitExpr + IV * Step
Alexey Bataev5dff95c2016-04-22 03:56:56 +00009752 ExprResult Update;
9753 if (!Info.first) {
9754 Update =
9755 BuildCounterUpdate(SemaRef, S, RefExpr->getExprLoc(), *CurPrivate,
9756 InitExpr, IV, Step, /* Subtract */ false);
9757 } else
9758 Update = *CurPrivate;
Alexey Bataev6b8046a2015-09-03 07:23:48 +00009759 Update = SemaRef.ActOnFinishFullExpr(Update.get(), DE->getLocStart(),
9760 /*DiscardedValue=*/true);
Alexander Musman3276a272015-03-21 10:12:56 +00009761
9762 // Build final: Var = InitExpr + NumIterations * Step
Alexey Bataev5dff95c2016-04-22 03:56:56 +00009763 ExprResult Final;
9764 if (!Info.first) {
9765 Final = BuildCounterUpdate(SemaRef, S, RefExpr->getExprLoc(), CapturedRef,
9766 InitExpr, NumIterations, Step,
9767 /* Subtract */ false);
9768 } else
9769 Final = *CurPrivate;
Alexey Bataev6b8046a2015-09-03 07:23:48 +00009770 Final = SemaRef.ActOnFinishFullExpr(Final.get(), DE->getLocStart(),
9771 /*DiscardedValue=*/true);
Alexey Bataev5dff95c2016-04-22 03:56:56 +00009772
Alexander Musman3276a272015-03-21 10:12:56 +00009773 if (!Update.isUsable() || !Final.isUsable()) {
9774 Updates.push_back(nullptr);
9775 Finals.push_back(nullptr);
9776 HasErrors = true;
9777 } else {
9778 Updates.push_back(Update.get());
9779 Finals.push_back(Final.get());
9780 }
Richard Trieucc3949d2016-02-18 22:34:54 +00009781 ++CurInit;
9782 ++CurPrivate;
Alexander Musman3276a272015-03-21 10:12:56 +00009783 }
9784 Clause.setUpdates(Updates);
9785 Clause.setFinals(Finals);
9786 return HasErrors;
Alexander Musman8dba6642014-04-22 13:09:42 +00009787}
9788
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009789OMPClause *Sema::ActOnOpenMPAlignedClause(
9790 ArrayRef<Expr *> VarList, Expr *Alignment, SourceLocation StartLoc,
9791 SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc) {
9792
9793 SmallVector<Expr *, 8> Vars;
9794 for (auto &RefExpr : VarList) {
Alexey Bataev1efd1662016-03-29 10:59:56 +00009795 assert(RefExpr && "NULL expr in OpenMP linear clause.");
9796 SourceLocation ELoc;
9797 SourceRange ERange;
9798 Expr *SimpleRefExpr = RefExpr;
9799 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange,
9800 /*AllowArraySection=*/false);
9801 if (Res.second) {
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009802 // It will be analyzed later.
9803 Vars.push_back(RefExpr);
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009804 }
Alexey Bataev1efd1662016-03-29 10:59:56 +00009805 ValueDecl *D = Res.first;
9806 if (!D)
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009807 continue;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009808
Alexey Bataev1efd1662016-03-29 10:59:56 +00009809 QualType QType = D->getType();
9810 auto *VD = dyn_cast<VarDecl>(D);
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009811
9812 // OpenMP [2.8.1, simd construct, Restrictions]
9813 // The type of list items appearing in the aligned clause must be
9814 // array, pointer, reference to array, or reference to pointer.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00009815 QType = QType.getNonReferenceType().getUnqualifiedType().getCanonicalType();
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009816 const Type *Ty = QType.getTypePtrOrNull();
Alexey Bataev1efd1662016-03-29 10:59:56 +00009817 if (!Ty || (!Ty->isArrayType() && !Ty->isPointerType())) {
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009818 Diag(ELoc, diag::err_omp_aligned_expected_array_or_ptr)
Alexey Bataev1efd1662016-03-29 10:59:56 +00009819 << QType << getLangOpts().CPlusPlus << ERange;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009820 bool IsDecl =
Alexey Bataev1efd1662016-03-29 10:59:56 +00009821 !VD ||
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009822 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataev1efd1662016-03-29 10:59:56 +00009823 Diag(D->getLocation(),
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009824 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataev1efd1662016-03-29 10:59:56 +00009825 << D;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009826 continue;
9827 }
9828
9829 // OpenMP [2.8.1, simd construct, Restrictions]
9830 // A list-item cannot appear in more than one aligned clause.
Alexey Bataev1efd1662016-03-29 10:59:56 +00009831 if (Expr *PrevRef = DSAStack->addUniqueAligned(D, SimpleRefExpr)) {
Alexey Bataevd93d3762016-04-12 09:35:56 +00009832 Diag(ELoc, diag::err_omp_aligned_twice) << 0 << ERange;
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009833 Diag(PrevRef->getExprLoc(), diag::note_omp_explicit_dsa)
9834 << getOpenMPClauseName(OMPC_aligned);
9835 continue;
9836 }
9837
Alexey Bataev1efd1662016-03-29 10:59:56 +00009838 DeclRefExpr *Ref = nullptr;
9839 if (!VD && IsOpenMPCapturedDecl(D))
9840 Ref = buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/true);
9841 Vars.push_back(DefaultFunctionArrayConversion(
9842 (VD || !Ref) ? RefExpr->IgnoreParens() : Ref)
9843 .get());
Alexander Musmanf0d76e72014-05-29 14:36:25 +00009844 }
9845
9846 // OpenMP [2.8.1, simd construct, Description]
9847 // The parameter of the aligned clause, alignment, must be a constant
9848 // positive integer expression.
9849 // If no optional parameter is specified, implementation-defined default
9850 // alignments for SIMD instructions on the target platforms are assumed.
9851 if (Alignment != nullptr) {
9852 ExprResult AlignResult =
9853 VerifyPositiveIntegerConstantInClause(Alignment, OMPC_aligned);
9854 if (AlignResult.isInvalid())
9855 return nullptr;
9856 Alignment = AlignResult.get();
9857 }
9858 if (Vars.empty())
9859 return nullptr;
9860
9861 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc,
9862 EndLoc, Vars, Alignment);
9863}
9864
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009865OMPClause *Sema::ActOnOpenMPCopyinClause(ArrayRef<Expr *> VarList,
9866 SourceLocation StartLoc,
9867 SourceLocation LParenLoc,
9868 SourceLocation EndLoc) {
9869 SmallVector<Expr *, 8> Vars;
Alexey Bataevf56f98c2015-04-16 05:39:01 +00009870 SmallVector<Expr *, 8> SrcExprs;
9871 SmallVector<Expr *, 8> DstExprs;
9872 SmallVector<Expr *, 8> AssignmentOps;
Alexey Bataeved09d242014-05-28 05:53:51 +00009873 for (auto &RefExpr : VarList) {
9874 assert(RefExpr && "NULL expr in OpenMP copyin clause.");
9875 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009876 // It will be analyzed later.
Alexey Bataeved09d242014-05-28 05:53:51 +00009877 Vars.push_back(RefExpr);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00009878 SrcExprs.push_back(nullptr);
9879 DstExprs.push_back(nullptr);
9880 AssignmentOps.push_back(nullptr);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009881 continue;
9882 }
9883
Alexey Bataeved09d242014-05-28 05:53:51 +00009884 SourceLocation ELoc = RefExpr->getExprLoc();
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009885 // OpenMP [2.1, C/C++]
9886 // A list item is a variable name.
9887 // OpenMP [2.14.4.1, Restrictions, p.1]
9888 // A list item that appears in a copyin clause must be threadprivate.
Alexey Bataeved09d242014-05-28 05:53:51 +00009889 DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009890 if (!DE || !isa<VarDecl>(DE->getDecl())) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +00009891 Diag(ELoc, diag::err_omp_expected_var_name_member_expr)
9892 << 0 << RefExpr->getSourceRange();
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009893 continue;
9894 }
9895
9896 Decl *D = DE->getDecl();
9897 VarDecl *VD = cast<VarDecl>(D);
9898
9899 QualType Type = VD->getType();
9900 if (Type->isDependentType() || Type->isInstantiationDependentType()) {
9901 // It will be analyzed later.
9902 Vars.push_back(DE);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00009903 SrcExprs.push_back(nullptr);
9904 DstExprs.push_back(nullptr);
9905 AssignmentOps.push_back(nullptr);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009906 continue;
9907 }
9908
9909 // OpenMP [2.14.4.1, Restrictions, C/C++, p.1]
9910 // A list item that appears in a copyin clause must be threadprivate.
9911 if (!DSAStack->isThreadPrivate(VD)) {
9912 Diag(ELoc, diag::err_omp_required_access)
Alexey Bataeved09d242014-05-28 05:53:51 +00009913 << getOpenMPClauseName(OMPC_copyin)
9914 << getOpenMPDirectiveName(OMPD_threadprivate);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009915 continue;
9916 }
9917
9918 // OpenMP [2.14.4.1, Restrictions, C/C++, p.2]
9919 // A variable of class type (or array thereof) that appears in a
Alexey Bataev23b69422014-06-18 07:08:49 +00009920 // copyin clause requires an accessible, unambiguous copy assignment
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009921 // operator for the class type.
Alexey Bataevf120c0d2015-05-19 07:46:42 +00009922 auto ElemType = Context.getBaseElementType(Type).getNonReferenceType();
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00009923 auto *SrcVD =
9924 buildVarDecl(*this, DE->getLocStart(), ElemType.getUnqualifiedType(),
9925 ".copyin.src", VD->hasAttrs() ? &VD->getAttrs() : nullptr);
Alexey Bataev39f915b82015-05-08 10:41:21 +00009926 auto *PseudoSrcExpr = buildDeclRefExpr(
Alexey Bataevf120c0d2015-05-19 07:46:42 +00009927 *this, SrcVD, ElemType.getUnqualifiedType(), DE->getExprLoc());
9928 auto *DstVD =
Alexey Bataev1d7f0fa2015-09-10 09:48:30 +00009929 buildVarDecl(*this, DE->getLocStart(), ElemType, ".copyin.dst",
9930 VD->hasAttrs() ? &VD->getAttrs() : nullptr);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00009931 auto *PseudoDstExpr =
Alexey Bataevf120c0d2015-05-19 07:46:42 +00009932 buildDeclRefExpr(*this, DstVD, ElemType, DE->getExprLoc());
Alexey Bataevf56f98c2015-04-16 05:39:01 +00009933 // For arrays generate assignment operation for single element and replace
9934 // it by the original array element in CodeGen.
9935 auto AssignmentOp = BuildBinOp(/*S=*/nullptr, DE->getExprLoc(), BO_Assign,
9936 PseudoDstExpr, PseudoSrcExpr);
9937 if (AssignmentOp.isInvalid())
9938 continue;
9939 AssignmentOp = ActOnFinishFullExpr(AssignmentOp.get(), DE->getExprLoc(),
9940 /*DiscardedValue=*/true);
9941 if (AssignmentOp.isInvalid())
9942 continue;
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009943
9944 DSAStack->addDSA(VD, DE, OMPC_copyin);
9945 Vars.push_back(DE);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00009946 SrcExprs.push_back(PseudoSrcExpr);
9947 DstExprs.push_back(PseudoDstExpr);
9948 AssignmentOps.push_back(AssignmentOp.get());
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009949 }
9950
Alexey Bataeved09d242014-05-28 05:53:51 +00009951 if (Vars.empty())
9952 return nullptr;
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009953
Alexey Bataevf56f98c2015-04-16 05:39:01 +00009954 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars,
9955 SrcExprs, DstExprs, AssignmentOps);
Alexey Bataevd48bcd82014-03-31 03:36:38 +00009956}
9957
Alexey Bataevbae9a792014-06-27 10:37:06 +00009958OMPClause *Sema::ActOnOpenMPCopyprivateClause(ArrayRef<Expr *> VarList,
9959 SourceLocation StartLoc,
9960 SourceLocation LParenLoc,
9961 SourceLocation EndLoc) {
9962 SmallVector<Expr *, 8> Vars;
Alexey Bataeva63048e2015-03-23 06:18:07 +00009963 SmallVector<Expr *, 8> SrcExprs;
9964 SmallVector<Expr *, 8> DstExprs;
9965 SmallVector<Expr *, 8> AssignmentOps;
Alexey Bataevbae9a792014-06-27 10:37:06 +00009966 for (auto &RefExpr : VarList) {
Alexey Bataeve122da12016-03-17 10:50:17 +00009967 assert(RefExpr && "NULL expr in OpenMP linear clause.");
9968 SourceLocation ELoc;
9969 SourceRange ERange;
9970 Expr *SimpleRefExpr = RefExpr;
9971 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange,
9972 /*AllowArraySection=*/false);
9973 if (Res.second) {
Alexey Bataevbae9a792014-06-27 10:37:06 +00009974 // It will be analyzed later.
9975 Vars.push_back(RefExpr);
Alexey Bataeva63048e2015-03-23 06:18:07 +00009976 SrcExprs.push_back(nullptr);
9977 DstExprs.push_back(nullptr);
9978 AssignmentOps.push_back(nullptr);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009979 }
Alexey Bataeve122da12016-03-17 10:50:17 +00009980 ValueDecl *D = Res.first;
9981 if (!D)
Alexey Bataevbae9a792014-06-27 10:37:06 +00009982 continue;
Alexey Bataevbae9a792014-06-27 10:37:06 +00009983
Alexey Bataeve122da12016-03-17 10:50:17 +00009984 QualType Type = D->getType();
9985 auto *VD = dyn_cast<VarDecl>(D);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009986
9987 // OpenMP [2.14.4.2, Restrictions, p.2]
9988 // A list item that appears in a copyprivate clause may not appear in a
9989 // private or firstprivate clause on the single construct.
Alexey Bataeve122da12016-03-17 10:50:17 +00009990 if (!VD || !DSAStack->isThreadPrivate(VD)) {
9991 auto DVar = DSAStack->getTopDSA(D, false);
Alexey Bataeva63048e2015-03-23 06:18:07 +00009992 if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_copyprivate &&
9993 DVar.RefExpr) {
Alexey Bataevbae9a792014-06-27 10:37:06 +00009994 Diag(ELoc, diag::err_omp_wrong_dsa)
9995 << getOpenMPClauseName(DVar.CKind)
9996 << getOpenMPClauseName(OMPC_copyprivate);
Alexey Bataeve122da12016-03-17 10:50:17 +00009997 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevbae9a792014-06-27 10:37:06 +00009998 continue;
9999 }
10000
10001 // OpenMP [2.11.4.2, Restrictions, p.1]
10002 // All list items that appear in a copyprivate clause must be either
10003 // threadprivate or private in the enclosing context.
10004 if (DVar.CKind == OMPC_unknown) {
Alexey Bataeve122da12016-03-17 10:50:17 +000010005 DVar = DSAStack->getImplicitDSA(D, false);
Alexey Bataevbae9a792014-06-27 10:37:06 +000010006 if (DVar.CKind == OMPC_shared) {
10007 Diag(ELoc, diag::err_omp_required_access)
10008 << getOpenMPClauseName(OMPC_copyprivate)
10009 << "threadprivate or private in the enclosing context";
Alexey Bataeve122da12016-03-17 10:50:17 +000010010 ReportOriginalDSA(*this, DSAStack, D, DVar);
Alexey Bataevbae9a792014-06-27 10:37:06 +000010011 continue;
10012 }
10013 }
10014 }
10015
Alexey Bataev7a3e5852015-05-19 08:19:24 +000010016 // Variably modified types are not supported.
Alexey Bataev5129d3a2015-05-21 09:47:46 +000010017 if (!Type->isAnyPointerType() && Type->isVariablyModifiedType()) {
Alexey Bataev7a3e5852015-05-19 08:19:24 +000010018 Diag(ELoc, diag::err_omp_variably_modified_type_not_supported)
Alexey Bataevccb59ec2015-05-19 08:44:56 +000010019 << getOpenMPClauseName(OMPC_copyprivate) << Type
10020 << getOpenMPDirectiveName(DSAStack->getCurrentDirective());
Alexey Bataev7a3e5852015-05-19 08:19:24 +000010021 bool IsDecl =
Alexey Bataeve122da12016-03-17 10:50:17 +000010022 !VD ||
Alexey Bataev7a3e5852015-05-19 08:19:24 +000010023 VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
Alexey Bataeve122da12016-03-17 10:50:17 +000010024 Diag(D->getLocation(),
Alexey Bataev7a3e5852015-05-19 08:19:24 +000010025 IsDecl ? diag::note_previous_decl : diag::note_defined_here)
Alexey Bataeve122da12016-03-17 10:50:17 +000010026 << D;
Alexey Bataev7a3e5852015-05-19 08:19:24 +000010027 continue;
10028 }
Alexey Bataevccb59ec2015-05-19 08:44:56 +000010029
Alexey Bataevbae9a792014-06-27 10:37:06 +000010030 // OpenMP [2.14.4.1, Restrictions, C/C++, p.2]
10031 // A variable of class type (or array thereof) that appears in a
10032 // copyin clause requires an accessible, unambiguous copy assignment
10033 // operator for the class type.
Alexey Bataevbd9fec12015-08-18 06:47:21 +000010034 Type = Context.getBaseElementType(Type.getNonReferenceType())
10035 .getUnqualifiedType();
Alexey Bataev420d45b2015-04-14 05:11:24 +000010036 auto *SrcVD =
Alexey Bataeve122da12016-03-17 10:50:17 +000010037 buildVarDecl(*this, RefExpr->getLocStart(), Type, ".copyprivate.src",
10038 D->hasAttrs() ? &D->getAttrs() : nullptr);
10039 auto *PseudoSrcExpr = buildDeclRefExpr(*this, SrcVD, Type, ELoc);
Alexey Bataev420d45b2015-04-14 05:11:24 +000010040 auto *DstVD =
Alexey Bataeve122da12016-03-17 10:50:17 +000010041 buildVarDecl(*this, RefExpr->getLocStart(), Type, ".copyprivate.dst",
10042 D->hasAttrs() ? &D->getAttrs() : nullptr);
Alexey Bataev420d45b2015-04-14 05:11:24 +000010043 auto *PseudoDstExpr =
Alexey Bataeve122da12016-03-17 10:50:17 +000010044 buildDeclRefExpr(*this, DstVD, Type, ELoc);
10045 auto AssignmentOp = BuildBinOp(DSAStack->getCurScope(), ELoc, BO_Assign,
Alexey Bataeva63048e2015-03-23 06:18:07 +000010046 PseudoDstExpr, PseudoSrcExpr);
10047 if (AssignmentOp.isInvalid())
10048 continue;
Alexey Bataeve122da12016-03-17 10:50:17 +000010049 AssignmentOp = ActOnFinishFullExpr(AssignmentOp.get(), ELoc,
Alexey Bataeva63048e2015-03-23 06:18:07 +000010050 /*DiscardedValue=*/true);
10051 if (AssignmentOp.isInvalid())
10052 continue;
Alexey Bataevbae9a792014-06-27 10:37:06 +000010053
10054 // No need to mark vars as copyprivate, they are already threadprivate or
10055 // implicitly private.
Alexey Bataeve122da12016-03-17 10:50:17 +000010056 assert(VD || IsOpenMPCapturedDecl(D));
10057 Vars.push_back(
10058 VD ? RefExpr->IgnoreParens()
10059 : buildCapture(*this, D, SimpleRefExpr, /*WithInit=*/false));
Alexey Bataeva63048e2015-03-23 06:18:07 +000010060 SrcExprs.push_back(PseudoSrcExpr);
10061 DstExprs.push_back(PseudoDstExpr);
10062 AssignmentOps.push_back(AssignmentOp.get());
Alexey Bataevbae9a792014-06-27 10:37:06 +000010063 }
10064
10065 if (Vars.empty())
10066 return nullptr;
10067
Alexey Bataeva63048e2015-03-23 06:18:07 +000010068 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
10069 Vars, SrcExprs, DstExprs, AssignmentOps);
Alexey Bataevbae9a792014-06-27 10:37:06 +000010070}
10071
Alexey Bataev6125da92014-07-21 11:26:11 +000010072OMPClause *Sema::ActOnOpenMPFlushClause(ArrayRef<Expr *> VarList,
10073 SourceLocation StartLoc,
10074 SourceLocation LParenLoc,
10075 SourceLocation EndLoc) {
10076 if (VarList.empty())
10077 return nullptr;
10078
10079 return OMPFlushClause::Create(Context, StartLoc, LParenLoc, EndLoc, VarList);
10080}
Alexey Bataevdea47612014-07-23 07:46:59 +000010081
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +000010082OMPClause *
10083Sema::ActOnOpenMPDependClause(OpenMPDependClauseKind DepKind,
10084 SourceLocation DepLoc, SourceLocation ColonLoc,
10085 ArrayRef<Expr *> VarList, SourceLocation StartLoc,
10086 SourceLocation LParenLoc, SourceLocation EndLoc) {
Alexey Bataeveb482352015-12-18 05:05:56 +000010087 if (DSAStack->getCurrentDirective() == OMPD_ordered &&
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010088 DepKind != OMPC_DEPEND_source && DepKind != OMPC_DEPEND_sink) {
Alexey Bataeveb482352015-12-18 05:05:56 +000010089 Diag(DepLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataev6402bca2015-12-28 07:25:51 +000010090 << "'source' or 'sink'" << getOpenMPClauseName(OMPC_depend);
Alexey Bataeveb482352015-12-18 05:05:56 +000010091 return nullptr;
10092 }
10093 if (DSAStack->getCurrentDirective() != OMPD_ordered &&
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010094 (DepKind == OMPC_DEPEND_unknown || DepKind == OMPC_DEPEND_source ||
10095 DepKind == OMPC_DEPEND_sink)) {
Alexey Bataev6402bca2015-12-28 07:25:51 +000010096 unsigned Except[] = {OMPC_DEPEND_source, OMPC_DEPEND_sink};
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +000010097 Diag(DepLoc, diag::err_omp_unexpected_clause_value)
Alexey Bataev6402bca2015-12-28 07:25:51 +000010098 << getListOfPossibleValues(OMPC_depend, /*First=*/0,
10099 /*Last=*/OMPC_DEPEND_unknown, Except)
10100 << getOpenMPClauseName(OMPC_depend);
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +000010101 return nullptr;
10102 }
10103 SmallVector<Expr *, 8> Vars;
Alexey Bataev8b427062016-05-25 12:36:08 +000010104 DSAStackTy::OperatorOffsetTy OpsOffs;
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010105 llvm::APSInt DepCounter(/*BitWidth=*/32);
10106 llvm::APSInt TotalDepCount(/*BitWidth=*/32);
10107 if (DepKind == OMPC_DEPEND_sink) {
10108 if (auto *OrderedCountExpr = DSAStack->getParentOrderedRegionParam()) {
10109 TotalDepCount = OrderedCountExpr->EvaluateKnownConstInt(Context);
10110 TotalDepCount.setIsUnsigned(/*Val=*/true);
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +000010111 }
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +000010112 }
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010113 if ((DepKind != OMPC_DEPEND_sink && DepKind != OMPC_DEPEND_source) ||
10114 DSAStack->getParentOrderedRegionParam()) {
10115 for (auto &RefExpr : VarList) {
10116 assert(RefExpr && "NULL expr in OpenMP shared clause.");
Alexey Bataev8b427062016-05-25 12:36:08 +000010117 if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010118 // It will be analyzed later.
10119 Vars.push_back(RefExpr);
10120 continue;
10121 }
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +000010122
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010123 SourceLocation ELoc = RefExpr->getExprLoc();
10124 auto *SimpleExpr = RefExpr->IgnoreParenCasts();
10125 if (DepKind == OMPC_DEPEND_sink) {
10126 if (DepCounter >= TotalDepCount) {
10127 Diag(ELoc, diag::err_omp_depend_sink_unexpected_expr);
10128 continue;
10129 }
10130 ++DepCounter;
10131 // OpenMP [2.13.9, Summary]
10132 // depend(dependence-type : vec), where dependence-type is:
10133 // 'sink' and where vec is the iteration vector, which has the form:
10134 // x1 [+- d1], x2 [+- d2 ], . . . , xn [+- dn]
10135 // where n is the value specified by the ordered clause in the loop
10136 // directive, xi denotes the loop iteration variable of the i-th nested
10137 // loop associated with the loop directive, and di is a constant
10138 // non-negative integer.
Alexey Bataev8b427062016-05-25 12:36:08 +000010139 if (CurContext->isDependentContext()) {
10140 // It will be analyzed later.
10141 Vars.push_back(RefExpr);
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010142 continue;
10143 }
Alexey Bataev8b427062016-05-25 12:36:08 +000010144 SimpleExpr = SimpleExpr->IgnoreImplicit();
10145 OverloadedOperatorKind OOK = OO_None;
10146 SourceLocation OOLoc;
10147 Expr *LHS = SimpleExpr;
10148 Expr *RHS = nullptr;
10149 if (auto *BO = dyn_cast<BinaryOperator>(SimpleExpr)) {
10150 OOK = BinaryOperator::getOverloadedOperator(BO->getOpcode());
10151 OOLoc = BO->getOperatorLoc();
10152 LHS = BO->getLHS()->IgnoreParenImpCasts();
10153 RHS = BO->getRHS()->IgnoreParenImpCasts();
10154 } else if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(SimpleExpr)) {
10155 OOK = OCE->getOperator();
10156 OOLoc = OCE->getOperatorLoc();
10157 LHS = OCE->getArg(/*Arg=*/0)->IgnoreParenImpCasts();
10158 RHS = OCE->getArg(/*Arg=*/1)->IgnoreParenImpCasts();
10159 } else if (auto *MCE = dyn_cast<CXXMemberCallExpr>(SimpleExpr)) {
10160 OOK = MCE->getMethodDecl()
10161 ->getNameInfo()
10162 .getName()
10163 .getCXXOverloadedOperator();
10164 OOLoc = MCE->getCallee()->getExprLoc();
10165 LHS = MCE->getImplicitObjectArgument()->IgnoreParenImpCasts();
10166 RHS = MCE->getArg(/*Arg=*/0)->IgnoreParenImpCasts();
10167 }
10168 SourceLocation ELoc;
10169 SourceRange ERange;
10170 auto Res = getPrivateItem(*this, LHS, ELoc, ERange,
10171 /*AllowArraySection=*/false);
10172 if (Res.second) {
10173 // It will be analyzed later.
10174 Vars.push_back(RefExpr);
10175 }
10176 ValueDecl *D = Res.first;
10177 if (!D)
10178 continue;
10179
10180 if (OOK != OO_Plus && OOK != OO_Minus && (RHS || OOK != OO_None)) {
10181 Diag(OOLoc, diag::err_omp_depend_sink_expected_plus_minus);
10182 continue;
10183 }
10184 if (RHS) {
10185 ExprResult RHSRes = VerifyPositiveIntegerConstantInClause(
10186 RHS, OMPC_depend, /*StrictlyPositive=*/false);
10187 if (RHSRes.isInvalid())
10188 continue;
10189 }
10190 if (!CurContext->isDependentContext() &&
10191 DSAStack->getParentOrderedRegionParam() &&
10192 DepCounter != DSAStack->isParentLoopControlVariable(D).first) {
10193 Diag(ELoc, diag::err_omp_depend_sink_expected_loop_iteration)
10194 << DSAStack->getParentLoopControlVariable(
10195 DepCounter.getZExtValue());
10196 continue;
10197 }
10198 OpsOffs.push_back({RHS, OOK});
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010199 } else {
10200 // OpenMP [2.11.1.1, Restrictions, p.3]
10201 // A variable that is part of another variable (such as a field of a
10202 // structure) but is not an array element or an array section cannot
10203 // appear in a depend clause.
10204 auto *DE = dyn_cast<DeclRefExpr>(SimpleExpr);
10205 auto *ASE = dyn_cast<ArraySubscriptExpr>(SimpleExpr);
10206 auto *OASE = dyn_cast<OMPArraySectionExpr>(SimpleExpr);
10207 if (!RefExpr->IgnoreParenImpCasts()->isLValue() ||
10208 (!ASE && !DE && !OASE) || (DE && !isa<VarDecl>(DE->getDecl())) ||
Alexey Bataev31300ed2016-02-04 11:27:03 +000010209 (ASE &&
10210 !ASE->getBase()
10211 ->getType()
10212 .getNonReferenceType()
10213 ->isPointerType() &&
10214 !ASE->getBase()->getType().getNonReferenceType()->isArrayType())) {
Alexey Bataev48c0bfb2016-01-20 09:07:54 +000010215 Diag(ELoc, diag::err_omp_expected_var_name_member_expr_or_array_item)
10216 << 0 << RefExpr->getSourceRange();
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010217 continue;
10218 }
10219 }
Alexey Bataeva636c7f2015-12-23 10:27:45 +000010220 Vars.push_back(RefExpr->IgnoreParenImpCasts());
10221 }
10222
10223 if (!CurContext->isDependentContext() && DepKind == OMPC_DEPEND_sink &&
10224 TotalDepCount > VarList.size() &&
10225 DSAStack->getParentOrderedRegionParam()) {
10226 Diag(EndLoc, diag::err_omp_depend_sink_expected_loop_iteration)
10227 << DSAStack->getParentLoopControlVariable(VarList.size() + 1);
10228 }
10229 if (DepKind != OMPC_DEPEND_source && DepKind != OMPC_DEPEND_sink &&
10230 Vars.empty())
10231 return nullptr;
10232 }
Alexey Bataev8b427062016-05-25 12:36:08 +000010233 auto *C = OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc,
10234 DepKind, DepLoc, ColonLoc, Vars);
10235 if (DepKind == OMPC_DEPEND_sink || DepKind == OMPC_DEPEND_source)
10236 DSAStack->addDoacrossDependClause(C, OpsOffs);
10237 return C;
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +000010238}
Michael Wonge710d542015-08-07 16:16:36 +000010239
10240OMPClause *Sema::ActOnOpenMPDeviceClause(Expr *Device, SourceLocation StartLoc,
10241 SourceLocation LParenLoc,
10242 SourceLocation EndLoc) {
10243 Expr *ValExpr = Device;
Michael Wonge710d542015-08-07 16:16:36 +000010244
Kelvin Lia15fb1a2015-11-27 18:47:36 +000010245 // OpenMP [2.9.1, Restrictions]
10246 // The device expression must evaluate to a non-negative integer value.
Alexey Bataeva0569352015-12-01 10:17:31 +000010247 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_device,
10248 /*StrictlyPositive=*/false))
Kelvin Lia15fb1a2015-11-27 18:47:36 +000010249 return nullptr;
10250
Michael Wonge710d542015-08-07 16:16:36 +000010251 return new (Context) OMPDeviceClause(ValExpr, StartLoc, LParenLoc, EndLoc);
10252}
Kelvin Li0bff7af2015-11-23 05:32:03 +000010253
10254static bool IsCXXRecordForMappable(Sema &SemaRef, SourceLocation Loc,
10255 DSAStackTy *Stack, CXXRecordDecl *RD) {
10256 if (!RD || RD->isInvalidDecl())
10257 return true;
10258
Alexey Bataevc9bd03d2015-12-17 06:55:08 +000010259 if (auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(RD))
10260 if (auto *CTD = CTSD->getSpecializedTemplate())
10261 RD = CTD->getTemplatedDecl();
Kelvin Li0bff7af2015-11-23 05:32:03 +000010262 auto QTy = SemaRef.Context.getRecordType(RD);
10263 if (RD->isDynamicClass()) {
10264 SemaRef.Diag(Loc, diag::err_omp_not_mappable_type) << QTy;
10265 SemaRef.Diag(RD->getLocation(), diag::note_omp_polymorphic_in_target);
10266 return false;
10267 }
10268 auto *DC = RD;
10269 bool IsCorrect = true;
10270 for (auto *I : DC->decls()) {
10271 if (I) {
10272 if (auto *MD = dyn_cast<CXXMethodDecl>(I)) {
10273 if (MD->isStatic()) {
10274 SemaRef.Diag(Loc, diag::err_omp_not_mappable_type) << QTy;
10275 SemaRef.Diag(MD->getLocation(),
10276 diag::note_omp_static_member_in_target);
10277 IsCorrect = false;
10278 }
10279 } else if (auto *VD = dyn_cast<VarDecl>(I)) {
10280 if (VD->isStaticDataMember()) {
10281 SemaRef.Diag(Loc, diag::err_omp_not_mappable_type) << QTy;
10282 SemaRef.Diag(VD->getLocation(),
10283 diag::note_omp_static_member_in_target);
10284 IsCorrect = false;
10285 }
10286 }
10287 }
10288 }
10289
10290 for (auto &I : RD->bases()) {
10291 if (!IsCXXRecordForMappable(SemaRef, I.getLocStart(), Stack,
10292 I.getType()->getAsCXXRecordDecl()))
10293 IsCorrect = false;
10294 }
10295 return IsCorrect;
10296}
10297
10298static bool CheckTypeMappable(SourceLocation SL, SourceRange SR, Sema &SemaRef,
10299 DSAStackTy *Stack, QualType QTy) {
10300 NamedDecl *ND;
10301 if (QTy->isIncompleteType(&ND)) {
10302 SemaRef.Diag(SL, diag::err_incomplete_type) << QTy << SR;
10303 return false;
10304 } else if (CXXRecordDecl *RD = dyn_cast_or_null<CXXRecordDecl>(ND)) {
10305 if (!RD->isInvalidDecl() &&
10306 !IsCXXRecordForMappable(SemaRef, SL, Stack, RD))
10307 return false;
10308 }
10309 return true;
10310}
10311
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010312/// \brief Return true if it can be proven that the provided array expression
10313/// (array section or array subscript) does NOT specify the whole size of the
10314/// array whose base type is \a BaseQTy.
10315static bool CheckArrayExpressionDoesNotReferToWholeSize(Sema &SemaRef,
10316 const Expr *E,
10317 QualType BaseQTy) {
10318 auto *OASE = dyn_cast<OMPArraySectionExpr>(E);
10319
10320 // If this is an array subscript, it refers to the whole size if the size of
10321 // the dimension is constant and equals 1. Also, an array section assumes the
10322 // format of an array subscript if no colon is used.
10323 if (isa<ArraySubscriptExpr>(E) || (OASE && OASE->getColonLoc().isInvalid())) {
10324 if (auto *ATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr()))
10325 return ATy->getSize().getSExtValue() != 1;
10326 // Size can't be evaluated statically.
10327 return false;
10328 }
10329
10330 assert(OASE && "Expecting array section if not an array subscript.");
10331 auto *LowerBound = OASE->getLowerBound();
10332 auto *Length = OASE->getLength();
10333
10334 // If there is a lower bound that does not evaluates to zero, we are not
10335 // convering the whole dimension.
10336 if (LowerBound) {
10337 llvm::APSInt ConstLowerBound;
10338 if (!LowerBound->EvaluateAsInt(ConstLowerBound, SemaRef.getASTContext()))
10339 return false; // Can't get the integer value as a constant.
10340 if (ConstLowerBound.getSExtValue())
10341 return true;
10342 }
10343
10344 // If we don't have a length we covering the whole dimension.
10345 if (!Length)
10346 return false;
10347
10348 // If the base is a pointer, we don't have a way to get the size of the
10349 // pointee.
10350 if (BaseQTy->isPointerType())
10351 return false;
10352
10353 // We can only check if the length is the same as the size of the dimension
10354 // if we have a constant array.
10355 auto *CATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr());
10356 if (!CATy)
10357 return false;
10358
10359 llvm::APSInt ConstLength;
10360 if (!Length->EvaluateAsInt(ConstLength, SemaRef.getASTContext()))
10361 return false; // Can't get the integer value as a constant.
10362
10363 return CATy->getSize().getSExtValue() != ConstLength.getSExtValue();
10364}
10365
10366// Return true if it can be proven that the provided array expression (array
10367// section or array subscript) does NOT specify a single element of the array
10368// whose base type is \a BaseQTy.
10369static bool CheckArrayExpressionDoesNotReferToUnitySize(Sema &SemaRef,
10370 const Expr *E,
10371 QualType BaseQTy) {
10372 auto *OASE = dyn_cast<OMPArraySectionExpr>(E);
10373
10374 // An array subscript always refer to a single element. Also, an array section
10375 // assumes the format of an array subscript if no colon is used.
10376 if (isa<ArraySubscriptExpr>(E) || (OASE && OASE->getColonLoc().isInvalid()))
10377 return false;
10378
10379 assert(OASE && "Expecting array section if not an array subscript.");
10380 auto *Length = OASE->getLength();
10381
10382 // If we don't have a length we have to check if the array has unitary size
10383 // for this dimension. Also, we should always expect a length if the base type
10384 // is pointer.
10385 if (!Length) {
10386 if (auto *ATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr()))
10387 return ATy->getSize().getSExtValue() != 1;
10388 // We cannot assume anything.
10389 return false;
10390 }
10391
10392 // Check if the length evaluates to 1.
10393 llvm::APSInt ConstLength;
10394 if (!Length->EvaluateAsInt(ConstLength, SemaRef.getASTContext()))
10395 return false; // Can't get the integer value as a constant.
10396
10397 return ConstLength.getSExtValue() != 1;
10398}
10399
Samuel Antao661c0902016-05-26 17:39:58 +000010400// Return the expression of the base of the mappable expression or null if it
10401// cannot be determined and do all the necessary checks to see if the expression
10402// is valid as a standalone mappable expression. In the process, record all the
Samuel Antao90927002016-04-26 14:54:23 +000010403// components of the expression.
10404static Expr *CheckMapClauseExpressionBase(
10405 Sema &SemaRef, Expr *E,
Samuel Antao661c0902016-05-26 17:39:58 +000010406 OMPClauseMappableExprCommon::MappableExprComponentList &CurComponents,
10407 OpenMPClauseKind CKind) {
Samuel Antao5de996e2016-01-22 20:21:36 +000010408 SourceLocation ELoc = E->getExprLoc();
10409 SourceRange ERange = E->getSourceRange();
10410
10411 // The base of elements of list in a map clause have to be either:
10412 // - a reference to variable or field.
10413 // - a member expression.
10414 // - an array expression.
10415 //
10416 // E.g. if we have the expression 'r.S.Arr[:12]', we want to retrieve the
10417 // reference to 'r'.
10418 //
10419 // If we have:
10420 //
10421 // struct SS {
10422 // Bla S;
10423 // foo() {
10424 // #pragma omp target map (S.Arr[:12]);
10425 // }
10426 // }
10427 //
10428 // We want to retrieve the member expression 'this->S';
10429
10430 Expr *RelevantExpr = nullptr;
10431
Samuel Antao5de996e2016-01-22 20:21:36 +000010432 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.2]
10433 // If a list item is an array section, it must specify contiguous storage.
10434 //
10435 // For this restriction it is sufficient that we make sure only references
10436 // to variables or fields and array expressions, and that no array sections
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010437 // exist except in the rightmost expression (unless they cover the whole
10438 // dimension of the array). E.g. these would be invalid:
Samuel Antao5de996e2016-01-22 20:21:36 +000010439 //
10440 // r.ArrS[3:5].Arr[6:7]
10441 //
10442 // r.ArrS[3:5].x
10443 //
10444 // but these would be valid:
10445 // r.ArrS[3].Arr[6:7]
10446 //
10447 // r.ArrS[3].x
10448
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010449 bool AllowUnitySizeArraySection = true;
10450 bool AllowWholeSizeArraySection = true;
Samuel Antao5de996e2016-01-22 20:21:36 +000010451
Dmitry Polukhin644a9252016-03-11 07:58:34 +000010452 while (!RelevantExpr) {
Samuel Antao5de996e2016-01-22 20:21:36 +000010453 E = E->IgnoreParenImpCasts();
10454
10455 if (auto *CurE = dyn_cast<DeclRefExpr>(E)) {
10456 if (!isa<VarDecl>(CurE->getDecl()))
10457 break;
10458
10459 RelevantExpr = CurE;
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010460
10461 // If we got a reference to a declaration, we should not expect any array
10462 // section before that.
10463 AllowUnitySizeArraySection = false;
10464 AllowWholeSizeArraySection = false;
Samuel Antao90927002016-04-26 14:54:23 +000010465
10466 // Record the component.
10467 CurComponents.push_back(OMPClauseMappableExprCommon::MappableComponent(
10468 CurE, CurE->getDecl()));
Samuel Antao5de996e2016-01-22 20:21:36 +000010469 continue;
10470 }
10471
10472 if (auto *CurE = dyn_cast<MemberExpr>(E)) {
10473 auto *BaseE = CurE->getBase()->IgnoreParenImpCasts();
10474
10475 if (isa<CXXThisExpr>(BaseE))
10476 // We found a base expression: this->Val.
10477 RelevantExpr = CurE;
10478 else
10479 E = BaseE;
10480
10481 if (!isa<FieldDecl>(CurE->getMemberDecl())) {
10482 SemaRef.Diag(ELoc, diag::err_omp_expected_access_to_data_field)
10483 << CurE->getSourceRange();
10484 break;
10485 }
10486
10487 auto *FD = cast<FieldDecl>(CurE->getMemberDecl());
10488
10489 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C/C++, p.3]
10490 // A bit-field cannot appear in a map clause.
10491 //
10492 if (FD->isBitField()) {
Samuel Antao661c0902016-05-26 17:39:58 +000010493 SemaRef.Diag(ELoc, diag::err_omp_bit_fields_forbidden_in_clause)
10494 << CurE->getSourceRange() << getOpenMPClauseName(CKind);
Samuel Antao5de996e2016-01-22 20:21:36 +000010495 break;
10496 }
10497
10498 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C++, p.1]
10499 // If the type of a list item is a reference to a type T then the type
10500 // will be considered to be T for all purposes of this clause.
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010501 QualType CurType = BaseE->getType().getNonReferenceType();
Samuel Antao5de996e2016-01-22 20:21:36 +000010502
10503 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C/C++, p.2]
10504 // A list item cannot be a variable that is a member of a structure with
10505 // a union type.
10506 //
10507 if (auto *RT = CurType->getAs<RecordType>())
10508 if (RT->isUnionType()) {
10509 SemaRef.Diag(ELoc, diag::err_omp_union_type_not_allowed)
10510 << CurE->getSourceRange();
10511 break;
10512 }
10513
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010514 // If we got a member expression, we should not expect any array section
10515 // before that:
10516 //
10517 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.7]
10518 // If a list item is an element of a structure, only the rightmost symbol
10519 // of the variable reference can be an array section.
10520 //
10521 AllowUnitySizeArraySection = false;
10522 AllowWholeSizeArraySection = false;
Samuel Antao90927002016-04-26 14:54:23 +000010523
10524 // Record the component.
10525 CurComponents.push_back(
10526 OMPClauseMappableExprCommon::MappableComponent(CurE, FD));
Samuel Antao5de996e2016-01-22 20:21:36 +000010527 continue;
10528 }
10529
10530 if (auto *CurE = dyn_cast<ArraySubscriptExpr>(E)) {
10531 E = CurE->getBase()->IgnoreParenImpCasts();
10532
10533 if (!E->getType()->isAnyPointerType() && !E->getType()->isArrayType()) {
10534 SemaRef.Diag(ELoc, diag::err_omp_expected_base_var_name)
10535 << 0 << CurE->getSourceRange();
10536 break;
10537 }
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010538
10539 // If we got an array subscript that express the whole dimension we
10540 // can have any array expressions before. If it only expressing part of
10541 // the dimension, we can only have unitary-size array expressions.
10542 if (CheckArrayExpressionDoesNotReferToWholeSize(SemaRef, CurE,
10543 E->getType()))
10544 AllowWholeSizeArraySection = false;
Samuel Antao90927002016-04-26 14:54:23 +000010545
10546 // Record the component - we don't have any declaration associated.
10547 CurComponents.push_back(
10548 OMPClauseMappableExprCommon::MappableComponent(CurE, nullptr));
Samuel Antao5de996e2016-01-22 20:21:36 +000010549 continue;
10550 }
10551
10552 if (auto *CurE = dyn_cast<OMPArraySectionExpr>(E)) {
Samuel Antao5de996e2016-01-22 20:21:36 +000010553 E = CurE->getBase()->IgnoreParenImpCasts();
10554
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010555 auto CurType =
10556 OMPArraySectionExpr::getBaseOriginalType(E).getCanonicalType();
10557
Samuel Antao5de996e2016-01-22 20:21:36 +000010558 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C++, p.1]
10559 // If the type of a list item is a reference to a type T then the type
10560 // will be considered to be T for all purposes of this clause.
Samuel Antao5de996e2016-01-22 20:21:36 +000010561 if (CurType->isReferenceType())
10562 CurType = CurType->getPointeeType();
10563
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010564 bool IsPointer = CurType->isAnyPointerType();
10565
10566 if (!IsPointer && !CurType->isArrayType()) {
Samuel Antao5de996e2016-01-22 20:21:36 +000010567 SemaRef.Diag(ELoc, diag::err_omp_expected_base_var_name)
10568 << 0 << CurE->getSourceRange();
10569 break;
10570 }
10571
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010572 bool NotWhole =
10573 CheckArrayExpressionDoesNotReferToWholeSize(SemaRef, CurE, CurType);
10574 bool NotUnity =
10575 CheckArrayExpressionDoesNotReferToUnitySize(SemaRef, CurE, CurType);
10576
Samuel Antaodab51bb2016-07-18 23:22:11 +000010577 if (AllowWholeSizeArraySection) {
10578 // Any array section is currently allowed. Allowing a whole size array
10579 // section implies allowing a unity array section as well.
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010580 //
10581 // If this array section refers to the whole dimension we can still
10582 // accept other array sections before this one, except if the base is a
10583 // pointer. Otherwise, only unitary sections are accepted.
10584 if (NotWhole || IsPointer)
10585 AllowWholeSizeArraySection = false;
Samuel Antaodab51bb2016-07-18 23:22:11 +000010586 } else if (AllowUnitySizeArraySection && NotUnity) {
Samuel Antaoa9f35cb2016-03-09 15:46:05 +000010587 // A unity or whole array section is not allowed and that is not
10588 // compatible with the properties of the current array section.
10589 SemaRef.Diag(
10590 ELoc, diag::err_array_section_does_not_specify_contiguous_storage)
10591 << CurE->getSourceRange();
10592 break;
10593 }
Samuel Antao90927002016-04-26 14:54:23 +000010594
10595 // Record the component - we don't have any declaration associated.
10596 CurComponents.push_back(
10597 OMPClauseMappableExprCommon::MappableComponent(CurE, nullptr));
Samuel Antao5de996e2016-01-22 20:21:36 +000010598 continue;
10599 }
10600
10601 // If nothing else worked, this is not a valid map clause expression.
10602 SemaRef.Diag(ELoc,
10603 diag::err_omp_expected_named_var_member_or_array_expression)
10604 << ERange;
10605 break;
10606 }
10607
10608 return RelevantExpr;
10609}
10610
10611// Return true if expression E associated with value VD has conflicts with other
10612// map information.
Samuel Antao90927002016-04-26 14:54:23 +000010613static bool CheckMapConflicts(
10614 Sema &SemaRef, DSAStackTy *DSAS, ValueDecl *VD, Expr *E,
10615 bool CurrentRegionOnly,
Samuel Antao661c0902016-05-26 17:39:58 +000010616 OMPClauseMappableExprCommon::MappableExprComponentListRef CurComponents,
10617 OpenMPClauseKind CKind) {
Samuel Antao5de996e2016-01-22 20:21:36 +000010618 assert(VD && E);
Samuel Antao5de996e2016-01-22 20:21:36 +000010619 SourceLocation ELoc = E->getExprLoc();
10620 SourceRange ERange = E->getSourceRange();
10621
10622 // In order to easily check the conflicts we need to match each component of
10623 // the expression under test with the components of the expressions that are
10624 // already in the stack.
10625
Samuel Antao5de996e2016-01-22 20:21:36 +000010626 assert(!CurComponents.empty() && "Map clause expression with no components!");
Samuel Antao90927002016-04-26 14:54:23 +000010627 assert(CurComponents.back().getAssociatedDeclaration() == VD &&
Samuel Antao5de996e2016-01-22 20:21:36 +000010628 "Map clause expression with unexpected base!");
10629
10630 // Variables to help detecting enclosing problems in data environment nests.
10631 bool IsEnclosedByDataEnvironmentExpr = false;
Samuel Antao90927002016-04-26 14:54:23 +000010632 const Expr *EnclosingExpr = nullptr;
Samuel Antao5de996e2016-01-22 20:21:36 +000010633
Samuel Antao90927002016-04-26 14:54:23 +000010634 bool FoundError = DSAS->checkMappableExprComponentListsForDecl(
10635 VD, CurrentRegionOnly,
10636 [&](OMPClauseMappableExprCommon::MappableExprComponentListRef
10637 StackComponents) -> bool {
10638
Samuel Antao5de996e2016-01-22 20:21:36 +000010639 assert(!StackComponents.empty() &&
10640 "Map clause expression with no components!");
Samuel Antao90927002016-04-26 14:54:23 +000010641 assert(StackComponents.back().getAssociatedDeclaration() == VD &&
Samuel Antao5de996e2016-01-22 20:21:36 +000010642 "Map clause expression with unexpected base!");
10643
Samuel Antao90927002016-04-26 14:54:23 +000010644 // The whole expression in the stack.
10645 auto *RE = StackComponents.front().getAssociatedExpression();
10646
Samuel Antao5de996e2016-01-22 20:21:36 +000010647 // Expressions must start from the same base. Here we detect at which
10648 // point both expressions diverge from each other and see if we can
10649 // detect if the memory referred to both expressions is contiguous and
10650 // do not overlap.
10651 auto CI = CurComponents.rbegin();
10652 auto CE = CurComponents.rend();
10653 auto SI = StackComponents.rbegin();
10654 auto SE = StackComponents.rend();
10655 for (; CI != CE && SI != SE; ++CI, ++SI) {
10656
10657 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.3]
10658 // At most one list item can be an array item derived from a given
10659 // variable in map clauses of the same construct.
Samuel Antao90927002016-04-26 14:54:23 +000010660 if (CurrentRegionOnly &&
10661 (isa<ArraySubscriptExpr>(CI->getAssociatedExpression()) ||
10662 isa<OMPArraySectionExpr>(CI->getAssociatedExpression())) &&
10663 (isa<ArraySubscriptExpr>(SI->getAssociatedExpression()) ||
10664 isa<OMPArraySectionExpr>(SI->getAssociatedExpression()))) {
10665 SemaRef.Diag(CI->getAssociatedExpression()->getExprLoc(),
Samuel Antao5de996e2016-01-22 20:21:36 +000010666 diag::err_omp_multiple_array_items_in_map_clause)
Samuel Antao90927002016-04-26 14:54:23 +000010667 << CI->getAssociatedExpression()->getSourceRange();
10668 SemaRef.Diag(SI->getAssociatedExpression()->getExprLoc(),
10669 diag::note_used_here)
10670 << SI->getAssociatedExpression()->getSourceRange();
Samuel Antao5de996e2016-01-22 20:21:36 +000010671 return true;
10672 }
10673
10674 // Do both expressions have the same kind?
Samuel Antao90927002016-04-26 14:54:23 +000010675 if (CI->getAssociatedExpression()->getStmtClass() !=
10676 SI->getAssociatedExpression()->getStmtClass())
Samuel Antao5de996e2016-01-22 20:21:36 +000010677 break;
10678
10679 // Are we dealing with different variables/fields?
Samuel Antao90927002016-04-26 14:54:23 +000010680 if (CI->getAssociatedDeclaration() != SI->getAssociatedDeclaration())
Samuel Antao5de996e2016-01-22 20:21:36 +000010681 break;
10682 }
Kelvin Li9f645ae2016-07-18 22:49:16 +000010683 // Check if the extra components of the expressions in the enclosing
10684 // data environment are redundant for the current base declaration.
10685 // If they are, the maps completely overlap, which is legal.
10686 for (; SI != SE; ++SI) {
10687 QualType Type;
10688 if (auto *ASE =
10689 dyn_cast<ArraySubscriptExpr>(SI->getAssociatedExpression())) {
10690 Type = ASE->getBase()->IgnoreParenImpCasts()->getType();
10691 } else if (auto *OASE =
10692 dyn_cast<OMPArraySectionExpr>(SI->getAssociatedExpression())) {
10693 auto *E = OASE->getBase()->IgnoreParenImpCasts();
10694 Type =
10695 OMPArraySectionExpr::getBaseOriginalType(E).getCanonicalType();
10696 }
10697 if (Type.isNull() || Type->isAnyPointerType() ||
10698 CheckArrayExpressionDoesNotReferToWholeSize(
10699 SemaRef, SI->getAssociatedExpression(), Type))
10700 break;
10701 }
Samuel Antao5de996e2016-01-22 20:21:36 +000010702
10703 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.4]
10704 // List items of map clauses in the same construct must not share
10705 // original storage.
10706 //
10707 // If the expressions are exactly the same or one is a subset of the
10708 // other, it means they are sharing storage.
10709 if (CI == CE && SI == SE) {
10710 if (CurrentRegionOnly) {
Samuel Antao661c0902016-05-26 17:39:58 +000010711 if (CKind == OMPC_map)
10712 SemaRef.Diag(ELoc, diag::err_omp_map_shared_storage) << ERange;
10713 else {
Samuel Antaoec172c62016-05-26 17:49:04 +000010714 assert(CKind == OMPC_to || CKind == OMPC_from);
Samuel Antao661c0902016-05-26 17:39:58 +000010715 SemaRef.Diag(ELoc, diag::err_omp_once_referenced_in_target_update)
10716 << ERange;
10717 }
Samuel Antao5de996e2016-01-22 20:21:36 +000010718 SemaRef.Diag(RE->getExprLoc(), diag::note_used_here)
10719 << RE->getSourceRange();
10720 return true;
10721 } else {
10722 // If we find the same expression in the enclosing data environment,
10723 // that is legal.
10724 IsEnclosedByDataEnvironmentExpr = true;
10725 return false;
10726 }
10727 }
10728
Samuel Antao90927002016-04-26 14:54:23 +000010729 QualType DerivedType =
10730 std::prev(CI)->getAssociatedDeclaration()->getType();
10731 SourceLocation DerivedLoc =
10732 std::prev(CI)->getAssociatedExpression()->getExprLoc();
Samuel Antao5de996e2016-01-22 20:21:36 +000010733
10734 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C++, p.1]
10735 // If the type of a list item is a reference to a type T then the type
10736 // will be considered to be T for all purposes of this clause.
Samuel Antao90927002016-04-26 14:54:23 +000010737 DerivedType = DerivedType.getNonReferenceType();
Samuel Antao5de996e2016-01-22 20:21:36 +000010738
10739 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C/C++, p.1]
10740 // A variable for which the type is pointer and an array section
10741 // derived from that variable must not appear as list items of map
10742 // clauses of the same construct.
10743 //
10744 // Also, cover one of the cases in:
10745 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.5]
10746 // If any part of the original storage of a list item has corresponding
10747 // storage in the device data environment, all of the original storage
10748 // must have corresponding storage in the device data environment.
10749 //
10750 if (DerivedType->isAnyPointerType()) {
10751 if (CI == CE || SI == SE) {
10752 SemaRef.Diag(
10753 DerivedLoc,
10754 diag::err_omp_pointer_mapped_along_with_derived_section)
10755 << DerivedLoc;
10756 } else {
10757 assert(CI != CE && SI != SE);
10758 SemaRef.Diag(DerivedLoc, diag::err_omp_same_pointer_derreferenced)
10759 << DerivedLoc;
10760 }
10761 SemaRef.Diag(RE->getExprLoc(), diag::note_used_here)
10762 << RE->getSourceRange();
10763 return true;
10764 }
10765
10766 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.4]
10767 // List items of map clauses in the same construct must not share
10768 // original storage.
10769 //
10770 // An expression is a subset of the other.
10771 if (CurrentRegionOnly && (CI == CE || SI == SE)) {
Samuel Antao661c0902016-05-26 17:39:58 +000010772 if (CKind == OMPC_map)
10773 SemaRef.Diag(ELoc, diag::err_omp_map_shared_storage) << ERange;
10774 else {
Samuel Antaoec172c62016-05-26 17:49:04 +000010775 assert(CKind == OMPC_to || CKind == OMPC_from);
Samuel Antao661c0902016-05-26 17:39:58 +000010776 SemaRef.Diag(ELoc, diag::err_omp_once_referenced_in_target_update)
10777 << ERange;
10778 }
Samuel Antao5de996e2016-01-22 20:21:36 +000010779 SemaRef.Diag(RE->getExprLoc(), diag::note_used_here)
10780 << RE->getSourceRange();
10781 return true;
10782 }
10783
10784 // The current expression uses the same base as other expression in the
Samuel Antao90927002016-04-26 14:54:23 +000010785 // data environment but does not contain it completely.
Samuel Antao5de996e2016-01-22 20:21:36 +000010786 if (!CurrentRegionOnly && SI != SE)
10787 EnclosingExpr = RE;
10788
10789 // The current expression is a subset of the expression in the data
10790 // environment.
10791 IsEnclosedByDataEnvironmentExpr |=
10792 (!CurrentRegionOnly && CI != CE && SI == SE);
10793
10794 return false;
10795 });
10796
10797 if (CurrentRegionOnly)
10798 return FoundError;
10799
10800 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.5]
10801 // If any part of the original storage of a list item has corresponding
10802 // storage in the device data environment, all of the original storage must
10803 // have corresponding storage in the device data environment.
10804 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.6]
10805 // If a list item is an element of a structure, and a different element of
10806 // the structure has a corresponding list item in the device data environment
10807 // prior to a task encountering the construct associated with the map clause,
Samuel Antao90927002016-04-26 14:54:23 +000010808 // then the list item must also have a corresponding list item in the device
Samuel Antao5de996e2016-01-22 20:21:36 +000010809 // data environment prior to the task encountering the construct.
10810 //
10811 if (EnclosingExpr && !IsEnclosedByDataEnvironmentExpr) {
10812 SemaRef.Diag(ELoc,
10813 diag::err_omp_original_storage_is_shared_and_does_not_contain)
10814 << ERange;
10815 SemaRef.Diag(EnclosingExpr->getExprLoc(), diag::note_used_here)
10816 << EnclosingExpr->getSourceRange();
10817 return true;
10818 }
10819
10820 return FoundError;
10821}
10822
Samuel Antao661c0902016-05-26 17:39:58 +000010823namespace {
10824// Utility struct that gathers all the related lists associated with a mappable
10825// expression.
10826struct MappableVarListInfo final {
10827 // The list of expressions.
10828 ArrayRef<Expr *> VarList;
10829 // The list of processed expressions.
10830 SmallVector<Expr *, 16> ProcessedVarList;
10831 // The mappble components for each expression.
10832 OMPClauseMappableExprCommon::MappableExprComponentLists VarComponents;
10833 // The base declaration of the variable.
10834 SmallVector<ValueDecl *, 16> VarBaseDeclarations;
10835
10836 MappableVarListInfo(ArrayRef<Expr *> VarList) : VarList(VarList) {
10837 // We have a list of components and base declarations for each entry in the
10838 // variable list.
10839 VarComponents.reserve(VarList.size());
10840 VarBaseDeclarations.reserve(VarList.size());
10841 }
10842};
10843}
10844
10845// Check the validity of the provided variable list for the provided clause kind
10846// \a CKind. In the check process the valid expressions, and mappable expression
10847// components and variables are extracted and used to fill \a Vars,
10848// \a ClauseComponents, and \a ClauseBaseDeclarations. \a MapType and
10849// \a IsMapTypeImplicit are expected to be valid if the clause kind is 'map'.
10850static void
10851checkMappableExpressionList(Sema &SemaRef, DSAStackTy *DSAS,
10852 OpenMPClauseKind CKind, MappableVarListInfo &MVLI,
10853 SourceLocation StartLoc,
10854 OpenMPMapClauseKind MapType = OMPC_MAP_unknown,
10855 bool IsMapTypeImplicit = false) {
Samuel Antaoec172c62016-05-26 17:49:04 +000010856 // We only expect mappable expressions in 'to', 'from', and 'map' clauses.
10857 assert((CKind == OMPC_map || CKind == OMPC_to || CKind == OMPC_from) &&
Samuel Antao661c0902016-05-26 17:39:58 +000010858 "Unexpected clause kind with mappable expressions!");
Kelvin Li0bff7af2015-11-23 05:32:03 +000010859
Samuel Antao90927002016-04-26 14:54:23 +000010860 // Keep track of the mappable components and base declarations in this clause.
10861 // Each entry in the list is going to have a list of components associated. We
10862 // record each set of the components so that we can build the clause later on.
10863 // In the end we should have the same amount of declarations and component
10864 // lists.
Samuel Antao90927002016-04-26 14:54:23 +000010865
Samuel Antao661c0902016-05-26 17:39:58 +000010866 for (auto &RE : MVLI.VarList) {
Samuel Antaoec172c62016-05-26 17:49:04 +000010867 assert(RE && "Null expr in omp to/from/map clause");
Kelvin Li0bff7af2015-11-23 05:32:03 +000010868 SourceLocation ELoc = RE->getExprLoc();
10869
Kelvin Li0bff7af2015-11-23 05:32:03 +000010870 auto *VE = RE->IgnoreParenLValueCasts();
10871
10872 if (VE->isValueDependent() || VE->isTypeDependent() ||
10873 VE->isInstantiationDependent() ||
10874 VE->containsUnexpandedParameterPack()) {
Samuel Antao5de996e2016-01-22 20:21:36 +000010875 // We can only analyze this information once the missing information is
10876 // resolved.
Samuel Antao661c0902016-05-26 17:39:58 +000010877 MVLI.ProcessedVarList.push_back(RE);
Kelvin Li0bff7af2015-11-23 05:32:03 +000010878 continue;
10879 }
10880
10881 auto *SimpleExpr = RE->IgnoreParenCasts();
Kelvin Li0bff7af2015-11-23 05:32:03 +000010882
Samuel Antao5de996e2016-01-22 20:21:36 +000010883 if (!RE->IgnoreParenImpCasts()->isLValue()) {
Samuel Antao661c0902016-05-26 17:39:58 +000010884 SemaRef.Diag(ELoc,
10885 diag::err_omp_expected_named_var_member_or_array_expression)
Samuel Antao5de996e2016-01-22 20:21:36 +000010886 << RE->getSourceRange();
Kelvin Li0bff7af2015-11-23 05:32:03 +000010887 continue;
10888 }
10889
Samuel Antao90927002016-04-26 14:54:23 +000010890 OMPClauseMappableExprCommon::MappableExprComponentList CurComponents;
10891 ValueDecl *CurDeclaration = nullptr;
10892
10893 // Obtain the array or member expression bases if required. Also, fill the
10894 // components array with all the components identified in the process.
Samuel Antao661c0902016-05-26 17:39:58 +000010895 auto *BE =
10896 CheckMapClauseExpressionBase(SemaRef, SimpleExpr, CurComponents, CKind);
Samuel Antao5de996e2016-01-22 20:21:36 +000010897 if (!BE)
10898 continue;
10899
Samuel Antao90927002016-04-26 14:54:23 +000010900 assert(!CurComponents.empty() &&
10901 "Invalid mappable expression information.");
Kelvin Li0bff7af2015-11-23 05:32:03 +000010902
Samuel Antao90927002016-04-26 14:54:23 +000010903 // For the following checks, we rely on the base declaration which is
10904 // expected to be associated with the last component. The declaration is
10905 // expected to be a variable or a field (if 'this' is being mapped).
10906 CurDeclaration = CurComponents.back().getAssociatedDeclaration();
10907 assert(CurDeclaration && "Null decl on map clause.");
10908 assert(
10909 CurDeclaration->isCanonicalDecl() &&
10910 "Expecting components to have associated only canonical declarations.");
10911
10912 auto *VD = dyn_cast<VarDecl>(CurDeclaration);
10913 auto *FD = dyn_cast<FieldDecl>(CurDeclaration);
Samuel Antao5de996e2016-01-22 20:21:36 +000010914
10915 assert((VD || FD) && "Only variables or fields are expected here!");
NAKAMURA Takumi6dcb8142016-01-23 01:38:20 +000010916 (void)FD;
Samuel Antao5de996e2016-01-22 20:21:36 +000010917
10918 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.10]
Samuel Antao661c0902016-05-26 17:39:58 +000010919 // threadprivate variables cannot appear in a map clause.
10920 // OpenMP 4.5 [2.10.5, target update Construct]
10921 // threadprivate variables cannot appear in a from clause.
10922 if (VD && DSAS->isThreadPrivate(VD)) {
10923 auto DVar = DSAS->getTopDSA(VD, false);
10924 SemaRef.Diag(ELoc, diag::err_omp_threadprivate_in_clause)
10925 << getOpenMPClauseName(CKind);
10926 ReportOriginalDSA(SemaRef, DSAS, VD, DVar);
Kelvin Li0bff7af2015-11-23 05:32:03 +000010927 continue;
10928 }
10929
Samuel Antao5de996e2016-01-22 20:21:36 +000010930 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.9]
10931 // A list item cannot appear in both a map clause and a data-sharing
10932 // attribute clause on the same construct.
Kelvin Li0bff7af2015-11-23 05:32:03 +000010933
Samuel Antao5de996e2016-01-22 20:21:36 +000010934 // Check conflicts with other map clause expressions. We check the conflicts
10935 // with the current construct separately from the enclosing data
Samuel Antao661c0902016-05-26 17:39:58 +000010936 // environment, because the restrictions are different. We only have to
10937 // check conflicts across regions for the map clauses.
10938 if (CheckMapConflicts(SemaRef, DSAS, CurDeclaration, SimpleExpr,
10939 /*CurrentRegionOnly=*/true, CurComponents, CKind))
Samuel Antao5de996e2016-01-22 20:21:36 +000010940 break;
Samuel Antao661c0902016-05-26 17:39:58 +000010941 if (CKind == OMPC_map &&
10942 CheckMapConflicts(SemaRef, DSAS, CurDeclaration, SimpleExpr,
10943 /*CurrentRegionOnly=*/false, CurComponents, CKind))
Samuel Antao5de996e2016-01-22 20:21:36 +000010944 break;
Kelvin Li0bff7af2015-11-23 05:32:03 +000010945
Samuel Antao661c0902016-05-26 17:39:58 +000010946 // OpenMP 4.5 [2.10.5, target update Construct]
Samuel Antao5de996e2016-01-22 20:21:36 +000010947 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, C++, p.1]
10948 // If the type of a list item is a reference to a type T then the type will
10949 // be considered to be T for all purposes of this clause.
Samuel Antao90927002016-04-26 14:54:23 +000010950 QualType Type = CurDeclaration->getType().getNonReferenceType();
Samuel Antao5de996e2016-01-22 20:21:36 +000010951
Samuel Antao661c0902016-05-26 17:39:58 +000010952 // OpenMP 4.5 [2.10.5, target update Construct, Restrictions, p.4]
10953 // A list item in a to or from clause must have a mappable type.
Samuel Antao5de996e2016-01-22 20:21:36 +000010954 // OpenMP 4.5 [2.15.5.1, map Clause, Restrictions, p.9]
Kelvin Li0bff7af2015-11-23 05:32:03 +000010955 // A list item must have a mappable type.
Samuel Antao661c0902016-05-26 17:39:58 +000010956 if (!CheckTypeMappable(VE->getExprLoc(), VE->getSourceRange(), SemaRef,
10957 DSAS, Type))
Kelvin Li0bff7af2015-11-23 05:32:03 +000010958 continue;
10959
Samuel Antao661c0902016-05-26 17:39:58 +000010960 if (CKind == OMPC_map) {
10961 // target enter data
10962 // OpenMP [2.10.2, Restrictions, p. 99]
10963 // A map-type must be specified in all map clauses and must be either
10964 // to or alloc.
10965 OpenMPDirectiveKind DKind = DSAS->getCurrentDirective();
10966 if (DKind == OMPD_target_enter_data &&
10967 !(MapType == OMPC_MAP_to || MapType == OMPC_MAP_alloc)) {
10968 SemaRef.Diag(StartLoc, diag::err_omp_invalid_map_type_for_directive)
10969 << (IsMapTypeImplicit ? 1 : 0)
10970 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType)
10971 << getOpenMPDirectiveName(DKind);
Carlo Bertollib74bfc82016-03-18 21:43:32 +000010972 continue;
10973 }
Samuel Antao661c0902016-05-26 17:39:58 +000010974
10975 // target exit_data
10976 // OpenMP [2.10.3, Restrictions, p. 102]
10977 // A map-type must be specified in all map clauses and must be either
10978 // from, release, or delete.
10979 if (DKind == OMPD_target_exit_data &&
10980 !(MapType == OMPC_MAP_from || MapType == OMPC_MAP_release ||
10981 MapType == OMPC_MAP_delete)) {
10982 SemaRef.Diag(StartLoc, diag::err_omp_invalid_map_type_for_directive)
10983 << (IsMapTypeImplicit ? 1 : 0)
10984 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType)
10985 << getOpenMPDirectiveName(DKind);
10986 continue;
10987 }
10988
10989 // OpenMP 4.5 [2.15.5.1, Restrictions, p.3]
10990 // A list item cannot appear in both a map clause and a data-sharing
10991 // attribute clause on the same construct
10992 if (DKind == OMPD_target && VD) {
10993 auto DVar = DSAS->getTopDSA(VD, false);
10994 if (isOpenMPPrivate(DVar.CKind)) {
10995 SemaRef.Diag(ELoc, diag::err_omp_variable_in_map_and_dsa)
10996 << getOpenMPClauseName(DVar.CKind)
10997 << getOpenMPDirectiveName(DSAS->getCurrentDirective());
10998 ReportOriginalDSA(SemaRef, DSAS, CurDeclaration, DVar);
10999 continue;
11000 }
11001 }
Carlo Bertollib74bfc82016-03-18 21:43:32 +000011002 }
11003
Samuel Antao90927002016-04-26 14:54:23 +000011004 // Save the current expression.
Samuel Antao661c0902016-05-26 17:39:58 +000011005 MVLI.ProcessedVarList.push_back(RE);
Samuel Antao90927002016-04-26 14:54:23 +000011006
11007 // Store the components in the stack so that they can be used to check
11008 // against other clauses later on.
Samuel Antao661c0902016-05-26 17:39:58 +000011009 DSAS->addMappableExpressionComponents(CurDeclaration, CurComponents);
Samuel Antao90927002016-04-26 14:54:23 +000011010
11011 // Save the components and declaration to create the clause. For purposes of
11012 // the clause creation, any component list that has has base 'this' uses
Samuel Antao686c70c2016-05-26 17:30:50 +000011013 // null as base declaration.
Samuel Antao661c0902016-05-26 17:39:58 +000011014 MVLI.VarComponents.resize(MVLI.VarComponents.size() + 1);
11015 MVLI.VarComponents.back().append(CurComponents.begin(),
11016 CurComponents.end());
11017 MVLI.VarBaseDeclarations.push_back(isa<MemberExpr>(BE) ? nullptr
11018 : CurDeclaration);
Kelvin Li0bff7af2015-11-23 05:32:03 +000011019 }
Samuel Antao661c0902016-05-26 17:39:58 +000011020}
11021
11022OMPClause *
11023Sema::ActOnOpenMPMapClause(OpenMPMapClauseKind MapTypeModifier,
11024 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit,
11025 SourceLocation MapLoc, SourceLocation ColonLoc,
11026 ArrayRef<Expr *> VarList, SourceLocation StartLoc,
11027 SourceLocation LParenLoc, SourceLocation EndLoc) {
11028 MappableVarListInfo MVLI(VarList);
11029 checkMappableExpressionList(*this, DSAStack, OMPC_map, MVLI, StartLoc,
11030 MapType, IsMapTypeImplicit);
Kelvin Li0bff7af2015-11-23 05:32:03 +000011031
Samuel Antao5de996e2016-01-22 20:21:36 +000011032 // We need to produce a map clause even if we don't have variables so that
11033 // other diagnostics related with non-existing map clauses are accurate.
Samuel Antao661c0902016-05-26 17:39:58 +000011034 return OMPMapClause::Create(Context, StartLoc, LParenLoc, EndLoc,
11035 MVLI.ProcessedVarList, MVLI.VarBaseDeclarations,
11036 MVLI.VarComponents, MapTypeModifier, MapType,
11037 IsMapTypeImplicit, MapLoc);
Kelvin Li0bff7af2015-11-23 05:32:03 +000011038}
Kelvin Li099bb8c2015-11-24 20:50:12 +000011039
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000011040QualType Sema::ActOnOpenMPDeclareReductionType(SourceLocation TyLoc,
11041 TypeResult ParsedType) {
11042 assert(ParsedType.isUsable());
11043
11044 QualType ReductionType = GetTypeFromParser(ParsedType.get());
11045 if (ReductionType.isNull())
11046 return QualType();
11047
11048 // [OpenMP 4.0], 2.15 declare reduction Directive, Restrictions, C\C++
11049 // A type name in a declare reduction directive cannot be a function type, an
11050 // array type, a reference type, or a type qualified with const, volatile or
11051 // restrict.
11052 if (ReductionType.hasQualifiers()) {
11053 Diag(TyLoc, diag::err_omp_reduction_wrong_type) << 0;
11054 return QualType();
11055 }
11056
11057 if (ReductionType->isFunctionType()) {
11058 Diag(TyLoc, diag::err_omp_reduction_wrong_type) << 1;
11059 return QualType();
11060 }
11061 if (ReductionType->isReferenceType()) {
11062 Diag(TyLoc, diag::err_omp_reduction_wrong_type) << 2;
11063 return QualType();
11064 }
11065 if (ReductionType->isArrayType()) {
11066 Diag(TyLoc, diag::err_omp_reduction_wrong_type) << 3;
11067 return QualType();
11068 }
11069 return ReductionType;
11070}
11071
11072Sema::DeclGroupPtrTy Sema::ActOnOpenMPDeclareReductionDirectiveStart(
11073 Scope *S, DeclContext *DC, DeclarationName Name,
11074 ArrayRef<std::pair<QualType, SourceLocation>> ReductionTypes,
11075 AccessSpecifier AS, Decl *PrevDeclInScope) {
11076 SmallVector<Decl *, 8> Decls;
11077 Decls.reserve(ReductionTypes.size());
11078
11079 LookupResult Lookup(*this, Name, SourceLocation(), LookupOMPReductionName,
11080 ForRedeclaration);
11081 // [OpenMP 4.0], 2.15 declare reduction Directive, Restrictions
11082 // A reduction-identifier may not be re-declared in the current scope for the
11083 // same type or for a type that is compatible according to the base language
11084 // rules.
11085 llvm::DenseMap<QualType, SourceLocation> PreviousRedeclTypes;
11086 OMPDeclareReductionDecl *PrevDRD = nullptr;
11087 bool InCompoundScope = true;
11088 if (S != nullptr) {
11089 // Find previous declaration with the same name not referenced in other
11090 // declarations.
11091 FunctionScopeInfo *ParentFn = getEnclosingFunction();
11092 InCompoundScope =
11093 (ParentFn != nullptr) && !ParentFn->CompoundScopes.empty();
11094 LookupName(Lookup, S);
11095 FilterLookupForScope(Lookup, DC, S, /*ConsiderLinkage=*/false,
11096 /*AllowInlineNamespace=*/false);
11097 llvm::DenseMap<OMPDeclareReductionDecl *, bool> UsedAsPrevious;
11098 auto Filter = Lookup.makeFilter();
11099 while (Filter.hasNext()) {
11100 auto *PrevDecl = cast<OMPDeclareReductionDecl>(Filter.next());
11101 if (InCompoundScope) {
11102 auto I = UsedAsPrevious.find(PrevDecl);
11103 if (I == UsedAsPrevious.end())
11104 UsedAsPrevious[PrevDecl] = false;
11105 if (auto *D = PrevDecl->getPrevDeclInScope())
11106 UsedAsPrevious[D] = true;
11107 }
11108 PreviousRedeclTypes[PrevDecl->getType().getCanonicalType()] =
11109 PrevDecl->getLocation();
11110 }
11111 Filter.done();
11112 if (InCompoundScope) {
11113 for (auto &PrevData : UsedAsPrevious) {
11114 if (!PrevData.second) {
11115 PrevDRD = PrevData.first;
11116 break;
11117 }
11118 }
11119 }
11120 } else if (PrevDeclInScope != nullptr) {
11121 auto *PrevDRDInScope = PrevDRD =
11122 cast<OMPDeclareReductionDecl>(PrevDeclInScope);
11123 do {
11124 PreviousRedeclTypes[PrevDRDInScope->getType().getCanonicalType()] =
11125 PrevDRDInScope->getLocation();
11126 PrevDRDInScope = PrevDRDInScope->getPrevDeclInScope();
11127 } while (PrevDRDInScope != nullptr);
11128 }
11129 for (auto &TyData : ReductionTypes) {
11130 auto I = PreviousRedeclTypes.find(TyData.first.getCanonicalType());
11131 bool Invalid = false;
11132 if (I != PreviousRedeclTypes.end()) {
11133 Diag(TyData.second, diag::err_omp_declare_reduction_redefinition)
11134 << TyData.first;
11135 Diag(I->second, diag::note_previous_definition);
11136 Invalid = true;
11137 }
11138 PreviousRedeclTypes[TyData.first.getCanonicalType()] = TyData.second;
11139 auto *DRD = OMPDeclareReductionDecl::Create(Context, DC, TyData.second,
11140 Name, TyData.first, PrevDRD);
11141 DC->addDecl(DRD);
11142 DRD->setAccess(AS);
11143 Decls.push_back(DRD);
11144 if (Invalid)
11145 DRD->setInvalidDecl();
11146 else
11147 PrevDRD = DRD;
11148 }
11149
11150 return DeclGroupPtrTy::make(
11151 DeclGroupRef::Create(Context, Decls.begin(), Decls.size()));
11152}
11153
11154void Sema::ActOnOpenMPDeclareReductionCombinerStart(Scope *S, Decl *D) {
11155 auto *DRD = cast<OMPDeclareReductionDecl>(D);
11156
11157 // Enter new function scope.
11158 PushFunctionScope();
11159 getCurFunction()->setHasBranchProtectedScope();
11160 getCurFunction()->setHasOMPDeclareReductionCombiner();
11161
11162 if (S != nullptr)
11163 PushDeclContext(S, DRD);
11164 else
11165 CurContext = DRD;
11166
11167 PushExpressionEvaluationContext(PotentiallyEvaluated);
11168
11169 QualType ReductionType = DRD->getType();
Alexey Bataeva839ddd2016-03-17 10:19:46 +000011170 // Create 'T* omp_parm;T omp_in;'. All references to 'omp_in' will
11171 // be replaced by '*omp_parm' during codegen. This required because 'omp_in'
11172 // uses semantics of argument handles by value, but it should be passed by
11173 // reference. C lang does not support references, so pass all parameters as
11174 // pointers.
11175 // Create 'T omp_in;' variable.
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000011176 auto *OmpInParm =
Alexey Bataeva839ddd2016-03-17 10:19:46 +000011177 buildVarDecl(*this, D->getLocation(), ReductionType, "omp_in");
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000011178 // Create 'T* omp_parm;T omp_out;'. All references to 'omp_out' will
11179 // be replaced by '*omp_parm' during codegen. This required because 'omp_out'
11180 // uses semantics of argument handles by value, but it should be passed by
11181 // reference. C lang does not support references, so pass all parameters as
11182 // pointers.
11183 // Create 'T omp_out;' variable.
11184 auto *OmpOutParm =
11185 buildVarDecl(*this, D->getLocation(), ReductionType, "omp_out");
11186 if (S != nullptr) {
11187 PushOnScopeChains(OmpInParm, S);
11188 PushOnScopeChains(OmpOutParm, S);
11189 } else {
11190 DRD->addDecl(OmpInParm);
11191 DRD->addDecl(OmpOutParm);
11192 }
11193}
11194
11195void Sema::ActOnOpenMPDeclareReductionCombinerEnd(Decl *D, Expr *Combiner) {
11196 auto *DRD = cast<OMPDeclareReductionDecl>(D);
11197 DiscardCleanupsInEvaluationContext();
11198 PopExpressionEvaluationContext();
11199
11200 PopDeclContext();
11201 PopFunctionScopeInfo();
11202
11203 if (Combiner != nullptr)
11204 DRD->setCombiner(Combiner);
11205 else
11206 DRD->setInvalidDecl();
11207}
11208
11209void Sema::ActOnOpenMPDeclareReductionInitializerStart(Scope *S, Decl *D) {
11210 auto *DRD = cast<OMPDeclareReductionDecl>(D);
11211
11212 // Enter new function scope.
11213 PushFunctionScope();
11214 getCurFunction()->setHasBranchProtectedScope();
11215
11216 if (S != nullptr)
11217 PushDeclContext(S, DRD);
11218 else
11219 CurContext = DRD;
11220
11221 PushExpressionEvaluationContext(PotentiallyEvaluated);
11222
11223 QualType ReductionType = DRD->getType();
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000011224 // Create 'T* omp_parm;T omp_priv;'. All references to 'omp_priv' will
11225 // be replaced by '*omp_parm' during codegen. This required because 'omp_priv'
11226 // uses semantics of argument handles by value, but it should be passed by
11227 // reference. C lang does not support references, so pass all parameters as
11228 // pointers.
11229 // Create 'T omp_priv;' variable.
11230 auto *OmpPrivParm =
11231 buildVarDecl(*this, D->getLocation(), ReductionType, "omp_priv");
Alexey Bataeva839ddd2016-03-17 10:19:46 +000011232 // Create 'T* omp_parm;T omp_orig;'. All references to 'omp_orig' will
11233 // be replaced by '*omp_parm' during codegen. This required because 'omp_orig'
11234 // uses semantics of argument handles by value, but it should be passed by
11235 // reference. C lang does not support references, so pass all parameters as
11236 // pointers.
11237 // Create 'T omp_orig;' variable.
11238 auto *OmpOrigParm =
11239 buildVarDecl(*this, D->getLocation(), ReductionType, "omp_orig");
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000011240 if (S != nullptr) {
11241 PushOnScopeChains(OmpPrivParm, S);
11242 PushOnScopeChains(OmpOrigParm, S);
11243 } else {
11244 DRD->addDecl(OmpPrivParm);
11245 DRD->addDecl(OmpOrigParm);
11246 }
11247}
11248
11249void Sema::ActOnOpenMPDeclareReductionInitializerEnd(Decl *D,
11250 Expr *Initializer) {
11251 auto *DRD = cast<OMPDeclareReductionDecl>(D);
11252 DiscardCleanupsInEvaluationContext();
11253 PopExpressionEvaluationContext();
11254
11255 PopDeclContext();
11256 PopFunctionScopeInfo();
11257
11258 if (Initializer != nullptr)
11259 DRD->setInitializer(Initializer);
11260 else
11261 DRD->setInvalidDecl();
11262}
11263
11264Sema::DeclGroupPtrTy Sema::ActOnOpenMPDeclareReductionDirectiveEnd(
11265 Scope *S, DeclGroupPtrTy DeclReductions, bool IsValid) {
11266 for (auto *D : DeclReductions.get()) {
11267 if (IsValid) {
11268 auto *DRD = cast<OMPDeclareReductionDecl>(D);
11269 if (S != nullptr)
11270 PushOnScopeChains(DRD, S, /*AddToContext=*/false);
11271 } else
11272 D->setInvalidDecl();
11273 }
11274 return DeclReductions;
11275}
11276
Kelvin Li099bb8c2015-11-24 20:50:12 +000011277OMPClause *Sema::ActOnOpenMPNumTeamsClause(Expr *NumTeams,
11278 SourceLocation StartLoc,
11279 SourceLocation LParenLoc,
11280 SourceLocation EndLoc) {
11281 Expr *ValExpr = NumTeams;
Kelvin Li099bb8c2015-11-24 20:50:12 +000011282
Kelvin Lia15fb1a2015-11-27 18:47:36 +000011283 // OpenMP [teams Constrcut, Restrictions]
11284 // The num_teams expression must evaluate to a positive integer value.
Alexey Bataeva0569352015-12-01 10:17:31 +000011285 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_num_teams,
11286 /*StrictlyPositive=*/true))
Kelvin Lia15fb1a2015-11-27 18:47:36 +000011287 return nullptr;
Kelvin Li099bb8c2015-11-24 20:50:12 +000011288
11289 return new (Context) OMPNumTeamsClause(ValExpr, StartLoc, LParenLoc, EndLoc);
11290}
Kelvin Lia15fb1a2015-11-27 18:47:36 +000011291
11292OMPClause *Sema::ActOnOpenMPThreadLimitClause(Expr *ThreadLimit,
11293 SourceLocation StartLoc,
11294 SourceLocation LParenLoc,
11295 SourceLocation EndLoc) {
11296 Expr *ValExpr = ThreadLimit;
11297
11298 // OpenMP [teams Constrcut, Restrictions]
11299 // The thread_limit expression must evaluate to a positive integer value.
Alexey Bataeva0569352015-12-01 10:17:31 +000011300 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_thread_limit,
11301 /*StrictlyPositive=*/true))
Kelvin Lia15fb1a2015-11-27 18:47:36 +000011302 return nullptr;
11303
11304 return new (Context) OMPThreadLimitClause(ValExpr, StartLoc, LParenLoc,
11305 EndLoc);
11306}
Alexey Bataeva0569352015-12-01 10:17:31 +000011307
11308OMPClause *Sema::ActOnOpenMPPriorityClause(Expr *Priority,
11309 SourceLocation StartLoc,
11310 SourceLocation LParenLoc,
11311 SourceLocation EndLoc) {
11312 Expr *ValExpr = Priority;
11313
11314 // OpenMP [2.9.1, task Constrcut]
11315 // The priority-value is a non-negative numerical scalar expression.
11316 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_priority,
11317 /*StrictlyPositive=*/false))
11318 return nullptr;
11319
11320 return new (Context) OMPPriorityClause(ValExpr, StartLoc, LParenLoc, EndLoc);
11321}
Alexey Bataev1fd4aed2015-12-07 12:52:51 +000011322
11323OMPClause *Sema::ActOnOpenMPGrainsizeClause(Expr *Grainsize,
11324 SourceLocation StartLoc,
11325 SourceLocation LParenLoc,
11326 SourceLocation EndLoc) {
11327 Expr *ValExpr = Grainsize;
11328
11329 // OpenMP [2.9.2, taskloop Constrcut]
11330 // The parameter of the grainsize clause must be a positive integer
11331 // expression.
11332 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_grainsize,
11333 /*StrictlyPositive=*/true))
11334 return nullptr;
11335
11336 return new (Context) OMPGrainsizeClause(ValExpr, StartLoc, LParenLoc, EndLoc);
11337}
Alexey Bataev382967a2015-12-08 12:06:20 +000011338
11339OMPClause *Sema::ActOnOpenMPNumTasksClause(Expr *NumTasks,
11340 SourceLocation StartLoc,
11341 SourceLocation LParenLoc,
11342 SourceLocation EndLoc) {
11343 Expr *ValExpr = NumTasks;
11344
11345 // OpenMP [2.9.2, taskloop Constrcut]
11346 // The parameter of the num_tasks clause must be a positive integer
11347 // expression.
11348 if (!IsNonNegativeIntegerValue(ValExpr, *this, OMPC_num_tasks,
11349 /*StrictlyPositive=*/true))
11350 return nullptr;
11351
11352 return new (Context) OMPNumTasksClause(ValExpr, StartLoc, LParenLoc, EndLoc);
11353}
11354
Alexey Bataev28c75412015-12-15 08:19:24 +000011355OMPClause *Sema::ActOnOpenMPHintClause(Expr *Hint, SourceLocation StartLoc,
11356 SourceLocation LParenLoc,
11357 SourceLocation EndLoc) {
11358 // OpenMP [2.13.2, critical construct, Description]
11359 // ... where hint-expression is an integer constant expression that evaluates
11360 // to a valid lock hint.
11361 ExprResult HintExpr = VerifyPositiveIntegerConstantInClause(Hint, OMPC_hint);
11362 if (HintExpr.isInvalid())
11363 return nullptr;
11364 return new (Context)
11365 OMPHintClause(HintExpr.get(), StartLoc, LParenLoc, EndLoc);
11366}
11367
Carlo Bertollib4adf552016-01-15 18:50:31 +000011368OMPClause *Sema::ActOnOpenMPDistScheduleClause(
11369 OpenMPDistScheduleClauseKind Kind, Expr *ChunkSize, SourceLocation StartLoc,
11370 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc,
11371 SourceLocation EndLoc) {
11372 if (Kind == OMPC_DIST_SCHEDULE_unknown) {
11373 std::string Values;
11374 Values += "'";
11375 Values += getOpenMPSimpleClauseTypeName(OMPC_dist_schedule, 0);
11376 Values += "'";
11377 Diag(KindLoc, diag::err_omp_unexpected_clause_value)
11378 << Values << getOpenMPClauseName(OMPC_dist_schedule);
11379 return nullptr;
11380 }
11381 Expr *ValExpr = ChunkSize;
Alexey Bataev3392d762016-02-16 11:18:12 +000011382 Stmt *HelperValStmt = nullptr;
Carlo Bertollib4adf552016-01-15 18:50:31 +000011383 if (ChunkSize) {
11384 if (!ChunkSize->isValueDependent() && !ChunkSize->isTypeDependent() &&
11385 !ChunkSize->isInstantiationDependent() &&
11386 !ChunkSize->containsUnexpandedParameterPack()) {
11387 SourceLocation ChunkSizeLoc = ChunkSize->getLocStart();
11388 ExprResult Val =
11389 PerformOpenMPImplicitIntegerConversion(ChunkSizeLoc, ChunkSize);
11390 if (Val.isInvalid())
11391 return nullptr;
11392
11393 ValExpr = Val.get();
11394
11395 // OpenMP [2.7.1, Restrictions]
11396 // chunk_size must be a loop invariant integer expression with a positive
11397 // value.
11398 llvm::APSInt Result;
11399 if (ValExpr->isIntegerConstantExpr(Result, Context)) {
11400 if (Result.isSigned() && !Result.isStrictlyPositive()) {
11401 Diag(ChunkSizeLoc, diag::err_omp_negative_expression_in_clause)
11402 << "dist_schedule" << ChunkSize->getSourceRange();
11403 return nullptr;
11404 }
Alexey Bataevb46cdea2016-06-15 11:20:48 +000011405 } else if (isParallelOrTaskRegion(DSAStack->getCurrentDirective()) &&
11406 !CurContext->isDependentContext()) {
Alexey Bataev5a3af132016-03-29 08:58:54 +000011407 llvm::MapVector<Expr *, DeclRefExpr *> Captures;
11408 ValExpr = tryBuildCapture(*this, ValExpr, Captures).get();
11409 HelperValStmt = buildPreInits(Context, Captures);
Carlo Bertollib4adf552016-01-15 18:50:31 +000011410 }
11411 }
11412 }
11413
11414 return new (Context)
11415 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc,
Alexey Bataev3392d762016-02-16 11:18:12 +000011416 Kind, ValExpr, HelperValStmt);
Carlo Bertollib4adf552016-01-15 18:50:31 +000011417}
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +000011418
11419OMPClause *Sema::ActOnOpenMPDefaultmapClause(
11420 OpenMPDefaultmapClauseModifier M, OpenMPDefaultmapClauseKind Kind,
11421 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation MLoc,
11422 SourceLocation KindLoc, SourceLocation EndLoc) {
11423 // OpenMP 4.5 only supports 'defaultmap(tofrom: scalar)'
11424 if (M != OMPC_DEFAULTMAP_MODIFIER_tofrom ||
11425 Kind != OMPC_DEFAULTMAP_scalar) {
11426 std::string Value;
11427 SourceLocation Loc;
11428 Value += "'";
11429 if (M != OMPC_DEFAULTMAP_MODIFIER_tofrom) {
11430 Value += getOpenMPSimpleClauseTypeName(OMPC_defaultmap,
11431 OMPC_DEFAULTMAP_MODIFIER_tofrom);
11432 Loc = MLoc;
11433 } else {
11434 Value += getOpenMPSimpleClauseTypeName(OMPC_defaultmap,
11435 OMPC_DEFAULTMAP_scalar);
11436 Loc = KindLoc;
11437 }
11438 Value += "'";
11439 Diag(Loc, diag::err_omp_unexpected_clause_value)
11440 << Value << getOpenMPClauseName(OMPC_defaultmap);
11441 return nullptr;
11442 }
11443
11444 return new (Context)
11445 OMPDefaultmapClause(StartLoc, LParenLoc, MLoc, KindLoc, EndLoc, Kind, M);
11446}
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011447
11448bool Sema::ActOnStartOpenMPDeclareTargetDirective(SourceLocation Loc) {
11449 DeclContext *CurLexicalContext = getCurLexicalContext();
11450 if (!CurLexicalContext->isFileContext() &&
11451 !CurLexicalContext->isExternCContext() &&
11452 !CurLexicalContext->isExternCXXContext()) {
11453 Diag(Loc, diag::err_omp_region_not_file_context);
11454 return false;
11455 }
11456 if (IsInOpenMPDeclareTargetContext) {
11457 Diag(Loc, diag::err_omp_enclosed_declare_target);
11458 return false;
11459 }
11460
11461 IsInOpenMPDeclareTargetContext = true;
11462 return true;
11463}
11464
11465void Sema::ActOnFinishOpenMPDeclareTargetDirective() {
11466 assert(IsInOpenMPDeclareTargetContext &&
11467 "Unexpected ActOnFinishOpenMPDeclareTargetDirective");
11468
11469 IsInOpenMPDeclareTargetContext = false;
11470}
11471
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011472void
11473Sema::ActOnOpenMPDeclareTargetName(Scope *CurScope, CXXScopeSpec &ScopeSpec,
11474 const DeclarationNameInfo &Id,
11475 OMPDeclareTargetDeclAttr::MapTypeTy MT,
11476 NamedDeclSetType &SameDirectiveDecls) {
11477 LookupResult Lookup(*this, Id, LookupOrdinaryName);
11478 LookupParsedName(Lookup, CurScope, &ScopeSpec, true);
11479
11480 if (Lookup.isAmbiguous())
11481 return;
11482 Lookup.suppressDiagnostics();
11483
11484 if (!Lookup.isSingleResult()) {
11485 if (TypoCorrection Corrected =
11486 CorrectTypo(Id, LookupOrdinaryName, CurScope, nullptr,
11487 llvm::make_unique<VarOrFuncDeclFilterCCC>(*this),
11488 CTK_ErrorRecovery)) {
11489 diagnoseTypo(Corrected, PDiag(diag::err_undeclared_var_use_suggest)
11490 << Id.getName());
11491 checkDeclIsAllowedInOpenMPTarget(nullptr, Corrected.getCorrectionDecl());
11492 return;
11493 }
11494
11495 Diag(Id.getLoc(), diag::err_undeclared_var_use) << Id.getName();
11496 return;
11497 }
11498
11499 NamedDecl *ND = Lookup.getAsSingle<NamedDecl>();
11500 if (isa<VarDecl>(ND) || isa<FunctionDecl>(ND)) {
11501 if (!SameDirectiveDecls.insert(cast<NamedDecl>(ND->getCanonicalDecl())))
11502 Diag(Id.getLoc(), diag::err_omp_declare_target_multiple) << Id.getName();
11503
11504 if (!ND->hasAttr<OMPDeclareTargetDeclAttr>()) {
11505 Attr *A = OMPDeclareTargetDeclAttr::CreateImplicit(Context, MT);
11506 ND->addAttr(A);
11507 if (ASTMutationListener *ML = Context.getASTMutationListener())
11508 ML->DeclarationMarkedOpenMPDeclareTarget(ND, A);
11509 checkDeclIsAllowedInOpenMPTarget(nullptr, ND);
11510 } else if (ND->getAttr<OMPDeclareTargetDeclAttr>()->getMapType() != MT) {
11511 Diag(Id.getLoc(), diag::err_omp_declare_target_to_and_link)
11512 << Id.getName();
11513 }
11514 } else
11515 Diag(Id.getLoc(), diag::err_omp_invalid_target_decl) << Id.getName();
11516}
11517
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011518static void checkDeclInTargetContext(SourceLocation SL, SourceRange SR,
11519 Sema &SemaRef, Decl *D) {
11520 if (!D)
11521 return;
11522 Decl *LD = nullptr;
11523 if (isa<TagDecl>(D)) {
11524 LD = cast<TagDecl>(D)->getDefinition();
11525 } else if (isa<VarDecl>(D)) {
11526 LD = cast<VarDecl>(D)->getDefinition();
11527
11528 // If this is an implicit variable that is legal and we do not need to do
11529 // anything.
11530 if (cast<VarDecl>(D)->isImplicit()) {
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011531 Attr *A = OMPDeclareTargetDeclAttr::CreateImplicit(
11532 SemaRef.Context, OMPDeclareTargetDeclAttr::MT_To);
11533 D->addAttr(A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011534 if (ASTMutationListener *ML = SemaRef.Context.getASTMutationListener())
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011535 ML->DeclarationMarkedOpenMPDeclareTarget(D, A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011536 return;
11537 }
11538
11539 } else if (isa<FunctionDecl>(D)) {
11540 const FunctionDecl *FD = nullptr;
11541 if (cast<FunctionDecl>(D)->hasBody(FD))
11542 LD = const_cast<FunctionDecl *>(FD);
11543
11544 // If the definition is associated with the current declaration in the
11545 // target region (it can be e.g. a lambda) that is legal and we do not need
11546 // to do anything else.
11547 if (LD == D) {
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011548 Attr *A = OMPDeclareTargetDeclAttr::CreateImplicit(
11549 SemaRef.Context, OMPDeclareTargetDeclAttr::MT_To);
11550 D->addAttr(A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011551 if (ASTMutationListener *ML = SemaRef.Context.getASTMutationListener())
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011552 ML->DeclarationMarkedOpenMPDeclareTarget(D, A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011553 return;
11554 }
11555 }
11556 if (!LD)
11557 LD = D;
11558 if (LD && !LD->hasAttr<OMPDeclareTargetDeclAttr>() &&
11559 (isa<VarDecl>(LD) || isa<FunctionDecl>(LD))) {
11560 // Outlined declaration is not declared target.
11561 if (LD->isOutOfLine()) {
11562 SemaRef.Diag(LD->getLocation(), diag::warn_omp_not_in_target_context);
11563 SemaRef.Diag(SL, diag::note_used_here) << SR;
11564 } else {
11565 DeclContext *DC = LD->getDeclContext();
11566 while (DC) {
11567 if (isa<FunctionDecl>(DC) &&
11568 cast<FunctionDecl>(DC)->hasAttr<OMPDeclareTargetDeclAttr>())
11569 break;
11570 DC = DC->getParent();
11571 }
11572 if (DC)
11573 return;
11574
11575 // Is not declared in target context.
11576 SemaRef.Diag(LD->getLocation(), diag::warn_omp_not_in_target_context);
11577 SemaRef.Diag(SL, diag::note_used_here) << SR;
11578 }
11579 // Mark decl as declared target to prevent further diagnostic.
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011580 Attr *A = OMPDeclareTargetDeclAttr::CreateImplicit(
11581 SemaRef.Context, OMPDeclareTargetDeclAttr::MT_To);
11582 D->addAttr(A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011583 if (ASTMutationListener *ML = SemaRef.Context.getASTMutationListener())
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011584 ML->DeclarationMarkedOpenMPDeclareTarget(D, A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011585 }
11586}
11587
11588static bool checkValueDeclInTarget(SourceLocation SL, SourceRange SR,
11589 Sema &SemaRef, DSAStackTy *Stack,
11590 ValueDecl *VD) {
11591 if (VD->hasAttr<OMPDeclareTargetDeclAttr>())
11592 return true;
11593 if (!CheckTypeMappable(SL, SR, SemaRef, Stack, VD->getType()))
11594 return false;
11595 return true;
11596}
11597
11598void Sema::checkDeclIsAllowedInOpenMPTarget(Expr *E, Decl *D) {
11599 if (!D || D->isInvalidDecl())
11600 return;
11601 SourceRange SR = E ? E->getSourceRange() : D->getSourceRange();
11602 SourceLocation SL = E ? E->getLocStart() : D->getLocation();
11603 // 2.10.6: threadprivate variable cannot appear in a declare target directive.
11604 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
11605 if (DSAStack->isThreadPrivate(VD)) {
11606 Diag(SL, diag::err_omp_threadprivate_in_target);
11607 ReportOriginalDSA(*this, DSAStack, VD, DSAStack->getTopDSA(VD, false));
11608 return;
11609 }
11610 }
11611 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
11612 // Problem if any with var declared with incomplete type will be reported
11613 // as normal, so no need to check it here.
11614 if ((E || !VD->getType()->isIncompleteType()) &&
11615 !checkValueDeclInTarget(SL, SR, *this, DSAStack, VD)) {
11616 // Mark decl as declared target to prevent further diagnostic.
11617 if (isa<VarDecl>(VD) || isa<FunctionDecl>(VD)) {
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011618 Attr *A = OMPDeclareTargetDeclAttr::CreateImplicit(
11619 Context, OMPDeclareTargetDeclAttr::MT_To);
11620 VD->addAttr(A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011621 if (ASTMutationListener *ML = Context.getASTMutationListener())
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011622 ML->DeclarationMarkedOpenMPDeclareTarget(VD, A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011623 }
11624 return;
11625 }
11626 }
11627 if (!E) {
11628 // Checking declaration inside declare target region.
11629 if (!D->hasAttr<OMPDeclareTargetDeclAttr>() &&
11630 (isa<VarDecl>(D) || isa<FunctionDecl>(D))) {
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011631 Attr *A = OMPDeclareTargetDeclAttr::CreateImplicit(
11632 Context, OMPDeclareTargetDeclAttr::MT_To);
11633 D->addAttr(A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011634 if (ASTMutationListener *ML = Context.getASTMutationListener())
Dmitry Polukhind69b5052016-05-09 14:59:13 +000011635 ML->DeclarationMarkedOpenMPDeclareTarget(D, A);
Dmitry Polukhin0b0da292016-04-06 11:38:59 +000011636 }
11637 return;
11638 }
11639 checkDeclInTargetContext(E->getExprLoc(), E->getSourceRange(), *this, D);
11640}
Samuel Antao661c0902016-05-26 17:39:58 +000011641
11642OMPClause *Sema::ActOnOpenMPToClause(ArrayRef<Expr *> VarList,
11643 SourceLocation StartLoc,
11644 SourceLocation LParenLoc,
11645 SourceLocation EndLoc) {
11646 MappableVarListInfo MVLI(VarList);
11647 checkMappableExpressionList(*this, DSAStack, OMPC_to, MVLI, StartLoc);
11648 if (MVLI.ProcessedVarList.empty())
11649 return nullptr;
11650
11651 return OMPToClause::Create(Context, StartLoc, LParenLoc, EndLoc,
11652 MVLI.ProcessedVarList, MVLI.VarBaseDeclarations,
11653 MVLI.VarComponents);
11654}
Samuel Antaoec172c62016-05-26 17:49:04 +000011655
11656OMPClause *Sema::ActOnOpenMPFromClause(ArrayRef<Expr *> VarList,
11657 SourceLocation StartLoc,
11658 SourceLocation LParenLoc,
11659 SourceLocation EndLoc) {
11660 MappableVarListInfo MVLI(VarList);
11661 checkMappableExpressionList(*this, DSAStack, OMPC_from, MVLI, StartLoc);
11662 if (MVLI.ProcessedVarList.empty())
11663 return nullptr;
11664
11665 return OMPFromClause::Create(Context, StartLoc, LParenLoc, EndLoc,
11666 MVLI.ProcessedVarList, MVLI.VarBaseDeclarations,
11667 MVLI.VarComponents);
11668}
Carlo Bertolli2404b172016-07-13 15:37:16 +000011669
11670OMPClause *Sema::ActOnOpenMPUseDevicePtrClause(ArrayRef<Expr *> VarList,
11671 SourceLocation StartLoc,
11672 SourceLocation LParenLoc,
11673 SourceLocation EndLoc) {
11674 SmallVector<Expr *, 8> Vars;
11675 for (auto &RefExpr : VarList) {
11676 assert(RefExpr && "NULL expr in OpenMP use_device_ptr clause.");
11677 SourceLocation ELoc;
11678 SourceRange ERange;
11679 Expr *SimpleRefExpr = RefExpr;
11680 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
11681 if (Res.second) {
11682 // It will be analyzed later.
11683 Vars.push_back(RefExpr);
11684 }
11685 ValueDecl *D = Res.first;
11686 if (!D)
11687 continue;
11688
11689 QualType Type = D->getType();
11690 // item should be a pointer or reference to pointer
11691 if (!Type.getNonReferenceType()->isPointerType()) {
11692 Diag(ELoc, diag::err_omp_usedeviceptr_not_a_pointer)
11693 << 0 << RefExpr->getSourceRange();
11694 continue;
11695 }
11696 Vars.push_back(RefExpr->IgnoreParens());
11697 }
11698
11699 if (Vars.empty())
11700 return nullptr;
11701
11702 return OMPUseDevicePtrClause::Create(Context, StartLoc, LParenLoc, EndLoc,
11703 Vars);
11704}
Carlo Bertolli70594e92016-07-13 17:16:49 +000011705
11706OMPClause *Sema::ActOnOpenMPIsDevicePtrClause(ArrayRef<Expr *> VarList,
11707 SourceLocation StartLoc,
11708 SourceLocation LParenLoc,
11709 SourceLocation EndLoc) {
11710 SmallVector<Expr *, 8> Vars;
11711 for (auto &RefExpr : VarList) {
11712 assert(RefExpr && "NULL expr in OpenMP use_device_ptr clause.");
11713 SourceLocation ELoc;
11714 SourceRange ERange;
11715 Expr *SimpleRefExpr = RefExpr;
11716 auto Res = getPrivateItem(*this, SimpleRefExpr, ELoc, ERange);
11717 if (Res.second) {
11718 // It will be analyzed later.
11719 Vars.push_back(RefExpr);
11720 }
11721 ValueDecl *D = Res.first;
11722 if (!D)
11723 continue;
11724
11725 QualType Type = D->getType();
11726 // item should be a pointer or array or reference to pointer or array
11727 if (!Type.getNonReferenceType()->isPointerType() &&
11728 !Type.getNonReferenceType()->isArrayType()) {
11729 Diag(ELoc, diag::err_omp_argument_type_isdeviceptr)
11730 << 0 << RefExpr->getSourceRange();
11731 continue;
11732 }
11733 Vars.push_back(RefExpr->IgnoreParens());
11734 }
11735
11736 if (Vars.empty())
11737 return nullptr;
11738
11739 return OMPIsDevicePtrClause::Create(Context, StartLoc, LParenLoc, EndLoc,
11740 Vars);
11741}