1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
/// \file
/// This file implements conversions from the ACC.td from the backend to
/// determine appertainment, required/etc.
///
//===----------------------------------------------------------------------===//
#include "clang/Basic/DiagnosticSema.h"
#include "clang/Sema/SemaOpenACC.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/bit.h"
using namespace clang;
namespace {
// Implements a simple 'enum-set' which stores enum values in a single 64 bit
// value. Flang has `EnumSet` which is pretty sizable/has a lot of dependencies,
// so likely not worth bringing in for this use.
class AccClauseSet {
// We're just using a uint64_t as our underlying rep, so if this size ever
// gets bigger than 64, we probably need a pair of uint64_ts.
static_assert(static_cast<unsigned>(OpenACCClauseKind::Invalid) < 64);
uint64_t Data;
void setBit(OpenACCClauseKind C) {
Data |= static_cast<uint64_t>(1) << static_cast<uint64_t>(C);
}
public:
constexpr AccClauseSet(std::initializer_list<OpenACCClauseKind> Clauses)
: Data(0) {
for (OpenACCClauseKind C : Clauses)
setBit(C);
}
constexpr bool isSet(OpenACCClauseKind C) const {
return ((Data >> static_cast<uint64_t>(C)) & 1) != 0;
}
void clearBit(OpenACCClauseKind C) {
Data &= ~(static_cast<uint64_t>(1) << static_cast<uint64_t>(C));
}
constexpr bool isEmpty() const { return Data == 0; }
unsigned popcount() const { return llvm::popcount<uint64_t>(Data); }
};
struct LLVMClauseLists {
AccClauseSet Allowed;
AccClauseSet AllowedOnce;
AccClauseSet AllowedExclusive;
AccClauseSet Required;
};
struct LLVMDirectiveClauseRelationships {
OpenACCDirectiveKind DirKind;
LLVMClauseLists Lists;
};
} // namespace
// This introduces these in a llvm::acc namespace, so make sure this stays in
// the global namespace.
#define GEN_CLANG_DIRECTIVE_CLAUSE_SETS
#include "llvm/Frontend/OpenACC/ACC.inc"
namespace {
LLVMDirectiveClauseRelationships Relations[] =
#define GEN_CLANG_DIRECTIVE_CLAUSE_MAP
#include "llvm/Frontend/OpenACC/ACC.inc"
;
const LLVMClauseLists &getListsForDirective(OpenACCDirectiveKind DK) {
auto Res = llvm::find_if(Relations,
[=](const LLVMDirectiveClauseRelationships &Rel) {
return Rel.DirKind == DK;
});
assert(Res != std::end(Relations) && "Unknown directive kind?");
return Res->Lists;
}
std::string getListOfClauses(AccClauseSet Set) {
// We could probably come up with a better way to do this smuggling, but this
// is good enough for now.
std::string Output;
llvm::raw_string_ostream OS{Output};
for (unsigned I = 0; I < static_cast<unsigned>(OpenACCClauseKind::Invalid);
++I) {
OpenACCClauseKind CurClause = static_cast<OpenACCClauseKind>(I);
if (!Set.isSet(CurClause))
continue;
OS << '\'' << CurClause << '\'';
Set.clearBit(CurClause);
if (Set.isEmpty()) {
OS.flush();
return OS.str();
}
OS << ", ";
if (Set.popcount() == 1)
OS << "or ";
}
OS.flush();
return OS.str();
}
OpenACCClauseKind dealiasClauseKind(OpenACCClauseKind CK) {
switch (CK) {
default:
return CK;
#define VISIT_CLAUSE(NAME)
#define CLAUSE_ALIAS(ALIAS, NAME, DEPRECATED) \
case OpenACCClauseKind::ALIAS: \
return OpenACCClauseKind::NAME;
#include "clang/Basic/OpenACCClauses.def"
}
return CK;
}
} // namespace
// Diagnoses if `Clauses` list doesn't have at least one of the required
// clauses.
bool SemaOpenACC::DiagnoseRequiredClauses(
OpenACCDirectiveKind DK, SourceLocation DirectiveLoc,
ArrayRef<const OpenACCClause *> Clauses) {
if (DK == OpenACCDirectiveKind::Invalid)
return false;
const LLVMClauseLists &Lists = getListsForDirective(DK);
if (Lists.Required.isEmpty())
return false;
for (auto *C : Clauses) {
if (Lists.Required.isSet(dealiasClauseKind(C->getClauseKind())))
return false;
}
return Diag(DirectiveLoc, diag::err_acc_construct_one_clause_of)
<< DK << getListOfClauses(Lists.Required);
return true;
}
// Diagnoses a 'CK' on a 'DK' present more than once in a clause-list when it
// isn't allowed.
bool SemaOpenACC::DiagnoseAllowedOnceClauses(
OpenACCDirectiveKind DK, OpenACCClauseKind CK, SourceLocation ClauseLoc,
ArrayRef<const OpenACCClause *> Clauses) {
if (DK == OpenACCDirectiveKind::Invalid || CK == OpenACCClauseKind::Invalid)
return false;
OpenACCClauseKind Dealiased = dealiasClauseKind(CK);
const LLVMClauseLists &Lists = getListsForDirective(DK);
if (!Lists.AllowedOnce.isSet(CK))
return false;
auto Res = llvm::find_if(Clauses, [=](const OpenACCClause *C) {
return dealiasClauseKind(C->getClauseKind()) == Dealiased;
});
if (Res == Clauses.end())
return false;
Diag(ClauseLoc, diag::err_acc_duplicate_clause_disallowed) << DK << CK;
Diag((*Res)->getBeginLoc(), diag::note_acc_previous_clause_here) << CK;
return true;
}
// Diagnoses a 'CK' on a 'DK' being added that isn't allowed to, because another
// clause in 'Clauses' already exists.
bool SemaOpenACC::DiagnoseExclusiveClauses(
OpenACCDirectiveKind DK, OpenACCClauseKind CK, SourceLocation ClauseLoc,
ArrayRef<const OpenACCClause *> Clauses) {
if (DK == OpenACCDirectiveKind::Invalid || CK == OpenACCClauseKind::Invalid)
return false;
const LLVMClauseLists &Lists = getListsForDirective(DK);
OpenACCClauseKind Dealiased = dealiasClauseKind(CK);
// If this isn't on the list, this is fine.
if (!Lists.AllowedExclusive.isSet(Dealiased))
return false;
for (const OpenACCClause *C : Clauses) {
if (Lists.AllowedExclusive.isSet(dealiasClauseKind(C->getClauseKind()))) {
Diag(ClauseLoc, diag::err_acc_clause_cannot_combine)
<< CK << C->getClauseKind() << DK;
Diag(C->getBeginLoc(), diag::note_acc_previous_clause_here)
<< C->getClauseKind();
return true;
}
}
return false;
}
// Diagnoses if 'CK' is not allowed on a directive of 'DK'.
bool SemaOpenACC::DiagnoseAllowedClauses(OpenACCDirectiveKind DK,
OpenACCClauseKind CK,
SourceLocation ClauseLoc) {
if (DK == OpenACCDirectiveKind::Invalid || CK == OpenACCClauseKind::Invalid)
return false;
const LLVMClauseLists &Lists = getListsForDirective(DK);
OpenACCClauseKind Dealiased = dealiasClauseKind(CK);
if (!Lists.Allowed.isSet(Dealiased) && !Lists.AllowedOnce.isSet(Dealiased) &&
!Lists.AllowedExclusive.isSet(Dealiased) &&
!Lists.Required.isSet(Dealiased))
return Diag(ClauseLoc, diag::err_acc_clause_appertainment) << DK << CK;
return false;
}
|