]> granicus.if.org Git - clang/commitdiff
StoreManagers: Use 'hasGlobalsStorage()' and 'hasParametersStorage()' instead of
authorTed Kremenek <kremenek@apple.com>
Thu, 2 Jul 2009 18:25:09 +0000 (18:25 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 2 Jul 2009 18:25:09 +0000 (18:25 +0000)
directly consulting if a VarDecl is an implicit or actual parameter, a global,
etc.

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

include/clang/Analysis/PathSensitive/MemRegion.h
lib/Analysis/BasicStore.cpp
lib/Analysis/MemRegion.cpp
lib/Analysis/RegionStore.cpp

index 432702c08936b952e3a3fd5677918766d518016e..dd850dad9d9e759712c70c1e220fe7697805cfc2 100644 (file)
@@ -72,6 +72,12 @@ public:
     
   bool hasStackStorage() const;
   
+  bool hasParametersStorage() const;
+  
+  bool hasGlobalsStorage() const;
+  
+  bool hasGlobalsOrParametersStorage() const;
+  
   bool hasHeapStorage() const;
   
   bool hasHeapOrStackStorage() const;
index d96ef5b948c7ec630df6ce61b4dc043a5d8c897d..ccaffc3627d3057cb912c2f1051291cc8a821679 100644 (file)
@@ -528,10 +528,9 @@ Store BasicStoreManager::getInitialStore() {
       // Initialize globals and parameters to symbolic values.
       // Initialize local variables to undefined.
       const MemRegion *R = ValMgr.getRegionManager().getVarRegion(VD);
-      SVal X = (VD->hasGlobalStorage() || isa<ParmVarDecl>(VD) ||
-                isa<ImplicitParamDecl>(VD))
-            ? ValMgr.getRegionValueSymbolVal(R)
-            : UndefinedVal();
+      SVal X = R->hasGlobalsOrParametersStorage()
+               ? ValMgr.getRegionValueSymbolVal(R)
+               : UndefinedVal();
 
       St = BindInternal(St, ValMgr.makeLoc(R), X);
     }
index 9314b1ec77a9decdf6534d07bac2f968db37c1d2..52e26238d9574d8804655d18d224750087ad55e3 100644 (file)
@@ -359,7 +359,23 @@ bool MemRegion::hasHeapOrStackStorage() const {
       || MS == Mgr->getStackArgumentsRegion();
   }
   return false;
-}  
+}
+
+bool MemRegion::hasGlobalsStorage() const {
+  if (const MemSpaceRegion *MS = getMemorySpace())
+    return MS == getMemRegionManager()->getGlobalsRegion();
+
+  return false;
+}
+
+bool MemRegion::hasGlobalsOrParametersStorage() const {
+  if (const MemSpaceRegion *MS = getMemorySpace()) {
+    MemRegionManager *Mgr = getMemRegionManager();
+    return MS == Mgr->getGlobalsRegion()
+    || MS == Mgr->getStackArgumentsRegion();
+  }
+  return false;
+}
 
 //===----------------------------------------------------------------------===//
 // View handling.
index dc9a2be6282e7ce7722f20b718884d4023f7c654..9c76265fa392334269720124319fb4ff39d809ba 100644 (file)
@@ -882,8 +882,7 @@ SVal RegionStoreManager::Retrieve(const GRState *state, Loc L, QualType T) {
     if (VD == SelfDecl)
       return loc::MemRegionVal(getSelfRegion(0));
     
-    if (isa<ParmVarDecl>(VD) || isa<ImplicitParamDecl>(VD) ||
-        VD->hasGlobalStorage()) {
+    if (VR->hasGlobalsOrParametersStorage()) {
       QualType VTy = VD->getType();
       if (Loc::IsLocType(VTy) || VTy->isIntegerType())
         return ValMgr.getRegionValueSymbolVal(VR);