Searched refs:OMPInReductionClause (Results 1 – 10 of 10) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 59 return static_cast<const OMPInReductionClause *>(C); in get() 135 return static_cast<const OMPInReductionClause *>(C); in get() 638 void OMPInReductionClause::setPrivates(ArrayRef<Expr *> Privates) { in setPrivates() 644 void OMPInReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs() 651 void OMPInReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() 658 void OMPInReductionClause::setReductionOps(ArrayRef<Expr *> ReductionOps) { in setReductionOps() 665 void OMPInReductionClause::setTaskgroupDescriptors( in setTaskgroupDescriptors() 674 OMPInReductionClause *OMPInReductionClause::Create( in Create() 682 OMPInReductionClause *Clause = new (Mem) OMPInReductionClause( in Create() 695 OMPInReductionClause *OMPInReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty() [all …]
|
| H A D | StmtProfile.cpp | 615 const OMPInReductionClause *C) { in VisitOMPInReductionClause()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 2362 class OMPInReductionClause final 2363 : public OMPVarListClause<OMPInReductionClause>, 2365 private llvm::TrailingObjects<OMPInReductionClause, Expr *> { 2388 OMPInReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPInReductionClause() function 2392 : OMPVarListClause<OMPInReductionClause>(OMPC_in_reduction, StartLoc, in OMPInReductionClause() 2400 explicit OMPInReductionClause(unsigned N) in OMPInReductionClause() function 2401 : OMPVarListClause<OMPInReductionClause>( in OMPInReductionClause() 2514 static OMPInReductionClause * 2527 static OMPInReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
|
| H A D | RecursiveASTVisitor.h | 3129 OMPInReductionClause *C) {
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | OpenMPKinds.def | 287 OPENMP_CLAUSE(in_reduction, OMPInReductionClause)
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 2940 auto *IRC = cast<OMPInReductionClause>(Clause); in ActOnOpenMPRegionEnd() 3386 if (auto *IRC = dyn_cast<OMPInReductionClause>(C)) { in ActOnOpenMPExecutableDirective() 11509 return OMPInReductionClause::Create( in ActOnOpenMPInReductionClause()
|
| H A D | TreeTransform.h | 8646 TreeTransform<Derived>::TransformOMPInReductionClause(OMPInReductionClause *C) { in TransformOMPInReductionClause()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11761 C = OMPInReductionClause::CreateEmpty(Context, Record.readInt()); in readClause() 12127 void OMPClauseReader::VisitOMPInReductionClause(OMPInReductionClause *C) { in VisitOMPInReductionClause()
|
| H A D | ASTWriter.cpp | 6671 void OMPClauseWriter::VisitOMPInReductionClause(OMPInReductionClause *C) { in VisitOMPInReductionClause()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 2982 for (const auto *C : S.getClausesOfKind<OMPInReductionClause>()) { in EmitOMPTaskBasedDirective()
|