2014-05-06 18:08:46 +08:00
|
|
|
//===--- SemaOpenMP.cpp - Semantic Analysis for OpenMP constructs ---------===//
|
2013-03-22 14:34:35 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \file
|
|
|
|
/// \brief This file implements semantic analysis for OpenMP directives and
|
2013-05-13 12:18:18 +08:00
|
|
|
/// clauses.
|
2013-03-22 14:34:35 +08:00
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-05-06 18:08:46 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2013-03-22 14:34:35 +08:00
|
|
|
#include "clang/AST/Decl.h"
|
2013-07-19 11:13:43 +08:00
|
|
|
#include "clang/AST/DeclCXX.h"
|
2013-03-22 14:34:35 +08:00
|
|
|
#include "clang/AST/DeclOpenMP.h"
|
2013-07-19 11:13:43 +08:00
|
|
|
#include "clang/AST/StmtCXX.h"
|
|
|
|
#include "clang/AST/StmtOpenMP.h"
|
|
|
|
#include "clang/AST/StmtVisitor.h"
|
2014-05-06 18:08:46 +08:00
|
|
|
#include "clang/Basic/OpenMPKinds.h"
|
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2013-07-19 11:13:43 +08:00
|
|
|
#include "clang/Sema/Initialization.h"
|
2013-03-22 14:34:35 +08:00
|
|
|
#include "clang/Sema/Lookup.h"
|
2013-07-19 11:13:43 +08:00
|
|
|
#include "clang/Sema/Scope.h"
|
|
|
|
#include "clang/Sema/ScopeInfo.h"
|
2014-01-07 19:51:46 +08:00
|
|
|
#include "clang/Sema/SemaInternal.h"
|
2013-03-22 14:34:35 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Stack of data-sharing attributes for variables
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// \brief Default data sharing attributes, which can be applied to directive.
|
|
|
|
enum DefaultDataSharingAttributes {
|
2014-05-28 13:53:51 +08:00
|
|
|
DSA_unspecified = 0, /// \brief Data sharing attribute not specified.
|
|
|
|
DSA_none = 1 << 0, /// \brief Default data sharing attribute 'none'.
|
|
|
|
DSA_shared = 1 << 1 /// \brief Default data sharing attribute 'shared'.
|
2013-09-07 02:03:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/// \brief Stack for tracking declarations used in OpenMP directives and
|
|
|
|
/// clauses and their data-sharing attributes.
|
|
|
|
class DSAStackTy {
|
|
|
|
public:
|
|
|
|
struct DSAVarData {
|
|
|
|
OpenMPDirectiveKind DKind;
|
|
|
|
OpenMPClauseKind CKind;
|
|
|
|
DeclRefExpr *RefExpr;
|
2014-05-15 21:04:49 +08:00
|
|
|
DSAVarData() : DKind(OMPD_unknown), CKind(OMPC_unknown), RefExpr(nullptr) {}
|
2013-09-07 02:03:48 +08:00
|
|
|
};
|
2014-05-28 13:53:51 +08:00
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
private:
|
|
|
|
struct DSAInfo {
|
|
|
|
OpenMPClauseKind Attributes;
|
|
|
|
DeclRefExpr *RefExpr;
|
|
|
|
};
|
|
|
|
typedef llvm::SmallDenseMap<VarDecl *, DSAInfo, 64> DeclSAMapTy;
|
2014-05-29 22:36:25 +08:00
|
|
|
typedef llvm::SmallDenseMap<VarDecl *, DeclRefExpr *, 64> AlignedMapTy;
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
struct SharingMapTy {
|
|
|
|
DeclSAMapTy SharingMap;
|
2014-05-29 22:36:25 +08:00
|
|
|
AlignedMapTy AlignedMap;
|
2013-09-07 02:03:48 +08:00
|
|
|
DefaultDataSharingAttributes DefaultAttr;
|
|
|
|
OpenMPDirectiveKind Directive;
|
|
|
|
DeclarationNameInfo DirectiveName;
|
|
|
|
Scope *CurScope;
|
2014-05-28 13:53:51 +08:00
|
|
|
SharingMapTy(OpenMPDirectiveKind DKind, DeclarationNameInfo Name,
|
2013-09-07 02:03:48 +08:00
|
|
|
Scope *CurScope)
|
2014-05-29 22:36:25 +08:00
|
|
|
: SharingMap(), AlignedMap(), DefaultAttr(DSA_unspecified),
|
|
|
|
Directive(DKind), DirectiveName(std::move(Name)), CurScope(CurScope) {
|
|
|
|
}
|
2013-09-07 02:03:48 +08:00
|
|
|
SharingMapTy()
|
2014-05-29 22:36:25 +08:00
|
|
|
: SharingMap(), AlignedMap(), DefaultAttr(DSA_unspecified),
|
|
|
|
Directive(OMPD_unknown), DirectiveName(), CurScope(nullptr) {}
|
2013-09-07 02:03:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef SmallVector<SharingMapTy, 64> StackTy;
|
|
|
|
|
|
|
|
/// \brief Stack of used declaration and their data-sharing attributes.
|
|
|
|
StackTy Stack;
|
|
|
|
Sema &Actions;
|
|
|
|
|
|
|
|
typedef SmallVector<SharingMapTy, 8>::reverse_iterator reverse_iterator;
|
|
|
|
|
|
|
|
DSAVarData getDSA(StackTy::reverse_iterator Iter, VarDecl *D);
|
2014-01-31 13:15:34 +08:00
|
|
|
|
|
|
|
/// \brief Checks if the variable is a local for OpenMP region.
|
|
|
|
bool isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter);
|
2014-05-28 13:53:51 +08:00
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
public:
|
2014-05-28 13:53:51 +08:00
|
|
|
explicit DSAStackTy(Sema &S) : Stack(1), Actions(S) {}
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
void push(OpenMPDirectiveKind DKind, const DeclarationNameInfo &DirName,
|
|
|
|
Scope *CurScope) {
|
|
|
|
Stack.push_back(SharingMapTy(DKind, DirName, CurScope));
|
|
|
|
}
|
|
|
|
|
|
|
|
void pop() {
|
|
|
|
assert(Stack.size() > 1 && "Data-sharing attributes stack is empty!");
|
|
|
|
Stack.pop_back();
|
|
|
|
}
|
|
|
|
|
2014-05-29 22:36:25 +08:00
|
|
|
/// \brief If 'aligned' declaration for given variable \a D was not seen yet,
|
|
|
|
/// add it and return NULL; otherwise return previous occurence's expression
|
|
|
|
/// for diagnostics.
|
|
|
|
DeclRefExpr *addUniqueAligned(VarDecl *D, DeclRefExpr *NewDE);
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
/// \brief Adds explicit data sharing attribute to the specified declaration.
|
|
|
|
void addDSA(VarDecl *D, DeclRefExpr *E, OpenMPClauseKind A);
|
|
|
|
|
|
|
|
/// \brief Returns data sharing attributes from top of the stack for the
|
|
|
|
/// specified declaration.
|
|
|
|
DSAVarData getTopDSA(VarDecl *D);
|
|
|
|
/// \brief Returns data-sharing attributes for the specified declaration.
|
|
|
|
DSAVarData getImplicitDSA(VarDecl *D);
|
2013-10-01 13:32:34 +08:00
|
|
|
/// \brief Checks if the specified variables has \a CKind data-sharing
|
|
|
|
/// attribute in \a DKind directive.
|
|
|
|
DSAVarData hasDSA(VarDecl *D, OpenMPClauseKind CKind,
|
|
|
|
OpenMPDirectiveKind DKind = OMPD_unknown);
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
/// \brief Returns currently analyzed directive.
|
|
|
|
OpenMPDirectiveKind getCurrentDirective() const {
|
|
|
|
return Stack.back().Directive;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Set default data sharing attribute to none.
|
|
|
|
void setDefaultDSANone() { Stack.back().DefaultAttr = DSA_none; }
|
|
|
|
/// \brief Set default data sharing attribute to shared.
|
|
|
|
void setDefaultDSAShared() { Stack.back().DefaultAttr = DSA_shared; }
|
|
|
|
|
|
|
|
DefaultDataSharingAttributes getDefaultDSA() const {
|
|
|
|
return Stack.back().DefaultAttr;
|
|
|
|
}
|
|
|
|
|
2014-03-31 11:36:38 +08:00
|
|
|
/// \brief Checks if the spewcified variable is threadprivate.
|
|
|
|
bool isThreadPrivate(VarDecl *D) {
|
|
|
|
DSAVarData DVar = getTopDSA(D);
|
|
|
|
return (DVar.CKind == OMPC_threadprivate || DVar.CKind == OMPC_copyin);
|
|
|
|
}
|
|
|
|
|
|
|
|
Scope *getCurScope() const { return Stack.back().CurScope; }
|
2013-09-07 02:03:48 +08:00
|
|
|
Scope *getCurScope() { return Stack.back().CurScope; }
|
|
|
|
};
|
2014-05-28 13:53:51 +08:00
|
|
|
} // namespace
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
DSAStackTy::DSAVarData DSAStackTy::getDSA(StackTy::reverse_iterator Iter,
|
|
|
|
VarDecl *D) {
|
|
|
|
DSAVarData DVar;
|
|
|
|
if (Iter == Stack.rend() - 1) {
|
2014-03-18 20:19:12 +08:00
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a region but not in construct]
|
|
|
|
// File-scope or namespace-scope variables referenced in called routines
|
|
|
|
// in the region are shared unless they appear in a threadprivate
|
|
|
|
// directive.
|
|
|
|
// TODO
|
|
|
|
if (!D->isFunctionOrMethodVarDecl())
|
|
|
|
DVar.CKind = OMPC_shared;
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.2, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a region but not in construct]
|
|
|
|
// Variables with static storage duration that are declared in called
|
|
|
|
// routines in the region are shared.
|
|
|
|
if (D->hasGlobalStorage())
|
|
|
|
DVar.CKind = OMPC_shared;
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
return DVar;
|
|
|
|
}
|
2014-01-31 13:15:34 +08:00
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
DVar.DKind = Iter->Directive;
|
2014-01-31 13:15:34 +08:00
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, C/C++, predetermined, p.1]
|
|
|
|
// Variables with automatic storage duration that are declared in a scope
|
|
|
|
// inside the construct are private.
|
|
|
|
if (DVar.DKind != OMPD_parallel) {
|
|
|
|
if (isOpenMPLocal(D, Iter) && D->isLocalVarDecl() &&
|
2014-05-28 13:53:51 +08:00
|
|
|
(D->getStorageClass() == SC_Auto || D->getStorageClass() == SC_None)) {
|
2014-01-31 13:15:34 +08:00
|
|
|
DVar.CKind = OMPC_private;
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
// Explicitly specified attributes and local variables with predetermined
|
|
|
|
// attributes.
|
|
|
|
if (Iter->SharingMap.count(D)) {
|
|
|
|
DVar.RefExpr = Iter->SharingMap[D].RefExpr;
|
|
|
|
DVar.CKind = Iter->SharingMap[D].Attributes;
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, C/C++, implicitly determined, p.1]
|
|
|
|
// In a parallel or task construct, the data-sharing attributes of these
|
|
|
|
// variables are determined by the default clause, if present.
|
|
|
|
switch (Iter->DefaultAttr) {
|
|
|
|
case DSA_shared:
|
|
|
|
DVar.CKind = OMPC_shared;
|
|
|
|
return DVar;
|
|
|
|
case DSA_none:
|
|
|
|
return DVar;
|
|
|
|
case DSA_unspecified:
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, implicitly determined, p.2]
|
|
|
|
// In a parallel construct, if no default clause is present, these
|
|
|
|
// variables are shared.
|
|
|
|
if (DVar.DKind == OMPD_parallel) {
|
|
|
|
DVar.CKind = OMPC_shared;
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, implicitly determined, p.4]
|
|
|
|
// In a task construct, if no default clause is present, a variable that in
|
|
|
|
// the enclosing context is determined to be shared by all implicit tasks
|
|
|
|
// bound to the current team is shared.
|
|
|
|
// TODO
|
|
|
|
if (DVar.DKind == OMPD_task) {
|
|
|
|
DSAVarData DVarTemp;
|
2014-03-02 20:20:24 +08:00
|
|
|
for (StackTy::reverse_iterator I = std::next(Iter),
|
|
|
|
EE = std::prev(Stack.rend());
|
2013-09-07 02:03:48 +08:00
|
|
|
I != EE; ++I) {
|
2014-05-28 13:53:51 +08:00
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables
|
|
|
|
// Referenced
|
2013-09-07 02:03:48 +08:00
|
|
|
// in a Construct, implicitly determined, p.6]
|
|
|
|
// In a task construct, if no default clause is present, a variable
|
|
|
|
// whose data-sharing attribute is not determined by the rules above is
|
|
|
|
// firstprivate.
|
|
|
|
DVarTemp = getDSA(I, D);
|
|
|
|
if (DVarTemp.CKind != OMPC_shared) {
|
2014-05-15 21:04:49 +08:00
|
|
|
DVar.RefExpr = nullptr;
|
2013-09-07 02:03:48 +08:00
|
|
|
DVar.DKind = OMPD_task;
|
2013-10-01 13:32:34 +08:00
|
|
|
DVar.CKind = OMPC_firstprivate;
|
2013-09-07 02:03:48 +08:00
|
|
|
return DVar;
|
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
if (I->Directive == OMPD_parallel)
|
|
|
|
break;
|
2013-09-07 02:03:48 +08:00
|
|
|
}
|
|
|
|
DVar.DKind = OMPD_task;
|
|
|
|
DVar.CKind =
|
2014-05-28 13:53:51 +08:00
|
|
|
(DVarTemp.CKind == OMPC_unknown) ? OMPC_firstprivate : OMPC_shared;
|
2013-09-07 02:03:48 +08:00
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, implicitly determined, p.3]
|
|
|
|
// For constructs other than task, if no default clause is present, these
|
|
|
|
// variables inherit their data-sharing attributes from the enclosing
|
|
|
|
// context.
|
2014-03-02 20:20:24 +08:00
|
|
|
return getDSA(std::next(Iter), D);
|
2013-09-07 02:03:48 +08:00
|
|
|
}
|
|
|
|
|
2014-05-29 22:36:25 +08:00
|
|
|
DeclRefExpr *DSAStackTy::addUniqueAligned(VarDecl *D, DeclRefExpr *NewDE) {
|
|
|
|
assert(Stack.size() > 1 && "Data sharing attributes stack is empty");
|
|
|
|
auto It = Stack.back().AlignedMap.find(D);
|
|
|
|
if (It == Stack.back().AlignedMap.end()) {
|
|
|
|
assert(NewDE && "Unexpected nullptr expr to be added into aligned map");
|
|
|
|
Stack.back().AlignedMap[D] = NewDE;
|
|
|
|
return nullptr;
|
|
|
|
} else {
|
|
|
|
assert(It->second && "Unexpected nullptr expr in the aligned map");
|
|
|
|
return It->second;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
void DSAStackTy::addDSA(VarDecl *D, DeclRefExpr *E, OpenMPClauseKind A) {
|
|
|
|
if (A == OMPC_threadprivate) {
|
|
|
|
Stack[0].SharingMap[D].Attributes = A;
|
|
|
|
Stack[0].SharingMap[D].RefExpr = E;
|
|
|
|
} else {
|
|
|
|
assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
|
|
|
|
Stack.back().SharingMap[D].Attributes = A;
|
|
|
|
Stack.back().SharingMap[D].RefExpr = E;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
bool DSAStackTy::isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter) {
|
2014-01-31 13:15:34 +08:00
|
|
|
if (Stack.size() > 2) {
|
|
|
|
reverse_iterator I = Iter, E = Stack.rend() - 1;
|
2014-05-15 21:04:49 +08:00
|
|
|
Scope *TopScope = nullptr;
|
2014-04-15 16:59:09 +08:00
|
|
|
while (I != E && I->Directive != OMPD_parallel) {
|
2014-01-31 13:15:34 +08:00
|
|
|
++I;
|
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
if (I == E)
|
|
|
|
return false;
|
2014-05-15 21:04:49 +08:00
|
|
|
TopScope = I->CurScope ? I->CurScope->getParent() : nullptr;
|
2014-01-31 13:15:34 +08:00
|
|
|
Scope *CurScope = getCurScope();
|
|
|
|
while (CurScope != TopScope && !CurScope->isDeclScope(D)) {
|
2013-09-07 02:03:48 +08:00
|
|
|
CurScope = CurScope->getParent();
|
2014-01-31 13:15:34 +08:00
|
|
|
}
|
|
|
|
return CurScope != TopScope;
|
2013-09-07 02:03:48 +08:00
|
|
|
}
|
2014-01-31 13:15:34 +08:00
|
|
|
return false;
|
2013-09-07 02:03:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
DSAStackTy::DSAVarData DSAStackTy::getTopDSA(VarDecl *D) {
|
|
|
|
DSAVarData DVar;
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, C/C++, predetermined, p.1]
|
|
|
|
// Variables appearing in threadprivate directives are threadprivate.
|
|
|
|
if (D->getTLSKind() != VarDecl::TLS_None) {
|
|
|
|
DVar.CKind = OMPC_threadprivate;
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
if (Stack[0].SharingMap.count(D)) {
|
|
|
|
DVar.RefExpr = Stack[0].SharingMap[D].RefExpr;
|
|
|
|
DVar.CKind = OMPC_threadprivate;
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, C/C++, predetermined, p.1]
|
|
|
|
// Variables with automatic storage duration that are declared in a scope
|
|
|
|
// inside the construct are private.
|
2014-01-31 13:15:34 +08:00
|
|
|
OpenMPDirectiveKind Kind = getCurrentDirective();
|
|
|
|
if (Kind != OMPD_parallel) {
|
2014-03-02 20:20:24 +08:00
|
|
|
if (isOpenMPLocal(D, std::next(Stack.rbegin())) && D->isLocalVarDecl() &&
|
2014-05-28 13:53:51 +08:00
|
|
|
(D->getStorageClass() == SC_Auto || D->getStorageClass() == SC_None)) {
|
2014-01-31 13:15:34 +08:00
|
|
|
DVar.CKind = OMPC_private;
|
|
|
|
return DVar;
|
2014-04-22 21:09:42 +08:00
|
|
|
}
|
2013-09-07 02:03:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, C/C++, predetermined, p.4]
|
|
|
|
// Static data memebers are shared.
|
|
|
|
if (D->isStaticDataMember()) {
|
2014-05-28 13:53:51 +08:00
|
|
|
// Variables with const-qualified type having no mutable member may be
|
|
|
|
// listed
|
2013-10-01 13:32:34 +08:00
|
|
|
// in a firstprivate clause, even if they are static data members.
|
|
|
|
DSAVarData DVarTemp = hasDSA(D, OMPC_firstprivate);
|
|
|
|
if (DVarTemp.CKind == OMPC_firstprivate && DVarTemp.RefExpr)
|
|
|
|
return DVar;
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
DVar.CKind = OMPC_shared;
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType Type = D->getType().getNonReferenceType().getCanonicalType();
|
|
|
|
bool IsConstant = Type.isConstant(Actions.getASTContext());
|
|
|
|
while (Type->isArrayType()) {
|
|
|
|
QualType ElemType = cast<ArrayType>(Type.getTypePtr())->getElementType();
|
|
|
|
Type = ElemType.getNonReferenceType().getCanonicalType();
|
|
|
|
}
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, C/C++, predetermined, p.6]
|
|
|
|
// Variables with const qualified type having no mutable member are
|
|
|
|
// shared.
|
2014-05-15 21:04:49 +08:00
|
|
|
CXXRecordDecl *RD =
|
|
|
|
Actions.getLangOpts().CPlusPlus ? Type->getAsCXXRecordDecl() : nullptr;
|
2013-09-07 02:03:48 +08:00
|
|
|
if (IsConstant &&
|
|
|
|
!(Actions.getLangOpts().CPlusPlus && RD && RD->hasMutableFields())) {
|
|
|
|
// Variables with const-qualified type having no mutable member may be
|
|
|
|
// listed in a firstprivate clause, even if they are static data members.
|
2013-10-01 13:32:34 +08:00
|
|
|
DSAVarData DVarTemp = hasDSA(D, OMPC_firstprivate);
|
|
|
|
if (DVarTemp.CKind == OMPC_firstprivate && DVarTemp.RefExpr)
|
|
|
|
return DVar;
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
DVar.CKind = OMPC_shared;
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, C/C++, predetermined, p.7]
|
|
|
|
// Variables with static storage duration that are declared in a scope
|
|
|
|
// inside the construct are shared.
|
2014-01-31 13:15:34 +08:00
|
|
|
if (D->isStaticLocal()) {
|
2013-09-07 02:03:48 +08:00
|
|
|
DVar.CKind = OMPC_shared;
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicitly specified attributes and local variables with predetermined
|
|
|
|
// attributes.
|
|
|
|
if (Stack.back().SharingMap.count(D)) {
|
|
|
|
DVar.RefExpr = Stack.back().SharingMap[D].RefExpr;
|
|
|
|
DVar.CKind = Stack.back().SharingMap[D].Attributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
|
|
|
|
DSAStackTy::DSAVarData DSAStackTy::getImplicitDSA(VarDecl *D) {
|
2014-03-02 20:20:24 +08:00
|
|
|
return getDSA(std::next(Stack.rbegin()), D);
|
2013-09-07 02:03:48 +08:00
|
|
|
}
|
|
|
|
|
2013-10-01 13:32:34 +08:00
|
|
|
DSAStackTy::DSAVarData DSAStackTy::hasDSA(VarDecl *D, OpenMPClauseKind CKind,
|
|
|
|
OpenMPDirectiveKind DKind) {
|
2014-03-02 20:20:24 +08:00
|
|
|
for (StackTy::reverse_iterator I = std::next(Stack.rbegin()),
|
|
|
|
E = std::prev(Stack.rend());
|
2013-10-01 13:32:34 +08:00
|
|
|
I != E; ++I) {
|
2014-05-28 13:53:51 +08:00
|
|
|
if (DKind != OMPD_unknown && DKind != I->Directive)
|
|
|
|
continue;
|
2013-10-01 13:32:34 +08:00
|
|
|
DSAVarData DVar = getDSA(I, D);
|
|
|
|
if (DVar.CKind == CKind)
|
|
|
|
return DVar;
|
|
|
|
}
|
|
|
|
return DSAVarData();
|
|
|
|
}
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
void Sema::InitDataSharingAttributesStack() {
|
|
|
|
VarDataSharingAttributesStack = new DSAStackTy(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DSAStack static_cast<DSAStackTy *>(VarDataSharingAttributesStack)
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
void Sema::DestroyDataSharingAttributesStack() { delete DSAStack; }
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
void Sema::StartOpenMPDSABlock(OpenMPDirectiveKind DKind,
|
|
|
|
const DeclarationNameInfo &DirName,
|
|
|
|
Scope *CurScope) {
|
|
|
|
DSAStack->push(DKind, DirName, CurScope);
|
|
|
|
PushExpressionEvaluationContext(PotentiallyEvaluated);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::EndOpenMPDSABlock(Stmt *CurDirective) {
|
|
|
|
DSAStack->pop();
|
|
|
|
DiscardCleanupsInEvaluationContext();
|
|
|
|
PopExpressionEvaluationContext();
|
|
|
|
}
|
|
|
|
|
2013-03-22 14:34:35 +08:00
|
|
|
namespace {
|
|
|
|
|
2013-05-13 12:18:18 +08:00
|
|
|
class VarDeclFilterCCC : public CorrectionCandidateCallback {
|
|
|
|
private:
|
|
|
|
Sema &Actions;
|
2014-05-28 13:53:51 +08:00
|
|
|
|
2013-05-13 12:18:18 +08:00
|
|
|
public:
|
2014-05-28 13:53:51 +08:00
|
|
|
VarDeclFilterCCC(Sema &S) : Actions(S) {}
|
2014-03-12 12:55:44 +08:00
|
|
|
bool ValidateCandidate(const TypoCorrection &Candidate) override {
|
2013-05-13 12:18:18 +08:00
|
|
|
NamedDecl *ND = Candidate.getCorrectionDecl();
|
|
|
|
if (VarDecl *VD = dyn_cast_or_null<VarDecl>(ND)) {
|
|
|
|
return VD->hasGlobalStorage() &&
|
|
|
|
Actions.isDeclInScope(ND, Actions.getCurLexicalContext(),
|
|
|
|
Actions.getCurScope());
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
2014-05-28 13:53:51 +08:00
|
|
|
} // namespace
|
2013-03-22 14:34:35 +08:00
|
|
|
|
2013-05-13 12:18:18 +08:00
|
|
|
ExprResult Sema::ActOnOpenMPIdExpression(Scope *CurScope,
|
|
|
|
CXXScopeSpec &ScopeSpec,
|
|
|
|
const DeclarationNameInfo &Id) {
|
|
|
|
LookupResult Lookup(*this, Id, LookupOrdinaryName);
|
|
|
|
LookupParsedName(Lookup, CurScope, &ScopeSpec, true);
|
2013-03-22 14:34:35 +08:00
|
|
|
|
2013-05-13 12:18:18 +08:00
|
|
|
if (Lookup.isAmbiguous())
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
VarDecl *VD;
|
|
|
|
if (!Lookup.isSingleResult()) {
|
|
|
|
VarDeclFilterCCC Validator(*this);
|
2014-05-15 21:04:49 +08:00
|
|
|
if (TypoCorrection Corrected =
|
|
|
|
CorrectTypo(Id, LookupOrdinaryName, CurScope, nullptr, Validator,
|
|
|
|
CTK_ErrorRecovery)) {
|
2013-08-17 08:46:16 +08:00
|
|
|
diagnoseTypo(Corrected,
|
2014-05-15 21:04:49 +08:00
|
|
|
PDiag(Lookup.empty()
|
|
|
|
? diag::err_undeclared_var_use_suggest
|
|
|
|
: diag::err_omp_expected_var_arg_suggest)
|
|
|
|
<< Id.getName());
|
2013-08-17 08:46:16 +08:00
|
|
|
VD = Corrected.getCorrectionDeclAs<VarDecl>();
|
2013-03-22 14:34:35 +08:00
|
|
|
} else {
|
2013-08-17 08:46:16 +08:00
|
|
|
Diag(Id.getLoc(), Lookup.empty() ? diag::err_undeclared_var_use
|
|
|
|
: diag::err_omp_expected_var_arg)
|
|
|
|
<< Id.getName();
|
|
|
|
return ExprError();
|
2013-03-22 14:34:35 +08:00
|
|
|
}
|
2013-05-13 12:18:18 +08:00
|
|
|
} else {
|
|
|
|
if (!(VD = Lookup.getAsSingle<VarDecl>())) {
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(Id.getLoc(), diag::err_omp_expected_var_arg) << Id.getName();
|
2013-05-13 12:18:18 +08:00
|
|
|
Diag(Lookup.getFoundDecl()->getLocation(), diag::note_declared_at);
|
|
|
|
return ExprError();
|
2013-03-22 14:34:35 +08:00
|
|
|
}
|
2013-05-13 12:18:18 +08:00
|
|
|
}
|
|
|
|
Lookup.suppressDiagnostics();
|
2013-03-22 14:34:35 +08:00
|
|
|
|
2013-05-13 12:18:18 +08:00
|
|
|
// OpenMP [2.9.2, Syntax, C/C++]
|
|
|
|
// Variables must be file-scope, namespace-scope, or static block-scope.
|
|
|
|
if (!VD->hasGlobalStorage()) {
|
|
|
|
Diag(Id.getLoc(), diag::err_omp_global_var_arg)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPDirectiveName(OMPD_threadprivate) << !VD->isStaticLocal();
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
2013-05-13 12:18:18 +08:00
|
|
|
Diag(VD->getLocation(),
|
2014-05-28 13:53:51 +08:00
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-05-13 12:18:18 +08:00
|
|
|
return ExprError();
|
|
|
|
}
|
2013-03-22 14:34:35 +08:00
|
|
|
|
2013-09-26 11:24:06 +08:00
|
|
|
VarDecl *CanonicalVD = VD->getCanonicalDecl();
|
|
|
|
NamedDecl *ND = cast<NamedDecl>(CanonicalVD);
|
2013-05-13 12:18:18 +08:00
|
|
|
// OpenMP [2.9.2, Restrictions, C/C++, p.2]
|
|
|
|
// A threadprivate directive for file-scope variables must appear outside
|
|
|
|
// any definition or declaration.
|
2013-09-26 11:24:06 +08:00
|
|
|
if (CanonicalVD->getDeclContext()->isTranslationUnit() &&
|
|
|
|
!getCurLexicalContext()->isTranslationUnit()) {
|
|
|
|
Diag(Id.getLoc(), diag::err_omp_var_scope)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPDirectiveName(OMPD_threadprivate) << VD;
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-09-26 11:24:06 +08:00
|
|
|
return ExprError();
|
|
|
|
}
|
2013-05-13 12:18:18 +08:00
|
|
|
// OpenMP [2.9.2, Restrictions, C/C++, p.3]
|
|
|
|
// A threadprivate directive for static class member variables must appear
|
|
|
|
// in the class definition, in the same scope in which the member
|
|
|
|
// variables are declared.
|
2013-09-26 11:24:06 +08:00
|
|
|
if (CanonicalVD->isStaticDataMember() &&
|
|
|
|
!CanonicalVD->getDeclContext()->Equals(getCurLexicalContext())) {
|
|
|
|
Diag(Id.getLoc(), diag::err_omp_var_scope)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPDirectiveName(OMPD_threadprivate) << VD;
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-09-26 11:24:06 +08:00
|
|
|
return ExprError();
|
|
|
|
}
|
2013-05-13 12:18:18 +08:00
|
|
|
// OpenMP [2.9.2, Restrictions, C/C++, p.4]
|
|
|
|
// A threadprivate directive for namespace-scope variables must appear
|
|
|
|
// outside any definition or declaration other than the namespace
|
|
|
|
// definition itself.
|
2013-09-26 11:24:06 +08:00
|
|
|
if (CanonicalVD->getDeclContext()->isNamespace() &&
|
|
|
|
(!getCurLexicalContext()->isFileContext() ||
|
|
|
|
!getCurLexicalContext()->Encloses(CanonicalVD->getDeclContext()))) {
|
|
|
|
Diag(Id.getLoc(), diag::err_omp_var_scope)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPDirectiveName(OMPD_threadprivate) << VD;
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-09-26 11:24:06 +08:00
|
|
|
return ExprError();
|
|
|
|
}
|
2013-05-13 12:18:18 +08:00
|
|
|
// OpenMP [2.9.2, Restrictions, C/C++, p.6]
|
|
|
|
// A threadprivate directive for static block-scope variables must appear
|
|
|
|
// in the scope of the variable and not in a nested scope.
|
2013-09-26 11:24:06 +08:00
|
|
|
if (CanonicalVD->isStaticLocal() && CurScope &&
|
|
|
|
!isDeclInScope(ND, getCurLexicalContext(), CurScope)) {
|
2013-05-13 12:18:18 +08:00
|
|
|
Diag(Id.getLoc(), diag::err_omp_var_scope)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPDirectiveName(OMPD_threadprivate) << VD;
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-05-13 12:18:18 +08:00
|
|
|
return ExprError();
|
|
|
|
}
|
2013-03-22 14:34:35 +08:00
|
|
|
|
2013-05-13 12:18:18 +08:00
|
|
|
// OpenMP [2.9.2, Restrictions, C/C++, p.2-6]
|
|
|
|
// A threadprivate directive must lexically precede all references to any
|
|
|
|
// of the variables in its list.
|
|
|
|
if (VD->isUsed()) {
|
|
|
|
Diag(Id.getLoc(), diag::err_omp_var_used)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPDirectiveName(OMPD_threadprivate) << VD;
|
2013-05-13 12:18:18 +08:00
|
|
|
return ExprError();
|
2013-03-22 14:34:35 +08:00
|
|
|
}
|
2013-05-13 12:18:18 +08:00
|
|
|
|
|
|
|
QualType ExprType = VD->getType().getNonReferenceType();
|
2014-03-07 16:03:37 +08:00
|
|
|
ExprResult DE = BuildDeclRefExpr(VD, ExprType, VK_LValue, Id.getLoc());
|
2013-05-13 12:18:18 +08:00
|
|
|
return DE;
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
Sema::DeclGroupPtrTy
|
|
|
|
Sema::ActOnOpenMPThreadprivateDirective(SourceLocation Loc,
|
|
|
|
ArrayRef<Expr *> VarList) {
|
2013-05-13 12:18:18 +08:00
|
|
|
if (OMPThreadPrivateDecl *D = CheckOMPThreadPrivateDecl(Loc, VarList)) {
|
2013-03-22 14:34:35 +08:00
|
|
|
CurContext->addDecl(D);
|
|
|
|
return DeclGroupPtrTy::make(DeclGroupRef(D));
|
|
|
|
}
|
|
|
|
return DeclGroupPtrTy();
|
|
|
|
}
|
|
|
|
|
2014-05-28 15:40:25 +08:00
|
|
|
namespace {
|
|
|
|
class LocalVarRefChecker : public ConstStmtVisitor<LocalVarRefChecker, bool> {
|
|
|
|
Sema &SemaRef;
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool VisitDeclRefExpr(const DeclRefExpr *E) {
|
|
|
|
if (auto VD = dyn_cast<VarDecl>(E->getDecl())) {
|
|
|
|
if (VD->hasLocalStorage()) {
|
|
|
|
SemaRef.Diag(E->getLocStart(),
|
|
|
|
diag::err_omp_local_var_in_threadprivate_init)
|
|
|
|
<< E->getSourceRange();
|
|
|
|
SemaRef.Diag(VD->getLocation(), diag::note_defined_here)
|
|
|
|
<< VD << VD->getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool VisitStmt(const Stmt *S) {
|
|
|
|
for (auto Child : S->children()) {
|
|
|
|
if (Child && Visit(Child))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
LocalVarRefChecker(Sema &SemaRef) : SemaRef(SemaRef) {}
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
OMPThreadPrivateDecl *
|
|
|
|
Sema::CheckOMPThreadPrivateDecl(SourceLocation Loc, ArrayRef<Expr *> VarList) {
|
2013-05-13 12:18:18 +08:00
|
|
|
SmallVector<Expr *, 8> Vars;
|
2014-05-28 13:53:51 +08:00
|
|
|
for (auto &RefExpr : VarList) {
|
|
|
|
DeclRefExpr *DE = cast<DeclRefExpr>(RefExpr);
|
2013-05-13 12:18:18 +08:00
|
|
|
VarDecl *VD = cast<VarDecl>(DE->getDecl());
|
|
|
|
SourceLocation ILoc = DE->getExprLoc();
|
2013-03-22 14:34:35 +08:00
|
|
|
|
|
|
|
// OpenMP [2.9.2, Restrictions, C/C++, p.10]
|
|
|
|
// A threadprivate variable must not have an incomplete type.
|
|
|
|
if (RequireCompleteType(ILoc, VD->getType(),
|
2013-05-13 12:18:18 +08:00
|
|
|
diag::err_omp_threadprivate_incomplete_type)) {
|
2013-03-22 14:34:35 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.2, Restrictions, C/C++, p.10]
|
|
|
|
// A threadprivate variable must not have a reference type.
|
|
|
|
if (VD->getType()->isReferenceType()) {
|
|
|
|
Diag(ILoc, diag::err_omp_ref_type_arg)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPDirectiveName(OMPD_threadprivate) << VD->getType();
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-03-22 14:34:35 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-04-13 10:43:54 +08:00
|
|
|
// Check if this is a TLS variable.
|
|
|
|
if (VD->getTLSKind()) {
|
2013-03-22 14:34:35 +08:00
|
|
|
Diag(ILoc, diag::err_omp_var_thread_local) << VD;
|
2014-05-28 13:53:51 +08:00
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-03-22 14:34:35 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-05-28 15:40:25 +08:00
|
|
|
// Check if initial value of threadprivate variable reference variable with
|
|
|
|
// local storage (it is not supported by runtime).
|
|
|
|
if (auto Init = VD->getAnyInitializer()) {
|
|
|
|
LocalVarRefChecker Checker(*this);
|
|
|
|
if (Checker.Visit(Init)) continue;
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
Vars.push_back(RefExpr);
|
2014-03-07 16:03:37 +08:00
|
|
|
DSAStack->addDSA(VD, DE, OMPC_threadprivate);
|
2013-03-22 14:34:35 +08:00
|
|
|
}
|
2014-05-15 21:04:49 +08:00
|
|
|
OMPThreadPrivateDecl *D = nullptr;
|
2014-01-31 13:15:34 +08:00
|
|
|
if (!Vars.empty()) {
|
|
|
|
D = OMPThreadPrivateDecl::Create(Context, getCurLexicalContext(), Loc,
|
|
|
|
Vars);
|
|
|
|
D->setAccess(AS_public);
|
|
|
|
}
|
|
|
|
return D;
|
2013-03-22 14:34:35 +08:00
|
|
|
}
|
2013-05-13 12:18:18 +08:00
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
namespace {
|
|
|
|
class DSAAttrChecker : public StmtVisitor<DSAAttrChecker, void> {
|
|
|
|
DSAStackTy *Stack;
|
|
|
|
Sema &Actions;
|
|
|
|
bool ErrorFound;
|
|
|
|
CapturedStmt *CS;
|
2013-10-01 13:32:34 +08:00
|
|
|
llvm::SmallVector<Expr *, 8> ImplicitFirstprivate;
|
2014-05-28 13:53:51 +08:00
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
public:
|
|
|
|
void VisitDeclRefExpr(DeclRefExpr *E) {
|
2014-05-28 13:53:51 +08:00
|
|
|
if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) {
|
2013-09-07 02:03:48 +08:00
|
|
|
// Skip internally declared variables.
|
2014-05-28 13:53:51 +08:00
|
|
|
if (VD->isLocalVarDecl() && !CS->capturesVariable(VD))
|
|
|
|
return;
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
SourceLocation ELoc = E->getExprLoc();
|
|
|
|
|
|
|
|
OpenMPDirectiveKind DKind = Stack->getCurrentDirective();
|
|
|
|
DSAStackTy::DSAVarData DVar = Stack->getTopDSA(VD);
|
|
|
|
if (DVar.CKind != OMPC_unknown) {
|
|
|
|
if (DKind == OMPD_task && DVar.CKind != OMPC_shared &&
|
2014-03-31 11:36:38 +08:00
|
|
|
!Stack->isThreadPrivate(VD) && !DVar.RefExpr)
|
2013-10-01 13:32:34 +08:00
|
|
|
ImplicitFirstprivate.push_back(DVar.RefExpr);
|
2013-09-07 02:03:48 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// The default(none) clause requires that each variable that is referenced
|
|
|
|
// in the construct, and does not have a predetermined data-sharing
|
|
|
|
// attribute, must have its data-sharing attribute explicitly determined
|
|
|
|
// by being listed in a data-sharing attribute clause.
|
|
|
|
if (DVar.CKind == OMPC_unknown && Stack->getDefaultDSA() == DSA_none &&
|
|
|
|
(DKind == OMPD_parallel || DKind == OMPD_task)) {
|
|
|
|
ErrorFound = true;
|
|
|
|
Actions.Diag(ELoc, diag::err_omp_no_dsa_for_variable) << VD;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.3.6, Restrictions, p.2]
|
|
|
|
// A list item that appears in a reduction clause of the innermost
|
|
|
|
// enclosing worksharing or parallel construct may not be accessed in an
|
|
|
|
// explicit task.
|
|
|
|
// TODO:
|
|
|
|
|
|
|
|
// Define implicit data-sharing attributes for task.
|
|
|
|
DVar = Stack->getImplicitDSA(VD);
|
2013-10-01 13:32:34 +08:00
|
|
|
if (DKind == OMPD_task && DVar.CKind != OMPC_shared)
|
|
|
|
ImplicitFirstprivate.push_back(DVar.RefExpr);
|
2013-09-07 02:03:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void VisitOMPExecutableDirective(OMPExecutableDirective *S) {
|
2014-05-28 13:53:51 +08:00
|
|
|
for (auto C : S->clauses())
|
|
|
|
if (C)
|
2013-09-07 02:03:48 +08:00
|
|
|
for (StmtRange R = C->children(); R; ++R)
|
|
|
|
if (Stmt *Child = *R)
|
|
|
|
Visit(Child);
|
|
|
|
}
|
|
|
|
void VisitStmt(Stmt *S) {
|
2014-05-28 13:53:51 +08:00
|
|
|
for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I != E;
|
|
|
|
++I)
|
2013-09-07 02:03:48 +08:00
|
|
|
if (Stmt *Child = *I)
|
|
|
|
if (!isa<OMPExecutableDirective>(Child))
|
|
|
|
Visit(Child);
|
2014-05-28 13:53:51 +08:00
|
|
|
}
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
bool isErrorFound() { return ErrorFound; }
|
2013-10-01 13:32:34 +08:00
|
|
|
ArrayRef<Expr *> getImplicitFirstprivate() { return ImplicitFirstprivate; }
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
DSAAttrChecker(DSAStackTy *S, Sema &Actions, CapturedStmt *CS)
|
2014-05-28 13:53:51 +08:00
|
|
|
: Stack(S), Actions(Actions), ErrorFound(false), CS(CS) {}
|
2013-09-07 02:03:48 +08:00
|
|
|
};
|
2014-05-28 13:53:51 +08:00
|
|
|
} // namespace
|
2013-09-07 02:03:48 +08:00
|
|
|
|
2014-05-06 18:08:46 +08:00
|
|
|
void Sema::ActOnOpenMPRegionStart(OpenMPDirectiveKind DKind, SourceLocation Loc,
|
|
|
|
Scope *CurScope) {
|
|
|
|
switch (DKind) {
|
|
|
|
case OMPD_parallel: {
|
|
|
|
QualType KmpInt32Ty = Context.getIntTypeForBitwidth(32, 1);
|
|
|
|
QualType KmpInt32PtrTy = Context.getPointerType(KmpInt32Ty);
|
|
|
|
Sema::CapturedParamNameType Params[3] = {
|
|
|
|
std::make_pair(".global_tid.", KmpInt32PtrTy),
|
|
|
|
std::make_pair(".bound_tid.", KmpInt32PtrTy),
|
|
|
|
std::make_pair(StringRef(), QualType()) // __context with shared vars
|
|
|
|
};
|
|
|
|
ActOnCapturedRegionStart(Loc, CurScope, CR_OpenMP, Params);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OMPD_simd: {
|
|
|
|
Sema::CapturedParamNameType Params[1] = {
|
|
|
|
std::make_pair(StringRef(), QualType()) // __context with shared vars
|
|
|
|
};
|
|
|
|
ActOnCapturedRegionStart(Loc, CurScope, CR_OpenMP, Params);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OMPD_threadprivate:
|
|
|
|
case OMPD_task:
|
|
|
|
llvm_unreachable("OpenMP Directive is not allowed");
|
|
|
|
case OMPD_unknown:
|
|
|
|
llvm_unreachable("Unknown OpenMP directive");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 11:13:43 +08:00
|
|
|
StmtResult Sema::ActOnOpenMPExecutableDirective(OpenMPDirectiveKind Kind,
|
|
|
|
ArrayRef<OMPClause *> Clauses,
|
|
|
|
Stmt *AStmt,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation EndLoc) {
|
2013-09-07 02:03:48 +08:00
|
|
|
assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
|
|
|
|
|
2013-07-19 11:13:43 +08:00
|
|
|
StmtResult Res = StmtError();
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
// Check default data sharing attributes for referenced variables.
|
|
|
|
DSAAttrChecker DSAChecker(DSAStack, *this, cast<CapturedStmt>(AStmt));
|
|
|
|
DSAChecker.Visit(cast<CapturedStmt>(AStmt)->getCapturedStmt());
|
|
|
|
if (DSAChecker.isErrorFound())
|
|
|
|
return StmtError();
|
2013-10-01 13:32:34 +08:00
|
|
|
// Generate list of implicitly defined firstprivate variables.
|
|
|
|
llvm::SmallVector<OMPClause *, 8> ClausesWithImplicit;
|
|
|
|
ClausesWithImplicit.append(Clauses.begin(), Clauses.end());
|
|
|
|
|
|
|
|
bool ErrorFound = false;
|
|
|
|
if (!DSAChecker.getImplicitFirstprivate().empty()) {
|
2014-05-28 13:53:51 +08:00
|
|
|
if (OMPClause *Implicit = ActOnOpenMPFirstprivateClause(
|
|
|
|
DSAChecker.getImplicitFirstprivate(), SourceLocation(),
|
|
|
|
SourceLocation(), SourceLocation())) {
|
2013-10-01 13:32:34 +08:00
|
|
|
ClausesWithImplicit.push_back(Implicit);
|
|
|
|
ErrorFound = cast<OMPFirstprivateClause>(Implicit)->varlist_size() !=
|
2014-05-28 13:53:51 +08:00
|
|
|
DSAChecker.getImplicitFirstprivate().size();
|
2013-10-01 13:32:34 +08:00
|
|
|
} else
|
|
|
|
ErrorFound = true;
|
|
|
|
}
|
2013-09-07 02:03:48 +08:00
|
|
|
|
2013-07-19 11:13:43 +08:00
|
|
|
switch (Kind) {
|
|
|
|
case OMPD_parallel:
|
2014-05-28 13:53:51 +08:00
|
|
|
Res = ActOnOpenMPParallelDirective(ClausesWithImplicit, AStmt, StartLoc,
|
|
|
|
EndLoc);
|
2013-07-19 11:13:43 +08:00
|
|
|
break;
|
2014-02-27 16:29:12 +08:00
|
|
|
case OMPD_simd:
|
2014-05-28 13:53:51 +08:00
|
|
|
Res =
|
|
|
|
ActOnOpenMPSimdDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc);
|
2014-02-27 16:29:12 +08:00
|
|
|
break;
|
2013-07-19 11:13:43 +08:00
|
|
|
case OMPD_threadprivate:
|
|
|
|
case OMPD_task:
|
|
|
|
llvm_unreachable("OpenMP Directive is not allowed");
|
|
|
|
case OMPD_unknown:
|
|
|
|
llvm_unreachable("Unknown OpenMP directive");
|
|
|
|
}
|
2013-10-01 13:32:34 +08:00
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
if (ErrorFound)
|
|
|
|
return StmtError();
|
2013-07-19 11:13:43 +08:00
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
StmtResult Sema::ActOnOpenMPParallelDirective(ArrayRef<OMPClause *> Clauses,
|
|
|
|
Stmt *AStmt,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation EndLoc) {
|
2014-05-06 18:08:46 +08:00
|
|
|
assert(AStmt && isa<CapturedStmt>(AStmt) && "Captured statement expected");
|
|
|
|
CapturedStmt *CS = cast<CapturedStmt>(AStmt);
|
|
|
|
// 1.2.2 OpenMP Language Terminology
|
|
|
|
// Structured block - An executable statement with a single entry at the
|
|
|
|
// top and a single exit at the bottom.
|
|
|
|
// The point of exit cannot be a branch out of the structured block.
|
|
|
|
// longjmp() and throw() must not violate the entry/exit criteria.
|
|
|
|
CS->getCapturedDecl()->setNothrow();
|
|
|
|
|
2013-07-19 11:13:43 +08:00
|
|
|
getCurFunction()->setHasBranchProtectedScope();
|
|
|
|
|
2014-05-29 22:05:12 +08:00
|
|
|
return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses,
|
|
|
|
AStmt);
|
2013-07-19 11:13:43 +08:00
|
|
|
}
|
|
|
|
|
2014-06-03 18:16:47 +08:00
|
|
|
namespace {
|
|
|
|
/// \brief Helper class for checking canonical form of the OpenMP loops and
|
|
|
|
/// extracting iteration space of each loop in the loop nest, that will be used
|
|
|
|
/// for IR generation.
|
|
|
|
class OpenMPIterationSpaceChecker {
|
|
|
|
/// \brief Reference to Sema.
|
|
|
|
Sema &SemaRef;
|
|
|
|
/// \brief A location for diagnostics (when there is no some better location).
|
|
|
|
SourceLocation DefaultLoc;
|
|
|
|
/// \brief A location for diagnostics (when increment is not compatible).
|
|
|
|
SourceLocation ConditionLoc;
|
|
|
|
/// \brief A source location for referring to condition later.
|
|
|
|
SourceRange ConditionSrcRange;
|
|
|
|
/// \brief Loop variable.
|
|
|
|
VarDecl *Var;
|
|
|
|
/// \brief Lower bound (initializer for the var).
|
|
|
|
Expr *LB;
|
|
|
|
/// \brief Upper bound.
|
|
|
|
Expr *UB;
|
|
|
|
/// \brief Loop step (increment).
|
|
|
|
Expr *Step;
|
|
|
|
/// \brief This flag is true when condition is one of:
|
|
|
|
/// Var < UB
|
|
|
|
/// Var <= UB
|
|
|
|
/// UB > Var
|
|
|
|
/// UB >= Var
|
|
|
|
bool TestIsLessOp;
|
|
|
|
/// \brief This flag is true when condition is strict ( < or > ).
|
|
|
|
bool TestIsStrictOp;
|
|
|
|
/// \brief This flag is true when step is subtracted on each iteration.
|
|
|
|
bool SubtractStep;
|
|
|
|
|
|
|
|
public:
|
|
|
|
OpenMPIterationSpaceChecker(Sema &SemaRef, SourceLocation DefaultLoc)
|
|
|
|
: SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc),
|
|
|
|
ConditionSrcRange(SourceRange()), Var(nullptr), LB(nullptr),
|
|
|
|
UB(nullptr), Step(nullptr), TestIsLessOp(false), TestIsStrictOp(false),
|
|
|
|
SubtractStep(false) {}
|
|
|
|
/// \brief Check init-expr for canonical loop form and save loop counter
|
|
|
|
/// variable - #Var and its initialization value - #LB.
|
|
|
|
bool CheckInit(Stmt *S);
|
|
|
|
/// \brief Check test-expr for canonical form, save upper-bound (#UB), flags
|
|
|
|
/// for less/greater and for strict/non-strict comparison.
|
|
|
|
bool CheckCond(Expr *S);
|
|
|
|
/// \brief Check incr-expr for canonical loop form and return true if it
|
|
|
|
/// does not conform, otherwise save loop step (#Step).
|
|
|
|
bool CheckInc(Expr *S);
|
|
|
|
/// \brief Return the loop counter variable.
|
|
|
|
VarDecl *GetLoopVar() const { return Var; }
|
|
|
|
/// \brief Return true if any expression is dependent.
|
|
|
|
bool Dependent() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// \brief Check the right-hand side of an assignment in the increment
|
|
|
|
/// expression.
|
|
|
|
bool CheckIncRHS(Expr *RHS);
|
|
|
|
/// \brief Helper to set loop counter variable and its initializer.
|
|
|
|
bool SetVarAndLB(VarDecl *NewVar, Expr *NewLB);
|
|
|
|
/// \brief Helper to set upper bound.
|
|
|
|
bool SetUB(Expr *NewUB, bool LessOp, bool StrictOp, const SourceRange &SR,
|
|
|
|
const SourceLocation &SL);
|
|
|
|
/// \brief Helper to set loop increment.
|
|
|
|
bool SetStep(Expr *NewStep, bool Subtract);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool OpenMPIterationSpaceChecker::Dependent() const {
|
|
|
|
if (!Var) {
|
|
|
|
assert(!LB && !UB && !Step);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Var->getType()->isDependentType() || (LB && LB->isValueDependent()) ||
|
|
|
|
(UB && UB->isValueDependent()) || (Step && Step->isValueDependent());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenMPIterationSpaceChecker::SetVarAndLB(VarDecl *NewVar, Expr *NewLB) {
|
|
|
|
// State consistency checking to ensure correct usage.
|
|
|
|
assert(Var == nullptr && LB == nullptr && UB == nullptr && Step == nullptr &&
|
|
|
|
!TestIsLessOp && !TestIsStrictOp);
|
|
|
|
if (!NewVar || !NewLB)
|
|
|
|
return true;
|
|
|
|
Var = NewVar;
|
|
|
|
LB = NewLB;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenMPIterationSpaceChecker::SetUB(Expr *NewUB, bool LessOp, bool StrictOp,
|
|
|
|
const SourceRange &SR,
|
|
|
|
const SourceLocation &SL) {
|
|
|
|
// State consistency checking to ensure correct usage.
|
|
|
|
assert(Var != nullptr && LB != nullptr && UB == nullptr && Step == nullptr &&
|
|
|
|
!TestIsLessOp && !TestIsStrictOp);
|
|
|
|
if (!NewUB)
|
|
|
|
return true;
|
|
|
|
UB = NewUB;
|
|
|
|
TestIsLessOp = LessOp;
|
|
|
|
TestIsStrictOp = StrictOp;
|
|
|
|
ConditionSrcRange = SR;
|
|
|
|
ConditionLoc = SL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenMPIterationSpaceChecker::SetStep(Expr *NewStep, bool Subtract) {
|
|
|
|
// State consistency checking to ensure correct usage.
|
|
|
|
assert(Var != nullptr && LB != nullptr && Step == nullptr);
|
|
|
|
if (!NewStep)
|
|
|
|
return true;
|
|
|
|
if (!NewStep->isValueDependent()) {
|
|
|
|
// Check that the step is integer expression.
|
|
|
|
SourceLocation StepLoc = NewStep->getLocStart();
|
|
|
|
ExprResult Val =
|
|
|
|
SemaRef.PerformOpenMPImplicitIntegerConversion(StepLoc, NewStep);
|
|
|
|
if (Val.isInvalid())
|
|
|
|
return true;
|
|
|
|
NewStep = Val.get();
|
|
|
|
|
|
|
|
// OpenMP [2.6, Canonical Loop Form, Restrictions]
|
|
|
|
// If test-expr is of form var relational-op b and relational-op is < or
|
|
|
|
// <= then incr-expr must cause var to increase on each iteration of the
|
|
|
|
// loop. If test-expr is of form var relational-op b and relational-op is
|
|
|
|
// > or >= then incr-expr must cause var to decrease on each iteration of
|
|
|
|
// the loop.
|
|
|
|
// If test-expr is of form b relational-op var and relational-op is < or
|
|
|
|
// <= then incr-expr must cause var to decrease on each iteration of the
|
|
|
|
// loop. If test-expr is of form b relational-op var and relational-op is
|
|
|
|
// > or >= then incr-expr must cause var to increase on each iteration of
|
|
|
|
// the loop.
|
|
|
|
llvm::APSInt Result;
|
|
|
|
bool IsConstant = NewStep->isIntegerConstantExpr(Result, SemaRef.Context);
|
|
|
|
bool IsUnsigned = !NewStep->getType()->hasSignedIntegerRepresentation();
|
|
|
|
bool IsConstNeg =
|
|
|
|
IsConstant && Result.isSigned() && (Subtract != Result.isNegative());
|
|
|
|
bool IsConstZero = IsConstant && !Result.getBoolValue();
|
|
|
|
if (UB && (IsConstZero ||
|
|
|
|
(TestIsLessOp ? (IsConstNeg || (IsUnsigned && Subtract))
|
|
|
|
: (!IsConstNeg || (IsUnsigned && !Subtract))))) {
|
|
|
|
SemaRef.Diag(NewStep->getExprLoc(),
|
|
|
|
diag::err_omp_loop_incr_not_compatible)
|
|
|
|
<< Var << TestIsLessOp << NewStep->getSourceRange();
|
|
|
|
SemaRef.Diag(ConditionLoc,
|
|
|
|
diag::note_omp_loop_cond_requres_compatible_incr)
|
|
|
|
<< TestIsLessOp << ConditionSrcRange;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Step = NewStep;
|
|
|
|
SubtractStep = Subtract;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenMPIterationSpaceChecker::CheckInit(Stmt *S) {
|
|
|
|
// Check init-expr for canonical loop form and save loop counter
|
|
|
|
// variable - #Var and its initialization value - #LB.
|
|
|
|
// OpenMP [2.6] Canonical loop form. init-expr may be one of the following:
|
|
|
|
// var = lb
|
|
|
|
// integer-type var = lb
|
|
|
|
// random-access-iterator-type var = lb
|
|
|
|
// pointer-type var = lb
|
|
|
|
//
|
|
|
|
if (!S) {
|
|
|
|
SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_init);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (Expr *E = dyn_cast<Expr>(S))
|
|
|
|
S = E->IgnoreParens();
|
|
|
|
if (auto BO = dyn_cast<BinaryOperator>(S)) {
|
|
|
|
if (BO->getOpcode() == BO_Assign)
|
|
|
|
if (auto DRE = dyn_cast<DeclRefExpr>(BO->getLHS()->IgnoreParens()))
|
|
|
|
return SetVarAndLB(dyn_cast<VarDecl>(DRE->getDecl()), BO->getLHS());
|
|
|
|
} else if (auto DS = dyn_cast<DeclStmt>(S)) {
|
|
|
|
if (DS->isSingleDecl()) {
|
|
|
|
if (auto Var = dyn_cast_or_null<VarDecl>(DS->getSingleDecl())) {
|
|
|
|
if (Var->hasInit()) {
|
|
|
|
// Accept non-canonical init form here but emit ext. warning.
|
|
|
|
if (Var->getInitStyle() != VarDecl::CInit)
|
|
|
|
SemaRef.Diag(S->getLocStart(),
|
|
|
|
diag::ext_omp_loop_not_canonical_init)
|
|
|
|
<< S->getSourceRange();
|
|
|
|
return SetVarAndLB(Var, Var->getInit());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S))
|
|
|
|
if (CE->getOperator() == OO_Equal)
|
|
|
|
if (auto DRE = dyn_cast<DeclRefExpr>(CE->getArg(0)))
|
|
|
|
return SetVarAndLB(dyn_cast<VarDecl>(DRE->getDecl()), CE->getArg(1));
|
|
|
|
|
|
|
|
SemaRef.Diag(S->getLocStart(), diag::err_omp_loop_not_canonical_init)
|
|
|
|
<< S->getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Ignore parenthesises, implicit casts, copy constructor and return the
|
|
|
|
/// variable (which may be the loop variable) if possible.
|
|
|
|
static const VarDecl *GetInitVarDecl(const Expr *E) {
|
|
|
|
if (!E)
|
|
|
|
return 0;
|
|
|
|
E = E->IgnoreParenImpCasts();
|
|
|
|
if (auto *CE = dyn_cast_or_null<CXXConstructExpr>(E))
|
|
|
|
if (const CXXConstructorDecl *Ctor = CE->getConstructor())
|
|
|
|
if (Ctor->isCopyConstructor() && CE->getNumArgs() == 1 &&
|
|
|
|
CE->getArg(0) != nullptr)
|
|
|
|
E = CE->getArg(0)->IgnoreParenImpCasts();
|
|
|
|
auto DRE = dyn_cast_or_null<DeclRefExpr>(E);
|
|
|
|
if (!DRE)
|
|
|
|
return nullptr;
|
|
|
|
return dyn_cast<VarDecl>(DRE->getDecl());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenMPIterationSpaceChecker::CheckCond(Expr *S) {
|
|
|
|
// Check test-expr for canonical form, save upper-bound UB, flags for
|
|
|
|
// less/greater and for strict/non-strict comparison.
|
|
|
|
// OpenMP [2.6] Canonical loop form. Test-expr may be one of the following:
|
|
|
|
// var relational-op b
|
|
|
|
// b relational-op var
|
|
|
|
//
|
|
|
|
if (!S) {
|
|
|
|
SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_cond) << Var;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
S = S->IgnoreParenImpCasts();
|
|
|
|
SourceLocation CondLoc = S->getLocStart();
|
|
|
|
if (auto BO = dyn_cast<BinaryOperator>(S)) {
|
|
|
|
if (BO->isRelationalOp()) {
|
|
|
|
if (GetInitVarDecl(BO->getLHS()) == Var)
|
|
|
|
return SetUB(BO->getRHS(),
|
|
|
|
(BO->getOpcode() == BO_LT || BO->getOpcode() == BO_LE),
|
|
|
|
(BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
|
|
|
|
BO->getSourceRange(), BO->getOperatorLoc());
|
|
|
|
if (GetInitVarDecl(BO->getRHS()) == Var)
|
|
|
|
return SetUB(BO->getLHS(),
|
|
|
|
(BO->getOpcode() == BO_GT || BO->getOpcode() == BO_GE),
|
|
|
|
(BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
|
|
|
|
BO->getSourceRange(), BO->getOperatorLoc());
|
|
|
|
}
|
|
|
|
} else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
|
|
|
|
if (CE->getNumArgs() == 2) {
|
|
|
|
auto Op = CE->getOperator();
|
|
|
|
switch (Op) {
|
|
|
|
case OO_Greater:
|
|
|
|
case OO_GreaterEqual:
|
|
|
|
case OO_Less:
|
|
|
|
case OO_LessEqual:
|
|
|
|
if (GetInitVarDecl(CE->getArg(0)) == Var)
|
|
|
|
return SetUB(CE->getArg(1), Op == OO_Less || Op == OO_LessEqual,
|
|
|
|
Op == OO_Less || Op == OO_Greater, CE->getSourceRange(),
|
|
|
|
CE->getOperatorLoc());
|
|
|
|
if (GetInitVarDecl(CE->getArg(1)) == Var)
|
|
|
|
return SetUB(CE->getArg(0), Op == OO_Greater || Op == OO_GreaterEqual,
|
|
|
|
Op == OO_Less || Op == OO_Greater, CE->getSourceRange(),
|
|
|
|
CE->getOperatorLoc());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SemaRef.Diag(CondLoc, diag::err_omp_loop_not_canonical_cond)
|
|
|
|
<< S->getSourceRange() << Var;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenMPIterationSpaceChecker::CheckIncRHS(Expr *RHS) {
|
|
|
|
// RHS of canonical loop form increment can be:
|
|
|
|
// var + incr
|
|
|
|
// incr + var
|
|
|
|
// var - incr
|
|
|
|
//
|
|
|
|
RHS = RHS->IgnoreParenImpCasts();
|
|
|
|
if (auto BO = dyn_cast<BinaryOperator>(RHS)) {
|
|
|
|
if (BO->isAdditiveOp()) {
|
|
|
|
bool IsAdd = BO->getOpcode() == BO_Add;
|
|
|
|
if (GetInitVarDecl(BO->getLHS()) == Var)
|
|
|
|
return SetStep(BO->getRHS(), !IsAdd);
|
|
|
|
if (IsAdd && GetInitVarDecl(BO->getRHS()) == Var)
|
|
|
|
return SetStep(BO->getLHS(), false);
|
|
|
|
}
|
|
|
|
} else if (auto CE = dyn_cast<CXXOperatorCallExpr>(RHS)) {
|
|
|
|
bool IsAdd = CE->getOperator() == OO_Plus;
|
|
|
|
if ((IsAdd || CE->getOperator() == OO_Minus) && CE->getNumArgs() == 2) {
|
|
|
|
if (GetInitVarDecl(CE->getArg(0)) == Var)
|
|
|
|
return SetStep(CE->getArg(1), !IsAdd);
|
|
|
|
if (IsAdd && GetInitVarDecl(CE->getArg(1)) == Var)
|
|
|
|
return SetStep(CE->getArg(0), false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SemaRef.Diag(RHS->getLocStart(), diag::err_omp_loop_not_canonical_incr)
|
|
|
|
<< RHS->getSourceRange() << Var;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenMPIterationSpaceChecker::CheckInc(Expr *S) {
|
|
|
|
// Check incr-expr for canonical loop form and return true if it
|
|
|
|
// does not conform.
|
|
|
|
// OpenMP [2.6] Canonical loop form. Test-expr may be one of the following:
|
|
|
|
// ++var
|
|
|
|
// var++
|
|
|
|
// --var
|
|
|
|
// var--
|
|
|
|
// var += incr
|
|
|
|
// var -= incr
|
|
|
|
// var = var + incr
|
|
|
|
// var = incr + var
|
|
|
|
// var = var - incr
|
|
|
|
//
|
|
|
|
if (!S) {
|
|
|
|
SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_incr) << Var;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
S = S->IgnoreParens();
|
|
|
|
if (auto UO = dyn_cast<UnaryOperator>(S)) {
|
|
|
|
if (UO->isIncrementDecrementOp() && GetInitVarDecl(UO->getSubExpr()) == Var)
|
|
|
|
return SetStep(
|
|
|
|
SemaRef.ActOnIntegerConstant(UO->getLocStart(),
|
|
|
|
(UO->isDecrementOp() ? -1 : 1)).get(),
|
|
|
|
false);
|
|
|
|
} else if (auto BO = dyn_cast<BinaryOperator>(S)) {
|
|
|
|
switch (BO->getOpcode()) {
|
|
|
|
case BO_AddAssign:
|
|
|
|
case BO_SubAssign:
|
|
|
|
if (GetInitVarDecl(BO->getLHS()) == Var)
|
|
|
|
return SetStep(BO->getRHS(), BO->getOpcode() == BO_SubAssign);
|
|
|
|
break;
|
|
|
|
case BO_Assign:
|
|
|
|
if (GetInitVarDecl(BO->getLHS()) == Var)
|
|
|
|
return CheckIncRHS(BO->getRHS());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (auto CE = dyn_cast<CXXOperatorCallExpr>(S)) {
|
|
|
|
switch (CE->getOperator()) {
|
|
|
|
case OO_PlusPlus:
|
|
|
|
case OO_MinusMinus:
|
|
|
|
if (GetInitVarDecl(CE->getArg(0)) == Var)
|
|
|
|
return SetStep(
|
|
|
|
SemaRef.ActOnIntegerConstant(
|
|
|
|
CE->getLocStart(),
|
|
|
|
((CE->getOperator() == OO_MinusMinus) ? -1 : 1)).get(),
|
|
|
|
false);
|
|
|
|
break;
|
|
|
|
case OO_PlusEqual:
|
|
|
|
case OO_MinusEqual:
|
|
|
|
if (GetInitVarDecl(CE->getArg(0)) == Var)
|
|
|
|
return SetStep(CE->getArg(1), CE->getOperator() == OO_MinusEqual);
|
|
|
|
break;
|
|
|
|
case OO_Equal:
|
|
|
|
if (GetInitVarDecl(CE->getArg(0)) == Var)
|
|
|
|
return CheckIncRHS(CE->getArg(1));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SemaRef.Diag(S->getLocStart(), diag::err_omp_loop_not_canonical_incr)
|
|
|
|
<< S->getSourceRange() << Var;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Called on a for stmt to check and extract its iteration space
|
|
|
|
/// for further processing (such as collapsing).
|
|
|
|
static bool CheckOpenMPIterationSpace(OpenMPDirectiveKind DKind, Stmt *S,
|
|
|
|
Sema &SemaRef, DSAStackTy &DSA) {
|
|
|
|
// OpenMP [2.6, Canonical Loop Form]
|
|
|
|
// for (init-expr; test-expr; incr-expr) structured-block
|
|
|
|
auto For = dyn_cast_or_null<ForStmt>(S);
|
|
|
|
if (!For) {
|
|
|
|
SemaRef.Diag(S->getLocStart(), diag::err_omp_not_for)
|
|
|
|
<< getOpenMPDirectiveName(DKind);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
assert(For->getBody());
|
|
|
|
|
|
|
|
OpenMPIterationSpaceChecker ISC(SemaRef, For->getForLoc());
|
|
|
|
|
|
|
|
// Check init.
|
|
|
|
Stmt *Init = For->getInit();
|
|
|
|
if (ISC.CheckInit(Init)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HasErrors = false;
|
|
|
|
|
|
|
|
// Check loop variable's type.
|
|
|
|
VarDecl *Var = ISC.GetLoopVar();
|
|
|
|
|
|
|
|
// OpenMP [2.6, Canonical Loop Form]
|
|
|
|
// Var is one of the following:
|
|
|
|
// A variable of signed or unsigned integer type.
|
|
|
|
// For C++, a variable of a random access iterator type.
|
|
|
|
// For C, a variable of a pointer type.
|
|
|
|
QualType VarType = Var->getType();
|
|
|
|
if (!VarType->isDependentType() && !VarType->isIntegerType() &&
|
|
|
|
!VarType->isPointerType() &&
|
|
|
|
!(SemaRef.getLangOpts().CPlusPlus && VarType->isOverloadableType())) {
|
|
|
|
SemaRef.Diag(Init->getLocStart(), diag::err_omp_loop_variable_type)
|
|
|
|
<< SemaRef.getLangOpts().CPlusPlus;
|
|
|
|
HasErrors = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.14.1.1, Data-sharing Attribute Rules for Variables Referenced in
|
|
|
|
// a Construct, C/C++].
|
|
|
|
// The loop iteration variable(s) in the associated for-loop(s) of a for or
|
|
|
|
// parallel for construct may be listed in a private or lastprivate clause.
|
|
|
|
DSAStackTy::DSAVarData DVar = DSA.getTopDSA(Var);
|
|
|
|
if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_linear &&
|
|
|
|
DVar.CKind != OMPC_threadprivate) {
|
|
|
|
// The loop iteration variable in the associated for-loop of a simd
|
|
|
|
// construct with just one associated for-loop may be listed in a linear
|
|
|
|
// clause with a constant-linear-step that is the increment of the
|
|
|
|
// associated for-loop.
|
|
|
|
// FIXME: allow OMPC_lastprivate when it is ready.
|
|
|
|
assert(DKind == OMPD_simd && "DSA for non-simd loop vars");
|
|
|
|
SemaRef.Diag(Init->getLocStart(), diag::err_omp_loop_var_dsa)
|
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
|
|
|
if (DVar.RefExpr)
|
|
|
|
SemaRef.Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_explicit_dsa)
|
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
|
|
|
else
|
|
|
|
SemaRef.Diag(Var->getLocation(), diag::note_omp_predetermined_dsa)
|
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
|
|
|
HasErrors = true;
|
|
|
|
} else {
|
|
|
|
// Make the loop iteration variable private by default.
|
|
|
|
DSA.addDSA(Var, nullptr, OMPC_private);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check test-expr.
|
|
|
|
HasErrors |= ISC.CheckCond(For->getCond());
|
|
|
|
|
|
|
|
// Check incr-expr.
|
|
|
|
HasErrors |= ISC.CheckInc(For->getInc());
|
|
|
|
|
|
|
|
if (ISC.Dependent())
|
|
|
|
return HasErrors;
|
|
|
|
|
|
|
|
// FIXME: Build loop's iteration space representation.
|
|
|
|
return HasErrors;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief A helper routine to skip no-op (attributed, compound) stmts get the
|
|
|
|
/// next nested for loop. If \a IgnoreCaptured is true, it skips captured stmt
|
|
|
|
/// to get the first for loop.
|
|
|
|
static Stmt *IgnoreContainerStmts(Stmt *S, bool IgnoreCaptured) {
|
|
|
|
if (IgnoreCaptured)
|
|
|
|
if (auto CapS = dyn_cast_or_null<CapturedStmt>(S))
|
|
|
|
S = CapS->getCapturedStmt();
|
|
|
|
// OpenMP [2.8.1, simd construct, Restrictions]
|
|
|
|
// All loops associated with the construct must be perfectly nested; that is,
|
|
|
|
// there must be no intervening code nor any OpenMP directive between any two
|
|
|
|
// loops.
|
|
|
|
while (true) {
|
|
|
|
if (auto AS = dyn_cast_or_null<AttributedStmt>(S))
|
|
|
|
S = AS->getSubStmt();
|
|
|
|
else if (auto CS = dyn_cast_or_null<CompoundStmt>(S)) {
|
|
|
|
if (CS->size() != 1)
|
|
|
|
break;
|
|
|
|
S = CS->body_back();
|
|
|
|
} else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return S;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Called on a for stmt to check itself and nested loops (if any).
|
|
|
|
static bool CheckOpenMPLoop(OpenMPDirectiveKind DKind, unsigned NestedLoopCount,
|
|
|
|
Stmt *AStmt, Sema &SemaRef, DSAStackTy &DSA) {
|
|
|
|
// This is helper routine for loop directives (e.g., 'for', 'simd',
|
|
|
|
// 'for simd', etc.).
|
|
|
|
assert(NestedLoopCount == 1);
|
|
|
|
Stmt *CurStmt = IgnoreContainerStmts(AStmt, true);
|
|
|
|
for (unsigned Cnt = 0; Cnt < NestedLoopCount; ++Cnt) {
|
|
|
|
if (CheckOpenMPIterationSpace(DKind, CurStmt, SemaRef, DSA))
|
|
|
|
return true;
|
|
|
|
// Move on to the next nested for loop, or to the loop body.
|
|
|
|
CurStmt = IgnoreContainerStmts(cast<ForStmt>(CurStmt)->getBody(), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Build resulting iteration space for IR generation (collapsing
|
|
|
|
// iteration spaces when loop count > 1 ('collapse' clause)).
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-27 16:29:12 +08:00
|
|
|
StmtResult Sema::ActOnOpenMPSimdDirective(ArrayRef<OMPClause *> Clauses,
|
2014-05-28 13:53:51 +08:00
|
|
|
Stmt *AStmt, SourceLocation StartLoc,
|
2014-02-27 16:29:12 +08:00
|
|
|
SourceLocation EndLoc) {
|
2014-06-03 18:16:47 +08:00
|
|
|
// In presence of clause 'collapse', it will define the nested loops number.
|
|
|
|
// For now, pass default value of 1.
|
|
|
|
if (CheckOpenMPLoop(OMPD_simd, 1, AStmt, *this, *DSAStack))
|
2014-02-27 16:29:12 +08:00
|
|
|
return StmtError();
|
|
|
|
|
|
|
|
getCurFunction()->setHasBranchProtectedScope();
|
2014-05-29 22:05:12 +08:00
|
|
|
return OMPSimdDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
|
2014-02-27 16:29:12 +08:00
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPSingleExprClause(OpenMPClauseKind Kind, Expr *Expr,
|
2014-02-13 13:29:23 +08:00
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
2014-05-15 21:04:49 +08:00
|
|
|
OMPClause *Res = nullptr;
|
2014-02-13 13:29:23 +08:00
|
|
|
switch (Kind) {
|
|
|
|
case OMPC_if:
|
|
|
|
Res = ActOnOpenMPIfClause(Expr, StartLoc, LParenLoc, EndLoc);
|
|
|
|
break;
|
2014-03-06 14:15:19 +08:00
|
|
|
case OMPC_num_threads:
|
|
|
|
Res = ActOnOpenMPNumThreadsClause(Expr, StartLoc, LParenLoc, EndLoc);
|
|
|
|
break;
|
2014-03-21 12:51:18 +08:00
|
|
|
case OMPC_safelen:
|
|
|
|
Res = ActOnOpenMPSafelenClause(Expr, StartLoc, LParenLoc, EndLoc);
|
|
|
|
break;
|
2014-05-27 23:12:19 +08:00
|
|
|
case OMPC_collapse:
|
|
|
|
Res = ActOnOpenMPCollapseClause(Expr, StartLoc, LParenLoc, EndLoc);
|
|
|
|
break;
|
2014-02-13 13:29:23 +08:00
|
|
|
case OMPC_default:
|
2014-05-06 14:04:14 +08:00
|
|
|
case OMPC_proc_bind:
|
2014-02-13 13:29:23 +08:00
|
|
|
case OMPC_private:
|
|
|
|
case OMPC_firstprivate:
|
|
|
|
case OMPC_shared:
|
2014-04-22 21:09:42 +08:00
|
|
|
case OMPC_linear:
|
2014-05-29 22:36:25 +08:00
|
|
|
case OMPC_aligned:
|
2014-03-31 11:36:38 +08:00
|
|
|
case OMPC_copyin:
|
2014-02-13 13:29:23 +08:00
|
|
|
case OMPC_threadprivate:
|
|
|
|
case OMPC_unknown:
|
|
|
|
llvm_unreachable("Clause is not allowed.");
|
|
|
|
}
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPIfClause(Expr *Condition, SourceLocation StartLoc,
|
2014-02-13 13:29:23 +08:00
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
Expr *ValExpr = Condition;
|
|
|
|
if (!Condition->isValueDependent() && !Condition->isTypeDependent() &&
|
|
|
|
!Condition->isInstantiationDependent() &&
|
|
|
|
!Condition->containsUnexpandedParameterPack()) {
|
|
|
|
ExprResult Val = ActOnBooleanCondition(DSAStack->getCurScope(),
|
2014-05-28 13:53:51 +08:00
|
|
|
Condition->getExprLoc(), Condition);
|
2014-02-13 13:29:23 +08:00
|
|
|
if (Val.isInvalid())
|
2014-05-15 21:04:49 +08:00
|
|
|
return nullptr;
|
2014-02-13 13:29:23 +08:00
|
|
|
|
2014-05-29 18:55:11 +08:00
|
|
|
ValExpr = Val.get();
|
2014-02-13 13:29:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return new (Context) OMPIfClause(ValExpr, StartLoc, LParenLoc, EndLoc);
|
|
|
|
}
|
|
|
|
|
2014-06-03 18:16:47 +08:00
|
|
|
ExprResult Sema::PerformOpenMPImplicitIntegerConversion(SourceLocation Loc,
|
|
|
|
Expr *Op) {
|
2014-03-06 14:15:19 +08:00
|
|
|
if (!Op)
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
class IntConvertDiagnoser : public ICEConvertDiagnoser {
|
|
|
|
public:
|
|
|
|
IntConvertDiagnoser()
|
2014-05-28 13:53:51 +08:00
|
|
|
: ICEConvertDiagnoser(/*AllowScopedEnumerations*/ false, false, true) {}
|
2014-03-12 12:55:44 +08:00
|
|
|
SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
|
|
|
|
QualType T) override {
|
2014-03-06 14:15:19 +08:00
|
|
|
return S.Diag(Loc, diag::err_omp_not_integral) << T;
|
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc,
|
|
|
|
QualType T) override {
|
2014-03-06 14:15:19 +08:00
|
|
|
return S.Diag(Loc, diag::err_omp_incomplete_type) << T;
|
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc,
|
|
|
|
QualType T,
|
|
|
|
QualType ConvTy) override {
|
2014-03-06 14:15:19 +08:00
|
|
|
return S.Diag(Loc, diag::err_omp_explicit_conversion) << T << ConvTy;
|
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
|
|
|
|
QualType ConvTy) override {
|
2014-03-06 14:15:19 +08:00
|
|
|
return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< ConvTy->isEnumeralType() << ConvTy;
|
2014-03-06 14:15:19 +08:00
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
|
|
|
|
QualType T) override {
|
2014-03-06 14:15:19 +08:00
|
|
|
return S.Diag(Loc, diag::err_omp_ambiguous_conversion) << T;
|
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
|
|
|
|
QualType ConvTy) override {
|
2014-03-06 14:15:19 +08:00
|
|
|
return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< ConvTy->isEnumeralType() << ConvTy;
|
2014-03-06 14:15:19 +08:00
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
SemaDiagnosticBuilder diagnoseConversion(Sema &, SourceLocation, QualType,
|
|
|
|
QualType) override {
|
2014-03-06 14:15:19 +08:00
|
|
|
llvm_unreachable("conversion functions are permitted");
|
|
|
|
}
|
|
|
|
} ConvertDiagnoser;
|
|
|
|
return PerformContextualImplicitConversion(Loc, Op, ConvertDiagnoser);
|
|
|
|
}
|
|
|
|
|
|
|
|
OMPClause *Sema::ActOnOpenMPNumThreadsClause(Expr *NumThreads,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
Expr *ValExpr = NumThreads;
|
|
|
|
if (!NumThreads->isValueDependent() && !NumThreads->isTypeDependent() &&
|
|
|
|
!NumThreads->isInstantiationDependent() &&
|
|
|
|
!NumThreads->containsUnexpandedParameterPack()) {
|
|
|
|
SourceLocation NumThreadsLoc = NumThreads->getLocStart();
|
|
|
|
ExprResult Val =
|
2014-06-03 18:16:47 +08:00
|
|
|
PerformOpenMPImplicitIntegerConversion(NumThreadsLoc, NumThreads);
|
2014-03-06 14:15:19 +08:00
|
|
|
if (Val.isInvalid())
|
2014-05-15 21:04:49 +08:00
|
|
|
return nullptr;
|
2014-03-06 14:15:19 +08:00
|
|
|
|
2014-05-29 18:55:11 +08:00
|
|
|
ValExpr = Val.get();
|
2014-03-06 14:15:19 +08:00
|
|
|
|
|
|
|
// OpenMP [2.5, Restrictions]
|
|
|
|
// The num_threads expression must evaluate to a positive integer value.
|
|
|
|
llvm::APSInt Result;
|
2014-05-28 13:53:51 +08:00
|
|
|
if (ValExpr->isIntegerConstantExpr(Result, Context) && Result.isSigned() &&
|
|
|
|
!Result.isStrictlyPositive()) {
|
2014-03-06 14:15:19 +08:00
|
|
|
Diag(NumThreadsLoc, diag::err_omp_negative_expression_in_clause)
|
|
|
|
<< "num_threads" << NumThreads->getSourceRange();
|
2014-05-15 21:04:49 +08:00
|
|
|
return nullptr;
|
2014-03-06 14:15:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
return new (Context)
|
|
|
|
OMPNumThreadsClause(ValExpr, StartLoc, LParenLoc, EndLoc);
|
2014-03-06 14:15:19 +08:00
|
|
|
}
|
|
|
|
|
2014-03-21 12:51:18 +08:00
|
|
|
ExprResult Sema::VerifyPositiveIntegerConstantInClause(Expr *E,
|
|
|
|
OpenMPClauseKind CKind) {
|
|
|
|
if (!E)
|
|
|
|
return ExprError();
|
|
|
|
if (E->isValueDependent() || E->isTypeDependent() ||
|
|
|
|
E->isInstantiationDependent() || E->containsUnexpandedParameterPack())
|
2014-05-29 22:05:12 +08:00
|
|
|
return E;
|
2014-03-21 12:51:18 +08:00
|
|
|
llvm::APSInt Result;
|
|
|
|
ExprResult ICE = VerifyIntegerConstantExpression(E, &Result);
|
|
|
|
if (ICE.isInvalid())
|
|
|
|
return ExprError();
|
|
|
|
if (!Result.isStrictlyPositive()) {
|
|
|
|
Diag(E->getExprLoc(), diag::err_omp_negative_expression_in_clause)
|
|
|
|
<< getOpenMPClauseName(CKind) << E->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
return ICE;
|
|
|
|
}
|
|
|
|
|
|
|
|
OMPClause *Sema::ActOnOpenMPSafelenClause(Expr *Len, SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
// OpenMP [2.8.1, simd construct, Description]
|
|
|
|
// The parameter of the safelen clause must be a constant
|
|
|
|
// positive integer expression.
|
|
|
|
ExprResult Safelen = VerifyPositiveIntegerConstantInClause(Len, OMPC_safelen);
|
|
|
|
if (Safelen.isInvalid())
|
2014-05-15 21:04:49 +08:00
|
|
|
return nullptr;
|
2014-03-21 12:51:18 +08:00
|
|
|
return new (Context)
|
2014-05-29 18:55:11 +08:00
|
|
|
OMPSafelenClause(Safelen.get(), StartLoc, LParenLoc, EndLoc);
|
2014-03-21 12:51:18 +08:00
|
|
|
}
|
|
|
|
|
2014-06-04 15:53:32 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops,
|
|
|
|
SourceLocation StartLoc,
|
2014-05-27 23:12:19 +08:00
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
2014-06-04 15:53:32 +08:00
|
|
|
// OpenMP [2.7.1, loop construct, Description]
|
2014-05-27 23:12:19 +08:00
|
|
|
// OpenMP [2.8.1, simd construct, Description]
|
2014-06-04 15:53:32 +08:00
|
|
|
// OpenMP [2.9.6, distribute construct, Description]
|
2014-05-27 23:12:19 +08:00
|
|
|
// The parameter of the collapse clause must be a constant
|
|
|
|
// positive integer expression.
|
2014-06-04 15:53:32 +08:00
|
|
|
ExprResult NumForLoopsResult =
|
|
|
|
VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse);
|
|
|
|
if (NumForLoopsResult.isInvalid())
|
2014-05-27 23:12:19 +08:00
|
|
|
return nullptr;
|
|
|
|
return new (Context)
|
2014-06-04 15:53:32 +08:00
|
|
|
OMPCollapseClause(NumForLoopsResult.get(), StartLoc, LParenLoc, EndLoc);
|
2014-05-27 23:12:19 +08:00
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPSimpleClause(
|
|
|
|
OpenMPClauseKind Kind, unsigned Argument, SourceLocation ArgumentLoc,
|
|
|
|
SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) {
|
2014-05-15 21:04:49 +08:00
|
|
|
OMPClause *Res = nullptr;
|
2013-07-19 11:13:43 +08:00
|
|
|
switch (Kind) {
|
|
|
|
case OMPC_default:
|
2013-09-07 02:03:48 +08:00
|
|
|
Res =
|
2014-05-28 13:53:51 +08:00
|
|
|
ActOnOpenMPDefaultClause(static_cast<OpenMPDefaultClauseKind>(Argument),
|
|
|
|
ArgumentLoc, StartLoc, LParenLoc, EndLoc);
|
2013-07-19 11:13:43 +08:00
|
|
|
break;
|
2014-05-06 14:04:14 +08:00
|
|
|
case OMPC_proc_bind:
|
2014-05-28 13:53:51 +08:00
|
|
|
Res = ActOnOpenMPProcBindClause(
|
|
|
|
static_cast<OpenMPProcBindClauseKind>(Argument), ArgumentLoc, StartLoc,
|
|
|
|
LParenLoc, EndLoc);
|
2014-05-06 14:04:14 +08:00
|
|
|
break;
|
2014-02-13 13:29:23 +08:00
|
|
|
case OMPC_if:
|
2014-03-06 14:15:19 +08:00
|
|
|
case OMPC_num_threads:
|
2014-03-21 12:51:18 +08:00
|
|
|
case OMPC_safelen:
|
2014-05-27 23:12:19 +08:00
|
|
|
case OMPC_collapse:
|
2013-07-19 11:13:43 +08:00
|
|
|
case OMPC_private:
|
2013-10-01 13:32:34 +08:00
|
|
|
case OMPC_firstprivate:
|
2013-09-07 02:03:48 +08:00
|
|
|
case OMPC_shared:
|
2014-04-22 21:09:42 +08:00
|
|
|
case OMPC_linear:
|
2014-05-29 22:36:25 +08:00
|
|
|
case OMPC_aligned:
|
2014-03-31 11:36:38 +08:00
|
|
|
case OMPC_copyin:
|
2013-07-19 11:13:43 +08:00
|
|
|
case OMPC_threadprivate:
|
|
|
|
case OMPC_unknown:
|
|
|
|
llvm_unreachable("Clause is not allowed.");
|
|
|
|
}
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
OMPClause *Sema::ActOnOpenMPDefaultClause(OpenMPDefaultClauseKind Kind,
|
|
|
|
SourceLocation KindKwLoc,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
if (Kind == OMPC_DEFAULT_unknown) {
|
|
|
|
std::string Values;
|
2014-05-12 12:23:46 +08:00
|
|
|
static_assert(OMPC_DEFAULT_unknown > 0,
|
|
|
|
"OMPC_DEFAULT_unknown not greater than 0");
|
2014-03-22 01:34:28 +08:00
|
|
|
std::string Sep(", ");
|
2014-05-12 12:23:46 +08:00
|
|
|
for (unsigned i = 0; i < OMPC_DEFAULT_unknown; ++i) {
|
2013-07-19 11:13:43 +08:00
|
|
|
Values += "'";
|
|
|
|
Values += getOpenMPSimpleClauseTypeName(OMPC_default, i);
|
|
|
|
Values += "'";
|
|
|
|
switch (i) {
|
2014-05-12 12:23:46 +08:00
|
|
|
case OMPC_DEFAULT_unknown - 2:
|
2013-07-19 11:13:43 +08:00
|
|
|
Values += " or ";
|
|
|
|
break;
|
2014-05-12 12:23:46 +08:00
|
|
|
case OMPC_DEFAULT_unknown - 1:
|
2013-07-19 11:13:43 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Values += Sep;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Diag(KindKwLoc, diag::err_omp_unexpected_clause_value)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< Values << getOpenMPClauseName(OMPC_default);
|
2014-05-15 21:04:49 +08:00
|
|
|
return nullptr;
|
2013-07-19 11:13:43 +08:00
|
|
|
}
|
2013-09-07 02:03:48 +08:00
|
|
|
switch (Kind) {
|
|
|
|
case OMPC_DEFAULT_none:
|
|
|
|
DSAStack->setDefaultDSANone();
|
|
|
|
break;
|
|
|
|
case OMPC_DEFAULT_shared:
|
|
|
|
DSAStack->setDefaultDSAShared();
|
|
|
|
break;
|
2014-02-13 13:29:23 +08:00
|
|
|
case OMPC_DEFAULT_unknown:
|
|
|
|
llvm_unreachable("Clause kind is not allowed.");
|
2013-09-07 02:03:48 +08:00
|
|
|
break;
|
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
return new (Context)
|
|
|
|
OMPDefaultClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
|
2013-07-19 11:13:43 +08:00
|
|
|
}
|
|
|
|
|
2014-05-06 14:04:14 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPProcBindClause(OpenMPProcBindClauseKind Kind,
|
|
|
|
SourceLocation KindKwLoc,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
if (Kind == OMPC_PROC_BIND_unknown) {
|
|
|
|
std::string Values;
|
|
|
|
std::string Sep(", ");
|
|
|
|
for (unsigned i = 0; i < OMPC_PROC_BIND_unknown; ++i) {
|
|
|
|
Values += "'";
|
|
|
|
Values += getOpenMPSimpleClauseTypeName(OMPC_proc_bind, i);
|
|
|
|
Values += "'";
|
|
|
|
switch (i) {
|
|
|
|
case OMPC_PROC_BIND_unknown - 2:
|
|
|
|
Values += " or ";
|
|
|
|
break;
|
|
|
|
case OMPC_PROC_BIND_unknown - 1:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Values += Sep;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Diag(KindKwLoc, diag::err_omp_unexpected_clause_value)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< Values << getOpenMPClauseName(OMPC_proc_bind);
|
2014-05-15 21:04:49 +08:00
|
|
|
return nullptr;
|
2014-05-06 14:04:14 +08:00
|
|
|
}
|
2014-05-28 13:53:51 +08:00
|
|
|
return new (Context)
|
|
|
|
OMPProcBindClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
|
2014-05-06 14:04:14 +08:00
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
OMPClause *
|
|
|
|
Sema::ActOnOpenMPVarListClause(OpenMPClauseKind Kind, ArrayRef<Expr *> VarList,
|
|
|
|
Expr *TailExpr, SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation ColonLoc, SourceLocation EndLoc) {
|
2014-05-15 21:04:49 +08:00
|
|
|
OMPClause *Res = nullptr;
|
2013-07-19 11:13:43 +08:00
|
|
|
switch (Kind) {
|
|
|
|
case OMPC_private:
|
|
|
|
Res = ActOnOpenMPPrivateClause(VarList, StartLoc, LParenLoc, EndLoc);
|
|
|
|
break;
|
2013-10-01 13:32:34 +08:00
|
|
|
case OMPC_firstprivate:
|
|
|
|
Res = ActOnOpenMPFirstprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
|
|
|
|
break;
|
2013-09-07 02:03:48 +08:00
|
|
|
case OMPC_shared:
|
|
|
|
Res = ActOnOpenMPSharedClause(VarList, StartLoc, LParenLoc, EndLoc);
|
|
|
|
break;
|
2014-04-22 21:09:42 +08:00
|
|
|
case OMPC_linear:
|
|
|
|
Res = ActOnOpenMPLinearClause(VarList, TailExpr, StartLoc, LParenLoc,
|
|
|
|
ColonLoc, EndLoc);
|
|
|
|
break;
|
2014-05-29 22:36:25 +08:00
|
|
|
case OMPC_aligned:
|
|
|
|
Res = ActOnOpenMPAlignedClause(VarList, TailExpr, StartLoc, LParenLoc,
|
|
|
|
ColonLoc, EndLoc);
|
|
|
|
break;
|
2014-03-31 11:36:38 +08:00
|
|
|
case OMPC_copyin:
|
|
|
|
Res = ActOnOpenMPCopyinClause(VarList, StartLoc, LParenLoc, EndLoc);
|
|
|
|
break;
|
2014-02-13 13:29:23 +08:00
|
|
|
case OMPC_if:
|
2014-03-06 14:15:19 +08:00
|
|
|
case OMPC_num_threads:
|
2014-03-21 12:51:18 +08:00
|
|
|
case OMPC_safelen:
|
2014-05-27 23:12:19 +08:00
|
|
|
case OMPC_collapse:
|
2013-07-19 11:13:43 +08:00
|
|
|
case OMPC_default:
|
2014-05-06 14:04:14 +08:00
|
|
|
case OMPC_proc_bind:
|
2013-07-19 11:13:43 +08:00
|
|
|
case OMPC_threadprivate:
|
|
|
|
case OMPC_unknown:
|
|
|
|
llvm_unreachable("Clause is not allowed.");
|
|
|
|
}
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
OMPClause *Sema::ActOnOpenMPPrivateClause(ArrayRef<Expr *> VarList,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
SmallVector<Expr *, 8> Vars;
|
2014-05-28 13:53:51 +08:00
|
|
|
for (auto &RefExpr : VarList) {
|
|
|
|
assert(RefExpr && "NULL expr in OpenMP private clause.");
|
|
|
|
if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
|
2013-07-19 11:13:43 +08:00
|
|
|
// It will be analyzed later.
|
2014-05-28 13:53:51 +08:00
|
|
|
Vars.push_back(RefExpr);
|
2013-07-19 11:13:43 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
SourceLocation ELoc = RefExpr->getExprLoc();
|
2013-07-19 11:13:43 +08:00
|
|
|
// OpenMP [2.1, C/C++]
|
|
|
|
// A list item is a variable name.
|
|
|
|
// OpenMP [2.9.3.3, Restrictions, p.1]
|
|
|
|
// A variable that is part of another variable (as an array or
|
|
|
|
// structure element) cannot appear in a private clause.
|
2014-05-28 13:53:51 +08:00
|
|
|
DeclRefExpr *DE = dyn_cast_or_null<DeclRefExpr>(RefExpr);
|
2013-07-19 11:13:43 +08:00
|
|
|
if (!DE || !isa<VarDecl>(DE->getDecl())) {
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
|
2013-07-19 11:13:43 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Decl *D = DE->getDecl();
|
|
|
|
VarDecl *VD = cast<VarDecl>(D);
|
|
|
|
|
|
|
|
QualType Type = VD->getType();
|
|
|
|
if (Type->isDependentType() || Type->isInstantiationDependentType()) {
|
|
|
|
// It will be analyzed later.
|
|
|
|
Vars.push_back(DE);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
|
|
|
|
// A variable that appears in a private clause must not have an incomplete
|
|
|
|
// type or a reference type.
|
|
|
|
if (RequireCompleteType(ELoc, Type,
|
|
|
|
diag::err_omp_private_incomplete_type)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (Type->isReferenceType()) {
|
|
|
|
Diag(ELoc, diag::err_omp_clause_ref_type_arg)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(OMPC_private) << Type;
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-07-19 11:13:43 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.3.3, Restrictions, C/C++, p.1]
|
|
|
|
// A variable of class type (or array thereof) that appears in a private
|
|
|
|
// clause requires an accesible, unambiguous default constructor for the
|
|
|
|
// class type.
|
|
|
|
while (Type.getNonReferenceType()->isArrayType()) {
|
2014-05-28 13:53:51 +08:00
|
|
|
Type = cast<ArrayType>(Type.getNonReferenceType().getTypePtr())
|
|
|
|
->getElementType();
|
2013-07-19 11:13:43 +08:00
|
|
|
}
|
2014-05-15 21:04:49 +08:00
|
|
|
CXXRecordDecl *RD = getLangOpts().CPlusPlus
|
|
|
|
? Type.getNonReferenceType()->getAsCXXRecordDecl()
|
|
|
|
: nullptr;
|
2013-07-19 11:13:43 +08:00
|
|
|
if (RD) {
|
|
|
|
CXXConstructorDecl *CD = LookupDefaultConstructor(RD);
|
|
|
|
PartialDiagnostic PD =
|
2014-05-28 13:53:51 +08:00
|
|
|
PartialDiagnostic(PartialDiagnostic::NullDiagnostic());
|
|
|
|
if (!CD || CheckConstructorAccess(
|
|
|
|
ELoc, CD, InitializedEntity::InitializeTemporary(Type),
|
|
|
|
CD->getAccess(), PD) == AR_inaccessible ||
|
2013-07-19 11:13:43 +08:00
|
|
|
CD->isDeleted()) {
|
|
|
|
Diag(ELoc, diag::err_omp_required_method)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(OMPC_private) << 0;
|
2013-07-19 11:13:43 +08:00
|
|
|
bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
|
|
|
|
VarDecl::DeclarationOnly;
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-07-19 11:13:43 +08:00
|
|
|
Diag(RD->getLocation(), diag::note_previous_decl) << RD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MarkFunctionReferenced(ELoc, CD);
|
|
|
|
DiagnoseUseOfDecl(CD, ELoc);
|
|
|
|
|
|
|
|
CXXDestructorDecl *DD = RD->getDestructor();
|
|
|
|
if (DD) {
|
|
|
|
if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
|
|
|
|
DD->isDeleted()) {
|
|
|
|
Diag(ELoc, diag::err_omp_required_method)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(OMPC_private) << 4;
|
2013-07-19 11:13:43 +08:00
|
|
|
bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
|
|
|
|
VarDecl::DeclarationOnly;
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-07-19 11:13:43 +08:00
|
|
|
Diag(RD->getLocation(), diag::note_previous_decl) << RD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MarkFunctionReferenced(ELoc, DD);
|
|
|
|
DiagnoseUseOfDecl(DD, ELoc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct]
|
|
|
|
// Variables with the predetermined data-sharing attributes may not be
|
|
|
|
// listed in data-sharing attributes clauses, except for the cases
|
|
|
|
// listed below. For these exceptions only, listing a predetermined
|
|
|
|
// variable in a data-sharing attribute clause is allowed and overrides
|
|
|
|
// the variable's predetermined data-sharing attributes.
|
|
|
|
DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD);
|
|
|
|
if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_private) {
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
|
|
|
|
<< getOpenMPClauseName(OMPC_private);
|
2013-09-07 02:03:48 +08:00
|
|
|
if (DVar.RefExpr) {
|
|
|
|
Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_explicit_dsa)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
2013-09-07 02:03:48 +08:00
|
|
|
} else {
|
|
|
|
Diag(VD->getLocation(), diag::note_omp_predetermined_dsa)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
2013-09-07 02:03:48 +08:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
DSAStack->addDSA(VD, DE, OMPC_private);
|
2013-07-19 11:13:43 +08:00
|
|
|
Vars.push_back(DE);
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
if (Vars.empty())
|
|
|
|
return nullptr;
|
2013-07-19 11:13:43 +08:00
|
|
|
|
|
|
|
return OMPPrivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
|
|
|
|
}
|
|
|
|
|
2013-10-01 13:32:34 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPFirstprivateClause(ArrayRef<Expr *> VarList,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
SmallVector<Expr *, 8> Vars;
|
2014-05-28 13:53:51 +08:00
|
|
|
for (auto &RefExpr : VarList) {
|
|
|
|
assert(RefExpr && "NULL expr in OpenMP firstprivate clause.");
|
|
|
|
if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
|
2013-10-01 13:32:34 +08:00
|
|
|
// It will be analyzed later.
|
2014-05-28 13:53:51 +08:00
|
|
|
Vars.push_back(RefExpr);
|
2013-10-01 13:32:34 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
SourceLocation ELoc = RefExpr->getExprLoc();
|
2013-10-01 13:32:34 +08:00
|
|
|
// OpenMP [2.1, C/C++]
|
|
|
|
// A list item is a variable name.
|
|
|
|
// OpenMP [2.9.3.3, Restrictions, p.1]
|
|
|
|
// A variable that is part of another variable (as an array or
|
|
|
|
// structure element) cannot appear in a private clause.
|
2014-05-28 13:53:51 +08:00
|
|
|
DeclRefExpr *DE = dyn_cast_or_null<DeclRefExpr>(RefExpr);
|
2013-10-01 13:32:34 +08:00
|
|
|
if (!DE || !isa<VarDecl>(DE->getDecl())) {
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
|
2013-10-01 13:32:34 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Decl *D = DE->getDecl();
|
|
|
|
VarDecl *VD = cast<VarDecl>(D);
|
|
|
|
|
|
|
|
QualType Type = VD->getType();
|
|
|
|
if (Type->isDependentType() || Type->isInstantiationDependentType()) {
|
|
|
|
// It will be analyzed later.
|
|
|
|
Vars.push_back(DE);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.3.3, Restrictions, C/C++, p.3]
|
|
|
|
// A variable that appears in a private clause must not have an incomplete
|
|
|
|
// type or a reference type.
|
|
|
|
if (RequireCompleteType(ELoc, Type,
|
|
|
|
diag::err_omp_firstprivate_incomplete_type)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (Type->isReferenceType()) {
|
|
|
|
Diag(ELoc, diag::err_omp_clause_ref_type_arg)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(OMPC_firstprivate) << Type;
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-10-01 13:32:34 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.3.4, Restrictions, C/C++, p.1]
|
|
|
|
// A variable of class type (or array thereof) that appears in a private
|
|
|
|
// clause requires an accesible, unambiguous copy constructor for the
|
|
|
|
// class type.
|
|
|
|
Type = Context.getBaseElementType(Type);
|
2014-05-15 21:04:49 +08:00
|
|
|
CXXRecordDecl *RD = getLangOpts().CPlusPlus
|
|
|
|
? Type.getNonReferenceType()->getAsCXXRecordDecl()
|
|
|
|
: nullptr;
|
2013-10-01 13:32:34 +08:00
|
|
|
if (RD) {
|
|
|
|
CXXConstructorDecl *CD = LookupCopyingConstructor(RD, 0);
|
|
|
|
PartialDiagnostic PD =
|
2014-05-28 13:53:51 +08:00
|
|
|
PartialDiagnostic(PartialDiagnostic::NullDiagnostic());
|
|
|
|
if (!CD || CheckConstructorAccess(
|
|
|
|
ELoc, CD, InitializedEntity::InitializeTemporary(Type),
|
|
|
|
CD->getAccess(), PD) == AR_inaccessible ||
|
2013-10-01 13:32:34 +08:00
|
|
|
CD->isDeleted()) {
|
|
|
|
Diag(ELoc, diag::err_omp_required_method)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(OMPC_firstprivate) << 1;
|
2013-10-01 13:32:34 +08:00
|
|
|
bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
|
|
|
|
VarDecl::DeclarationOnly;
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-10-01 13:32:34 +08:00
|
|
|
Diag(RD->getLocation(), diag::note_previous_decl) << RD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MarkFunctionReferenced(ELoc, CD);
|
|
|
|
DiagnoseUseOfDecl(CD, ELoc);
|
|
|
|
|
|
|
|
CXXDestructorDecl *DD = RD->getDestructor();
|
|
|
|
if (DD) {
|
|
|
|
if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
|
|
|
|
DD->isDeleted()) {
|
|
|
|
Diag(ELoc, diag::err_omp_required_method)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(OMPC_firstprivate) << 4;
|
2013-10-01 13:32:34 +08:00
|
|
|
bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
|
|
|
|
VarDecl::DeclarationOnly;
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2013-10-01 13:32:34 +08:00
|
|
|
Diag(RD->getLocation(), diag::note_previous_decl) << RD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MarkFunctionReferenced(ELoc, DD);
|
|
|
|
DiagnoseUseOfDecl(DD, ELoc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If StartLoc and EndLoc are invalid - this is an implicit firstprivate
|
|
|
|
// variable and it was checked already.
|
|
|
|
if (StartLoc.isValid() && EndLoc.isValid()) {
|
|
|
|
DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD);
|
|
|
|
Type = Type.getNonReferenceType().getCanonicalType();
|
|
|
|
bool IsConstant = Type.isConstant(Context);
|
|
|
|
Type = Context.getBaseElementType(Type);
|
|
|
|
// OpenMP [2.4.13, Data-sharing Attribute Clauses]
|
|
|
|
// A list item that specifies a given variable may not appear in more
|
|
|
|
// than one clause on the same directive, except that a variable may be
|
|
|
|
// specified in both firstprivate and lastprivate clauses.
|
|
|
|
// TODO: add processing for lastprivate.
|
|
|
|
if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_firstprivate &&
|
|
|
|
DVar.RefExpr) {
|
|
|
|
Diag(ELoc, diag::err_omp_wrong_dsa)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(DVar.CKind)
|
|
|
|
<< getOpenMPClauseName(OMPC_firstprivate);
|
2013-10-01 13:32:34 +08:00
|
|
|
Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_explicit_dsa)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
2013-10-01 13:32:34 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct]
|
|
|
|
// Variables with the predetermined data-sharing attributes may not be
|
|
|
|
// listed in data-sharing attributes clauses, except for the cases
|
|
|
|
// listed below. For these exceptions only, listing a predetermined
|
|
|
|
// variable in a data-sharing attribute clause is allowed and overrides
|
|
|
|
// the variable's predetermined data-sharing attributes.
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct, C/C++, p.2]
|
|
|
|
// Variables with const-qualified type having no mutable member may be
|
|
|
|
// listed in a firstprivate clause, even if they are static data members.
|
|
|
|
if (!(IsConstant || VD->isStaticDataMember()) && !DVar.RefExpr &&
|
|
|
|
DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_shared) {
|
|
|
|
Diag(ELoc, diag::err_omp_wrong_dsa)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(DVar.CKind)
|
|
|
|
<< getOpenMPClauseName(OMPC_firstprivate);
|
2013-10-01 13:32:34 +08:00
|
|
|
Diag(VD->getLocation(), diag::note_omp_predetermined_dsa)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
2013-10-01 13:32:34 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.3.4, Restrictions, p.2]
|
|
|
|
// A list item that is private within a parallel region must not appear
|
|
|
|
// in a firstprivate clause on a worksharing construct if any of the
|
|
|
|
// worksharing regions arising from the worksharing construct ever bind
|
|
|
|
// to any of the parallel regions arising from the parallel construct.
|
|
|
|
// OpenMP [2.9.3.4, Restrictions, p.3]
|
|
|
|
// A list item that appears in a reduction clause of a parallel construct
|
|
|
|
// must not appear in a firstprivate clause on a worksharing or task
|
|
|
|
// construct if any of the worksharing or task regions arising from the
|
|
|
|
// worksharing or task construct ever bind to any of the parallel regions
|
|
|
|
// arising from the parallel construct.
|
|
|
|
// OpenMP [2.9.3.4, Restrictions, p.4]
|
|
|
|
// A list item that appears in a reduction clause in worksharing
|
|
|
|
// construct must not appear in a firstprivate clause in a task construct
|
|
|
|
// encountered during execution of any of the worksharing regions arising
|
|
|
|
// from the worksharing construct.
|
|
|
|
// TODO:
|
|
|
|
}
|
|
|
|
|
|
|
|
DSAStack->addDSA(VD, DE, OMPC_firstprivate);
|
|
|
|
Vars.push_back(DE);
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
if (Vars.empty())
|
|
|
|
return nullptr;
|
2013-10-01 13:32:34 +08:00
|
|
|
|
|
|
|
return OMPFirstprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
|
|
|
|
Vars);
|
|
|
|
}
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPSharedClause(ArrayRef<Expr *> VarList,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
SmallVector<Expr *, 8> Vars;
|
2014-05-28 13:53:51 +08:00
|
|
|
for (auto &RefExpr : VarList) {
|
|
|
|
assert(RefExpr && "NULL expr in OpenMP shared clause.");
|
|
|
|
if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
|
2013-09-07 02:03:48 +08:00
|
|
|
// It will be analyzed later.
|
2014-05-28 13:53:51 +08:00
|
|
|
Vars.push_back(RefExpr);
|
2013-09-07 02:03:48 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
SourceLocation ELoc = RefExpr->getExprLoc();
|
2013-09-07 02:03:48 +08:00
|
|
|
// OpenMP [2.1, C/C++]
|
|
|
|
// A list item is a variable name.
|
2014-03-06 20:27:56 +08:00
|
|
|
// OpenMP [2.14.3.2, Restrictions, p.1]
|
|
|
|
// A variable that is part of another variable (as an array or structure
|
|
|
|
// element) cannot appear in a shared unless it is a static data member
|
|
|
|
// of a C++ class.
|
2014-05-28 13:53:51 +08:00
|
|
|
DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
|
2013-09-07 02:03:48 +08:00
|
|
|
if (!DE || !isa<VarDecl>(DE->getDecl())) {
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
|
2013-09-07 02:03:48 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Decl *D = DE->getDecl();
|
|
|
|
VarDecl *VD = cast<VarDecl>(D);
|
|
|
|
|
|
|
|
QualType Type = VD->getType();
|
|
|
|
if (Type->isDependentType() || Type->isInstantiationDependentType()) {
|
|
|
|
// It will be analyzed later.
|
|
|
|
Vars.push_back(DE);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.9.1.1, Data-sharing Attribute Rules for Variables Referenced
|
|
|
|
// in a Construct]
|
|
|
|
// Variables with the predetermined data-sharing attributes may not be
|
|
|
|
// listed in data-sharing attributes clauses, except for the cases
|
|
|
|
// listed below. For these exceptions only, listing a predetermined
|
|
|
|
// variable in a data-sharing attribute clause is allowed and overrides
|
|
|
|
// the variable's predetermined data-sharing attributes.
|
|
|
|
DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD);
|
2014-05-28 13:53:51 +08:00
|
|
|
if (DVar.CKind != OMPC_unknown && DVar.CKind != OMPC_shared &&
|
|
|
|
DVar.RefExpr) {
|
|
|
|
Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
|
|
|
|
<< getOpenMPClauseName(OMPC_shared);
|
2013-09-07 02:03:48 +08:00
|
|
|
Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_explicit_dsa)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
2013-09-07 02:03:48 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
DSAStack->addDSA(VD, DE, OMPC_shared);
|
|
|
|
Vars.push_back(DE);
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
if (Vars.empty())
|
|
|
|
return nullptr;
|
2013-09-07 02:03:48 +08:00
|
|
|
|
|
|
|
return OMPSharedClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
|
|
|
|
}
|
|
|
|
|
2014-04-22 21:09:42 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPLinearClause(ArrayRef<Expr *> VarList, Expr *Step,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation ColonLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
SmallVector<Expr *, 8> Vars;
|
2014-05-28 13:53:51 +08:00
|
|
|
for (auto &RefExpr : VarList) {
|
|
|
|
assert(RefExpr && "NULL expr in OpenMP linear clause.");
|
|
|
|
if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
|
2014-04-22 21:09:42 +08:00
|
|
|
// It will be analyzed later.
|
2014-05-28 13:53:51 +08:00
|
|
|
Vars.push_back(RefExpr);
|
2014-04-22 21:09:42 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.14.3.7, linear clause]
|
|
|
|
// A list item that appears in a linear clause is subject to the private
|
|
|
|
// clause semantics described in Section 2.14.3.3 on page 159 except as
|
|
|
|
// noted. In addition, the value of the new list item on each iteration
|
|
|
|
// of the associated loop(s) corresponds to the value of the original
|
|
|
|
// list item before entering the construct plus the logical number of
|
|
|
|
// the iteration times linear-step.
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
SourceLocation ELoc = RefExpr->getExprLoc();
|
2014-04-22 21:09:42 +08:00
|
|
|
// OpenMP [2.1, C/C++]
|
|
|
|
// A list item is a variable name.
|
|
|
|
// OpenMP [2.14.3.3, Restrictions, p.1]
|
|
|
|
// A variable that is part of another variable (as an array or
|
|
|
|
// structure element) cannot appear in a private clause.
|
2014-05-28 13:53:51 +08:00
|
|
|
DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
|
2014-04-22 21:09:42 +08:00
|
|
|
if (!DE || !isa<VarDecl>(DE->getDecl())) {
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
|
2014-04-22 21:09:42 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
VarDecl *VD = cast<VarDecl>(DE->getDecl());
|
|
|
|
|
|
|
|
// OpenMP [2.14.3.7, linear clause]
|
|
|
|
// A list-item cannot appear in more than one linear clause.
|
|
|
|
// A list-item that appears in a linear clause cannot appear in any
|
|
|
|
// other data-sharing attribute clause.
|
|
|
|
DSAStackTy::DSAVarData DVar = DSAStack->getTopDSA(VD);
|
|
|
|
if (DVar.RefExpr) {
|
|
|
|
Diag(ELoc, diag::err_omp_wrong_dsa) << getOpenMPClauseName(DVar.CKind)
|
|
|
|
<< getOpenMPClauseName(OMPC_linear);
|
|
|
|
Diag(DVar.RefExpr->getExprLoc(), diag::note_omp_explicit_dsa)
|
|
|
|
<< getOpenMPClauseName(DVar.CKind);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType QType = VD->getType();
|
|
|
|
if (QType->isDependentType() || QType->isInstantiationDependentType()) {
|
|
|
|
// It will be analyzed later.
|
|
|
|
Vars.push_back(DE);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// A variable must not have an incomplete type or a reference type.
|
|
|
|
if (RequireCompleteType(ELoc, QType,
|
|
|
|
diag::err_omp_linear_incomplete_type)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (QType->isReferenceType()) {
|
|
|
|
Diag(ELoc, diag::err_omp_clause_ref_type_arg)
|
|
|
|
<< getOpenMPClauseName(OMPC_linear) << QType;
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// A list item must not be const-qualified.
|
|
|
|
if (QType.isConstant(Context)) {
|
|
|
|
Diag(ELoc, diag::err_omp_const_variable)
|
|
|
|
<< getOpenMPClauseName(OMPC_linear);
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// A list item must be of integral or pointer type.
|
|
|
|
QType = QType.getUnqualifiedType().getCanonicalType();
|
|
|
|
const Type *Ty = QType.getTypePtrOrNull();
|
|
|
|
if (!Ty || (!Ty->isDependentType() && !Ty->isIntegralType(Context) &&
|
|
|
|
!Ty->isPointerType())) {
|
|
|
|
Diag(ELoc, diag::err_omp_linear_expected_int_or_ptr) << QType;
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
DSAStack->addDSA(VD, DE, OMPC_linear);
|
|
|
|
Vars.push_back(DE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Vars.empty())
|
2014-05-15 21:04:49 +08:00
|
|
|
return nullptr;
|
2014-04-22 21:09:42 +08:00
|
|
|
|
|
|
|
Expr *StepExpr = Step;
|
|
|
|
if (Step && !Step->isValueDependent() && !Step->isTypeDependent() &&
|
|
|
|
!Step->isInstantiationDependent() &&
|
|
|
|
!Step->containsUnexpandedParameterPack()) {
|
|
|
|
SourceLocation StepLoc = Step->getLocStart();
|
2014-06-03 18:16:47 +08:00
|
|
|
ExprResult Val = PerformOpenMPImplicitIntegerConversion(StepLoc, Step);
|
2014-04-22 21:09:42 +08:00
|
|
|
if (Val.isInvalid())
|
2014-05-15 21:04:49 +08:00
|
|
|
return nullptr;
|
2014-05-29 18:55:11 +08:00
|
|
|
StepExpr = Val.get();
|
2014-04-22 21:09:42 +08:00
|
|
|
|
|
|
|
// Warn about zero linear step (it would be probably better specified as
|
|
|
|
// making corresponding variables 'const').
|
|
|
|
llvm::APSInt Result;
|
|
|
|
if (StepExpr->isIntegerConstantExpr(Result, Context) &&
|
|
|
|
!Result.isNegative() && !Result.isStrictlyPositive())
|
|
|
|
Diag(StepLoc, diag::warn_omp_linear_step_zero) << Vars[0]
|
|
|
|
<< (Vars.size() > 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return OMPLinearClause::Create(Context, StartLoc, LParenLoc, ColonLoc, EndLoc,
|
|
|
|
Vars, StepExpr);
|
|
|
|
}
|
|
|
|
|
2014-05-29 22:36:25 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPAlignedClause(
|
|
|
|
ArrayRef<Expr *> VarList, Expr *Alignment, SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc) {
|
|
|
|
|
|
|
|
SmallVector<Expr *, 8> Vars;
|
|
|
|
for (auto &RefExpr : VarList) {
|
|
|
|
assert(RefExpr && "NULL expr in OpenMP aligned clause.");
|
|
|
|
if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
|
|
|
|
// It will be analyzed later.
|
|
|
|
Vars.push_back(RefExpr);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceLocation ELoc = RefExpr->getExprLoc();
|
|
|
|
// OpenMP [2.1, C/C++]
|
|
|
|
// A list item is a variable name.
|
|
|
|
DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
|
|
|
|
if (!DE || !isa<VarDecl>(DE->getDecl())) {
|
|
|
|
Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
VarDecl *VD = cast<VarDecl>(DE->getDecl());
|
|
|
|
|
|
|
|
// OpenMP [2.8.1, simd construct, Restrictions]
|
|
|
|
// The type of list items appearing in the aligned clause must be
|
|
|
|
// array, pointer, reference to array, or reference to pointer.
|
|
|
|
QualType QType = DE->getType()
|
|
|
|
.getNonReferenceType()
|
|
|
|
.getUnqualifiedType()
|
|
|
|
.getCanonicalType();
|
|
|
|
const Type *Ty = QType.getTypePtrOrNull();
|
|
|
|
if (!Ty || (!Ty->isDependentType() && !Ty->isArrayType() &&
|
|
|
|
!Ty->isPointerType())) {
|
|
|
|
Diag(ELoc, diag::err_omp_aligned_expected_array_or_ptr)
|
|
|
|
<< QType << getLangOpts().CPlusPlus << RefExpr->getSourceRange();
|
|
|
|
bool IsDecl =
|
|
|
|
VD->isThisDeclarationADefinition(Context) == VarDecl::DeclarationOnly;
|
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.8.1, simd construct, Restrictions]
|
|
|
|
// A list-item cannot appear in more than one aligned clause.
|
|
|
|
if (DeclRefExpr *PrevRef = DSAStack->addUniqueAligned(VD, DE)) {
|
|
|
|
Diag(ELoc, diag::err_omp_aligned_twice) << RefExpr->getSourceRange();
|
|
|
|
Diag(PrevRef->getExprLoc(), diag::note_omp_explicit_dsa)
|
|
|
|
<< getOpenMPClauseName(OMPC_aligned);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vars.push_back(DE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.8.1, simd construct, Description]
|
|
|
|
// The parameter of the aligned clause, alignment, must be a constant
|
|
|
|
// positive integer expression.
|
|
|
|
// If no optional parameter is specified, implementation-defined default
|
|
|
|
// alignments for SIMD instructions on the target platforms are assumed.
|
|
|
|
if (Alignment != nullptr) {
|
|
|
|
ExprResult AlignResult =
|
|
|
|
VerifyPositiveIntegerConstantInClause(Alignment, OMPC_aligned);
|
|
|
|
if (AlignResult.isInvalid())
|
|
|
|
return nullptr;
|
|
|
|
Alignment = AlignResult.get();
|
|
|
|
}
|
|
|
|
if (Vars.empty())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc,
|
|
|
|
EndLoc, Vars, Alignment);
|
|
|
|
}
|
|
|
|
|
2014-03-31 11:36:38 +08:00
|
|
|
OMPClause *Sema::ActOnOpenMPCopyinClause(ArrayRef<Expr *> VarList,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
SmallVector<Expr *, 8> Vars;
|
2014-05-28 13:53:51 +08:00
|
|
|
for (auto &RefExpr : VarList) {
|
|
|
|
assert(RefExpr && "NULL expr in OpenMP copyin clause.");
|
|
|
|
if (isa<DependentScopeDeclRefExpr>(RefExpr)) {
|
2014-03-31 11:36:38 +08:00
|
|
|
// It will be analyzed later.
|
2014-05-28 13:53:51 +08:00
|
|
|
Vars.push_back(RefExpr);
|
2014-03-31 11:36:38 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
SourceLocation ELoc = RefExpr->getExprLoc();
|
2014-03-31 11:36:38 +08:00
|
|
|
// OpenMP [2.1, C/C++]
|
|
|
|
// A list item is a variable name.
|
|
|
|
// OpenMP [2.14.4.1, Restrictions, p.1]
|
|
|
|
// A list item that appears in a copyin clause must be threadprivate.
|
2014-05-28 13:53:51 +08:00
|
|
|
DeclRefExpr *DE = dyn_cast<DeclRefExpr>(RefExpr);
|
2014-03-31 11:36:38 +08:00
|
|
|
if (!DE || !isa<VarDecl>(DE->getDecl())) {
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(ELoc, diag::err_omp_expected_var_name) << RefExpr->getSourceRange();
|
2014-03-31 11:36:38 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Decl *D = DE->getDecl();
|
|
|
|
VarDecl *VD = cast<VarDecl>(D);
|
|
|
|
|
|
|
|
QualType Type = VD->getType();
|
|
|
|
if (Type->isDependentType() || Type->isInstantiationDependentType()) {
|
|
|
|
// It will be analyzed later.
|
|
|
|
Vars.push_back(DE);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.14.4.1, Restrictions, C/C++, p.1]
|
|
|
|
// A list item that appears in a copyin clause must be threadprivate.
|
|
|
|
if (!DSAStack->isThreadPrivate(VD)) {
|
|
|
|
Diag(ELoc, diag::err_omp_required_access)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(OMPC_copyin)
|
|
|
|
<< getOpenMPDirectiveName(OMPD_threadprivate);
|
2014-03-31 11:36:38 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenMP [2.14.4.1, Restrictions, C/C++, p.2]
|
|
|
|
// A variable of class type (or array thereof) that appears in a
|
|
|
|
// copyin clause requires an accesible, unambiguous copy assignment
|
|
|
|
// operator for the class type.
|
|
|
|
Type = Context.getBaseElementType(Type);
|
2014-05-15 21:04:49 +08:00
|
|
|
CXXRecordDecl *RD =
|
|
|
|
getLangOpts().CPlusPlus ? Type->getAsCXXRecordDecl() : nullptr;
|
2014-03-31 11:36:38 +08:00
|
|
|
if (RD) {
|
|
|
|
CXXMethodDecl *MD = LookupCopyingAssignment(RD, 0, false, 0);
|
|
|
|
DeclAccessPair FoundDecl = DeclAccessPair::make(MD, MD->getAccess());
|
2014-05-28 13:53:51 +08:00
|
|
|
if (!MD || CheckMemberAccess(ELoc, RD, FoundDecl) == AR_inaccessible ||
|
2014-03-31 11:36:38 +08:00
|
|
|
MD->isDeleted()) {
|
|
|
|
Diag(ELoc, diag::err_omp_required_method)
|
2014-05-28 13:53:51 +08:00
|
|
|
<< getOpenMPClauseName(OMPC_copyin) << 2;
|
2014-03-31 11:36:38 +08:00
|
|
|
bool IsDecl = VD->isThisDeclarationADefinition(Context) ==
|
|
|
|
VarDecl::DeclarationOnly;
|
2014-05-28 13:53:51 +08:00
|
|
|
Diag(VD->getLocation(),
|
|
|
|
IsDecl ? diag::note_previous_decl : diag::note_defined_here)
|
|
|
|
<< VD;
|
2014-03-31 11:36:38 +08:00
|
|
|
Diag(RD->getLocation(), diag::note_previous_decl) << RD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MarkFunctionReferenced(ELoc, MD);
|
|
|
|
DiagnoseUseOfDecl(MD, ELoc);
|
|
|
|
}
|
|
|
|
|
|
|
|
DSAStack->addDSA(VD, DE, OMPC_copyin);
|
|
|
|
Vars.push_back(DE);
|
|
|
|
}
|
|
|
|
|
2014-05-28 13:53:51 +08:00
|
|
|
if (Vars.empty())
|
|
|
|
return nullptr;
|
2014-03-31 11:36:38 +08:00
|
|
|
|
|
|
|
return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
|
|
|
|
}
|
|
|
|
|
2013-09-07 02:03:48 +08:00
|
|
|
#undef DSAStack
|