index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
include
/
clang
/
Analysis
/
PathSensitive
Commit message (
Expand
)
Author
Age
Files
Lines
*
Split libAnalysis into two libraries: libAnalysis and libChecker.
Ted Kremenek
2010-01-25
29
-6823
/
+0
*
Process cast according to the cast kind. Prepare for more specific cast
Zhongxing Xu
2010-01-22
1
-2
/
+2
*
Speed up compilation by avoiding generating exceptional edges from
Mike Stump
2010-01-21
1
-2
/
+9
*
Fix a serious bug: Tmp3 is the wrong destination set. We should create a new
Zhongxing Xu
2010-01-19
1
-0
/
+5
*
Add support for computing size in elements for symbolic regions obtained from
Zhongxing Xu
2010-01-18
1
-1
/
+2
*
Convert a few more uses of std::string& to llvm::StringRef.
Ted Kremenek
2010-01-15
1
-3
/
+3
*
Avoid use of deprecated functions (CStrInCStrNoCase and StringsEqualNoCase).
Benjamin Kramer
2010-01-11
1
-1
/
+0
*
Switch RegionStore over to using <BaseRegion+raw offset> to store
Ted Kremenek
2010-01-11
2
-2
/
+5
*
When binding an rvalue to a reference, create a temporary object. Use
Zhongxing Xu
2010-01-09
2
-7
/
+12
*
Make static analysis support for C++ 'this' expression context-sensitive. Es...
Ted Kremenek
2010-01-05
2
-12
/
+41
*
Remove references to 'Checker' and 'GRTransferFuncs' from
Ted Kremenek
2010-01-05
4
-48
/
+29
*
Let constraint manager inform checkers that some assumption logic has happend.
Zhongxing Xu
2009-12-31
3
-3
/
+27
*
As Ted suggested, record the callsite information with the StackFrameContext.
Zhongxing Xu
2009-12-24
2
-7
/
+25
*
Inter-procedural analysis: now we can return from the callee.
Zhongxing Xu
2009-12-24
1
-1
/
+5
*
Teach GRExprEngine to handle the initialization of the condition variable of ...
Ted Kremenek
2009-12-24
1
-4
/
+4
*
Migrate the call inliner to the Checker interface.
Zhongxing Xu
2009-12-23
2
-4
/
+5
*
Add CFG support for the condition variable that can appear in IfStmts in C++ ...
Ted Kremenek
2009-12-23
1
-0
/
+5
*
Add assertion to check for valid source ranges.
Ted Kremenek
2009-12-23
1
-1
/
+4
*
Add basic support for analyzing CastExprs as lvalues.
Ted Kremenek
2009-12-23
1
-1
/
+1
*
Add transfer functions support for visiting an Objective-C message expression...
Ted Kremenek
2009-12-22
2
-5
/
+8
*
Remove ';' after method definition. Noticed by clang++, which one would think
Daniel Dunbar
2009-12-19
4
-4
/
+4
*
Enhance GRExprEngine::VisitCallExpr() to be used in an lvalue context. Uncov...
Ted Kremenek
2009-12-18
1
-1
/
+1
*
Convert GRExprEngine::VisitCallExpr() to use a worklist instead of recursion ...
Ted Kremenek
2009-12-17
1
-4
/
+0
*
Completely remove ObjCObjectRegion (tests pass this time).
Ted Kremenek
2009-12-16
1
-33
/
+0
*
Add a new kind of region: CXXObjectRegion. Currently it has only one
Zhongxing Xu
2009-12-16
3
-10
/
+48
*
remove dead code.
Zhongxing Xu
2009-12-16
1
-3
/
+0
*
Teach CheckerVisitor about CXXOperatorCallExpr.
Ted Kremenek
2009-12-16
2
-19
/
+28
*
Make GRSubEngine.h standalone
Douglas Gregor
2009-12-16
1
-0
/
+1
*
Add (initial?) static analyzer support for handling C++ references.
Ted Kremenek
2009-12-16
4
-11
/
+15
*
Remove ValueManager::getRegionValueSymbolValOrUnknown(). It was just extra v...
Ted Kremenek
2009-12-15
1
-7
/
+0
*
Remove displayProgress parameter.
Zhongxing Xu
2009-12-15
1
-2
/
+1
*
Fix: <rdar://problem/7468209> SymbolManager::isLive() should not crash on cap...
Ted Kremenek
2009-12-14
2
-2
/
+8
*
Add initial support for realloc() in MallocChecker.
Zhongxing Xu
2009-12-12
1
-0
/
+4
*
Enhance understanding of VarRegions referenced by a block whose declarations ...
Ted Kremenek
2009-12-11
2
-5
/
+25
*
Refactor OSAtomic evaluation logic into OSAtomicChecker.
Zhongxing Xu
2009-12-09
1
-2
/
+22
*
Make the BugType.h header self-contained so Daniel will stop bugging me ;)
Anders Carlsson
2009-12-08
1
-0
/
+1
*
Add analysis support for blocks. This includes a few key changes:
Ted Kremenek
2009-12-07
5
-77
/
+198
*
Add EvalCallExpr interface to checker, and migrate the no-return function
Zhongxing Xu
2009-12-07
2
-0
/
+16
*
Replace SymbolReaper::isLive(VarDecl) with SymbolReaper::isLive(VarRegion).
Ted Kremenek
2009-12-04
1
-6
/
+5
*
Rename instance variable to avoid name conflict with parameters, and modify a...
Ted Kremenek
2009-12-04
1
-5
/
+4
*
Revert r90546.
Ted Kremenek
2009-12-04
1
-1
/
+2
*
the assertion says state is not NULL. When state is not NULL, getState()
Zhongxing Xu
2009-12-04
1
-2
/
+1
*
Allow BlockInvocationContext to wrap either a BlockDecl* or a BlockDataRegion...
Ted Kremenek
2009-12-04
2
-5
/
+24
*
Refactor LocationContext creation logic into a single member template.
Ted Kremenek
2009-12-04
2
-26
/
+36
*
Refactor FoldingSet profiling code for LocationContexts, and add a new BlockI...
Ted Kremenek
2009-12-04
1
-12
/
+40
*
constify MemRegion* returned by MemRegionManager::getXXXRegion() methods.
Ted Kremenek
2009-12-04
1
-25
/
+26
*
More template-logic for MemRegion construction out of MemRegion.h and into Me...
Ted Kremenek
2009-12-04
1
-157
/
+6
*
Make BlockDataRegion::referenced_vars_iterator an actual class that enforces ...
Ted Kremenek
2009-12-03
1
-1
/
+25
*
Add batch version of 'StoreManager::InvalidateRegion()' for invalidating mult...
Ted Kremenek
2009-12-03
1
-0
/
+6
*
Hard bifurcate the state into nil receiver and non-nil receiver, so that
Zhongxing Xu
2009-12-02
3
-19
/
+25
[next]