| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | ExprOpenMP.h | 272 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 D | ComputeDependence.h | 97 class OMPIteratorExpr; variable 190 ExprDependence computeDependence(OMPIteratorExpr *E);
|
| H A D | TextNodeDumper.h | 301 void VisitOMPIteratorExpr(const OMPIteratorExpr *Node);
|
| H A D | RecursiveASTVisitor.h | 2710 DEF_TRAVERSE_STMT(OMPIteratorExpr, {})
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Expr.cpp | 4916 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 D | ComputeDependence.cpp | 438 ExprDependence clang::computeDependence(OMPIteratorExpr *E) { in computeDependence() 447 OMPIteratorExpr::IteratorRange IR = E->getIteratorRange(I); in computeDependence()
|
| H A D | TextNodeDumper.cpp | 1401 void TextNodeDumper::VisitOMPIteratorExpr(const OMPIteratorExpr *Node) { in VisitOMPIteratorExpr() 1406 const OMPIteratorExpr::IteratorRange Range = Node->getIteratorRange(I); in VisitOMPIteratorExpr()
|
| H A D | StmtPrinter.cpp | 1511 void StmtPrinter::VisitOMPIteratorExpr(OMPIteratorExpr *Node) { in VisitOMPIteratorExpr() 1516 const OMPIteratorExpr::IteratorRange Range = Node->getIteratorRange(I); in VisitOMPIteratorExpr()
|
| H A D | StmtProfile.cpp | 1390 void StmtProfiler::VisitOMPIteratorExpr(const OMPIteratorExpr *S) { in VisitOMPIteratorExpr()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 75 def OMPIteratorExpr : StmtNode<Expr>;
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 836 void ASTStmtWriter::VisitOMPIteratorExpr(OMPIteratorExpr *E) { in VisitOMPIteratorExpr() 845 OMPIteratorExpr::IteratorRange Range = E->getIteratorRange(I); in VisitOMPIteratorExpr()
|
| H A D | ASTReaderStmt.cpp | 966 void ASTStmtReader::VisitOMPIteratorExpr(OMPIteratorExpr *E) { in VisitOMPIteratorExpr() 2964 S = OMPIteratorExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.cpp | 3994 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 D | SemaExpr.cpp | 5352 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 D | TreeTransform.h | 10989 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 D | Sema.h | 5610 OMPIteratorExpr::IteratorRange Range;
|