diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-07-08 21:46:56 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-07-08 21:46:56 +0000 |
commit | 8133a26c166be89fb4f0a339db1e2fe923c51a70 (patch) | |
tree | 0f4fb72c0aa2c2cc54c420db79f21115f8091f72 /lib/Analysis/Environment.cpp | |
parent | f794675b3049f088051b25c6b63fab05a3ebb302 (diff) |
Initial work on splitting the ValueState into an Environment, Store, and
Constraints. These concepts are already present in the current ValueState, but
the implementation is monolothic. Making ValueState more modular opens up new
design choices for customizing the analysis engine.
In the context of the analysis engine, the "Environment" is the binding between
Expr* (expressions) and intermediate symbolic values (RValues).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/Environment.cpp')
-rw-r--r-- | lib/Analysis/Environment.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/Analysis/Environment.cpp b/lib/Analysis/Environment.cpp new file mode 100644 index 0000000000..86fd12c2a5 --- /dev/null +++ b/lib/Analysis/Environment.cpp @@ -0,0 +1,29 @@ +//== Environment.cpp - Map from Expr* to Locations/Values -------*- C++ -*--==// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defined the Environment and EnvironmentManager classes. +// +//===----------------------------------------------------------------------===// + +#include "clang/Analysis/PathSensitive/Environment.h" +#include "llvm/ADT/ImmutableMap.h" + +using namespace clang; + +//===----------------------------------------------------------------------===// +// Environment. +//===----------------------------------------------------------------------===// + + + + + +//===----------------------------------------------------------------------===// +// Environment Manager. +//===----------------------------------------------------------------------===//
\ No newline at end of file |