Searched refs:OMPArrayShapingExpr (Results 1 – 13 of 13) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ExprOpenMP.h | 22 class OMPArrayShapingExpr final 24 private llvm::TrailingObjects<OMPArrayShapingExpr, Expr *, SourceRange> { 34 OMPArrayShapingExpr(QualType ExprTy, Expr *Op, SourceLocation L, 38 explicit OMPArrayShapingExpr(EmptyShell Shell, unsigned NumDims) in OMPArrayShapingExpr() function 60 static OMPArrayShapingExpr *Create(const ASTContext &Context, QualType T, 65 static OMPArrayShapingExpr *CreateEmpty(const ASTContext &Context,
|
H A D | ComputeDependence.h | 98 class OMPArrayShapingExpr; variable 193 ExprDependence computeDependence(OMPArrayShapingExpr *E);
|
H A D | RecursiveASTVisitor.h | 2767 DEF_TRAVERSE_STMT(OMPArrayShapingExpr, {})
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Expr.cpp | 5142 void OMPArrayShapingExpr::setDimensions(ArrayRef<Expr *> Dims) { in setDimensions() 5149 void OMPArrayShapingExpr::setBracketsRanges(ArrayRef<SourceRange> BR) { in setBracketsRanges() 5156 OMPArrayShapingExpr::OMPArrayShapingExpr(QualType ExprTy, Expr *Op, in OMPArrayShapingExpr() function in OMPArrayShapingExpr 5166 OMPArrayShapingExpr * 5167 OMPArrayShapingExpr::Create(const ASTContext &Context, QualType T, Expr *Op, in Create() 5175 alignof(OMPArrayShapingExpr)); in Create() 5176 auto *E = new (Mem) OMPArrayShapingExpr(T, Op, L, R, Dims); in Create() 5181 OMPArrayShapingExpr *OMPArrayShapingExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() 5185 alignof(OMPArrayShapingExpr)); in CreateEmpty() 5186 return new (Mem) OMPArrayShapingExpr(EmptyShell(), NumDims); in CreateEmpty()
|
H A D | ComputeDependence.cpp | 467 ExprDependence clang::computeDependence(OMPArrayShapingExpr *E) { in computeDependence()
|
H A D | StmtProfile.cpp | 1451 void StmtProfiler::VisitOMPArrayShapingExpr(const OMPArrayShapingExpr *S) { in VisitOMPArrayShapingExpr()
|
H A D | StmtPrinter.cpp | 1570 void StmtPrinter::VisitOMPArrayShapingExpr(OMPArrayShapingExpr *Node) { in VisitOMPArrayShapingExpr()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 87 def OMPArrayShapingExpr : StmtNode<Expr>;
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 2238 isa<OMPArrayShapingExpr>(Last->getAssociatedExpression())) { in isOpenMPCapturedByRef() 3918 isa<OMPArrayShapingExpr>( in VisitDeclRefExpr() 4096 isa<OMPArrayShapingExpr>( in VisitMemberExpr() 19965 !isa<OMPArrayShapingExpr>(SimpleExpr)) { in ActOnOpenMPDependClause() 20424 bool VisitOMPArrayShapingExpr(OMPArrayShapingExpr *E) { in VisitOMPArrayShapingExpr() 20589 isa<OMPArrayShapingExpr>(CI->getAssociatedExpression())) && in checkMapConflicts() 20592 isa<OMPArrayShapingExpr>(SI->getAssociatedExpression()))) { in checkMapConflicts() 20623 } else if (const auto *OASE = dyn_cast<OMPArrayShapingExpr>( in checkMapConflicts() 21100 auto *OAShE = dyn_cast<OMPArrayShapingExpr>(VE->IgnoreParens()); in checkMappableExpressionList() 23140 !isa<OMPArrayShapingExpr>(SimpleExpr)) { in ActOnOpenMPAffinityClause() [all …]
|
H A D | TreeTransform.h | 12199 TreeTransform<Derived>::TransformOMPArrayShapingExpr(OMPArrayShapingExpr *E) { in TransformOMPArrayShapingExpr()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 975 void ASTStmtReader::VisitOMPArrayShapingExpr(OMPArrayShapingExpr *E) { in VisitOMPArrayShapingExpr() 3129 S = OMPArrayShapingExpr::CreateEmpty( in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 899 void ASTStmtWriter::VisitOMPArrayShapingExpr(OMPArrayShapingExpr *E) { in VisitOMPArrayShapingExpr()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.cpp | 3564 const auto *OASE = dyn_cast<OMPArrayShapingExpr>(E); in getPointerAndSize() 6664 if (const auto *OAE = dyn_cast<OMPArrayShapingExpr>(E)) { in getExprTypeSize() 7045 const auto *OAShE = dyn_cast<OMPArrayShapingExpr>(AssocExpr); in generateInfoForComponentList() 7201 dyn_cast<OMPArrayShapingExpr>(I->getAssociatedExpression()); in generateInfoForComponentList() 7228 isa<OMPArrayShapingExpr>(Next->getAssociatedExpression()) || in generateInfoForComponentList()
|