Searched refs:HasCancel (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/ |
| D | StmtOpenMP.h | 615 bool HasCancel = false; variable 637 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel() 654 bool HasCancel); 673 bool hasCancel() const { return HasCancel; } in hasCancel() 1569 bool HasCancel = false; variable 1597 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel() 1617 Expr *TaskRedRef, bool HasCancel); 1639 bool hasCancel() const { return HasCancel; } in hasCancel() 1723 bool HasCancel = false; variable 1745 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/ |
| D | StmtOpenMP.cpp | 259 bool HasCancel) { in Create() argument 263 Dir->setHasCancel(HasCancel); in Create() 314 const HelperExprs &Exprs, Expr *TaskRedRef, bool HasCancel) { in Create() argument 343 Dir->setHasCancel(HasCancel); in Create() 443 bool HasCancel) { in Create() argument 448 Dir->setHasCancel(HasCancel); in Create() 464 bool HasCancel) { in Create() argument 468 Dir->setHasCancel(HasCancel); in Create() 529 const HelperExprs &Exprs, Expr *TaskRedRef, bool HasCancel) { in Create() argument 559 Dir->setHasCancel(HasCancel); in Create() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | CGOpenMPRuntime.cpp | 68 bool HasCancel) in CGOpenMPRegionInfo() argument 70 CodeGen(CodeGen), Kind(Kind), HasCancel(HasCancel) {} in CGOpenMPRegionInfo() 74 bool HasCancel) in CGOpenMPRegionInfo() argument 76 Kind(Kind), HasCancel(HasCancel) {} in CGOpenMPRegionInfo() 95 bool hasCancel() const { return HasCancel; } in hasCancel() 107 bool HasCancel; member in __anon087f69130111::CGOpenMPRegionInfo 115 OpenMPDirectiveKind Kind, bool HasCancel, in CGOpenMPOutlinedRegionInfo() argument 118 HasCancel), in CGOpenMPOutlinedRegionInfo() 197 OpenMPDirectiveKind Kind, bool HasCancel, in CGOpenMPTaskOutlinedRegionInfo() argument 199 : CGOpenMPRegionInfo(CS, TaskOutlinedRegion, CodeGen, Kind, HasCancel), in CGOpenMPTaskOutlinedRegionInfo() [all …]
|
| D | CGStmtOpenMP.cpp | 2984 bool HasCancel = false; in emitInnerParallelForWhenCombined() local 2987 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined() 2989 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined() 2992 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined() 2995 HasCancel); in emitInnerParallelForWhenCombined() 3553 bool HasCancel) { in emitWorksharingDirective() argument 3564 const auto &&FirstGen = [&S, HasCancel](CodeGenFunction &CGF) { in emitWorksharingDirective() 3566 CGF, S.getDirectiveKind(), HasCancel); in emitWorksharingDirective() 3574 const auto &&SecondGen = [&S, HasCancel, in emitWorksharingDirective() 3577 CGF, S.getDirectiveKind(), HasCancel); in emitWorksharingDirective() [all …]
|
| D | CodeGenFunction.h | 1440 void enter(CodeGenFunction &CGF, OpenMPDirectiveKind Kind, bool HasCancel) { 1442 HasCancel ? CGF.getJumpDestInCurrentScope("cancel.exit") 1444 HasCancel ? CGF.getJumpDestInCurrentScope("cancel.cont") 3273 bool HasCancel) 3275 CGF.OMPCancelStack.enter(CGF, Kind, HasCancel);
|
| D | CGOpenMPRuntime.h | 1404 bool HasCancel = false);
|