Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp1856 unsigned Size = Privates.size();
1857 for (const Expr *Private : Privates) {
2122 for (const Expr *Private : Privates) { in emitInterWarpCopyFunction()
2559 for (const Expr *Private : Privates) { in emitListToGlobalCopyFunction()
2661 auto IPriv = Privates.begin(); in emitListToGlobalReduceFunction()
2765 for (const Expr *Private : Privates) { in emitGlobalToListCopyFunction()
2867 auto IPriv = Privates.begin(); in emitGlobalToListReduceFunction()
3188 for (const Expr *E : Privates) { in emitReduction()
3199 auto IPriv = Privates.begin(); in emitReduction()
3250 for (const Expr *DRE : Privates) { in emitReduction()
[all …]
H A DCGOpenMPRuntime.cpp3458 if (!Privates.empty()) { in createPrivatesRecordDecl()
4024 assert(!Privates.empty()); in emitTaskDupFunction()
4201 Privates.emplace_back( in emitTaskInit()
4211 Privates.emplace_back( in emitTaskInit()
4222 Privates.emplace_back( in emitTaskInit()
4234 llvm::stable_sort(Privates, in emitTaskInit()
4277 if (!Privates.empty()) { in emitTaskInit()
4309 if (!Privates.empty()) { in emitTaskInit()
4536 if (!Privates.empty()) { in emitTaskInit()
5464 auto IPriv = Privates.begin(); in emitReductionFunction()
[all …]
H A DCGStmtOpenMP.cpp1209 SmallVector<const Expr *, 4> Privates; in EmitOMPReductionClauseInit() local
1238 auto *IPriv = Privates.begin(); in EmitOMPReductionClauseInit()
1427 llvm::SmallVector<const Expr *, 8> Privates; in EmitOMPReductionClauseFinal() local
3350 SmallVector<const Expr *, 4> Privates; in emitScanBasedDirectiveDecls() local
3369 for (const Expr *IRef : Privates) { in emitScanBasedDirectiveDecls()
3417 SmallVector<const Expr *, 4> Privates; in emitScanBasedDirective() local
4867 SmallVector<const Expr *, 4> Privates; in EmitOMPScanDirective() local
4959 const Expr *PrivateExpr = Privates[I]; in EmitOMPScanDirective()
4997 const Expr *PrivateExpr = Privates[I]; in EmitOMPScanDirective()
5039 const Expr *PrivateExpr = Privates[I]; in EmitOMPScanDirective()
[all …]
H A DCGOpenMPRuntimeGPU.h302 ArrayRef<const Expr *> Privates,
H A DCGOpenMPRuntime.h173 ArrayRef<const Expr *> Privates,
1415 ArrayRef<const Expr *> Privates,
1475 ArrayRef<const Expr *> Privates,
2312 ArrayRef<const Expr *> Privates,
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp712 assert(Privates.size() == varlist_size() && in setPrivates()
714 std::copy(Privates.begin(), Privates.end(), varlist_end()); in setPrivates()
769 ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, in Create() argument
779 Clause->setPrivates(Privates); in Create()
811 assert(Privates.size() == varlist_size() && in setPrivates()
813 std::copy(Privates.begin(), Privates.end(), varlist_end()); in setPrivates()
841 ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, in Create() argument
848 Clause->setPrivates(Privates); in Create()
864 assert(Privates.size() == varlist_size() && in setPrivates()
866 std::copy(Privates.begin(), Privates.end(), varlist_end()); in setPrivates()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h2994 void setPrivates(ArrayRef<Expr *> Privates);
3126 const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates,
3313 void setPrivates(ArrayRef<Expr *> Privates);
3401 const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates,
3544 void setPrivates(ArrayRef<Expr *> Privates);
3645 const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates,
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp16558 SmallVector<Expr *, 8> Privates; member
16584 Privates.reserve(Size); in ReductionData()
16601 Privates.emplace_back(nullptr); in push()
16617 Privates.emplace_back(Private); in push()
17467 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, RD.InscanCopyOps, in ActOnOpenMPReductionClause()
17488 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, in ActOnOpenMPTaskReductionClause()
17508 RD.Privates, RD.LHSs, RD.RHSs, RD.ReductionOps, RD.TaskgroupDescriptors, in ActOnOpenMPInReductionClause()
17571 SmallVector<Expr *, 8> Privates; in ActOnOpenMPLinearClause() local
17586 Privates.push_back(nullptr); in ActOnOpenMPLinearClause()
17652 Privates.push_back(PrivateRef); in ActOnOpenMPLinearClause()
[all …]