Skip to content

Commit cb89112

Browse files
authoredFeb 16, 2024
[OpenACC] Implement beginning parts of the 'parallel' Sema impl (#81659)
This patch Implements AST node creation and appertainment enforcement for 'parallel', as well as changes the 'not implemented' messages to be more specific. It does not deal with clauses/clause legality, nor a few of the other rules from the standard, but this gets us most of the way for a framework for future construct implementation.
1 parent 0da0966 commit cb89112

16 files changed

+525
-327
lines changed
 

‎clang/include/clang/AST/StmtOpenACC.h

+11-11
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ class OpenACCAssociatedStmtConstruct : public OpenACCConstructStmt {
6868

6969
protected:
7070
OpenACCAssociatedStmtConstruct(StmtClass SC, OpenACCDirectiveKind K,
71-
SourceLocation Start, SourceLocation End)
72-
: OpenACCConstructStmt(SC, K, Start, End) {}
71+
SourceLocation Start, SourceLocation End,
72+
Stmt *AssocStmt)
73+
: OpenACCConstructStmt(SC, K, Start, End), AssociatedStmt(AssocStmt) {}
7374

7475
void setAssociatedStmt(Stmt *S) { AssociatedStmt = S; }
7576
Stmt *getAssociatedStmt() { return AssociatedStmt; }
@@ -105,14 +106,14 @@ class OpenACCComputeConstruct : public OpenACCAssociatedStmtConstruct {
105106
friend class ASTStmtReader;
106107
friend class ASTContext;
107108
OpenACCComputeConstruct()
108-
: OpenACCAssociatedStmtConstruct(OpenACCComputeConstructClass,
109-
OpenACCDirectiveKind::Invalid,
110-
SourceLocation{}, SourceLocation{}) {}
109+
: OpenACCAssociatedStmtConstruct(
110+
OpenACCComputeConstructClass, OpenACCDirectiveKind::Invalid,
111+
SourceLocation{}, SourceLocation{}, /*AssociatedStmt=*/nullptr) {}
111112

112113
OpenACCComputeConstruct(OpenACCDirectiveKind K, SourceLocation Start,
113-
SourceLocation End)
114+
SourceLocation End, Stmt *StructuredBlock)
114115
: OpenACCAssociatedStmtConstruct(OpenACCComputeConstructClass, K, Start,
115-
End) {
116+
End, StructuredBlock) {
116117
assert((K == OpenACCDirectiveKind::Parallel ||
117118
K == OpenACCDirectiveKind::Serial ||
118119
K == OpenACCDirectiveKind::Kernels) &&
@@ -128,10 +129,9 @@ class OpenACCComputeConstruct : public OpenACCAssociatedStmtConstruct {
128129
}
129130

130131
static OpenACCComputeConstruct *CreateEmpty(const ASTContext &C, EmptyShell);
131-
static OpenACCComputeConstruct *Create(const ASTContext &C,
132-
OpenACCDirectiveKind K,
133-
SourceLocation BeginLoc,
134-
SourceLocation EndLoc);
132+
static OpenACCComputeConstruct *
133+
Create(const ASTContext &C, OpenACCDirectiveKind K, SourceLocation BeginLoc,
134+
SourceLocation EndLoc, Stmt *StructuredBlock);
135135

136136
Stmt *getStructuredBlock() { return getAssociatedStmt(); }
137137
const Stmt *getStructuredBlock() const {

‎clang/include/clang/Sema/Sema.h

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "clang/AST/NSAPI.h"
3434
#include "clang/AST/PrettyPrinter.h"
3535
#include "clang/AST/StmtCXX.h"
36+
#include "clang/AST/StmtOpenACC.h"
3637
#include "clang/AST/StmtOpenMP.h"
3738
#include "clang/AST/TypeLoc.h"
3839
#include "clang/AST/TypeOrdering.h"

‎clang/lib/AST/ASTContext.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
#include "clang/AST/RawCommentList.h"
4242
#include "clang/AST/RecordLayout.h"
4343
#include "clang/AST/Stmt.h"
44+
#include "clang/AST/StmtOpenACC.h"
4445
#include "clang/AST/TemplateBase.h"
4546
#include "clang/AST/TemplateName.h"
4647
#include "clang/AST/Type.h"

‎clang/lib/AST/StmtOpenACC.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ OpenACCComputeConstruct::CreateEmpty(const ASTContext &C, EmptyShell) {
2424

2525
OpenACCComputeConstruct *
2626
OpenACCComputeConstruct::Create(const ASTContext &C, OpenACCDirectiveKind K,
27-
SourceLocation BeginLoc,
28-
SourceLocation EndLoc) {
27+
SourceLocation BeginLoc, SourceLocation EndLoc,
28+
Stmt *StructuredBlock) {
2929
void *Mem = C.Allocate(sizeof(OpenACCComputeConstruct),
3030
alignof(OpenACCComputeConstruct));
31-
auto *Inst = new (Mem) OpenACCComputeConstruct(K, BeginLoc, EndLoc);
31+
auto *Inst =
32+
new (Mem) OpenACCComputeConstruct(K, BeginLoc, EndLoc, StructuredBlock);
3233
return Inst;
3334
}

‎clang/lib/Parse/ParseOpenACC.cpp

+8-3
Original file line numberDiff line numberDiff line change
@@ -551,8 +551,13 @@ void SkipUntilEndOfDirective(Parser &P) {
551551
}
552552

553553
bool doesDirectiveHaveAssociatedStmt(OpenACCDirectiveKind DirKind) {
554-
// TODO OpenACC: Implement.
555-
return false;
554+
switch (DirKind) {
555+
default:
556+
return false;
557+
case OpenACCDirectiveKind::Parallel:
558+
return true;
559+
}
560+
llvm_unreachable("Unhandled directive->assoc stmt");
556561
}
557562

558563
} // namespace
@@ -1215,7 +1220,7 @@ StmtResult Parser::ParseOpenACCDirectiveStmt() {
12151220
ConsumeAnnotationToken();
12161221

12171222
OpenACCDirectiveParseInfo DirInfo = ParseOpenACCDirective();
1218-
if (getActions().ActOnStartOpenACCDeclDirective(DirInfo.DirKind,
1223+
if (getActions().ActOnStartOpenACCStmtDirective(DirInfo.DirKind,
12191224
DirInfo.StartLoc))
12201225
return StmtError();
12211226

‎clang/lib/Sema/SemaOpenACC.cpp

+52-4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,25 @@
1616
#include "clang/Sema/Sema.h"
1717

1818
using namespace clang;
19+
20+
namespace {
21+
bool diagnoseConstructAppertainment(Sema &S, OpenACCDirectiveKind K,
22+
SourceLocation StartLoc, bool IsStmt) {
23+
switch (K) {
24+
default:
25+
case OpenACCDirectiveKind::Invalid:
26+
// Nothing to do here, both invalid and unimplemented don't really need to
27+
// do anything.
28+
break;
29+
case OpenACCDirectiveKind::Parallel:
30+
if (!IsStmt)
31+
return S.Diag(StartLoc, diag::err_acc_construct_appertainment) << K;
32+
break;
33+
}
34+
return false;
35+
}
36+
} // namespace
37+
1938
bool Sema::ActOnOpenACCClause(OpenACCClauseKind ClauseKind,
2039
SourceLocation StartLoc) {
2140
if (ClauseKind == OpenACCClauseKind::Invalid)
@@ -35,6 +54,10 @@ void Sema::ActOnOpenACCConstruct(OpenACCDirectiveKind K,
3554
// ensure that we can still work and don't check any construct-specific
3655
// rules anywhere.
3756
break;
57+
case OpenACCDirectiveKind::Parallel:
58+
// Nothing to do here, there is no real legalization that needs to happen
59+
// here as these constructs do not take any arguments.
60+
break;
3861
default:
3962
Diag(StartLoc, diag::warn_acc_construct_unimplemented) << K;
4063
break;
@@ -43,24 +66,49 @@ void Sema::ActOnOpenACCConstruct(OpenACCDirectiveKind K,
4366

4467
bool Sema::ActOnStartOpenACCStmtDirective(OpenACCDirectiveKind K,
4568
SourceLocation StartLoc) {
46-
return true;
69+
return diagnoseConstructAppertainment(*this, K, StartLoc, /*IsStmt=*/true);
4770
}
4871

4972
StmtResult Sema::ActOnEndOpenACCStmtDirective(OpenACCDirectiveKind K,
5073
SourceLocation StartLoc,
5174
SourceLocation EndLoc,
5275
StmtResult AssocStmt) {
53-
return StmtEmpty();
76+
switch (K) {
77+
default:
78+
return StmtEmpty();
79+
case OpenACCDirectiveKind::Invalid:
80+
return StmtError();
81+
case OpenACCDirectiveKind::Parallel:
82+
return OpenACCComputeConstruct::Create(
83+
getASTContext(), K, StartLoc, EndLoc,
84+
AssocStmt.isUsable() ? AssocStmt.get() : nullptr);
85+
}
86+
llvm_unreachable("Unhandled case in directive handling?");
5487
}
5588

5689
StmtResult Sema::ActOnOpenACCAssociatedStmt(OpenACCDirectiveKind K,
5790
StmtResult AssocStmt) {
58-
return AssocStmt;
91+
switch (K) {
92+
default:
93+
llvm_unreachable("Unimplemented associated statement application");
94+
case OpenACCDirectiveKind::Parallel:
95+
// There really isn't any checking here that could happen. As long as we
96+
// have a statement to associate, this should be fine.
97+
// OpenACC 3.3 Section 6:
98+
// Structured Block: in C or C++, an executable statement, possibly
99+
// compound, with a single entry at the top and a single exit at the
100+
// bottom.
101+
// FIXME: Should we reject DeclStmt's here? The standard isn't clear, and
102+
// an interpretation of it is to allow this and treat the initializer as
103+
// the 'structured block'.
104+
return AssocStmt;
105+
}
106+
llvm_unreachable("Invalid associated statement application");
59107
}
60108

61109
bool Sema::ActOnStartOpenACCDeclDirective(OpenACCDirectiveKind K,
62110
SourceLocation StartLoc) {
63-
return true;
111+
return diagnoseConstructAppertainment(*this, K, StartLoc, /*IsStmt=*/false);
64112
}
65113

66114
DeclGroupRef Sema::ActOnEndOpenACCDeclDirective() { return DeclGroupRef{}; }

‎clang/lib/Sema/TreeTransform.h

+10-1
Original file line numberDiff line numberDiff line change
@@ -4000,7 +4000,16 @@ class TreeTransform {
40004000
SourceLocation BeginLoc,
40014001
SourceLocation EndLoc,
40024002
StmtResult StrBlock) {
4003-
llvm_unreachable("Not yet implemented!");
4003+
getSema().ActOnOpenACCConstruct(K, BeginLoc);
4004+
4005+
// TODO OpenACC: Include clauses.
4006+
if (getSema().ActOnStartOpenACCStmtDirective(K, BeginLoc))
4007+
return StmtError();
4008+
4009+
StrBlock = getSema().ActOnOpenACCAssociatedStmt(K, StrBlock);
4010+
4011+
return getSema().ActOnEndOpenACCStmtDirective(K, BeginLoc, EndLoc,
4012+
StrBlock);
40044013
}
40054014

40064015
private:

0 commit comments

Comments
 (0)
Please sign in to comment.