2023-11-17 06:29:02 -08:00
|
|
|
//===--- ParseOpenACC.cpp - OpenACC-specific parsing support --------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the parsing logic for OpenACC language features.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2023-11-17 10:47:42 -08:00
|
|
|
#include "clang/Basic/OpenACCKinds.h"
|
2023-11-17 06:29:02 -08:00
|
|
|
#include "clang/Parse/ParseDiagnostic.h"
|
|
|
|
#include "clang/Parse/Parser.h"
|
2023-11-17 10:47:42 -08:00
|
|
|
#include "clang/Parse/RAIIObjectsForParser.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2023-11-17 06:29:02 -08:00
|
|
|
|
|
|
|
using namespace clang;
|
2023-11-17 10:47:42 -08:00
|
|
|
using namespace llvm;
|
2023-11-17 06:29:02 -08:00
|
|
|
|
2023-11-17 10:47:42 -08:00
|
|
|
namespace {
|
2023-11-21 07:46:12 -08:00
|
|
|
// An enum that contains the extended 'partial' parsed variants. This type
|
|
|
|
// should never escape the initial parse functionality, but is useful for
|
|
|
|
// simplifying the implementation.
|
|
|
|
enum class OpenACCDirectiveKindEx {
|
|
|
|
Invalid = static_cast<int>(OpenACCDirectiveKind::Invalid),
|
|
|
|
// 'enter data' and 'exit data'
|
|
|
|
Enter,
|
|
|
|
Exit,
|
|
|
|
};
|
2023-11-17 10:47:42 -08:00
|
|
|
|
2023-11-21 07:46:12 -08:00
|
|
|
// Translate single-token string representations to the OpenACC Directive Kind.
|
|
|
|
// This doesn't completely comprehend 'Compound Constructs' (as it just
|
|
|
|
// identifies the first token), and doesn't fully handle 'enter data', 'exit
|
|
|
|
// data', nor any of the 'atomic' variants, just the first token of each. So
|
|
|
|
// this should only be used by `ParseOpenACCDirectiveKind`.
|
2023-12-05 12:41:57 -08:00
|
|
|
OpenACCDirectiveKindEx getOpenACCDirectiveKind(Token Tok) {
|
|
|
|
if (!Tok.is(tok::identifier))
|
|
|
|
return OpenACCDirectiveKindEx::Invalid;
|
2023-11-21 07:46:12 -08:00
|
|
|
OpenACCDirectiveKind DirKind =
|
2023-12-05 12:41:57 -08:00
|
|
|
llvm::StringSwitch<OpenACCDirectiveKind>(
|
|
|
|
Tok.getIdentifierInfo()->getName())
|
2023-11-21 07:46:12 -08:00
|
|
|
.Case("parallel", OpenACCDirectiveKind::Parallel)
|
|
|
|
.Case("serial", OpenACCDirectiveKind::Serial)
|
|
|
|
.Case("kernels", OpenACCDirectiveKind::Kernels)
|
|
|
|
.Case("data", OpenACCDirectiveKind::Data)
|
|
|
|
.Case("host_data", OpenACCDirectiveKind::HostData)
|
|
|
|
.Case("loop", OpenACCDirectiveKind::Loop)
|
2023-12-06 06:32:45 -08:00
|
|
|
.Case("cache", OpenACCDirectiveKind::Cache)
|
2023-11-21 11:08:48 -08:00
|
|
|
.Case("atomic", OpenACCDirectiveKind::Atomic)
|
2023-11-27 06:49:29 -08:00
|
|
|
.Case("routine", OpenACCDirectiveKind::Routine)
|
2023-11-21 07:46:12 -08:00
|
|
|
.Case("declare", OpenACCDirectiveKind::Declare)
|
|
|
|
.Case("init", OpenACCDirectiveKind::Init)
|
|
|
|
.Case("shutdown", OpenACCDirectiveKind::Shutdown)
|
|
|
|
.Case("set", OpenACCDirectiveKind::Shutdown)
|
|
|
|
.Case("update", OpenACCDirectiveKind::Update)
|
2023-12-07 17:29:18 -08:00
|
|
|
.Case("wait", OpenACCDirectiveKind::Wait)
|
2023-11-21 07:46:12 -08:00
|
|
|
.Default(OpenACCDirectiveKind::Invalid);
|
|
|
|
|
|
|
|
if (DirKind != OpenACCDirectiveKind::Invalid)
|
|
|
|
return static_cast<OpenACCDirectiveKindEx>(DirKind);
|
|
|
|
|
2023-12-05 12:41:57 -08:00
|
|
|
return llvm::StringSwitch<OpenACCDirectiveKindEx>(
|
|
|
|
Tok.getIdentifierInfo()->getName())
|
2023-11-21 07:46:12 -08:00
|
|
|
.Case("enter", OpenACCDirectiveKindEx::Enter)
|
|
|
|
.Case("exit", OpenACCDirectiveKindEx::Exit)
|
|
|
|
.Default(OpenACCDirectiveKindEx::Invalid);
|
2023-11-17 10:47:42 -08:00
|
|
|
}
|
|
|
|
|
2023-12-18 18:53:37 -08:00
|
|
|
// Translate single-token string representations to the OpenCC Clause Kind.
|
|
|
|
OpenACCClauseKind getOpenACCClauseKind(Token Tok) {
|
|
|
|
// auto is a keyword in some language modes, so make sure we parse it
|
|
|
|
// correctly.
|
|
|
|
if (Tok.is(tok::kw_auto))
|
|
|
|
return OpenACCClauseKind::Auto;
|
|
|
|
|
2024-01-05 09:43:39 -08:00
|
|
|
// default is a keyword, so make sure we parse it correctly.
|
|
|
|
if (Tok.is(tok::kw_default))
|
|
|
|
return OpenACCClauseKind::Default;
|
|
|
|
|
2024-01-08 07:12:27 -08:00
|
|
|
// if is also a keyword, make sure we parse it correctly.
|
|
|
|
if (Tok.is(tok::kw_if))
|
|
|
|
return OpenACCClauseKind::If;
|
|
|
|
|
2023-12-18 18:53:37 -08:00
|
|
|
if (!Tok.is(tok::identifier))
|
|
|
|
return OpenACCClauseKind::Invalid;
|
|
|
|
|
|
|
|
return llvm::StringSwitch<OpenACCClauseKind>(
|
|
|
|
Tok.getIdentifierInfo()->getName())
|
2024-01-12 13:55:07 -08:00
|
|
|
.Case("attach", OpenACCClauseKind::Attach)
|
2023-12-18 18:53:37 -08:00
|
|
|
.Case("auto", OpenACCClauseKind::Auto)
|
2024-01-12 13:54:02 -08:00
|
|
|
.Case("create", OpenACCClauseKind::Create)
|
2024-01-09 07:32:05 -08:00
|
|
|
.Case("copy", OpenACCClauseKind::Copy)
|
2024-01-12 13:54:02 -08:00
|
|
|
.Case("copyin", OpenACCClauseKind::CopyIn)
|
2024-01-12 13:35:41 -08:00
|
|
|
.Case("copyout", OpenACCClauseKind::CopyOut)
|
2024-01-05 09:43:39 -08:00
|
|
|
.Case("default", OpenACCClauseKind::Default)
|
2024-01-11 13:08:40 -08:00
|
|
|
.Case("delete", OpenACCClauseKind::Delete)
|
|
|
|
.Case("detach", OpenACCClauseKind::Detach)
|
|
|
|
.Case("device", OpenACCClauseKind::Device)
|
|
|
|
.Case("device_resident", OpenACCClauseKind::DeviceResident)
|
|
|
|
.Case("deviceptr", OpenACCClauseKind::DevicePtr)
|
2023-12-18 18:53:37 -08:00
|
|
|
.Case("finalize", OpenACCClauseKind::Finalize)
|
2024-01-11 13:08:40 -08:00
|
|
|
.Case("firstprivate", OpenACCClauseKind::FirstPrivate)
|
|
|
|
.Case("host", OpenACCClauseKind::Host)
|
2024-01-08 07:12:27 -08:00
|
|
|
.Case("if", OpenACCClauseKind::If)
|
2023-12-18 18:53:37 -08:00
|
|
|
.Case("if_present", OpenACCClauseKind::IfPresent)
|
|
|
|
.Case("independent", OpenACCClauseKind::Independent)
|
2024-01-11 13:08:40 -08:00
|
|
|
.Case("link", OpenACCClauseKind::Link)
|
|
|
|
.Case("no_create", OpenACCClauseKind::NoCreate)
|
2023-12-18 18:53:37 -08:00
|
|
|
.Case("nohost", OpenACCClauseKind::NoHost)
|
2024-01-11 13:08:40 -08:00
|
|
|
.Case("present", OpenACCClauseKind::Present)
|
|
|
|
.Case("private", OpenACCClauseKind::Private)
|
2024-01-16 11:24:56 -08:00
|
|
|
.Case("reduction", OpenACCClauseKind::Reduction)
|
2024-01-08 10:38:10 -08:00
|
|
|
.Case("self", OpenACCClauseKind::Self)
|
2023-12-18 18:53:37 -08:00
|
|
|
.Case("seq", OpenACCClauseKind::Seq)
|
2024-01-11 09:32:58 -08:00
|
|
|
.Case("use_device", OpenACCClauseKind::UseDevice)
|
2023-12-18 18:53:37 -08:00
|
|
|
.Case("vector", OpenACCClauseKind::Vector)
|
|
|
|
.Case("worker", OpenACCClauseKind::Worker)
|
|
|
|
.Default(OpenACCClauseKind::Invalid);
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:08:48 -08:00
|
|
|
// Since 'atomic' is effectively a compound directive, this will decode the
|
|
|
|
// second part of the directive.
|
2023-12-05 12:41:57 -08:00
|
|
|
OpenACCAtomicKind getOpenACCAtomicKind(Token Tok) {
|
|
|
|
if (!Tok.is(tok::identifier))
|
|
|
|
return OpenACCAtomicKind::Invalid;
|
|
|
|
return llvm::StringSwitch<OpenACCAtomicKind>(
|
|
|
|
Tok.getIdentifierInfo()->getName())
|
2023-11-21 11:08:48 -08:00
|
|
|
.Case("read", OpenACCAtomicKind::Read)
|
|
|
|
.Case("write", OpenACCAtomicKind::Write)
|
|
|
|
.Case("update", OpenACCAtomicKind::Update)
|
|
|
|
.Case("capture", OpenACCAtomicKind::Capture)
|
|
|
|
.Default(OpenACCAtomicKind::Invalid);
|
|
|
|
}
|
|
|
|
|
2024-01-05 09:43:39 -08:00
|
|
|
OpenACCDefaultClauseKind getOpenACCDefaultClauseKind(Token Tok) {
|
|
|
|
if (!Tok.is(tok::identifier))
|
|
|
|
return OpenACCDefaultClauseKind::Invalid;
|
|
|
|
|
|
|
|
return llvm::StringSwitch<OpenACCDefaultClauseKind>(
|
|
|
|
Tok.getIdentifierInfo()->getName())
|
|
|
|
.Case("none", OpenACCDefaultClauseKind::None)
|
|
|
|
.Case("present", OpenACCDefaultClauseKind::Present)
|
|
|
|
.Default(OpenACCDefaultClauseKind::Invalid);
|
|
|
|
}
|
|
|
|
|
2023-12-07 17:29:18 -08:00
|
|
|
enum class OpenACCSpecialTokenKind {
|
2023-12-08 06:06:28 -08:00
|
|
|
ReadOnly,
|
2023-12-07 17:29:18 -08:00
|
|
|
DevNum,
|
|
|
|
Queues,
|
2024-01-12 13:35:41 -08:00
|
|
|
Zero,
|
2023-12-07 17:29:18 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
bool isOpenACCSpecialToken(OpenACCSpecialTokenKind Kind, Token Tok) {
|
|
|
|
if (!Tok.is(tok::identifier))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (Kind) {
|
2023-12-08 06:06:28 -08:00
|
|
|
case OpenACCSpecialTokenKind::ReadOnly:
|
|
|
|
return Tok.getIdentifierInfo()->isStr("readonly");
|
2023-12-07 17:29:18 -08:00
|
|
|
case OpenACCSpecialTokenKind::DevNum:
|
|
|
|
return Tok.getIdentifierInfo()->isStr("devnum");
|
|
|
|
case OpenACCSpecialTokenKind::Queues:
|
|
|
|
return Tok.getIdentifierInfo()->isStr("queues");
|
2024-01-12 13:35:41 -08:00
|
|
|
case OpenACCSpecialTokenKind::Zero:
|
|
|
|
return Tok.getIdentifierInfo()->isStr("zero");
|
2023-12-07 17:29:18 -08:00
|
|
|
}
|
|
|
|
llvm_unreachable("Unknown 'Kind' Passed");
|
|
|
|
}
|
|
|
|
|
2024-01-16 06:32:10 -08:00
|
|
|
/// Used for cases where we have a token we want to check against an
|
|
|
|
/// 'identifier-like' token, but don't want to give awkward error messages in
|
|
|
|
/// cases where it is accidentially a keyword.
|
|
|
|
bool isTokenIdentifierOrKeyword(Parser &P, Token Tok) {
|
|
|
|
if (Tok.is(tok::identifier))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!Tok.isAnnotation() && Tok.getIdentifierInfo() &&
|
|
|
|
Tok.getIdentifierInfo()->isKeyword(P.getLangOpts()))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parses and consumes an identifer followed immediately by a single colon, and
|
|
|
|
/// diagnoses if it is not the 'special token' kind that we require. Used when
|
|
|
|
/// the tag is the only valid value.
|
|
|
|
/// Return 'true' if the special token was matched, false if no special token,
|
|
|
|
/// or an invalid special token was found.
|
|
|
|
template <typename DirOrClauseTy>
|
2024-01-12 10:54:12 -08:00
|
|
|
bool tryParseAndConsumeSpecialTokenKind(Parser &P, OpenACCSpecialTokenKind Kind,
|
2024-01-16 06:32:10 -08:00
|
|
|
DirOrClauseTy DirOrClause) {
|
|
|
|
Token IdentTok = P.getCurToken();
|
|
|
|
// If this is an identifier-like thing followed by ':', it is one of the
|
|
|
|
// OpenACC 'special' name tags, so consume it.
|
|
|
|
if (isTokenIdentifierOrKeyword(P, IdentTok) && P.NextToken().is(tok::colon)) {
|
|
|
|
P.ConsumeToken();
|
|
|
|
P.ConsumeToken();
|
|
|
|
|
|
|
|
if (!isOpenACCSpecialToken(Kind, IdentTok)) {
|
|
|
|
P.Diag(IdentTok, diag::err_acc_invalid_tag_kind)
|
|
|
|
<< IdentTok.getIdentifierInfo() << DirOrClause
|
|
|
|
<< std::is_same_v<DirOrClauseTy, OpenACCClauseKind>;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-12-05 12:41:57 -08:00
|
|
|
bool isOpenACCDirectiveKind(OpenACCDirectiveKind Kind, Token Tok) {
|
|
|
|
if (!Tok.is(tok::identifier))
|
|
|
|
return false;
|
|
|
|
|
2023-11-20 11:46:07 -08:00
|
|
|
switch (Kind) {
|
|
|
|
case OpenACCDirectiveKind::Parallel:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("parallel");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Serial:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("serial");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Kernels:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("kernels");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Data:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("data");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::HostData:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("host_data");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Loop:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("loop");
|
2023-12-06 06:32:45 -08:00
|
|
|
case OpenACCDirectiveKind::Cache:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("cache");
|
2023-11-20 11:46:07 -08:00
|
|
|
|
|
|
|
case OpenACCDirectiveKind::ParallelLoop:
|
|
|
|
case OpenACCDirectiveKind::SerialLoop:
|
|
|
|
case OpenACCDirectiveKind::KernelsLoop:
|
2023-11-21 07:46:12 -08:00
|
|
|
case OpenACCDirectiveKind::EnterData:
|
|
|
|
case OpenACCDirectiveKind::ExitData:
|
2023-11-20 11:46:07 -08:00
|
|
|
return false;
|
|
|
|
|
2023-11-21 11:08:48 -08:00
|
|
|
case OpenACCDirectiveKind::Atomic:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("atomic");
|
2023-11-27 06:49:29 -08:00
|
|
|
case OpenACCDirectiveKind::Routine:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("routine");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Declare:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("declare");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Init:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("init");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Shutdown:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("shutdown");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Set:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("set");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Update:
|
2023-12-05 12:41:57 -08:00
|
|
|
return Tok.getIdentifierInfo()->isStr("update");
|
2023-12-07 17:29:18 -08:00
|
|
|
case OpenACCDirectiveKind::Wait:
|
|
|
|
return Tok.getIdentifierInfo()->isStr("wait");
|
2023-11-20 11:46:07 -08:00
|
|
|
case OpenACCDirectiveKind::Invalid:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
llvm_unreachable("Unknown 'Kind' Passed");
|
|
|
|
}
|
|
|
|
|
2024-01-16 11:24:56 -08:00
|
|
|
OpenACCReductionOperator ParseReductionOperator(Parser &P) {
|
|
|
|
// If there is no colon, treat as if the reduction operator was missing, else
|
|
|
|
// we probably will not recover from it in the case where an expression starts
|
|
|
|
// with one of the operator tokens.
|
|
|
|
if (P.NextToken().isNot(tok::colon)) {
|
|
|
|
P.Diag(P.getCurToken(), diag::err_acc_expected_reduction_operator);
|
|
|
|
return OpenACCReductionOperator::Invalid;
|
|
|
|
}
|
|
|
|
Token ReductionKindTok = P.getCurToken();
|
|
|
|
// Consume both the kind and the colon.
|
|
|
|
P.ConsumeToken();
|
|
|
|
P.ConsumeToken();
|
|
|
|
|
|
|
|
switch (ReductionKindTok.getKind()) {
|
|
|
|
case tok::plus:
|
|
|
|
return OpenACCReductionOperator::Addition;
|
|
|
|
case tok::star:
|
|
|
|
return OpenACCReductionOperator::Multiplication;
|
|
|
|
case tok::amp:
|
|
|
|
return OpenACCReductionOperator::BitwiseAnd;
|
|
|
|
case tok::pipe:
|
|
|
|
return OpenACCReductionOperator::BitwiseOr;
|
|
|
|
case tok::caret:
|
|
|
|
return OpenACCReductionOperator::BitwiseXOr;
|
|
|
|
case tok::ampamp:
|
|
|
|
return OpenACCReductionOperator::And;
|
|
|
|
case tok::pipepipe:
|
|
|
|
return OpenACCReductionOperator::Or;
|
|
|
|
case tok::identifier:
|
|
|
|
if (ReductionKindTok.getIdentifierInfo()->isStr("max"))
|
|
|
|
return OpenACCReductionOperator::Max;
|
|
|
|
if (ReductionKindTok.getIdentifierInfo()->isStr("min"))
|
|
|
|
return OpenACCReductionOperator::Min;
|
|
|
|
LLVM_FALLTHROUGH;
|
|
|
|
default:
|
|
|
|
P.Diag(ReductionKindTok, diag::err_acc_invalid_reduction_operator);
|
|
|
|
return OpenACCReductionOperator::Invalid;
|
|
|
|
}
|
|
|
|
llvm_unreachable("Reduction op token kind not caught by 'default'?");
|
|
|
|
}
|
|
|
|
|
2024-01-05 09:43:39 -08:00
|
|
|
/// Used for cases where we expect an identifier-like token, but don't want to
|
|
|
|
/// give awkward error messages in cases where it is accidentially a keyword.
|
|
|
|
bool expectIdentifierOrKeyword(Parser &P) {
|
|
|
|
Token Tok = P.getCurToken();
|
|
|
|
|
2024-01-16 06:32:10 -08:00
|
|
|
if (isTokenIdentifierOrKeyword(P, Tok))
|
2024-01-05 09:43:39 -08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
P.Diag(P.getCurToken(), diag::err_expected) << tok::identifier;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-11-21 07:46:12 -08:00
|
|
|
OpenACCDirectiveKind
|
|
|
|
ParseOpenACCEnterExitDataDirective(Parser &P, Token FirstTok,
|
|
|
|
OpenACCDirectiveKindEx ExtDirKind) {
|
|
|
|
Token SecondTok = P.getCurToken();
|
|
|
|
|
|
|
|
if (SecondTok.isAnnotation()) {
|
2023-12-05 12:41:57 -08:00
|
|
|
P.Diag(FirstTok, diag::err_acc_invalid_directive)
|
|
|
|
<< 0 << FirstTok.getIdentifierInfo();
|
2023-11-21 07:46:12 -08:00
|
|
|
return OpenACCDirectiveKind::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-12-18 18:53:37 -08:00
|
|
|
// Consume the second name anyway, this way we can continue on without making
|
|
|
|
// this oddly look like a clause.
|
|
|
|
P.ConsumeAnyToken();
|
|
|
|
|
2023-12-05 12:41:57 -08:00
|
|
|
if (!isOpenACCDirectiveKind(OpenACCDirectiveKind::Data, SecondTok)) {
|
|
|
|
if (!SecondTok.is(tok::identifier))
|
|
|
|
P.Diag(SecondTok, diag::err_expected) << tok::identifier;
|
|
|
|
else
|
|
|
|
P.Diag(FirstTok, diag::err_acc_invalid_directive)
|
|
|
|
<< 1 << FirstTok.getIdentifierInfo()->getName()
|
|
|
|
<< SecondTok.getIdentifierInfo()->getName();
|
2023-11-21 07:46:12 -08:00
|
|
|
return OpenACCDirectiveKind::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ExtDirKind == OpenACCDirectiveKindEx::Enter
|
|
|
|
? OpenACCDirectiveKind::EnterData
|
|
|
|
: OpenACCDirectiveKind::ExitData;
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:08:48 -08:00
|
|
|
OpenACCAtomicKind ParseOpenACCAtomicKind(Parser &P) {
|
|
|
|
Token AtomicClauseToken = P.getCurToken();
|
|
|
|
|
|
|
|
// #pragma acc atomic is equivilent to update:
|
|
|
|
if (AtomicClauseToken.isAnnotation())
|
|
|
|
return OpenACCAtomicKind::Update;
|
|
|
|
|
2023-12-05 12:41:57 -08:00
|
|
|
OpenACCAtomicKind AtomicKind = getOpenACCAtomicKind(AtomicClauseToken);
|
2023-11-21 11:08:48 -08:00
|
|
|
|
|
|
|
// If we don't know what this is, treat it as 'nothing', and treat the rest of
|
|
|
|
// this as a clause list, which, despite being invalid, is likely what the
|
|
|
|
// user was trying to do.
|
|
|
|
if (AtomicKind == OpenACCAtomicKind::Invalid)
|
|
|
|
return OpenACCAtomicKind::Update;
|
|
|
|
|
|
|
|
P.ConsumeToken();
|
|
|
|
return AtomicKind;
|
|
|
|
}
|
|
|
|
|
2023-11-17 10:47:42 -08:00
|
|
|
// Parse and consume the tokens for OpenACC Directive/Construct kinds.
|
|
|
|
OpenACCDirectiveKind ParseOpenACCDirectiveKind(Parser &P) {
|
|
|
|
Token FirstTok = P.getCurToken();
|
2023-11-17 13:47:36 -08:00
|
|
|
|
|
|
|
// Just #pragma acc can get us immediately to the end, make sure we don't
|
|
|
|
// introspect on the spelling before then.
|
2023-12-08 09:32:01 -08:00
|
|
|
if (FirstTok.isNot(tok::identifier)) {
|
2023-11-17 13:47:36 -08:00
|
|
|
P.Diag(FirstTok, diag::err_acc_missing_directive);
|
2023-12-18 18:53:37 -08:00
|
|
|
|
|
|
|
if (P.getCurToken().isNot(tok::annot_pragma_openacc_end))
|
|
|
|
P.ConsumeAnyToken();
|
|
|
|
|
2023-11-17 13:47:36 -08:00
|
|
|
return OpenACCDirectiveKind::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-11-17 10:47:42 -08:00
|
|
|
P.ConsumeToken();
|
|
|
|
|
2023-12-05 12:41:57 -08:00
|
|
|
OpenACCDirectiveKindEx ExDirKind = getOpenACCDirectiveKind(FirstTok);
|
2023-11-21 07:46:12 -08:00
|
|
|
|
|
|
|
// OpenACCDirectiveKindEx is meant to be an extended list
|
|
|
|
// over OpenACCDirectiveKind, so any value below Invalid is one of the
|
|
|
|
// OpenACCDirectiveKind values. This switch takes care of all of the extra
|
|
|
|
// parsing required for the Extended values. At the end of this block,
|
|
|
|
// ExDirKind can be assumed to be a valid OpenACCDirectiveKind, so we can
|
|
|
|
// immediately cast it and use it as that.
|
|
|
|
if (ExDirKind >= OpenACCDirectiveKindEx::Invalid) {
|
|
|
|
switch (ExDirKind) {
|
2023-12-05 12:41:57 -08:00
|
|
|
case OpenACCDirectiveKindEx::Invalid: {
|
2023-12-08 09:32:01 -08:00
|
|
|
P.Diag(FirstTok, diag::err_acc_invalid_directive)
|
|
|
|
<< 0 << FirstTok.getIdentifierInfo();
|
2023-11-21 07:46:12 -08:00
|
|
|
return OpenACCDirectiveKind::Invalid;
|
2023-12-05 12:41:57 -08:00
|
|
|
}
|
2023-11-21 07:46:12 -08:00
|
|
|
case OpenACCDirectiveKindEx::Enter:
|
|
|
|
case OpenACCDirectiveKindEx::Exit:
|
2023-12-05 12:41:57 -08:00
|
|
|
return ParseOpenACCEnterExitDataDirective(P, FirstTok, ExDirKind);
|
2023-11-21 07:46:12 -08:00
|
|
|
}
|
|
|
|
}
|
2023-11-17 10:47:42 -08:00
|
|
|
|
2023-11-21 07:46:12 -08:00
|
|
|
OpenACCDirectiveKind DirKind = static_cast<OpenACCDirectiveKind>(ExDirKind);
|
2023-11-17 10:47:42 -08:00
|
|
|
|
2023-11-20 11:46:07 -08:00
|
|
|
// Combined Constructs allows parallel loop, serial loop, or kernels loop. Any
|
|
|
|
// other attempt at a combined construct will be diagnosed as an invalid
|
|
|
|
// clause.
|
|
|
|
Token SecondTok = P.getCurToken();
|
|
|
|
if (!SecondTok.isAnnotation() &&
|
2023-12-05 12:41:57 -08:00
|
|
|
isOpenACCDirectiveKind(OpenACCDirectiveKind::Loop, SecondTok)) {
|
2023-11-20 11:46:07 -08:00
|
|
|
switch (DirKind) {
|
|
|
|
default:
|
|
|
|
// Nothing to do except in the below cases, as they should be diagnosed as
|
|
|
|
// a clause.
|
|
|
|
break;
|
|
|
|
case OpenACCDirectiveKind::Parallel:
|
|
|
|
P.ConsumeToken();
|
|
|
|
return OpenACCDirectiveKind::ParallelLoop;
|
|
|
|
case OpenACCDirectiveKind::Serial:
|
|
|
|
P.ConsumeToken();
|
|
|
|
return OpenACCDirectiveKind::SerialLoop;
|
|
|
|
case OpenACCDirectiveKind::Kernels:
|
|
|
|
P.ConsumeToken();
|
|
|
|
return OpenACCDirectiveKind::KernelsLoop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-17 10:47:42 -08:00
|
|
|
return DirKind;
|
|
|
|
}
|
|
|
|
|
2024-01-11 13:08:40 -08:00
|
|
|
enum ClauseParensKind {
|
|
|
|
None,
|
|
|
|
Optional,
|
|
|
|
Required
|
|
|
|
};
|
|
|
|
|
2024-01-16 09:14:48 -08:00
|
|
|
ClauseParensKind getClauseParensKind(OpenACCDirectiveKind DirKind,
|
|
|
|
OpenACCClauseKind Kind) {
|
2024-01-11 13:08:40 -08:00
|
|
|
switch (Kind) {
|
|
|
|
case OpenACCClauseKind::Self:
|
2024-01-16 09:14:48 -08:00
|
|
|
return DirKind == OpenACCDirectiveKind::Update ? ClauseParensKind::Required
|
|
|
|
: ClauseParensKind::Optional;
|
2024-01-11 13:08:40 -08:00
|
|
|
|
|
|
|
case OpenACCClauseKind::Default:
|
|
|
|
case OpenACCClauseKind::If:
|
2024-01-12 13:54:02 -08:00
|
|
|
case OpenACCClauseKind::Create:
|
2024-01-11 13:08:40 -08:00
|
|
|
case OpenACCClauseKind::Copy:
|
2024-01-12 13:54:02 -08:00
|
|
|
case OpenACCClauseKind::CopyIn:
|
2024-01-12 13:35:41 -08:00
|
|
|
case OpenACCClauseKind::CopyOut:
|
2024-01-11 13:08:40 -08:00
|
|
|
case OpenACCClauseKind::UseDevice:
|
|
|
|
case OpenACCClauseKind::NoCreate:
|
|
|
|
case OpenACCClauseKind::Present:
|
|
|
|
case OpenACCClauseKind::DevicePtr:
|
|
|
|
case OpenACCClauseKind::Attach:
|
|
|
|
case OpenACCClauseKind::Detach:
|
|
|
|
case OpenACCClauseKind::Private:
|
|
|
|
case OpenACCClauseKind::FirstPrivate:
|
|
|
|
case OpenACCClauseKind::Delete:
|
|
|
|
case OpenACCClauseKind::DeviceResident:
|
|
|
|
case OpenACCClauseKind::Device:
|
|
|
|
case OpenACCClauseKind::Link:
|
|
|
|
case OpenACCClauseKind::Host:
|
2024-01-16 11:24:56 -08:00
|
|
|
case OpenACCClauseKind::Reduction:
|
2024-01-11 13:08:40 -08:00
|
|
|
return ClauseParensKind::Required;
|
|
|
|
|
|
|
|
case OpenACCClauseKind::Auto:
|
|
|
|
case OpenACCClauseKind::Finalize:
|
|
|
|
case OpenACCClauseKind::IfPresent:
|
|
|
|
case OpenACCClauseKind::Independent:
|
|
|
|
case OpenACCClauseKind::Invalid:
|
|
|
|
case OpenACCClauseKind::NoHost:
|
|
|
|
case OpenACCClauseKind::Seq:
|
|
|
|
case OpenACCClauseKind::Worker:
|
|
|
|
case OpenACCClauseKind::Vector:
|
|
|
|
return ClauseParensKind::None;
|
|
|
|
}
|
|
|
|
llvm_unreachable("Unhandled clause kind");
|
|
|
|
}
|
|
|
|
|
2024-01-16 09:14:48 -08:00
|
|
|
bool ClauseHasOptionalParens(OpenACCDirectiveKind DirKind,
|
|
|
|
OpenACCClauseKind Kind) {
|
|
|
|
return getClauseParensKind(DirKind, Kind) == ClauseParensKind::Optional;
|
2024-01-08 10:38:10 -08:00
|
|
|
}
|
|
|
|
|
2024-01-16 09:14:48 -08:00
|
|
|
bool ClauseHasRequiredParens(OpenACCDirectiveKind DirKind,
|
|
|
|
OpenACCClauseKind Kind) {
|
|
|
|
return getClauseParensKind(DirKind, Kind) == ClauseParensKind::Required;
|
2024-01-05 09:43:39 -08:00
|
|
|
}
|
|
|
|
|
2024-01-08 10:38:10 -08:00
|
|
|
ExprResult ParseOpenACCConditionalExpr(Parser &P) {
|
|
|
|
// FIXME: It isn't clear if the spec saying 'condition' means the same as
|
|
|
|
// it does in an if/while/etc (See ParseCXXCondition), however as it was
|
|
|
|
// written with Fortran/C in mind, we're going to assume it just means an
|
|
|
|
// 'expression evaluating to boolean'.
|
|
|
|
return P.getActions().CorrectDelayedTyposInExpr(P.ParseExpression());
|
|
|
|
}
|
|
|
|
|
2024-01-09 07:32:05 -08:00
|
|
|
// Skip until we see the end of pragma token, but don't consume it. This is us
|
|
|
|
// just giving up on the rest of the pragma so we can continue executing. We
|
|
|
|
// have to do this because 'SkipUntil' considers paren balancing, which isn't
|
|
|
|
// what we want.
|
|
|
|
void SkipUntilEndOfDirective(Parser &P) {
|
|
|
|
while (P.getCurToken().isNot(tok::annot_pragma_openacc_end))
|
|
|
|
P.ConsumeAnyToken();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// OpenACC 3.3, section 1.7:
|
|
|
|
// To simplify the specification and convey appropriate constraint information,
|
|
|
|
// a pqr-list is a comma-separated list of pdr items. The one exception is a
|
|
|
|
// clause-list, which is a list of one or more clauses optionally separated by
|
|
|
|
// commas.
|
2024-01-16 09:14:48 -08:00
|
|
|
void Parser::ParseOpenACCClauseList(OpenACCDirectiveKind DirKind) {
|
2024-01-09 07:32:05 -08:00
|
|
|
bool FirstClause = true;
|
|
|
|
while (getCurToken().isNot(tok::annot_pragma_openacc_end)) {
|
|
|
|
// Comma is optional in a clause-list.
|
|
|
|
if (!FirstClause && getCurToken().is(tok::comma))
|
|
|
|
ConsumeToken();
|
|
|
|
FirstClause = false;
|
|
|
|
|
|
|
|
// Recovering from a bad clause is really difficult, so we just give up on
|
|
|
|
// error.
|
2024-01-16 09:14:48 -08:00
|
|
|
if (ParseOpenACCClause(DirKind)) {
|
2024-01-09 07:32:05 -08:00
|
|
|
SkipUntilEndOfDirective(*this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Parser::ParseOpenACCClauseVarList(OpenACCClauseKind Kind) {
|
|
|
|
// FIXME: Future clauses will require 'special word' parsing, check for one,
|
|
|
|
// then parse it based on whether it is a clause that requires a 'special
|
|
|
|
// word'.
|
|
|
|
(void)Kind;
|
|
|
|
|
|
|
|
// If the var parsing fails, skip until the end of the directive as this is
|
|
|
|
// an expression and gets messy if we try to continue otherwise.
|
|
|
|
if (ParseOpenACCVar())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
while (!getCurToken().isOneOf(tok::r_paren, tok::annot_pragma_openacc_end)) {
|
|
|
|
ExpectAndConsume(tok::comma);
|
|
|
|
|
|
|
|
// If the var parsing fails, skip until the end of the directive as this is
|
|
|
|
// an expression and gets messy if we try to continue otherwise.
|
|
|
|
if (ParseOpenACCVar())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// The OpenACC Clause List is a comma or space-delimited list of clauses (see
|
|
|
|
// the comment on ParseOpenACCClauseList). The concept of a 'clause' doesn't
|
|
|
|
// really have its owner grammar and each individual one has its own definition.
|
|
|
|
// However, they all are named with a single-identifier (or auto/default!)
|
|
|
|
// token, followed in some cases by either braces or parens.
|
2024-01-16 09:14:48 -08:00
|
|
|
bool Parser::ParseOpenACCClause(OpenACCDirectiveKind DirKind) {
|
2024-01-09 07:32:05 -08:00
|
|
|
// A number of clause names are actually keywords, so accept a keyword that
|
|
|
|
// can be converted to a name.
|
|
|
|
if (expectIdentifierOrKeyword(*this))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
OpenACCClauseKind Kind = getOpenACCClauseKind(getCurToken());
|
|
|
|
|
|
|
|
if (Kind == OpenACCClauseKind::Invalid)
|
|
|
|
return Diag(getCurToken(), diag::err_acc_invalid_clause)
|
|
|
|
<< getCurToken().getIdentifierInfo();
|
|
|
|
|
|
|
|
// Consume the clause name.
|
|
|
|
ConsumeToken();
|
|
|
|
|
2024-01-16 09:14:48 -08:00
|
|
|
return ParseOpenACCClauseParams(DirKind, Kind);
|
2024-01-09 07:32:05 -08:00
|
|
|
}
|
|
|
|
|
2024-01-16 09:14:48 -08:00
|
|
|
bool Parser::ParseOpenACCClauseParams(OpenACCDirectiveKind DirKind,
|
|
|
|
OpenACCClauseKind Kind) {
|
2024-01-09 07:32:05 -08:00
|
|
|
BalancedDelimiterTracker Parens(*this, tok::l_paren,
|
2024-01-05 09:43:39 -08:00
|
|
|
tok::annot_pragma_openacc_end);
|
|
|
|
|
2024-01-16 09:14:48 -08:00
|
|
|
if (ClauseHasRequiredParens(DirKind, Kind)) {
|
2024-01-05 09:43:39 -08:00
|
|
|
if (Parens.expectAndConsume()) {
|
|
|
|
// We are missing a paren, so assume that the person just forgot the
|
|
|
|
// parameter. Return 'false' so we try to continue on and parse the next
|
|
|
|
// clause.
|
2024-01-09 07:32:05 -08:00
|
|
|
SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openacc_end,
|
|
|
|
Parser::StopBeforeMatch);
|
2024-01-05 09:43:39 -08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (Kind) {
|
|
|
|
case OpenACCClauseKind::Default: {
|
2024-01-09 07:32:05 -08:00
|
|
|
Token DefKindTok = getCurToken();
|
2024-01-05 09:43:39 -08:00
|
|
|
|
2024-01-09 07:32:05 -08:00
|
|
|
if (expectIdentifierOrKeyword(*this))
|
2024-01-05 09:43:39 -08:00
|
|
|
break;
|
|
|
|
|
2024-01-09 07:32:05 -08:00
|
|
|
ConsumeToken();
|
2024-01-05 09:43:39 -08:00
|
|
|
|
|
|
|
if (getOpenACCDefaultClauseKind(DefKindTok) ==
|
|
|
|
OpenACCDefaultClauseKind::Invalid)
|
2024-01-09 07:32:05 -08:00
|
|
|
Diag(DefKindTok, diag::err_acc_invalid_default_clause_kind);
|
2024-01-05 09:43:39 -08:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2024-01-08 07:12:27 -08:00
|
|
|
case OpenACCClauseKind::If: {
|
2024-01-09 07:32:05 -08:00
|
|
|
ExprResult CondExpr = ParseOpenACCConditionalExpr(*this);
|
2024-01-08 07:12:27 -08:00
|
|
|
// An invalid expression can be just about anything, so just give up on
|
|
|
|
// this clause list.
|
|
|
|
if (CondExpr.isInvalid())
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
2024-01-12 13:54:02 -08:00
|
|
|
case OpenACCClauseKind::CopyIn:
|
|
|
|
tryParseAndConsumeSpecialTokenKind(
|
|
|
|
*this, OpenACCSpecialTokenKind::ReadOnly, Kind);
|
|
|
|
if (ParseOpenACCClauseVarList(Kind))
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
case OpenACCClauseKind::Create:
|
2024-01-12 13:35:41 -08:00
|
|
|
case OpenACCClauseKind::CopyOut:
|
|
|
|
tryParseAndConsumeSpecialTokenKind(*this, OpenACCSpecialTokenKind::Zero,
|
|
|
|
Kind);
|
|
|
|
if (ParseOpenACCClauseVarList(Kind))
|
|
|
|
return true;
|
|
|
|
break;
|
2024-01-16 11:24:56 -08:00
|
|
|
case OpenACCClauseKind::Reduction:
|
|
|
|
// If we're missing a clause-kind (or it is invalid), see if we can parse
|
|
|
|
// the var-list anyway.
|
|
|
|
ParseReductionOperator(*this);
|
|
|
|
if (ParseOpenACCClauseVarList(Kind))
|
|
|
|
return true;
|
|
|
|
break;
|
2024-01-16 09:14:48 -08:00
|
|
|
case OpenACCClauseKind::Self:
|
|
|
|
// The 'self' clause is a var-list instead of a 'condition' in the case of
|
|
|
|
// the 'update' clause, so we have to handle it here. U se an assert to
|
|
|
|
// make sure we get the right differentiator.
|
|
|
|
assert(DirKind == OpenACCDirectiveKind::Update);
|
|
|
|
LLVM_FALLTHROUGH;
|
2024-01-11 13:08:40 -08:00
|
|
|
case OpenACCClauseKind::Attach:
|
2024-01-09 07:32:05 -08:00
|
|
|
case OpenACCClauseKind::Copy:
|
2024-01-11 13:08:40 -08:00
|
|
|
case OpenACCClauseKind::Delete:
|
|
|
|
case OpenACCClauseKind::Detach:
|
|
|
|
case OpenACCClauseKind::Device:
|
|
|
|
case OpenACCClauseKind::DeviceResident:
|
|
|
|
case OpenACCClauseKind::DevicePtr:
|
|
|
|
case OpenACCClauseKind::FirstPrivate:
|
|
|
|
case OpenACCClauseKind::Host:
|
|
|
|
case OpenACCClauseKind::Link:
|
|
|
|
case OpenACCClauseKind::NoCreate:
|
|
|
|
case OpenACCClauseKind::Present:
|
|
|
|
case OpenACCClauseKind::Private:
|
|
|
|
case OpenACCClauseKind::UseDevice:
|
2024-01-09 07:32:05 -08:00
|
|
|
if (ParseOpenACCClauseVarList(Kind))
|
|
|
|
return true;
|
|
|
|
break;
|
2024-01-05 09:43:39 -08:00
|
|
|
default:
|
|
|
|
llvm_unreachable("Not a required parens type?");
|
|
|
|
}
|
|
|
|
|
|
|
|
return Parens.consumeClose();
|
2024-01-16 09:14:48 -08:00
|
|
|
} else if (ClauseHasOptionalParens(DirKind, Kind)) {
|
2024-01-08 10:38:10 -08:00
|
|
|
if (!Parens.consumeOpen()) {
|
|
|
|
switch (Kind) {
|
|
|
|
case OpenACCClauseKind::Self: {
|
2024-01-16 09:14:48 -08:00
|
|
|
assert(DirKind != OpenACCDirectiveKind::Update);
|
2024-01-09 07:32:05 -08:00
|
|
|
ExprResult CondExpr = ParseOpenACCConditionalExpr(*this);
|
2024-01-08 10:38:10 -08:00
|
|
|
// An invalid expression can be just about anything, so just give up on
|
|
|
|
// this clause list.
|
|
|
|
if (CondExpr.isInvalid())
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Not an optional parens type?");
|
|
|
|
}
|
|
|
|
Parens.consumeClose();
|
|
|
|
}
|
2024-01-05 09:43:39 -08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-12-07 17:29:18 -08:00
|
|
|
/// OpenACC 3.3, section 2.16:
|
|
|
|
/// In this section and throughout the specification, the term wait-argument
|
|
|
|
/// means:
|
|
|
|
/// [ devnum : int-expr : ] [ queues : ] async-argument-list
|
|
|
|
bool Parser::ParseOpenACCWaitArgument() {
|
|
|
|
// [devnum : int-expr : ]
|
|
|
|
if (isOpenACCSpecialToken(OpenACCSpecialTokenKind::DevNum, Tok) &&
|
|
|
|
NextToken().is(tok::colon)) {
|
|
|
|
// Consume devnum.
|
|
|
|
ConsumeToken();
|
|
|
|
// Consume colon.
|
|
|
|
ConsumeToken();
|
|
|
|
|
|
|
|
ExprResult IntExpr =
|
|
|
|
getActions().CorrectDelayedTyposInExpr(ParseAssignmentExpression());
|
|
|
|
if (IntExpr.isInvalid())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (ExpectAndConsume(tok::colon))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// [ queues : ]
|
|
|
|
if (isOpenACCSpecialToken(OpenACCSpecialTokenKind::Queues, Tok) &&
|
|
|
|
NextToken().is(tok::colon)) {
|
|
|
|
// Consume queues.
|
|
|
|
ConsumeToken();
|
|
|
|
// Consume colon.
|
|
|
|
ConsumeToken();
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenACC 3.3, section 2.16:
|
|
|
|
// the term 'async-argument' means a nonnegative scalar integer expression, or
|
|
|
|
// one of the special values 'acc_async_noval' or 'acc_async_sync', as defined
|
|
|
|
// in the C header file and the Fortran opacc module.
|
|
|
|
//
|
|
|
|
// We are parsing this simply as list of assignment expressions (to avoid
|
|
|
|
// comma being troublesome), and will ensure it is an integral type. The
|
|
|
|
// 'special' types are defined as macros, so we can't really check those
|
|
|
|
// (other than perhaps as values at one point?), but the standard does say it
|
|
|
|
// is implementation-defined to use any other negative value.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
bool FirstArg = true;
|
|
|
|
while (!getCurToken().isOneOf(tok::r_paren, tok::annot_pragma_openacc_end)) {
|
|
|
|
if (!FirstArg) {
|
|
|
|
if (ExpectAndConsume(tok::comma))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
FirstArg = false;
|
|
|
|
|
|
|
|
ExprResult CurArg =
|
|
|
|
getActions().CorrectDelayedTyposInExpr(ParseAssignmentExpression());
|
|
|
|
|
|
|
|
if (CurArg.isInvalid())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-12-06 06:32:45 -08:00
|
|
|
ExprResult Parser::ParseOpenACCIDExpression() {
|
2023-11-27 06:49:29 -08:00
|
|
|
ExprResult Res;
|
|
|
|
if (getLangOpts().CPlusPlus) {
|
|
|
|
Res = ParseCXXIdExpression(/*isAddressOfOperand=*/false);
|
|
|
|
} else {
|
|
|
|
// There isn't anything quite the same as ParseCXXIdExpression for C, so we
|
|
|
|
// need to get the identifier, then call into Sema ourselves.
|
|
|
|
|
2023-12-06 06:32:45 -08:00
|
|
|
if (Tok.isNot(tok::identifier)) {
|
|
|
|
Diag(Tok, diag::err_expected) << tok::identifier;
|
2023-11-27 06:49:29 -08:00
|
|
|
return ExprError();
|
2023-12-06 06:32:45 -08:00
|
|
|
}
|
2023-11-27 06:49:29 -08:00
|
|
|
|
|
|
|
Token FuncName = getCurToken();
|
|
|
|
UnqualifiedId Name;
|
|
|
|
CXXScopeSpec ScopeSpec;
|
|
|
|
SourceLocation TemplateKWLoc;
|
|
|
|
Name.setIdentifier(FuncName.getIdentifierInfo(), ConsumeToken());
|
|
|
|
|
|
|
|
// Ensure this is a valid identifier. We don't accept causing implicit
|
|
|
|
// function declarations per the spec, so always claim to not have trailing
|
|
|
|
// L Paren.
|
|
|
|
Res = Actions.ActOnIdExpression(getCurScope(), ScopeSpec, TemplateKWLoc,
|
|
|
|
Name, /*HasTrailingLParen=*/false,
|
|
|
|
/*isAddressOfOperand=*/false);
|
|
|
|
}
|
|
|
|
|
|
|
|
return getActions().CorrectDelayedTyposInExpr(Res);
|
|
|
|
}
|
|
|
|
|
2024-01-10 10:26:49 -08:00
|
|
|
/// OpenACC 3.3, section 1.6:
|
|
|
|
/// In this spec, a 'var' (in italics) is one of the following:
|
|
|
|
/// - a variable name (a scalar, array, or compisite variable name)
|
|
|
|
/// - a subarray specification with subscript ranges
|
|
|
|
/// - an array element
|
|
|
|
/// - a member of a composite variable
|
|
|
|
/// - a common block name between slashes (fortran only)
|
|
|
|
bool Parser::ParseOpenACCVar() {
|
|
|
|
OpenACCArraySectionRAII ArraySections(*this);
|
2024-01-12 13:35:41 -08:00
|
|
|
ExprResult Res =
|
|
|
|
getActions().CorrectDelayedTyposInExpr(ParseAssignmentExpression());
|
2024-01-10 10:26:49 -08:00
|
|
|
return Res.isInvalid();
|
2023-12-06 06:32:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// OpenACC 3.3, section 2.10:
|
|
|
|
/// In C and C++, the syntax of the cache directive is:
|
|
|
|
///
|
|
|
|
/// #pragma acc cache ([readonly:]var-list) new-line
|
|
|
|
void Parser::ParseOpenACCCacheVarList() {
|
|
|
|
// If this is the end of the line, just return 'false' and count on the close
|
|
|
|
// paren diagnostic to catch the issue.
|
|
|
|
if (getCurToken().isAnnotation())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// The VarList is an optional `readonly:` followed by a list of a variable
|
2024-01-16 06:32:10 -08:00
|
|
|
// specifications. Consume something that looks like a 'tag', and diagnose if
|
|
|
|
// it isn't 'readonly'.
|
2024-01-12 10:54:12 -08:00
|
|
|
if (tryParseAndConsumeSpecialTokenKind(*this,
|
2024-01-16 06:32:10 -08:00
|
|
|
OpenACCSpecialTokenKind::ReadOnly,
|
|
|
|
OpenACCDirectiveKind::Cache)) {
|
2023-12-06 06:32:45 -08:00
|
|
|
// FIXME: Record that this is a 'readonly' so that we can use that during
|
|
|
|
// Sema/AST generation.
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FirstArray = true;
|
|
|
|
while (!getCurToken().isOneOf(tok::r_paren, tok::annot_pragma_openacc_end)) {
|
|
|
|
if (!FirstArray)
|
|
|
|
ExpectAndConsume(tok::comma);
|
|
|
|
FirstArray = false;
|
2024-01-10 10:26:49 -08:00
|
|
|
|
|
|
|
// OpenACC 3.3, section 2.10:
|
|
|
|
// A 'var' in a cache directive must be a single array element or a simple
|
|
|
|
// subarray. In C and C++, a simple subarray is an array name followed by
|
|
|
|
// an extended array range specification in brackets, with a start and
|
|
|
|
// length such as:
|
|
|
|
//
|
|
|
|
// arr[lower:length]
|
|
|
|
//
|
|
|
|
if (ParseOpenACCVar())
|
2023-12-06 06:32:45 -08:00
|
|
|
SkipUntil(tok::r_paren, tok::annot_pragma_openacc_end, tok::comma,
|
|
|
|
StopBeforeMatch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-27 06:49:29 -08:00
|
|
|
void Parser::ParseOpenACCDirective() {
|
|
|
|
OpenACCDirectiveKind DirKind = ParseOpenACCDirectiveKind(*this);
|
2023-11-21 11:08:48 -08:00
|
|
|
|
|
|
|
// Once we've parsed the construct/directive name, some have additional
|
|
|
|
// specifiers that need to be taken care of. Atomic has an 'atomic-clause'
|
|
|
|
// that needs to be parsed.
|
|
|
|
if (DirKind == OpenACCDirectiveKind::Atomic)
|
2023-11-27 06:49:29 -08:00
|
|
|
ParseOpenACCAtomicKind(*this);
|
|
|
|
|
|
|
|
// We've successfully parsed the construct/directive name, however a few of
|
|
|
|
// the constructs have optional parens that contain further details.
|
|
|
|
BalancedDelimiterTracker T(*this, tok::l_paren,
|
|
|
|
tok::annot_pragma_openacc_end);
|
|
|
|
|
|
|
|
if (!T.consumeOpen()) {
|
|
|
|
switch (DirKind) {
|
|
|
|
default:
|
|
|
|
Diag(T.getOpenLocation(), diag::err_acc_invalid_open_paren);
|
|
|
|
T.skipToEnd();
|
|
|
|
break;
|
|
|
|
case OpenACCDirectiveKind::Routine: {
|
2023-12-06 06:32:45 -08:00
|
|
|
// Routine has an optional paren-wrapped name of a function in the local
|
|
|
|
// scope. We parse the name, emitting any diagnostics
|
|
|
|
ExprResult RoutineName = ParseOpenACCIDExpression();
|
2023-11-27 06:49:29 -08:00
|
|
|
// If the routine name is invalid, just skip until the closing paren to
|
|
|
|
// recover more gracefully.
|
|
|
|
if (RoutineName.isInvalid())
|
|
|
|
T.skipToEnd();
|
|
|
|
else
|
|
|
|
T.consumeClose();
|
|
|
|
break;
|
|
|
|
}
|
2023-12-06 06:32:45 -08:00
|
|
|
case OpenACCDirectiveKind::Cache:
|
|
|
|
ParseOpenACCCacheVarList();
|
|
|
|
// The ParseOpenACCCacheVarList function manages to recover from failures,
|
|
|
|
// so we can always consume the close.
|
|
|
|
T.consumeClose();
|
|
|
|
break;
|
2023-12-07 17:29:18 -08:00
|
|
|
case OpenACCDirectiveKind::Wait:
|
|
|
|
// OpenACC has an optional paren-wrapped 'wait-argument'.
|
|
|
|
if (ParseOpenACCWaitArgument())
|
|
|
|
T.skipToEnd();
|
|
|
|
else
|
|
|
|
T.consumeClose();
|
|
|
|
break;
|
2023-11-27 06:49:29 -08:00
|
|
|
}
|
2023-12-06 06:32:45 -08:00
|
|
|
} else if (DirKind == OpenACCDirectiveKind::Cache) {
|
|
|
|
// Cache's paren var-list is required, so error here if it isn't provided.
|
|
|
|
// We know that the consumeOpen above left the first non-paren here, so
|
|
|
|
// diagnose, then continue as if it was completely omitted.
|
|
|
|
Diag(Tok, diag::err_expected) << tok::l_paren;
|
2023-11-27 06:49:29 -08:00
|
|
|
}
|
2023-11-17 10:47:42 -08:00
|
|
|
|
|
|
|
// Parses the list of clauses, if present.
|
2024-01-16 09:14:48 -08:00
|
|
|
ParseOpenACCClauseList(DirKind);
|
2023-11-17 10:47:42 -08:00
|
|
|
|
2023-11-27 06:49:29 -08:00
|
|
|
Diag(getCurToken(), diag::warn_pragma_acc_unimplemented);
|
2023-12-18 18:53:37 -08:00
|
|
|
assert(Tok.is(tok::annot_pragma_openacc_end) &&
|
|
|
|
"Didn't parse all OpenACC Clauses");
|
|
|
|
ConsumeAnnotationToken();
|
2023-11-17 10:47:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse OpenACC directive on a declaration.
|
2023-11-17 07:28:33 -08:00
|
|
|
Parser::DeclGroupPtrTy Parser::ParseOpenACCDirectiveDecl() {
|
2023-11-17 10:47:42 -08:00
|
|
|
assert(Tok.is(tok::annot_pragma_openacc) && "expected OpenACC Start Token");
|
|
|
|
|
|
|
|
ParsingOpenACCDirectiveRAII DirScope(*this);
|
|
|
|
ConsumeAnnotationToken();
|
|
|
|
|
2023-11-27 06:49:29 -08:00
|
|
|
ParseOpenACCDirective();
|
2023-11-17 10:47:42 -08:00
|
|
|
|
2023-11-17 06:29:02 -08:00
|
|
|
return nullptr;
|
|
|
|
}
|
2023-11-17 10:47:42 -08:00
|
|
|
|
|
|
|
// Parse OpenACC Directive on a Statement.
|
2023-11-17 06:29:02 -08:00
|
|
|
StmtResult Parser::ParseOpenACCDirectiveStmt() {
|
2023-11-17 10:47:42 -08:00
|
|
|
assert(Tok.is(tok::annot_pragma_openacc) && "expected OpenACC Start Token");
|
|
|
|
|
|
|
|
ParsingOpenACCDirectiveRAII DirScope(*this);
|
|
|
|
ConsumeAnnotationToken();
|
|
|
|
|
2023-11-27 06:49:29 -08:00
|
|
|
ParseOpenACCDirective();
|
2023-11-17 10:47:42 -08:00
|
|
|
|
2023-11-17 06:29:02 -08:00
|
|
|
return StmtEmpty();
|
|
|
|
}
|