Home
last modified time | relevance | path

Searched refs:OpenACCSetConstruct (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenACC.cpp264 OpenACCSetConstruct *OpenACCSetConstruct::CreateEmpty(const ASTContext &C, in CreateEmpty()
267 OpenACCSetConstruct::totalSizeToAlloc<const OpenACCClause *>(NumClauses)); in CreateEmpty()
268 auto *Inst = new (Mem) OpenACCSetConstruct(NumClauses); in CreateEmpty()
272 OpenACCSetConstruct *
273 OpenACCSetConstruct::Create(const ASTContext &C, SourceLocation Start, in Create()
277 C.Allocate(OpenACCSetConstruct::totalSizeToAlloc<const OpenACCClause *>( in Create()
279 auto *Inst = new (Mem) OpenACCSetConstruct(Start, DirectiveLoc, End, Clauses); in Create()
H A DStmtProfile.cpp2834 void StmtProfiler::VisitOpenACCSetConstruct(const OpenACCSetConstruct *S) { in VisitOpenACCSetConstruct()
H A DStmtPrinter.cpp1228 void StmtPrinter::VisitOpenACCSetConstruct(OpenACCSetConstruct *S) { in VisitOpenACCSetConstruct()
H A DTextNodeDumper.cpp3111 void TextNodeDumper::VisitOpenACCSetConstruct(const OpenACCSetConstruct *S) { in VisitOpenACCSetConstruct()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenACC.h692 class OpenACCSetConstruct final
694 private llvm::TrailingObjects<OpenACCSetConstruct,
697 OpenACCSetConstruct(unsigned NumClauses) in OpenACCSetConstruct() function
705 OpenACCSetConstruct(SourceLocation Start, SourceLocation DirectiveLoc, in OpenACCSetConstruct() function
719 static OpenACCSetConstruct *CreateEmpty(const ASTContext &C,
721 static OpenACCSetConstruct *Create(const ASTContext &C, SourceLocation Start,
H A DTextNodeDumper.h422 void VisitOpenACCSetConstruct(const OpenACCSetConstruct *S);
H A DRecursiveASTVisitor.h4137 DEF_TRAVERSE_STMT(OpenACCSetConstruct,
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenStmtOpenACC.cpp169 CIRGenFunction::emitOpenACCSetConstruct(const OpenACCSetConstruct &s) { in emitOpenACCSetConstruct()
H A DCIRGenStmt.cpp125 return emitOpenACCSetConstruct(cast<OpenACCSetConstruct>(*s)); in emitStmt()
H A DCIRGenFunction.h1277 mlir::LogicalResult emitOpenACCSetConstruct(const OpenACCSetConstruct &s);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td319 def OpenACCSetConstruct : StmtNode<OpenACCConstructStmt>;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACC.cpp2020 return OpenACCSetConstruct::Create(getASTContext(), StartLoc, DirLoc, in ActOnEndStmtDirective()
H A DTreeTransform.h12685 TreeTransform<Derived>::TransformOpenACCSetConstruct(OpenACCSetConstruct *C) { in TransformOpenACCSetConstruct()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2895 void ASTStmtReader::VisitOpenACCSetConstruct(OpenACCSetConstruct *S) { in VisitOpenACCSetConstruct()
4476 S = OpenACCSetConstruct::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2980 void ASTStmtWriter::VisitOpenACCSetConstruct(OpenACCSetConstruct *S) { in VisitOpenACCSetConstruct()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp491 EmitOpenACCSetConstruct(cast<OpenACCSetConstruct>(*S)); in EmitStmt()
H A DCodeGenFunction.h4179 void EmitOpenACCSetConstruct(const OpenACCSetConstruct &S) {