Searched refs:CancelRegion (Results 1 – 8 of 8) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2109 OpenMPDirectiveKind CancelRegion; variable 2118 CancelRegion(OMPD_unknown) {} in OMPCancellationPointDirective() 2126 CancelRegion(OMPD_unknown) {} in OMPCancellationPointDirective() 2130 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; } in setCancelRegion() 2141 OpenMPDirectiveKind CancelRegion); 2151 OpenMPDirectiveKind getCancelRegion() const { return CancelRegion; } in getCancelRegion() 2167 OpenMPDirectiveKind CancelRegion; variable 2178 CancelRegion(OMPD_unknown) {} in OMPCancelDirective() 2187 CancelRegion(OMPD_unknown) {} in OMPCancelDirective() 2191 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; } in setCancelRegion() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 733 OpenMPDirectiveKind CancelRegion); 742 OpenMPDirectiveKind CancelRegion);
|
D | CGOpenMPRuntime.cpp | 3144 static RTCancelKind getCancellationKind(OpenMPDirectiveKind CancelRegion) { in getCancellationKind() argument 3146 if (CancelRegion == OMPD_parallel) in getCancellationKind() 3148 else if (CancelRegion == OMPD_for) in getCancellationKind() 3150 else if (CancelRegion == OMPD_sections) in getCancellationKind() 3153 assert(CancelRegion == OMPD_taskgroup); in getCancellationKind() 3161 OpenMPDirectiveKind CancelRegion) { in emitCancellationPointCall() argument 3173 CGF.Builder.getInt32(getCancellationKind(CancelRegion))}; in emitCancellationPointCall() 3199 OpenMPDirectiveKind CancelRegion) { in emitCancelCall() argument 3208 auto &&ThenGen = [this, Loc, CancelRegion, in emitCancelCall() 3212 CGF.Builder.getInt32(getCancellationKind(CancelRegion))}; in emitCancelCall()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 113 bool CancelRegion; member 121 CancelRegion(false), CollapseNumber(1), InnerTeamsRegionLoc() {} in SharingMapTy() 126 CancelRegion(false), CollapseNumber(1), InnerTeamsRegionLoc() {} in SharingMapTy() 297 Stack[Stack.size() - 2].CancelRegion = in setParentCancelRegion() 298 Stack[Stack.size() - 2].CancelRegion || Cancel; in setParentCancelRegion() 302 return Stack.back().CancelRegion; in isCancelRegion() 1630 OpenMPDirectiveKind CancelRegion, in CheckNestingOfRegions() argument 2272 !((CancelRegion == OMPD_parallel && ParentRegion == OMPD_parallel) || in CheckNestingOfRegions() 2273 (CancelRegion == OMPD_for && in CheckNestingOfRegions() 2275 (CancelRegion == OMPD_taskgroup && ParentRegion == OMPD_task) || in CheckNestingOfRegions() [all …]
|
D | TreeTransform.h | 1374 OpenMPDirectiveKind CancelRegion, in RebuildOMPExecutableDirective() argument 1379 Kind, DirName, CancelRegion, Clauses, AStmt, StartLoc, EndLoc); in RebuildOMPExecutableDirective() 7099 OpenMPDirectiveKind CancelRegion = OMPD_unknown; in TransformOMPExecutableDirective() local 7101 CancelRegion = cast<OMPCancellationPointDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective() 7103 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective() 7107 D->getDirectiveKind(), DirName, CancelRegion, TClauses, in TransformOMPExecutableDirective()
|
/external/clang/lib/Parse/ |
D | ParseOpenMP.cpp | 180 OpenMPDirectiveKind CancelRegion = OMPD_unknown; in ParseOpenMPDeclarativeOrExecutableDirective() local 260 CancelRegion = ParseOpenMPDirectiveKind(*this); in ParseOpenMPDeclarativeOrExecutableDirective() 322 DKind, DirName, CancelRegion, Clauses, AssociatedStmt.get(), Loc, in ParseOpenMPDeclarativeOrExecutableDirective()
|
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 549 OpenMPDirectiveKind CancelRegion) { in Create() argument 555 Dir->setCancelRegion(CancelRegion); in Create() 570 OpenMPDirectiveKind CancelRegion) { in Create() argument 578 Dir->setCancelRegion(CancelRegion); in Create()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 7832 OpenMPDirectiveKind CancelRegion, ArrayRef<OMPClause *> Clauses, 7950 OpenMPDirectiveKind CancelRegion); 7955 OpenMPDirectiveKind CancelRegion);
|