Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenACC.cpp223 OpenACCInitConstruct *OpenACCInitConstruct::CreateEmpty(const ASTContext &C, in CreateEmpty()
226 C.Allocate(OpenACCInitConstruct::totalSizeToAlloc<const OpenACCClause *>( in CreateEmpty()
228 auto *Inst = new (Mem) OpenACCInitConstruct(NumClauses); in CreateEmpty()
232 OpenACCInitConstruct *
233 OpenACCInitConstruct::Create(const ASTContext &C, SourceLocation Start, in Create()
237 C.Allocate(OpenACCInitConstruct::totalSizeToAlloc<const OpenACCClause *>( in Create()
240 new (Mem) OpenACCInitConstruct(Start, DirectiveLoc, End, Clauses); in Create()
H A DStmtProfile.cpp2821 void StmtProfiler::VisitOpenACCInitConstruct(const OpenACCInitConstruct *S) { in VisitOpenACCInitConstruct()
H A DStmtPrinter.cpp1222 void StmtPrinter::VisitOpenACCInitConstruct(OpenACCInitConstruct *S) { in VisitOpenACCInitConstruct()
H A DTextNodeDumper.cpp3104 void TextNodeDumper::VisitOpenACCInitConstruct(const OpenACCInitConstruct *S) { in VisitOpenACCInitConstruct()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenACC.h623 class OpenACCInitConstruct final
625 private llvm::TrailingObjects<OpenACCInitConstruct,
628 OpenACCInitConstruct(unsigned NumClauses) in OpenACCInitConstruct() function
635 OpenACCInitConstruct(SourceLocation Start, SourceLocation DirectiveLoc, in OpenACCInitConstruct() function
649 static OpenACCInitConstruct *CreateEmpty(const ASTContext &C,
651 static OpenACCInitConstruct *Create(const ASTContext &C, SourceLocation Start,
H A DTextNodeDumper.h421 void VisitOpenACCInitConstruct(const OpenACCInitConstruct *S);
H A DRecursiveASTVisitor.h4133 DEF_TRAVERSE_STMT(OpenACCInitConstruct,
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenStmtOpenACC.cpp161 CIRGenFunction::emitOpenACCInitConstruct(const OpenACCInitConstruct &s) { in emitOpenACCInitConstruct()
H A DCIRGenStmt.cpp121 return emitOpenACCInitConstruct(cast<OpenACCInitConstruct>(*s)); in emitStmt()
H A DCIRGenFunction.h1274 mlir::LogicalResult emitOpenACCInitConstruct(const OpenACCInitConstruct &s);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td317 def OpenACCInitConstruct : StmtNode<OpenACCConstructStmt>;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACC.cpp2012 return OpenACCInitConstruct::Create(getASTContext(), StartLoc, DirLoc, in ActOnEndStmtDirective()
H A DTreeTransform.h12652 TreeTransform<Derived>::TransformOpenACCInitConstruct(OpenACCInitConstruct *C) { in TransformOpenACCInitConstruct()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2885 void ASTStmtReader::VisitOpenACCInitConstruct(OpenACCInitConstruct *S) { in VisitOpenACCInitConstruct()
4466 S = OpenACCInitConstruct::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2968 void ASTStmtWriter::VisitOpenACCInitConstruct(OpenACCInitConstruct *S) { in VisitOpenACCInitConstruct()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp485 EmitOpenACCInitConstruct(cast<OpenACCInitConstruct>(*S)); in EmitStmt()
H A DCodeGenFunction.h4169 void EmitOpenACCInitConstruct(const OpenACCInitConstruct &S) {