diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-02-24 02:23:11 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-02-24 02:23:11 +0000 |
commit | 265a305997c63a28d87ddd370958db083f98bc1a (patch) | |
tree | f079652934da5dd6fa0596d2198ad45079be480e /lib/Analysis/RegionStore.cpp | |
parent | 1c56667febcf8e2d78bd8c1c720eca1888ff1d60 (diff) |
Fix <rdar://problem/6611677>: Add basic transfer function support in the static
analyzer for array subscript expressions involving bases that are vectors. This
solution is probably a hack: it gets the lvalue of the vector instead of an
rvalue like all other types. This should be reviewed (big FIXME in
GRExprEngine).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65366 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RegionStore.cpp')
-rw-r--r-- | lib/Analysis/RegionStore.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/Analysis/RegionStore.cpp b/lib/Analysis/RegionStore.cpp index e2a1d36182..c61094c20c 100644 --- a/lib/Analysis/RegionStore.cpp +++ b/lib/Analysis/RegionStore.cpp @@ -591,9 +591,14 @@ SVal RegionStoreManager::Retrieve(const GRState* St, Loc L, QualType T) { // // Such funny addressing will occur due to layering of regions. - if (const TypedRegion* TR = dyn_cast<TypedRegion>(R)) - if (TR->getRValueType(getContext())->isStructureType()) + if (const TypedRegion* TR = dyn_cast<TypedRegion>(R)) { + QualType T =TR->getRValueType(getContext()); + if (T->isStructureType()) return RetrieveStruct(St, TR); + // FIXME: handle Vector types. + if (T->isVectorType()) + return UnknownVal(); + } RegionBindingsTy B = GetRegionBindings(St->getStore()); RegionBindingsTy::data_type* V = B.lookup(R); @@ -636,6 +641,7 @@ SVal RegionStoreManager::Retrieve(const GRState* St, Loc L, QualType T) { return loc::MemRegionVal(getSelfRegion(0)); } + if (MRMgr.onStack(R) || MRMgr.onHeap(R)) { // All stack variables are considered to have undefined values // upon creation. All heap allocated blocks are considered to |