Home
last modified time | relevance | path

Searched refs:OMPIteratorExpr (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DExprOpenMP.h272 class OMPIteratorExpr final
274 private llvm::TrailingObjects<OMPIteratorExpr, Decl *, Expr *,
320 OMPIteratorExpr(QualType ExprTy, SourceLocation IteratorKwLoc,
326 explicit OMPIteratorExpr(EmptyShell Shell, unsigned NumIterators) in OMPIteratorExpr() function
357 static OMPIteratorExpr *Create(const ASTContext &Context, QualType T,
363 static OMPIteratorExpr *CreateEmpty(const ASTContext &Context,
380 return const_cast<OMPIteratorExpr *>(this)->getIteratorDecl(I); in getIteratorDecl()
386 return const_cast<OMPIteratorExpr *>(this)->getIteratorRange(I); in getIteratorRange()
H A DComputeDependence.h97 class OMPIteratorExpr; variable
190 ExprDependence computeDependence(OMPIteratorExpr *E);
H A DTextNodeDumper.h301 void VisitOMPIteratorExpr(const OMPIteratorExpr *Node);
H A DRecursiveASTVisitor.h2710 DEF_TRAVERSE_STMT(OMPIteratorExpr, {})
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp4916 void OMPIteratorExpr::setIteratorRange(unsigned I, Expr *Begin, in setIteratorRange()
4939 Decl *OMPIteratorExpr::getIteratorDecl(unsigned I) { in getIteratorDecl()
4943 OMPIteratorExpr::IteratorRange OMPIteratorExpr::getIteratorRange(unsigned I) { in getIteratorRange()
4966 SourceLocation OMPIteratorExpr::getColonLoc(unsigned I) const { in getColonLoc()
4982 OMPIteratorHelperData &OMPIteratorExpr::getHelper(unsigned I) { in getHelper()
4990 OMPIteratorExpr::OMPIteratorExpr( in OMPIteratorExpr() function in OMPIteratorExpr
5008 OMPIteratorExpr *
5009 OMPIteratorExpr::Create(const ASTContext &Context, QualType T, in Create()
5021 alignof(OMPIteratorExpr)); in Create()
5025 OMPIteratorExpr *OMPIteratorExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty()
[all …]
H A DComputeDependence.cpp438 ExprDependence clang::computeDependence(OMPIteratorExpr *E) { in computeDependence()
447 OMPIteratorExpr::IteratorRange IR = E->getIteratorRange(I); in computeDependence()
H A DTextNodeDumper.cpp1401 void TextNodeDumper::VisitOMPIteratorExpr(const OMPIteratorExpr *Node) { in VisitOMPIteratorExpr()
1406 const OMPIteratorExpr::IteratorRange Range = Node->getIteratorRange(I); in VisitOMPIteratorExpr()
H A DStmtPrinter.cpp1511 void StmtPrinter::VisitOMPIteratorExpr(OMPIteratorExpr *Node) { in VisitOMPIteratorExpr()
1516 const OMPIteratorExpr::IteratorRange Range = Node->getIteratorRange(I); in VisitOMPIteratorExpr()
H A DStmtProfile.cpp1390 void StmtProfiler::VisitOMPIteratorExpr(const OMPIteratorExpr *S) { in VisitOMPIteratorExpr()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td75 def OMPIteratorExpr : StmtNode<Expr>;
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriterStmt.cpp836 void ASTStmtWriter::VisitOMPIteratorExpr(OMPIteratorExpr *E) { in VisitOMPIteratorExpr()
845 OMPIteratorExpr::IteratorRange Range = E->getIteratorRange(I); in VisitOMPIteratorExpr()
H A DASTReaderStmt.cpp966 void ASTStmtReader::VisitOMPIteratorExpr(OMPIteratorExpr *E) { in VisitOMPIteratorExpr()
2964 S = OMPIteratorExpr::CreateEmpty(Context, in ReadStmtFromStream()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp3994 const OMPIteratorExpr *E = nullptr;
4001 OMPIteratorGeneratorScope(CodeGenFunction &CGF, const OMPIteratorExpr *E) in OMPIteratorGeneratorScope()
4311 const auto *IE = cast<OMPIteratorExpr>(Modifier->IgnoreParenImpCasts()); in emitTaskInit()
4399 CGF, cast_or_null<OMPIteratorExpr>(Modifier->IgnoreParenImpCasts())); in emitTaskInit()
4602 CGF, cast_or_null<OMPIteratorExpr>( in emitDependData()
4664 CGF, cast_or_null<OMPIteratorExpr>( in emitDepobjElementsSizes()
4702 CGF, cast_or_null<OMPIteratorExpr>( in emitDepobjElements()
4768 if (const auto *IE = cast_or_null<OMPIteratorExpr>(D.IteratorExpr)) { in emitDependClause()
4875 cast_or_null<OMPIteratorExpr>(Dependencies.IteratorExpr)) { in emitDepobjDependClause()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp5352 SmallVector<OMPIteratorExpr::IteratorDefinition, 4> ID; in ActOnOMPIteratorExpr()
5452 OMPIteratorExpr::IteratorDefinition &IDElem = ID.emplace_back(); in ActOnOMPIteratorExpr()
5463 for (const OMPIteratorExpr::IteratorDefinition &D : ID) { in ActOnOMPIteratorExpr()
5474 for (OMPIteratorExpr::IteratorDefinition &D : ID) { in ActOnOMPIteratorExpr()
5625 for (const OMPIteratorExpr::IteratorDefinition &D : ID) { in ActOnOMPIteratorExpr()
5631 return OMPIteratorExpr::Create(Context, Context.OMPIteratorTy, IteratorKwLoc, in ActOnOMPIteratorExpr()
H A DTreeTransform.h10989 TreeTransform<Derived>::TransformOMPIteratorExpr(OMPIteratorExpr *E) { in TransformOMPIteratorExpr()
11007 OMPIteratorExpr::IteratorRange Range = E->getIteratorRange(I); in TransformOMPIteratorExpr()
11039 auto *IE = cast<OMPIteratorExpr>(Res.get()); in TransformOMPIteratorExpr()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h5610 OMPIteratorExpr::IteratorRange Range;