diff options
author | Jordy Rose <jediknil@belkadan.com> | 2010-06-25 23:23:04 +0000 |
---|---|---|
committer | Jordy Rose <jediknil@belkadan.com> | 2010-06-25 23:23:04 +0000 |
commit | 4d912b24b393fe6b7422e5502f3a330cbdc5c6b7 (patch) | |
tree | f69ba0da7a6bad3bff807efbb4e2b59067596424 /lib/Checker/RegionStore.cpp | |
parent | a006342c8650738c7e3547a1a0a70334608c5db6 (diff) |
When a constant size array is casted to another type, its length should be scaled as well.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106911 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/RegionStore.cpp')
-rw-r--r-- | lib/Checker/RegionStore.cpp | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/Checker/RegionStore.cpp b/lib/Checker/RegionStore.cpp index f7a0188a53..6b5e5e33f2 100644 --- a/lib/Checker/RegionStore.cpp +++ b/lib/Checker/RegionStore.cpp @@ -797,23 +797,28 @@ DefinedOrUnknownSVal RegionStoreManager::getSizeInElements(const GRState *state, case MemRegion::VarRegionKind: { const VarRegion* VR = cast<VarRegion>(R); + ASTContext& Ctx = getContext(); // Get the type of the variable. - QualType T = VR->getDesugaredValueType(getContext()); + QualType T = VR->getDesugaredValueType(Ctx); // FIXME: Handle variable-length arrays. if (isa<VariableArrayType>(T)) return UnknownVal(); + CharUnits EleSize = Ctx.getTypeSizeInChars(EleTy); + if (const ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(T)) { // return the size as signed integer. - return ValMgr.makeIntVal(CAT->getSize(), false); + CharUnits RealEleSize = Ctx.getTypeSizeInChars(CAT->getElementType()); + CharUnits::QuantityType EleRatio = RealEleSize / EleSize; + int64_t Length = CAT->getSize().getSExtValue(); + return ValMgr.makeIntVal(Length * EleRatio, false); } // Clients can reinterpret ordinary variables as arrays, possibly of // another type. The width is rounded down to ensure that an access is // entirely within bounds. - CharUnits VarSize = getContext().getTypeSizeInChars(T); - CharUnits EleSize = getContext().getTypeSizeInChars(EleTy); + CharUnits VarSize = Ctx.getTypeSizeInChars(T); return ValMgr.makeIntVal(VarSize / EleSize, false); } } |