Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/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.h93 class OMPIteratorExpr; variable
182 ExprDependence computeDependence(OMPIteratorExpr *E);
H A DTextNodeDumper.h296 void VisitOMPIteratorExpr(const OMPIteratorExpr *Node);
H A DRecursiveASTVisitor.h2576 DEF_TRAVERSE_STMT(OMPIteratorExpr, {})
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp4808 void OMPIteratorExpr::setIteratorRange(unsigned I, Expr *Begin, in setIteratorRange()
4831 Decl *OMPIteratorExpr::getIteratorDecl(unsigned I) { in getIteratorDecl()
4835 OMPIteratorExpr::IteratorRange OMPIteratorExpr::getIteratorRange(unsigned I) { in getIteratorRange()
4858 SourceLocation OMPIteratorExpr::getColonLoc(unsigned I) const { in getColonLoc()
4874 OMPIteratorHelperData &OMPIteratorExpr::getHelper(unsigned I) { in getHelper()
4882 OMPIteratorExpr::OMPIteratorExpr( in OMPIteratorExpr() function in OMPIteratorExpr
4900 OMPIteratorExpr *
4901 OMPIteratorExpr::Create(const ASTContext &Context, QualType T, in Create()
4913 alignof(OMPIteratorExpr)); in Create()
4917 OMPIteratorExpr *OMPIteratorExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty()
[all …]
H A DComputeDependence.cpp417 ExprDependence clang::computeDependence(OMPIteratorExpr *E) { in computeDependence()
422 OMPIteratorExpr::IteratorRange IR = E->getIteratorRange(I); in computeDependence()
H A DTextNodeDumper.cpp1340 void TextNodeDumper::VisitOMPIteratorExpr(const OMPIteratorExpr *Node) { in VisitOMPIteratorExpr()
1345 const OMPIteratorExpr::IteratorRange Range = Node->getIteratorRange(I); in VisitOMPIteratorExpr()
H A DStmtPrinter.cpp1348 void StmtPrinter::VisitOMPIteratorExpr(OMPIteratorExpr *Node) { in VisitOMPIteratorExpr()
1353 const OMPIteratorExpr::IteratorRange Range = Node->getIteratorRange(I); in VisitOMPIteratorExpr()
H A DStmtProfile.cpp1298 void StmtProfiler::VisitOMPIteratorExpr(const OMPIteratorExpr *S) { in VisitOMPIteratorExpr()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td74 def OMPIteratorExpr : StmtNode<Expr>;
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp4060 const OMPIteratorExpr *E = nullptr;
4067 OMPIteratorGeneratorScope(CodeGenFunction &CGF, const OMPIteratorExpr *E) in OMPIteratorGeneratorScope()
4379 const auto *IE = cast<OMPIteratorExpr>(Modifier->IgnoreParenImpCasts()); in emitTaskInit()
4467 CGF, cast_or_null<OMPIteratorExpr>(Modifier->IgnoreParenImpCasts())); in emitTaskInit()
4666 CGF, cast_or_null<OMPIteratorExpr>( in emitDependData()
4728 CGF, cast_or_null<OMPIteratorExpr>( in emitDepobjElementsSizes()
4786 CGF, cast_or_null<OMPIteratorExpr>( in emitDepobjElements()
4869 if (const auto *IE = cast_or_null<OMPIteratorExpr>(D.IteratorExpr)) { in emitDependClause()
4974 cast_or_null<OMPIteratorExpr>(Dependencies.IteratorExpr)) { in emitDepobjDependClause()
/netbsd/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp827 void ASTStmtWriter::VisitOMPIteratorExpr(OMPIteratorExpr *E) { in VisitOMPIteratorExpr()
836 OMPIteratorExpr::IteratorRange Range = E->getIteratorRange(I); in VisitOMPIteratorExpr()
H A DASTReaderStmt.cpp971 void ASTStmtReader::VisitOMPIteratorExpr(OMPIteratorExpr *E) { in VisitOMPIteratorExpr()
2892 S = OMPIteratorExpr::CreateEmpty(Context, in ReadStmtFromStream()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp5150 SmallVector<OMPIteratorExpr::IteratorDefinition, 4> ID; in ActOnOMPIteratorExpr()
5250 OMPIteratorExpr::IteratorDefinition &IDElem = ID.emplace_back(); in ActOnOMPIteratorExpr()
5261 for (const OMPIteratorExpr::IteratorDefinition &D : ID) { in ActOnOMPIteratorExpr()
5272 for (OMPIteratorExpr::IteratorDefinition &D : ID) { in ActOnOMPIteratorExpr()
5423 for (const OMPIteratorExpr::IteratorDefinition &D : ID) { in ActOnOMPIteratorExpr()
5429 return OMPIteratorExpr::Create(Context, Context.OMPIteratorTy, IteratorKwLoc, in ActOnOMPIteratorExpr()
H A DTreeTransform.h10652 TreeTransform<Derived>::TransformOMPIteratorExpr(OMPIteratorExpr *E) { in TransformOMPIteratorExpr()
10670 OMPIteratorExpr::IteratorRange Range = E->getIteratorRange(I); in TransformOMPIteratorExpr()
10702 auto *IE = cast<OMPIteratorExpr>(Res.get()); in TransformOMPIteratorExpr()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h5280 OMPIteratorExpr::IteratorRange Range;