Home
last modified time | relevance | path

Searched refs:OMPFirstprivateClause (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DOpenMPClause.cpp71 return static_cast<const OMPFirstprivateClause *>(C); in get()
449 void OMPFirstprivateClause::setPrivateCopies(ArrayRef<Expr *> VL) { in setPrivateCopies()
455 void OMPFirstprivateClause::setInits(ArrayRef<Expr *> VL) { in setInits()
461 OMPFirstprivateClause *
462 OMPFirstprivateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
467 OMPFirstprivateClause *Clause = in Create()
468 new (Mem) OMPFirstprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
476 OMPFirstprivateClause *OMPFirstprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
479 return new (Mem) OMPFirstprivateClause(N); in CreateEmpty()
2060 void OMPClausePrinter::VisitOMPFirstprivateClause(OMPFirstprivateClause *Node) { in VisitOMPFirstprivateClause()
H A DStmtProfile.cpp621 OMPClauseProfiler::VisitOMPFirstprivateClause(const OMPFirstprivateClause *C) { in VisitOMPFirstprivateClause()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DOpenMPClause.h2629 class OMPFirstprivateClause final
2630 : public OMPVarListClause<OMPFirstprivateClause>,
2632 private llvm::TrailingObjects<OMPFirstprivateClause, Expr *> {
2643 OMPFirstprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPFirstprivateClause() function
2645 : OMPVarListClause<OMPFirstprivateClause>(llvm::omp::OMPC_firstprivate, in OMPFirstprivateClause()
2652 explicit OMPFirstprivateClause(unsigned N) in OMPFirstprivateClause() function
2653 : OMPVarListClause<OMPFirstprivateClause>( in OMPFirstprivateClause()
2700 static OMPFirstprivateClause *
2709 static OMPFirstprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
2744 auto Children = const_cast<OMPFirstprivateClause *>(this)->children(); in children()
[all …]
H A DRecursiveASTVisitor.h3495 OMPFirstprivateClause *C) {
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp822 for (const auto *C : D.getClausesOfKind<OMPFirstprivateClause>()) { in EmitOMPFirstprivateClause()
1528 for (const auto *C : S.getClausesOfKind<OMPFirstprivateClause>()) { in checkForLastprivateConditionalUpdate()
4630 for (const auto *C : S.getClausesOfKind<OMPFirstprivateClause>()) { in EmitOMPTaskBasedDirective()
5000 for (const auto *C : S.getClausesOfKind<OMPFirstprivateClause>()) { in EmitOMPTargetTaskBasedDirective()
7804 for (const auto *C : D.getClausesOfKind<OMPFirstprivateClause>()) { in EmitSimpleOMPExecutableDirective()
H A DCGOpenMPRuntimeGPU.cpp293 if (const auto *PC = dyn_cast<OMPFirstprivateClause>(C)) in VisitOpenMPCapturedStmt()
H A DCGOpenMPRuntime.cpp8385 for (const auto *C : Dir.getClausesOfKind<OMPFirstprivateClause>()) in MappableExprsHandler()
11946 for (const auto *C : S.getClausesOfKind<OMPFirstprivateClause>()) { in tryToDisableInnerAnalysis()
/openbsd-src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td84 let clangClass = "OMPFirstprivateClause";
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOpenMP.cpp3709 if (auto *FC = dyn_cast<OMPFirstprivateClause>(C)) { in VisitSubCaptures()
4063 if (C && !((isa<OMPFirstprivateClause>(C) || isa<OMPMapClause>(C)) && in VisitOMPExecutableDirective()
5453 auto *PC = cast<OMPFirstprivateClause>(Cl); in checkAllocateClauses()
6205 ErrorFound = cast<OMPFirstprivateClause>(Implicit)->varlist_size() != in ActOnOpenMPExecutableDirective()
18393 return OMPFirstprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPFirstprivateClause()
H A DTreeTransform.h9952 OMPFirstprivateClause *C) { in TransformOMPFirstprivateClause()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp10093 C = OMPFirstprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
10525 void OMPClauseReader::VisitOMPFirstprivateClause(OMPFirstprivateClause *C) { in VisitOMPFirstprivateClause()
H A DASTWriter.cpp6579 void OMPClauseWriter::VisitOMPFirstprivateClause(OMPFirstprivateClause *C) { in VisitOMPFirstprivateClause()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2507 const OMPFirstprivateClause *C) { in VisitOMPFirstprivateClause()