Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenACC.cpp39 OpenACCLoopConstruct::OpenACCLoopConstruct(unsigned NumClauses) in OpenACCLoopConstruct() function in OpenACCLoopConstruct
48 OpenACCLoopConstruct::OpenACCLoopConstruct( in OpenACCLoopConstruct() function in OpenACCLoopConstruct
66 OpenACCLoopConstruct *OpenACCLoopConstruct::CreateEmpty(const ASTContext &C, in CreateEmpty()
69 C.Allocate(OpenACCLoopConstruct::totalSizeToAlloc<const OpenACCClause *>( in CreateEmpty()
71 auto *Inst = new (Mem) OpenACCLoopConstruct(NumClauses); in CreateEmpty()
75 OpenACCLoopConstruct *OpenACCLoopConstruct::Create( in Create()
80 C.Allocate(OpenACCLoopConstruct::totalSizeToAlloc<const OpenACCClause *>( in Create()
83 OpenACCLoopConstruct(ParentKind, BeginLoc, DirLoc, EndLoc, Clauses, Loop); in Create()
H A DStmtProfile.cpp2760 void StmtProfiler::VisitOpenACCLoopConstruct(const OpenACCLoopConstruct *S) { in VisitOpenACCLoopConstruct()
H A DStmtPrinter.cpp1198 void StmtPrinter::VisitOpenACCLoopConstruct(OpenACCLoopConstruct *S) { in VisitOpenACCLoopConstruct()
H A DTextNodeDumper.cpp3064 void TextNodeDumper::VisitOpenACCLoopConstruct(const OpenACCLoopConstruct *S) { in VisitOpenACCLoopConstruct()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenACC.h187 class OpenACCLoopConstruct final
189 private llvm::TrailingObjects<OpenACCLoopConstruct,
204 OpenACCLoopConstruct(unsigned NumClauses);
206 OpenACCLoopConstruct(OpenACCDirectiveKind ParentKind, SourceLocation Start,
215 static OpenACCLoopConstruct *CreateEmpty(const ASTContext &C,
218 static OpenACCLoopConstruct *
225 return const_cast<OpenACCLoopConstruct *>(this)->getLoop(); in getLoop()
H A DTextNodeDumper.h414 void VisitOpenACCLoopConstruct(const OpenACCLoopConstruct *S);
H A DRecursiveASTVisitor.h4114 DEF_TRAVERSE_STMT(OpenACCLoopConstruct,
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenStmtOpenACCLoop.cpp56 CIRGenFunction::emitOpenACCLoopConstruct(const OpenACCLoopConstruct &s) { in emitOpenACCLoopConstruct()
H A DCIRGenStmt.cpp107 return emitOpenACCLoopConstruct(cast<OpenACCLoopConstruct>(*s)); in emitStmt()
H A DCIRGenFunction.h1263 mlir::LogicalResult emitOpenACCLoopConstruct(const OpenACCLoopConstruct &s);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td310 def OpenACCLoopConstruct : StmtNode<OpenACCAssociatedStmtConstruct>;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACC.cpp1984 return OpenACCLoopConstruct::Create( in ActOnEndStmtDirective()
H A DTreeTransform.h12517 TreeTransform<Derived>::TransformOpenACCLoopConstruct(OpenACCLoopConstruct *C) { in TransformOpenACCLoopConstruct()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2858 void ASTStmtReader::VisitOpenACCLoopConstruct(OpenACCLoopConstruct *S) { in VisitOpenACCLoopConstruct()
4425 S = OpenACCLoopConstruct::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2936 void ASTStmtWriter::VisitOpenACCLoopConstruct(OpenACCLoopConstruct *S) { in VisitOpenACCLoopConstruct()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp464 EmitOpenACCLoopConstruct(cast<OpenACCLoopConstruct>(*S)); in EmitStmt()
H A DCodeGenFunction.h4126 void EmitOpenACCLoopConstruct(const OpenACCLoopConstruct &S) {