.. |
AggExprVisitor.cpp
|
Begin reworking static analyzer support for C++ method calls. The current logic was divorced
|
2011-03-30 17:41:19 +00:00 |
AnalysisManager.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
BasicConstraintManager.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
BasicStore.cpp
|
Don't add a symbolic region for 'this' if the member function is static.
|
2011-03-26 14:30:44 +00:00 |
BasicValueFactory.cpp
|
#include Store.h into BasicValueFactory.cpp to provide definitions of StoreRef constructor.
|
2011-03-08 23:39:37 +00:00 |
BlockCounter.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
BugReporter.cpp
|
In preparation for fixing PR 6884, rework CFGElement to have getAs<> return pointers instead of fresh CFGElements.
|
2011-03-01 03:15:10 +00:00 |
BugReporterVisitors.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
CFRefCount.cpp
|
Begin reworking static analyzer support for C++ method calls. The current logic was divorced
|
2011-03-30 17:41:19 +00:00 |
CMakeLists.txt
|
Sort
|
2011-03-14 21:20:46 +00:00 |
CXXExprEngine.cpp
|
Teach static analyzer about the basics of handling new[]. We still don't simulate constructors, but at least the analyzer doesn't think the return value is uninitialized.
|
2011-03-31 04:04:48 +00:00 |
CheckerContext.cpp
|
[analyzer] Remove Checker V1.
|
2011-03-01 01:16:08 +00:00 |
CheckerHelpers.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
CheckerManager.cpp
|
[analyzer] Run the ExprEngine depending on the CheckerManager having path-sensitive checkers.
|
2011-02-28 19:49:17 +00:00 |
CoreEngine.cpp
|
static analyzer: Add a new ProgramPoint PostCondition to represent the post position of a branch condition, and a new generateNode method to BranchNodeBuilder using PostCondition ProgramPoint. This method generates a new ExplodedNode but not a new block edge.
|
2011-04-03 04:34:49 +00:00 |
Environment.cpp
|
Fix tiny error in CFG construction for BinaryConditionalOperators, making sure the branch always has two successors. Also teach Environment::getSVal() about OpaqueValueExprs.
|
2011-02-24 03:09:15 +00:00 |
ExplodedGraph.cpp
|
Change 'StoreRef' back to 'Store' in GRState, shrinking the size of GRState back by one pointer.
|
2011-02-19 03:56:19 +00:00 |
ExprEngine.cpp
|
Teach IdempotentOperationsChecker about paths aborted because ExprEngine didn't know how to handle a specific Expr type.
|
2011-04-02 02:56:23 +00:00 |
FlatStore.cpp
|
[analyzer] ExprEngine should not depend on checkers for not crashing.
|
2011-02-28 01:27:57 +00:00 |
GRState.cpp
|
Change 'StoreRef' back to 'Store' in GRState, shrinking the size of GRState back by one pointer.
|
2011-02-19 03:56:19 +00:00 |
HTMLDiagnostics.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
Makefile
|
[analyzer] Move the files in lib/StaticAnalyzer to lib/StaticAnalyzer/Core.
|
2011-02-08 22:30:36 +00:00 |
MemRegion.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
ObjCMessage.cpp
|
Begin reworking static analyzer support for C++ method calls. The current logic was divorced
|
2011-03-30 17:41:19 +00:00 |
PathDiagnostic.cpp
|
Change the representation of GNU ?: expressions to use a different expression
|
2011-02-17 10:25:35 +00:00 |
PlistDiagnostics.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
RangeConstraintManager.cpp
|
[analyzer] Remove ManagerRegistry which is not used. In the future we may load analyzer plugins dynamically but
|
2011-02-14 18:13:17 +00:00 |
RegionStore.cpp
|
Fix RegionStore bug when doing a field load whose parent is also a field assigned a LazyCompoundValue. Fixes <rdar://problem/9163742> and PR 9522.
|
2011-04-03 04:09:15 +00:00 |
SValBuilder.cpp
|
Improves the coding style in SValBuilder. This patch:
|
2011-03-01 00:45:32 +00:00 |
SVals.cpp
|
[analyzer] Remove SVal::getAsVarDecl() and reason about MemRegions, not Decls. Suggestion by Ted!
|
2011-03-01 01:47:48 +00:00 |
SimpleConstraintManager.cpp
|
[analyzer] Remove Checker V1.
|
2011-03-01 01:16:08 +00:00 |
SimpleConstraintManager.h
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |
SimpleSValBuilder.cpp
|
Improves the coding style in SValBuilder. This patch:
|
2011-03-01 00:45:32 +00:00 |
Store.cpp
|
Improves the coding style in SValBuilder. This patch:
|
2011-03-01 00:45:32 +00:00 |
SymbolManager.cpp
|
Makes most methods in SVals.h conform to the naming guide. Reviewed
|
2011-02-16 21:13:32 +00:00 |
TextPathDiagnostics.cpp
|
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
|
2011-02-10 01:03:03 +00:00 |