/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/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 3007 OpenMPDirectiveKind CancelRegion = llvm::omp::OMPD_unknown; variable 3027 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; } in setCancelRegion() 3038 OpenMPDirectiveKind CancelRegion); 3048 OpenMPDirectiveKind getCancelRegion() const { return CancelRegion; } in getCancelRegion() 3065 OpenMPDirectiveKind CancelRegion = llvm::omp::OMPD_unknown; variable 3083 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; } in setCancelRegion() 3095 ArrayRef<OMPClause *> Clauses, OpenMPDirectiveKind CancelRegion); 3106 OpenMPDirectiveKind getCancelRegion() const { return CancelRegion; } in getCancelRegion()
|
/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/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 1523 OpenMPDirectiveKind CancelRegion); 1532 OpenMPDirectiveKind CancelRegion); 2354 OpenMPDirectiveKind CancelRegion) override; 2363 OpenMPDirectiveKind CancelRegion) override;
|
D | CGOpenMPRuntime.cpp | 6226 static RTCancelKind getCancellationKind(OpenMPDirectiveKind CancelRegion) { in getCancellationKind() argument 6228 if (CancelRegion == OMPD_parallel) in getCancellationKind() 6230 else if (CancelRegion == OMPD_for) in getCancellationKind() 6232 else if (CancelRegion == OMPD_sections) in getCancellationKind() 6235 assert(CancelRegion == OMPD_taskgroup); in getCancellationKind() 6243 OpenMPDirectiveKind CancelRegion) { in emitCancellationPointCall() argument 6252 if (CancelRegion == OMPD_taskgroup || OMPRegionInfo->hasCancel()) { in emitCancellationPointCall() 6255 CGF.Builder.getInt32(getCancellationKind(CancelRegion))}; in emitCancellationPointCall() 6280 OpenMPDirectiveKind CancelRegion) { in emitCancelCall() argument 6288 auto &&ThenGen = [this, &M, Loc, CancelRegion, in emitCancelCall() [all …]
|
D | CGStmtOpenMP.cpp | 2790 CodeGenFunction::OMPCancelStackRAII CancelRegion(CGF, S.getDirectiveKind(), in emitInnerParallelForWhenCombined() local 3324 CodeGenFunction::OMPCancelStackRAII CancelRegion( in emitWorksharingDirective() local 3335 CodeGenFunction::OMPCancelStackRAII CancelRegion( in emitWorksharingDirective() local 3343 CodeGenFunction::OMPCancelStackRAII CancelRegion(CGF, S.getDirectiveKind(), in emitWorksharingDirective() local 3534 OMPCancelStackRAII CancelRegion(*this, S.getDirectiveKind(), HasCancel); in EmitSections() local 6311 CodeGenFunction::OMPCancelStackRAII CancelRegion( in emitTargetParallelForRegion() local
|
/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/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 615 OpenMPDirectiveKind CancelRegion) { in Create() argument 617 Dir->setCancelRegion(CancelRegion); in Create() 629 OpenMPDirectiveKind CancelRegion) { in Create() argument 633 Dir->setCancelRegion(CancelRegion); in Create()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 176 bool CancelRegion = false; member 846 Parent->CancelRegion |= Cancel; in setParentCancelRegion() 851 return Top ? Top->CancelRegion : false; in isCancelRegion() 4490 OpenMPDirectiveKind CancelRegion, in checkCancelRegion() argument 4496 if (CancelRegion == OMPD_parallel || CancelRegion == OMPD_for || in checkCancelRegion() 4497 CancelRegion == OMPD_sections || CancelRegion == OMPD_taskgroup) in checkCancelRegion() 4501 << getOpenMPDirectiveName(CancelRegion); in checkCancelRegion() 4508 OpenMPDirectiveKind CancelRegion, in checkNestingOfRegions() argument 4589 !((CancelRegion == OMPD_parallel && in checkNestingOfRegions() 4592 (CancelRegion == OMPD_for && in checkNestingOfRegions() [all …]
|
D | TreeTransform.h | 1554 OpenMPDirectiveKind CancelRegion, in RebuildOMPExecutableDirective() argument 1559 Kind, DirName, CancelRegion, Clauses, AStmt, StartLoc, EndLoc); in RebuildOMPExecutableDirective() 8368 OpenMPDirectiveKind CancelRegion = OMPD_unknown; in TransformOMPExecutableDirective() local 8370 CancelRegion = cast<OMPCancellationPointDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective() 8372 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective() 8376 D->getDirectiveKind(), DirName, CancelRegion, TClauses, in TransformOMPExecutableDirective()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseOpenMP.cpp | 2153 OpenMPDirectiveKind CancelRegion = OMPD_unknown; in ParseOpenMPDeclarativeOrExecutableDirective() local 2333 CancelRegion = parseOpenMPDirectiveKind(*this); in ParseOpenMPDeclarativeOrExecutableDirective() 2422 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);
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 10355 OpenMPDirectiveKind CancelRegion, ArrayRef<OMPClause *> Clauses, 10511 OpenMPDirectiveKind CancelRegion); 10516 OpenMPDirectiveKind CancelRegion);
|