26using ast_matchers::internal::Matcher;
33 enum Kind {
Normal, Unrolled } K;
38 : K(InK), LoopStmt(S), LCtx(L), maxStep(N) {}
43 return LoopState(
Normal, S, L, N);
47 return LoopState(Unrolled, S, L, N);
49 bool isUnrolled()
const {
return K == Unrolled; }
50 unsigned getMaxStep()
const {
return maxStep; }
51 const Stmt *getLoopStmt()
const {
return LoopStmt; }
54 return K ==
X.K && LoopStmt ==
X.LoopStmt;
56 void Profile(llvm::FoldingSetNodeID &ID)
const {
58 ID.AddPointer(LoopStmt);
60 ID.AddInteger(maxStep);
76 return Node->isIntegralOrEnumerationType();
82 return isa_and_nonnull<ForStmt, WhileStmt, DoStmt>(S);
86 auto LS = State->get<LoopStack>();
87 if (!LS.isEmpty() && LS.getHead().getLoopStmt() == LoopStmt)
88 State = State->set<LoopStack>(LS.getTail());
93 auto LoopVariable = ignoringParenImpCasts(
96 auto UpperBound = ignoringParenImpCasts(
97 expr(hasType(isIntegralOrEnumerationType())).bind(
"boundNum"));
100 anyOf(hasOperatorName(
"<"), hasOperatorName(
">"),
101 hasOperatorName(
"<="), hasOperatorName(
">="),
102 hasOperatorName(
"!=")),
105 .bind(
"conditionOperator");
111 hasUnaryOperand(ignoringParenImpCasts(
114 hasLHS(ignoringParenImpCasts(
118static Matcher<Stmt>
callByRef(Matcher<Decl> VarNodeMatcher) {
119 return callExpr(forEachArgumentWithParam(
127 hasInitializer(
anyOf(
132static Matcher<Stmt>
getAddrTo(Matcher<Decl> VarNodeMatcher) {
134 hasOperatorName(
"&"),
145 callByRef(equalsBoundNode(std::string(NodeName))),
146 getAddrTo(equalsBoundNode(std::string(NodeName))),
158 equalsBoundNode(
"initVarName"))))),
160 equalsBoundNode(
"initVarName"))))),
161 hasRHS(ignoringParenImpCasts(
166 anyOf(hasOperatorName(
"++"), hasOperatorName(
"--")),
169 hasType(isInteger())))))))),
181 assert(MD && MD->getParent()->isLambda() &&
182 "Captured variable should only be seen while evaluating a lambda");
186 llvm::DenseMap<const ValueDecl *, FieldDecl *> LambdaCaptureFields;
188 LambdaCXXRec->
getCaptureFields(LambdaCaptureFields, LambdaThisCaptureField);
193 const FieldDecl *FD = LambdaCaptureFields[VD];
194 assert(FD &&
"Captured variable without a corresponding field");
199 if (
const DeclStmt *DS = dyn_cast<DeclStmt>(S)) {
200 for (
const Decl *D : DS->decls()) {
202 if (D->getCanonicalDecl() == VD)
221 const bool IsRefParamOrCapture =
242 if (
const auto *SS = dyn_cast<SwitchStmt>(S)) {
243 if (
const auto *CST = dyn_cast<CompoundStmt>(SS->getBody())) {
244 for (
const Stmt *CB : CST->body()) {
267 if (IsRefParamOrCapture)
270 llvm_unreachable(
"Reached root without finding the declaration of VD");
283 const auto *CounterVarRef = Matches[0].getNodeAs<
DeclRefExpr>(
"initVarRef");
284 const Expr *BoundNumExpr = Matches[0].getNodeAs<
Expr>(
"boundNum");
287 if (!BoundNumExpr || !BoundNumExpr->EvaluateAsInt(BoundNumResult, ASTCtx,
291 llvm::APInt InitNum =
293 auto CondOp = Matches[0].getNodeAs<
BinaryOperator>(
"conditionOperator");
294 unsigned MaxWidth = std::max(InitNum.getBitWidth(),
295 BoundNumResult.Val.getInt().getBitWidth());
297 InitNum = InitNum.zext(MaxWidth);
298 llvm::APInt BoundNum = BoundNumResult.Val.getInt().zext(MaxWidth);
299 if (CondOp->getOpcode() == BO_GE || CondOp->getOpcode() == BO_LE)
300 maxStep = (BoundNum - InitNum + 1).
abs().getZExtValue();
302 maxStep = (BoundNum - InitNum).
abs().getZExtValue();
309 const Stmt *S =
nullptr;
316 S = BE->getBlock()->getTerminatorStmt();
324 llvm_unreachable(
"Reached root without encountering the previous step");
336 auto LS = State->get<LoopStack>();
337 if (!LS.isEmpty() && LoopStmt == LS.getHead().getLoopStmt() &&
338 LCtx == LS.getHead().getLocationContext()) {
339 if (LS.getHead().isUnrolled() &&
madeNewBranch(Pred, LoopStmt)) {
340 State = State->set<LoopStack>(LS.getTail());
341 State = State->add<LoopStack>(
342 LoopState::getNormal(LoopStmt, LCtx, maxVisitOnPath));
348 State = State->add<LoopStack>(
349 LoopState::getNormal(LoopStmt, LCtx, maxVisitOnPath));
353 unsigned outerStep = (LS.isEmpty() ? 1 : LS.getHead().getMaxStep());
355 unsigned innerMaxStep = maxStep * outerStep;
357 State = State->add<LoopStack>(
358 LoopState::getNormal(LoopStmt, LCtx, maxVisitOnPath));
360 State = State->add<LoopStack>(
361 LoopState::getUnrolled(LoopStmt, LCtx, innerMaxStep));
366 auto LS = State->get<LoopStack>();
367 if (LS.isEmpty() || !LS.getHead().isUnrolled())
#define AST_MATCHER(Type, DefineMatcher)
AST_MATCHER(Type, DefineMatcher) { ... } defines a zero parameter function named DefineMatcher() that...
static const int MAXIMUM_STEP_UNROLLED
This header contains the declarations of functions which are used to decide which loops should be com...
#define REGISTER_LIST_WITH_PROGRAMSTATE(Name, Elem)
Declares an immutable list type NameTy, suitable for placement into the ProgramState.
__DEVICE__ long long abs(long long __n)
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
ASTContext & getASTContext() const
A builtin binary operation expression such as "x + y" or "x <= y".
Represents a C++ struct/union/class.
void getCaptureFields(llvm::DenseMap< const ValueDecl *, FieldDecl * > &Captures, FieldDecl *&ThisCapture) const
For a closure type, retrieve the mapping from captured variables and this to the non-static data memb...
DeclContext * getParent()
getParent - Returns the containing DeclContext.
A reference to a declared variable, function, enum, etc.
bool refersToEnclosingVariableOrCapture() const
Does this DeclRefExpr refer to an enclosing local or a captured variable?
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
Decl - This represents one declaration (or definition), e.g.
virtual Decl * getCanonicalDecl()
Retrieves the "canonical" declaration of the given declaration.
This represents one expression.
@ SE_NoSideEffects
Strictly evaluate the expression.
Represents a member of a struct/union/class.
It wraps the AnalysisDeclContext to represent both the call stack with the help of StackFrameContext ...
const Decl * getDecl() const
LLVM_ATTRIBUTE_RETURNS_NONNULL AnalysisDeclContext * getAnalysisDeclContext() const
std::optional< T > getAs() const
Convert to the specified ProgramPoint type, returning std::nullopt if this ProgramPoint is not of the...
A (possibly-)qualified type.
Stmt - This represents one statement.
bool isReferenceType() const
Represents a variable declaration or definition.
bool hasGlobalStorage() const
Returns true for all variables that do not have local storage.
const ProgramStateRef & getState() const
const Stmt * getStmtForDiagnostics() const
If the node's program point corresponds to a statement, retrieve that statement.
ProgramPoint getLocation() const
getLocation - Returns the edge associated with the given node.
const LocationContext * getLocationContext() const
ExplodedNode * getFirstPred()
unsigned succ_size() const
const internal::VariadicDynCastAllOfMatcher< Decl, VarDecl > varDecl
Matches variable declarations.
const internal::VariadicDynCastAllOfMatcher< Stmt, DeclRefExpr > declRefExpr
Matches expressions that refer to declarations.
const internal::VariadicOperatorMatcherFunc< 1, 1 > unless
Matches if the provided matcher does not match.
const internal::ArgumentAdaptingMatcherFunc< internal::HasDescendantMatcher > hasDescendant
Matches AST nodes that have descendant AST nodes that match the provided matcher.
const internal::VariadicDynCastAllOfMatcher< Decl, ParmVarDecl > parmVarDecl
Matches parameter variable declarations.
const internal::VariadicDynCastAllOfMatcher< Stmt, ReturnStmt > returnStmt
Matches return statements.
const internal::VariadicDynCastAllOfMatcher< Stmt, CallExpr > callExpr
Matches call expressions.
SmallVector< BoundNodes, 1 > match(MatcherT Matcher, const NodeT &Node, ASTContext &Context)
Returns the results of matching Matcher on Node.
const internal::VariadicDynCastAllOfMatcher< Stmt, UnaryOperator > unaryOperator
Matches unary operator expressions.
const internal::VariadicDynCastAllOfMatcher< Stmt, InitListExpr > initListExpr
Matches init list expressions.
const internal::VariadicDynCastAllOfMatcher< Stmt, ForStmt > forStmt
Matches for statements.
const internal::VariadicDynCastAllOfMatcher< Stmt, GotoStmt > gotoStmt
Matches goto statements.
const internal::VariadicDynCastAllOfMatcher< Stmt, BinaryOperator > binaryOperator
Matches binary operator expressions.
const internal::ArgumentAdaptingMatcherFunc< internal::HasMatcher > has
Matches AST nodes that have child AST nodes that match the provided matcher.
const internal::VariadicOperatorMatcherFunc< 2, std::numeric_limits< unsigned >::max()> allOf
Matches if all given matchers match.
const internal::VariadicDynCastAllOfMatcher< Stmt, SwitchStmt > switchStmt
Matches switch statements.
const internal::VariadicDynCastAllOfMatcher< Stmt, IntegerLiteral > integerLiteral
Matches integer literals of all sizes / encodings, e.g.
internal::PolymorphicMatcher< internal::HasDeclarationMatcher, void(internal::HasDeclarationSupportedTypes), internal::Matcher< Decl > > hasDeclaration(const internal::Matcher< Decl > &InnerMatcher)
Matches a node if the declaration associated with that node matches the given matcher.
const internal::VariadicDynCastAllOfMatcher< Stmt, DeclStmt > declStmt
Matches declaration statements.
const internal::VariadicAllOfMatcher< Stmt > stmt
Matches statements.
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
const internal::VariadicOperatorMatcherFunc< 2, std::numeric_limits< unsigned >::max()> anyOf
Matches if any of the given matchers matches.
const internal::VariadicAllOfMatcher< QualType > qualType
Matches QualTypes in the clang AST.
const AstTypeMatcher< ReferenceType > referenceType
static bool madeNewBranch(ExplodedNode *N, const Stmt *LoopStmt)
static bool isPossiblyEscaped(ExplodedNode *N, const DeclRefExpr *DR)
static Matcher< Stmt > changeIntBoundNode(Matcher< Decl > VarNodeMatcher)
IntrusiveRefCntPtr< const ProgramState > ProgramStateRef
static bool isLoopStmt(const Stmt *S)
static Matcher< Stmt > forLoopMatcher()
ProgramStateRef processLoopEnd(const Stmt *LoopStmt, ProgramStateRef State)
Updates the given ProgramState.
static Matcher< Stmt > hasSuspiciousStmt(StringRef NodeName)
static Matcher< Stmt > getAddrTo(Matcher< Decl > VarNodeMatcher)
static bool isFoundInStmt(const Stmt *S, const VarDecl *VD)
static bool shouldCompletelyUnroll(const Stmt *LoopStmt, ASTContext &ASTCtx, ExplodedNode *Pred, unsigned &maxStep)
static Matcher< Stmt > simpleCondition(StringRef BindName, StringRef RefName)
bool isUnrolledState(ProgramStateRef State)
Returns if the given State indicates that is inside a completely unrolled loop.
static bool isCapturedByReference(ExplodedNode *N, const DeclRefExpr *DR)
static Matcher< Stmt > assignedToRef(Matcher< Decl > VarNodeMatcher)
static Matcher< Stmt > callByRef(Matcher< Decl > VarNodeMatcher)
ProgramStateRef updateLoopStack(const Stmt *LoopStmt, ASTContext &ASTCtx, ExplodedNode *Pred, unsigned maxVisitOnPath)
Updates the stack of loops contained by the ProgramState.
The JSON file list parser is used to communicate input to InstallAPI.
@ Match
This is not an overload because the signature exactly matches an existing declaration.
bool isa(CodeGen::Address addr)
bool operator==(const CallGraphNode::CallRecord &LHS, const CallGraphNode::CallRecord &RHS)
U cast(CodeGen::Address addr)
EvalResult is a struct with detailed info about an evaluated expression.