Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprOpenMP.h94 Expr *getLowerBound() { return cast_or_null<Expr>(SubExprs[LOWER_BOUND]); } in getLowerBound() function
95 const Expr *getLowerBound() const { in getLowerBound() function
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h801 const SCEV *getLowerBound(BoundInfo *Bound) const;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp911 if (auto LB = Subrange->getLowerBound()) in dependencies()
924 if (auto LB = GenericSubrange->getLowerBound()) in dependencies()
H A DDwarfUnit.cpp1332 AddBoundTypeEntry(dwarf::DW_AT_lower_bound, SR->getLowerBound()); in constructSubrangeDIE()
1373 AddBoundTypeEntry(dwarf::DW_AT_lower_bound, GSR->getLowerBound()); in constructGenericSubrangeDIE()
H A DCodeViewDebug.cpp1622 auto *LI = Subrange->getLowerBound().dyn_cast<ConstantInt *>(); in lowerTypeArray()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DDebugInfoMetadata.cpp390 DISubrange::BoundType DISubrange::getLowerBound() const { in getLowerBound() function in DISubrange
480 DIGenericSubrange::BoundType DIGenericSubrange::getLowerBound() const { in getLowerBound() function in DIGenericSubrange
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DComputeDependence.cpp401 if (auto *LB = E->getLowerBound()) in computeDependence()
H A DStmtPrinter.cpp1322 if (Node->getLowerBound()) in VisitOMPArraySectionExpr()
1323 PrintExpr(Node->getLowerBound()); in VisitOMPArraySectionExpr()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h351 BoundType getLowerBound() const;
399 BoundType getLowerBound() const;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp2708 if (const SCEV *LowerBound = getLowerBound(Bound)) in testBounds()
2946 const SCEV *DependenceInfo::getLowerBound(BoundInfo *Bound) const { in getLowerBound() function in DependenceInfo
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp7300 !OAE->getLowerBound()) in getExprTypeSize()
7325 OAE->getLowerBound() && "expected array_section[lb:]."); in getExprTypeSize()
7328 llvm::Value *LBVal = CGF.EmitScalarExpr(OAE->getLowerBound()); in getExprTypeSize()
7329 LBVal = CGF.EmitScalarConversion(LBVal, OAE->getLowerBound()->getType(), in getExprTypeSize()
7331 OAE->getLowerBound()->getExprLoc()); in getExprTypeSize()
8135 const Expr *OffsetExpr = OASE->getLowerBound(); in generateInfoForComponentList()
H A DCGExpr.cpp3935 if (auto *LowerBound = E->getLowerBound()) { in EmitOMPArraySectionExpr()
3954 auto *LowerBound = E->getLowerBound(); in EmitOMPArraySectionExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp18094 const Expr *LowerBound = OASE->getLowerBound(); in checkArrayExpressionDoesNotReferToWholeSize()
18418 if (OASE->getLowerBound() && !OASE->getLowerBound()->isValueDependent() && in VisitOMPArraySectionExpr()
18419 OASE->getLowerBound()->EvaluateAsInt(ResultL, in VisitOMPArraySectionExpr()
18422 SemaRef.Diag(OASE->getLowerBound()->getExprLoc(), in VisitOMPArraySectionExpr()
18424 SemaRef.Diag(OASE->getLowerBound()->getExprLoc(), in VisitOMPArraySectionExpr()
H A DTreeTransform.h10595 if (E->getLowerBound()) { in TransformOMPArraySectionExpr()
10596 LowerBound = getDerived().TransformExpr(E->getLowerBound()); in TransformOMPArraySectionExpr()
10616 LowerBound.get() == E->getLowerBound() && Length.get() == E->getLength()) in TransformOMPArraySectionExpr()
H A DSemaChecking.cpp14672 if (ASE->getLowerBound()) in CheckArrayAccess()
14673 CheckArrayAccess(ASE->getBase(), ASE->getLowerBound(), in CheckArrayAccess()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp805 Record.AddStmt(E->getLowerBound()); in VisitOMPArraySectionExpr()