forked from OSchip/llvm-project
Make StoreManager::getSizeInElements() always return DefinedOrUnknownSVal.
llvm-svn: 86932
This commit is contained in:
parent
495922cb6a
commit
383c273966
|
@ -102,7 +102,8 @@ public:
|
|||
virtual SVal getLValueElement(QualType elementType, SVal offset, SVal Base)=0;
|
||||
|
||||
// FIXME: Make out-of-line.
|
||||
virtual SVal getSizeInElements(const GRState *state, const MemRegion *region){
|
||||
virtual DefinedOrUnknownSVal getSizeInElements(const GRState *state,
|
||||
const MemRegion *region) {
|
||||
return UnknownVal();
|
||||
}
|
||||
|
||||
|
|
|
@ -56,9 +56,8 @@ void ArrayBoundChecker::VisitLocation(CheckerContext &C, const Stmt *S, SVal l){
|
|||
const GRState *state = C.getState();
|
||||
|
||||
// Get the size of the array.
|
||||
SVal NumVal = C.getStoreManager().getSizeInElements(state,
|
||||
ER->getSuperRegion());
|
||||
DefinedOrUnknownSVal &NumElements = cast<DefinedOrUnknownSVal>(NumVal);
|
||||
DefinedOrUnknownSVal NumElements
|
||||
= C.getStoreManager().getSizeInElements(state, ER->getSuperRegion());
|
||||
|
||||
const GRState *StInBound = state->AssumeInBound(Idx, NumElements, true);
|
||||
const GRState *StOutBound = state->AssumeInBound(Idx, NumElements, false);
|
||||
|
|
|
@ -360,7 +360,8 @@ public:
|
|||
//===------------------------------------------------------------------===//
|
||||
|
||||
const GRState *setExtent(const GRState *state, const MemRegion* R, SVal Extent);
|
||||
SVal getSizeInElements(const GRState *state, const MemRegion* R);
|
||||
DefinedOrUnknownSVal getSizeInElements(const GRState *state,
|
||||
const MemRegion* R);
|
||||
|
||||
//===------------------------------------------------------------------===//
|
||||
// Utility methods.
|
||||
|
@ -696,7 +697,7 @@ SVal RegionStoreManager::getLValueElement(QualType elementType, SVal Offset,
|
|||
// Extents for regions.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
SVal RegionStoreManager::getSizeInElements(const GRState *state,
|
||||
DefinedOrUnknownSVal RegionStoreManager::getSizeInElements(const GRState *state,
|
||||
const MemRegion *R) {
|
||||
|
||||
switch (R->getKind()) {
|
||||
|
|
|
@ -64,9 +64,8 @@ void ReturnPointerRangeChecker::PreVisitReturnStmt(CheckerContext &C,
|
|||
// FIXME: All of this out-of-bounds checking should eventually be refactored
|
||||
// into a common place.
|
||||
|
||||
SVal NumVal = C.getStoreManager().getSizeInElements(state,
|
||||
ER->getSuperRegion());
|
||||
DefinedOrUnknownSVal &NumElements = cast<DefinedOrUnknownSVal>(NumVal);
|
||||
DefinedOrUnknownSVal NumElements
|
||||
= C.getStoreManager().getSizeInElements(state, ER->getSuperRegion());
|
||||
|
||||
const GRState *StInBound = state->AssumeInBound(Idx, NumElements, true);
|
||||
const GRState *StOutBound = state->AssumeInBound(Idx, NumElements, false);
|
||||
|
|
Loading…
Reference in New Issue