Home
last modified time | relevance | path

Searched refs:OMPPrivateClause (Results 1 – 12 of 12) sorted by relevance

/openbsd/gnu/llvm/clang/lib/AST/
H A DOpenMPClause.cpp424 void OMPPrivateClause::setPrivateCopies(ArrayRef<Expr *> VL) { in setPrivateCopies()
430 OMPPrivateClause *
431 OMPPrivateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
436 OMPPrivateClause *Clause = in Create()
437 new (Mem) OMPPrivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
443 OMPPrivateClause *OMPPrivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
446 return new (Mem) OMPPrivateClause(N); in CreateEmpty()
2052 void OMPClausePrinter::VisitOMPPrivateClause(OMPPrivateClause *Node) { in VisitOMPPrivateClause()
H A DStmtProfile.cpp613 void OMPClauseProfiler::VisitOMPPrivateClause(const OMPPrivateClause *C) { in VisitOMPPrivateClause()
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DOpenMPClause.h2523 class OMPPrivateClause final
2524 : public OMPVarListClause<OMPPrivateClause>,
2525 private llvm::TrailingObjects<OMPPrivateClause, Expr *> {
2536 OMPPrivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPPrivateClause() function
2538 : OMPVarListClause<OMPPrivateClause>(llvm::omp::OMPC_private, StartLoc, in OMPPrivateClause()
2544 explicit OMPPrivateClause(unsigned N) in OMPPrivateClause() function
2545 : OMPVarListClause<OMPPrivateClause>(llvm::omp::OMPC_private, in OMPPrivateClause()
2572 static OMPPrivateClause *Create(const ASTContext &C, SourceLocation StartLoc,
2581 static OMPPrivateClause *CreateEmpty(const ASTContext &C, unsigned N);
2605 auto Children = const_cast<OMPPrivateClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3485 bool RecursiveASTVisitor<Derived>::VisitOMPPrivateClause(OMPPrivateClause *C) {
/openbsd/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td67 let clangClass = "OMPPrivateClause";
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp152 for (const auto *C : LD->getClausesOfKind<OMPPrivateClause>()) { in emitPreInitStmt()
951 for (const auto *C : D.getClausesOfKind<OMPPrivateClause>()) { in EmitOMPPrivateClause()
4617 for (const auto *C : S.getClausesOfKind<OMPPrivateClause>()) { in EmitOMPTaskBasedDirective()
H A DCGOpenMPRuntime.cpp11936 for (const auto *C : S.getClausesOfKind<OMPPrivateClause>()) { in tryToDisableInnerAnalysis()
/openbsd/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp10090 C = OMPPrivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
10511 void OMPClauseReader::VisitOMPPrivateClause(OMPPrivateClause *C) { in VisitOMPPrivateClause()
H A DASTWriter.cpp6568 void OMPClauseWriter::VisitOMPPrivateClause(OMPPrivateClause *C) { in VisitOMPPrivateClause()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaOpenMP.cpp4057 if (isa_and_nonnull<OMPPrivateClause>(C)) in VisitOMPExecutableDirective()
5448 auto *PC = cast<OMPPrivateClause>(Cl); in checkAllocateClauses()
6216 ErrorFound = cast<OMPPrivateClause>(Implicit)->varlist_size() != in ActOnOpenMPExecutableDirective()
18107 return OMPPrivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPPrivateClause()
H A DTreeTransform.h9937 TreeTransform<Derived>::TransformOMPPrivateClause(OMPPrivateClause *C) { in TransformOMPPrivateClause()
/openbsd/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2500 void OMPClauseEnqueue::VisitOMPPrivateClause(const OMPPrivateClause *C) { in VisitOMPPrivateClause()