2010-01-10 22:38:13 +08:00
|
|
|
//===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2010-01-10 22:38:13 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2015-03-20 00:06:49 +08:00
|
|
|
// This file contains out-of-line methods for Attr classes.
|
2010-01-10 22:38:13 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2016-07-19 03:02:11 +08:00
|
|
|
#include "clang/AST/Attr.h"
|
2010-08-19 07:23:40 +08:00
|
|
|
#include "clang/AST/Expr.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/AST/Type.h"
|
2010-01-10 22:38:13 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2020-03-12 11:22:14 +08:00
|
|
|
void LoopHintAttr::printPrettyPragma(raw_ostream &OS,
|
|
|
|
const PrintingPolicy &Policy) const {
|
|
|
|
unsigned SpellingIndex = getAttributeSpellingListIndex();
|
|
|
|
// For "#pragma unroll" and "#pragma nounroll" the string "unroll" or
|
|
|
|
// "nounroll" is already emitted as the pragma name.
|
|
|
|
if (SpellingIndex == Pragma_nounroll ||
|
|
|
|
SpellingIndex == Pragma_nounroll_and_jam)
|
|
|
|
return;
|
|
|
|
else if (SpellingIndex == Pragma_unroll ||
|
|
|
|
SpellingIndex == Pragma_unroll_and_jam) {
|
|
|
|
OS << ' ' << getValueString(Policy);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(SpellingIndex == Pragma_clang_loop && "Unexpected spelling");
|
|
|
|
OS << ' ' << getOptionName(option) << getValueString(Policy);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a string containing the loop hint argument including the
|
|
|
|
// enclosing parentheses.
|
|
|
|
std::string LoopHintAttr::getValueString(const PrintingPolicy &Policy) const {
|
|
|
|
std::string ValueName;
|
|
|
|
llvm::raw_string_ostream OS(ValueName);
|
|
|
|
OS << "(";
|
|
|
|
if (state == Numeric)
|
|
|
|
value->printPretty(OS, nullptr, Policy);
|
2020-10-02 14:46:42 +08:00
|
|
|
else if (state == FixedWidth || state == ScalableWidth) {
|
|
|
|
if (value) {
|
|
|
|
value->printPretty(OS, nullptr, Policy);
|
|
|
|
if (state == ScalableWidth)
|
|
|
|
OS << ", scalable";
|
|
|
|
} else if (state == ScalableWidth)
|
|
|
|
OS << "scalable";
|
|
|
|
else
|
|
|
|
OS << "fixed";
|
|
|
|
} else if (state == Enable)
|
2020-03-12 11:22:14 +08:00
|
|
|
OS << "enable";
|
|
|
|
else if (state == Full)
|
|
|
|
OS << "full";
|
|
|
|
else if (state == AssumeSafety)
|
|
|
|
OS << "assume_safety";
|
|
|
|
else
|
|
|
|
OS << "disable";
|
|
|
|
OS << ")";
|
|
|
|
return OS.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a string suitable for identifying this attribute in diagnostics.
|
|
|
|
std::string
|
|
|
|
LoopHintAttr::getDiagnosticName(const PrintingPolicy &Policy) const {
|
|
|
|
unsigned SpellingIndex = getAttributeSpellingListIndex();
|
|
|
|
if (SpellingIndex == Pragma_nounroll)
|
|
|
|
return "#pragma nounroll";
|
|
|
|
else if (SpellingIndex == Pragma_unroll)
|
|
|
|
return "#pragma unroll" +
|
|
|
|
(option == UnrollCount ? getValueString(Policy) : "");
|
|
|
|
else if (SpellingIndex == Pragma_nounroll_and_jam)
|
|
|
|
return "#pragma nounroll_and_jam";
|
|
|
|
else if (SpellingIndex == Pragma_unroll_and_jam)
|
|
|
|
return "#pragma unroll_and_jam" +
|
|
|
|
(option == UnrollAndJamCount ? getValueString(Policy) : "");
|
|
|
|
|
|
|
|
assert(SpellingIndex == Pragma_clang_loop && "Unexpected spelling");
|
|
|
|
return getOptionName(option) + getValueString(Policy);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OMPDeclareSimdDeclAttr::printPrettyPragma(
|
|
|
|
raw_ostream &OS, const PrintingPolicy &Policy) const {
|
|
|
|
if (getBranchState() != BS_Undefined)
|
|
|
|
OS << ' ' << ConvertBranchStateTyToStr(getBranchState());
|
|
|
|
if (auto *E = getSimdlen()) {
|
|
|
|
OS << " simdlen(";
|
|
|
|
E->printPretty(OS, nullptr, Policy);
|
|
|
|
OS << ")";
|
|
|
|
}
|
|
|
|
if (uniforms_size() > 0) {
|
|
|
|
OS << " uniform";
|
|
|
|
StringRef Sep = "(";
|
|
|
|
for (auto *E : uniforms()) {
|
|
|
|
OS << Sep;
|
|
|
|
E->printPretty(OS, nullptr, Policy);
|
|
|
|
Sep = ", ";
|
|
|
|
}
|
|
|
|
OS << ")";
|
|
|
|
}
|
|
|
|
alignments_iterator NI = alignments_begin();
|
|
|
|
for (auto *E : aligneds()) {
|
|
|
|
OS << " aligned(";
|
|
|
|
E->printPretty(OS, nullptr, Policy);
|
|
|
|
if (*NI) {
|
|
|
|
OS << ": ";
|
|
|
|
(*NI)->printPretty(OS, nullptr, Policy);
|
|
|
|
}
|
|
|
|
OS << ")";
|
|
|
|
++NI;
|
|
|
|
}
|
|
|
|
steps_iterator I = steps_begin();
|
|
|
|
modifiers_iterator MI = modifiers_begin();
|
|
|
|
for (auto *E : linears()) {
|
|
|
|
OS << " linear(";
|
|
|
|
if (*MI != OMPC_LINEAR_unknown)
|
2020-03-31 08:58:40 +08:00
|
|
|
OS << getOpenMPSimpleClauseTypeName(llvm::omp::Clause::OMPC_linear, *MI)
|
|
|
|
<< "(";
|
2020-03-12 11:22:14 +08:00
|
|
|
E->printPretty(OS, nullptr, Policy);
|
|
|
|
if (*MI != OMPC_LINEAR_unknown)
|
|
|
|
OS << ")";
|
|
|
|
if (*I) {
|
|
|
|
OS << ": ";
|
|
|
|
(*I)->printPretty(OS, nullptr, Policy);
|
|
|
|
}
|
|
|
|
OS << ")";
|
|
|
|
++I;
|
|
|
|
++MI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OMPDeclareTargetDeclAttr::printPrettyPragma(
|
|
|
|
raw_ostream &OS, const PrintingPolicy &Policy) const {
|
|
|
|
// Use fake syntax because it is for testing and debugging purpose only.
|
|
|
|
if (getDevType() != DT_Any)
|
|
|
|
OS << " device_type(" << ConvertDevTypeTyToStr(getDevType()) << ")";
|
|
|
|
if (getMapType() != MT_To)
|
|
|
|
OS << ' ' << ConvertMapTypeTyToStr(getMapType());
|
|
|
|
}
|
|
|
|
|
[OpenMP] Overhaul `declare target` handling
This patch fixes various issues with our prior `declare target` handling
and extends it to support `omp begin declare target` as well.
This started with PR49649 in mind, trying to provide a way for users to
avoid the "ref" global use introduced for globals with internal linkage.
From there it went down the rabbit hole, e.g., all variables, even
`nohost` ones, were emitted into the device code so it was impossible to
determine if "ref" was needed late in the game (based on the name only).
To make it really useful, `begin declare target` was needed as it can
carry the `device_type`. Not emitting variables eagerly had a ripple
effect. Finally, the precedence of the (explicit) declare target list
items needed to be taken into account, that meant we cannot just look
for any declare target attribute to make a decision. This caused the
handling of functions to require fixup as well.
I tried to clean up things while I was at it, e.g., we should not "parse
declarations and defintions" as part of OpenMP parsing, this will always
break at some point. Instead, we keep track what region we are in and
act on definitions and declarations instead, this is what we do for
declare variant and other begin/end directives already.
Highlights:
- new diagnosis for restrictions specificed in the standard,
- delayed emission of globals not mentioned in an explicit
list of a declare target,
- omission of `nohost` globals on the host and `host` globals on the
device,
- no explicit parsing of declarations in-between `omp [begin] declare
variant` and the corresponding end anymore, regular parsing instead,
- precedence for explicit mentions in `declare target` lists over
implicit mentions in the declaration-definition-seq, and
- `omp allocate` declarations will now replace an earlier emitted
global, if necessary.
---
Notes:
The patch is larger than I hoped but it turns out that most changes do
on their own lead to "inconsistent states", which seem less desirable
overall.
After working through this I feel the standard should remove the
explicit declare target forms as the delayed emission is horrible.
That said, while we delay things anyway, it seems to me we check too
often for the current status even though that is often not sufficient to
act upon. There seems to be a lot of duplication that can probably be
trimmed down. Eagerly emitting some things seems pretty weak as an
argument to keep so much logic around.
---
Reviewed By: ABataev
Differential Revision: https://reviews.llvm.org/D101030
2021-04-22 13:57:28 +08:00
|
|
|
llvm::Optional<OMPDeclareTargetDeclAttr *>
|
|
|
|
OMPDeclareTargetDeclAttr::getActiveAttr(const ValueDecl *VD) {
|
2020-03-12 11:22:14 +08:00
|
|
|
if (!VD->hasAttrs())
|
|
|
|
return llvm::None;
|
2020-08-20 03:23:00 +08:00
|
|
|
unsigned Level = 0;
|
[OpenMP] Overhaul `declare target` handling
This patch fixes various issues with our prior `declare target` handling
and extends it to support `omp begin declare target` as well.
This started with PR49649 in mind, trying to provide a way for users to
avoid the "ref" global use introduced for globals with internal linkage.
From there it went down the rabbit hole, e.g., all variables, even
`nohost` ones, were emitted into the device code so it was impossible to
determine if "ref" was needed late in the game (based on the name only).
To make it really useful, `begin declare target` was needed as it can
carry the `device_type`. Not emitting variables eagerly had a ripple
effect. Finally, the precedence of the (explicit) declare target list
items needed to be taken into account, that meant we cannot just look
for any declare target attribute to make a decision. This caused the
handling of functions to require fixup as well.
I tried to clean up things while I was at it, e.g., we should not "parse
declarations and defintions" as part of OpenMP parsing, this will always
break at some point. Instead, we keep track what region we are in and
act on definitions and declarations instead, this is what we do for
declare variant and other begin/end directives already.
Highlights:
- new diagnosis for restrictions specificed in the standard,
- delayed emission of globals not mentioned in an explicit
list of a declare target,
- omission of `nohost` globals on the host and `host` globals on the
device,
- no explicit parsing of declarations in-between `omp [begin] declare
variant` and the corresponding end anymore, regular parsing instead,
- precedence for explicit mentions in `declare target` lists over
implicit mentions in the declaration-definition-seq, and
- `omp allocate` declarations will now replace an earlier emitted
global, if necessary.
---
Notes:
The patch is larger than I hoped but it turns out that most changes do
on their own lead to "inconsistent states", which seem less desirable
overall.
After working through this I feel the standard should remove the
explicit declare target forms as the delayed emission is horrible.
That said, while we delay things anyway, it seems to me we check too
often for the current status even though that is often not sufficient to
act upon. There seems to be a lot of duplication that can probably be
trimmed down. Eagerly emitting some things seems pretty weak as an
argument to keep so much logic around.
---
Reviewed By: ABataev
Differential Revision: https://reviews.llvm.org/D101030
2021-04-22 13:57:28 +08:00
|
|
|
OMPDeclareTargetDeclAttr *FoundAttr = nullptr;
|
|
|
|
for (auto *Attr : VD->specific_attrs<OMPDeclareTargetDeclAttr>()) {
|
|
|
|
if (Level <= Attr->getLevel()) {
|
2020-08-20 03:23:00 +08:00
|
|
|
Level = Attr->getLevel();
|
|
|
|
FoundAttr = Attr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (FoundAttr)
|
[OpenMP] Overhaul `declare target` handling
This patch fixes various issues with our prior `declare target` handling
and extends it to support `omp begin declare target` as well.
This started with PR49649 in mind, trying to provide a way for users to
avoid the "ref" global use introduced for globals with internal linkage.
From there it went down the rabbit hole, e.g., all variables, even
`nohost` ones, were emitted into the device code so it was impossible to
determine if "ref" was needed late in the game (based on the name only).
To make it really useful, `begin declare target` was needed as it can
carry the `device_type`. Not emitting variables eagerly had a ripple
effect. Finally, the precedence of the (explicit) declare target list
items needed to be taken into account, that meant we cannot just look
for any declare target attribute to make a decision. This caused the
handling of functions to require fixup as well.
I tried to clean up things while I was at it, e.g., we should not "parse
declarations and defintions" as part of OpenMP parsing, this will always
break at some point. Instead, we keep track what region we are in and
act on definitions and declarations instead, this is what we do for
declare variant and other begin/end directives already.
Highlights:
- new diagnosis for restrictions specificed in the standard,
- delayed emission of globals not mentioned in an explicit
list of a declare target,
- omission of `nohost` globals on the host and `host` globals on the
device,
- no explicit parsing of declarations in-between `omp [begin] declare
variant` and the corresponding end anymore, regular parsing instead,
- precedence for explicit mentions in `declare target` lists over
implicit mentions in the declaration-definition-seq, and
- `omp allocate` declarations will now replace an earlier emitted
global, if necessary.
---
Notes:
The patch is larger than I hoped but it turns out that most changes do
on their own lead to "inconsistent states", which seem less desirable
overall.
After working through this I feel the standard should remove the
explicit declare target forms as the delayed emission is horrible.
That said, while we delay things anyway, it seems to me we check too
often for the current status even though that is often not sufficient to
act upon. There seems to be a lot of duplication that can probably be
trimmed down. Eagerly emitting some things seems pretty weak as an
argument to keep so much logic around.
---
Reviewed By: ABataev
Differential Revision: https://reviews.llvm.org/D101030
2021-04-22 13:57:28 +08:00
|
|
|
return FoundAttr;
|
|
|
|
return llvm::None;
|
|
|
|
}
|
2020-03-12 11:22:14 +08:00
|
|
|
|
[OpenMP] Overhaul `declare target` handling
This patch fixes various issues with our prior `declare target` handling
and extends it to support `omp begin declare target` as well.
This started with PR49649 in mind, trying to provide a way for users to
avoid the "ref" global use introduced for globals with internal linkage.
From there it went down the rabbit hole, e.g., all variables, even
`nohost` ones, were emitted into the device code so it was impossible to
determine if "ref" was needed late in the game (based on the name only).
To make it really useful, `begin declare target` was needed as it can
carry the `device_type`. Not emitting variables eagerly had a ripple
effect. Finally, the precedence of the (explicit) declare target list
items needed to be taken into account, that meant we cannot just look
for any declare target attribute to make a decision. This caused the
handling of functions to require fixup as well.
I tried to clean up things while I was at it, e.g., we should not "parse
declarations and defintions" as part of OpenMP parsing, this will always
break at some point. Instead, we keep track what region we are in and
act on definitions and declarations instead, this is what we do for
declare variant and other begin/end directives already.
Highlights:
- new diagnosis for restrictions specificed in the standard,
- delayed emission of globals not mentioned in an explicit
list of a declare target,
- omission of `nohost` globals on the host and `host` globals on the
device,
- no explicit parsing of declarations in-between `omp [begin] declare
variant` and the corresponding end anymore, regular parsing instead,
- precedence for explicit mentions in `declare target` lists over
implicit mentions in the declaration-definition-seq, and
- `omp allocate` declarations will now replace an earlier emitted
global, if necessary.
---
Notes:
The patch is larger than I hoped but it turns out that most changes do
on their own lead to "inconsistent states", which seem less desirable
overall.
After working through this I feel the standard should remove the
explicit declare target forms as the delayed emission is horrible.
That said, while we delay things anyway, it seems to me we check too
often for the current status even though that is often not sufficient to
act upon. There seems to be a lot of duplication that can probably be
trimmed down. Eagerly emitting some things seems pretty weak as an
argument to keep so much logic around.
---
Reviewed By: ABataev
Differential Revision: https://reviews.llvm.org/D101030
2021-04-22 13:57:28 +08:00
|
|
|
llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy>
|
|
|
|
OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(const ValueDecl *VD) {
|
|
|
|
llvm::Optional<OMPDeclareTargetDeclAttr *> ActiveAttr = getActiveAttr(VD);
|
|
|
|
if (ActiveAttr.hasValue())
|
|
|
|
return ActiveAttr.getValue()->getMapType();
|
2020-03-12 11:22:14 +08:00
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Optional<OMPDeclareTargetDeclAttr::DevTypeTy>
|
|
|
|
OMPDeclareTargetDeclAttr::getDeviceType(const ValueDecl *VD) {
|
[OpenMP] Overhaul `declare target` handling
This patch fixes various issues with our prior `declare target` handling
and extends it to support `omp begin declare target` as well.
This started with PR49649 in mind, trying to provide a way for users to
avoid the "ref" global use introduced for globals with internal linkage.
From there it went down the rabbit hole, e.g., all variables, even
`nohost` ones, were emitted into the device code so it was impossible to
determine if "ref" was needed late in the game (based on the name only).
To make it really useful, `begin declare target` was needed as it can
carry the `device_type`. Not emitting variables eagerly had a ripple
effect. Finally, the precedence of the (explicit) declare target list
items needed to be taken into account, that meant we cannot just look
for any declare target attribute to make a decision. This caused the
handling of functions to require fixup as well.
I tried to clean up things while I was at it, e.g., we should not "parse
declarations and defintions" as part of OpenMP parsing, this will always
break at some point. Instead, we keep track what region we are in and
act on definitions and declarations instead, this is what we do for
declare variant and other begin/end directives already.
Highlights:
- new diagnosis for restrictions specificed in the standard,
- delayed emission of globals not mentioned in an explicit
list of a declare target,
- omission of `nohost` globals on the host and `host` globals on the
device,
- no explicit parsing of declarations in-between `omp [begin] declare
variant` and the corresponding end anymore, regular parsing instead,
- precedence for explicit mentions in `declare target` lists over
implicit mentions in the declaration-definition-seq, and
- `omp allocate` declarations will now replace an earlier emitted
global, if necessary.
---
Notes:
The patch is larger than I hoped but it turns out that most changes do
on their own lead to "inconsistent states", which seem less desirable
overall.
After working through this I feel the standard should remove the
explicit declare target forms as the delayed emission is horrible.
That said, while we delay things anyway, it seems to me we check too
often for the current status even though that is often not sufficient to
act upon. There seems to be a lot of duplication that can probably be
trimmed down. Eagerly emitting some things seems pretty weak as an
argument to keep so much logic around.
---
Reviewed By: ABataev
Differential Revision: https://reviews.llvm.org/D101030
2021-04-22 13:57:28 +08:00
|
|
|
llvm::Optional<OMPDeclareTargetDeclAttr *> ActiveAttr = getActiveAttr(VD);
|
|
|
|
if (ActiveAttr.hasValue())
|
|
|
|
return ActiveAttr.getValue()->getDevType();
|
2020-08-20 03:23:00 +08:00
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Optional<SourceLocation>
|
|
|
|
OMPDeclareTargetDeclAttr::getLocation(const ValueDecl *VD) {
|
[OpenMP] Overhaul `declare target` handling
This patch fixes various issues with our prior `declare target` handling
and extends it to support `omp begin declare target` as well.
This started with PR49649 in mind, trying to provide a way for users to
avoid the "ref" global use introduced for globals with internal linkage.
From there it went down the rabbit hole, e.g., all variables, even
`nohost` ones, were emitted into the device code so it was impossible to
determine if "ref" was needed late in the game (based on the name only).
To make it really useful, `begin declare target` was needed as it can
carry the `device_type`. Not emitting variables eagerly had a ripple
effect. Finally, the precedence of the (explicit) declare target list
items needed to be taken into account, that meant we cannot just look
for any declare target attribute to make a decision. This caused the
handling of functions to require fixup as well.
I tried to clean up things while I was at it, e.g., we should not "parse
declarations and defintions" as part of OpenMP parsing, this will always
break at some point. Instead, we keep track what region we are in and
act on definitions and declarations instead, this is what we do for
declare variant and other begin/end directives already.
Highlights:
- new diagnosis for restrictions specificed in the standard,
- delayed emission of globals not mentioned in an explicit
list of a declare target,
- omission of `nohost` globals on the host and `host` globals on the
device,
- no explicit parsing of declarations in-between `omp [begin] declare
variant` and the corresponding end anymore, regular parsing instead,
- precedence for explicit mentions in `declare target` lists over
implicit mentions in the declaration-definition-seq, and
- `omp allocate` declarations will now replace an earlier emitted
global, if necessary.
---
Notes:
The patch is larger than I hoped but it turns out that most changes do
on their own lead to "inconsistent states", which seem less desirable
overall.
After working through this I feel the standard should remove the
explicit declare target forms as the delayed emission is horrible.
That said, while we delay things anyway, it seems to me we check too
often for the current status even though that is often not sufficient to
act upon. There seems to be a lot of duplication that can probably be
trimmed down. Eagerly emitting some things seems pretty weak as an
argument to keep so much logic around.
---
Reviewed By: ABataev
Differential Revision: https://reviews.llvm.org/D101030
2021-04-22 13:57:28 +08:00
|
|
|
llvm::Optional<OMPDeclareTargetDeclAttr *> ActiveAttr = getActiveAttr(VD);
|
|
|
|
if (ActiveAttr.hasValue())
|
|
|
|
return ActiveAttr.getValue()->getRange().getBegin();
|
2020-03-12 11:22:14 +08:00
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
|
2020-04-04 03:35:30 +08:00
|
|
|
namespace clang {
|
|
|
|
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const OMPTraitInfo &TI);
|
|
|
|
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const OMPTraitInfo *TI);
|
|
|
|
}
|
|
|
|
|
2020-03-12 11:22:14 +08:00
|
|
|
void OMPDeclareVariantAttr::printPrettyPragma(
|
|
|
|
raw_ostream &OS, const PrintingPolicy &Policy) const {
|
|
|
|
if (const Expr *E = getVariantFuncRef()) {
|
|
|
|
OS << "(";
|
|
|
|
E->printPretty(OS, nullptr, Policy);
|
|
|
|
OS << ")";
|
|
|
|
}
|
2020-04-04 03:35:30 +08:00
|
|
|
OS << " match(" << traitInfos << ")";
|
2020-03-12 11:22:14 +08:00
|
|
|
}
|
|
|
|
|
2010-08-19 07:23:40 +08:00
|
|
|
#include "clang/AST/AttrImpl.inc"
|