Bug Summary

File:clang/lib/Parse/ParseOpenMP.cpp
Warning:line 2497, column 7
Value stored to 'HasImplicitClause' is never read

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -disable-llvm-verifier -discard-value-names -main-file-name ParseOpenMP.cpp -analyzer-store=region -analyzer-opt-analyze-nested-blocks -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=cplusplus -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -analyzer-config-compatibility-mode=true -mrelocation-model pic -pic-level 2 -fhalf-no-semantic-interposition -mframe-pointer=none -relaxed-aliasing -fmath-errno -fno-rounding-math -mconstructor-aliases -munwind-tables -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/build-llvm/tools/clang/lib/Parse -resource-dir /usr/lib/llvm-13/lib/clang/13.0.0 -D CLANG_ROUND_TRIP_CC1_ARGS=ON -D _DEBUG -D _GNU_SOURCE -D __STDC_CONSTANT_MACROS -D __STDC_FORMAT_MACROS -D __STDC_LIMIT_MACROS -I /build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/build-llvm/tools/clang/lib/Parse -I /build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse -I /build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/include -I /build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/build-llvm/tools/clang/include -I /build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/build-llvm/include -I /build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/llvm/include -U NDEBUG -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/x86_64-linux-gnu/c++/6.3.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/backward -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../x86_64-linux-gnu/include -internal-isystem /usr/lib/llvm-13/lib/clang/13.0.0/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -O2 -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -Wno-long-long -Wno-maybe-uninitialized -Wno-comment -std=c++14 -fdeprecated-macro -fdebug-compilation-dir=/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/build-llvm/tools/clang/lib/Parse -fdebug-prefix-map=/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4=. -ferror-limit 19 -fvisibility-inlines-hidden -stack-protector 2 -fgnuc-version=4.2.1 -vectorize-loops -vectorize-slp -analyzer-output=html -analyzer-config stable-report-filename=true -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/scan-build-2021-04-05-202135-9119-1 -x c++ /build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp
1//===--- ParseOpenMP.cpp - OpenMP directives parsing ----------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8/// \file
9/// This file implements parsing of all OpenMP directives and clauses.
10///
11//===----------------------------------------------------------------------===//
12
13#include "clang/AST/ASTContext.h"
14#include "clang/AST/OpenMPClause.h"
15#include "clang/AST/StmtOpenMP.h"
16#include "clang/Basic/OpenMPKinds.h"
17#include "clang/Basic/TargetInfo.h"
18#include "clang/Basic/TokenKinds.h"
19#include "clang/Parse/ParseDiagnostic.h"
20#include "clang/Parse/Parser.h"
21#include "clang/Parse/RAIIObjectsForParser.h"
22#include "clang/Sema/Scope.h"
23#include "llvm/ADT/PointerIntPair.h"
24#include "llvm/ADT/StringSwitch.h"
25#include "llvm/ADT/UniqueVector.h"
26#include "llvm/Frontend/OpenMP/OMPContext.h"
27
28using namespace clang;
29using namespace llvm::omp;
30
31//===----------------------------------------------------------------------===//
32// OpenMP declarative directives.
33//===----------------------------------------------------------------------===//
34
35namespace {
36enum OpenMPDirectiveKindEx {
37 OMPD_cancellation = llvm::omp::Directive_enumSize + 1,
38 OMPD_data,
39 OMPD_declare,
40 OMPD_end,
41 OMPD_end_declare,
42 OMPD_enter,
43 OMPD_exit,
44 OMPD_point,
45 OMPD_reduction,
46 OMPD_target_enter,
47 OMPD_target_exit,
48 OMPD_update,
49 OMPD_distribute_parallel,
50 OMPD_teams_distribute_parallel,
51 OMPD_target_teams_distribute_parallel,
52 OMPD_mapper,
53 OMPD_variant,
54 OMPD_begin,
55 OMPD_begin_declare,
56};
57
58// Helper to unify the enum class OpenMPDirectiveKind with its extension
59// the OpenMPDirectiveKindEx enum which allows to use them together as if they
60// are unsigned values.
61struct OpenMPDirectiveKindExWrapper {
62 OpenMPDirectiveKindExWrapper(unsigned Value) : Value(Value) {}
63 OpenMPDirectiveKindExWrapper(OpenMPDirectiveKind DK) : Value(unsigned(DK)) {}
64 bool operator==(OpenMPDirectiveKindExWrapper V) const {
65 return Value == V.Value;
66 }
67 bool operator!=(OpenMPDirectiveKindExWrapper V) const {
68 return Value != V.Value;
69 }
70 bool operator==(OpenMPDirectiveKind V) const { return Value == unsigned(V); }
71 bool operator!=(OpenMPDirectiveKind V) const { return Value != unsigned(V); }
72 bool operator<(OpenMPDirectiveKind V) const { return Value < unsigned(V); }
73 operator unsigned() const { return Value; }
74 operator OpenMPDirectiveKind() const { return OpenMPDirectiveKind(Value); }
75 unsigned Value;
76};
77
78class DeclDirectiveListParserHelper final {
79 SmallVector<Expr *, 4> Identifiers;
80 Parser *P;
81 OpenMPDirectiveKind Kind;
82
83public:
84 DeclDirectiveListParserHelper(Parser *P, OpenMPDirectiveKind Kind)
85 : P(P), Kind(Kind) {}
86 void operator()(CXXScopeSpec &SS, DeclarationNameInfo NameInfo) {
87 ExprResult Res = P->getActions().ActOnOpenMPIdExpression(
88 P->getCurScope(), SS, NameInfo, Kind);
89 if (Res.isUsable())
90 Identifiers.push_back(Res.get());
91 }
92 llvm::ArrayRef<Expr *> getIdentifiers() const { return Identifiers; }
93};
94} // namespace
95
96// Map token string to extended OMP token kind that are
97// OpenMPDirectiveKind + OpenMPDirectiveKindEx.
98static unsigned getOpenMPDirectiveKindEx(StringRef S) {
99 OpenMPDirectiveKindExWrapper DKind = getOpenMPDirectiveKind(S);
100 if (DKind != OMPD_unknown)
101 return DKind;
102
103 return llvm::StringSwitch<OpenMPDirectiveKindExWrapper>(S)
104 .Case("cancellation", OMPD_cancellation)
105 .Case("data", OMPD_data)
106 .Case("declare", OMPD_declare)
107 .Case("end", OMPD_end)
108 .Case("enter", OMPD_enter)
109 .Case("exit", OMPD_exit)
110 .Case("point", OMPD_point)
111 .Case("reduction", OMPD_reduction)
112 .Case("update", OMPD_update)
113 .Case("mapper", OMPD_mapper)
114 .Case("variant", OMPD_variant)
115 .Case("begin", OMPD_begin)
116 .Default(OMPD_unknown);
117}
118
119static OpenMPDirectiveKindExWrapper parseOpenMPDirectiveKind(Parser &P) {
120 // Array of foldings: F[i][0] F[i][1] ===> F[i][2].
121 // E.g.: OMPD_for OMPD_simd ===> OMPD_for_simd
122 // TODO: add other combined directives in topological order.
123 static const OpenMPDirectiveKindExWrapper F[][3] = {
124 {OMPD_begin, OMPD_declare, OMPD_begin_declare},
125 {OMPD_begin, OMPD_assumes, OMPD_begin_assumes},
126 {OMPD_end, OMPD_declare, OMPD_end_declare},
127 {OMPD_end, OMPD_assumes, OMPD_end_assumes},
128 {OMPD_cancellation, OMPD_point, OMPD_cancellation_point},
129 {OMPD_declare, OMPD_reduction, OMPD_declare_reduction},
130 {OMPD_declare, OMPD_mapper, OMPD_declare_mapper},
131 {OMPD_declare, OMPD_simd, OMPD_declare_simd},
132 {OMPD_declare, OMPD_target, OMPD_declare_target},
133 {OMPD_declare, OMPD_variant, OMPD_declare_variant},
134 {OMPD_begin_declare, OMPD_variant, OMPD_begin_declare_variant},
135 {OMPD_end_declare, OMPD_variant, OMPD_end_declare_variant},
136 {OMPD_distribute, OMPD_parallel, OMPD_distribute_parallel},
137 {OMPD_distribute_parallel, OMPD_for, OMPD_distribute_parallel_for},
138 {OMPD_distribute_parallel_for, OMPD_simd,
139 OMPD_distribute_parallel_for_simd},
140 {OMPD_distribute, OMPD_simd, OMPD_distribute_simd},
141 {OMPD_end_declare, OMPD_target, OMPD_end_declare_target},
142 {OMPD_target, OMPD_data, OMPD_target_data},
143 {OMPD_target, OMPD_enter, OMPD_target_enter},
144 {OMPD_target, OMPD_exit, OMPD_target_exit},
145 {OMPD_target, OMPD_update, OMPD_target_update},
146 {OMPD_target_enter, OMPD_data, OMPD_target_enter_data},
147 {OMPD_target_exit, OMPD_data, OMPD_target_exit_data},
148 {OMPD_for, OMPD_simd, OMPD_for_simd},
149 {OMPD_parallel, OMPD_for, OMPD_parallel_for},
150 {OMPD_parallel_for, OMPD_simd, OMPD_parallel_for_simd},
151 {OMPD_parallel, OMPD_sections, OMPD_parallel_sections},
152 {OMPD_taskloop, OMPD_simd, OMPD_taskloop_simd},
153 {OMPD_target, OMPD_parallel, OMPD_target_parallel},
154 {OMPD_target, OMPD_simd, OMPD_target_simd},
155 {OMPD_target_parallel, OMPD_for, OMPD_target_parallel_for},
156 {OMPD_target_parallel_for, OMPD_simd, OMPD_target_parallel_for_simd},
157 {OMPD_teams, OMPD_distribute, OMPD_teams_distribute},
158 {OMPD_teams_distribute, OMPD_simd, OMPD_teams_distribute_simd},
159 {OMPD_teams_distribute, OMPD_parallel, OMPD_teams_distribute_parallel},
160 {OMPD_teams_distribute_parallel, OMPD_for,
161 OMPD_teams_distribute_parallel_for},
162 {OMPD_teams_distribute_parallel_for, OMPD_simd,
163 OMPD_teams_distribute_parallel_for_simd},
164 {OMPD_target, OMPD_teams, OMPD_target_teams},
165 {OMPD_target_teams, OMPD_distribute, OMPD_target_teams_distribute},
166 {OMPD_target_teams_distribute, OMPD_parallel,
167 OMPD_target_teams_distribute_parallel},
168 {OMPD_target_teams_distribute, OMPD_simd,
169 OMPD_target_teams_distribute_simd},
170 {OMPD_target_teams_distribute_parallel, OMPD_for,
171 OMPD_target_teams_distribute_parallel_for},
172 {OMPD_target_teams_distribute_parallel_for, OMPD_simd,
173 OMPD_target_teams_distribute_parallel_for_simd},
174 {OMPD_master, OMPD_taskloop, OMPD_master_taskloop},
175 {OMPD_master_taskloop, OMPD_simd, OMPD_master_taskloop_simd},
176 {OMPD_parallel, OMPD_master, OMPD_parallel_master},
177 {OMPD_parallel_master, OMPD_taskloop, OMPD_parallel_master_taskloop},
178 {OMPD_parallel_master_taskloop, OMPD_simd,
179 OMPD_parallel_master_taskloop_simd}};
180 enum { CancellationPoint = 0, DeclareReduction = 1, TargetData = 2 };
181 Token Tok = P.getCurToken();
182 OpenMPDirectiveKindExWrapper DKind =
183 Tok.isAnnotation()
184 ? static_cast<unsigned>(OMPD_unknown)
185 : getOpenMPDirectiveKindEx(P.getPreprocessor().getSpelling(Tok));
186 if (DKind == OMPD_unknown)
187 return OMPD_unknown;
188
189 for (unsigned I = 0; I < llvm::array_lengthof(F); ++I) {
190 if (DKind != F[I][0])
191 continue;
192
193 Tok = P.getPreprocessor().LookAhead(0);
194 OpenMPDirectiveKindExWrapper SDKind =
195 Tok.isAnnotation()
196 ? static_cast<unsigned>(OMPD_unknown)
197 : getOpenMPDirectiveKindEx(P.getPreprocessor().getSpelling(Tok));
198 if (SDKind == OMPD_unknown)
199 continue;
200
201 if (SDKind == F[I][1]) {
202 P.ConsumeToken();
203 DKind = F[I][2];
204 }
205 }
206 return unsigned(DKind) < llvm::omp::Directive_enumSize
207 ? static_cast<OpenMPDirectiveKind>(DKind)
208 : OMPD_unknown;
209}
210
211static DeclarationName parseOpenMPReductionId(Parser &P) {
212 Token Tok = P.getCurToken();
213 Sema &Actions = P.getActions();
214 OverloadedOperatorKind OOK = OO_None;
215 // Allow to use 'operator' keyword for C++ operators
216 bool WithOperator = false;
217 if (Tok.is(tok::kw_operator)) {
218 P.ConsumeToken();
219 Tok = P.getCurToken();
220 WithOperator = true;
221 }
222 switch (Tok.getKind()) {
223 case tok::plus: // '+'
224 OOK = OO_Plus;
225 break;
226 case tok::minus: // '-'
227 OOK = OO_Minus;
228 break;
229 case tok::star: // '*'
230 OOK = OO_Star;
231 break;
232 case tok::amp: // '&'
233 OOK = OO_Amp;
234 break;
235 case tok::pipe: // '|'
236 OOK = OO_Pipe;
237 break;
238 case tok::caret: // '^'
239 OOK = OO_Caret;
240 break;
241 case tok::ampamp: // '&&'
242 OOK = OO_AmpAmp;
243 break;
244 case tok::pipepipe: // '||'
245 OOK = OO_PipePipe;
246 break;
247 case tok::identifier: // identifier
248 if (!WithOperator)
249 break;
250 LLVM_FALLTHROUGH[[gnu::fallthrough]];
251 default:
252 P.Diag(Tok.getLocation(), diag::err_omp_expected_reduction_identifier);
253 P.SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
254 Parser::StopBeforeMatch);
255 return DeclarationName();
256 }
257 P.ConsumeToken();
258 auto &DeclNames = Actions.getASTContext().DeclarationNames;
259 return OOK == OO_None ? DeclNames.getIdentifier(Tok.getIdentifierInfo())
260 : DeclNames.getCXXOperatorName(OOK);
261}
262
263/// Parse 'omp declare reduction' construct.
264///
265/// declare-reduction-directive:
266/// annot_pragma_openmp 'declare' 'reduction'
267/// '(' <reduction_id> ':' <type> {',' <type>} ':' <expression> ')'
268/// ['initializer' '(' ('omp_priv' '=' <expression>)|<function_call> ')']
269/// annot_pragma_openmp_end
270/// <reduction_id> is either a base language identifier or one of the following
271/// operators: '+', '-', '*', '&', '|', '^', '&&' and '||'.
272///
273Parser::DeclGroupPtrTy
274Parser::ParseOpenMPDeclareReductionDirective(AccessSpecifier AS) {
275 // Parse '('.
276 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
277 if (T.expectAndConsume(
278 diag::err_expected_lparen_after,
279 getOpenMPDirectiveName(OMPD_declare_reduction).data())) {
280 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
281 return DeclGroupPtrTy();
282 }
283
284 DeclarationName Name = parseOpenMPReductionId(*this);
285 if (Name.isEmpty() && Tok.is(tok::annot_pragma_openmp_end))
286 return DeclGroupPtrTy();
287
288 // Consume ':'.
289 bool IsCorrect = !ExpectAndConsume(tok::colon);
290
291 if (!IsCorrect && Tok.is(tok::annot_pragma_openmp_end))
292 return DeclGroupPtrTy();
293
294 IsCorrect = IsCorrect && !Name.isEmpty();
295
296 if (Tok.is(tok::colon) || Tok.is(tok::annot_pragma_openmp_end)) {
297 Diag(Tok.getLocation(), diag::err_expected_type);
298 IsCorrect = false;
299 }
300
301 if (!IsCorrect && Tok.is(tok::annot_pragma_openmp_end))
302 return DeclGroupPtrTy();
303
304 SmallVector<std::pair<QualType, SourceLocation>, 8> ReductionTypes;
305 // Parse list of types until ':' token.
306 do {
307 ColonProtectionRAIIObject ColonRAII(*this);
308 SourceRange Range;
309 TypeResult TR = ParseTypeName(&Range, DeclaratorContext::Prototype, AS);
310 if (TR.isUsable()) {
311 QualType ReductionType =
312 Actions.ActOnOpenMPDeclareReductionType(Range.getBegin(), TR);
313 if (!ReductionType.isNull()) {
314 ReductionTypes.push_back(
315 std::make_pair(ReductionType, Range.getBegin()));
316 }
317 } else {
318 SkipUntil(tok::comma, tok::colon, tok::annot_pragma_openmp_end,
319 StopBeforeMatch);
320 }
321
322 if (Tok.is(tok::colon) || Tok.is(tok::annot_pragma_openmp_end))
323 break;
324
325 // Consume ','.
326 if (ExpectAndConsume(tok::comma)) {
327 IsCorrect = false;
328 if (Tok.is(tok::annot_pragma_openmp_end)) {
329 Diag(Tok.getLocation(), diag::err_expected_type);
330 return DeclGroupPtrTy();
331 }
332 }
333 } while (Tok.isNot(tok::annot_pragma_openmp_end));
334
335 if (ReductionTypes.empty()) {
336 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
337 return DeclGroupPtrTy();
338 }
339
340 if (!IsCorrect && Tok.is(tok::annot_pragma_openmp_end))
341 return DeclGroupPtrTy();
342
343 // Consume ':'.
344 if (ExpectAndConsume(tok::colon))
345 IsCorrect = false;
346
347 if (Tok.is(tok::annot_pragma_openmp_end)) {
348 Diag(Tok.getLocation(), diag::err_expected_expression);
349 return DeclGroupPtrTy();
350 }
351
352 DeclGroupPtrTy DRD = Actions.ActOnOpenMPDeclareReductionDirectiveStart(
353 getCurScope(), Actions.getCurLexicalContext(), Name, ReductionTypes, AS);
354
355 // Parse <combiner> expression and then parse initializer if any for each
356 // correct type.
357 unsigned I = 0, E = ReductionTypes.size();
358 for (Decl *D : DRD.get()) {
359 TentativeParsingAction TPA(*this);
360 ParseScope OMPDRScope(this, Scope::FnScope | Scope::DeclScope |
361 Scope::CompoundStmtScope |
362 Scope::OpenMPDirectiveScope);
363 // Parse <combiner> expression.
364 Actions.ActOnOpenMPDeclareReductionCombinerStart(getCurScope(), D);
365 ExprResult CombinerResult = Actions.ActOnFinishFullExpr(
366 ParseExpression().get(), D->getLocation(), /*DiscardedValue*/ false);
367 Actions.ActOnOpenMPDeclareReductionCombinerEnd(D, CombinerResult.get());
368
369 if (CombinerResult.isInvalid() && Tok.isNot(tok::r_paren) &&
370 Tok.isNot(tok::annot_pragma_openmp_end)) {
371 TPA.Commit();
372 IsCorrect = false;
373 break;
374 }
375 IsCorrect = !T.consumeClose() && IsCorrect && CombinerResult.isUsable();
376 ExprResult InitializerResult;
377 if (Tok.isNot(tok::annot_pragma_openmp_end)) {
378 // Parse <initializer> expression.
379 if (Tok.is(tok::identifier) &&
380 Tok.getIdentifierInfo()->isStr("initializer")) {
381 ConsumeToken();
382 } else {
383 Diag(Tok.getLocation(), diag::err_expected) << "'initializer'";
384 TPA.Commit();
385 IsCorrect = false;
386 break;
387 }
388 // Parse '('.
389 BalancedDelimiterTracker T(*this, tok::l_paren,
390 tok::annot_pragma_openmp_end);
391 IsCorrect =
392 !T.expectAndConsume(diag::err_expected_lparen_after, "initializer") &&
393 IsCorrect;
394 if (Tok.isNot(tok::annot_pragma_openmp_end)) {
395 ParseScope OMPDRScope(this, Scope::FnScope | Scope::DeclScope |
396 Scope::CompoundStmtScope |
397 Scope::OpenMPDirectiveScope);
398 // Parse expression.
399 VarDecl *OmpPrivParm =
400 Actions.ActOnOpenMPDeclareReductionInitializerStart(getCurScope(),
401 D);
402 // Check if initializer is omp_priv <init_expr> or something else.
403 if (Tok.is(tok::identifier) &&
404 Tok.getIdentifierInfo()->isStr("omp_priv")) {
405 ConsumeToken();
406 ParseOpenMPReductionInitializerForDecl(OmpPrivParm);
407 } else {
408 InitializerResult = Actions.ActOnFinishFullExpr(
409 ParseAssignmentExpression().get(), D->getLocation(),
410 /*DiscardedValue*/ false);
411 }
412 Actions.ActOnOpenMPDeclareReductionInitializerEnd(
413 D, InitializerResult.get(), OmpPrivParm);
414 if (InitializerResult.isInvalid() && Tok.isNot(tok::r_paren) &&
415 Tok.isNot(tok::annot_pragma_openmp_end)) {
416 TPA.Commit();
417 IsCorrect = false;
418 break;
419 }
420 IsCorrect =
421 !T.consumeClose() && IsCorrect && !InitializerResult.isInvalid();
422 }
423 }
424
425 ++I;
426 // Revert parsing if not the last type, otherwise accept it, we're done with
427 // parsing.
428 if (I != E)
429 TPA.Revert();
430 else
431 TPA.Commit();
432 }
433 return Actions.ActOnOpenMPDeclareReductionDirectiveEnd(getCurScope(), DRD,
434 IsCorrect);
435}
436
437void Parser::ParseOpenMPReductionInitializerForDecl(VarDecl *OmpPrivParm) {
438 // Parse declarator '=' initializer.
439 // If a '==' or '+=' is found, suggest a fixit to '='.
440 if (isTokenEqualOrEqualTypo()) {
441 ConsumeToken();
442
443 if (Tok.is(tok::code_completion)) {
444 cutOffParsing();
445 Actions.CodeCompleteInitializer(getCurScope(), OmpPrivParm);
446 Actions.FinalizeDeclaration(OmpPrivParm);
447 return;
448 }
449
450 PreferredType.enterVariableInit(Tok.getLocation(), OmpPrivParm);
451 ExprResult Init = ParseInitializer();
452
453 if (Init.isInvalid()) {
454 SkipUntil(tok::r_paren, tok::annot_pragma_openmp_end, StopBeforeMatch);
455 Actions.ActOnInitializerError(OmpPrivParm);
456 } else {
457 Actions.AddInitializerToDecl(OmpPrivParm, Init.get(),
458 /*DirectInit=*/false);
459 }
460 } else if (Tok.is(tok::l_paren)) {
461 // Parse C++ direct initializer: '(' expression-list ')'
462 BalancedDelimiterTracker T(*this, tok::l_paren);
463 T.consumeOpen();
464
465 ExprVector Exprs;
466 CommaLocsTy CommaLocs;
467
468 SourceLocation LParLoc = T.getOpenLocation();
469 auto RunSignatureHelp = [this, OmpPrivParm, LParLoc, &Exprs]() {
470 QualType PreferredType = Actions.ProduceConstructorSignatureHelp(
471 getCurScope(), OmpPrivParm->getType()->getCanonicalTypeInternal(),
472 OmpPrivParm->getLocation(), Exprs, LParLoc);
473 CalledSignatureHelp = true;
474 return PreferredType;
475 };
476 if (ParseExpressionList(Exprs, CommaLocs, [&] {
477 PreferredType.enterFunctionArgument(Tok.getLocation(),
478 RunSignatureHelp);
479 })) {
480 if (PP.isCodeCompletionReached() && !CalledSignatureHelp)
481 RunSignatureHelp();
482 Actions.ActOnInitializerError(OmpPrivParm);
483 SkipUntil(tok::r_paren, tok::annot_pragma_openmp_end, StopBeforeMatch);
484 } else {
485 // Match the ')'.
486 SourceLocation RLoc = Tok.getLocation();
487 if (!T.consumeClose())
488 RLoc = T.getCloseLocation();
489
490 assert(!Exprs.empty() && Exprs.size() - 1 == CommaLocs.size() &&((!Exprs.empty() && Exprs.size() - 1 == CommaLocs.size
() && "Unexpected number of commas!") ? static_cast<
void> (0) : __assert_fail ("!Exprs.empty() && Exprs.size() - 1 == CommaLocs.size() && \"Unexpected number of commas!\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 491, __PRETTY_FUNCTION__))
491 "Unexpected number of commas!")((!Exprs.empty() && Exprs.size() - 1 == CommaLocs.size
() && "Unexpected number of commas!") ? static_cast<
void> (0) : __assert_fail ("!Exprs.empty() && Exprs.size() - 1 == CommaLocs.size() && \"Unexpected number of commas!\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 491, __PRETTY_FUNCTION__))
;
492
493 ExprResult Initializer =
494 Actions.ActOnParenListExpr(T.getOpenLocation(), RLoc, Exprs);
495 Actions.AddInitializerToDecl(OmpPrivParm, Initializer.get(),
496 /*DirectInit=*/true);
497 }
498 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
499 // Parse C++0x braced-init-list.
500 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
501
502 ExprResult Init(ParseBraceInitializer());
503
504 if (Init.isInvalid()) {
505 Actions.ActOnInitializerError(OmpPrivParm);
506 } else {
507 Actions.AddInitializerToDecl(OmpPrivParm, Init.get(),
508 /*DirectInit=*/true);
509 }
510 } else {
511 Actions.ActOnUninitializedDecl(OmpPrivParm);
512 }
513}
514
515/// Parses 'omp declare mapper' directive.
516///
517/// declare-mapper-directive:
518/// annot_pragma_openmp 'declare' 'mapper' '(' [<mapper-identifier> ':']
519/// <type> <var> ')' [<clause>[[,] <clause>] ... ]
520/// annot_pragma_openmp_end
521/// <mapper-identifier> and <var> are base language identifiers.
522///
523Parser::DeclGroupPtrTy
524Parser::ParseOpenMPDeclareMapperDirective(AccessSpecifier AS) {
525 bool IsCorrect = true;
526 // Parse '('
527 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
528 if (T.expectAndConsume(diag::err_expected_lparen_after,
529 getOpenMPDirectiveName(OMPD_declare_mapper).data())) {
530 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
531 return DeclGroupPtrTy();
532 }
533
534 // Parse <mapper-identifier>
535 auto &DeclNames = Actions.getASTContext().DeclarationNames;
536 DeclarationName MapperId;
537 if (PP.LookAhead(0).is(tok::colon)) {
538 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::kw_default)) {
539 Diag(Tok.getLocation(), diag::err_omp_mapper_illegal_identifier);
540 IsCorrect = false;
541 } else {
542 MapperId = DeclNames.getIdentifier(Tok.getIdentifierInfo());
543 }
544 ConsumeToken();
545 // Consume ':'.
546 ExpectAndConsume(tok::colon);
547 } else {
548 // If no mapper identifier is provided, its name is "default" by default
549 MapperId =
550 DeclNames.getIdentifier(&Actions.getASTContext().Idents.get("default"));
551 }
552
553 if (!IsCorrect && Tok.is(tok::annot_pragma_openmp_end))
554 return DeclGroupPtrTy();
555
556 // Parse <type> <var>
557 DeclarationName VName;
558 QualType MapperType;
559 SourceRange Range;
560 TypeResult ParsedType = parseOpenMPDeclareMapperVarDecl(Range, VName, AS);
561 if (ParsedType.isUsable())
562 MapperType =
563 Actions.ActOnOpenMPDeclareMapperType(Range.getBegin(), ParsedType);
564 if (MapperType.isNull())
565 IsCorrect = false;
566 if (!IsCorrect) {
567 SkipUntil(tok::annot_pragma_openmp_end, Parser::StopBeforeMatch);
568 return DeclGroupPtrTy();
569 }
570
571 // Consume ')'.
572 IsCorrect &= !T.consumeClose();
573 if (!IsCorrect) {
574 SkipUntil(tok::annot_pragma_openmp_end, Parser::StopBeforeMatch);
575 return DeclGroupPtrTy();
576 }
577
578 // Enter scope.
579 DeclarationNameInfo DirName;
580 SourceLocation Loc = Tok.getLocation();
581 unsigned ScopeFlags = Scope::FnScope | Scope::DeclScope |
582 Scope::CompoundStmtScope | Scope::OpenMPDirectiveScope;
583 ParseScope OMPDirectiveScope(this, ScopeFlags);
584 Actions.StartOpenMPDSABlock(OMPD_declare_mapper, DirName, getCurScope(), Loc);
585
586 // Add the mapper variable declaration.
587 ExprResult MapperVarRef = Actions.ActOnOpenMPDeclareMapperDirectiveVarDecl(
588 getCurScope(), MapperType, Range.getBegin(), VName);
589
590 // Parse map clauses.
591 SmallVector<OMPClause *, 6> Clauses;
592 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
593 OpenMPClauseKind CKind = Tok.isAnnotation()
594 ? OMPC_unknown
595 : getOpenMPClauseKind(PP.getSpelling(Tok));
596 Actions.StartOpenMPClause(CKind);
597 OMPClause *Clause =
598 ParseOpenMPClause(OMPD_declare_mapper, CKind, Clauses.empty());
599 if (Clause)
600 Clauses.push_back(Clause);
601 else
602 IsCorrect = false;
603 // Skip ',' if any.
604 if (Tok.is(tok::comma))
605 ConsumeToken();
606 Actions.EndOpenMPClause();
607 }
608 if (Clauses.empty()) {
609 Diag(Tok, diag::err_omp_expected_clause)
610 << getOpenMPDirectiveName(OMPD_declare_mapper);
611 IsCorrect = false;
612 }
613
614 // Exit scope.
615 Actions.EndOpenMPDSABlock(nullptr);
616 OMPDirectiveScope.Exit();
617 DeclGroupPtrTy DG = Actions.ActOnOpenMPDeclareMapperDirective(
618 getCurScope(), Actions.getCurLexicalContext(), MapperId, MapperType,
619 Range.getBegin(), VName, AS, MapperVarRef.get(), Clauses);
620 if (!IsCorrect)
621 return DeclGroupPtrTy();
622
623 return DG;
624}
625
626TypeResult Parser::parseOpenMPDeclareMapperVarDecl(SourceRange &Range,
627 DeclarationName &Name,
628 AccessSpecifier AS) {
629 // Parse the common declaration-specifiers piece.
630 Parser::DeclSpecContext DSC = Parser::DeclSpecContext::DSC_type_specifier;
631 DeclSpec DS(AttrFactory);
632 ParseSpecifierQualifierList(DS, AS, DSC);
633
634 // Parse the declarator.
635 DeclaratorContext Context = DeclaratorContext::Prototype;
636 Declarator DeclaratorInfo(DS, Context);
637 ParseDeclarator(DeclaratorInfo);
638 Range = DeclaratorInfo.getSourceRange();
639 if (DeclaratorInfo.getIdentifier() == nullptr) {
640 Diag(Tok.getLocation(), diag::err_omp_mapper_expected_declarator);
641 return true;
642 }
643 Name = Actions.GetNameForDeclarator(DeclaratorInfo).getName();
644
645 return Actions.ActOnOpenMPDeclareMapperVarDecl(getCurScope(), DeclaratorInfo);
646}
647
648namespace {
649/// RAII that recreates function context for correct parsing of clauses of
650/// 'declare simd' construct.
651/// OpenMP, 2.8.2 declare simd Construct
652/// The expressions appearing in the clauses of this directive are evaluated in
653/// the scope of the arguments of the function declaration or definition.
654class FNContextRAII final {
655 Parser &P;
656 Sema::CXXThisScopeRAII *ThisScope;
657 Parser::MultiParseScope Scopes;
658 bool HasFunScope = false;
659 FNContextRAII() = delete;
660 FNContextRAII(const FNContextRAII &) = delete;
661 FNContextRAII &operator=(const FNContextRAII &) = delete;
662
663public:
664 FNContextRAII(Parser &P, Parser::DeclGroupPtrTy Ptr) : P(P), Scopes(P) {
665 Decl *D = *Ptr.get().begin();
666 NamedDecl *ND = dyn_cast<NamedDecl>(D);
667 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
668 Sema &Actions = P.getActions();
669
670 // Allow 'this' within late-parsed attributes.
671 ThisScope = new Sema::CXXThisScopeRAII(Actions, RD, Qualifiers(),
672 ND && ND->isCXXInstanceMember());
673
674 // If the Decl is templatized, add template parameters to scope.
675 // FIXME: Track CurTemplateDepth?
676 P.ReenterTemplateScopes(Scopes, D);
677
678 // If the Decl is on a function, add function parameters to the scope.
679 if (D->isFunctionOrFunctionTemplate()) {
680 HasFunScope = true;
681 Scopes.Enter(Scope::FnScope | Scope::DeclScope |
682 Scope::CompoundStmtScope);
683 Actions.ActOnReenterFunctionContext(Actions.getCurScope(), D);
684 }
685 }
686 ~FNContextRAII() {
687 if (HasFunScope)
688 P.getActions().ActOnExitFunctionContext();
689 delete ThisScope;
690 }
691};
692} // namespace
693
694/// Parses clauses for 'declare simd' directive.
695/// clause:
696/// 'inbranch' | 'notinbranch'
697/// 'simdlen' '(' <expr> ')'
698/// { 'uniform' '(' <argument_list> ')' }
699/// { 'aligned '(' <argument_list> [ ':' <alignment> ] ')' }
700/// { 'linear '(' <argument_list> [ ':' <step> ] ')' }
701static bool parseDeclareSimdClauses(
702 Parser &P, OMPDeclareSimdDeclAttr::BranchStateTy &BS, ExprResult &SimdLen,
703 SmallVectorImpl<Expr *> &Uniforms, SmallVectorImpl<Expr *> &Aligneds,
704 SmallVectorImpl<Expr *> &Alignments, SmallVectorImpl<Expr *> &Linears,
705 SmallVectorImpl<unsigned> &LinModifiers, SmallVectorImpl<Expr *> &Steps) {
706 SourceRange BSRange;
707 const Token &Tok = P.getCurToken();
708 bool IsError = false;
709 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
710 if (Tok.isNot(tok::identifier))
711 break;
712 OMPDeclareSimdDeclAttr::BranchStateTy Out;
713 IdentifierInfo *II = Tok.getIdentifierInfo();
714 StringRef ClauseName = II->getName();
715 // Parse 'inranch|notinbranch' clauses.
716 if (OMPDeclareSimdDeclAttr::ConvertStrToBranchStateTy(ClauseName, Out)) {
717 if (BS != OMPDeclareSimdDeclAttr::BS_Undefined && BS != Out) {
718 P.Diag(Tok, diag::err_omp_declare_simd_inbranch_notinbranch)
719 << ClauseName
720 << OMPDeclareSimdDeclAttr::ConvertBranchStateTyToStr(BS) << BSRange;
721 IsError = true;
722 }
723 BS = Out;
724 BSRange = SourceRange(Tok.getLocation(), Tok.getEndLoc());
725 P.ConsumeToken();
726 } else if (ClauseName.equals("simdlen")) {
727 if (SimdLen.isUsable()) {
728 P.Diag(Tok, diag::err_omp_more_one_clause)
729 << getOpenMPDirectiveName(OMPD_declare_simd) << ClauseName << 0;
730 IsError = true;
731 }
732 P.ConsumeToken();
733 SourceLocation RLoc;
734 SimdLen = P.ParseOpenMPParensExpr(ClauseName, RLoc);
735 if (SimdLen.isInvalid())
736 IsError = true;
737 } else {
738 OpenMPClauseKind CKind = getOpenMPClauseKind(ClauseName);
739 if (CKind == OMPC_uniform || CKind == OMPC_aligned ||
740 CKind == OMPC_linear) {
741 Parser::OpenMPVarListDataTy Data;
742 SmallVectorImpl<Expr *> *Vars = &Uniforms;
743 if (CKind == OMPC_aligned) {
744 Vars = &Aligneds;
745 } else if (CKind == OMPC_linear) {
746 Data.ExtraModifier = OMPC_LINEAR_val;
747 Vars = &Linears;
748 }
749
750 P.ConsumeToken();
751 if (P.ParseOpenMPVarList(OMPD_declare_simd,
752 getOpenMPClauseKind(ClauseName), *Vars, Data))
753 IsError = true;
754 if (CKind == OMPC_aligned) {
755 Alignments.append(Aligneds.size() - Alignments.size(),
756 Data.DepModOrTailExpr);
757 } else if (CKind == OMPC_linear) {
758 assert(0 <= Data.ExtraModifier &&((0 <= Data.ExtraModifier && Data.ExtraModifier <=
OMPC_LINEAR_unknown && "Unexpected linear modifier."
) ? static_cast<void> (0) : __assert_fail ("0 <= Data.ExtraModifier && Data.ExtraModifier <= OMPC_LINEAR_unknown && \"Unexpected linear modifier.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 760, __PRETTY_FUNCTION__))
759 Data.ExtraModifier <= OMPC_LINEAR_unknown &&((0 <= Data.ExtraModifier && Data.ExtraModifier <=
OMPC_LINEAR_unknown && "Unexpected linear modifier."
) ? static_cast<void> (0) : __assert_fail ("0 <= Data.ExtraModifier && Data.ExtraModifier <= OMPC_LINEAR_unknown && \"Unexpected linear modifier.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 760, __PRETTY_FUNCTION__))
760 "Unexpected linear modifier.")((0 <= Data.ExtraModifier && Data.ExtraModifier <=
OMPC_LINEAR_unknown && "Unexpected linear modifier."
) ? static_cast<void> (0) : __assert_fail ("0 <= Data.ExtraModifier && Data.ExtraModifier <= OMPC_LINEAR_unknown && \"Unexpected linear modifier.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 760, __PRETTY_FUNCTION__))
;
761 if (P.getActions().CheckOpenMPLinearModifier(
762 static_cast<OpenMPLinearClauseKind>(Data.ExtraModifier),
763 Data.ExtraModifierLoc))
764 Data.ExtraModifier = OMPC_LINEAR_val;
765 LinModifiers.append(Linears.size() - LinModifiers.size(),
766 Data.ExtraModifier);
767 Steps.append(Linears.size() - Steps.size(), Data.DepModOrTailExpr);
768 }
769 } else
770 // TODO: add parsing of other clauses.
771 break;
772 }
773 // Skip ',' if any.
774 if (Tok.is(tok::comma))
775 P.ConsumeToken();
776 }
777 return IsError;
778}
779
780/// Parse clauses for '#pragma omp declare simd'.
781Parser::DeclGroupPtrTy
782Parser::ParseOMPDeclareSimdClauses(Parser::DeclGroupPtrTy Ptr,
783 CachedTokens &Toks, SourceLocation Loc) {
784 PP.EnterToken(Tok, /*IsReinject*/ true);
785 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true,
786 /*IsReinject*/ true);
787 // Consume the previously pushed token.
788 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
789 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
790
791 FNContextRAII FnContext(*this, Ptr);
792 OMPDeclareSimdDeclAttr::BranchStateTy BS =
793 OMPDeclareSimdDeclAttr::BS_Undefined;
794 ExprResult Simdlen;
795 SmallVector<Expr *, 4> Uniforms;
796 SmallVector<Expr *, 4> Aligneds;
797 SmallVector<Expr *, 4> Alignments;
798 SmallVector<Expr *, 4> Linears;
799 SmallVector<unsigned, 4> LinModifiers;
800 SmallVector<Expr *, 4> Steps;
801 bool IsError =
802 parseDeclareSimdClauses(*this, BS, Simdlen, Uniforms, Aligneds,
803 Alignments, Linears, LinModifiers, Steps);
804 skipUntilPragmaOpenMPEnd(OMPD_declare_simd);
805 // Skip the last annot_pragma_openmp_end.
806 SourceLocation EndLoc = ConsumeAnnotationToken();
807 if (IsError)
808 return Ptr;
809 return Actions.ActOnOpenMPDeclareSimdDirective(
810 Ptr, BS, Simdlen.get(), Uniforms, Aligneds, Alignments, Linears,
811 LinModifiers, Steps, SourceRange(Loc, EndLoc));
812}
813
814namespace {
815/// Constant used in the diagnostics to distinguish the levels in an OpenMP
816/// contexts: selector-set={selector(trait, ...), ...}, ....
817enum OMPContextLvl {
818 CONTEXT_SELECTOR_SET_LVL = 0,
819 CONTEXT_SELECTOR_LVL = 1,
820 CONTEXT_TRAIT_LVL = 2,
821};
822
823static StringRef stringLiteralParser(Parser &P) {
824 ExprResult Res = P.ParseStringLiteralExpression(true);
825 return Res.isUsable() ? Res.getAs<StringLiteral>()->getString() : "";
826}
827
828static StringRef getNameFromIdOrString(Parser &P, Token &Tok,
829 OMPContextLvl Lvl) {
830 if (Tok.is(tok::identifier)) {
831 llvm::SmallString<16> Buffer;
832 StringRef Name = P.getPreprocessor().getSpelling(Tok, Buffer);
833 (void)P.ConsumeToken();
834 return Name;
835 }
836
837 if (tok::isStringLiteral(Tok.getKind()))
838 return stringLiteralParser(P);
839
840 P.Diag(Tok.getLocation(),
841 diag::warn_omp_declare_variant_string_literal_or_identifier)
842 << Lvl;
843 return "";
844}
845
846static bool checkForDuplicates(Parser &P, StringRef Name,
847 SourceLocation NameLoc,
848 llvm::StringMap<SourceLocation> &Seen,
849 OMPContextLvl Lvl) {
850 auto Res = Seen.try_emplace(Name, NameLoc);
851 if (Res.second)
852 return false;
853
854 // Each trait-set-selector-name, trait-selector-name and trait-name can
855 // only be specified once.
856 P.Diag(NameLoc, diag::warn_omp_declare_variant_ctx_mutiple_use)
857 << Lvl << Name;
858 P.Diag(Res.first->getValue(), diag::note_omp_declare_variant_ctx_used_here)
859 << Lvl << Name;
860 return true;
861}
862} // namespace
863
864void Parser::parseOMPTraitPropertyKind(OMPTraitProperty &TIProperty,
865 llvm::omp::TraitSet Set,
866 llvm::omp::TraitSelector Selector,
867 llvm::StringMap<SourceLocation> &Seen) {
868 TIProperty.Kind = TraitProperty::invalid;
869
870 SourceLocation NameLoc = Tok.getLocation();
871 StringRef Name = getNameFromIdOrString(*this, Tok, CONTEXT_TRAIT_LVL);
872 if (Name.empty()) {
873 Diag(Tok.getLocation(), diag::note_omp_declare_variant_ctx_options)
874 << CONTEXT_TRAIT_LVL << listOpenMPContextTraitProperties(Set, Selector);
875 return;
876 }
877
878 TIProperty.RawString = Name;
879 TIProperty.Kind = getOpenMPContextTraitPropertyKind(Set, Selector, Name);
880 if (TIProperty.Kind != TraitProperty::invalid) {
881 if (checkForDuplicates(*this, Name, NameLoc, Seen, CONTEXT_TRAIT_LVL))
882 TIProperty.Kind = TraitProperty::invalid;
883 return;
884 }
885
886 // It follows diagnosis and helping notes.
887 // FIXME: We should move the diagnosis string generation into libFrontend.
888 Diag(NameLoc, diag::warn_omp_declare_variant_ctx_not_a_property)
889 << Name << getOpenMPContextTraitSelectorName(Selector)
890 << getOpenMPContextTraitSetName(Set);
891
892 TraitSet SetForName = getOpenMPContextTraitSetKind(Name);
893 if (SetForName != TraitSet::invalid) {
894 Diag(NameLoc, diag::note_omp_declare_variant_ctx_is_a)
895 << Name << CONTEXT_SELECTOR_SET_LVL << CONTEXT_TRAIT_LVL;
896 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try)
897 << Name << "<selector-name>"
898 << "(<property-name>)";
899 return;
900 }
901 TraitSelector SelectorForName = getOpenMPContextTraitSelectorKind(Name);
902 if (SelectorForName != TraitSelector::invalid) {
903 Diag(NameLoc, diag::note_omp_declare_variant_ctx_is_a)
904 << Name << CONTEXT_SELECTOR_LVL << CONTEXT_TRAIT_LVL;
905 bool AllowsTraitScore = false;
906 bool RequiresProperty = false;
907 isValidTraitSelectorForTraitSet(
908 SelectorForName, getOpenMPContextTraitSetForSelector(SelectorForName),
909 AllowsTraitScore, RequiresProperty);
910 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try)
911 << getOpenMPContextTraitSetName(
912 getOpenMPContextTraitSetForSelector(SelectorForName))
913 << Name << (RequiresProperty ? "(<property-name>)" : "");
914 return;
915 }
916 for (const auto &PotentialSet :
917 {TraitSet::construct, TraitSet::user, TraitSet::implementation,
918 TraitSet::device}) {
919 TraitProperty PropertyForName =
920 getOpenMPContextTraitPropertyKind(PotentialSet, Selector, Name);
921 if (PropertyForName == TraitProperty::invalid)
922 continue;
923 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try)
924 << getOpenMPContextTraitSetName(
925 getOpenMPContextTraitSetForProperty(PropertyForName))
926 << getOpenMPContextTraitSelectorName(
927 getOpenMPContextTraitSelectorForProperty(PropertyForName))
928 << ("(" + Name + ")").str();
929 return;
930 }
931 Diag(NameLoc, diag::note_omp_declare_variant_ctx_options)
932 << CONTEXT_TRAIT_LVL << listOpenMPContextTraitProperties(Set, Selector);
933}
934
935static bool checkExtensionProperty(Parser &P, SourceLocation Loc,
936 OMPTraitProperty &TIProperty,
937 OMPTraitSelector &TISelector,
938 llvm::StringMap<SourceLocation> &Seen) {
939 assert(TISelector.Kind ==((TISelector.Kind == llvm::omp::TraitSelector::implementation_extension
&& "Only for extension properties, e.g., " "`implementation={extension(PROPERTY)}`"
) ? static_cast<void> (0) : __assert_fail ("TISelector.Kind == llvm::omp::TraitSelector::implementation_extension && \"Only for extension properties, e.g., \" \"`implementation={extension(PROPERTY)}`\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 942, __PRETTY_FUNCTION__))
940 llvm::omp::TraitSelector::implementation_extension &&((TISelector.Kind == llvm::omp::TraitSelector::implementation_extension
&& "Only for extension properties, e.g., " "`implementation={extension(PROPERTY)}`"
) ? static_cast<void> (0) : __assert_fail ("TISelector.Kind == llvm::omp::TraitSelector::implementation_extension && \"Only for extension properties, e.g., \" \"`implementation={extension(PROPERTY)}`\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 942, __PRETTY_FUNCTION__))
941 "Only for extension properties, e.g., "((TISelector.Kind == llvm::omp::TraitSelector::implementation_extension
&& "Only for extension properties, e.g., " "`implementation={extension(PROPERTY)}`"
) ? static_cast<void> (0) : __assert_fail ("TISelector.Kind == llvm::omp::TraitSelector::implementation_extension && \"Only for extension properties, e.g., \" \"`implementation={extension(PROPERTY)}`\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 942, __PRETTY_FUNCTION__))
942 "`implementation={extension(PROPERTY)}`")((TISelector.Kind == llvm::omp::TraitSelector::implementation_extension
&& "Only for extension properties, e.g., " "`implementation={extension(PROPERTY)}`"
) ? static_cast<void> (0) : __assert_fail ("TISelector.Kind == llvm::omp::TraitSelector::implementation_extension && \"Only for extension properties, e.g., \" \"`implementation={extension(PROPERTY)}`\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 942, __PRETTY_FUNCTION__))
;
943 if (TIProperty.Kind == TraitProperty::invalid)
944 return false;
945
946 if (TIProperty.Kind ==
947 TraitProperty::implementation_extension_disable_implicit_base)
948 return true;
949
950 if (TIProperty.Kind ==
951 TraitProperty::implementation_extension_allow_templates)
952 return true;
953
954 auto IsMatchExtension = [](OMPTraitProperty &TP) {
955 return (TP.Kind ==
956 llvm::omp::TraitProperty::implementation_extension_match_all ||
957 TP.Kind ==
958 llvm::omp::TraitProperty::implementation_extension_match_any ||
959 TP.Kind ==
960 llvm::omp::TraitProperty::implementation_extension_match_none);
961 };
962
963 if (IsMatchExtension(TIProperty)) {
964 for (OMPTraitProperty &SeenProp : TISelector.Properties)
965 if (IsMatchExtension(SeenProp)) {
966 P.Diag(Loc, diag::err_omp_variant_ctx_second_match_extension);
967 StringRef SeenName = llvm::omp::getOpenMPContextTraitPropertyName(
968 SeenProp.Kind, SeenProp.RawString);
969 SourceLocation SeenLoc = Seen[SeenName];
970 P.Diag(SeenLoc, diag::note_omp_declare_variant_ctx_used_here)
971 << CONTEXT_TRAIT_LVL << SeenName;
972 return false;
973 }
974 return true;
975 }
976
977 llvm_unreachable("Unknown extension property!")::llvm::llvm_unreachable_internal("Unknown extension property!"
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 977)
;
978}
979
980void Parser::parseOMPContextProperty(OMPTraitSelector &TISelector,
981 llvm::omp::TraitSet Set,
982 llvm::StringMap<SourceLocation> &Seen) {
983 assert(TISelector.Kind != TraitSelector::user_condition &&((TISelector.Kind != TraitSelector::user_condition &&
"User conditions are special properties not handled here!") ?
static_cast<void> (0) : __assert_fail ("TISelector.Kind != TraitSelector::user_condition && \"User conditions are special properties not handled here!\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 984, __PRETTY_FUNCTION__))
984 "User conditions are special properties not handled here!")((TISelector.Kind != TraitSelector::user_condition &&
"User conditions are special properties not handled here!") ?
static_cast<void> (0) : __assert_fail ("TISelector.Kind != TraitSelector::user_condition && \"User conditions are special properties not handled here!\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 984, __PRETTY_FUNCTION__))
;
985
986 SourceLocation PropertyLoc = Tok.getLocation();
987 OMPTraitProperty TIProperty;
988 parseOMPTraitPropertyKind(TIProperty, Set, TISelector.Kind, Seen);
989
990 if (TISelector.Kind == llvm::omp::TraitSelector::implementation_extension)
991 if (!checkExtensionProperty(*this, Tok.getLocation(), TIProperty,
992 TISelector, Seen))
993 TIProperty.Kind = TraitProperty::invalid;
994
995 // If we have an invalid property here we already issued a warning.
996 if (TIProperty.Kind == TraitProperty::invalid) {
997 if (PropertyLoc != Tok.getLocation())
998 Diag(Tok.getLocation(), diag::note_omp_declare_variant_ctx_continue_here)
999 << CONTEXT_TRAIT_LVL;
1000 return;
1001 }
1002
1003 if (isValidTraitPropertyForTraitSetAndSelector(TIProperty.Kind,
1004 TISelector.Kind, Set)) {
1005
1006 // If we make it here the property, selector, set, score, condition, ... are
1007 // all valid (or have been corrected). Thus we can record the property.
1008 TISelector.Properties.push_back(TIProperty);
1009 return;
1010 }
1011
1012 Diag(PropertyLoc, diag::warn_omp_ctx_incompatible_property_for_selector)
1013 << getOpenMPContextTraitPropertyName(TIProperty.Kind,
1014 TIProperty.RawString)
1015 << getOpenMPContextTraitSelectorName(TISelector.Kind)
1016 << getOpenMPContextTraitSetName(Set);
1017 Diag(PropertyLoc, diag::note_omp_ctx_compatible_set_and_selector_for_property)
1018 << getOpenMPContextTraitPropertyName(TIProperty.Kind,
1019 TIProperty.RawString)
1020 << getOpenMPContextTraitSelectorName(
1021 getOpenMPContextTraitSelectorForProperty(TIProperty.Kind))
1022 << getOpenMPContextTraitSetName(
1023 getOpenMPContextTraitSetForProperty(TIProperty.Kind));
1024 Diag(Tok.getLocation(), diag::note_omp_declare_variant_ctx_continue_here)
1025 << CONTEXT_TRAIT_LVL;
1026}
1027
1028void Parser::parseOMPTraitSelectorKind(OMPTraitSelector &TISelector,
1029 llvm::omp::TraitSet Set,
1030 llvm::StringMap<SourceLocation> &Seen) {
1031 TISelector.Kind = TraitSelector::invalid;
1032
1033 SourceLocation NameLoc = Tok.getLocation();
1034 StringRef Name = getNameFromIdOrString(*this, Tok, CONTEXT_SELECTOR_LVL);
1035 if (Name.empty()) {
1036 Diag(Tok.getLocation(), diag::note_omp_declare_variant_ctx_options)
1037 << CONTEXT_SELECTOR_LVL << listOpenMPContextTraitSelectors(Set);
1038 return;
1039 }
1040
1041 TISelector.Kind = getOpenMPContextTraitSelectorKind(Name);
1042 if (TISelector.Kind != TraitSelector::invalid) {
1043 if (checkForDuplicates(*this, Name, NameLoc, Seen, CONTEXT_SELECTOR_LVL))
1044 TISelector.Kind = TraitSelector::invalid;
1045 return;
1046 }
1047
1048 // It follows diagnosis and helping notes.
1049 Diag(NameLoc, diag::warn_omp_declare_variant_ctx_not_a_selector)
1050 << Name << getOpenMPContextTraitSetName(Set);
1051
1052 TraitSet SetForName = getOpenMPContextTraitSetKind(Name);
1053 if (SetForName != TraitSet::invalid) {
1054 Diag(NameLoc, diag::note_omp_declare_variant_ctx_is_a)
1055 << Name << CONTEXT_SELECTOR_SET_LVL << CONTEXT_SELECTOR_LVL;
1056 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try)
1057 << Name << "<selector-name>"
1058 << "<property-name>";
1059 return;
1060 }
1061 for (const auto &PotentialSet :
1062 {TraitSet::construct, TraitSet::user, TraitSet::implementation,
1063 TraitSet::device}) {
1064 TraitProperty PropertyForName = getOpenMPContextTraitPropertyKind(
1065 PotentialSet, TraitSelector::invalid, Name);
1066 if (PropertyForName == TraitProperty::invalid)
1067 continue;
1068 Diag(NameLoc, diag::note_omp_declare_variant_ctx_is_a)
1069 << Name << CONTEXT_TRAIT_LVL << CONTEXT_SELECTOR_LVL;
1070 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try)
1071 << getOpenMPContextTraitSetName(
1072 getOpenMPContextTraitSetForProperty(PropertyForName))
1073 << getOpenMPContextTraitSelectorName(
1074 getOpenMPContextTraitSelectorForProperty(PropertyForName))
1075 << ("(" + Name + ")").str();
1076 return;
1077 }
1078 Diag(NameLoc, diag::note_omp_declare_variant_ctx_options)
1079 << CONTEXT_SELECTOR_LVL << listOpenMPContextTraitSelectors(Set);
1080}
1081
1082/// Parse optional 'score' '(' <expr> ')' ':'.
1083static ExprResult parseContextScore(Parser &P) {
1084 ExprResult ScoreExpr;
1085 llvm::SmallString<16> Buffer;
1086 StringRef SelectorName =
1087 P.getPreprocessor().getSpelling(P.getCurToken(), Buffer);
1088 if (!SelectorName.equals("score"))
1089 return ScoreExpr;
1090 (void)P.ConsumeToken();
1091 SourceLocation RLoc;
1092 ScoreExpr = P.ParseOpenMPParensExpr(SelectorName, RLoc);
1093 // Parse ':'
1094 if (P.getCurToken().is(tok::colon))
1095 (void)P.ConsumeAnyToken();
1096 else
1097 P.Diag(P.getCurToken(), diag::warn_omp_declare_variant_expected)
1098 << "':'"
1099 << "score expression";
1100 return ScoreExpr;
1101}
1102
1103/// Parses an OpenMP context selector.
1104///
1105/// <trait-selector-name> ['('[<trait-score>] <trait-property> [, <t-p>]* ')']
1106void Parser::parseOMPContextSelector(
1107 OMPTraitSelector &TISelector, llvm::omp::TraitSet Set,
1108 llvm::StringMap<SourceLocation> &SeenSelectors) {
1109 unsigned short OuterPC = ParenCount;
1110
1111 // If anything went wrong we issue an error or warning and then skip the rest
1112 // of the selector. However, commas are ambiguous so we look for the nesting
1113 // of parentheses here as well.
1114 auto FinishSelector = [OuterPC, this]() -> void {
1115 bool Done = false;
1116 while (!Done) {
1117 while (!SkipUntil({tok::r_brace, tok::r_paren, tok::comma,
1118 tok::annot_pragma_openmp_end},
1119 StopBeforeMatch))
1120 ;
1121 if (Tok.is(tok::r_paren) && OuterPC > ParenCount)
1122 (void)ConsumeParen();
1123 if (OuterPC <= ParenCount) {
1124 Done = true;
1125 break;
1126 }
1127 if (!Tok.is(tok::comma) && !Tok.is(tok::r_paren)) {
1128 Done = true;
1129 break;
1130 }
1131 (void)ConsumeAnyToken();
1132 }
1133 Diag(Tok.getLocation(), diag::note_omp_declare_variant_ctx_continue_here)
1134 << CONTEXT_SELECTOR_LVL;
1135 };
1136
1137 SourceLocation SelectorLoc = Tok.getLocation();
1138 parseOMPTraitSelectorKind(TISelector, Set, SeenSelectors);
1139 if (TISelector.Kind == TraitSelector::invalid)
1140 return FinishSelector();
1141
1142 bool AllowsTraitScore = false;
1143 bool RequiresProperty = false;
1144 if (!isValidTraitSelectorForTraitSet(TISelector.Kind, Set, AllowsTraitScore,
1145 RequiresProperty)) {
1146 Diag(SelectorLoc, diag::warn_omp_ctx_incompatible_selector_for_set)
1147 << getOpenMPContextTraitSelectorName(TISelector.Kind)
1148 << getOpenMPContextTraitSetName(Set);
1149 Diag(SelectorLoc, diag::note_omp_ctx_compatible_set_for_selector)
1150 << getOpenMPContextTraitSelectorName(TISelector.Kind)
1151 << getOpenMPContextTraitSetName(
1152 getOpenMPContextTraitSetForSelector(TISelector.Kind))
1153 << RequiresProperty;
1154 return FinishSelector();
1155 }
1156
1157 if (!RequiresProperty) {
1158 TISelector.Properties.push_back(
1159 {getOpenMPContextTraitPropertyForSelector(TISelector.Kind),
1160 getOpenMPContextTraitSelectorName(TISelector.Kind)});
1161 return;
1162 }
1163
1164 if (!Tok.is(tok::l_paren)) {
1165 Diag(SelectorLoc, diag::warn_omp_ctx_selector_without_properties)
1166 << getOpenMPContextTraitSelectorName(TISelector.Kind)
1167 << getOpenMPContextTraitSetName(Set);
1168 return FinishSelector();
1169 }
1170
1171 if (TISelector.Kind == TraitSelector::user_condition) {
1172 SourceLocation RLoc;
1173 ExprResult Condition = ParseOpenMPParensExpr("user condition", RLoc);
1174 if (!Condition.isUsable())
1175 return FinishSelector();
1176 TISelector.ScoreOrCondition = Condition.get();
1177 TISelector.Properties.push_back(
1178 {TraitProperty::user_condition_unknown, "<condition>"});
1179 return;
1180 }
1181
1182 BalancedDelimiterTracker BDT(*this, tok::l_paren,
1183 tok::annot_pragma_openmp_end);
1184 // Parse '('.
1185 (void)BDT.consumeOpen();
1186
1187 SourceLocation ScoreLoc = Tok.getLocation();
1188 ExprResult Score = parseContextScore(*this);
1189
1190 if (!AllowsTraitScore && !Score.isUnset()) {
1191 if (Score.isUsable()) {
1192 Diag(ScoreLoc, diag::warn_omp_ctx_incompatible_score_for_property)
1193 << getOpenMPContextTraitSelectorName(TISelector.Kind)
1194 << getOpenMPContextTraitSetName(Set) << Score.get();
1195 } else {
1196 Diag(ScoreLoc, diag::warn_omp_ctx_incompatible_score_for_property)
1197 << getOpenMPContextTraitSelectorName(TISelector.Kind)
1198 << getOpenMPContextTraitSetName(Set) << "<invalid>";
1199 }
1200 Score = ExprResult();
1201 }
1202
1203 if (Score.isUsable())
1204 TISelector.ScoreOrCondition = Score.get();
1205
1206 llvm::StringMap<SourceLocation> SeenProperties;
1207 do {
1208 parseOMPContextProperty(TISelector, Set, SeenProperties);
1209 } while (TryConsumeToken(tok::comma));
1210
1211 // Parse ')'.
1212 BDT.consumeClose();
1213}
1214
1215void Parser::parseOMPTraitSetKind(OMPTraitSet &TISet,
1216 llvm::StringMap<SourceLocation> &Seen) {
1217 TISet.Kind = TraitSet::invalid;
1218
1219 SourceLocation NameLoc = Tok.getLocation();
1220 StringRef Name = getNameFromIdOrString(*this, Tok, CONTEXT_SELECTOR_SET_LVL);
1221 if (Name.empty()) {
1222 Diag(Tok.getLocation(), diag::note_omp_declare_variant_ctx_options)
1223 << CONTEXT_SELECTOR_SET_LVL << listOpenMPContextTraitSets();
1224 return;
1225 }
1226
1227 TISet.Kind = getOpenMPContextTraitSetKind(Name);
1228 if (TISet.Kind != TraitSet::invalid) {
1229 if (checkForDuplicates(*this, Name, NameLoc, Seen,
1230 CONTEXT_SELECTOR_SET_LVL))
1231 TISet.Kind = TraitSet::invalid;
1232 return;
1233 }
1234
1235 // It follows diagnosis and helping notes.
1236 Diag(NameLoc, diag::warn_omp_declare_variant_ctx_not_a_set) << Name;
1237
1238 TraitSelector SelectorForName = getOpenMPContextTraitSelectorKind(Name);
1239 if (SelectorForName != TraitSelector::invalid) {
1240 Diag(NameLoc, diag::note_omp_declare_variant_ctx_is_a)
1241 << Name << CONTEXT_SELECTOR_LVL << CONTEXT_SELECTOR_SET_LVL;
1242 bool AllowsTraitScore = false;
1243 bool RequiresProperty = false;
1244 isValidTraitSelectorForTraitSet(
1245 SelectorForName, getOpenMPContextTraitSetForSelector(SelectorForName),
1246 AllowsTraitScore, RequiresProperty);
1247 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try)
1248 << getOpenMPContextTraitSetName(
1249 getOpenMPContextTraitSetForSelector(SelectorForName))
1250 << Name << (RequiresProperty ? "(<property-name>)" : "");
1251 return;
1252 }
1253 for (const auto &PotentialSet :
1254 {TraitSet::construct, TraitSet::user, TraitSet::implementation,
1255 TraitSet::device}) {
1256 TraitProperty PropertyForName = getOpenMPContextTraitPropertyKind(
1257 PotentialSet, TraitSelector::invalid, Name);
1258 if (PropertyForName == TraitProperty::invalid)
1259 continue;
1260 Diag(NameLoc, diag::note_omp_declare_variant_ctx_is_a)
1261 << Name << CONTEXT_TRAIT_LVL << CONTEXT_SELECTOR_SET_LVL;
1262 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try)
1263 << getOpenMPContextTraitSetName(
1264 getOpenMPContextTraitSetForProperty(PropertyForName))
1265 << getOpenMPContextTraitSelectorName(
1266 getOpenMPContextTraitSelectorForProperty(PropertyForName))
1267 << ("(" + Name + ")").str();
1268 return;
1269 }
1270 Diag(NameLoc, diag::note_omp_declare_variant_ctx_options)
1271 << CONTEXT_SELECTOR_SET_LVL << listOpenMPContextTraitSets();
1272}
1273
1274/// Parses an OpenMP context selector set.
1275///
1276/// <trait-set-selector-name> '=' '{' <trait-selector> [, <trait-selector>]* '}'
1277void Parser::parseOMPContextSelectorSet(
1278 OMPTraitSet &TISet, llvm::StringMap<SourceLocation> &SeenSets) {
1279 auto OuterBC = BraceCount;
1280
1281 // If anything went wrong we issue an error or warning and then skip the rest
1282 // of the set. However, commas are ambiguous so we look for the nesting
1283 // of braces here as well.
1284 auto FinishSelectorSet = [this, OuterBC]() -> void {
1285 bool Done = false;
1286 while (!Done) {
1287 while (!SkipUntil({tok::comma, tok::r_brace, tok::r_paren,
1288 tok::annot_pragma_openmp_end},
1289 StopBeforeMatch))
1290 ;
1291 if (Tok.is(tok::r_brace) && OuterBC > BraceCount)
1292 (void)ConsumeBrace();
1293 if (OuterBC <= BraceCount) {
1294 Done = true;
1295 break;
1296 }
1297 if (!Tok.is(tok::comma) && !Tok.is(tok::r_brace)) {
1298 Done = true;
1299 break;
1300 }
1301 (void)ConsumeAnyToken();
1302 }
1303 Diag(Tok.getLocation(), diag::note_omp_declare_variant_ctx_continue_here)
1304 << CONTEXT_SELECTOR_SET_LVL;
1305 };
1306
1307 parseOMPTraitSetKind(TISet, SeenSets);
1308 if (TISet.Kind == TraitSet::invalid)
1309 return FinishSelectorSet();
1310
1311 // Parse '='.
1312 if (!TryConsumeToken(tok::equal))
1313 Diag(Tok.getLocation(), diag::warn_omp_declare_variant_expected)
1314 << "="
1315 << ("context set name \"" + getOpenMPContextTraitSetName(TISet.Kind) +
1316 "\"")
1317 .str();
1318
1319 // Parse '{'.
1320 if (Tok.is(tok::l_brace)) {
1321 (void)ConsumeBrace();
1322 } else {
1323 Diag(Tok.getLocation(), diag::warn_omp_declare_variant_expected)
1324 << "{"
1325 << ("'=' that follows the context set name \"" +
1326 getOpenMPContextTraitSetName(TISet.Kind) + "\"")
1327 .str();
1328 }
1329
1330 llvm::StringMap<SourceLocation> SeenSelectors;
1331 do {
1332 OMPTraitSelector TISelector;
1333 parseOMPContextSelector(TISelector, TISet.Kind, SeenSelectors);
1334 if (TISelector.Kind != TraitSelector::invalid &&
1335 !TISelector.Properties.empty())
1336 TISet.Selectors.push_back(TISelector);
1337 } while (TryConsumeToken(tok::comma));
1338
1339 // Parse '}'.
1340 if (Tok.is(tok::r_brace)) {
1341 (void)ConsumeBrace();
1342 } else {
1343 Diag(Tok.getLocation(), diag::warn_omp_declare_variant_expected)
1344 << "}"
1345 << ("context selectors for the context set \"" +
1346 getOpenMPContextTraitSetName(TISet.Kind) + "\"")
1347 .str();
1348 }
1349}
1350
1351/// Parse OpenMP context selectors:
1352///
1353/// <trait-set-selector> [, <trait-set-selector>]*
1354bool Parser::parseOMPContextSelectors(SourceLocation Loc, OMPTraitInfo &TI) {
1355 llvm::StringMap<SourceLocation> SeenSets;
1356 do {
1357 OMPTraitSet TISet;
1358 parseOMPContextSelectorSet(TISet, SeenSets);
1359 if (TISet.Kind != TraitSet::invalid && !TISet.Selectors.empty())
1360 TI.Sets.push_back(TISet);
1361 } while (TryConsumeToken(tok::comma));
1362
1363 return false;
1364}
1365
1366/// Parse clauses for '#pragma omp declare variant ( variant-func-id ) clause'.
1367void Parser::ParseOMPDeclareVariantClauses(Parser::DeclGroupPtrTy Ptr,
1368 CachedTokens &Toks,
1369 SourceLocation Loc) {
1370 PP.EnterToken(Tok, /*IsReinject*/ true);
1371 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true,
1372 /*IsReinject*/ true);
1373 // Consume the previously pushed token.
1374 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
1375 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
1376
1377 FNContextRAII FnContext(*this, Ptr);
1378 // Parse function declaration id.
1379 SourceLocation RLoc;
1380 // Parse with IsAddressOfOperand set to true to parse methods as DeclRefExprs
1381 // instead of MemberExprs.
1382 ExprResult AssociatedFunction;
1383 {
1384 // Do not mark function as is used to prevent its emission if this is the
1385 // only place where it is used.
1386 EnterExpressionEvaluationContext Unevaluated(
1387 Actions, Sema::ExpressionEvaluationContext::Unevaluated);
1388 AssociatedFunction = ParseOpenMPParensExpr(
1389 getOpenMPDirectiveName(OMPD_declare_variant), RLoc,
1390 /*IsAddressOfOperand=*/true);
1391 }
1392 if (!AssociatedFunction.isUsable()) {
1393 if (!Tok.is(tok::annot_pragma_openmp_end))
1394 while (!SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch))
1395 ;
1396 // Skip the last annot_pragma_openmp_end.
1397 (void)ConsumeAnnotationToken();
1398 return;
1399 }
1400
1401 OMPTraitInfo *ParentTI = Actions.getOMPTraitInfoForSurroundingScope();
1402 ASTContext &ASTCtx = Actions.getASTContext();
1403 OMPTraitInfo &TI = ASTCtx.getNewOMPTraitInfo();
1404 if (parseOMPDeclareVariantMatchClause(Loc, TI, ParentTI))
1405 return;
1406
1407 Optional<std::pair<FunctionDecl *, Expr *>> DeclVarData =
1408 Actions.checkOpenMPDeclareVariantFunction(
1409 Ptr, AssociatedFunction.get(), TI,
1410 SourceRange(Loc, Tok.getLocation()));
1411
1412 // Skip last tokens.
1413 while (Tok.isNot(tok::annot_pragma_openmp_end))
1414 ConsumeAnyToken();
1415 if (DeclVarData && !TI.Sets.empty())
1416 Actions.ActOnOpenMPDeclareVariantDirective(
1417 DeclVarData->first, DeclVarData->second, TI,
1418 SourceRange(Loc, Tok.getLocation()));
1419
1420 // Skip the last annot_pragma_openmp_end.
1421 (void)ConsumeAnnotationToken();
1422}
1423
1424bool Parser::parseOMPDeclareVariantMatchClause(SourceLocation Loc,
1425 OMPTraitInfo &TI,
1426 OMPTraitInfo *ParentTI) {
1427 // Parse 'match'.
1428 OpenMPClauseKind CKind = Tok.isAnnotation()
1429 ? OMPC_unknown
1430 : getOpenMPClauseKind(PP.getSpelling(Tok));
1431 if (CKind != OMPC_match) {
1432 Diag(Tok.getLocation(), diag::err_omp_declare_variant_wrong_clause)
1433 << getOpenMPClauseName(OMPC_match);
1434 while (!SkipUntil(tok::annot_pragma_openmp_end, Parser::StopBeforeMatch))
1435 ;
1436 // Skip the last annot_pragma_openmp_end.
1437 (void)ConsumeAnnotationToken();
1438 return true;
1439 }
1440 (void)ConsumeToken();
1441 // Parse '('.
1442 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
1443 if (T.expectAndConsume(diag::err_expected_lparen_after,
1444 getOpenMPClauseName(OMPC_match).data())) {
1445 while (!SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch))
1446 ;
1447 // Skip the last annot_pragma_openmp_end.
1448 (void)ConsumeAnnotationToken();
1449 return true;
1450 }
1451
1452 // Parse inner context selectors.
1453 parseOMPContextSelectors(Loc, TI);
1454
1455 // Parse ')'
1456 (void)T.consumeClose();
1457
1458 if (!ParentTI)
1459 return false;
1460
1461 // Merge the parent/outer trait info into the one we just parsed and diagnose
1462 // problems.
1463 // TODO: Keep some source location in the TI to provide better diagnostics.
1464 // TODO: Perform some kind of equivalence check on the condition and score
1465 // expressions.
1466 for (const OMPTraitSet &ParentSet : ParentTI->Sets) {
1467 bool MergedSet = false;
1468 for (OMPTraitSet &Set : TI.Sets) {
1469 if (Set.Kind != ParentSet.Kind)
1470 continue;
1471 MergedSet = true;
1472 for (const OMPTraitSelector &ParentSelector : ParentSet.Selectors) {
1473 bool MergedSelector = false;
1474 for (OMPTraitSelector &Selector : Set.Selectors) {
1475 if (Selector.Kind != ParentSelector.Kind)
1476 continue;
1477 MergedSelector = true;
1478 for (const OMPTraitProperty &ParentProperty :
1479 ParentSelector.Properties) {
1480 bool MergedProperty = false;
1481 for (OMPTraitProperty &Property : Selector.Properties) {
1482 // Ignore "equivalent" properties.
1483 if (Property.Kind != ParentProperty.Kind)
1484 continue;
1485
1486 // If the kind is the same but the raw string not, we don't want
1487 // to skip out on the property.
1488 MergedProperty |= Property.RawString == ParentProperty.RawString;
1489
1490 if (Property.RawString == ParentProperty.RawString &&
1491 Selector.ScoreOrCondition == ParentSelector.ScoreOrCondition)
1492 continue;
1493
1494 if (Selector.Kind == llvm::omp::TraitSelector::user_condition) {
1495 Diag(Loc, diag::err_omp_declare_variant_nested_user_condition);
1496 } else if (Selector.ScoreOrCondition !=
1497 ParentSelector.ScoreOrCondition) {
1498 Diag(Loc, diag::err_omp_declare_variant_duplicate_nested_trait)
1499 << getOpenMPContextTraitPropertyName(
1500 ParentProperty.Kind, ParentProperty.RawString)
1501 << getOpenMPContextTraitSelectorName(ParentSelector.Kind)
1502 << getOpenMPContextTraitSetName(ParentSet.Kind);
1503 }
1504 }
1505 if (!MergedProperty)
1506 Selector.Properties.push_back(ParentProperty);
1507 }
1508 }
1509 if (!MergedSelector)
1510 Set.Selectors.push_back(ParentSelector);
1511 }
1512 }
1513 if (!MergedSet)
1514 TI.Sets.push_back(ParentSet);
1515 }
1516
1517 return false;
1518}
1519
1520/// `omp assumes` or `omp begin/end assumes` <clause> [[,]<clause>]...
1521/// where
1522///
1523/// clause:
1524/// 'ext_IMPL_DEFINED'
1525/// 'absent' '(' directive-name [, directive-name]* ')'
1526/// 'contains' '(' directive-name [, directive-name]* ')'
1527/// 'holds' '(' scalar-expression ')'
1528/// 'no_openmp'
1529/// 'no_openmp_routines'
1530/// 'no_parallelism'
1531///
1532void Parser::ParseOpenMPAssumesDirective(OpenMPDirectiveKind DKind,
1533 SourceLocation Loc) {
1534 SmallVector<StringRef, 4> Assumptions;
1535 bool SkippedClauses = false;
1536
1537 auto SkipBraces = [&](llvm::StringRef Spelling, bool IssueNote) {
1538 BalancedDelimiterTracker T(*this, tok::l_paren,
1539 tok::annot_pragma_openmp_end);
1540 if (T.expectAndConsume(diag::err_expected_lparen_after, Spelling.data()))
1541 return;
1542 T.skipToEnd();
1543 if (IssueNote && T.getCloseLocation().isValid())
1544 Diag(T.getCloseLocation(),
1545 diag::note_omp_assumption_clause_continue_here);
1546 };
1547
1548 /// Helper to determine which AssumptionClauseMapping (ACM) in the
1549 /// AssumptionClauseMappings table matches \p RawString. The return value is
1550 /// the index of the matching ACM into the table or -1 if there was no match.
1551 auto MatchACMClause = [&](StringRef RawString) {
1552 llvm::StringSwitch<int> SS(RawString);
1553 unsigned ACMIdx = 0;
1554 for (const AssumptionClauseMappingInfo &ACMI : AssumptionClauseMappings) {
1555 if (ACMI.StartsWith)
1556 SS.StartsWith(ACMI.Identifier, ACMIdx++);
1557 else
1558 SS.Case(ACMI.Identifier, ACMIdx++);
1559 }
1560 return SS.Default(-1);
1561 };
1562
1563 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
1564 IdentifierInfo *II = nullptr;
1565 SourceLocation StartLoc = Tok.getLocation();
1566 int Idx = -1;
1567 if (Tok.isAnyIdentifier()) {
1568 II = Tok.getIdentifierInfo();
1569 Idx = MatchACMClause(II->getName());
1570 }
1571 ConsumeAnyToken();
1572
1573 bool NextIsLPar = Tok.is(tok::l_paren);
1574 // Handle unknown clauses by skipping them.
1575 if (Idx == -1) {
1576 Diag(StartLoc, diag::warn_omp_unknown_assumption_clause_missing_id)
1577 << llvm::omp::getOpenMPDirectiveName(DKind)
1578 << llvm::omp::getAllAssumeClauseOptions() << NextIsLPar;
1579 if (NextIsLPar)
1580 SkipBraces(II ? II->getName() : "", /* IssueNote */ true);
1581 SkippedClauses = true;
1582 continue;
1583 }
1584 const AssumptionClauseMappingInfo &ACMI = AssumptionClauseMappings[Idx];
1585 if (ACMI.HasDirectiveList || ACMI.HasExpression) {
1586 // TODO: We ignore absent, contains, and holds assumptions for now. We
1587 // also do not verify the content in the parenthesis at all.
1588 SkippedClauses = true;
1589 SkipBraces(II->getName(), /* IssueNote */ false);
1590 continue;
1591 }
1592
1593 if (NextIsLPar) {
1594 Diag(Tok.getLocation(),
1595 diag::warn_omp_unknown_assumption_clause_without_args)
1596 << II;
1597 SkipBraces(II->getName(), /* IssueNote */ true);
1598 }
1599
1600 assert(II && "Expected an identifier clause!")((II && "Expected an identifier clause!") ? static_cast
<void> (0) : __assert_fail ("II && \"Expected an identifier clause!\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 1600, __PRETTY_FUNCTION__))
;
1601 StringRef Assumption = II->getName();
1602 if (ACMI.StartsWith)
1603 Assumption = Assumption.substr(ACMI.Identifier.size());
1604 Assumptions.push_back(Assumption);
1605 }
1606
1607 Actions.ActOnOpenMPAssumesDirective(Loc, DKind, Assumptions, SkippedClauses);
1608}
1609
1610void Parser::ParseOpenMPEndAssumesDirective(SourceLocation Loc) {
1611 if (Actions.isInOpenMPAssumeScope())
1612 Actions.ActOnOpenMPEndAssumesDirective();
1613 else
1614 Diag(Loc, diag::err_expected_begin_assumes);
1615}
1616
1617/// Parsing of simple OpenMP clauses like 'default' or 'proc_bind'.
1618///
1619/// default-clause:
1620/// 'default' '(' 'none' | 'shared' | 'firstprivate' ')
1621///
1622/// proc_bind-clause:
1623/// 'proc_bind' '(' 'master' | 'close' | 'spread' ')
1624///
1625/// device_type-clause:
1626/// 'device_type' '(' 'host' | 'nohost' | 'any' )'
1627namespace {
1628struct SimpleClauseData {
1629 unsigned Type;
1630 SourceLocation Loc;
1631 SourceLocation LOpen;
1632 SourceLocation TypeLoc;
1633 SourceLocation RLoc;
1634 SimpleClauseData(unsigned Type, SourceLocation Loc, SourceLocation LOpen,
1635 SourceLocation TypeLoc, SourceLocation RLoc)
1636 : Type(Type), Loc(Loc), LOpen(LOpen), TypeLoc(TypeLoc), RLoc(RLoc) {}
1637};
1638} // anonymous namespace
1639
1640static Optional<SimpleClauseData>
1641parseOpenMPSimpleClause(Parser &P, OpenMPClauseKind Kind) {
1642 const Token &Tok = P.getCurToken();
1643 SourceLocation Loc = Tok.getLocation();
1644 SourceLocation LOpen = P.ConsumeToken();
1645 // Parse '('.
1646 BalancedDelimiterTracker T(P, tok::l_paren, tok::annot_pragma_openmp_end);
1647 if (T.expectAndConsume(diag::err_expected_lparen_after,
1648 getOpenMPClauseName(Kind).data()))
1649 return llvm::None;
1650
1651 unsigned Type = getOpenMPSimpleClauseType(
1652 Kind, Tok.isAnnotation() ? "" : P.getPreprocessor().getSpelling(Tok),
1653 P.getLangOpts().OpenMP);
1654 SourceLocation TypeLoc = Tok.getLocation();
1655 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
1656 Tok.isNot(tok::annot_pragma_openmp_end))
1657 P.ConsumeAnyToken();
1658
1659 // Parse ')'.
1660 SourceLocation RLoc = Tok.getLocation();
1661 if (!T.consumeClose())
1662 RLoc = T.getCloseLocation();
1663
1664 return SimpleClauseData(Type, Loc, LOpen, TypeLoc, RLoc);
1665}
1666
1667Parser::DeclGroupPtrTy Parser::ParseOMPDeclareTargetClauses() {
1668 // OpenMP 4.5 syntax with list of entities.
1669 Sema::NamedDeclSetType SameDirectiveDecls;
1670 SmallVector<std::tuple<OMPDeclareTargetDeclAttr::MapTypeTy, SourceLocation,
1671 NamedDecl *>,
1672 4>
1673 DeclareTargetDecls;
1674 OMPDeclareTargetDeclAttr::DevTypeTy DT = OMPDeclareTargetDeclAttr::DT_Any;
1675 SourceLocation DeviceTypeLoc;
1676 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
1677 OMPDeclareTargetDeclAttr::MapTypeTy MT = OMPDeclareTargetDeclAttr::MT_To;
1678 if (Tok.is(tok::identifier)) {
1679 IdentifierInfo *II = Tok.getIdentifierInfo();
1680 StringRef ClauseName = II->getName();
1681 bool IsDeviceTypeClause =
1682 getLangOpts().OpenMP >= 50 &&
1683 getOpenMPClauseKind(ClauseName) == OMPC_device_type;
1684 // Parse 'to|link|device_type' clauses.
1685 if (!OMPDeclareTargetDeclAttr::ConvertStrToMapTypeTy(ClauseName, MT) &&
1686 !IsDeviceTypeClause) {
1687 Diag(Tok, diag::err_omp_declare_target_unexpected_clause)
1688 << ClauseName << (getLangOpts().OpenMP >= 50 ? 1 : 0);
1689 break;
1690 }
1691 // Parse 'device_type' clause and go to next clause if any.
1692 if (IsDeviceTypeClause) {
1693 Optional<SimpleClauseData> DevTypeData =
1694 parseOpenMPSimpleClause(*this, OMPC_device_type);
1695 if (DevTypeData.hasValue()) {
1696 if (DeviceTypeLoc.isValid()) {
1697 // We already saw another device_type clause, diagnose it.
1698 Diag(DevTypeData.getValue().Loc,
1699 diag::warn_omp_more_one_device_type_clause);
1700 }
1701 switch (static_cast<OpenMPDeviceType>(DevTypeData.getValue().Type)) {
1702 case OMPC_DEVICE_TYPE_any:
1703 DT = OMPDeclareTargetDeclAttr::DT_Any;
1704 break;
1705 case OMPC_DEVICE_TYPE_host:
1706 DT = OMPDeclareTargetDeclAttr::DT_Host;
1707 break;
1708 case OMPC_DEVICE_TYPE_nohost:
1709 DT = OMPDeclareTargetDeclAttr::DT_NoHost;
1710 break;
1711 case OMPC_DEVICE_TYPE_unknown:
1712 llvm_unreachable("Unexpected device_type")::llvm::llvm_unreachable_internal("Unexpected device_type", "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 1712)
;
1713 }
1714 DeviceTypeLoc = DevTypeData.getValue().Loc;
1715 }
1716 continue;
1717 }
1718 ConsumeToken();
1719 }
1720 auto &&Callback = [this, MT, &DeclareTargetDecls, &SameDirectiveDecls](
1721 CXXScopeSpec &SS, DeclarationNameInfo NameInfo) {
1722 NamedDecl *ND = Actions.lookupOpenMPDeclareTargetName(
1723 getCurScope(), SS, NameInfo, SameDirectiveDecls);
1724 if (ND)
1725 DeclareTargetDecls.emplace_back(MT, NameInfo.getLoc(), ND);
1726 };
1727 if (ParseOpenMPSimpleVarList(OMPD_declare_target, Callback,
1728 /*AllowScopeSpecifier=*/true))
1729 break;
1730
1731 // Consume optional ','.
1732 if (Tok.is(tok::comma))
1733 ConsumeToken();
1734 }
1735 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
1736 ConsumeAnyToken();
1737 for (auto &MTLocDecl : DeclareTargetDecls) {
1738 OMPDeclareTargetDeclAttr::MapTypeTy MT;
1739 SourceLocation Loc;
1740 NamedDecl *ND;
1741 std::tie(MT, Loc, ND) = MTLocDecl;
1742 // device_type clause is applied only to functions.
1743 Actions.ActOnOpenMPDeclareTargetName(
1744 ND, Loc, MT, isa<VarDecl>(ND) ? OMPDeclareTargetDeclAttr::DT_Any : DT);
1745 }
1746 SmallVector<Decl *, 4> Decls(SameDirectiveDecls.begin(),
1747 SameDirectiveDecls.end());
1748 if (Decls.empty())
1749 return DeclGroupPtrTy();
1750 return Actions.BuildDeclaratorGroup(Decls);
1751}
1752
1753void Parser::skipUntilPragmaOpenMPEnd(OpenMPDirectiveKind DKind) {
1754 // The last seen token is annot_pragma_openmp_end - need to check for
1755 // extra tokens.
1756 if (Tok.is(tok::annot_pragma_openmp_end))
1757 return;
1758
1759 Diag(Tok, diag::warn_omp_extra_tokens_at_eol)
1760 << getOpenMPDirectiveName(DKind);
1761 while (Tok.isNot(tok::annot_pragma_openmp_end))
1762 ConsumeAnyToken();
1763}
1764
1765void Parser::parseOMPEndDirective(OpenMPDirectiveKind BeginKind,
1766 OpenMPDirectiveKind ExpectedKind,
1767 OpenMPDirectiveKind FoundKind,
1768 SourceLocation BeginLoc,
1769 SourceLocation FoundLoc,
1770 bool SkipUntilOpenMPEnd) {
1771 int DiagSelection = ExpectedKind == OMPD_end_declare_target ? 0 : 1;
1772
1773 if (FoundKind == ExpectedKind) {
1774 ConsumeAnyToken();
1775 skipUntilPragmaOpenMPEnd(ExpectedKind);
1776 return;
1777 }
1778
1779 Diag(FoundLoc, diag::err_expected_end_declare_target_or_variant)
1780 << DiagSelection;
1781 Diag(BeginLoc, diag::note_matching)
1782 << ("'#pragma omp " + getOpenMPDirectiveName(BeginKind) + "'").str();
1783 if (SkipUntilOpenMPEnd)
1784 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
1785}
1786
1787void Parser::ParseOMPEndDeclareTargetDirective(OpenMPDirectiveKind DKind,
1788 SourceLocation DKLoc) {
1789 parseOMPEndDirective(OMPD_declare_target, OMPD_end_declare_target, DKind,
1790 DKLoc, Tok.getLocation(),
1791 /* SkipUntilOpenMPEnd */ false);
1792 // Skip the last annot_pragma_openmp_end.
1793 if (Tok.is(tok::annot_pragma_openmp_end))
1794 ConsumeAnnotationToken();
1795}
1796
1797/// Parsing of declarative OpenMP directives.
1798///
1799/// threadprivate-directive:
1800/// annot_pragma_openmp 'threadprivate' simple-variable-list
1801/// annot_pragma_openmp_end
1802///
1803/// allocate-directive:
1804/// annot_pragma_openmp 'allocate' simple-variable-list [<clause>]
1805/// annot_pragma_openmp_end
1806///
1807/// declare-reduction-directive:
1808/// annot_pragma_openmp 'declare' 'reduction' [...]
1809/// annot_pragma_openmp_end
1810///
1811/// declare-mapper-directive:
1812/// annot_pragma_openmp 'declare' 'mapper' '(' [<mapper-identifer> ':']
1813/// <type> <var> ')' [<clause>[[,] <clause>] ... ]
1814/// annot_pragma_openmp_end
1815///
1816/// declare-simd-directive:
1817/// annot_pragma_openmp 'declare simd' {<clause> [,]}
1818/// annot_pragma_openmp_end
1819/// <function declaration/definition>
1820///
1821/// requires directive:
1822/// annot_pragma_openmp 'requires' <clause> [[[,] <clause>] ... ]
1823/// annot_pragma_openmp_end
1824///
1825/// assumes directive:
1826/// annot_pragma_openmp 'assumes' <clause> [[[,] <clause>] ... ]
1827/// annot_pragma_openmp_end
1828/// or
1829/// annot_pragma_openmp 'begin assumes' <clause> [[[,] <clause>] ... ]
1830/// annot_pragma_openmp 'end assumes'
1831/// annot_pragma_openmp_end
1832///
1833Parser::DeclGroupPtrTy Parser::ParseOpenMPDeclarativeDirectiveWithExtDecl(
1834 AccessSpecifier &AS, ParsedAttributesWithRange &Attrs, bool Delayed,
1835 DeclSpec::TST TagType, Decl *Tag) {
1836 assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!")((Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!"
) ? static_cast<void> (0) : __assert_fail ("Tok.is(tok::annot_pragma_openmp) && \"Not an OpenMP directive!\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 1836, __PRETTY_FUNCTION__))
;
1837 ParsingOpenMPDirectiveRAII DirScope(*this);
1838 ParenBraceBracketBalancer BalancerRAIIObj(*this);
1839
1840 SourceLocation Loc;
1841 OpenMPDirectiveKind DKind;
1842 if (Delayed) {
1843 TentativeParsingAction TPA(*this);
1844 Loc = ConsumeAnnotationToken();
1845 DKind = parseOpenMPDirectiveKind(*this);
1846 if (DKind == OMPD_declare_reduction || DKind == OMPD_declare_mapper) {
1847 // Need to delay parsing until completion of the parent class.
1848 TPA.Revert();
1849 CachedTokens Toks;
1850 unsigned Cnt = 1;
1851 Toks.push_back(Tok);
1852 while (Cnt && Tok.isNot(tok::eof)) {
1853 (void)ConsumeAnyToken();
1854 if (Tok.is(tok::annot_pragma_openmp))
1855 ++Cnt;
1856 else if (Tok.is(tok::annot_pragma_openmp_end))
1857 --Cnt;
1858 Toks.push_back(Tok);
1859 }
1860 // Skip last annot_pragma_openmp_end.
1861 if (Cnt == 0)
1862 (void)ConsumeAnyToken();
1863 auto *LP = new LateParsedPragma(this, AS);
1864 LP->takeToks(Toks);
1865 getCurrentClass().LateParsedDeclarations.push_back(LP);
1866 return nullptr;
1867 }
1868 TPA.Commit();
1869 } else {
1870 Loc = ConsumeAnnotationToken();
1871 DKind = parseOpenMPDirectiveKind(*this);
1872 }
1873
1874 switch (DKind) {
1875 case OMPD_threadprivate: {
1876 ConsumeToken();
1877 DeclDirectiveListParserHelper Helper(this, DKind);
1878 if (!ParseOpenMPSimpleVarList(DKind, Helper,
1879 /*AllowScopeSpecifier=*/true)) {
1880 skipUntilPragmaOpenMPEnd(DKind);
1881 // Skip the last annot_pragma_openmp_end.
1882 ConsumeAnnotationToken();
1883 return Actions.ActOnOpenMPThreadprivateDirective(Loc,
1884 Helper.getIdentifiers());
1885 }
1886 break;
1887 }
1888 case OMPD_allocate: {
1889 ConsumeToken();
1890 DeclDirectiveListParserHelper Helper(this, DKind);
1891 if (!ParseOpenMPSimpleVarList(DKind, Helper,
1892 /*AllowScopeSpecifier=*/true)) {
1893 SmallVector<OMPClause *, 1> Clauses;
1894 if (Tok.isNot(tok::annot_pragma_openmp_end)) {
1895 SmallVector<llvm::PointerIntPair<OMPClause *, 1, bool>,
1896 llvm::omp::Clause_enumSize + 1>
1897 FirstClauses(llvm::omp::Clause_enumSize + 1);
1898 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
1899 OpenMPClauseKind CKind =
1900 Tok.isAnnotation() ? OMPC_unknown
1901 : getOpenMPClauseKind(PP.getSpelling(Tok));
1902 Actions.StartOpenMPClause(CKind);
1903 OMPClause *Clause = ParseOpenMPClause(
1904 OMPD_allocate, CKind, !FirstClauses[unsigned(CKind)].getInt());
1905 SkipUntil(tok::comma, tok::identifier, tok::annot_pragma_openmp_end,
1906 StopBeforeMatch);
1907 FirstClauses[unsigned(CKind)].setInt(true);
1908 if (Clause != nullptr)
1909 Clauses.push_back(Clause);
1910 if (Tok.is(tok::annot_pragma_openmp_end)) {
1911 Actions.EndOpenMPClause();
1912 break;
1913 }
1914 // Skip ',' if any.
1915 if (Tok.is(tok::comma))
1916 ConsumeToken();
1917 Actions.EndOpenMPClause();
1918 }
1919 skipUntilPragmaOpenMPEnd(DKind);
1920 }
1921 // Skip the last annot_pragma_openmp_end.
1922 ConsumeAnnotationToken();
1923 return Actions.ActOnOpenMPAllocateDirective(Loc, Helper.getIdentifiers(),
1924 Clauses);
1925 }
1926 break;
1927 }
1928 case OMPD_requires: {
1929 SourceLocation StartLoc = ConsumeToken();
1930 SmallVector<OMPClause *, 5> Clauses;
1931 SmallVector<llvm::PointerIntPair<OMPClause *, 1, bool>,
1932 llvm::omp::Clause_enumSize + 1>
1933 FirstClauses(llvm::omp::Clause_enumSize + 1);
1934 if (Tok.is(tok::annot_pragma_openmp_end)) {
1935 Diag(Tok, diag::err_omp_expected_clause)
1936 << getOpenMPDirectiveName(OMPD_requires);
1937 break;
1938 }
1939 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
1940 OpenMPClauseKind CKind = Tok.isAnnotation()
1941 ? OMPC_unknown
1942 : getOpenMPClauseKind(PP.getSpelling(Tok));
1943 Actions.StartOpenMPClause(CKind);
1944 OMPClause *Clause = ParseOpenMPClause(
1945 OMPD_requires, CKind, !FirstClauses[unsigned(CKind)].getInt());
1946 SkipUntil(tok::comma, tok::identifier, tok::annot_pragma_openmp_end,
1947 StopBeforeMatch);
1948 FirstClauses[unsigned(CKind)].setInt(true);
1949 if (Clause != nullptr)
1950 Clauses.push_back(Clause);
1951 if (Tok.is(tok::annot_pragma_openmp_end)) {
1952 Actions.EndOpenMPClause();
1953 break;
1954 }
1955 // Skip ',' if any.
1956 if (Tok.is(tok::comma))
1957 ConsumeToken();
1958 Actions.EndOpenMPClause();
1959 }
1960 // Consume final annot_pragma_openmp_end
1961 if (Clauses.empty()) {
1962 Diag(Tok, diag::err_omp_expected_clause)
1963 << getOpenMPDirectiveName(OMPD_requires);
1964 ConsumeAnnotationToken();
1965 return nullptr;
1966 }
1967 ConsumeAnnotationToken();
1968 return Actions.ActOnOpenMPRequiresDirective(StartLoc, Clauses);
1969 }
1970 case OMPD_assumes:
1971 case OMPD_begin_assumes:
1972 ParseOpenMPAssumesDirective(DKind, ConsumeToken());
1973 break;
1974 case OMPD_end_assumes:
1975 ParseOpenMPEndAssumesDirective(ConsumeToken());
1976 break;
1977 case OMPD_declare_reduction:
1978 ConsumeToken();
1979 if (DeclGroupPtrTy Res = ParseOpenMPDeclareReductionDirective(AS)) {
1980 skipUntilPragmaOpenMPEnd(OMPD_declare_reduction);
1981 // Skip the last annot_pragma_openmp_end.
1982 ConsumeAnnotationToken();
1983 return Res;
1984 }
1985 break;
1986 case OMPD_declare_mapper: {
1987 ConsumeToken();
1988 if (DeclGroupPtrTy Res = ParseOpenMPDeclareMapperDirective(AS)) {
1989 // Skip the last annot_pragma_openmp_end.
1990 ConsumeAnnotationToken();
1991 return Res;
1992 }
1993 break;
1994 }
1995 case OMPD_begin_declare_variant: {
1996 // The syntax is:
1997 // { #pragma omp begin declare variant clause }
1998 // <function-declaration-or-definition-sequence>
1999 // { #pragma omp end declare variant }
2000 //
2001 ConsumeToken();
2002 OMPTraitInfo *ParentTI = Actions.getOMPTraitInfoForSurroundingScope();
2003 ASTContext &ASTCtx = Actions.getASTContext();
2004 OMPTraitInfo &TI = ASTCtx.getNewOMPTraitInfo();
2005 if (parseOMPDeclareVariantMatchClause(Loc, TI, ParentTI))
2006 break;
2007
2008 // Skip last tokens.
2009 skipUntilPragmaOpenMPEnd(OMPD_begin_declare_variant);
2010
2011 ParsingOpenMPDirectiveRAII NormalScope(*this, /*Value=*/false);
2012
2013 VariantMatchInfo VMI;
2014 TI.getAsVariantMatchInfo(ASTCtx, VMI);
2015
2016 std::function<void(StringRef)> DiagUnknownTrait = [this, Loc](
2017 StringRef ISATrait) {
2018 // TODO Track the selector locations in a way that is accessible here to
2019 // improve the diagnostic location.
2020 Diag(Loc, diag::warn_unknown_begin_declare_variant_isa_trait) << ISATrait;
2021 };
2022 TargetOMPContext OMPCtx(ASTCtx, std::move(DiagUnknownTrait),
2023 /* CurrentFunctionDecl */ nullptr);
2024
2025 if (isVariantApplicableInContext(VMI, OMPCtx, /* DeviceSetOnly */ true)) {
2026 Actions.ActOnOpenMPBeginDeclareVariant(Loc, TI);
2027 break;
2028 }
2029
2030 // Elide all the code till the matching end declare variant was found.
2031 unsigned Nesting = 1;
2032 SourceLocation DKLoc;
2033 OpenMPDirectiveKind DK = OMPD_unknown;
2034 do {
2035 DKLoc = Tok.getLocation();
2036 DK = parseOpenMPDirectiveKind(*this);
2037 if (DK == OMPD_end_declare_variant)
2038 --Nesting;
2039 else if (DK == OMPD_begin_declare_variant)
2040 ++Nesting;
2041 if (!Nesting || isEofOrEom())
2042 break;
2043 ConsumeAnyToken();
2044 } while (true);
2045
2046 parseOMPEndDirective(OMPD_begin_declare_variant, OMPD_end_declare_variant,
2047 DK, Loc, DKLoc, /* SkipUntilOpenMPEnd */ true);
2048 if (isEofOrEom())
2049 return nullptr;
2050 break;
2051 }
2052 case OMPD_end_declare_variant: {
2053 if (Actions.isInOpenMPDeclareVariantScope())
2054 Actions.ActOnOpenMPEndDeclareVariant();
2055 else
2056 Diag(Loc, diag::err_expected_begin_declare_variant);
2057 ConsumeToken();
2058 break;
2059 }
2060 case OMPD_declare_variant:
2061 case OMPD_declare_simd: {
2062 // The syntax is:
2063 // { #pragma omp declare {simd|variant} }
2064 // <function-declaration-or-definition>
2065 //
2066 CachedTokens Toks;
2067 Toks.push_back(Tok);
2068 ConsumeToken();
2069 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
2070 Toks.push_back(Tok);
2071 ConsumeAnyToken();
2072 }
2073 Toks.push_back(Tok);
2074 ConsumeAnyToken();
2075
2076 DeclGroupPtrTy Ptr;
2077 if (Tok.is(tok::annot_pragma_openmp)) {
2078 Ptr = ParseOpenMPDeclarativeDirectiveWithExtDecl(AS, Attrs, Delayed,
2079 TagType, Tag);
2080 } else if (Tok.isNot(tok::r_brace) && !isEofOrEom()) {
2081 // Here we expect to see some function declaration.
2082 if (AS == AS_none) {
2083 assert(TagType == DeclSpec::TST_unspecified)((TagType == DeclSpec::TST_unspecified) ? static_cast<void
> (0) : __assert_fail ("TagType == DeclSpec::TST_unspecified"
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 2083, __PRETTY_FUNCTION__))
;
2084 MaybeParseCXX11Attributes(Attrs);
2085 ParsingDeclSpec PDS(*this);
2086 Ptr = ParseExternalDeclaration(Attrs, &PDS);
2087 } else {
2088 Ptr =
2089 ParseCXXClassMemberDeclarationWithPragmas(AS, Attrs, TagType, Tag);
2090 }
2091 }
2092 if (!Ptr) {
2093 Diag(Loc, diag::err_omp_decl_in_declare_simd_variant)
2094 << (DKind == OMPD_declare_simd ? 0 : 1);
2095 return DeclGroupPtrTy();
2096 }
2097 if (DKind == OMPD_declare_simd)
2098 return ParseOMPDeclareSimdClauses(Ptr, Toks, Loc);
2099 assert(DKind == OMPD_declare_variant &&((DKind == OMPD_declare_variant && "Expected declare variant directive only"
) ? static_cast<void> (0) : __assert_fail ("DKind == OMPD_declare_variant && \"Expected declare variant directive only\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 2100, __PRETTY_FUNCTION__))
2100 "Expected declare variant directive only")((DKind == OMPD_declare_variant && "Expected declare variant directive only"
) ? static_cast<void> (0) : __assert_fail ("DKind == OMPD_declare_variant && \"Expected declare variant directive only\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 2100, __PRETTY_FUNCTION__))
;
2101 ParseOMPDeclareVariantClauses(Ptr, Toks, Loc);
2102 return Ptr;
2103 }
2104 case OMPD_declare_target: {
2105 SourceLocation DTLoc = ConsumeAnyToken();
2106 if (Tok.isNot(tok::annot_pragma_openmp_end)) {
2107 return ParseOMPDeclareTargetClauses();
2108 }
2109
2110 // Skip the last annot_pragma_openmp_end.
2111 ConsumeAnyToken();
2112
2113 if (!Actions.ActOnStartOpenMPDeclareTargetDirective(DTLoc))
2114 return DeclGroupPtrTy();
2115
2116 ParsingOpenMPDirectiveRAII NormalScope(*this, /*Value=*/false);
2117 llvm::SmallVector<Decl *, 4> Decls;
2118 while (Tok.isNot(tok::eof) && Tok.isNot(tok::r_brace)) {
2119 if (Tok.isAnnotation() && Tok.is(tok::annot_pragma_openmp)) {
2120 TentativeParsingAction TPA(*this);
2121 ConsumeAnnotationToken();
2122 DKind = parseOpenMPDirectiveKind(*this);
2123 if (DKind != OMPD_end_declare_target)
2124 TPA.Revert();
2125 else
2126 TPA.Commit();
2127 }
2128 if (DKind == OMPD_end_declare_target)
2129 break;
2130 DeclGroupPtrTy Ptr;
2131 // Here we expect to see some function declaration.
2132 if (AS == AS_none) {
2133 assert(TagType == DeclSpec::TST_unspecified)((TagType == DeclSpec::TST_unspecified) ? static_cast<void
> (0) : __assert_fail ("TagType == DeclSpec::TST_unspecified"
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 2133, __PRETTY_FUNCTION__))
;
2134 MaybeParseCXX11Attributes(Attrs);
2135 ParsingDeclSpec PDS(*this);
2136 Ptr = ParseExternalDeclaration(Attrs, &PDS);
2137 } else {
2138 Ptr =
2139 ParseCXXClassMemberDeclarationWithPragmas(AS, Attrs, TagType, Tag);
2140 }
2141 if (Ptr) {
2142 DeclGroupRef Ref = Ptr.get();
2143 Decls.append(Ref.begin(), Ref.end());
2144 }
2145 }
2146
2147 ParseOMPEndDeclareTargetDirective(DKind, DTLoc);
2148 Actions.ActOnFinishOpenMPDeclareTargetDirective();
2149 return Actions.BuildDeclaratorGroup(Decls);
2150 }
2151 case OMPD_unknown:
2152 Diag(Tok, diag::err_omp_unknown_directive);
2153 break;
2154 case OMPD_parallel:
2155 case OMPD_simd:
2156 case OMPD_tile:
2157 case OMPD_task:
2158 case OMPD_taskyield:
2159 case OMPD_barrier:
2160 case OMPD_taskwait:
2161 case OMPD_taskgroup:
2162 case OMPD_flush:
2163 case OMPD_depobj:
2164 case OMPD_scan:
2165 case OMPD_for:
2166 case OMPD_for_simd:
2167 case OMPD_sections:
2168 case OMPD_section:
2169 case OMPD_single:
2170 case OMPD_master:
2171 case OMPD_ordered:
2172 case OMPD_critical:
2173 case OMPD_parallel_for:
2174 case OMPD_parallel_for_simd:
2175 case OMPD_parallel_sections:
2176 case OMPD_parallel_master:
2177 case OMPD_atomic:
2178 case OMPD_target:
2179 case OMPD_teams:
2180 case OMPD_cancellation_point:
2181 case OMPD_cancel:
2182 case OMPD_target_data:
2183 case OMPD_target_enter_data:
2184 case OMPD_target_exit_data:
2185 case OMPD_target_parallel:
2186 case OMPD_target_parallel_for:
2187 case OMPD_taskloop:
2188 case OMPD_taskloop_simd:
2189 case OMPD_master_taskloop:
2190 case OMPD_master_taskloop_simd:
2191 case OMPD_parallel_master_taskloop:
2192 case OMPD_parallel_master_taskloop_simd:
2193 case OMPD_distribute:
2194 case OMPD_end_declare_target:
2195 case OMPD_target_update:
2196 case OMPD_distribute_parallel_for:
2197 case OMPD_distribute_parallel_for_simd:
2198 case OMPD_distribute_simd:
2199 case OMPD_target_parallel_for_simd:
2200 case OMPD_target_simd:
2201 case OMPD_teams_distribute:
2202 case OMPD_teams_distribute_simd:
2203 case OMPD_teams_distribute_parallel_for_simd:
2204 case OMPD_teams_distribute_parallel_for:
2205 case OMPD_target_teams:
2206 case OMPD_target_teams_distribute:
2207 case OMPD_target_teams_distribute_parallel_for:
2208 case OMPD_target_teams_distribute_parallel_for_simd:
2209 case OMPD_target_teams_distribute_simd:
2210 case OMPD_dispatch:
2211 Diag(Tok, diag::err_omp_unexpected_directive)
2212 << 1 << getOpenMPDirectiveName(DKind);
2213 break;
2214 default:
2215 break;
2216 }
2217 while (Tok.isNot(tok::annot_pragma_openmp_end))
2218 ConsumeAnyToken();
2219 ConsumeAnyToken();
2220 return nullptr;
2221}
2222
2223/// Parsing of declarative or executable OpenMP directives.
2224///
2225/// threadprivate-directive:
2226/// annot_pragma_openmp 'threadprivate' simple-variable-list
2227/// annot_pragma_openmp_end
2228///
2229/// allocate-directive:
2230/// annot_pragma_openmp 'allocate' simple-variable-list
2231/// annot_pragma_openmp_end
2232///
2233/// declare-reduction-directive:
2234/// annot_pragma_openmp 'declare' 'reduction' '(' <reduction_id> ':'
2235/// <type> {',' <type>} ':' <expression> ')' ['initializer' '('
2236/// ('omp_priv' '=' <expression>|<function_call>) ')']
2237/// annot_pragma_openmp_end
2238///
2239/// declare-mapper-directive:
2240/// annot_pragma_openmp 'declare' 'mapper' '(' [<mapper-identifer> ':']
2241/// <type> <var> ')' [<clause>[[,] <clause>] ... ]
2242/// annot_pragma_openmp_end
2243///
2244/// executable-directive:
2245/// annot_pragma_openmp 'parallel' | 'simd' | 'for' | 'sections' |
2246/// 'section' | 'single' | 'master' | 'critical' [ '(' <name> ')' ] |
2247/// 'parallel for' | 'parallel sections' | 'parallel master' | 'task' |
2248/// 'taskyield' | 'barrier' | 'taskwait' | 'flush' | 'ordered' |
2249/// 'atomic' | 'for simd' | 'parallel for simd' | 'target' | 'target
2250/// data' | 'taskgroup' | 'teams' | 'taskloop' | 'taskloop simd' |
2251/// 'master taskloop' | 'master taskloop simd' | 'parallel master
2252/// taskloop' | 'parallel master taskloop simd' | 'distribute' | 'target
2253/// enter data' | 'target exit data' | 'target parallel' | 'target
2254/// parallel for' | 'target update' | 'distribute parallel for' |
2255/// 'distribute paralle for simd' | 'distribute simd' | 'target parallel
2256/// for simd' | 'target simd' | 'teams distribute' | 'teams distribute
2257/// simd' | 'teams distribute parallel for simd' | 'teams distribute
2258/// parallel for' | 'target teams' | 'target teams distribute' | 'target
2259/// teams distribute parallel for' | 'target teams distribute parallel
2260/// for simd' | 'target teams distribute simd' {clause}
2261/// annot_pragma_openmp_end
2262///
2263StmtResult
2264Parser::ParseOpenMPDeclarativeOrExecutableDirective(ParsedStmtContext StmtCtx) {
2265 assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!")((Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!"
) ? static_cast<void> (0) : __assert_fail ("Tok.is(tok::annot_pragma_openmp) && \"Not an OpenMP directive!\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 2265, __PRETTY_FUNCTION__))
;
2266 ParsingOpenMPDirectiveRAII DirScope(*this);
2267 ParenBraceBracketBalancer BalancerRAIIObj(*this);
2268 SmallVector<OMPClause *, 5> Clauses;
2269 SmallVector<llvm::PointerIntPair<OMPClause *, 1, bool>,
2270 llvm::omp::Clause_enumSize + 1>
2271 FirstClauses(llvm::omp::Clause_enumSize + 1);
2272 unsigned ScopeFlags = Scope::FnScope | Scope::DeclScope |
2273 Scope::CompoundStmtScope | Scope::OpenMPDirectiveScope;
2274 SourceLocation Loc = ConsumeAnnotationToken(), EndLoc;
2275 OpenMPDirectiveKind DKind = parseOpenMPDirectiveKind(*this);
2276 OpenMPDirectiveKind CancelRegion = OMPD_unknown;
2277 // Name of critical directive.
2278 DeclarationNameInfo DirName;
2279 StmtResult Directive = StmtError();
2280 bool HasAssociatedStatement = true;
2281
2282 switch (DKind) {
2283 case OMPD_threadprivate: {
2284 // FIXME: Should this be permitted in C++?
2285 if ((StmtCtx & ParsedStmtContext::AllowDeclarationsInC) ==
2286 ParsedStmtContext()) {
2287 Diag(Tok, diag::err_omp_immediate_directive)
2288 << getOpenMPDirectiveName(DKind) << 0;
2289 }
2290 ConsumeToken();
2291 DeclDirectiveListParserHelper Helper(this, DKind);
2292 if (!ParseOpenMPSimpleVarList(DKind, Helper,
2293 /*AllowScopeSpecifier=*/false)) {
2294 skipUntilPragmaOpenMPEnd(DKind);
2295 DeclGroupPtrTy Res = Actions.ActOnOpenMPThreadprivateDirective(
2296 Loc, Helper.getIdentifiers());
2297 Directive = Actions.ActOnDeclStmt(Res, Loc, Tok.getLocation());
2298 }
2299 SkipUntil(tok::annot_pragma_openmp_end);
2300 break;
2301 }
2302 case OMPD_allocate: {
2303 // FIXME: Should this be permitted in C++?
2304 if ((StmtCtx & ParsedStmtContext::AllowDeclarationsInC) ==
2305 ParsedStmtContext()) {
2306 Diag(Tok, diag::err_omp_immediate_directive)
2307 << getOpenMPDirectiveName(DKind) << 0;
2308 }
2309 ConsumeToken();
2310 DeclDirectiveListParserHelper Helper(this, DKind);
2311 if (!ParseOpenMPSimpleVarList(DKind, Helper,
2312 /*AllowScopeSpecifier=*/false)) {
2313 SmallVector<OMPClause *, 1> Clauses;
2314 if (Tok.isNot(tok::annot_pragma_openmp_end)) {
2315 SmallVector<llvm::PointerIntPair<OMPClause *, 1, bool>,
2316 llvm::omp::Clause_enumSize + 1>
2317 FirstClauses(llvm::omp::Clause_enumSize + 1);
2318 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
2319 OpenMPClauseKind CKind =
2320 Tok.isAnnotation() ? OMPC_unknown
2321 : getOpenMPClauseKind(PP.getSpelling(Tok));
2322 Actions.StartOpenMPClause(CKind);
2323 OMPClause *Clause = ParseOpenMPClause(
2324 OMPD_allocate, CKind, !FirstClauses[unsigned(CKind)].getInt());
2325 SkipUntil(tok::comma, tok::identifier, tok::annot_pragma_openmp_end,
2326 StopBeforeMatch);
2327 FirstClauses[unsigned(CKind)].setInt(true);
2328 if (Clause != nullptr)
2329 Clauses.push_back(Clause);
2330 if (Tok.is(tok::annot_pragma_openmp_end)) {
2331 Actions.EndOpenMPClause();
2332 break;
2333 }
2334 // Skip ',' if any.
2335 if (Tok.is(tok::comma))
2336 ConsumeToken();
2337 Actions.EndOpenMPClause();
2338 }
2339 skipUntilPragmaOpenMPEnd(DKind);
2340 }
2341 DeclGroupPtrTy Res = Actions.ActOnOpenMPAllocateDirective(
2342 Loc, Helper.getIdentifiers(), Clauses);
2343 Directive = Actions.ActOnDeclStmt(Res, Loc, Tok.getLocation());
2344 }
2345 SkipUntil(tok::annot_pragma_openmp_end);
2346 break;
2347 }
2348 case OMPD_declare_reduction:
2349 ConsumeToken();
2350 if (DeclGroupPtrTy Res =
2351 ParseOpenMPDeclareReductionDirective(/*AS=*/AS_none)) {
2352 skipUntilPragmaOpenMPEnd(OMPD_declare_reduction);
2353 ConsumeAnyToken();
2354 Directive = Actions.ActOnDeclStmt(Res, Loc, Tok.getLocation());
2355 } else {
2356 SkipUntil(tok::annot_pragma_openmp_end);
2357 }
2358 break;
2359 case OMPD_declare_mapper: {
2360 ConsumeToken();
2361 if (DeclGroupPtrTy Res =
2362 ParseOpenMPDeclareMapperDirective(/*AS=*/AS_none)) {
2363 // Skip the last annot_pragma_openmp_end.
2364 ConsumeAnnotationToken();
2365 Directive = Actions.ActOnDeclStmt(Res, Loc, Tok.getLocation());
2366 } else {
2367 SkipUntil(tok::annot_pragma_openmp_end);
2368 }
2369 break;
2370 }
2371 case OMPD_flush:
2372 case OMPD_depobj:
2373 case OMPD_scan:
2374 case OMPD_taskyield:
2375 case OMPD_barrier:
2376 case OMPD_taskwait:
2377 case OMPD_cancellation_point:
2378 case OMPD_cancel:
2379 case OMPD_target_enter_data:
2380 case OMPD_target_exit_data:
2381 case OMPD_target_update:
2382 case OMPD_interop:
2383 if ((StmtCtx & ParsedStmtContext::AllowStandaloneOpenMPDirectives) ==
2384 ParsedStmtContext()) {
2385 Diag(Tok, diag::err_omp_immediate_directive)
2386 << getOpenMPDirectiveName(DKind) << 0;
2387 }
2388 HasAssociatedStatement = false;
2389 // Fall through for further analysis.
2390 LLVM_FALLTHROUGH[[gnu::fallthrough]];
2391 case OMPD_parallel:
2392 case OMPD_simd:
2393 case OMPD_tile:
2394 case OMPD_for:
2395 case OMPD_for_simd:
2396 case OMPD_sections:
2397 case OMPD_single:
2398 case OMPD_section:
2399 case OMPD_master:
2400 case OMPD_critical:
2401 case OMPD_parallel_for:
2402 case OMPD_parallel_for_simd:
2403 case OMPD_parallel_sections:
2404 case OMPD_parallel_master:
2405 case OMPD_task:
2406 case OMPD_ordered:
2407 case OMPD_atomic:
2408 case OMPD_target:
2409 case OMPD_teams:
2410 case OMPD_taskgroup:
2411 case OMPD_target_data:
2412 case OMPD_target_parallel:
2413 case OMPD_target_parallel_for:
2414 case OMPD_taskloop:
2415 case OMPD_taskloop_simd:
2416 case OMPD_master_taskloop:
2417 case OMPD_master_taskloop_simd:
2418 case OMPD_parallel_master_taskloop:
2419 case OMPD_parallel_master_taskloop_simd:
2420 case OMPD_distribute:
2421 case OMPD_distribute_parallel_for:
2422 case OMPD_distribute_parallel_for_simd:
2423 case OMPD_distribute_simd:
2424 case OMPD_target_parallel_for_simd:
2425 case OMPD_target_simd:
2426 case OMPD_teams_distribute:
2427 case OMPD_teams_distribute_simd:
2428 case OMPD_teams_distribute_parallel_for_simd:
2429 case OMPD_teams_distribute_parallel_for:
2430 case OMPD_target_teams:
2431 case OMPD_target_teams_distribute:
2432 case OMPD_target_teams_distribute_parallel_for:
2433 case OMPD_target_teams_distribute_parallel_for_simd:
2434 case OMPD_target_teams_distribute_simd:
2435 case OMPD_dispatch: {
2436 // Special processing for flush and depobj clauses.
2437 Token ImplicitTok;
2438 bool ImplicitClauseAllowed = false;
2439 if (DKind == OMPD_flush || DKind == OMPD_depobj) {
2440 ImplicitTok = Tok;
2441 ImplicitClauseAllowed = true;
2442 }
2443 ConsumeToken();
2444 // Parse directive name of the 'critical' directive if any.
2445 if (DKind == OMPD_critical) {
2446 BalancedDelimiterTracker T(*this, tok::l_paren,
2447 tok::annot_pragma_openmp_end);
2448 if (!T.consumeOpen()) {
2449 if (Tok.isAnyIdentifier()) {
2450 DirName =
2451 DeclarationNameInfo(Tok.getIdentifierInfo(), Tok.getLocation());
2452 ConsumeAnyToken();
2453 } else {
2454 Diag(Tok, diag::err_omp_expected_identifier_for_critical);
2455 }
2456 T.consumeClose();
2457 }
2458 } else if (DKind == OMPD_cancellation_point || DKind == OMPD_cancel) {
2459 CancelRegion = parseOpenMPDirectiveKind(*this);
2460 if (Tok.isNot(tok::annot_pragma_openmp_end))
2461 ConsumeToken();
2462 }
2463
2464 if (isOpenMPLoopDirective(DKind))
2465 ScopeFlags |= Scope::OpenMPLoopDirectiveScope;
2466 if (isOpenMPSimdDirective(DKind))
2467 ScopeFlags |= Scope::OpenMPSimdDirectiveScope;
2468 ParseScope OMPDirectiveScope(this, ScopeFlags);
2469 Actions.StartOpenMPDSABlock(DKind, DirName, Actions.getCurScope(), Loc);
2470
2471 while (Tok.isNot(tok::annot_pragma_openmp_end)) {
2472 bool HasImplicitClause = false;
2473 if (ImplicitClauseAllowed && Tok.is(tok::l_paren)) {
2474 HasImplicitClause = true;
2475 // Push copy of the current token back to stream to properly parse
2476 // pseudo-clause OMPFlushClause or OMPDepobjClause.
2477 PP.EnterToken(Tok, /*IsReinject*/ true);
2478 PP.EnterToken(ImplicitTok, /*IsReinject*/ true);
2479 ConsumeAnyToken();
2480 }
2481 OpenMPClauseKind CKind = Tok.isAnnotation()
2482 ? OMPC_unknown
2483 : getOpenMPClauseKind(PP.getSpelling(Tok));
2484 if (HasImplicitClause) {
2485 assert(CKind == OMPC_unknown && "Must be unknown implicit clause.")((CKind == OMPC_unknown && "Must be unknown implicit clause."
) ? static_cast<void> (0) : __assert_fail ("CKind == OMPC_unknown && \"Must be unknown implicit clause.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 2485, __PRETTY_FUNCTION__))
;
2486 if (DKind == OMPD_flush) {
2487 CKind = OMPC_flush;
2488 } else {
2489 assert(DKind == OMPD_depobj &&((DKind == OMPD_depobj && "Expected flush or depobj directives."
) ? static_cast<void> (0) : __assert_fail ("DKind == OMPD_depobj && \"Expected flush or depobj directives.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 2490, __PRETTY_FUNCTION__))
2490 "Expected flush or depobj directives.")((DKind == OMPD_depobj && "Expected flush or depobj directives."
) ? static_cast<void> (0) : __assert_fail ("DKind == OMPD_depobj && \"Expected flush or depobj directives.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 2490, __PRETTY_FUNCTION__))
;
2491 CKind = OMPC_depobj;
2492 }
2493 }
2494 // No more implicit clauses allowed.
2495 ImplicitClauseAllowed = false;
2496 Actions.StartOpenMPClause(CKind);
2497 HasImplicitClause = false;
Value stored to 'HasImplicitClause' is never read
2498 OMPClause *Clause = ParseOpenMPClause(
2499 DKind, CKind, !FirstClauses[unsigned(CKind)].getInt());
2500 FirstClauses[unsigned(CKind)].setInt(true);
2501 if (Clause) {
2502 FirstClauses[unsigned(CKind)].setPointer(Clause);
2503 Clauses.push_back(Clause);
2504 }
2505
2506 // Skip ',' if any.
2507 if (Tok.is(tok::comma))
2508 ConsumeToken();
2509 Actions.EndOpenMPClause();
2510 }
2511 // End location of the directive.
2512 EndLoc = Tok.getLocation();
2513 // Consume final annot_pragma_openmp_end.
2514 ConsumeAnnotationToken();
2515
2516 // OpenMP [2.13.8, ordered Construct, Syntax]
2517 // If the depend clause is specified, the ordered construct is a stand-alone
2518 // directive.
2519 if (DKind == OMPD_ordered && FirstClauses[unsigned(OMPC_depend)].getInt()) {
2520 if ((StmtCtx & ParsedStmtContext::AllowStandaloneOpenMPDirectives) ==
2521 ParsedStmtContext()) {
2522 Diag(Loc, diag::err_omp_immediate_directive)
2523 << getOpenMPDirectiveName(DKind) << 1
2524 << getOpenMPClauseName(OMPC_depend);
2525 }
2526 HasAssociatedStatement = false;
2527 }
2528
2529 if (DKind == OMPD_tile && !FirstClauses[unsigned(OMPC_sizes)].getInt()) {
2530 Diag(Loc, diag::err_omp_required_clause)
2531 << getOpenMPDirectiveName(OMPD_tile) << "sizes";
2532 }
2533
2534 StmtResult AssociatedStmt;
2535 if (HasAssociatedStatement) {
2536 // The body is a block scope like in Lambdas and Blocks.
2537 Actions.ActOnOpenMPRegionStart(DKind, getCurScope());
2538 // FIXME: We create a bogus CompoundStmt scope to hold the contents of
2539 // the captured region. Code elsewhere assumes that any FunctionScopeInfo
2540 // should have at least one compound statement scope within it.
2541 ParsingOpenMPDirectiveRAII NormalScope(*this, /*Value=*/false);
2542 {
2543 Sema::CompoundScopeRAII Scope(Actions);
2544 AssociatedStmt = ParseStatement();
2545
2546 if (AssociatedStmt.isUsable() && isOpenMPLoopDirective(DKind) &&
2547 getLangOpts().OpenMPIRBuilder)
2548 AssociatedStmt =
2549 Actions.ActOnOpenMPCanonicalLoop(AssociatedStmt.get());
2550 }
2551 AssociatedStmt = Actions.ActOnOpenMPRegionEnd(AssociatedStmt, Clauses);
2552 } else if (DKind == OMPD_target_update || DKind == OMPD_target_enter_data ||
2553 DKind == OMPD_target_exit_data) {
2554 Actions.ActOnOpenMPRegionStart(DKind, getCurScope());
2555 AssociatedStmt = (Sema::CompoundScopeRAII(Actions),
2556 Actions.ActOnCompoundStmt(Loc, Loc, llvm::None,
2557 /*isStmtExpr=*/false));
2558 AssociatedStmt = Actions.ActOnOpenMPRegionEnd(AssociatedStmt, Clauses);
2559 }
2560 Directive = Actions.ActOnOpenMPExecutableDirective(
2561 DKind, DirName, CancelRegion, Clauses, AssociatedStmt.get(), Loc,
2562 EndLoc);
2563
2564 // Exit scope.
2565 Actions.EndOpenMPDSABlock(Directive.get());
2566 OMPDirectiveScope.Exit();
2567 break;
2568 }
2569 case OMPD_declare_simd:
2570 case OMPD_declare_target:
2571 case OMPD_end_declare_target:
2572 case OMPD_requires:
2573 case OMPD_begin_declare_variant:
2574 case OMPD_end_declare_variant:
2575 case OMPD_declare_variant:
2576 Diag(Tok, diag::err_omp_unexpected_directive)
2577 << 1 << getOpenMPDirectiveName(DKind);
2578 SkipUntil(tok::annot_pragma_openmp_end);
2579 break;
2580 case OMPD_unknown:
2581 default:
2582 Diag(Tok, diag::err_omp_unknown_directive);
2583 SkipUntil(tok::annot_pragma_openmp_end);
2584 break;
2585 }
2586 return Directive;
2587}
2588
2589// Parses simple list:
2590// simple-variable-list:
2591// '(' id-expression {, id-expression} ')'
2592//
2593bool Parser::ParseOpenMPSimpleVarList(
2594 OpenMPDirectiveKind Kind,
2595 const llvm::function_ref<void(CXXScopeSpec &, DeclarationNameInfo)>
2596 &Callback,
2597 bool AllowScopeSpecifier) {
2598 // Parse '('.
2599 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
2600 if (T.expectAndConsume(diag::err_expected_lparen_after,
2601 getOpenMPDirectiveName(Kind).data()))
2602 return true;
2603 bool IsCorrect = true;
2604 bool NoIdentIsFound = true;
2605
2606 // Read tokens while ')' or annot_pragma_openmp_end is not found.
2607 while (Tok.isNot(tok::r_paren) && Tok.isNot(tok::annot_pragma_openmp_end)) {
2608 CXXScopeSpec SS;
2609 UnqualifiedId Name;
2610 // Read var name.
2611 Token PrevTok = Tok;
2612 NoIdentIsFound = false;
2613
2614 if (AllowScopeSpecifier && getLangOpts().CPlusPlus &&
2615 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/nullptr,
2616 /*ObjectHadErrors=*/false, false)) {
2617 IsCorrect = false;
2618 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
2619 StopBeforeMatch);
2620 } else if (ParseUnqualifiedId(SS, /*ObjectType=*/nullptr,
2621 /*ObjectHadErrors=*/false, false, false,
2622 false, false, nullptr, Name)) {
2623 IsCorrect = false;
2624 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
2625 StopBeforeMatch);
2626 } else if (Tok.isNot(tok::comma) && Tok.isNot(tok::r_paren) &&
2627 Tok.isNot(tok::annot_pragma_openmp_end)) {
2628 IsCorrect = false;
2629 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
2630 StopBeforeMatch);
2631 Diag(PrevTok.getLocation(), diag::err_expected)
2632 << tok::identifier
2633 << SourceRange(PrevTok.getLocation(), PrevTokLocation);
2634 } else {
2635 Callback(SS, Actions.GetNameFromUnqualifiedId(Name));
2636 }
2637 // Consume ','.
2638 if (Tok.is(tok::comma)) {
2639 ConsumeToken();
2640 }
2641 }
2642
2643 if (NoIdentIsFound) {
2644 Diag(Tok, diag::err_expected) << tok::identifier;
2645 IsCorrect = false;
2646 }
2647
2648 // Parse ')'.
2649 IsCorrect = !T.consumeClose() && IsCorrect;
2650
2651 return !IsCorrect;
2652}
2653
2654OMPClause *Parser::ParseOpenMPSizesClause() {
2655 SourceLocation ClauseNameLoc = ConsumeToken();
2656 SmallVector<Expr *, 4> ValExprs;
2657
2658 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
2659 if (T.consumeOpen()) {
2660 Diag(Tok, diag::err_expected) << tok::l_paren;
2661 return nullptr;
2662 }
2663
2664 while (true) {
2665 ExprResult Val = ParseConstantExpression();
2666 if (!Val.isUsable()) {
2667 T.skipToEnd();
2668 return nullptr;
2669 }
2670
2671 ValExprs.push_back(Val.get());
2672
2673 if (Tok.is(tok::r_paren) || Tok.is(tok::annot_pragma_openmp_end))
2674 break;
2675
2676 ExpectAndConsume(tok::comma);
2677 }
2678
2679 T.consumeClose();
2680
2681 return Actions.ActOnOpenMPSizesClause(
2682 ValExprs, ClauseNameLoc, T.getOpenLocation(), T.getCloseLocation());
2683}
2684
2685OMPClause *Parser::ParseOpenMPUsesAllocatorClause(OpenMPDirectiveKind DKind) {
2686 SourceLocation Loc = Tok.getLocation();
2687 ConsumeAnyToken();
2688
2689 // Parse '('.
2690 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
2691 if (T.expectAndConsume(diag::err_expected_lparen_after, "uses_allocator"))
2692 return nullptr;
2693 SmallVector<Sema::UsesAllocatorsData, 4> Data;
2694 do {
2695 ExprResult Allocator = ParseCXXIdExpression();
2696 if (Allocator.isInvalid()) {
2697 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
2698 StopBeforeMatch);
2699 break;
2700 }
2701 Sema::UsesAllocatorsData &D = Data.emplace_back();
2702 D.Allocator = Allocator.get();
2703 if (Tok.is(tok::l_paren)) {
2704 BalancedDelimiterTracker T(*this, tok::l_paren,
2705 tok::annot_pragma_openmp_end);
2706 T.consumeOpen();
2707 ExprResult AllocatorTraits = ParseCXXIdExpression();
2708 T.consumeClose();
2709 if (AllocatorTraits.isInvalid()) {
2710 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
2711 StopBeforeMatch);
2712 break;
2713 }
2714 D.AllocatorTraits = AllocatorTraits.get();
2715 D.LParenLoc = T.getOpenLocation();
2716 D.RParenLoc = T.getCloseLocation();
2717 }
2718 if (Tok.isNot(tok::comma) && Tok.isNot(tok::r_paren))
2719 Diag(Tok, diag::err_omp_expected_punc) << "uses_allocators" << 0;
2720 // Parse ','
2721 if (Tok.is(tok::comma))
2722 ConsumeAnyToken();
2723 } while (Tok.isNot(tok::r_paren) && Tok.isNot(tok::annot_pragma_openmp_end));
2724 T.consumeClose();
2725 return Actions.ActOnOpenMPUsesAllocatorClause(Loc, T.getOpenLocation(),
2726 T.getCloseLocation(), Data);
2727}
2728
2729/// Parsing of OpenMP clauses.
2730///
2731/// clause:
2732/// if-clause | final-clause | num_threads-clause | safelen-clause |
2733/// default-clause | private-clause | firstprivate-clause | shared-clause
2734/// | linear-clause | aligned-clause | collapse-clause |
2735/// lastprivate-clause | reduction-clause | proc_bind-clause |
2736/// schedule-clause | copyin-clause | copyprivate-clause | untied-clause |
2737/// mergeable-clause | flush-clause | read-clause | write-clause |
2738/// update-clause | capture-clause | seq_cst-clause | device-clause |
2739/// simdlen-clause | threads-clause | simd-clause | num_teams-clause |
2740/// thread_limit-clause | priority-clause | grainsize-clause |
2741/// nogroup-clause | num_tasks-clause | hint-clause | to-clause |
2742/// from-clause | is_device_ptr-clause | task_reduction-clause |
2743/// in_reduction-clause | allocator-clause | allocate-clause |
2744/// acq_rel-clause | acquire-clause | release-clause | relaxed-clause |
2745/// depobj-clause | destroy-clause | detach-clause | inclusive-clause |
2746/// exclusive-clause | uses_allocators-clause | use_device_addr-clause
2747///
2748OMPClause *Parser::ParseOpenMPClause(OpenMPDirectiveKind DKind,
2749 OpenMPClauseKind CKind, bool FirstClause) {
2750 OMPClauseKind = CKind;
2751 OMPClause *Clause = nullptr;
2752 bool ErrorFound = false;
2753 bool WrongDirective = false;
2754 // Check if clause is allowed for the given directive.
2755 if (CKind != OMPC_unknown &&
2756 !isAllowedClauseForDirective(DKind, CKind, getLangOpts().OpenMP)) {
2757 Diag(Tok, diag::err_omp_unexpected_clause)
2758 << getOpenMPClauseName(CKind) << getOpenMPDirectiveName(DKind);
2759 ErrorFound = true;
2760 WrongDirective = true;
2761 }
2762
2763 switch (CKind) {
2764 case OMPC_final:
2765 case OMPC_num_threads:
2766 case OMPC_safelen:
2767 case OMPC_simdlen:
2768 case OMPC_collapse:
2769 case OMPC_ordered:
2770 case OMPC_num_teams:
2771 case OMPC_thread_limit:
2772 case OMPC_priority:
2773 case OMPC_grainsize:
2774 case OMPC_num_tasks:
2775 case OMPC_hint:
2776 case OMPC_allocator:
2777 case OMPC_depobj:
2778 case OMPC_detach:
2779 case OMPC_novariants:
2780 // OpenMP [2.5, Restrictions]
2781 // At most one num_threads clause can appear on the directive.
2782 // OpenMP [2.8.1, simd construct, Restrictions]
2783 // Only one safelen clause can appear on a simd directive.
2784 // Only one simdlen clause can appear on a simd directive.
2785 // Only one collapse clause can appear on a simd directive.
2786 // OpenMP [2.11.1, task Construct, Restrictions]
2787 // At most one if clause can appear on the directive.
2788 // At most one final clause can appear on the directive.
2789 // OpenMP [teams Construct, Restrictions]
2790 // At most one num_teams clause can appear on the directive.
2791 // At most one thread_limit clause can appear on the directive.
2792 // OpenMP [2.9.1, task Construct, Restrictions]
2793 // At most one priority clause can appear on the directive.
2794 // OpenMP [2.9.2, taskloop Construct, Restrictions]
2795 // At most one grainsize clause can appear on the directive.
2796 // OpenMP [2.9.2, taskloop Construct, Restrictions]
2797 // At most one num_tasks clause can appear on the directive.
2798 // OpenMP [2.11.3, allocate Directive, Restrictions]
2799 // At most one allocator clause can appear on the directive.
2800 // OpenMP 5.0, 2.10.1 task Construct, Restrictions.
2801 // At most one detach clause can appear on the directive.
2802 // OpenMP 5.1, 2.3.6 dispatch Construct, Restrictions.
2803 // At most one novariants clause can appear on a dispatch directive.
2804 if (!FirstClause) {
2805 Diag(Tok, diag::err_omp_more_one_clause)
2806 << getOpenMPDirectiveName(DKind) << getOpenMPClauseName(CKind) << 0;
2807 ErrorFound = true;
2808 }
2809
2810 if (CKind == OMPC_ordered && PP.LookAhead(/*N=*/0).isNot(tok::l_paren))
2811 Clause = ParseOpenMPClause(CKind, WrongDirective);
2812 else
2813 Clause = ParseOpenMPSingleExprClause(CKind, WrongDirective);
2814 break;
2815 case OMPC_default:
2816 case OMPC_proc_bind:
2817 case OMPC_atomic_default_mem_order:
2818 case OMPC_order:
2819 // OpenMP [2.14.3.1, Restrictions]
2820 // Only a single default clause may be specified on a parallel, task or
2821 // teams directive.
2822 // OpenMP [2.5, parallel Construct, Restrictions]
2823 // At most one proc_bind clause can appear on the directive.
2824 // OpenMP [5.0, Requires directive, Restrictions]
2825 // At most one atomic_default_mem_order clause can appear
2826 // on the directive
2827 if (!FirstClause && CKind != OMPC_order) {
2828 Diag(Tok, diag::err_omp_more_one_clause)
2829 << getOpenMPDirectiveName(DKind) << getOpenMPClauseName(CKind) << 0;
2830 ErrorFound = true;
2831 }
2832
2833 Clause = ParseOpenMPSimpleClause(CKind, WrongDirective);
2834 break;
2835 case OMPC_device:
2836 case OMPC_schedule:
2837 case OMPC_dist_schedule:
2838 case OMPC_defaultmap:
2839 // OpenMP [2.7.1, Restrictions, p. 3]
2840 // Only one schedule clause can appear on a loop directive.
2841 // OpenMP 4.5 [2.10.4, Restrictions, p. 106]
2842 // At most one defaultmap clause can appear on the directive.
2843 // OpenMP 5.0 [2.12.5, target construct, Restrictions]
2844 // At most one device clause can appear on the directive.
2845 if ((getLangOpts().OpenMP < 50 || CKind != OMPC_defaultmap) &&
2846 !FirstClause) {
2847 Diag(Tok, diag::err_omp_more_one_clause)
2848 << getOpenMPDirectiveName(DKind) << getOpenMPClauseName(CKind) << 0;
2849 ErrorFound = true;
2850 }
2851 LLVM_FALLTHROUGH[[gnu::fallthrough]];
2852 case OMPC_if:
2853 Clause = ParseOpenMPSingleExprWithArgClause(DKind, CKind, WrongDirective);
2854 break;
2855 case OMPC_nowait:
2856 case OMPC_untied:
2857 case OMPC_mergeable:
2858 case OMPC_read:
2859 case OMPC_write:
2860 case OMPC_capture:
2861 case OMPC_seq_cst:
2862 case OMPC_acq_rel:
2863 case OMPC_acquire:
2864 case OMPC_release:
2865 case OMPC_relaxed:
2866 case OMPC_threads:
2867 case OMPC_simd:
2868 case OMPC_nogroup:
2869 case OMPC_unified_address:
2870 case OMPC_unified_shared_memory:
2871 case OMPC_reverse_offload:
2872 case OMPC_dynamic_allocators:
2873 // OpenMP [2.7.1, Restrictions, p. 9]
2874 // Only one ordered clause can appear on a loop directive.
2875 // OpenMP [2.7.1, Restrictions, C/C++, p. 4]
2876 // Only one nowait clause can appear on a for directive.
2877 // OpenMP [5.0, Requires directive, Restrictions]
2878 // Each of the requires clauses can appear at most once on the directive.
2879 if (!FirstClause) {
2880 Diag(Tok, diag::err_omp_more_one_clause)
2881 << getOpenMPDirectiveName(DKind) << getOpenMPClauseName(CKind) << 0;
2882 ErrorFound = true;
2883 }
2884
2885 Clause = ParseOpenMPClause(CKind, WrongDirective);
2886 break;
2887 case OMPC_update:
2888 if (!FirstClause) {
2889 Diag(Tok, diag::err_omp_more_one_clause)
2890 << getOpenMPDirectiveName(DKind) << getOpenMPClauseName(CKind) << 0;
2891 ErrorFound = true;
2892 }
2893
2894 Clause = (DKind == OMPD_depobj)
2895 ? ParseOpenMPSimpleClause(CKind, WrongDirective)
2896 : ParseOpenMPClause(CKind, WrongDirective);
2897 break;
2898 case OMPC_private:
2899 case OMPC_firstprivate:
2900 case OMPC_lastprivate:
2901 case OMPC_shared:
2902 case OMPC_reduction:
2903 case OMPC_task_reduction:
2904 case OMPC_in_reduction:
2905 case OMPC_linear:
2906 case OMPC_aligned:
2907 case OMPC_copyin:
2908 case OMPC_copyprivate:
2909 case OMPC_flush:
2910 case OMPC_depend:
2911 case OMPC_map:
2912 case OMPC_to:
2913 case OMPC_from:
2914 case OMPC_use_device_ptr:
2915 case OMPC_use_device_addr:
2916 case OMPC_is_device_ptr:
2917 case OMPC_allocate:
2918 case OMPC_nontemporal:
2919 case OMPC_inclusive:
2920 case OMPC_exclusive:
2921 case OMPC_affinity:
2922 Clause = ParseOpenMPVarListClause(DKind, CKind, WrongDirective);
2923 break;
2924 case OMPC_sizes:
2925 if (!FirstClause) {
2926 Diag(Tok, diag::err_omp_more_one_clause)
2927 << getOpenMPDirectiveName(DKind) << getOpenMPClauseName(CKind) << 0;
2928 ErrorFound = true;
2929 }
2930
2931 Clause = ParseOpenMPSizesClause();
2932 break;
2933 case OMPC_uses_allocators:
2934 Clause = ParseOpenMPUsesAllocatorClause(DKind);
2935 break;
2936 case OMPC_destroy:
2937 if (DKind != OMPD_interop) {
2938 if (!FirstClause) {
2939 Diag(Tok, diag::err_omp_more_one_clause)
2940 << getOpenMPDirectiveName(DKind) << getOpenMPClauseName(CKind) << 0;
2941 ErrorFound = true;
2942 }
2943 Clause = ParseOpenMPClause(CKind, WrongDirective);
2944 break;
2945 }
2946 LLVM_FALLTHROUGH[[gnu::fallthrough]];
2947 case OMPC_init:
2948 case OMPC_use:
2949 Clause = ParseOpenMPInteropClause(CKind, WrongDirective);
2950 break;
2951 case OMPC_device_type:
2952 case OMPC_unknown:
2953 skipUntilPragmaOpenMPEnd(DKind);
2954 break;
2955 case OMPC_threadprivate:
2956 case OMPC_uniform:
2957 case OMPC_match:
2958 if (!WrongDirective)
2959 Diag(Tok, diag::err_omp_unexpected_clause)
2960 << getOpenMPClauseName(CKind) << getOpenMPDirectiveName(DKind);
2961 SkipUntil(tok::comma, tok::annot_pragma_openmp_end, StopBeforeMatch);
2962 break;
2963 default:
2964 break;
2965 }
2966 return ErrorFound ? nullptr : Clause;
2967}
2968
2969/// Parses simple expression in parens for single-expression clauses of OpenMP
2970/// constructs.
2971/// \param RLoc Returned location of right paren.
2972ExprResult Parser::ParseOpenMPParensExpr(StringRef ClauseName,
2973 SourceLocation &RLoc,
2974 bool IsAddressOfOperand) {
2975 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
2976 if (T.expectAndConsume(diag::err_expected_lparen_after, ClauseName.data()))
2977 return ExprError();
2978
2979 SourceLocation ELoc = Tok.getLocation();
2980 ExprResult LHS(
2981 ParseCastExpression(AnyCastExpr, IsAddressOfOperand, NotTypeCast));
2982 ExprResult Val(ParseRHSOfBinaryExpression(LHS, prec::Conditional));
2983 Val = Actions.ActOnFinishFullExpr(Val.get(), ELoc, /*DiscardedValue*/ false);
2984
2985 // Parse ')'.
2986 RLoc = Tok.getLocation();
2987 if (!T.consumeClose())
2988 RLoc = T.getCloseLocation();
2989
2990 return Val;
2991}
2992
2993/// Parsing of OpenMP clauses with single expressions like 'final',
2994/// 'collapse', 'safelen', 'num_threads', 'simdlen', 'num_teams',
2995/// 'thread_limit', 'simdlen', 'priority', 'grainsize', 'num_tasks', 'hint' or
2996/// 'detach'.
2997///
2998/// final-clause:
2999/// 'final' '(' expression ')'
3000///
3001/// num_threads-clause:
3002/// 'num_threads' '(' expression ')'
3003///
3004/// safelen-clause:
3005/// 'safelen' '(' expression ')'
3006///
3007/// simdlen-clause:
3008/// 'simdlen' '(' expression ')'
3009///
3010/// collapse-clause:
3011/// 'collapse' '(' expression ')'
3012///
3013/// priority-clause:
3014/// 'priority' '(' expression ')'
3015///
3016/// grainsize-clause:
3017/// 'grainsize' '(' expression ')'
3018///
3019/// num_tasks-clause:
3020/// 'num_tasks' '(' expression ')'
3021///
3022/// hint-clause:
3023/// 'hint' '(' expression ')'
3024///
3025/// allocator-clause:
3026/// 'allocator' '(' expression ')'
3027///
3028/// detach-clause:
3029/// 'detach' '(' event-handler-expression ')'
3030///
3031OMPClause *Parser::ParseOpenMPSingleExprClause(OpenMPClauseKind Kind,
3032 bool ParseOnly) {
3033 SourceLocation Loc = ConsumeToken();
3034 SourceLocation LLoc = Tok.getLocation();
3035 SourceLocation RLoc;
3036
3037 ExprResult Val = ParseOpenMPParensExpr(getOpenMPClauseName(Kind), RLoc);
3038
3039 if (Val.isInvalid())
3040 return nullptr;
3041
3042 if (ParseOnly)
3043 return nullptr;
3044 return Actions.ActOnOpenMPSingleExprClause(Kind, Val.get(), Loc, LLoc, RLoc);
3045}
3046
3047/// Parsing of OpenMP clauses that use an interop-var.
3048///
3049/// init-clause:
3050/// init([interop-modifier, ]interop-type[[, interop-type] ... ]:interop-var)
3051///
3052/// destroy-clause:
3053/// destroy(interop-var)
3054///
3055/// use-clause:
3056/// use(interop-var)
3057///
3058/// interop-modifier:
3059/// prefer_type(preference-list)
3060///
3061/// preference-list:
3062/// foreign-runtime-id [, foreign-runtime-id]...
3063///
3064/// foreign-runtime-id:
3065/// <string-literal> | <constant-integral-expression>
3066///
3067/// interop-type:
3068/// target | targetsync
3069///
3070OMPClause *Parser::ParseOpenMPInteropClause(OpenMPClauseKind Kind,
3071 bool ParseOnly) {
3072 SourceLocation Loc = ConsumeToken();
3073 // Parse '('.
3074 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
3075 if (T.expectAndConsume(diag::err_expected_lparen_after,
3076 getOpenMPClauseName(Kind).data()))
3077 return nullptr;
3078
3079 bool IsTarget = false;
3080 bool IsTargetSync = false;
3081 SmallVector<Expr *, 4> Prefs;
3082
3083 if (Kind == OMPC_init) {
3084
3085 // Parse optional interop-modifier.
3086 if (Tok.is(tok::identifier) && PP.getSpelling(Tok) == "prefer_type") {
3087 ConsumeToken();
3088 BalancedDelimiterTracker PT(*this, tok::l_paren,
3089 tok::annot_pragma_openmp_end);
3090 if (PT.expectAndConsume(diag::err_expected_lparen_after, "prefer_type"))
3091 return nullptr;
3092
3093 while (Tok.isNot(tok::r_paren)) {
3094 SourceLocation Loc = Tok.getLocation();
3095 ExprResult LHS = ParseCastExpression(AnyCastExpr);
3096 ExprResult PTExpr = Actions.CorrectDelayedTyposInExpr(
3097 ParseRHSOfBinaryExpression(LHS, prec::Conditional));
3098 PTExpr = Actions.ActOnFinishFullExpr(PTExpr.get(), Loc,
3099 /*DiscardedValue=*/false);
3100 if (PTExpr.isUsable())
3101 Prefs.push_back(PTExpr.get());
3102 else
3103 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
3104 StopBeforeMatch);
3105
3106 if (Tok.is(tok::comma))
3107 ConsumeToken();
3108 }
3109 PT.consumeClose();
3110 }
3111
3112 if (!Prefs.empty()) {
3113 if (Tok.is(tok::comma))
3114 ConsumeToken();
3115 else
3116 Diag(Tok, diag::err_omp_expected_punc_after_interop_mod);
3117 }
3118
3119 // Parse the interop-types.
3120 bool HasError = false;
3121 while (Tok.is(tok::identifier)) {
3122 if (PP.getSpelling(Tok) == "target") {
3123 // OpenMP 5.1 [2.15.1, interop Construct, Restrictions]
3124 // Each interop-type may be specified on an action-clause at most
3125 // once.
3126 if (IsTarget)
3127 Diag(Tok, diag::warn_omp_more_one_interop_type) << "target";
3128 IsTarget = true;
3129 } else if (PP.getSpelling(Tok) == "targetsync") {
3130 if (IsTargetSync)
3131 Diag(Tok, diag::warn_omp_more_one_interop_type) << "targetsync";
3132 IsTargetSync = true;
3133 } else {
3134 HasError = true;
3135 Diag(Tok, diag::err_omp_expected_interop_type);
3136 }
3137 ConsumeToken();
3138
3139 if (!Tok.is(tok::comma))
3140 break;
3141 ConsumeToken();
3142 }
3143 if (!HasError && !IsTarget && !IsTargetSync)
3144 Diag(Tok, diag::err_omp_expected_interop_type);
3145
3146 if (Tok.is(tok::colon))
3147 ConsumeToken();
3148 else if (IsTarget || IsTargetSync)
3149 Diag(Tok, diag::warn_pragma_expected_colon) << "interop types";
3150 }
3151
3152 // Parse the variable.
3153 SourceLocation VarLoc = Tok.getLocation();
3154 ExprResult InteropVarExpr =
3155 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression());
3156 if (!InteropVarExpr.isUsable()) {
3157 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
3158 StopBeforeMatch);
3159 }
3160
3161 // Parse ')'.
3162 SourceLocation RLoc = Tok.getLocation();
3163 if (!T.consumeClose())
3164 RLoc = T.getCloseLocation();
3165
3166 if (ParseOnly || !InteropVarExpr.isUsable() ||
3167 (Kind == OMPC_init && !IsTarget && !IsTargetSync))
3168 return nullptr;
3169
3170 if (Kind == OMPC_init)
3171 return Actions.ActOnOpenMPInitClause(InteropVarExpr.get(), Prefs, IsTarget,
3172 IsTargetSync, Loc, T.getOpenLocation(),
3173 VarLoc, RLoc);
3174 if (Kind == OMPC_use)
3175 return Actions.ActOnOpenMPUseClause(InteropVarExpr.get(), Loc,
3176 T.getOpenLocation(), VarLoc, RLoc);
3177
3178 if (Kind == OMPC_destroy)
3179 return Actions.ActOnOpenMPDestroyClause(InteropVarExpr.get(), Loc,
3180 T.getOpenLocation(), VarLoc, RLoc);
3181
3182 llvm_unreachable("Unexpected interop variable clause.")::llvm::llvm_unreachable_internal("Unexpected interop variable clause."
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 3182)
;
3183}
3184
3185/// Parsing of simple OpenMP clauses like 'default' or 'proc_bind'.
3186///
3187/// default-clause:
3188/// 'default' '(' 'none' | 'shared' | 'firstprivate' ')'
3189///
3190/// proc_bind-clause:
3191/// 'proc_bind' '(' 'master' | 'close' | 'spread' ')'
3192///
3193/// update-clause:
3194/// 'update' '(' 'in' | 'out' | 'inout' | 'mutexinoutset' ')'
3195///
3196OMPClause *Parser::ParseOpenMPSimpleClause(OpenMPClauseKind Kind,
3197 bool ParseOnly) {
3198 llvm::Optional<SimpleClauseData> Val = parseOpenMPSimpleClause(*this, Kind);
3199 if (!Val || ParseOnly)
3200 return nullptr;
3201 if (getLangOpts().OpenMP < 51 && Kind == OMPC_default &&
3202 static_cast<DefaultKind>(Val.getValue().Type) ==
3203 OMP_DEFAULT_firstprivate) {
3204 Diag(Val.getValue().LOpen, diag::err_omp_invalid_dsa)
3205 << getOpenMPClauseName(OMPC_firstprivate)
3206 << getOpenMPClauseName(OMPC_default) << "5.1";
3207 return nullptr;
3208 }
3209 return Actions.ActOnOpenMPSimpleClause(
3210 Kind, Val.getValue().Type, Val.getValue().TypeLoc, Val.getValue().LOpen,
3211 Val.getValue().Loc, Val.getValue().RLoc);
3212}
3213
3214/// Parsing of OpenMP clauses like 'ordered'.
3215///
3216/// ordered-clause:
3217/// 'ordered'
3218///
3219/// nowait-clause:
3220/// 'nowait'
3221///
3222/// untied-clause:
3223/// 'untied'
3224///
3225/// mergeable-clause:
3226/// 'mergeable'
3227///
3228/// read-clause:
3229/// 'read'
3230///
3231/// threads-clause:
3232/// 'threads'
3233///
3234/// simd-clause:
3235/// 'simd'
3236///
3237/// nogroup-clause:
3238/// 'nogroup'
3239///
3240OMPClause *Parser::ParseOpenMPClause(OpenMPClauseKind Kind, bool ParseOnly) {
3241 SourceLocation Loc = Tok.getLocation();
3242 ConsumeAnyToken();
3243
3244 if (ParseOnly)
3245 return nullptr;
3246 return Actions.ActOnOpenMPClause(Kind, Loc, Tok.getLocation());
3247}
3248
3249/// Parsing of OpenMP clauses with single expressions and some additional
3250/// argument like 'schedule' or 'dist_schedule'.
3251///
3252/// schedule-clause:
3253/// 'schedule' '(' [ modifier [ ',' modifier ] ':' ] kind [',' expression ]
3254/// ')'
3255///
3256/// if-clause:
3257/// 'if' '(' [ directive-name-modifier ':' ] expression ')'
3258///
3259/// defaultmap:
3260/// 'defaultmap' '(' modifier [ ':' kind ] ')'
3261///
3262/// device-clause:
3263/// 'device' '(' [ device-modifier ':' ] expression ')'
3264///
3265OMPClause *Parser::ParseOpenMPSingleExprWithArgClause(OpenMPDirectiveKind DKind,
3266 OpenMPClauseKind Kind,
3267 bool ParseOnly) {
3268 SourceLocation Loc = ConsumeToken();
3269 SourceLocation DelimLoc;
3270 // Parse '('.
3271 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
3272 if (T.expectAndConsume(diag::err_expected_lparen_after,
3273 getOpenMPClauseName(Kind).data()))
3274 return nullptr;
3275
3276 ExprResult Val;
3277 SmallVector<unsigned, 4> Arg;
3278 SmallVector<SourceLocation, 4> KLoc;
3279 if (Kind == OMPC_schedule) {
3280 enum { Modifier1, Modifier2, ScheduleKind, NumberOfElements };
3281 Arg.resize(NumberOfElements);
3282 KLoc.resize(NumberOfElements);
3283 Arg[Modifier1] = OMPC_SCHEDULE_MODIFIER_unknown;
3284 Arg[Modifier2] = OMPC_SCHEDULE_MODIFIER_unknown;
3285 Arg[ScheduleKind] = OMPC_SCHEDULE_unknown;
3286 unsigned KindModifier = getOpenMPSimpleClauseType(
3287 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok),
3288 getLangOpts().OpenMP);
3289 if (KindModifier > OMPC_SCHEDULE_unknown) {
3290 // Parse 'modifier'
3291 Arg[Modifier1] = KindModifier;
3292 KLoc[Modifier1] = Tok.getLocation();
3293 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
3294 Tok.isNot(tok::annot_pragma_openmp_end))
3295 ConsumeAnyToken();
3296 if (Tok.is(tok::comma)) {
3297 // Parse ',' 'modifier'
3298 ConsumeAnyToken();
3299 KindModifier = getOpenMPSimpleClauseType(
3300 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok),
3301 getLangOpts().OpenMP);
3302 Arg[Modifier2] = KindModifier > OMPC_SCHEDULE_unknown
3303 ? KindModifier
3304 : (unsigned)OMPC_SCHEDULE_unknown;
3305 KLoc[Modifier2] = Tok.getLocation();
3306 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
3307 Tok.isNot(tok::annot_pragma_openmp_end))
3308 ConsumeAnyToken();
3309 }
3310 // Parse ':'
3311 if (Tok.is(tok::colon))
3312 ConsumeAnyToken();
3313 else
3314 Diag(Tok, diag::warn_pragma_expected_colon) << "schedule modifier";
3315 KindModifier = getOpenMPSimpleClauseType(
3316 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok),
3317 getLangOpts().OpenMP);
3318 }
3319 Arg[ScheduleKind] = KindModifier;
3320 KLoc[ScheduleKind] = Tok.getLocation();
3321 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
3322 Tok.isNot(tok::annot_pragma_openmp_end))
3323 ConsumeAnyToken();
3324 if ((Arg[ScheduleKind] == OMPC_SCHEDULE_static ||
3325 Arg[ScheduleKind] == OMPC_SCHEDULE_dynamic ||
3326 Arg[ScheduleKind] == OMPC_SCHEDULE_guided) &&
3327 Tok.is(tok::comma))
3328 DelimLoc = ConsumeAnyToken();
3329 } else if (Kind == OMPC_dist_schedule) {
3330 Arg.push_back(getOpenMPSimpleClauseType(
3331 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok),
3332 getLangOpts().OpenMP));
3333 KLoc.push_back(Tok.getLocation());
3334 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
3335 Tok.isNot(tok::annot_pragma_openmp_end))
3336 ConsumeAnyToken();
3337 if (Arg.back() == OMPC_DIST_SCHEDULE_static && Tok.is(tok::comma))
3338 DelimLoc = ConsumeAnyToken();
3339 } else if (Kind == OMPC_defaultmap) {
3340 // Get a defaultmap modifier
3341 unsigned Modifier = getOpenMPSimpleClauseType(
3342 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok),
3343 getLangOpts().OpenMP);
3344 // Set defaultmap modifier to unknown if it is either scalar, aggregate, or
3345 // pointer
3346 if (Modifier < OMPC_DEFAULTMAP_MODIFIER_unknown)
3347 Modifier = OMPC_DEFAULTMAP_MODIFIER_unknown;
3348 Arg.push_back(Modifier);
3349 KLoc.push_back(Tok.getLocation());
3350 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
3351 Tok.isNot(tok::annot_pragma_openmp_end))
3352 ConsumeAnyToken();
3353 // Parse ':'
3354 if (Tok.is(tok::colon) || getLangOpts().OpenMP < 50) {
3355 if (Tok.is(tok::colon))
3356 ConsumeAnyToken();
3357 else if (Arg.back() != OMPC_DEFAULTMAP_MODIFIER_unknown)
3358 Diag(Tok, diag::warn_pragma_expected_colon) << "defaultmap modifier";
3359 // Get a defaultmap kind
3360 Arg.push_back(getOpenMPSimpleClauseType(
3361 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok),
3362 getLangOpts().OpenMP));
3363 KLoc.push_back(Tok.getLocation());
3364 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
3365 Tok.isNot(tok::annot_pragma_openmp_end))
3366 ConsumeAnyToken();
3367 } else {
3368 Arg.push_back(OMPC_DEFAULTMAP_unknown);
3369 KLoc.push_back(SourceLocation());
3370 }
3371 } else if (Kind == OMPC_device) {
3372 // Only target executable directives support extended device construct.
3373 if (isOpenMPTargetExecutionDirective(DKind) && getLangOpts().OpenMP >= 50 &&
3374 NextToken().is(tok::colon)) {
3375 // Parse optional <device modifier> ':'
3376 Arg.push_back(getOpenMPSimpleClauseType(
3377 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok),
3378 getLangOpts().OpenMP));
3379 KLoc.push_back(Tok.getLocation());
3380 ConsumeAnyToken();
3381 // Parse ':'
3382 ConsumeAnyToken();
3383 } else {
3384 Arg.push_back(OMPC_DEVICE_unknown);
3385 KLoc.emplace_back();
3386 }
3387 } else {
3388 assert(Kind == OMPC_if)((Kind == OMPC_if) ? static_cast<void> (0) : __assert_fail
("Kind == OMPC_if", "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 3388, __PRETTY_FUNCTION__))
;
3389 KLoc.push_back(Tok.getLocation());
3390 TentativeParsingAction TPA(*this);
3391 auto DK = parseOpenMPDirectiveKind(*this);
3392 Arg.push_back(DK);
3393 if (DK != OMPD_unknown) {
3394 ConsumeToken();
3395 if (Tok.is(tok::colon) && getLangOpts().OpenMP > 40) {
3396 TPA.Commit();
3397 DelimLoc = ConsumeToken();
3398 } else {
3399 TPA.Revert();
3400 Arg.back() = unsigned(OMPD_unknown);
3401 }
3402 } else {
3403 TPA.Revert();
3404 }
3405 }
3406
3407 bool NeedAnExpression = (Kind == OMPC_schedule && DelimLoc.isValid()) ||
3408 (Kind == OMPC_dist_schedule && DelimLoc.isValid()) ||
3409 Kind == OMPC_if || Kind == OMPC_device;
3410 if (NeedAnExpression) {
3411 SourceLocation ELoc = Tok.getLocation();
3412 ExprResult LHS(ParseCastExpression(AnyCastExpr, false, NotTypeCast));
3413 Val = ParseRHSOfBinaryExpression(LHS, prec::Conditional);
3414 Val =
3415 Actions.ActOnFinishFullExpr(Val.get(), ELoc, /*DiscardedValue*/ false);
3416 }
3417
3418 // Parse ')'.
3419 SourceLocation RLoc = Tok.getLocation();
3420 if (!T.consumeClose())
3421 RLoc = T.getCloseLocation();
3422
3423 if (NeedAnExpression && Val.isInvalid())
3424 return nullptr;
3425
3426 if (ParseOnly)
3427 return nullptr;
3428 return Actions.ActOnOpenMPSingleExprWithArgClause(
3429 Kind, Arg, Val.get(), Loc, T.getOpenLocation(), KLoc, DelimLoc, RLoc);
3430}
3431
3432static bool ParseReductionId(Parser &P, CXXScopeSpec &ReductionIdScopeSpec,
3433 UnqualifiedId &ReductionId) {
3434 if (ReductionIdScopeSpec.isEmpty()) {
3435 auto OOK = OO_None;
3436 switch (P.getCurToken().getKind()) {
3437 case tok::plus:
3438 OOK = OO_Plus;
3439 break;
3440 case tok::minus:
3441 OOK = OO_Minus;
3442 break;
3443 case tok::star:
3444 OOK = OO_Star;
3445 break;
3446 case tok::amp:
3447 OOK = OO_Amp;
3448 break;
3449 case tok::pipe:
3450 OOK = OO_Pipe;
3451 break;
3452 case tok::caret:
3453 OOK = OO_Caret;
3454 break;
3455 case tok::ampamp:
3456 OOK = OO_AmpAmp;
3457 break;
3458 case tok::pipepipe:
3459 OOK = OO_PipePipe;
3460 break;
3461 default:
3462 break;
3463 }
3464 if (OOK != OO_None) {
3465 SourceLocation OpLoc = P.ConsumeToken();
3466 SourceLocation SymbolLocations[] = {OpLoc, OpLoc, SourceLocation()};
3467 ReductionId.setOperatorFunctionId(OpLoc, OOK, SymbolLocations);
3468 return false;
3469 }
3470 }
3471 return P.ParseUnqualifiedId(
3472 ReductionIdScopeSpec, /*ObjectType=*/nullptr,
3473 /*ObjectHadErrors=*/false, /*EnteringContext*/ false,
3474 /*AllowDestructorName*/ false,
3475 /*AllowConstructorName*/ false,
3476 /*AllowDeductionGuide*/ false, nullptr, ReductionId);
3477}
3478
3479/// Checks if the token is a valid map-type-modifier.
3480/// FIXME: It will return an OpenMPMapClauseKind if that's what it parses.
3481static OpenMPMapModifierKind isMapModifier(Parser &P) {
3482 Token Tok = P.getCurToken();
3483 if (!Tok.is(tok::identifier))
3484 return OMPC_MAP_MODIFIER_unknown;
3485
3486 Preprocessor &PP = P.getPreprocessor();
3487 OpenMPMapModifierKind TypeModifier =
3488 static_cast<OpenMPMapModifierKind>(getOpenMPSimpleClauseType(
3489 OMPC_map, PP.getSpelling(Tok), P.getLangOpts().OpenMP));
3490 return TypeModifier;
3491}
3492
3493/// Parse the mapper modifier in map, to, and from clauses.
3494bool Parser::parseMapperModifier(OpenMPVarListDataTy &Data) {
3495 // Parse '('.
3496 BalancedDelimiterTracker T(*this, tok::l_paren, tok::colon);
3497 if (T.expectAndConsume(diag::err_expected_lparen_after, "mapper")) {
3498 SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
3499 StopBeforeMatch);
3500 return true;
3501 }
3502 // Parse mapper-identifier
3503 if (getLangOpts().CPlusPlus)
3504 ParseOptionalCXXScopeSpecifier(Data.ReductionOrMapperIdScopeSpec,
3505 /*ObjectType=*/nullptr,
3506 /*ObjectHadErrors=*/false,
3507 /*EnteringContext=*/false);
3508 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::kw_default)) {
3509 Diag(Tok.getLocation(), diag::err_omp_mapper_illegal_identifier);
3510 SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
3511 StopBeforeMatch);
3512 return true;
3513 }
3514 auto &DeclNames = Actions.getASTContext().DeclarationNames;
3515 Data.ReductionOrMapperId = DeclarationNameInfo(
3516 DeclNames.getIdentifier(Tok.getIdentifierInfo()), Tok.getLocation());
3517 ConsumeToken();
3518 // Parse ')'.
3519 return T.consumeClose();
3520}
3521
3522/// Parse map-type-modifiers in map clause.
3523/// map([ [map-type-modifier[,] [map-type-modifier[,] ...] map-type : ] list)
3524/// where, map-type-modifier ::= always | close | mapper(mapper-identifier) |
3525/// present
3526bool Parser::parseMapTypeModifiers(OpenMPVarListDataTy &Data) {
3527 while (getCurToken().isNot(tok::colon)) {
3528 OpenMPMapModifierKind TypeModifier = isMapModifier(*this);
3529 if (TypeModifier == OMPC_MAP_MODIFIER_always ||
3530 TypeModifier == OMPC_MAP_MODIFIER_close ||
3531 TypeModifier == OMPC_MAP_MODIFIER_present) {
3532 Data.MapTypeModifiers.push_back(TypeModifier);
3533 Data.MapTypeModifiersLoc.push_back(Tok.getLocation());
3534 ConsumeToken();
3535 } else if (TypeModifier == OMPC_MAP_MODIFIER_mapper) {
3536 Data.MapTypeModifiers.push_back(TypeModifier);
3537 Data.MapTypeModifiersLoc.push_back(Tok.getLocation());
3538 ConsumeToken();
3539 if (parseMapperModifier(Data))
3540 return true;
3541 } else {
3542 // For the case of unknown map-type-modifier or a map-type.
3543 // Map-type is followed by a colon; the function returns when it
3544 // encounters a token followed by a colon.
3545 if (Tok.is(tok::comma)) {
3546 Diag(Tok, diag::err_omp_map_type_modifier_missing);
3547 ConsumeToken();
3548 continue;
3549 }
3550 // Potential map-type token as it is followed by a colon.
3551 if (PP.LookAhead(0).is(tok::colon))
3552 return false;
3553 Diag(Tok, diag::err_omp_unknown_map_type_modifier)
3554 << (getLangOpts().OpenMP >= 51 ? 1 : 0);
3555 ConsumeToken();
3556 }
3557 if (getCurToken().is(tok::comma))
3558 ConsumeToken();
3559 }
3560 return false;
3561}
3562
3563/// Checks if the token is a valid map-type.
3564/// FIXME: It will return an OpenMPMapModifierKind if that's what it parses.
3565static OpenMPMapClauseKind isMapType(Parser &P) {
3566 Token Tok = P.getCurToken();
3567 // The map-type token can be either an identifier or the C++ delete keyword.
3568 if (!Tok.isOneOf(tok::identifier, tok::kw_delete))
3569 return OMPC_MAP_unknown;
3570 Preprocessor &PP = P.getPreprocessor();
3571 OpenMPMapClauseKind MapType =
3572 static_cast<OpenMPMapClauseKind>(getOpenMPSimpleClauseType(
3573 OMPC_map, PP.getSpelling(Tok), P.getLangOpts().OpenMP));
3574 return MapType;
3575}
3576
3577/// Parse map-type in map clause.
3578/// map([ [map-type-modifier[,] [map-type-modifier[,] ...] map-type : ] list)
3579/// where, map-type ::= to | from | tofrom | alloc | release | delete
3580static void parseMapType(Parser &P, Parser::OpenMPVarListDataTy &Data) {
3581 Token Tok = P.getCurToken();
3582 if (Tok.is(tok::colon)) {
3583 P.Diag(Tok, diag::err_omp_map_type_missing);
3584 return;
3585 }
3586 Data.ExtraModifier = isMapType(P);
3587 if (Data.ExtraModifier == OMPC_MAP_unknown)
3588 P.Diag(Tok, diag::err_omp_unknown_map_type);
3589 P.ConsumeToken();
3590}
3591
3592/// Parses simple expression in parens for single-expression clauses of OpenMP
3593/// constructs.
3594ExprResult Parser::ParseOpenMPIteratorsExpr() {
3595 assert(Tok.is(tok::identifier) && PP.getSpelling(Tok) == "iterator" &&((Tok.is(tok::identifier) && PP.getSpelling(Tok) == "iterator"
&& "Expected 'iterator' token.") ? static_cast<void
> (0) : __assert_fail ("Tok.is(tok::identifier) && PP.getSpelling(Tok) == \"iterator\" && \"Expected 'iterator' token.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 3596, __PRETTY_FUNCTION__))
3596 "Expected 'iterator' token.")((Tok.is(tok::identifier) && PP.getSpelling(Tok) == "iterator"
&& "Expected 'iterator' token.") ? static_cast<void
> (0) : __assert_fail ("Tok.is(tok::identifier) && PP.getSpelling(Tok) == \"iterator\" && \"Expected 'iterator' token.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 3596, __PRETTY_FUNCTION__))
;
3597 SourceLocation IteratorKwLoc = ConsumeToken();
3598
3599 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
3600 if (T.expectAndConsume(diag::err_expected_lparen_after, "iterator"))
3601 return ExprError();
3602
3603 SourceLocation LLoc = T.getOpenLocation();
3604 SmallVector<Sema::OMPIteratorData, 4> Data;
3605 while (Tok.isNot(tok::r_paren) && Tok.isNot(tok::annot_pragma_openmp_end)) {
3606 // Check if the type parsing is required.
3607 ParsedType IteratorType;
3608 if (Tok.isNot(tok::identifier) || NextToken().isNot(tok::equal)) {
3609 // identifier '=' is not found - parse type.
3610 TypeResult TR = ParseTypeName();
3611 if (TR.isInvalid()) {
3612 T.skipToEnd();
3613 return ExprError();
3614 }
3615 IteratorType = TR.get();
3616 }
3617
3618 // Parse identifier.
3619 IdentifierInfo *II = nullptr;
3620 SourceLocation IdLoc;
3621 if (Tok.is(tok::identifier)) {
3622 II = Tok.getIdentifierInfo();
3623 IdLoc = ConsumeToken();
3624 } else {
3625 Diag(Tok, diag::err_expected_unqualified_id) << 0;
3626 }
3627
3628 // Parse '='.
3629 SourceLocation AssignLoc;
3630 if (Tok.is(tok::equal))
3631 AssignLoc = ConsumeToken();
3632 else
3633 Diag(Tok, diag::err_omp_expected_equal_in_iterator);
3634
3635 // Parse range-specification - <begin> ':' <end> [ ':' <step> ]
3636 ColonProtectionRAIIObject ColonRAII(*this);
3637 // Parse <begin>
3638 SourceLocation Loc = Tok.getLocation();
3639 ExprResult LHS = ParseCastExpression(AnyCastExpr);
3640 ExprResult Begin = Actions.CorrectDelayedTyposInExpr(
3641 ParseRHSOfBinaryExpression(LHS, prec::Conditional));
3642 Begin = Actions.ActOnFinishFullExpr(Begin.get(), Loc,
3643 /*DiscardedValue=*/false);
3644 // Parse ':'.
3645 SourceLocation ColonLoc;
3646 if (Tok.is(tok::colon))
3647 ColonLoc = ConsumeToken();
3648
3649 // Parse <end>
3650 Loc = Tok.getLocation();
3651 LHS = ParseCastExpression(AnyCastExpr);
3652 ExprResult End = Actions.CorrectDelayedTyposInExpr(
3653 ParseRHSOfBinaryExpression(LHS, prec::Conditional));
3654 End = Actions.ActOnFinishFullExpr(End.get(), Loc,
3655 /*DiscardedValue=*/false);
3656
3657 SourceLocation SecColonLoc;
3658 ExprResult Step;
3659 // Parse optional step.
3660 if (Tok.is(tok::colon)) {
3661 // Parse ':'
3662 SecColonLoc = ConsumeToken();
3663 // Parse <step>
3664 Loc = Tok.getLocation();
3665 LHS = ParseCastExpression(AnyCastExpr);
3666 Step = Actions.CorrectDelayedTyposInExpr(
3667 ParseRHSOfBinaryExpression(LHS, prec::Conditional));
3668 Step = Actions.ActOnFinishFullExpr(Step.get(), Loc,
3669 /*DiscardedValue=*/false);
3670 }
3671
3672 // Parse ',' or ')'
3673 if (Tok.isNot(tok::comma) && Tok.isNot(tok::r_paren))
3674 Diag(Tok, diag::err_omp_expected_punc_after_iterator);
3675 if (Tok.is(tok::comma))
3676 ConsumeToken();
3677
3678 Sema::OMPIteratorData &D = Data.emplace_back();
3679 D.DeclIdent = II;
3680 D.DeclIdentLoc = IdLoc;
3681 D.Type = IteratorType;
3682 D.AssignLoc = AssignLoc;
3683 D.ColonLoc = ColonLoc;
3684 D.SecColonLoc = SecColonLoc;
3685 D.Range.Begin = Begin.get();
3686 D.Range.End = End.get();
3687 D.Range.Step = Step.get();
3688 }
3689
3690 // Parse ')'.
3691 SourceLocation RLoc = Tok.getLocation();
3692 if (!T.consumeClose())
3693 RLoc = T.getCloseLocation();
3694
3695 return Actions.ActOnOMPIteratorExpr(getCurScope(), IteratorKwLoc, LLoc, RLoc,
3696 Data);
3697}
3698
3699/// Parses clauses with list.
3700bool Parser::ParseOpenMPVarList(OpenMPDirectiveKind DKind,
3701 OpenMPClauseKind Kind,
3702 SmallVectorImpl<Expr *> &Vars,
3703 OpenMPVarListDataTy &Data) {
3704 UnqualifiedId UnqualifiedReductionId;
3705 bool InvalidReductionId = false;
3706 bool IsInvalidMapperModifier = false;
3707
3708 // Parse '('.
3709 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
3710 if (T.expectAndConsume(diag::err_expected_lparen_after,
3711 getOpenMPClauseName(Kind).data()))
3712 return true;
3713
3714 bool HasIterator = false;
3715 bool NeedRParenForLinear = false;
3716 BalancedDelimiterTracker LinearT(*this, tok::l_paren,
3717 tok::annot_pragma_openmp_end);
3718 // Handle reduction-identifier for reduction clause.
3719 if (Kind == OMPC_reduction || Kind == OMPC_task_reduction ||
3720 Kind == OMPC_in_reduction) {
3721 Data.ExtraModifier = OMPC_REDUCTION_unknown;
3722 if (Kind == OMPC_reduction && getLangOpts().OpenMP >= 50 &&
3723 (Tok.is(tok::identifier) || Tok.is(tok::kw_default)) &&
3724 NextToken().is(tok::comma)) {
3725 // Parse optional reduction modifier.
3726 Data.ExtraModifier = getOpenMPSimpleClauseType(Kind, PP.getSpelling(Tok),
3727 getLangOpts().OpenMP);
3728 Data.ExtraModifierLoc = Tok.getLocation();
3729 ConsumeToken();
3730 assert(Tok.is(tok::comma) && "Expected comma.")((Tok.is(tok::comma) && "Expected comma.") ? static_cast
<void> (0) : __assert_fail ("Tok.is(tok::comma) && \"Expected comma.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 3730, __PRETTY_FUNCTION__))
;
3731 (void)ConsumeToken();
3732 }
3733 ColonProtectionRAIIObject ColonRAII(*this);
3734 if (getLangOpts().CPlusPlus)
3735 ParseOptionalCXXScopeSpecifier(Data.ReductionOrMapperIdScopeSpec,
3736 /*ObjectType=*/nullptr,
3737 /*ObjectHadErrors=*/false,
3738 /*EnteringContext=*/false);
3739 InvalidReductionId = ParseReductionId(
3740 *this, Data.ReductionOrMapperIdScopeSpec, UnqualifiedReductionId);
3741 if (InvalidReductionId) {
3742 SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
3743 StopBeforeMatch);
3744 }
3745 if (Tok.is(tok::colon))
3746 Data.ColonLoc = ConsumeToken();
3747 else
3748 Diag(Tok, diag::warn_pragma_expected_colon) << "reduction identifier";
3749 if (!InvalidReductionId)
3750 Data.ReductionOrMapperId =
3751 Actions.GetNameFromUnqualifiedId(UnqualifiedReductionId);
3752 } else if (Kind == OMPC_depend) {
3753 if (getLangOpts().OpenMP >= 50) {
3754 if (Tok.is(tok::identifier) && PP.getSpelling(Tok) == "iterator") {
3755 // Handle optional dependence modifier.
3756 // iterator(iterators-definition)
3757 // where iterators-definition is iterator-specifier [,
3758 // iterators-definition ]
3759 // where iterator-specifier is [ iterator-type ] identifier =
3760 // range-specification
3761 HasIterator = true;
3762 EnterScope(Scope::OpenMPDirectiveScope | Scope::DeclScope);
3763 ExprResult IteratorRes = ParseOpenMPIteratorsExpr();
3764 Data.DepModOrTailExpr = IteratorRes.get();
3765 // Parse ','
3766 ExpectAndConsume(tok::comma);
3767 }
3768 }
3769 // Handle dependency type for depend clause.
3770 ColonProtectionRAIIObject ColonRAII(*this);
3771 Data.ExtraModifier = getOpenMPSimpleClauseType(
3772 Kind, Tok.is(tok::identifier) ? PP.getSpelling(Tok) : "",
3773 getLangOpts().OpenMP);
3774 Data.ExtraModifierLoc = Tok.getLocation();
3775 if (Data.ExtraModifier == OMPC_DEPEND_unknown) {
3776 SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
3777 StopBeforeMatch);
3778 } else {
3779 ConsumeToken();
3780 // Special processing for depend(source) clause.
3781 if (DKind == OMPD_ordered && Data.ExtraModifier == OMPC_DEPEND_source) {
3782 // Parse ')'.
3783 T.consumeClose();
3784 return false;
3785 }
3786 }
3787 if (Tok.is(tok::colon)) {
3788 Data.ColonLoc = ConsumeToken();
3789 } else {
3790 Diag(Tok, DKind == OMPD_ordered ? diag::warn_pragma_expected_colon_r_paren
3791 : diag::warn_pragma_expected_colon)
3792 << "dependency type";
3793 }
3794 } else if (Kind == OMPC_linear) {
3795 // Try to parse modifier if any.
3796 Data.ExtraModifier = OMPC_LINEAR_val;
3797 if (Tok.is(tok::identifier) && PP.LookAhead(0).is(tok::l_paren)) {
3798 Data.ExtraModifier = getOpenMPSimpleClauseType(Kind, PP.getSpelling(Tok),
3799 getLangOpts().OpenMP);
3800 Data.ExtraModifierLoc = ConsumeToken();
3801 LinearT.consumeOpen();
3802 NeedRParenForLinear = true;
3803 }
3804 } else if (Kind == OMPC_lastprivate) {
3805 // Try to parse modifier if any.
3806 Data.ExtraModifier = OMPC_LASTPRIVATE_unknown;
3807 // Conditional modifier allowed only in OpenMP 5.0 and not supported in
3808 // distribute and taskloop based directives.
3809 if ((getLangOpts().OpenMP >= 50 && !isOpenMPDistributeDirective(DKind) &&
3810 !isOpenMPTaskLoopDirective(DKind)) &&
3811 Tok.is(tok::identifier) && PP.LookAhead(0).is(tok::colon)) {
3812 Data.ExtraModifier = getOpenMPSimpleClauseType(Kind, PP.getSpelling(Tok),
3813 getLangOpts().OpenMP);
3814 Data.ExtraModifierLoc = Tok.getLocation();
3815 ConsumeToken();
3816 assert(Tok.is(tok::colon) && "Expected colon.")((Tok.is(tok::colon) && "Expected colon.") ? static_cast
<void> (0) : __assert_fail ("Tok.is(tok::colon) && \"Expected colon.\""
, "/build/llvm-toolchain-snapshot-13~++20210405022414+5f57793c4fe4/clang/lib/Parse/ParseOpenMP.cpp"
, 3816, __PRETTY_FUNCTION__))
;
3817 Data.ColonLoc = ConsumeToken();
3818 }
3819 } else if (Kind == OMPC_map) {
3820 // Handle map type for map clause.
3821 ColonProtectionRAIIObject ColonRAII(*this);
3822
3823 // The first identifier may be a list item, a map-type or a
3824 // map-type-modifier. The map-type can also be delete which has the same
3825 // spelling of the C++ delete keyword.
3826 Data.ExtraModifier = OMPC_MAP_unknown;
3827 Data.ExtraModifierLoc = Tok.getLocation();
3828
3829 // Check for presence of a colon in the map clause.
3830 TentativeParsingAction TPA(*this);
3831 bool ColonPresent = false;
3832 if (SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
3833 StopBeforeMatch)) {
3834 if (Tok.is(tok::colon))
3835 ColonPresent = true;
3836 }
3837 TPA.Revert();
3838 // Only parse map-type-modifier[s] and map-type if a colon is present in
3839 // the map clause.
3840 if (ColonPresent) {
3841 IsInvalidMapperModifier = parseMapTypeModifiers(Data);
3842 if (!IsInvalidMapperModifier)
3843 parseMapType(*this, Data);
3844 else
3845 SkipUntil(tok::colon, tok::annot_pragma_openmp_end, StopBeforeMatch);
3846 }
3847 if (Data.ExtraModifier == OMPC_MAP_unknown) {
3848 Data.ExtraModifier = OMPC_MAP_tofrom;
3849 Data.IsMapTypeImplicit = true;
3850 }
3851
3852 if (Tok.is(tok::colon))
3853 Data.ColonLoc = ConsumeToken();
3854 } else if (Kind == OMPC_to || Kind == OMPC_from) {
3855 while (Tok.is(tok::identifier)) {
3856 auto Modifier =
3857 static_cast<OpenMPMotionModifierKind>(getOpenMPSimpleClauseType(
3858 Kind, PP.getSpelling(Tok), getLangOpts().OpenMP));
3859 if (Modifier == OMPC_MOTION_MODIFIER_unknown)
3860 break;
3861 Data.MotionModifiers.push_back(Modifier);
3862 Data.MotionModifiersLoc.push_back(Tok.getLocation());
3863 ConsumeToken();
3864 if (Modifier == OMPC_MOTION_MODIFIER_mapper) {
3865 IsInvalidMapperModifier = parseMapperModifier(Data);
3866 if (IsInvalidMapperModifier)
3867 break;
3868 }
3869 // OpenMP < 5.1 doesn't permit a ',' or additional modifiers.
3870 if (getLangOpts().OpenMP < 51)
3871 break;
3872 // OpenMP 5.1 accepts an optional ',' even if the next character is ':'.
3873 // TODO: Is that intentional?
3874 if (Tok.is(tok::comma))
3875 ConsumeToken();
3876 }
3877 if (!Data.MotionModifiers.empty() && Tok.isNot(tok::colon)) {
3878 if (!IsInvalidMapperModifier) {
3879 if (getLangOpts().OpenMP < 51)
3880 Diag(Tok, diag::warn_pragma_expected_colon) << ")";
3881 else
3882 Diag(Tok, diag::warn_pragma_expected_colon) << "motion modifier";
3883 }
3884 SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
3885 StopBeforeMatch);
3886 }
3887 // OpenMP 5.1 permits a ':' even without a preceding modifier. TODO: Is
3888 // that intentional?
3889 if ((!Data.MotionModifiers.empty() || getLangOpts().OpenMP >= 51) &&
3890 Tok.is(tok::colon))
3891 Data.ColonLoc = ConsumeToken();
3892 } else if (Kind == OMPC_allocate ||
3893 (Kind == OMPC_affinity && Tok.is(tok::identifier) &&
3894 PP.getSpelling(Tok) == "iterator")) {
3895 // Handle optional allocator expression followed by colon delimiter.
3896 ColonProtectionRAIIObject ColonRAII(*this);
3897 TentativeParsingAction TPA(*this);
3898 // OpenMP 5.0, 2.10.1, task Construct.
3899 // where aff-modifier is one of the following:
3900 // iterator(iterators-definition)
3901 ExprResult Tail;
3902 if (Kind == OMPC_allocate) {
3903 Tail = ParseAssignmentExpression();
3904 } else {
3905 HasIterator = true;
3906 EnterScope(Scope::OpenMPDirectiveScope | Scope::DeclScope);
3907 Tail = ParseOpenMPIteratorsExpr();
3908 }
3909 Tail = Actions.CorrectDelayedTyposInExpr(Tail);
3910 Tail = Actions.ActOnFinishFullExpr(Tail.get(), T.getOpenLocation(),
3911 /*DiscardedValue=*/false);
3912 if (Tail.isUsable()) {
3913 if (Tok.is(tok::colon)) {
3914 Data.DepModOrTailExpr = Tail.get();
3915 Data.ColonLoc = ConsumeToken();
3916 TPA.Commit();
3917 } else {
3918 // Colon not found, parse only list of variables.
3919 TPA.Revert();
3920 }
3921 } else {
3922 // Parsing was unsuccessfull, revert and skip to the end of clause or
3923 // directive.
3924 TPA.Revert();
3925 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
3926 StopBeforeMatch);
3927 }
3928 }
3929
3930 bool IsComma =
3931 (Kind != OMPC_reduction && Kind != OMPC_task_reduction &&
3932 Kind != OMPC_in_reduction && Kind != OMPC_depend && Kind != OMPC_map) ||
3933 (Kind == OMPC_reduction && !InvalidReductionId) ||
3934 (Kind == OMPC_map && Data.ExtraModifier != OMPC_MAP_unknown) ||
3935 (Kind == OMPC_depend && Data.ExtraModifier != OMPC_DEPEND_unknown);
3936 const bool MayHaveTail = (Kind == OMPC_linear || Kind == OMPC_aligned);
3937 while (IsComma || (Tok.isNot(tok::r_paren) && Tok.isNot(tok::colon) &&
3938 Tok.isNot(tok::annot_pragma_openmp_end))) {
3939 ParseScope OMPListScope(this, Scope::OpenMPDirectiveScope);
3940 ColonProtectionRAIIObject ColonRAII(*this, MayHaveTail);
3941 // Parse variable
3942 ExprResult VarExpr =
3943 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression());
3944 if (VarExpr.isUsable()) {
3945 Vars.push_back(VarExpr.get());
3946 } else {
3947 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
3948 StopBeforeMatch);
3949 }
3950 // Skip ',' if any
3951 IsComma = Tok.is(tok::comma);
3952 if (IsComma)
3953 ConsumeToken();
3954 else if (Tok.isNot(tok::r_paren) &&
3955 Tok.isNot(tok::annot_pragma_openmp_end) &&
3956 (!MayHaveTail || Tok.isNot(tok::colon)))
3957 Diag(Tok, diag::err_omp_expected_punc)
3958 << ((Kind == OMPC_flush) ? getOpenMPDirectiveName(OMPD_flush)
3959 : getOpenMPClauseName(Kind))
3960 << (Kind == OMPC_flush);
3961 }
3962
3963 // Parse ')' for linear clause with modifier.
3964 if (NeedRParenForLinear)
3965 LinearT.consumeClose();
3966
3967 // Parse ':' linear-step (or ':' alignment).
3968 const bool MustHaveTail = MayHaveTail && Tok.is(tok::colon);
3969 if (MustHaveTail) {
3970 Data.ColonLoc = Tok.getLocation();
3971 SourceLocation ELoc = ConsumeToken();
3972 ExprResult Tail = ParseAssignmentExpression();
3973 Tail =
3974 Actions.ActOnFinishFullExpr(Tail.get(), ELoc, /*DiscardedValue*/ false);
3975 if (Tail.isUsable())
3976 Data.DepModOrTailExpr = Tail.get();
3977 else
3978 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
3979 StopBeforeMatch);
3980 }
3981
3982 // Parse ')'.
3983 Data.RLoc = Tok.getLocation();
3984 if (!T.consumeClose())
3985 Data.RLoc = T.getCloseLocation();
3986 // Exit from scope when the iterator is used in depend clause.
3987 if (HasIterator)
3988 ExitScope();
3989 return (Kind != OMPC_depend && Kind != OMPC_map && Vars.empty()) ||
3990 (MustHaveTail && !Data.DepModOrTailExpr) || InvalidReductionId ||
3991 IsInvalidMapperModifier;
3992}
3993
3994/// Parsing of OpenMP clause 'private', 'firstprivate', 'lastprivate',
3995/// 'shared', 'copyin', 'copyprivate', 'flush', 'reduction', 'task_reduction',
3996/// 'in_reduction', 'nontemporal', 'exclusive' or 'inclusive'.
3997///
3998/// private-clause:
3999/// 'private' '(' list ')'
4000/// firstprivate-clause:
4001/// 'firstprivate' '(' list ')'
4002/// lastprivate-clause:
4003/// 'lastprivate' '(' list ')'
4004/// shared-clause:
4005/// 'shared' '(' list ')'
4006/// linear-clause:
4007/// 'linear' '(' linear-list [ ':' linear-step ] ')'
4008/// aligned-clause:
4009/// 'aligned' '(' list [ ':' alignment ] ')'
4010/// reduction-clause:
4011/// 'reduction' '(' [ modifier ',' ] reduction-identifier ':' list ')'
4012/// task_reduction-clause:
4013/// 'task_reduction' '(' reduction-identifier ':' list ')'
4014/// in_reduction-clause:
4015/// 'in_reduction' '(' reduction-identifier ':' list ')'
4016/// copyprivate-clause:
4017/// 'copyprivate' '(' list ')'
4018/// flush-clause:
4019/// 'flush' '(' list ')'
4020/// depend-clause:
4021/// 'depend' '(' in | out | inout : list | source ')'
4022/// map-clause:
4023/// 'map' '(' [ [ always [,] ] [ close [,] ]
4024/// [ mapper '(' mapper-identifier ')' [,] ]
4025/// to | from | tofrom | alloc | release | delete ':' ] list ')';
4026/// to-clause:
4027/// 'to' '(' [ mapper '(' mapper-identifier ')' ':' ] list ')'
4028/// from-clause:
4029/// 'from' '(' [ mapper '(' mapper-identifier ')' ':' ] list ')'
4030/// use_device_ptr-clause:
4031/// 'use_device_ptr' '(' list ')'
4032/// use_device_addr-clause:
4033/// 'use_device_addr' '(' list ')'
4034/// is_device_ptr-clause:
4035/// 'is_device_ptr' '(' list ')'
4036/// allocate-clause:
4037/// 'allocate' '(' [ allocator ':' ] list ')'
4038/// nontemporal-clause:
4039/// 'nontemporal' '(' list ')'
4040/// inclusive-clause:
4041/// 'inclusive' '(' list ')'
4042/// exclusive-clause:
4043/// 'exclusive' '(' list ')'
4044///
4045/// For 'linear' clause linear-list may have the following forms:
4046/// list
4047/// modifier(list)
4048/// where modifier is 'val' (C) or 'ref', 'val' or 'uval'(C++).
4049OMPClause *Parser::ParseOpenMPVarListClause(OpenMPDirectiveKind DKind,
4050 OpenMPClauseKind Kind,
4051 bool ParseOnly) {
4052 SourceLocation Loc = Tok.getLocation();
4053 SourceLocation LOpen = ConsumeToken();
4054 SmallVector<Expr *, 4> Vars;
4055 OpenMPVarListDataTy Data;
4056
4057 if (ParseOpenMPVarList(DKind, Kind, Vars, Data))
4058 return nullptr;
4059
4060 if (ParseOnly)
4061 return nullptr;
4062 OMPVarListLocTy Locs(Loc, LOpen, Data.RLoc);
4063 return Actions.ActOnOpenMPVarListClause(
4064 Kind, Vars, Data.DepModOrTailExpr, Locs, Data.ColonLoc,
4065 Data.ReductionOrMapperIdScopeSpec, Data.ReductionOrMapperId,
4066 Data.ExtraModifier, Data.MapTypeModifiers, Data.MapTypeModifiersLoc,
4067 Data.IsMapTypeImplicit, Data.ExtraModifierLoc, Data.MotionModifiers,
4068 Data.MotionModifiersLoc);
4069}