Home
last modified time | relevance | path

Searched refs:CancelRegion (Results 1 – 9 of 9) sorted by relevance

/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCGOpenMPRuntime.h1338 OpenMPDirectiveKind CancelRegion);
1347 OpenMPDirectiveKind CancelRegion);
2129 OpenMPDirectiveKind CancelRegion) override;
2138 OpenMPDirectiveKind CancelRegion) override;
DCGOpenMPRuntime.cpp5892 static RTCancelKind getCancellationKind(OpenMPDirectiveKind CancelRegion) { in getCancellationKind() argument
5894 if (CancelRegion == OMPD_parallel) in getCancellationKind()
5896 else if (CancelRegion == OMPD_for) in getCancellationKind()
5898 else if (CancelRegion == OMPD_sections) in getCancellationKind()
5901 assert(CancelRegion == OMPD_taskgroup); in getCancellationKind()
5909 OpenMPDirectiveKind CancelRegion) { in emitCancellationPointCall() argument
5918 if (CancelRegion == OMPD_taskgroup || OMPRegionInfo->hasCancel()) { in emitCancellationPointCall()
5921 CGF.Builder.getInt32(getCancellationKind(CancelRegion))}; in emitCancellationPointCall()
5936 if (CancelRegion == OMPD_parallel) in emitCancellationPointCall()
5949 OpenMPDirectiveKind CancelRegion) { in emitCancelCall() argument
[all …]
DCGStmtOpenMP.cpp3186 CodeGenFunction::OMPCancelStackRAII CancelRegion(CGF, S.getDirectiveKind(), in emitInnerParallelForWhenCombined() local
3811 CodeGenFunction::OMPCancelStackRAII CancelRegion( in emitWorksharingDirective() local
3822 CodeGenFunction::OMPCancelStackRAII CancelRegion( in emitWorksharingDirective() local
3834 CodeGenFunction::OMPCancelStackRAII CancelRegion(CGF, S.getDirectiveKind(), in emitWorksharingDirective() local
4108 OMPCancelStackRAII CancelRegion(*this, S.getDirectiveKind(), HasCancel); in EmitSections() local
7433 CodeGenFunction::OMPCancelStackRAII CancelRegion( in emitTargetParallelForRegion() local
/openbsd/src/gnu/llvm/clang/include/clang/AST/
DStmtOpenMP.h3545 OpenMPDirectiveKind CancelRegion = llvm::omp::OMPD_unknown; variable
3565 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; } in setCancelRegion()
3576 OpenMPDirectiveKind CancelRegion);
3586 OpenMPDirectiveKind getCancelRegion() const { return CancelRegion; } in getCancelRegion()
3603 OpenMPDirectiveKind CancelRegion = llvm::omp::OMPD_unknown; variable
3621 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; } in setCancelRegion()
3633 ArrayRef<OMPClause *> Clauses, OpenMPDirectiveKind CancelRegion);
3644 OpenMPDirectiveKind getCancelRegion() const { return CancelRegion; } in getCancelRegion()
/openbsd/src/gnu/llvm/clang/lib/AST/
DStmtOpenMP.cpp806 OpenMPDirectiveKind CancelRegion) { in Create() argument
808 Dir->setCancelRegion(CancelRegion); in Create()
820 OpenMPDirectiveKind CancelRegion) { in Create() argument
824 Dir->setCancelRegion(CancelRegion); in Create()
/openbsd/src/gnu/llvm/clang/lib/Sema/
DSemaOpenMP.cpp183 bool CancelRegion = false; member
905 Parent->CancelRegion |= Cancel; in setParentCancelRegion()
910 return Top ? Top->CancelRegion : false; in isCancelRegion()
4966 OpenMPDirectiveKind CancelRegion, in checkCancelRegion() argument
4972 if (CancelRegion == OMPD_parallel || CancelRegion == OMPD_for || in checkCancelRegion()
4973 CancelRegion == OMPD_sections || CancelRegion == OMPD_taskgroup) in checkCancelRegion()
4977 << getOpenMPDirectiveName(CancelRegion); in checkCancelRegion()
4984 OpenMPDirectiveKind CancelRegion, in checkNestingOfRegions() argument
5074 !((CancelRegion == OMPD_parallel && in checkNestingOfRegions()
5077 (CancelRegion == OMPD_for && in checkNestingOfRegions()
[all …]
DTreeTransform.h1628 OpenMPDirectiveKind CancelRegion, in RebuildOMPExecutableDirective() argument
1633 Kind, DirName, CancelRegion, Clauses, AStmt, StartLoc, EndLoc); in RebuildOMPExecutableDirective()
8711 OpenMPDirectiveKind CancelRegion = OMPD_unknown; in TransformOMPExecutableDirective() local
8713 CancelRegion = cast<OMPCancellationPointDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective()
8715 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective()
8719 D->getDirectiveKind(), DirName, CancelRegion, TClauses, in TransformOMPExecutableDirective()
/openbsd/src/gnu/llvm/clang/lib/Parse/
DParseOpenMP.cpp2511 OpenMPDirectiveKind CancelRegion = OMPD_unknown; in ParseOpenMPDeclarativeOrExecutableDirective() local
2862 CancelRegion = parseOpenMPDirectiveKind(*this); in ParseOpenMPDeclarativeOrExecutableDirective()
2970 DKind, DirName, CancelRegion, Clauses, AssociatedStmt.get(), Loc, in ParseOpenMPDeclarativeOrExecutableDirective()
/openbsd/src/gnu/llvm/clang/include/clang/Sema/
DSema.h11304 OpenMPDirectiveKind CancelRegion, ArrayRef<OMPClause *> Clauses,
11504 OpenMPDirectiveKind CancelRegion);
11509 OpenMPDirectiveKind CancelRegion);