]> granicus.if.org Git - clang/commitdiff
Move some environment methods from ValueState/ValueStateManager to Environment/Enviro...
authorTed Kremenek <kremenek@apple.com>
Thu, 10 Jul 2008 17:19:18 +0000 (17:19 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 10 Jul 2008 17:19:18 +0000 (17:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53412 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/Environment.h
include/clang/Analysis/PathSensitive/ValueState.h
lib/Analysis/Environment.cpp
lib/Analysis/ValueState.cpp

index 1eb8e72718c0f46bdf9d6b56678daf92fc50d356..ba062866571830ea449700ec21ea74486d7ffa6d 100644 (file)
@@ -22,6 +22,7 @@
 namespace clang {
 
 class EnvironmentManager;
+class BasicValueFactory;
   
 class Environment : public llvm::FoldingSetNode {
 private:
@@ -65,6 +66,9 @@ public:
     return X ? *X : UnknownVal();
   }
   
+  RVal GetRVal(Expr* Ex, BasicValueFactory& BasicVals) const;
+  RVal GetBlkExprRVal(Expr* Ex, BasicValueFactory& BasicVals) const; 
+  
   /// Profile - Profile the contents of an Environment object for use
   ///  in a FoldingSet.
   static void Profile(llvm::FoldingSetNodeID& ID, const Environment* E) {
@@ -76,7 +80,12 @@ public:
   ///  in a FoldingSet.
   void Profile(llvm::FoldingSetNodeID& ID) const {
     Profile(ID, this);
-  }  
+  }
+  
+  bool operator==(const Environment& RHS) const {
+    return SubExprBindings == RHS.SubExprBindings &&
+           BlkExprBindings == RHS.BlkExprBindings;
+  }
 };
   
 class EnvironmentManager {
@@ -120,6 +129,9 @@ public:
   Environment getInitialEnvironment() {
     return Environment(F.GetEmptyMap(), F.GetEmptyMap());
   }
+  
+  Environment SetRVal(const Environment& Env, Expr* E, RVal V,
+                      bool isBlkExpr, bool Invalidate);
 };
   
 } // end clang namespace
index ce25dd95bc2e448567e8e0cd08207639e9319719..ab9b4a8b324ae02034f0a13c5dd3744c6bc7a0f3 100644 (file)
@@ -235,17 +235,37 @@ public:
     NewSt.Env = EnvMgr.RemoveSubExprBindings(NewSt.Env);
     return getPersistentState(NewSt);    
   }
+
+  // Methods that query & manipulate the Environment.
   
-  ValueState* SetRVal(ValueState* St, Expr* E, RVal V, bool isBlkExpr,
-                      bool Invalidate);
+  RVal GetRVal(ValueState* St, Expr* Ex) {
+    return St->getEnvironment().GetRVal(Ex, BasicVals);
+  }
   
-  ValueState* SetRVal(ValueState* St, LVal LV, RVal V);
+  RVal GetBlkExprRVal(ValueState* St, Expr* Ex) {
+    return St->getEnvironment().GetBlkExprRVal(Ex, BasicVals);
+  }
+  
+  ValueState* SetRVal(ValueState* St, Expr* Ex, RVal V, bool isBlkExpr,
+                      bool Invalidate) {
+    
+    const Environment& OldEnv = St->getEnvironment();
+    Environment NewEnv = EnvMgr.SetRVal(OldEnv, Ex, V, isBlkExpr, Invalidate);
+    
+    if (NewEnv == OldEnv)
+      return St;
+    
+    ValueState NewSt = *St;
+    NewSt.Env = NewEnv;
+    return getPersistentState(NewSt);
+  }
+
+  // Methods that query & manipulate the Store.
 
-  RVal GetRVal(ValueState* St, Expr* E);
   RVal GetRVal(ValueState* St, LVal LV, QualType T = QualType());    
   
