Home
last modified time | relevance | path

Searched refs:HasCancel (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h631 bool HasCancel = false; variable
653 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel()
670 bool HasCancel);
689 bool hasCancel() const { return HasCancel; } in hasCancel()
1654 bool HasCancel = false; variable
1682 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel()
1702 Expr *TaskRedRef, bool HasCancel,
1725 bool hasCancel() const { return HasCancel; } in hasCancel()
1809 bool HasCancel = false; variable
1831 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp284 bool HasCancel) { in Create() argument
288 Dir->setHasCancel(HasCancel); in Create()
339 const HelperExprs &Exprs, Expr *TaskRedRef, bool HasCancel, in Create() argument
369 Dir->setHasCancel(HasCancel); in Create()
537 bool HasCancel) { in Create() argument
542 Dir->setHasCancel(HasCancel); in Create()
558 bool HasCancel) { in Create() argument
562 Dir->setHasCancel(HasCancel); in Create()
640 const HelperExprs &Exprs, Expr *TaskRedRef, bool HasCancel) { in Create() argument
670 Dir->setHasCancel(HasCancel); in Create()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp75 bool HasCancel) in CGOpenMPRegionInfo() argument
77 CodeGen(CodeGen), Kind(Kind), HasCancel(HasCancel) {} in CGOpenMPRegionInfo()
81 bool HasCancel) in CGOpenMPRegionInfo() argument
83 Kind(Kind), HasCancel(HasCancel) {} in CGOpenMPRegionInfo()
102 bool hasCancel() const { return HasCancel; } in hasCancel()
114 bool HasCancel; member in __anon93cce0fb0111::CGOpenMPRegionInfo
122 OpenMPDirectiveKind Kind, bool HasCancel, in CGOpenMPOutlinedRegionInfo() argument
125 HasCancel), in CGOpenMPOutlinedRegionInfo()
204 OpenMPDirectiveKind Kind, bool HasCancel, in CGOpenMPTaskOutlinedRegionInfo() argument
206 : CGOpenMPRegionInfo(CS, TaskOutlinedRegion, CodeGen, Kind, HasCancel), in CGOpenMPTaskOutlinedRegionInfo()
[all …]
H A DCGStmtOpenMP.cpp3221 bool HasCancel = false; in emitInnerParallelForWhenCombined() local
3224 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined()
3226 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined()
3229 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined()
3232 HasCancel); in emitInnerParallelForWhenCombined()
3844 bool HasCancel) { in emitWorksharingDirective() argument
3855 const auto &&FirstGen = [&S, HasCancel](CodeGenFunction &CGF) { in emitWorksharingDirective()
3857 CGF, S.getDirectiveKind(), HasCancel); in emitWorksharingDirective()
3865 const auto &&SecondGen = [&S, HasCancel, in emitWorksharingDirective()
3868 CGF, S.getDirectiveKind(), HasCancel); in emitWorksharingDirective()
[all …]
H A DCodeGenFunction.h1579 void enter(CodeGenFunction &CGF, OpenMPDirectiveKind Kind, bool HasCancel) {
1581 HasCancel ? CGF.getJumpDestInCurrentScope("cancel.exit")
1583 HasCancel ? CGF.getJumpDestInCurrentScope("cancel.cont")
3644 bool HasCancel)
3646 CGF.OMPCancelStack.enter(CGF, Kind, HasCancel);
H A DCGOpenMPRuntime.h1197 bool HasCancel = false);