index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Analysis
/
LiveVariables.cpp
Age
Commit message (
Expand
)
Author
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner
2008-03-13
The LiveVariables analysis no longer requires a FunctionDecl&; this allows it
Ted Kremenek
2008-03-05
Fixed bogus assumption mistakenly introduced in r47955.
Ted Kremenek
2008-03-05
Minor cleanups (mainly indentation).
Ted Kremenek
2008-02-25
Minor bug fix in LiveVariables: don't "kill" decls referenced by a DeclStmt
Ted Kremenek
2008-02-22
Fixed horrid bug in LiveVariables analysis where we were only merging at
Ted Kremenek
2008-02-22
Bug fix in liveness: Only compute liveness information for VarDecls.
Ted Kremenek
2008-02-07
Fixed bug in LiveVariables analysis where Block-level exprs appearing
Ted Kremenek
2008-01-29
Modified LiveVariables to perform all of its base initialization in the ctor,
Ted Kremenek
2008-01-18
Fixed bug in 'LiveVariables' analysis where we incorrectly marked a variable
Ted Kremenek
2008-01-17
Modified the notion of "Block-level expressions" in CFGs to include Stmt*. This
Ted Kremenek
2008-01-17
Added support to dataflow solver to (when requested) also record dataflow
Ted Kremenek
2008-01-17
Removed FindDeclRef, and used Expr::IgnoreParens instead (code refactoring).
Ted Kremenek
2008-01-11
Renamed ProgramEdge to ProgramPoint and changed subclasses of ProgramEdge
Ted Kremenek
2008-01-08
Added VISIBILITY_HIDDEN to classes/structs in anonymous namespaces.
Ted Kremenek
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-21
Directory restructing of Analysis files.
Ted Kremenek
2007-12-13
Fixed bug in live-variable analysis and uninitialized-values analysis where
Ted Kremenek
2007-11-20
Updated CFGStmtVisitor and CFGRecStmtVisitor to have a notion of
Ted Kremenek
2007-11-19
Fixed bug where LiveVariables was not properly propagating updates to liveness
Ted Kremenek
2007-10-07
move IdentifierTable.h from liblex to libbasic.
Chris Lattner
2007-10-01
Migrated LiveVariables and UninitializedVariables to now use the
Ted Kremenek
2007-09-28
Fixed bug where assignments to variables wrapped in parentheses would not
Ted Kremenek
2007-09-28
Significant cleanups and bug-fixes to LiveVariables. Uses new refactored
Ted Kremenek
2007-09-25
Moved "DataflowSolver.h" to the "include/" subtree. Adjusted client
Ted Kremenek
2007-09-25
Further refactored DataflowSolver. Now most code for the solver is shared
Ted Kremenek
2007-09-20
Updated header file inlcude to new location of
Ted Kremenek
2007-09-13
Move Decl::NextDeclarator (w/ setters/getters) down to ScopedDecl/FieldDecl.
Steve Naroff
2007-09-12
Minor space tightening.
Ted Kremenek
2007-09-12
Fixed recursion bug: should call Visit on child instead of VisitStmt.
Ted Kremenek
2007-09-12
Migrated LiveVariables to use the new DataflowStmtVisitor interface. The code
Ted Kremenek
2007-09-11
get rid of ugly "warning: no newline at end of file"
Gabor Greif
2007-09-10
Fixed LiveVariables to no longer track the liveness of function pointers
Ted Kremenek
2007-09-10
Renaming of the LiveVariablesAuditor interface. Changed "Auditor" and
Ted Kremenek
2007-09-06
Added more checking in "dead stores" for values that are initialized
Ted Kremenek
2007-09-06
Minor bug fixes to corner cases where LiveVariables would crash on some CFGs
Ted Kremenek
2007-09-06
Added "Dead Stores", a flow-sensitive checker that checks for stores
Ted Kremenek
2007-09-06
LiveVariables:
Ted Kremenek
2007-09-06
Added an early implementation of Live-Variables analysis built on
Ted Kremenek