Searched refs:Depobj (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 4844 Expr *Depobj = nullptr; variable 4861 void setDepobj(Expr *E) { Depobj = E; } in setDepobj() 4876 SourceLocation EndLoc, Expr *Depobj); 4884 Expr *getDepobj() { return Depobj; } in getDepobj() 4885 const Expr *getDepobj() const { return Depobj; } in getDepobj() 4891 return child_range(reinterpret_cast<Stmt **>(&Depobj), in children() 4892 reinterpret_cast<Stmt **>(&Depobj) + 1); in children()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtProfile.cpp | 827 if (const Expr *Depobj = C->getDepobj()) in VisitOMPDepobjClause() local 828 Profiler->VisitStmt(Depobj); in VisitOMPDepobjClause()
|
H A D | OpenMPClause.cpp | 1044 Expr *Depobj) { in Create() argument 1046 Clause->setDepobj(Depobj); in Create()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaOpenMP.h | 1204 OMPClause *ActOnOpenMPDepobjClause(Expr *Depobj, SourceLocation StartLoc,
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 19640 OMPClause *SemaOpenMP::ActOnOpenMPDepobjClause(Expr *Depobj, in ActOnOpenMPDepobjClause() argument 19644 if (!Depobj) in ActOnOpenMPDepobjClause() 19651 if (!Depobj->isTypeDependent() && !Depobj->isValueDependent() && in ActOnOpenMPDepobjClause() 19652 !Depobj->isInstantiationDependent() && in ActOnOpenMPDepobjClause() 19653 !Depobj->containsUnexpandedParameterPack() && in ActOnOpenMPDepobjClause() 19655 DSAStack->getOMPDependT(), Depobj->getType(), in ActOnOpenMPDepobjClause() 19657 Diag(Depobj->getExprLoc(), diag::err_omp_expected_omp_depend_t_lvalue) in ActOnOpenMPDepobjClause() 19658 << 0 << Depobj->getType() << Depobj->getSourceRange(); in ActOnOpenMPDepobjClause() 19661 if (!Depobj->isLValue()) { in ActOnOpenMPDepobjClause() 19662 Diag(Depobj->getExprLoc(), diag::err_omp_expected_omp_depend_t_lvalue) in ActOnOpenMPDepobjClause() [all …]
|
H A D | TreeTransform.h | 2000 OMPClause *RebuildOMPDepobjClause(Expr *Depobj, SourceLocation StartLoc, in RebuildOMPDepobjClause() argument 2003 return getSema().OpenMP().ActOnOpenMPDepobjClause(Depobj, StartLoc, in RebuildOMPDepobjClause()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | ClauseT.h | 242 ENUM(TaskDependenceType, In, Out, Inout, Mutexinoutset, Inoutset, Depobj);
|