Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenACC.cpp325 OpenACCCacheConstruct *OpenACCCacheConstruct::CreateEmpty(const ASTContext &C, in CreateEmpty()
328 C.Allocate(OpenACCCacheConstruct::totalSizeToAlloc<Expr *>(NumVars)); in CreateEmpty()
329 auto *Inst = new (Mem) OpenACCCacheConstruct(NumVars); in CreateEmpty()
333 OpenACCCacheConstruct *OpenACCCacheConstruct::Create( in Create()
338 OpenACCCacheConstruct::totalSizeToAlloc<Expr *>(VarList.size())); in Create()
339 auto *Inst = new (Mem) OpenACCCacheConstruct( in Create()
H A DStmtProfile.cpp2816 void StmtProfiler::VisitOpenACCCacheConstruct(const OpenACCCacheConstruct *S) { in VisitOpenACCCacheConstruct()
H A DStmtPrinter.cpp1270 void StmtPrinter::VisitOpenACCCacheConstruct(OpenACCCacheConstruct *S) { in VisitOpenACCCacheConstruct()
H A DTextNodeDumper.cpp3099 const OpenACCCacheConstruct *S) { in VisitOpenACCCacheConstruct()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenACC.h556 class OpenACCCacheConstruct final
558 private llvm::TrailingObjects<OpenACCCacheConstruct, Expr *> {
569 OpenACCCacheConstruct(unsigned NumVars) in OpenACCCacheConstruct() function
576 OpenACCCacheConstruct(SourceLocation Start, SourceLocation DirectiveLoc, in OpenACCCacheConstruct() function
598 static OpenACCCacheConstruct *CreateEmpty(const ASTContext &C,
600 static OpenACCCacheConstruct *
H A DTextNodeDumper.h426 void VisitOpenACCCacheConstruct(const OpenACCCacheConstruct *S);
H A DRecursiveASTVisitor.h4143 DEF_TRAVERSE_STMT(OpenACCCacheConstruct, {
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenStmtOpenACC.cpp278 CIRGenFunction::emitOpenACCCacheConstruct(const OpenACCCacheConstruct &s) { in emitOpenACCCacheConstruct()
H A DCIRGenStmt.cpp129 return emitOpenACCCacheConstruct(cast<OpenACCCacheConstruct>(*s)); in emitStmt()
H A DCIRGenFunction.h1282 mlir::LogicalResult emitOpenACCCacheConstruct(const OpenACCCacheConstruct &s);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td322 def OpenACCCacheConstruct : StmtNode<OpenACCConstructStmt>;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACC.cpp2034 return OpenACCCacheConstruct::Create(getASTContext(), StartLoc, DirLoc, in ActOnEndStmtDirective()
H A DTreeTransform.h12762 OpenACCCacheConstruct *C) { in TransformOpenACCCacheConstruct()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2926 void ASTStmtReader::VisitOpenACCCacheConstruct(OpenACCCacheConstruct *S) { in VisitOpenACCCacheConstruct()
4461 S = OpenACCCacheConstruct::CreateEmpty(Context, NumVars); in ReadStmtFromStream()
H A DASTWriterStmt.cpp3021 void ASTStmtWriter::VisitOpenACCCacheConstruct(OpenACCCacheConstruct *S) { in VisitOpenACCCacheConstruct()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp500 EmitOpenACCCacheConstruct(cast<OpenACCCacheConstruct>(*S)); in EmitStmt()
H A DCodeGenFunction.h4195 void EmitOpenACCCacheConstruct(const OpenACCCacheConstruct &S) {