Home
last modified time | relevance | path

Searched refs:Privates (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DOpenMPClause.cpp533 assert(Privates.size() == varlist_size() && in setPrivates()
535 std::copy(Privates.begin(), Privates.end(), varlist_end()); in setPrivates()
563 ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, in Create() argument
570 Clause->setPrivates(Privates); in Create()
586 assert(Privates.size() == varlist_size() && in setPrivates()
588 std::copy(Privates.begin(), Privates.end(), varlist_end()); in setPrivates()
616 ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, in Create() argument
623 Clause->setPrivates(Privates); in Create()
639 assert(Privates.size() == varlist_size() && in setPrivates()
641 std::copy(Privates.begin(), Privates.end(), varlist_end()); in setPrivates()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp938 auto IPriv = Privates.begin(); in ReductionCodeGen()
4269 if (!Privates.empty()) { in createPrivatesRecordDecl()
4801 assert(!Privates.empty()); in emitTaskDupFunction()
4848 Privates.emplace_back( in emitTaskInit()
4858 Privates.emplace_back( in emitTaskInit()
4869 Privates.emplace_back( in emitTaskInit()
4875 std::stable_sort(Privates.begin(), Privates.end(), stable_sort_comparator); in emitTaskInit()
4915 if (!Privates.empty()) { in emitTaskInit()
4947 if (!Privates.empty()) { in emitTaskInit()
4993 if (!Privates.empty()) { in emitTaskInit()
[all …]
H A DCGOpenMPRuntimeNVPTX.cpp2944 unsigned Size = Privates.size();
2945 for (const Expr *Private : Privates) {
3198 for (const Expr *Private : Privates) { in emitInterWarpCopyFunction()
3422 CodeGenModule &CGM, ArrayRef<const Expr *> Privates, in emitShuffleAndReduceFunction() argument
3558 emitReductionListCopy(ThreadCopy, CGF, ReductionArrayTy, Privates, in emitShuffleAndReduceFunction()
3849 for (const Expr *E : Privates) { in emitReduction()
3860 auto IPriv = Privates.begin(); in emitReduction()
3889 Privates, LHSExprs, RHSExprs, ReductionOps); in emitReduction()
3891 CGM, Privates, ReductionArrayTy, ReductionFn, Loc); in emitReduction()
3931 auto &&CodeGen = [Privates, LHSExprs, RHSExprs, ReductionOps, in emitReduction()
[all …]
H A DCGOpenMPRuntime.h152 ArrayRef<const Expr *> Privates,
1224 ArrayRef<const Expr *> Privates,
1284 ArrayRef<const Expr *> Privates,
1962 ArrayRef<const Expr *> Privates,
H A DCGOpenMPRuntimeNVPTX.h316 ArrayRef<const Expr *> Privates,
H A DCGStmtOpenMP.cpp1063 SmallVector<const Expr *, 4> Privates; in EmitOMPReductionClauseInit() local
1074 Privates.emplace_back(*IPriv); in EmitOMPReductionClauseInit()
1084 ReductionCodeGen RedCG(Shareds, Privates, ReductionOps); in EmitOMPReductionClauseInit()
1088 auto IPriv = Privates.begin(); in EmitOMPReductionClauseInit()
1165 llvm::SmallVector<const Expr *, 8> Privates; in EmitOMPReductionClauseFinal() local
1172 Privates.append(C->privates().begin(), C->privates().end()); in EmitOMPReductionClauseFinal()
1185 *this, D.getEndLoc(), Privates, LHSExprs, RHSExprs, ReductionOps, in EmitOMPReductionClauseFinal()
4854 CodeGenFunction::OMPPrivateScope &Privates) { in mapParam() argument
4856 Privates.addPrivate(VDecl, in mapParam()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DOpenMPClause.h1977 void setPrivates(ArrayRef<Expr *> Privates);
2066 const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates,
2198 void setPrivates(ArrayRef<Expr *> Privates);
2286 const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates,
2417 void setPrivates(ArrayRef<Expr *> Privates);
2518 const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates,
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOpenMP.cpp10716 SmallVector<Expr *, 8> Privates; member
10734 Privates.reserve(Size); in ReductionData()
10746 Privates.emplace_back(nullptr); in push()
10756 Privates.emplace_back(Private); in push()
11472 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, in ActOnOpenMPReductionClause()
11492 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, in ActOnOpenMPTaskReductionClause()
11512 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, RD.TaskgroupDescriptors, in ActOnOpenMPInReductionClause()
11573 SmallVector<Expr *, 8> Privates; in ActOnOpenMPLinearClause() local
11588 Privates.push_back(nullptr); in ActOnOpenMPLinearClause()
11654 Privates.push_back(PrivateRef); in ActOnOpenMPLinearClause()
[all …]