Home
last modified time | relevance | path

Searched refs:AILE (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp515 const ArrayInitLoopExpr *AILE, in bindRequiredArrayElementToEnvironment() argument
561 const auto *OVESrc = AILE->getCommonExpr()->getSourceExpr(); in bindRequiredArrayElementToEnvironment()
567 cast<CXXConstructExpr>(extractElementInitializerFromNestedAILE(AILE)); in bindRequiredArrayElementToEnvironment()
624 auto *AILE = CC ? CC->getArrayInitLoop() : nullptr; in handleConstructor() local
627 if (CE->getType()->isArrayType() || AILE) { in handleConstructor()
634 else if (AILE) in handleConstructor()
635 Size = getContext().getArrayInitLoopExprElementCount(AILE); in handleConstructor()
653 if (AILE) { in handleConstructor()
658 getContext().getArrayInitLoopExprElementCount(AILE)); in handleConstructor()
661 State, AILE, LCtx, svalBuilder.makeArrayIndex(Idx)); in handleConstructor()
H A DExprEngine.cpp583 if (const auto *AILE = dyn_cast_or_null<ArrayInitLoopExpr>(Init)) in addObjectUnderConstruction() local
584 Init = extractElementInitializerFromNestedAILE(AILE); in addObjectUnderConstruction()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp1360 clang::extractElementInitializerFromNestedAILE(const ArrayInitLoopExpr *AILE) { in extractElementInitializerFromNestedAILE() argument
1361 if (!AILE) in extractElementInitializerFromNestedAILE()
1364 Expr *AILEInit = AILE->getSubExpr(); in extractElementInitializerFromNestedAILE()
3018 const auto *AILE = dyn_cast_or_null<ArrayInitLoopExpr>(Init); in VisitDeclSubExpr() local
3022 AILE ? AILE->getSubExpr() : Init); in VisitDeclSubExpr()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp2333 void VisitArrayInitLoopExpr(const ArrayInitLoopExpr *AILE) { in VisitArrayInitLoopExpr()
2334 Visit(AILE->getCommonExpr()->getSourceExpr()); in VisitArrayInitLoopExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h1459 Expr *extractElementInitializerFromNestedAILE(const ArrayInitLoopExpr *AILE);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp7436 const ArrayInitLoopExpr *AILE) const { in getArrayInitLoopExprElementCount()
7437 if (!AILE) in getArrayInitLoopExprElementCount()
7443 ElementCount *= AILE->getArraySize().getZExtValue(); in getArrayInitLoopExprElementCount()
7444 AILE = dyn_cast<ArrayInitLoopExpr>(AILE->getSubExpr()); in getArrayInitLoopExprElementCount()
7445 } while (AILE); in getArrayInitLoopExprElementCount()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2843 getArrayInitLoopExprElementCount(const ArrayInitLoopExpr *AILE) const;