-  RVal GetBlkExprRVal(ValueState* St, Expr* Ex);
-  
+  ValueState* SetRVal(ValueState* St, LVal LV, RVal V);
+
   void BindVar(ValueState& StImpl, VarDecl* D, RVal V);
   
   void Unbind(ValueState& StImpl, LVal LV);
index 86fd12c2a5a259bc1e49bdf6885caa6e41731d9e..dd5caef7f085b9d4a79496959f1485665be6ddac 100644 (file)
 
 using namespace clang;
 
-//===----------------------------------------------------------------------===//
-// Environment.
-//===----------------------------------------------------------------------===//
-
+RVal Environment::GetRVal(Expr* E, BasicValueFactory& BasicVals) const {
+  
+  for (;;) {
+    
+    switch (E->getStmtClass()) {
+        
+      case Stmt::AddrLabelExprClass:        
+        return LVal::MakeVal(cast<AddrLabelExpr>(E));
+        
+        // ParenExprs are no-ops.
+        
+      case Stmt::ParenExprClass:        
+        E = cast<ParenExpr>(E)->getSubExpr();
+        continue;
+        
+      case Stmt::CharacterLiteralClass: {
+        CharacterLiteral* C = cast<CharacterLiteral>(E);
+        return NonLVal::MakeVal(BasicVals, C->getValue(), C->getType());
+      }
+        
+      case Stmt::IntegerLiteralClass: {
+        return NonLVal::MakeVal(BasicVals, cast<IntegerLiteral>(E));
+      }
+        
+      case Stmt::StringLiteralClass:
+        return LVal::MakeVal(cast<StringLiteral>(E));
+        
+        // Casts where the source and target type are the same
+        // are no-ops.  We blast through these to get the descendant
+        // subexpression that has a value.
+        
+      case Stmt::ImplicitCastExprClass: {
+        ImplicitCastExpr* C = cast<ImplicitCastExpr>(E);
+        QualType CT = C->getType();
+        
+        if (CT->isVoidType())
+          return UnknownVal();
+        
+        QualType ST = C->getSubExpr()->getType();
+        
+        break;
+      }
+        
+      case Stmt::CastExprClass: {
+        CastExpr* C = cast<CastExpr>(E);
+        QualType CT = C->getType();
+        QualType ST = C->getSubExpr()->getType();
+        
+        if (CT->isVoidType())
+          return UnknownVal();
+        
+        break;
+      }
+        
+        // Handle all other Expr* using a lookup.
+        
+      default:
+        break;
+    };
+    
+    break;
+  }
+  
+  return LookupExpr(E);
+}
 
+RVal Environment::GetBlkExprRVal(Expr* E, BasicValueFactory& BasicVals) const {
+  
+  E = E->IgnoreParens();
+  
+  switch (E->getStmtClass()) {
+    case Stmt::CharacterLiteralClass: {
+      CharacterLiteral* C = cast<CharacterLiteral>(E);
+      return NonLVal::MakeVal(BasicVals, C->getValue(), C->getType());
+    }
+      
+    case Stmt::IntegerLiteralClass: {
+      return NonLVal::MakeVal(BasicVals, cast<IntegerLiteral>(E));
+    }
+      
+    default:
+      return LookupBlkExpr(E);
+  }
+}
 
+Environment EnvironmentManager::SetRVal(const Environment& Env, Expr* E, RVal V,
+                                        bool isBlkExpr, bool Invalidate) {  
+  assert (E);
+  
+  if (V.isUnknown()) {    
+    if (Invalidate)
+      return isBlkExpr ? RemoveBlkExpr(Env, E) : RemoveSubExpr(Env, E);
+    else
+      return Env;
+  }
 
-
-//===----------------------------------------------------------------------===//
-// Environment Manager.
-//===----------------------------------------------------------------------===//
\ No newline at end of file
+  return isBlkExpr ? AddBlkExpr(Env, E, V) : AddSubExpr(Env, E, V);
+}
index 23c93ae1d6974213ab57e1eefd307b2c8a8f5ac4..cc77edc82687536093cfe3576fb2debf219d76a0 100644 (file)
@@ -258,125 +258,6 @@ ValueState* ValueStateManager::AddEQ(ValueState* St, SymbolID sym,
   return getPersistentState(NewSt);
 }
 
