index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
GRCoreEngine.cpp
Age
Commit message (
Expand
)
Author
2010-01-25
Split libAnalysis into two libraries: libAnalysis and libChecker.
Ted Kremenek
2009-12-23
For inter-procedural analysis, predecessor node may be in another function.
Zhongxing Xu
2009-12-16
Add (initial?) static analyzer support for handling C++ references.
Ted Kremenek
2009-11-28
lib/Analysis: Remove VISIBILITY_HIDDEN from definitions in anonymous namespace
Kovarththanan Rajaratnam
2009-11-11
Refactor DereferenceChecker to use only the new Checker API instead of
Ted Kremenek
2009-10-07
Change ExplodedNode to have its NodeGroups all BumpPtrAllocated, avoiding mal...
Ted Kremenek
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-08-25
Remove Decl and CFG from ExplodedGraph. This leads to a series small changes.
Zhongxing Xu
2009-08-17
To make the analysis independent on the locally stored liveness and cfg
Zhongxing Xu
2009-08-15
Extend the ProgramPoint to include the context information LocationContext,
Zhongxing Xu
2009-08-06
Last step of template cleanup: merge *BuilderImpl to *Builder.
Zhongxing Xu
2009-08-06
Core analysis engine template cleanup step 2:
Zhongxing Xu
2009-08-06
Core analysis engine template cleanup step 2:
Zhongxing Xu
2009-08-06
As GRState seems general enough, it is time to merge some template classes
Zhongxing Xu
2009-07-22
Refactor 'PostStmt' and 'PreStmt' to subclass a common parent 'StmtPoint'.
Ted Kremenek
2009-07-22
Add support for 'PreStmt' program points to GRCoreEngine and GRStmtNodeBuilder.
Ted Kremenek
2009-07-20
Enhance GRBranchNodeBuilderImpl (part of GRCoreEngine) to understand the case
Ted Kremenek
2009-07-15
Delete extra whitespaces.
Zhongxing Xu
2009-05-09
More hacking on autorelease errors. We now can emit basic errors (disabled for
Ted Kremenek
2009-05-08
Make BlockEntrace program points taggable.
Ted Kremenek
2009-05-07
analyzer: Add ProgramPoint 'PostLValue' just to distinguish (for
Ted Kremenek
2009-05-01
Add a new BFS GRWorkList and make it the default worklist model for
Ted Kremenek
2009-04-11
Implement analyzer support for OSCompareAndSwap. This required pushing "tagged"
Ted Kremenek
2009-02-19
Added a new method to GRStmtNodeBuilder to build nodes using an arbitrary
Ted Kremenek
2008-12-16
Add new GRWorkList class that uses two queues:
Ted Kremenek
2008-11-12
Add (preliminary) transfer function support for ObjCForCollectionStmt. Still...
Ted Kremenek
2008-10-17
Fixed an elusive caching bug in ExplodedGraph construction when a PostStmtKin...
Ted Kremenek
2008-09-16
ProgramPoint now takes the space of two pointers instead of one. This change was
Ted Kremenek
2008-08-26
Remove default value for 'Pred' argument to GRCoreEngineImpl::GenerateNode().
Ted Kremenek
2008-08-13
Fix memory leak found by Sam Bishop: delete WList in the dstor of GRCoreEngin...
Ted Kremenek
2008-07-10
Refactored most of the "Store" piece of ValueState into a Store type. The
Ted Kremenek
2008-06-20
Modified the dead stores checker to...
Ted Kremenek
2008-06-18
Added a new ProgramPoint: PostPurgeDeadSymbols. This new program point disti...
Ted Kremenek
2008-04-29
Major rewrite/refactoring of static analysis engine. We now use
Ted Kremenek
2008-04-18
Fixed more caching bugs related to the one fixed in r49914. Silence
Ted Kremenek
2008-04-18
Fixed bug in GREndPathNodeBuilder: only return a node if it wasn't in the nod...
Ted Kremenek
2008-04-16
Bug fix in GREndPathNodeBuilderImpl: Use the specified state to construct
Ted Kremenek
2008-04-11
Added "GREndPathNodeBuilder", a new node builder that will be used for
Ted Kremenek
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner