Home
last modified time | relevance | path

Searched refs:OpenACCUpdateConstruct (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenACC.cpp283 OpenACCUpdateConstruct *
284 OpenACCUpdateConstruct::CreateEmpty(const ASTContext &C, unsigned NumClauses) { in CreateEmpty()
286 OpenACCUpdateConstruct::totalSizeToAlloc<const OpenACCClause *>( in CreateEmpty()
288 auto *Inst = new (Mem) OpenACCUpdateConstruct(NumClauses); in CreateEmpty()
292 OpenACCUpdateConstruct *
293 OpenACCUpdateConstruct::Create(const ASTContext &C, SourceLocation Start, in Create()
297 OpenACCUpdateConstruct::totalSizeToAlloc<const OpenACCClause *>( in Create()
300 new (Mem) OpenACCUpdateConstruct(Start, DirectiveLoc, End, Clauses); in Create()
H A DStmtProfile.cpp2841 const OpenACCUpdateConstruct *S) { in VisitOpenACCUpdateConstruct()
H A DStmtPrinter.cpp1231 void StmtPrinter::VisitOpenACCUpdateConstruct(OpenACCUpdateConstruct *S) { in VisitOpenACCUpdateConstruct()
H A DTextNodeDumper.cpp3115 const OpenACCUpdateConstruct *S) { in VisitOpenACCUpdateConstruct()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenACC.h727 class OpenACCUpdateConstruct final
729 private llvm::TrailingObjects<OpenACCUpdateConstruct,
732 OpenACCUpdateConstruct(unsigned NumClauses) in OpenACCUpdateConstruct() function
740 OpenACCUpdateConstruct(SourceLocation Start, SourceLocation DirectiveLoc, in OpenACCUpdateConstruct() function
754 static OpenACCUpdateConstruct *CreateEmpty(const ASTContext &C,
756 static OpenACCUpdateConstruct *
H A DTextNodeDumper.h424 void VisitOpenACCUpdateConstruct(const OpenACCUpdateConstruct *S);
H A DRecursiveASTVisitor.h4139 DEF_TRAVERSE_STMT(OpenACCUpdateConstruct,
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenStmtOpenACC.cpp270 CIRGenFunction::emitOpenACCUpdateConstruct(const OpenACCUpdateConstruct &s) { in emitOpenACCUpdateConstruct()
H A DCIRGenStmt.cpp127 return emitOpenACCUpdateConstruct(cast<OpenACCUpdateConstruct>(*s)); in emitStmt()
H A DCIRGenFunction.h1279 emitOpenACCUpdateConstruct(const OpenACCUpdateConstruct &s);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td320 def OpenACCUpdateConstruct : StmtNode<OpenACCConstructStmt>;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp622 if (isa<OpenACCUpdateConstruct>(SubStmt)) { in ActOnLabelStmt()
1033 if (isa<OpenACCUpdateConstruct>(thenStmt)) { in ActOnIfStmt()
1321 if (isa<OpenACCUpdateConstruct>(BodyStmt)) { in ActOnFinishSwitchStmt()
1817 if (isa<OpenACCUpdateConstruct>(Body)) { in ActOnWhileStmt()
1855 if (isa<OpenACCUpdateConstruct>(Body)) { in ActOnDoStmt()
H A DSemaOpenACC.cpp2024 return OpenACCUpdateConstruct::Create(getASTContext(), StartLoc, DirLoc, in ActOnEndStmtDirective()
H A DTreeTransform.h12702 OpenACCUpdateConstruct *C) { in TransformOpenACCUpdateConstruct()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2900 void ASTStmtReader::VisitOpenACCUpdateConstruct(OpenACCUpdateConstruct *S) { in VisitOpenACCUpdateConstruct()
4481 S = OpenACCUpdateConstruct::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2986 void ASTStmtWriter::VisitOpenACCUpdateConstruct(OpenACCUpdateConstruct *S) { in VisitOpenACCUpdateConstruct()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp494 EmitOpenACCUpdateConstruct(cast<OpenACCUpdateConstruct>(*S)); in EmitStmt()
H A DCodeGenFunction.h4184 void EmitOpenACCUpdateConstruct(const OpenACCUpdateConstruct &S) {