]> granicus.if.org Git - clang/commitdiff
Fix bug in BasicStore::getLValueElement where if the base of an array subscript expre...
authorTed Kremenek <kremenek@apple.com>
Tue, 27 Jan 2009 18:29:03 +0000 (18:29 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 27 Jan 2009 18:29:03 +0000 (18:29 +0000)
This fixes PR 3422.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63110 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/BasicStore.cpp
test/Analysis/misc-ps.m

index a36a239e0de225f7e296b266e8ffa110a28d9263..2feea594b8aab636ad73785131ec3a7e97c8d3a8 100644 (file)
@@ -203,7 +203,6 @@ SVal BasicStoreManager::getLValueField(const GRState* St, SVal Base,
 SVal BasicStoreManager::getLValueElement(const GRState* St, SVal Base,
                                          SVal Offset) {
 
-  
   if (Base.isUnknownOrUndef())
     return Base;
   
@@ -233,6 +232,17 @@ SVal BasicStoreManager::getLValueElement(const GRState* St, SVal Base,
       
     case loc::MemRegionKind: {
       const MemRegion *R = cast<loc::MemRegionVal>(BaseL).getRegion();
+      
+      if (isa<ElementRegion>(R)) {
+        // Basic example:
+        //   char buf[100];
+        //   char *q = &buf[1];  // p points to ElementRegion(buf,Unknown)
+        //   &q[10]
+        assert(cast<ElementRegion>(R)->getIndex().isUnknown());
+        return Base;
+      }
+      
+      
       if (const TypedRegion *TR = dyn_cast<TypedRegion>(R)) {
         BaseR = TR;
         break;
@@ -244,7 +254,7 @@ SVal BasicStoreManager::getLValueElement(const GRState* St, SVal Base,
       
       break;
     }
-      
+
     case loc::ConcreteIntKind:
       // While these seem funny, this can happen through casts.
       // FIXME: What we should return is the field offset.  For example,
index f221f8b989f1b32fee4d1c08e0d153fb80efba2e..4e7f0ad5b32d8989e280035ab0ceb5423583f2d5 100644 (file)
@@ -100,3 +100,11 @@ void handle_sizeof_void(unsigned flag) {
   *p = 1; // no-warning
 }
 
+// PR 3422
+void pr3422_helper(char *p);
+void pr3422() {
+  char buf[100];
+  char *q = &buf[10];
+  pr3422_helper(&q[1]);
+}
+