Searched refs:CancelRegion (Results 1 – 8 of 8) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2448 OpenMPDirectiveKind CancelRegion; variable 2457 CancelRegion(OMPD_unknown) {} in OMPCancellationPointDirective() 2465 CancelRegion(OMPD_unknown) {} in OMPCancellationPointDirective() 2469 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; } in setCancelRegion() 2480 OpenMPDirectiveKind CancelRegion); 2490 OpenMPDirectiveKind getCancelRegion() const { return CancelRegion; } in getCancelRegion() 2506 OpenMPDirectiveKind CancelRegion; variable 2517 CancelRegion(OMPD_unknown) {} in OMPCancelDirective() 2526 CancelRegion(OMPD_unknown) {} in OMPCancelDirective() 2530 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; } in setCancelRegion() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 913 OpenMPDirectiveKind CancelRegion); 922 OpenMPDirectiveKind CancelRegion);
|
D | CGOpenMPRuntime.cpp | 4654 static RTCancelKind getCancellationKind(OpenMPDirectiveKind CancelRegion) { in getCancellationKind() argument 4656 if (CancelRegion == OMPD_parallel) in getCancellationKind() 4658 else if (CancelRegion == OMPD_for) in getCancellationKind() 4660 else if (CancelRegion == OMPD_sections) in getCancellationKind() 4663 assert(CancelRegion == OMPD_taskgroup); in getCancellationKind() 4671 OpenMPDirectiveKind CancelRegion) { in emitCancellationPointCall() argument 4681 CGF.Builder.getInt32(getCancellationKind(CancelRegion))}; in emitCancellationPointCall() 4707 OpenMPDirectiveKind CancelRegion) { in emitCancelCall() argument 4714 auto &&ThenGen = [Loc, CancelRegion, OMPRegionInfo](CodeGenFunction &CGF, in emitCancelCall() 4719 CGF.Builder.getInt32(getCancellationKind(CancelRegion))}; in emitCancelCall()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 103 bool CancelRegion = false; member 292 Stack[Stack.size() - 2].CancelRegion = in setParentCancelRegion() 293 Stack[Stack.size() - 2].CancelRegion || Cancel; in setParentCancelRegion() 297 return Stack.back().CancelRegion; in isCancelRegion() 1869 OpenMPDirectiveKind CancelRegion, in CheckNestingOfRegions() argument 3165 !((CancelRegion == OMPD_parallel && in CheckNestingOfRegions() 3168 (CancelRegion == OMPD_for && in CheckNestingOfRegions() 3171 (CancelRegion == OMPD_taskgroup && ParentRegion == OMPD_task) || in CheckNestingOfRegions() 3172 (CancelRegion == OMPD_sections && in CheckNestingOfRegions() 3381 OpenMPDirectiveKind CancelRegion, ArrayRef<OMPClause *> Clauses, in ActOnOpenMPExecutableDirective() argument [all …]
|
D | TreeTransform.h | 1386 OpenMPDirectiveKind CancelRegion, in RebuildOMPExecutableDirective() argument 1391 Kind, DirName, CancelRegion, Clauses, AStmt, StartLoc, EndLoc); in RebuildOMPExecutableDirective() 7209 OpenMPDirectiveKind CancelRegion = OMPD_unknown; in TransformOMPExecutableDirective() local 7211 CancelRegion = cast<OMPCancellationPointDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective() 7213 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective() 7217 D->getDirectiveKind(), DirName, CancelRegion, TClauses, in TransformOMPExecutableDirective()
|
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 566 OpenMPDirectiveKind CancelRegion) { in Create() argument 572 Dir->setCancelRegion(CancelRegion); in Create() 587 OpenMPDirectiveKind CancelRegion) { in Create() argument 595 Dir->setCancelRegion(CancelRegion); in Create()
|
/external/clang/lib/Parse/ |
D | ParseOpenMP.cpp | 791 OpenMPDirectiveKind CancelRegion = OMPD_unknown; in ParseOpenMPDeclarativeOrExecutableDirective() local 902 CancelRegion = ParseOpenMPDirectiveKind(*this); in ParseOpenMPDeclarativeOrExecutableDirective() 964 DKind, DirName, CancelRegion, Clauses, AssociatedStmt.get(), Loc, in ParseOpenMPDeclarativeOrExecutableDirective()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 8040 OpenMPDirectiveKind CancelRegion, ArrayRef<OMPClause *> Clauses, 8180 OpenMPDirectiveKind CancelRegion); 8185 OpenMPDirectiveKind CancelRegion);
|