Home
last modified time | relevance | path

Searched refs:OMPAllocateClause (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1004 OMPAllocateClause *
1005 OMPAllocateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
1011 auto *Clause = new (Mem) OMPAllocateClause(StartLoc, LParenLoc, Allocator, in Create()
1017 OMPAllocateClause *OMPAllocateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1020 return new (Mem) OMPAllocateClause(N); in CreateEmpty()
2100 void OMPClausePrinter::VisitOMPAllocateClause(OMPAllocateClause *Node) { in VisitOMPAllocateClause()
H A DStmtProfile.cpp840 void OMPClauseProfiler::VisitOMPAllocateClause(const OMPAllocateClause *C) { in VisitOMPAllocateClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h430 class OMPAllocateClause final
431 : public OMPVarListClause<OMPAllocateClause>,
432 private llvm::TrailingObjects<OMPAllocateClause, Expr *> {
451 OMPAllocateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAllocateClause() function
454 : OMPVarListClause<OMPAllocateClause>(llvm::omp::OMPC_allocate, StartLoc, in OMPAllocateClause()
461 explicit OMPAllocateClause(unsigned N) in OMPAllocateClause() function
462 : OMPVarListClause<OMPAllocateClause>(llvm::omp::OMPC_allocate, in OMPAllocateClause()
481 static OMPAllocateClause *Create(const ASTContext &C, SourceLocation StartLoc,
496 static OMPAllocateClause *CreateEmpty(const ASTContext &C, unsigned N);
504 auto Children = const_cast<OMPAllocateClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3286 bool RecursiveASTVisitor<Derived>::VisitOMPAllocateClause(OMPAllocateClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td54 let clangClass = "OMPAllocateClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10654 C = OMPAllocateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11350 void OMPClauseReader::VisitOMPAllocateClause(OMPAllocateClause *C) { in VisitOMPAllocateClause()
H A DASTWriter.cpp7549 void OMPClauseWriter::VisitOMPAllocateClause(OMPAllocateClause *C) { in VisitOMPAllocateClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp5244 llvm::make_filter_range(Clauses, OMPAllocateClause::classof); in checkAllocateClauses()
5305 auto *AC = cast<OMPAllocateClause>(C); in checkAllocateClauses()
22822 return OMPAllocateClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPAllocateClause()
H A DTreeTransform.h10852 TreeTransform<Derived>::TransformOMPAllocateClause(OMPAllocateClause *C) { in TransformOMPAllocateClause()