Home
last modified time | relevance | path

Searched refs:Depobj (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4804 Expr *Depobj = nullptr; variable
4821 void setDepobj(Expr *E) { Depobj = E; } in setDepobj()
4836 SourceLocation EndLoc, Expr *Depobj);
4844 Expr *getDepobj() { return Depobj; } in getDepobj()
4845 const Expr *getDepobj() const { return Depobj; } in getDepobj()
4851 return child_range(reinterpret_cast<Stmt **>(&Depobj), in children()
4852 reinterpret_cast<Stmt **>(&Depobj) + 1); in children()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp825 if (const Expr *Depobj = C->getDepobj()) in VisitOMPDepobjClause() local
826 Profiler->VisitStmt(Depobj); in VisitOMPDepobjClause()
H A DOpenMPClause.cpp1044 Expr *Depobj) { in Create() argument
1046 Clause->setDepobj(Depobj); in Create()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp20827 OMPClause *Sema::ActOnOpenMPDepobjClause(Expr *Depobj, SourceLocation StartLoc, in ActOnOpenMPDepobjClause() argument
20830 if (!Depobj) in ActOnOpenMPDepobjClause()
20837 if (!Depobj->isTypeDependent() && !Depobj->isValueDependent() && in ActOnOpenMPDepobjClause()
20838 !Depobj->isInstantiationDependent() && in ActOnOpenMPDepobjClause()
20839 !Depobj->containsUnexpandedParameterPack() && in ActOnOpenMPDepobjClause()
20843 Diag(Depobj->getExprLoc(), diag::err_omp_expected_omp_depend_t_lvalue) in ActOnOpenMPDepobjClause()
20844 << 0 << Depobj->getType() << Depobj->getSourceRange(); in ActOnOpenMPDepobjClause()
20847 if (!Depobj->isLValue()) { in ActOnOpenMPDepobjClause()
20848 Diag(Depobj->getExprLoc(), diag::err_omp_expected_omp_depend_t_lvalue) in ActOnOpenMPDepobjClause()
20849 << 1 << Depobj->getSourceRange(); in ActOnOpenMPDepobjClause()
[all …]
H A DTreeTransform.h1976 OMPClause *RebuildOMPDepobjClause(Expr *Depobj, SourceLocation StartLoc, in RebuildOMPDepobjClause() argument
1979 return getSema().ActOnOpenMPDepobjClause(Depobj, StartLoc, LParenLoc, in RebuildOMPDepobjClause()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h12480 OMPClause *ActOnOpenMPDepobjClause(Expr *Depobj, SourceLocation StartLoc,