Searched refs:getDirectiveKind (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 952 return isOpenMPLoopDirective(D->getDirectiveKind()); in classof() 1137 isOpenMPTaskLoopDirective(getDirectiveKind()) || in setIsLastIterVariable() 1144 isOpenMPTaskLoopDirective(getDirectiveKind()) || in setLowerBoundVariable() 1151 isOpenMPTaskLoopDirective(getDirectiveKind()) || in setUpperBoundVariable() 1158 isOpenMPTaskLoopDirective(getDirectiveKind()) || in setStrideVariable() 1165 isOpenMPTaskLoopDirective(getDirectiveKind()) || in setEnsureUpperBound() 1172 isOpenMPTaskLoopDirective(getDirectiveKind()) || in setNextLowerBound() 1179 isOpenMPTaskLoopDirective(getDirectiveKind()) || in setNextUpperBound() 1186 isOpenMPTaskLoopDirective(getDirectiveKind()) || in setNumIterations() 1288 isOpenMPTaskLoopDirective(getDirectiveKind()) || in getIsLastIterVariable() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 106 OpenMPDirectiveKind Kind = S.getDirectiveKind(); in EmitPreInitStmt() 122 OpenMPDirectiveKind Kind = S.getDirectiveKind(); in EmitPreInitStmt() 1316 switch (D.getDirectiveKind()) { in EmitOMPReductionClauseInit() 2364 if ((D.getDirectiveKind() == OMPD_simd || in EmitOMPSimdInit() 3566 CGF, S.getDirectiveKind(), HasCancel); in emitWorksharingDirective() 3577 CGF, S.getDirectiveKind(), HasCancel); in emitWorksharingDirective() 7180 if (D.getDirectiveKind() == OMPD_atomic || in EmitSimpleOMPExecutableDirective() 7181 D.getDirectiveKind() == OMPD_critical || in EmitSimpleOMPExecutableDirective() 7182 D.getDirectiveKind() == OMPD_section || in EmitSimpleOMPExecutableDirective() 7183 D.getDirectiveKind() == OMPD_master || in EmitSimpleOMPExecutableDirective() [all …]
|
| H A D | CGOpenMPRuntimeGPU.cpp | 578 switch (D.getDirectiveKind()) { in hasNestedSPMDDirective() 590 DKind = NND->getDirectiveKind(); in hasNestedSPMDDirective() 672 OpenMPDirectiveKind DirectiveKind = D.getDirectiveKind(); in supportsSPMDExecutionMode() 754 isOpenMPLoopDirective(D.getDirectiveKind()) && in hasStaticScheduling() 776 switch (D.getDirectiveKind()) { in hasNestedLightweightDirective() 792 DKind = NND->getDirectiveKind(); in hasNestedLightweightDirective() 805 DKind = NND->getDirectiveKind(); in hasNestedLightweightDirective() 818 DKind = NND->getDirectiveKind(); in hasNestedLightweightDirective() 842 DKind = NND->getDirectiveKind(); in hasNestedLightweightDirective() 1270 assert(isOpenMPTeamsDirective(D.getDirectiveKind()) && in getDistributeLastprivateVars() [all …]
|
| H A D | CGOpenMPRuntime.cpp | 93 OpenMPDirectiveKind getDirectiveKind() const { return Kind; } in getDirectiveKind() function in __anoneb75deaf0111::CGOpenMPRegionInfo 4242 if (isOpenMPTaskLoopDirective(D.getDirectiveKind())) { in emitTaskInit() 4249 assert((D.getDirectiveKind() == OMPD_task || in emitTaskInit() 6877 if (isOpenMPSimdDirective(Dir->getDirectiveKind())) in getNumThreads() 7083 if (Dir->getDirectiveKind() == OMPD_distribute) { in emitNumThreadsForTargetDirective() 9725 switch (D.getDirectiveKind()) { in getNestedDistributeDirective() 9737 DKind = NND->getDirectiveKind(); in getNestedDistributeDirective() 10187 OpenMPDirectiveKind Kind = D.getDirectiveKind(); in emitTargetNumIterationsCall() 10562 switch (E.getDirectiveKind()) { in scanForTargetRegionsFunctions() 11267 switch (D.getDirectiveKind()) { in emitTargetDataStandAloneCall() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | TreeTransform.h | 8461 getDerived().getSema().ActOnOpenMPRegionStart(D->getDirectiveKind(), in TransformOMPExecutableDirective() 8467 if (D->getDirectiveKind() == OMPD_atomic || in TransformOMPExecutableDirective() 8468 D->getDirectiveKind() == OMPD_critical || in TransformOMPExecutableDirective() 8469 D->getDirectiveKind() == OMPD_section || in TransformOMPExecutableDirective() 8470 D->getDirectiveKind() == OMPD_master) in TransformOMPExecutableDirective() 8475 if (Body.isUsable() && isOpenMPLoopDirective(D->getDirectiveKind()) && in TransformOMPExecutableDirective() 8491 if (D->getDirectiveKind() == OMPD_critical) { in TransformOMPExecutableDirective() 8496 if (D->getDirectiveKind() == OMPD_cancellation_point) { in TransformOMPExecutableDirective() 8498 } else if (D->getDirectiveKind() == OMPD_cancel) { in TransformOMPExecutableDirective() 8503 D->getDirectiveKind(), DirName, CancelRegion, TClauses, in TransformOMPExecutableDirective() [all …]
|
| H A D | SemaOpenMP.cpp | 3429 if (S->getDirectiveKind() == OMPD_atomic || in VisitSubCaptures() 3430 S->getDirectiveKind() == OMPD_critical || in VisitSubCaptures() 3431 S->getDirectiveKind() == OMPD_section || in VisitSubCaptures() 3432 S->getDirectiveKind() == OMPD_master || in VisitSubCaptures() 3433 S->getDirectiveKind() == OMPD_masked || in VisitSubCaptures() 3434 isOpenMPLoopTransformationDirective(S->getDirectiveKind())) { in VisitSubCaptures() 3454 if (isOpenMPTaskingDirective(S->getDirectiveKind()) && in VisitSubCaptures() 3455 !isOpenMPTaskLoopDirective(S->getDirectiveKind())) { in VisitSubCaptures() 11164 if (!OED || !isOpenMPTeamsDirective(OED->getDirectiveKind()) || in ActOnOpenMPTargetDirective() 11176 OMPTeamsFound = OED && isOpenMPTeamsDirective(OED->getDirectiveKind()); in ActOnOpenMPTargetDirective()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 8006 Node.getDirectiveKind(), CKind, in AST_MATCHER_P()
|