Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseOpenMP.cpp1563 Data.DepKind = in ParseOpenMPVarList()
1568 if (Data.DepKind == OMPC_DEPEND_unknown) { in ParseOpenMPVarList()
1574 if (DKind == OMPD_ordered && Data.DepKind == OMPC_DEPEND_source) { in ParseOpenMPVarList()
1671 (Kind == OMPC_depend && Data.DepKind != OMPC_DEPEND_unknown); in ParseOpenMPVarList()
1718 if ((Kind == OMPC_depend && Data.DepKind != OMPC_DEPEND_unknown && in ParseOpenMPVarList()
1777 Data.ReductionIdScopeSpec, Data.ReductionId, Data.DepKind, Data.LinKind, in ParseOpenMPVarListClause()
/external/llvm-project/clang/lib/CodeGen/
DCGOpenMPRuntime.h110 OpenMPDependClauseKind DepKind = OMPC_DEPEND_unknown; member
114 DependData(OpenMPDependClauseKind DepKind, const Expr *IteratorExpr) in DependData()
115 : DepKind(DepKind), IteratorExpr(IteratorExpr) {} in DependData()
DCGOpenMPRuntime.cpp4542 RTLDependenceKindTy DepKind; in translateDependencyKind() local
4545 DepKind = DepIn; in translateDependencyKind()
4550 DepKind = DepInOut; in translateDependencyKind()
4553 DepKind = DepMutexInOutSet; in translateDependencyKind()
4561 return DepKind; in translateDependencyKind()
4650 RTLDependenceKindTy DepKind = translateDependencyKind(Data.DepKind); in emitDependData() local
4653 CGF.EmitStoreOfScalar(llvm::ConstantInt::get(LLVMFlagsTy, DepKind), in emitDependData()
4670 assert(Data.DepKind == OMPC_DEPEND_depobj && in emitDepobjElementsSizes()
4729 assert(Data.DepKind == OMPC_DEPEND_depobj && in emitDepobjElements()
4800 return D.DepKind == OMPC_DEPEND_depobj in emitDependClause()
[all …]
/external/clang/include/clang/AST/
DOpenMPClause.h2585 OpenMPDependClauseKind DepKind; variable
2601 DepKind(OMPC_DEPEND_unknown) {} in OMPDependClause()
2611 DepKind(OMPC_DEPEND_unknown) {} in OMPDependClause()
2613 void setDependencyKind(OpenMPDependClauseKind K) { DepKind = K; } in setDependencyKind()
2634 SourceLocation EndLoc, OpenMPDependClauseKind DepKind,
2644 OpenMPDependClauseKind getDependencyKind() const { return DepKind; } in getDependencyKind()
/external/clang/lib/AST/
DOpenMPClause.cpp523 SourceLocation EndLoc, OpenMPDependClauseKind DepKind, in Create() argument
529 Clause->setDependencyKind(DepKind); in Create()
/external/clang/lib/Sema/
DSemaOpenMP.cpp8025 const DeclarationNameInfo &ReductionId, OpenMPDependClauseKind DepKind, in ActOnOpenMPVarListClause() argument
8065 Res = ActOnOpenMPDependClause(DepKind, DepLinMapLoc, ColonLoc, VarList, in ActOnOpenMPVarListClause()
10120 Sema::ActOnOpenMPDependClause(OpenMPDependClauseKind DepKind, in ActOnOpenMPDependClause() argument
10125 DepKind != OMPC_DEPEND_source && DepKind != OMPC_DEPEND_sink) { in ActOnOpenMPDependClause()
10131 (DepKind == OMPC_DEPEND_unknown || DepKind == OMPC_DEPEND_source || in ActOnOpenMPDependClause()
10132 DepKind == OMPC_DEPEND_sink)) { in ActOnOpenMPDependClause()
10144 if (DepKind == OMPC_DEPEND_sink) { in ActOnOpenMPDependClause()
10150 if ((DepKind != OMPC_DEPEND_sink && DepKind != OMPC_DEPEND_source) || in ActOnOpenMPDependClause()
10162 if (DepKind == OMPC_DEPEND_sink) { in ActOnOpenMPDependClause()
10260 if (!CurContext->isDependentContext() && DepKind == OMPC_DEPEND_sink && in ActOnOpenMPDependClause()
[all …]
DTreeTransform.h1648 RebuildOMPDependClause(OpenMPDependClauseKind DepKind, SourceLocation DepLoc, in RebuildOMPDependClause() argument
1652 return getSema().ActOnOpenMPDependClause(DepKind, DepLoc, ColonLoc, VarList, in RebuildOMPDependClause()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp16372 Sema::ActOnOpenMPDependClause(Expr *DepModifier, OpenMPDependClauseKind DepKind, in ActOnOpenMPDependClause() argument
16377 DepKind != OMPC_DEPEND_source && DepKind != OMPC_DEPEND_sink) { in ActOnOpenMPDependClause()
16384 (DepKind == OMPC_DEPEND_unknown || DepKind == OMPC_DEPEND_source || in ActOnOpenMPDependClause()
16385 DepKind == OMPC_DEPEND_sink || in ActOnOpenMPDependClause()
16388 DepKind == OMPC_DEPEND_depobj))) { in ActOnOpenMPDependClause()
16405 (DepKind == OMPC_DEPEND_source || DepKind == OMPC_DEPEND_sink)) { in ActOnOpenMPDependClause()
16418 if (DepKind == OMPC_DEPEND_sink || DepKind == OMPC_DEPEND_source) { in ActOnOpenMPDependClause()
16435 if (DepKind == OMPC_DEPEND_sink) { in ActOnOpenMPDependClause()
16517 DepKind == OMPC_DEPEND_depobj); in ActOnOpenMPDependClause()
16518 if (DepKind == OMPC_DEPEND_depobj) { in ActOnOpenMPDependClause()
[all …]
DTreeTransform.h1869 RebuildOMPDependClause(Expr *DepModifier, OpenMPDependClauseKind DepKind, in RebuildOMPDependClause() argument
1873 return getSema().ActOnOpenMPDependClause(DepModifier, DepKind, DepLoc, in RebuildOMPDependClause()
/external/llvm-project/llvm/lib/CodeGen/
DMachinePipeliner.cpp1383 SDep::Kind DepKind = Dep.getKind(); in apply() local
1385 if (DepKind == SDep::Anti && TmpMI->isPHI()) in apply()
1389 else if (DepKind == SDep::Data && !TmpMI->isPHI() && TmpSU->NumPreds > 0) in apply()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachinePipeliner.cpp1301 SDep::Kind DepKind = Dep.getKind(); in apply() local
1303 if (DepKind == SDep::Anti && TmpMI->isPHI()) in apply()
1307 else if (DepKind == SDep::Data && !TmpMI->isPHI() && TmpSU->NumPreds > 0) in apply()
/external/llvm-project/clang/lib/AST/
DOpenMPClause.cpp960 Expr *DepModifier, OpenMPDependClauseKind DepKind, in Create() argument
969 Clause->setDependencyKind(DepKind); in Create()
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h4431 OpenMPDependClauseKind DepKind = OMPC_DEPEND_unknown; variable
4468 void setDependencyKind(OpenMPDependClauseKind K) { DepKind = K; } in setDependencyKind()
4495 OpenMPDependClauseKind DepKind,
4509 OpenMPDependClauseKind getDependencyKind() const { return DepKind; } in getDependencyKind()
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp3942 RTLDependenceKindTy DepKind; in emitTaskCall() local
3945 DepKind = DepIn; in emitTaskCall()
3950 DepKind = DepInOut; in emitTaskCall()
3959 CGF.EmitStoreOfScalar(llvm::ConstantInt::get(LLVMFlagsTy, DepKind), in emitTaskCall()
/external/clang/include/clang/Parse/
DParser.h2560 OpenMPDependClauseKind DepKind = OMPC_DEPEND_unknown; member
/external/clang/include/clang/Sema/
DSema.h8374 const DeclarationNameInfo &ReductionId, OpenMPDependClauseKind DepKind,
8435 ActOnOpenMPDependClause(OpenMPDependClauseKind DepKind, SourceLocation DepLoc,
/external/llvm-project/clang/include/clang/Sema/
DSema.h10949 ActOnOpenMPDependClause(Expr *DepModifier, OpenMPDependClauseKind DepKind,