diff options
author | Jordy Rose <jediknil@belkadan.com> | 2010-07-04 00:00:41 +0000 |
---|---|---|
committer | Jordy Rose <jediknil@belkadan.com> | 2010-07-04 00:00:41 +0000 |
commit | 32f2656b90900ac04c4b50e87c16749d0ceb9ef2 (patch) | |
tree | acae7c710bac71acbec0fd07a3c6547c43977feb /lib/Checker/MallocChecker.cpp | |
parent | 6b855121f3c23e9cf2b548cbf2dd3d16fdcf610c (diff) |
Add a new symbol type, SymbolExtent, to represent the extents of memory regions that may not be known at compile-time (such as those created by malloc). This replaces the old setExtent/getExtent API on Store, which used the GRState's GDM to store SVals.
Also adds a getKnownValue() method to SValuator, which gets the integer value of an SVal if it is known to only have one possible value. There are more places in the code that could be using this, but in general we want to be dealing entirely in SVals, so its usefulness is limited.
The only visible functionality change is that extents are now honored for any DeclRegion, such as fields and Objective-C ivars, rather than just variables. This shows up in bounds-checking and cast-size-checking.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107577 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/MallocChecker.cpp')
-rw-r--r-- | lib/Checker/MallocChecker.cpp | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/lib/Checker/MallocChecker.cpp b/lib/Checker/MallocChecker.cpp index a5bba1d8ca..dcc21ca386 100644 --- a/lib/Checker/MallocChecker.cpp +++ b/lib/Checker/MallocChecker.cpp @@ -172,15 +172,23 @@ const GRState *MallocChecker::MallocMemAux(CheckerContext &C, unsigned Count = C.getNodeBuilder().getCurrentBlockCount(); ValueManager &ValMgr = C.getValueManager(); + // Set the return value. SVal RetVal = ValMgr.getConjuredSymbolVal(NULL, CE, CE->getType(), Count); + state = state->BindExpr(CE, RetVal); - state = C.getEngine().getStoreManager().setExtent(state, RetVal.getAsRegion(), - Size); - + // Fill the region with the initialization value. state = state->bindDefault(RetVal, Init); - state = state->BindExpr(CE, RetVal); - + // Set the region's extent equal to the Size parameter. + const SymbolicRegion *R = cast<SymbolicRegion>(RetVal.getAsRegion()); + DefinedOrUnknownSVal Extent = R->getExtent(ValMgr); + DefinedOrUnknownSVal DefinedSize = cast<DefinedOrUnknownSVal>(Size); + + SValuator &SVator = ValMgr.getSValuator(); + DefinedOrUnknownSVal ExtentMatchesSize = + SVator.EvalEQ(state, Extent, DefinedSize); + state = state->Assume(ExtentMatchesSize, true); + SymbolRef Sym = RetVal.getAsLocSymbol(); assert(Sym); // Set the symbol's state to Allocated. |