-// FIXME: This should all go into the environment.
-RVal ValueStateManager::GetRVal(ValueState* St, Expr* E) {
-
-  for (;;) {
-    
-    switch (E->getStmtClass()) {
-
-      case Stmt::AddrLabelExprClass:        
-        return LVal::MakeVal(cast<AddrLabelExpr>(E));
-        
-        // ParenExprs are no-ops.
-        
-      case Stmt::ParenExprClass:        
-        E = cast<ParenExpr>(E)->getSubExpr();
-        continue;
-        
-      case Stmt::CharacterLiteralClass: {
-        CharacterLiteral* C = cast<CharacterLiteral>(E);
-        return NonLVal::MakeVal(BasicVals, C->getValue(), C->getType());
-      }
-        
-      case Stmt::IntegerLiteralClass: {
-        return NonLVal::MakeVal(BasicVals, cast<IntegerLiteral>(E));
-      }
-        
-      case Stmt::StringLiteralClass:
-        return LVal::MakeVal(cast<StringLiteral>(E));
-
-        // Casts where the source and target type are the same
-        // are no-ops.  We blast through these to get the descendant
-        // subexpression that has a value.
-        
-      case Stmt::ImplicitCastExprClass: {
-        ImplicitCastExpr* C = cast<ImplicitCastExpr>(E);
-        QualType CT = C->getType();
-        
-        if (CT->isVoidType())
-          return UnknownVal();
-          
-        QualType ST = C->getSubExpr()->getType();
-
-        break;
-      }
-        
-      case Stmt::CastExprClass: {
-        CastExpr* C = cast<CastExpr>(E);
-        QualType CT = C->getType();
-        QualType ST = C->getSubExpr()->getType();
-        
-        if (CT->isVoidType())
-          return UnknownVal();
-        
-        break;
-      }
-        
-        // Handle all other Expr* using a lookup.
-        
-      default:
-        break;
-    };
-    
-    break;
-  }
-  
-  return St->LookupExpr(E);
-}
-
-RVal ValueStateManager::GetBlkExprRVal(ValueState* St, Expr* E) {
-  
-  E = E->IgnoreParens();
-  
-  switch (E->getStmtClass()) {
-    case Stmt::CharacterLiteralClass: {
-      CharacterLiteral* C = cast<CharacterLiteral>(E);
-      return NonLVal::MakeVal(BasicVals, C->getValue(), C->getType());
-    }
-      
-    case Stmt::IntegerLiteralClass: {
-      return NonLVal::MakeVal(BasicVals, cast<IntegerLiteral>(E));
-    }
-      
-    default:
-      return St->getEnvironment().LookupBlkExpr(E);
-  }
-}
-
-ValueState*
-ValueStateManager::SetRVal(ValueState* St, Expr* E, RVal V,
-                           bool isBlkExpr, bool Invalidate) {
-  
-  assert (E);
-
-  if (V.isUnknown()) {
-    
-    if (Invalidate) {
-      
-      ValueState NewSt = *St;
-      
-      if (isBlkExpr)
-        NewSt.Env = EnvMgr.RemoveBlkExpr(NewSt.Env, E);
-      else
-        NewSt.Env = EnvMgr.RemoveSubExpr(NewSt.Env, E);
-      
-      return getPersistentState(NewSt);
-    }
-  
-    return St;
-  }
-  
-  ValueState NewSt = *St;
-  
-  if (isBlkExpr)
-    NewSt.Env = EnvMgr.AddBlkExpr(NewSt.Env, E, V);
-  else
-    NewSt.Env = EnvMgr.AddSubExpr(NewSt.Env, E, V);
-
-  return getPersistentState(NewSt);
-}
-
 
 ValueState* ValueStateManager::SetRVal(ValueState* St, LVal LV, RVal V) {