Home
last modified time | relevance | path

Searched refs:DepKind (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h107 OpenMPDependClauseKind DepKind = OMPC_DEPEND_unknown; member
111 DependData(OpenMPDependClauseKind DepKind, const Expr *IteratorExpr) in DependData()
112 : DepKind(DepKind), IteratorExpr(IteratorExpr) {} in DependData()
H A DCGOpenMPRuntime.cpp3978 RTLDependenceKindTy DepKind; in translateDependencyKind() local
3981 DepKind = RTLDependenceKindTy::DepIn; in translateDependencyKind()
3986 DepKind = RTLDependenceKindTy::DepInOut; in translateDependencyKind()
3989 DepKind = RTLDependenceKindTy::DepMutexInOutSet; in translateDependencyKind()
3992 DepKind = RTLDependenceKindTy::DepInOutSet; in translateDependencyKind()
3995 DepKind = RTLDependenceKindTy::DepOmpAllMem; in translateDependencyKind()
4004 return DepKind; in translateDependencyKind()
4100 RTLDependenceKindTy DepKind = translateDependencyKind(Data.DepKind); in emitDependData() local
4106 llvm::ConstantInt::get(LLVMFlagsTy, static_cast<unsigned int>(DepKind)), in emitDependData()
4123 assert(Data.DepKind == OMPC_DEPEND_depobj && in emitDepobjElementsSizes()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h1293 omp::RTLDependenceKindTy DepKind = omp::RTLDependenceKindTy::DepUnknown; member
1297 DependData(omp::RTLDependenceKindTy DepKind, Type *DepValueType, in DependData()
1299 : DepKind(DepKind), DepValueType(DepValueType), DepVal(DepVal) {} in DependData()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1087 Clause->setDependencyKind(Data.DepKind); in Create()
2486 OpenMPDependClauseKind DepKind = Node->getDependencyKind(); in VisitOMPDependClause() local
2487 OpenMPDependClauseKind PrintKind = DepKind; in VisitOMPDependClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp20469 OpenMPDependClauseKind DepKind = Data.DepKind; in ActOnOpenMPDependClause() local
20472 DepKind != OMPC_DEPEND_source && DepKind != OMPC_DEPEND_sink) { in ActOnOpenMPDependClause()
20478 DepKind == OMPC_DEPEND_mutexinoutset) { in ActOnOpenMPDependClause()
20484 (DepKind == OMPC_DEPEND_unknown || DepKind == OMPC_DEPEND_source || in ActOnOpenMPDependClause()
20485 DepKind == OMPC_DEPEND_sink || in ActOnOpenMPDependClause()
20488 DepKind == OMPC_DEPEND_depobj))) { in ActOnOpenMPDependClause()
20508 (DepKind == OMPC_DEPEND_source || DepKind == OMPC_DEPEND_sink)) { in ActOnOpenMPDependClause()
20521 if (DepKind == OMPC_DEPEND_sink || DepKind == OMPC_DEPEND_source) { in ActOnOpenMPDependClause()
20523 SemaRef, DepKind == OMPC_DEPEND_source, VarList, DSAStack, EndLoc); in ActOnOpenMPDependClause()
20538 if (DepKind != OMPC_DEPEND_sink && DepKind != OMPC_DEPEND_source) { in ActOnOpenMPDependClause()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2007 SDep::Kind DepKind = Dep.getKind(); in apply() local
2009 if (DepKind == SDep::Anti && TmpMI->isPHI()) in apply()
2013 else if (DepKind == SDep::Data && !TmpMI->isPHI() && TmpSU->NumPreds > 0) in apply()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h5484 OpenMPDependClauseKind DepKind = OMPC_DEPEND_unknown; member
5529 void setDependencyKind(OpenMPDependClauseKind K) { Data.DepKind = K; } in setDependencyKind()
5570 OpenMPDependClauseKind getDependencyKind() const { return Data.DepKind; } in getDependencyKind()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1899 static_cast<unsigned int>(Dep.DepKind)), in emitTaskDependencies()