Home
last modified time | relevance | path

Searched refs:OpenACCComputeConstruct (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenACC.cpp18 OpenACCComputeConstruct *
19 OpenACCComputeConstruct::CreateEmpty(const ASTContext &C, unsigned NumClauses) { in CreateEmpty()
21 OpenACCComputeConstruct::totalSizeToAlloc<const OpenACCClause *>( in CreateEmpty()
23 auto *Inst = new (Mem) OpenACCComputeConstruct(NumClauses); in CreateEmpty()
27 OpenACCComputeConstruct *OpenACCComputeConstruct::Create( in Create()
32 OpenACCComputeConstruct::totalSizeToAlloc<const OpenACCClause *>( in Create()
34 auto *Inst = new (Mem) OpenACCComputeConstruct(K, BeginLoc, DirLoc, EndLoc, in Create()
H A DStmtProfile.cpp2752 const OpenACCComputeConstruct *S) { in VisitOpenACCComputeConstruct()
H A DStmtPrinter.cpp1193 void StmtPrinter::VisitOpenACCComputeConstruct(OpenACCComputeConstruct *S) { in VisitOpenACCComputeConstruct()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenACC.h129 class OpenACCComputeConstruct final
131 private llvm::TrailingObjects<OpenACCComputeConstruct,
137 OpenACCComputeConstruct(unsigned NumClauses) in OpenACCComputeConstruct() function
149 OpenACCComputeConstruct(OpenACCDirectiveKind K, SourceLocation Start, in OpenACCComputeConstruct() function
172 static OpenACCComputeConstruct *CreateEmpty(const ASTContext &C,
174 static OpenACCComputeConstruct *
181 return const_cast<OpenACCComputeConstruct *>(this)->getStructuredBlock(); in getStructuredBlock()
201 friend class OpenACCComputeConstruct; variable
H A DRecursiveASTVisitor.h4112 DEF_TRAVERSE_STMT(OpenACCComputeConstruct,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp601 OpenACCComputeConstruct *CC = cast<OpenACCComputeConstruct>(S); in BuildScopeInformation()
H A DSemaOpenACC.cpp1972 return OpenACCComputeConstruct::Create( in ActOnEndStmtDirective()
H A DTreeTransform.h12491 OpenACCComputeConstruct *C) { in TransformOpenACCComputeConstruct()
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenStmtOpenACC.cpp128 CIRGenFunction::emitOpenACCComputeConstruct(const OpenACCComputeConstruct &s) { in emitOpenACCComputeConstruct()
H A DCIRGenStmt.cpp105 return emitOpenACCComputeConstruct(cast<OpenACCComputeConstruct>(*s)); in emitStmt()
H A DCIRGenFunction.h1262 emitOpenACCComputeConstruct(const OpenACCComputeConstruct &s);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td309 def OpenACCComputeConstruct : StmtNode<OpenACCAssociatedStmtConstruct>;
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2853 void ASTStmtReader::VisitOpenACCComputeConstruct(OpenACCComputeConstruct *S) { in VisitOpenACCComputeConstruct()
4420 S = OpenACCComputeConstruct::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2930 void ASTStmtWriter::VisitOpenACCComputeConstruct(OpenACCComputeConstruct *S) { in VisitOpenACCComputeConstruct()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp461 EmitOpenACCComputeConstruct(cast<OpenACCComputeConstruct>(*S)); in EmitStmt()
H A DCodeGenFunction.h4119 void EmitOpenACCComputeConstruct(const OpenACCComputeConstruct &S) {