clang 23.0.0git
LoopWidening.cpp
Go to the documentation of this file.
1//===--- LoopWidening.cpp - Widen loops -------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// This file contains functions which are used to widen loops. A loop may be
10/// widened to approximate the exit state(s), without analyzing every
11/// iteration. The widening is done by invalidating anything which might be
12/// modified by the body of the loop.
13///
14//===----------------------------------------------------------------------===//
15
19
20using namespace clang;
21using namespace ento;
22using namespace clang::ast_matchers;
23
24const auto MatchRef = "matchref";
25
26namespace clang {
27namespace ento {
28
30 const StackFrame *SF, unsigned BlockCount,
31 ConstCFGElementRef Elem) {
32 // Invalidate values in the current state.
33 // TODO Make this more conservative by only invalidating values that might
34 // be modified by the body of the loop.
35 // TODO Nested loops are currently widened as a result of the invalidation
36 // being so inprecise. When the invalidation is improved, the handling
37 // of nested loops will also need to be improved.
39 MemRegionManager &MRMgr = PrevState->getStateManager().getRegionManager();
40 const MemRegion *Regions[] = {MRMgr.getStackLocalsRegion(SF),
42 MRMgr.getGlobalsRegion()};
44 for (auto *Region : Regions) {
45 ITraits.setTrait(Region,
47 }
48
49 // References should not be invalidated.
50 auto Matches = match(
52 varDecl(hasType(hasCanonicalType(referenceType()))).bind(MatchRef)))),
53 *SF->getDecl()->getBody(), ASTCtx);
54 for (BoundNodes Match : Matches) {
55 const VarDecl *VD = Match.getNodeAs<VarDecl>(MatchRef);
56 assert(VD);
57 const VarRegion *VarMem = MRMgr.getVarRegion(VD, SF);
58 ITraits.setTrait(VarMem,
60 }
61
62
63 // 'this' pointer is not an lvalue, we should not invalidate it. If the loop
64 // is located in a method, constructor or destructor, the value of 'this'
65 // pointer should remain unchanged. Ignore static methods, since they do not
66 // have 'this' pointers.
67 const CXXMethodDecl *CXXMD = dyn_cast<CXXMethodDecl>(SF->getDecl());
68 if (CXXMD && CXXMD->isImplicitObjectMemberFunction()) {
69 const CXXThisRegion *ThisR =
70 MRMgr.getCXXThisRegion(CXXMD->getThisType(), SF);
71 ITraits.setTrait(ThisR,
73 }
74
75 return PrevState->invalidateRegions(Regions, Elem, BlockCount, SF, true,
76 nullptr, nullptr, &ITraits);
77}
78
79} // end namespace ento
80} // end namespace clang
const auto MatchRef
This header contains the declarations of functions which are used to widen loops which do not otherwi...
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition ASTContext.h:223
ASTContext & getASTContext() const
Represents a static or instance method of a struct/union/class.
Definition DeclCXX.h:2132
bool isImplicitObjectMemberFunction() const
[C++2b][dcl.fct]/p7 An implicit object member function is a non-static member function without an exp...
Definition DeclCXX.cpp:2723
QualType getThisType() const
Return the type of the this pointer.
Definition DeclCXX.cpp:2856
virtual Stmt * getBody() const
getBody - If this Decl represents a declaration for a body of code, such as a function or method defi...
Definition DeclBase.h:1100
It represents a stack frame of the call stack.
LLVM_ATTRIBUTE_RETURNS_NONNULL AnalysisDeclContext * getAnalysisDeclContext() const
const Decl * getDecl() const
Represents a variable declaration or definition.
Definition Decl.h:924
Maps string IDs to AST nodes matched by parts of a matcher.
CXXThisRegion - Represents the region for the implicit 'this' parameter in a call to a C++ method.
Definition MemRegion.h:1105
const StackLocalsSpaceRegion * getStackLocalsRegion(const StackFrame *SF)
getStackLocalsRegion - Retrieve the memory region associated with the specified stack frame.
const StackArgumentsSpaceRegion * getStackArgumentsRegion(const StackFrame *SF)
getStackArgumentsRegion - Retrieve the memory region associated with function/method arguments of the...
const VarRegion * getVarRegion(const VarDecl *VD, const StackFrame *SF)
getVarRegion - Retrieve or create the memory region associated with a specified VarDecl and StackFram...
const GlobalsSpaceRegion * getGlobalsRegion(MemRegion::Kind K=MemRegion::GlobalInternalSpaceRegionKind, const CodeTextRegion *R=nullptr)
getGlobalsRegion - Retrieve the memory region associated with global variables.
const CXXThisRegion * getCXXThisRegion(QualType thisPointerTy, const StackFrame *SF)
getCXXThisRegion - Retrieve the [artificial] region associated with the parameter 'this'.
MemRegion - The root abstract class for all memory regions.
Definition MemRegion.h:97
Information about invalidation for a particular region/symbol.
Definition MemRegion.h:1656
@ TK_PreserveContents
Tells that a region's contents is not changed.
Definition MemRegion.h:1671
@ TK_EntireMemSpace
When applied to a MemSpaceRegion, indicates the entire memory space should be invalidated.
Definition MemRegion.h:1681
void setTrait(SymbolRef Sym, InvalidationKinds IK)
const internal::VariadicDynCastAllOfMatcher< Decl, VarDecl > varDecl
Matches variable declarations.
const internal::ArgumentAdaptingMatcherFunc< internal::HasDescendantMatcher > hasDescendant
Matches AST nodes that have descendant AST nodes that match the provided matcher.
SmallVector< BoundNodes, 1 > match(MatcherT Matcher, const NodeT &Node, ASTContext &Context)
Returns the results of matching Matcher on Node.
internal::Matcher< T > findAll(const internal::Matcher< T > &Matcher)
Matches if the node or any descendant matches.
const internal::VariadicAllOfMatcher< Stmt > stmt
Matches statements.
const AstTypeMatcher< ReferenceType > referenceType
IntrusiveRefCntPtr< const ProgramState > ProgramStateRef
ProgramStateRef getWidenedLoopState(ProgramStateRef PrevState, const StackFrame *SF, unsigned BlockCount, ConstCFGElementRef Elem)
Get the states that result from widening the loop.
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.
Definition Sema.h:830
CFGBlock::ConstCFGElementRef ConstCFGElementRef
Definition CFG.h:1235