mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 08:56:07 +00:00

…uses The Flang implemenation of OpenACC uses a .td file in the llvm/Frontend directory to determine appertainment in 4 categories: -Required: If this list has items in it, the directive requires at least 1 of these be present. -AllowedExclusive: Items on this list are all allowed, but only 1 from the list may be here (That is, they are exclusive of eachother). -AllowedOnce: Items on this list are all allowed, but may not be duplicated. Allowed: Items on this list are allowed. Note th at the actual list of 'allowed' is all 4 of these lists together. This is a draft patch to swtich Clang over to use those tables. Surgery to get this to happen in Clang Sema was somewhat reasonable. However, some gaps in the implementations are obvious, the existing clang implementation disagrees with the Flang interpretation of it. SO, we're keeping a task list here based on what gets discovered. Changes to Clang: - [x] Switch 'directive-kind' enum conversions to use tablegen See ff1a7bddd9435b6ae2890c07eae60bb07898bbf5 - [x] Switch 'clause-kind' enum conversions to use tablegen See ff1a7bddd9435b6ae2890c07eae60bb07898bbf5 - [x] Investigate 'parse' test differences to see if any new disagreements arise. - [x] Clang/Flang disagree as to whether 'collapse' can be multiple times on a loop. Further research showed no prose to limit this, and the comment on the clang implementation said "no good reason to allow", so no standards justification. - [x] Clang/Flang disagree whether 'num_gangs' can appear >1 on a compute/combined construct. This ended up being an unjustified restriction. - [x] Clang/Flang disagree as to the list of required clauses on a 'set' construct. My research shows that Clang mistakenly included 'if' in the list, and that it should be just 'default_async', 'device_num', and 'device_type'. - [x] Order of 'at least one of' diagnostic has changed. Tests were updated. - [x] Ensure we are properly 'de-aliasing' clause names in appertainment checks? - [x] What is 'shortloop'? 'shortloop' seems to be an old non-standard extension that isn't supported by flang, but is parsed for backward compat reasons. Clang won't parse, but we at least have a spot for it in the clause list. - [x] Implemented proposed change for 'routine' gang/worker/vector/seq. (see issue 539) - [x] Implement init/shutdown can only have 1 'if' (see issue 540) - [x] Clang/Flang disagree as to whether 'tile' is permitted more than once on a 'loop' or combined constructs (Flang prohibits >1). I see no justification for this in the standard. EDIT: I found a comment in clang that I did this to make SOMETHING around duplicate checks easier. Discussion showed we should actually have a better behavior around 'device_type' and duplicates, so I've since implemented that. - [x] Clang/Flang disagree whether 'gang', 'worker', or 'vector' may appear on the same construct as a 'seq' on a 'loop' or 'combined'. There is prose for this in 2022: (a gang, worker, or vector clause may not appear if a 'seq' clause appears). EDIT: These don't actually disagree, but aren't in the .td file, so I restored the existing code to do this. - [x] Clang/Flang disagree on whether 'bind' can appear >1 on a 'routine'. I believe line 3096 (A bind clause may not bind to a routine name that has a visible bind clause) makes this limitation (Flang permits >1 bind). we discussed and decided this should have the same rules as worker/vector/etc, except without the 'exactly 1 of' rule (so no dupes in individual sections). - [x] Clang/Flang disagree on whether 'init'/'shutdown' can have multiple 'device_num' clauses. I believe there is no supporting prose for this limitation., We decided that `device_num` should only happen 1x. - [x] Clang/Flang disagree whether 'num_gangs' can appear >1 on a 'kernels' construct. Line 1173 (On a kernels construct, the num_gangs clause must have a single argument) justifies limiting on a per-arguement basis, but doesn't do so for multiple num_gangs clauses. WE decided to do this with the '1-per-device-type' region for num_gangs, num_workers, and vector_length, see openacc bug here: https://github.com/OpenACC/openacc-spec/issues/541 Changes to Flang: - [x] Clang/Flang disgree on whether 'atomic' can take an 'if' clause. This was added in OpenACC3.3_Next See #135451 - [x] Clang/Flang disagree on whether 'finalize' can be allowed >1 times on a 'exit_data' construct. see #135415. - [x] Clang/Flang disagree whether 'if_present' should be allowed >1 times on a 'host_data'/'update' construct. see #135422 - [x] Clang/Flang disagree on whether 'init'/'shutdown' can have multiple 'device_type' clauses. I believe there is no supporting prose for this limitation. - [ ] SEE change for num_gangs/etc above. Changes that need discussion/research:
979 lines
41 KiB
C++
979 lines
41 KiB
C++
//===---- OpenACCClause.cpp - Classes for OpenACC Clauses ----------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the subclasses of the OpenACCClause class declared in
|
|
// OpenACCClause.h
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/AST/OpenACCClause.h"
|
|
#include "clang/AST/ASTContext.h"
|
|
#include "clang/AST/Expr.h"
|
|
|
|
using namespace clang;
|
|
|
|
bool OpenACCClauseWithParams::classof(const OpenACCClause *C) {
|
|
return OpenACCDeviceTypeClause::classof(C) ||
|
|
OpenACCClauseWithCondition::classof(C) ||
|
|
OpenACCBindClause::classof(C) || OpenACCClauseWithExprs::classof(C) ||
|
|
OpenACCSelfClause::classof(C);
|
|
}
|
|
bool OpenACCClauseWithExprs::classof(const OpenACCClause *C) {
|
|
return OpenACCWaitClause::classof(C) || OpenACCNumGangsClause::classof(C) ||
|
|
OpenACCTileClause::classof(C) ||
|
|
OpenACCClauseWithSingleIntExpr::classof(C) ||
|
|
OpenACCGangClause::classof(C) || OpenACCClauseWithVarList::classof(C);
|
|
}
|
|
bool OpenACCClauseWithVarList::classof(const OpenACCClause *C) {
|
|
return OpenACCPrivateClause::classof(C) ||
|
|
OpenACCFirstPrivateClause::classof(C) ||
|
|
OpenACCDevicePtrClause::classof(C) ||
|
|
OpenACCDeleteClause::classof(C) ||
|
|
OpenACCUseDeviceClause::classof(C) ||
|
|
OpenACCDetachClause::classof(C) || OpenACCAttachClause::classof(C) ||
|
|
OpenACCNoCreateClause::classof(C) ||
|
|
OpenACCPresentClause::classof(C) || OpenACCCopyClause::classof(C) ||
|
|
OpenACCCopyInClause::classof(C) || OpenACCCopyOutClause::classof(C) ||
|
|
OpenACCReductionClause::classof(C) ||
|
|
OpenACCCreateClause::classof(C) || OpenACCDeviceClause::classof(C) ||
|
|
OpenACCLinkClause::classof(C) ||
|
|
OpenACCDeviceResidentClause::classof(C) ||
|
|
OpenACCHostClause::classof(C);
|
|
}
|
|
bool OpenACCClauseWithCondition::classof(const OpenACCClause *C) {
|
|
return OpenACCIfClause::classof(C);
|
|
}
|
|
bool OpenACCClauseWithSingleIntExpr::classof(const OpenACCClause *C) {
|
|
return OpenACCNumWorkersClause::classof(C) ||
|
|
OpenACCVectorLengthClause::classof(C) ||
|
|
OpenACCDeviceNumClause::classof(C) ||
|
|
OpenACCDefaultAsyncClause::classof(C) ||
|
|
OpenACCVectorClause::classof(C) || OpenACCWorkerClause::classof(C) ||
|
|
OpenACCCollapseClause::classof(C) || OpenACCAsyncClause::classof(C);
|
|
}
|
|
OpenACCDefaultClause *OpenACCDefaultClause::Create(const ASTContext &C,
|
|
OpenACCDefaultClauseKind K,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(sizeof(OpenACCDefaultClause), alignof(OpenACCDefaultClause));
|
|
|
|
return new (Mem) OpenACCDefaultClause(K, BeginLoc, LParenLoc, EndLoc);
|
|
}
|
|
|
|
OpenACCIfClause *OpenACCIfClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *ConditionExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCIfClause), alignof(OpenACCIfClause));
|
|
return new (Mem) OpenACCIfClause(BeginLoc, LParenLoc, ConditionExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCIfClause::OpenACCIfClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc, Expr *ConditionExpr,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithCondition(OpenACCClauseKind::If, BeginLoc, LParenLoc,
|
|
ConditionExpr, EndLoc) {
|
|
assert(ConditionExpr && "if clause requires condition expr");
|
|
assert((ConditionExpr->isInstantiationDependent() ||
|
|
ConditionExpr->getType()->isScalarType()) &&
|
|
"Condition expression type not scalar/dependent");
|
|
}
|
|
|
|
OpenACCSelfClause *OpenACCSelfClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *ConditionExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(OpenACCSelfClause::totalSizeToAlloc<Expr *>(1));
|
|
return new (Mem)
|
|
OpenACCSelfClause(BeginLoc, LParenLoc, ConditionExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCSelfClause *OpenACCSelfClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCSelfClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCSelfClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCSelfClause::OpenACCSelfClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
llvm::ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithParams(OpenACCClauseKind::Self, BeginLoc, LParenLoc,
|
|
EndLoc),
|
|
HasConditionExpr(std::nullopt), NumExprs(VarList.size()) {
|
|
std::uninitialized_copy(VarList.begin(), VarList.end(),
|
|
getTrailingObjects<Expr *>());
|
|
}
|
|
|
|
OpenACCSelfClause::OpenACCSelfClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *ConditionExpr, SourceLocation EndLoc)
|
|
: OpenACCClauseWithParams(OpenACCClauseKind::Self, BeginLoc, LParenLoc,
|
|
EndLoc),
|
|
HasConditionExpr(ConditionExpr != nullptr), NumExprs(1) {
|
|
assert((!ConditionExpr || ConditionExpr->isInstantiationDependent() ||
|
|
ConditionExpr->getType()->isScalarType()) &&
|
|
"Condition expression type not scalar/dependent");
|
|
std::uninitialized_copy(&ConditionExpr, &ConditionExpr + 1,
|
|
getTrailingObjects<Expr *>());
|
|
}
|
|
|
|
OpenACCClause::child_range OpenACCClause::children() {
|
|
switch (getClauseKind()) {
|
|
default:
|
|
assert(false && "Clause children function not implemented");
|
|
break;
|
|
#define VISIT_CLAUSE(CLAUSE_NAME) \
|
|
case OpenACCClauseKind::CLAUSE_NAME: \
|
|
return cast<OpenACC##CLAUSE_NAME##Clause>(this)->children();
|
|
#define CLAUSE_ALIAS(ALIAS_NAME, CLAUSE_NAME, DEPRECATED) \
|
|
case OpenACCClauseKind::ALIAS_NAME: \
|
|
return cast<OpenACC##CLAUSE_NAME##Clause>(this)->children();
|
|
|
|
#include "clang/Basic/OpenACCClauses.def"
|
|
}
|
|
return child_range(child_iterator(), child_iterator());
|
|
}
|
|
|
|
OpenACCNumWorkersClause::OpenACCNumWorkersClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithSingleIntExpr(OpenACCClauseKind::NumWorkers, BeginLoc,
|
|
LParenLoc, IntExpr, EndLoc) {
|
|
assert((!IntExpr || IntExpr->isInstantiationDependent() ||
|
|
IntExpr->getType()->isIntegerType()) &&
|
|
"Condition expression type not scalar/dependent");
|
|
}
|
|
|
|
OpenACCGangClause::OpenACCGangClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<OpenACCGangKind> GangKinds,
|
|
ArrayRef<Expr *> IntExprs,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithExprs(OpenACCClauseKind::Gang, BeginLoc, LParenLoc,
|
|
EndLoc) {
|
|
assert(GangKinds.size() == IntExprs.size() && "Mismatch exprs/kind?");
|
|
std::uninitialized_copy(IntExprs.begin(), IntExprs.end(),
|
|
getTrailingObjects<Expr *>());
|
|
setExprs(MutableArrayRef(getTrailingObjects<Expr *>(), IntExprs.size()));
|
|
std::uninitialized_copy(GangKinds.begin(), GangKinds.end(),
|
|
getTrailingObjects<OpenACCGangKind>());
|
|
}
|
|
|
|
OpenACCNumWorkersClause *
|
|
OpenACCNumWorkersClause::Create(const ASTContext &C, SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc, Expr *IntExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCNumWorkersClause),
|
|
alignof(OpenACCNumWorkersClause));
|
|
return new (Mem)
|
|
OpenACCNumWorkersClause(BeginLoc, LParenLoc, IntExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCCollapseClause::OpenACCCollapseClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
bool HasForce, Expr *LoopCount,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithSingleIntExpr(OpenACCClauseKind::Collapse, BeginLoc,
|
|
LParenLoc, LoopCount, EndLoc),
|
|
HasForce(HasForce) {}
|
|
|
|
OpenACCCollapseClause *
|
|
OpenACCCollapseClause::Create(const ASTContext &C, SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc, bool HasForce,
|
|
Expr *LoopCount, SourceLocation EndLoc) {
|
|
assert((!LoopCount || (LoopCount->isInstantiationDependent() ||
|
|
isa<ConstantExpr>(LoopCount))) &&
|
|
"Loop count not constant expression");
|
|
void *Mem =
|
|
C.Allocate(sizeof(OpenACCCollapseClause), alignof(OpenACCCollapseClause));
|
|
return new (Mem)
|
|
OpenACCCollapseClause(BeginLoc, LParenLoc, HasForce, LoopCount, EndLoc);
|
|
}
|
|
|
|
OpenACCVectorLengthClause::OpenACCVectorLengthClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithSingleIntExpr(OpenACCClauseKind::VectorLength, BeginLoc,
|
|
LParenLoc, IntExpr, EndLoc) {
|
|
assert((!IntExpr || IntExpr->isInstantiationDependent() ||
|
|
IntExpr->getType()->isIntegerType()) &&
|
|
"Condition expression type not scalar/dependent");
|
|
}
|
|
|
|
OpenACCVectorLengthClause *
|
|
OpenACCVectorLengthClause::Create(const ASTContext &C, SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc, Expr *IntExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCVectorLengthClause),
|
|
alignof(OpenACCVectorLengthClause));
|
|
return new (Mem)
|
|
OpenACCVectorLengthClause(BeginLoc, LParenLoc, IntExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCAsyncClause::OpenACCAsyncClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc, Expr *IntExpr,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithSingleIntExpr(OpenACCClauseKind::Async, BeginLoc,
|
|
LParenLoc, IntExpr, EndLoc) {
|
|
assert((!IntExpr || IntExpr->isInstantiationDependent() ||
|
|
IntExpr->getType()->isIntegerType()) &&
|
|
"Condition expression type not scalar/dependent");
|
|
}
|
|
|
|
OpenACCAsyncClause *OpenACCAsyncClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(sizeof(OpenACCAsyncClause), alignof(OpenACCAsyncClause));
|
|
return new (Mem) OpenACCAsyncClause(BeginLoc, LParenLoc, IntExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCDeviceNumClause::OpenACCDeviceNumClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc, Expr *IntExpr,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithSingleIntExpr(OpenACCClauseKind::DeviceNum, BeginLoc,
|
|
LParenLoc, IntExpr, EndLoc) {
|
|
assert((IntExpr->isInstantiationDependent() ||
|
|
IntExpr->getType()->isIntegerType()) &&
|
|
"device_num expression type not scalar/dependent");
|
|
}
|
|
|
|
OpenACCDeviceNumClause *OpenACCDeviceNumClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(sizeof(OpenACCDeviceNumClause), alignof(OpenACCDeviceNumClause));
|
|
return new (Mem) OpenACCDeviceNumClause(BeginLoc, LParenLoc, IntExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCDefaultAsyncClause::OpenACCDefaultAsyncClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr,
|
|
SourceLocation EndLoc)
|
|
: OpenACCClauseWithSingleIntExpr(OpenACCClauseKind::DefaultAsync, BeginLoc,
|
|
LParenLoc, IntExpr, EndLoc) {
|
|
assert((IntExpr->isInstantiationDependent() ||
|
|
IntExpr->getType()->isIntegerType()) &&
|
|
"default_async expression type not scalar/dependent");
|
|
}
|
|
|
|
OpenACCDefaultAsyncClause *
|
|
OpenACCDefaultAsyncClause::Create(const ASTContext &C, SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc, Expr *IntExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCDefaultAsyncClause),
|
|
alignof(OpenACCDefaultAsyncClause));
|
|
return new (Mem)
|
|
OpenACCDefaultAsyncClause(BeginLoc, LParenLoc, IntExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCWaitClause *OpenACCWaitClause::Create(
|
|
const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc,
|
|
Expr *DevNumExpr, SourceLocation QueuesLoc, ArrayRef<Expr *> QueueIdExprs,
|
|
SourceLocation EndLoc) {
|
|
// Allocates enough room in trailing storage for all the int-exprs, plus a
|
|
// placeholder for the devnum.
|
|
void *Mem = C.Allocate(
|
|
OpenACCWaitClause::totalSizeToAlloc<Expr *>(QueueIdExprs.size() + 1));
|
|
return new (Mem) OpenACCWaitClause(BeginLoc, LParenLoc, DevNumExpr, QueuesLoc,
|
|
QueueIdExprs, EndLoc);
|
|
}
|
|
|
|
OpenACCNumGangsClause *OpenACCNumGangsClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> IntExprs,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCNumGangsClause::totalSizeToAlloc<Expr *>(IntExprs.size()));
|
|
return new (Mem) OpenACCNumGangsClause(BeginLoc, LParenLoc, IntExprs, EndLoc);
|
|
}
|
|
|
|
OpenACCTileClause *OpenACCTileClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> SizeExprs,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCTileClause::totalSizeToAlloc<Expr *>(SizeExprs.size()));
|
|
return new (Mem) OpenACCTileClause(BeginLoc, LParenLoc, SizeExprs, EndLoc);
|
|
}
|
|
|
|
OpenACCPrivateClause *OpenACCPrivateClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCPrivateClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCPrivateClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCFirstPrivateClause *OpenACCFirstPrivateClause::Create(
|
|
const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList, SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCFirstPrivateClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem)
|
|
OpenACCFirstPrivateClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCAttachClause *OpenACCAttachClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCAttachClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCAttachClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCDetachClause *OpenACCDetachClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCDetachClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCDetachClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCDeleteClause *OpenACCDeleteClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCDeleteClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCDeleteClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCUseDeviceClause *OpenACCUseDeviceClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCUseDeviceClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCUseDeviceClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCDevicePtrClause *OpenACCDevicePtrClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCDevicePtrClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCDevicePtrClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCNoCreateClause *OpenACCNoCreateClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCNoCreateClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCNoCreateClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCPresentClause *OpenACCPresentClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCPresentClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCPresentClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCHostClause *OpenACCHostClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCHostClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCHostClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCDeviceClause *OpenACCDeviceClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCDeviceClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCDeviceClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCCopyClause *
|
|
OpenACCCopyClause::Create(const ASTContext &C, OpenACCClauseKind Spelling,
|
|
SourceLocation BeginLoc, SourceLocation LParenLoc,
|
|
OpenACCModifierKind Mods, ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCCopyClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem)
|
|
OpenACCCopyClause(Spelling, BeginLoc, LParenLoc, Mods, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCLinkClause *OpenACCLinkClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCLinkClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCLinkClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCDeviceResidentClause *OpenACCDeviceResidentClause::Create(
|
|
const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc,
|
|
ArrayRef<Expr *> VarList, SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCDeviceResidentClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem)
|
|
OpenACCDeviceResidentClause(BeginLoc, LParenLoc, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCCopyInClause *
|
|
OpenACCCopyInClause::Create(const ASTContext &C, OpenACCClauseKind Spelling,
|
|
SourceLocation BeginLoc, SourceLocation LParenLoc,
|
|
OpenACCModifierKind Mods, ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCCopyInClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem)
|
|
OpenACCCopyInClause(Spelling, BeginLoc, LParenLoc, Mods, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCCopyOutClause *
|
|
OpenACCCopyOutClause::Create(const ASTContext &C, OpenACCClauseKind Spelling,
|
|
SourceLocation BeginLoc, SourceLocation LParenLoc,
|
|
OpenACCModifierKind Mods, ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCCopyOutClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem) OpenACCCopyOutClause(Spelling, BeginLoc, LParenLoc, Mods,
|
|
VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCCreateClause *
|
|
OpenACCCreateClause::Create(const ASTContext &C, OpenACCClauseKind Spelling,
|
|
SourceLocation BeginLoc, SourceLocation LParenLoc,
|
|
OpenACCModifierKind Mods, ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCCreateClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem)
|
|
OpenACCCreateClause(Spelling, BeginLoc, LParenLoc, Mods, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCDeviceTypeClause *OpenACCDeviceTypeClause::Create(
|
|
const ASTContext &C, OpenACCClauseKind K, SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc, ArrayRef<DeviceTypeArgument> Archs,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCDeviceTypeClause::totalSizeToAlloc<DeviceTypeArgument>(
|
|
Archs.size()));
|
|
return new (Mem)
|
|
OpenACCDeviceTypeClause(K, BeginLoc, LParenLoc, Archs, EndLoc);
|
|
}
|
|
|
|
OpenACCReductionClause *OpenACCReductionClause::Create(
|
|
const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc,
|
|
OpenACCReductionOperator Operator, ArrayRef<Expr *> VarList,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(
|
|
OpenACCReductionClause::totalSizeToAlloc<Expr *>(VarList.size()));
|
|
return new (Mem)
|
|
OpenACCReductionClause(BeginLoc, LParenLoc, Operator, VarList, EndLoc);
|
|
}
|
|
|
|
OpenACCAutoClause *OpenACCAutoClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCAutoClause));
|
|
return new (Mem) OpenACCAutoClause(BeginLoc, EndLoc);
|
|
}
|
|
|
|
OpenACCIndependentClause *
|
|
OpenACCIndependentClause::Create(const ASTContext &C, SourceLocation BeginLoc,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCIndependentClause));
|
|
return new (Mem) OpenACCIndependentClause(BeginLoc, EndLoc);
|
|
}
|
|
|
|
OpenACCSeqClause *OpenACCSeqClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCSeqClause));
|
|
return new (Mem) OpenACCSeqClause(BeginLoc, EndLoc);
|
|
}
|
|
|
|
OpenACCNoHostClause *OpenACCNoHostClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCNoHostClause));
|
|
return new (Mem) OpenACCNoHostClause(BeginLoc, EndLoc);
|
|
}
|
|
|
|
OpenACCGangClause *
|
|
OpenACCGangClause::Create(const ASTContext &C, SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
ArrayRef<OpenACCGangKind> GangKinds,
|
|
ArrayRef<Expr *> IntExprs, SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(OpenACCGangClause::totalSizeToAlloc<Expr *, OpenACCGangKind>(
|
|
IntExprs.size(), GangKinds.size()));
|
|
return new (Mem)
|
|
OpenACCGangClause(BeginLoc, LParenLoc, GangKinds, IntExprs, EndLoc);
|
|
}
|
|
|
|
OpenACCWorkerClause::OpenACCWorkerClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr, SourceLocation EndLoc)
|
|
: OpenACCClauseWithSingleIntExpr(OpenACCClauseKind::Worker, BeginLoc,
|
|
LParenLoc, IntExpr, EndLoc) {
|
|
assert((!IntExpr || IntExpr->isInstantiationDependent() ||
|
|
IntExpr->getType()->isIntegerType()) &&
|
|
"Int expression type not scalar/dependent");
|
|
}
|
|
|
|
OpenACCWorkerClause *OpenACCWorkerClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(sizeof(OpenACCWorkerClause), alignof(OpenACCWorkerClause));
|
|
return new (Mem) OpenACCWorkerClause(BeginLoc, LParenLoc, IntExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCVectorClause::OpenACCVectorClause(SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr, SourceLocation EndLoc)
|
|
: OpenACCClauseWithSingleIntExpr(OpenACCClauseKind::Vector, BeginLoc,
|
|
LParenLoc, IntExpr, EndLoc) {
|
|
assert((!IntExpr || IntExpr->isInstantiationDependent() ||
|
|
IntExpr->getType()->isIntegerType()) &&
|
|
"Int expression type not scalar/dependent");
|
|
}
|
|
|
|
OpenACCVectorClause *OpenACCVectorClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
Expr *IntExpr,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(sizeof(OpenACCVectorClause), alignof(OpenACCVectorClause));
|
|
return new (Mem) OpenACCVectorClause(BeginLoc, LParenLoc, IntExpr, EndLoc);
|
|
}
|
|
|
|
OpenACCFinalizeClause *OpenACCFinalizeClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation EndLoc) {
|
|
void *Mem =
|
|
C.Allocate(sizeof(OpenACCFinalizeClause), alignof(OpenACCFinalizeClause));
|
|
return new (Mem) OpenACCFinalizeClause(BeginLoc, EndLoc);
|
|
}
|
|
|
|
OpenACCIfPresentClause *OpenACCIfPresentClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCIfPresentClause),
|
|
alignof(OpenACCIfPresentClause));
|
|
return new (Mem) OpenACCIfPresentClause(BeginLoc, EndLoc);
|
|
}
|
|
|
|
OpenACCBindClause *OpenACCBindClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
const StringLiteral *SL,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCBindClause), alignof(OpenACCBindClause));
|
|
return new (Mem) OpenACCBindClause(BeginLoc, LParenLoc, SL, EndLoc);
|
|
}
|
|
|
|
OpenACCBindClause *OpenACCBindClause::Create(const ASTContext &C,
|
|
SourceLocation BeginLoc,
|
|
SourceLocation LParenLoc,
|
|
const IdentifierInfo *ID,
|
|
SourceLocation EndLoc) {
|
|
void *Mem = C.Allocate(sizeof(OpenACCBindClause), alignof(OpenACCBindClause));
|
|
return new (Mem) OpenACCBindClause(BeginLoc, LParenLoc, ID, EndLoc);
|
|
}
|
|
|
|
bool clang::operator==(const OpenACCBindClause &LHS,
|
|
const OpenACCBindClause &RHS) {
|
|
if (LHS.isStringArgument() != RHS.isStringArgument())
|
|
return false;
|
|
|
|
if (LHS.isStringArgument())
|
|
return LHS.getStringArgument()->getString() ==
|
|
RHS.getStringArgument()->getString();
|
|
return LHS.getIdentifierArgument()->getName() ==
|
|
RHS.getIdentifierArgument()->getName();
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// OpenACC clauses printing methods
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
void OpenACCClausePrinter::printExpr(const Expr *E) {
|
|
E->printPretty(OS, nullptr, Policy, 0);
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDefaultClause(const OpenACCDefaultClause &C) {
|
|
OS << "default(" << C.getDefaultClauseKind() << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitIfClause(const OpenACCIfClause &C) {
|
|
OS << "if(";
|
|
printExpr(C.getConditionExpr());
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitSelfClause(const OpenACCSelfClause &C) {
|
|
OS << "self";
|
|
|
|
if (C.isConditionExprClause()) {
|
|
if (const Expr *CondExpr = C.getConditionExpr()) {
|
|
OS << "(";
|
|
printExpr(CondExpr);
|
|
OS << ")";
|
|
}
|
|
} else {
|
|
OS << "(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitNumGangsClause(const OpenACCNumGangsClause &C) {
|
|
OS << "num_gangs(";
|
|
llvm::interleaveComma(C.getIntExprs(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitTileClause(const OpenACCTileClause &C) {
|
|
OS << "tile(";
|
|
llvm::interleaveComma(C.getSizeExprs(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitNumWorkersClause(
|
|
const OpenACCNumWorkersClause &C) {
|
|
OS << "num_workers(";
|
|
printExpr(C.getIntExpr());
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitVectorLengthClause(
|
|
const OpenACCVectorLengthClause &C) {
|
|
OS << "vector_length(";
|
|
printExpr(C.getIntExpr());
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDeviceNumClause(
|
|
const OpenACCDeviceNumClause &C) {
|
|
OS << "device_num(";
|
|
printExpr(C.getIntExpr());
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDefaultAsyncClause(
|
|
const OpenACCDefaultAsyncClause &C) {
|
|
OS << "default_async(";
|
|
printExpr(C.getIntExpr());
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitAsyncClause(const OpenACCAsyncClause &C) {
|
|
OS << "async";
|
|
if (C.hasIntExpr()) {
|
|
OS << "(";
|
|
printExpr(C.getIntExpr());
|
|
OS << ")";
|
|
}
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitPrivateClause(const OpenACCPrivateClause &C) {
|
|
OS << "private(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitFirstPrivateClause(
|
|
const OpenACCFirstPrivateClause &C) {
|
|
OS << "firstprivate(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitAttachClause(const OpenACCAttachClause &C) {
|
|
OS << "attach(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDetachClause(const OpenACCDetachClause &C) {
|
|
OS << "detach(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDeleteClause(const OpenACCDeleteClause &C) {
|
|
OS << "delete(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitUseDeviceClause(
|
|
const OpenACCUseDeviceClause &C) {
|
|
OS << "use_device(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDevicePtrClause(
|
|
const OpenACCDevicePtrClause &C) {
|
|
OS << "deviceptr(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitNoCreateClause(const OpenACCNoCreateClause &C) {
|
|
OS << "no_create(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitPresentClause(const OpenACCPresentClause &C) {
|
|
OS << "present(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitHostClause(const OpenACCHostClause &C) {
|
|
OS << "host(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDeviceClause(const OpenACCDeviceClause &C) {
|
|
OS << "device(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitCopyClause(const OpenACCCopyClause &C) {
|
|
OS << C.getClauseKind() << '(';
|
|
if (C.getModifierList() != OpenACCModifierKind::Invalid)
|
|
OS << C.getModifierList() << ": ";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitLinkClause(const OpenACCLinkClause &C) {
|
|
OS << "link(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDeviceResidentClause(
|
|
const OpenACCDeviceResidentClause &C) {
|
|
OS << "device_resident(";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitCopyInClause(const OpenACCCopyInClause &C) {
|
|
OS << C.getClauseKind() << '(';
|
|
if (C.getModifierList() != OpenACCModifierKind::Invalid)
|
|
OS << C.getModifierList() << ": ";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitCopyOutClause(const OpenACCCopyOutClause &C) {
|
|
OS << C.getClauseKind() << '(';
|
|
if (C.getModifierList() != OpenACCModifierKind::Invalid)
|
|
OS << C.getModifierList() << ": ";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitCreateClause(const OpenACCCreateClause &C) {
|
|
OS << C.getClauseKind() << '(';
|
|
if (C.getModifierList() != OpenACCModifierKind::Invalid)
|
|
OS << C.getModifierList() << ": ";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitReductionClause(
|
|
const OpenACCReductionClause &C) {
|
|
OS << "reduction(" << C.getReductionOp() << ": ";
|
|
llvm::interleaveComma(C.getVarList(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitWaitClause(const OpenACCWaitClause &C) {
|
|
OS << "wait";
|
|
if (!C.getLParenLoc().isInvalid()) {
|
|
OS << "(";
|
|
if (C.hasDevNumExpr()) {
|
|
OS << "devnum: ";
|
|
printExpr(C.getDevNumExpr());
|
|
OS << " : ";
|
|
}
|
|
|
|
if (C.hasQueuesTag())
|
|
OS << "queues: ";
|
|
|
|
llvm::interleaveComma(C.getQueueIdExprs(), OS,
|
|
[&](const Expr *E) { printExpr(E); });
|
|
OS << ")";
|
|
}
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitDeviceTypeClause(
|
|
const OpenACCDeviceTypeClause &C) {
|
|
OS << C.getClauseKind();
|
|
OS << "(";
|
|
llvm::interleaveComma(C.getArchitectures(), OS,
|
|
[&](const DeviceTypeArgument &Arch) {
|
|
if (Arch.getIdentifierInfo() == nullptr)
|
|
OS << "*";
|
|
else
|
|
OS << Arch.getIdentifierInfo()->getName();
|
|
});
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitAutoClause(const OpenACCAutoClause &C) {
|
|
OS << "auto";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitIndependentClause(
|
|
const OpenACCIndependentClause &C) {
|
|
OS << "independent";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitSeqClause(const OpenACCSeqClause &C) {
|
|
OS << "seq";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitNoHostClause(const OpenACCNoHostClause &C) {
|
|
OS << "nohost";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitCollapseClause(const OpenACCCollapseClause &C) {
|
|
OS << "collapse(";
|
|
if (C.hasForce())
|
|
OS << "force:";
|
|
printExpr(C.getLoopCount());
|
|
OS << ")";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitGangClause(const OpenACCGangClause &C) {
|
|
OS << "gang";
|
|
|
|
if (C.getNumExprs() > 0) {
|
|
OS << "(";
|
|
bool first = true;
|
|
for (unsigned I = 0; I < C.getNumExprs(); ++I) {
|
|
if (!first)
|
|
OS << ", ";
|
|
first = false;
|
|
|
|
OS << C.getExpr(I).first << ": ";
|
|
printExpr(C.getExpr(I).second);
|
|
}
|
|
OS << ")";
|
|
}
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitWorkerClause(const OpenACCWorkerClause &C) {
|
|
OS << "worker";
|
|
|
|
if (C.hasIntExpr()) {
|
|
OS << "(num: ";
|
|
printExpr(C.getIntExpr());
|
|
OS << ")";
|
|
}
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitVectorClause(const OpenACCVectorClause &C) {
|
|
OS << "vector";
|
|
|
|
if (C.hasIntExpr()) {
|
|
OS << "(length: ";
|
|
printExpr(C.getIntExpr());
|
|
OS << ")";
|
|
}
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitFinalizeClause(const OpenACCFinalizeClause &C) {
|
|
OS << "finalize";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitIfPresentClause(
|
|
const OpenACCIfPresentClause &C) {
|
|
OS << "if_present";
|
|
}
|
|
|
|
void OpenACCClausePrinter::VisitBindClause(const OpenACCBindClause &C) {
|
|
OS << "bind(";
|
|
if (C.isStringArgument())
|
|
OS << '"' << C.getStringArgument()->getString() << '"';
|
|
else
|
|
OS << C.getIdentifierArgument()->getName();
|
|
OS << ")";
|
|
}
|