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
/
lib
/
Analysis
Commit message (
Expand
)
Author
Age
Files
Lines
*
Tweak handling of BlockDataRegions in RegionStoreManager::RemoveDeadBindings(...
Ted Kremenek
2009-12-03
1
-4
/
+6
*
Add security syntactic checker for mktemp.
Zhongxing Xu
2009-12-03
1
-1
/
+41
*
Update CMake for CallGraph.cpp move.
Daniel Dunbar
2009-12-03
1
-1
/
+0
*
Add value invalidation logic for block-captured variables. Conceptually invo...
Ted Kremenek
2009-12-03
2
-2
/
+23
*
Make BlockDataRegion::referenced_vars_iterator an actual class that enforces ...
Ted Kremenek
2009-12-03
1
-2
/
+4
*
Fix layering violation by moving Analysis/CallGraph to Index
Daniel Dunbar
2009-12-03
1
-150
/
+0
*
Add batch version of 'StoreManager::InvalidateRegion()' for invalidating mult...
Ted Kremenek
2009-12-03
3
-28
/
+64
*
Add a heuristic to the dead stores checker to prune dead stores for variables...
Ted Kremenek
2009-12-03
1
-1
/
+2
*
Hard bifurcate the state into nil receiver and non-nil receiver, so that
Zhongxing Xu
2009-12-02
3
-83
/
+73
*
Provide the correct vector size for referenced variables.
Ted Kremenek
2009-12-01
1
-1
/
+1
*
Fix early-return logic in scanReachableSymbols() to match the rest of the rec...
Ted Kremenek
2009-12-01
1
-6
/
+6
*
Eliminate another VISIBILITY_HIDDEN
Douglas Gregor
2009-11-30
1
-4
/
+1
*
Adapt to the DOTGraphTraits changes in LLVM.
Tobias Grosser
2009-11-30
3
-4
/
+11
*
Port BugReporter and BugType to StringRef.
Benjamin Kramer
2009-11-29
8
-23
/
+20
*
Kill some unnecessary calls to c_str().
Benjamin Kramer
2009-11-29
3
-5
/
+4
*
Fix null dereference in UndefResultChecker identified by running the analyzer...
Ted Kremenek
2009-11-29
1
-2
/
+3
*
Cleanup includes and forward decls.
Benjamin Kramer
2009-11-28
2
-0
/
+2
*
Remove unneeded includes.
Benjamin Kramer
2009-11-28
1
-10
/
+2
*
lib/Analysis: Remove VISIBILITY_HIDDEN from definitions in anonymous namespace
Kovarththanan Rajaratnam
2009-11-28
41
-119
/
+104
*
Improve diagnostics in ReturnStackAddressChecker for returning a stack-alloca...
Ted Kremenek
2009-11-26
1
-0
/
+8
*
Add a PostVisitBlockExpr() method to RetainReleaseChecker to query for
Ted Kremenek
2009-11-26
1
-1
/
+27
*
Teach RegionStoreManager::RemoveDeadBindings() about BlockDataRegions. Any V...
Ted Kremenek
2009-11-26
1
-4
/
+17
*
Add iterators to BlockDataRegion that allow clients to iterate over the VarRe...
Ted Kremenek
2009-11-26
1
-1
/
+61
*
Added batch versions of GRState::scanReachableSymbols() so that clients can s...
Ted Kremenek
2009-11-26
1
-0
/
+21
*
Enhance LiveVariables to understand that blocks can extend the liveness of a ...
Ted Kremenek
2009-11-26
2
-15
/
+92
*
Add missing case in switch statement.
Ted Kremenek
2009-11-25
1
-1
/
+2
*
Refine MemRegions for blocks. Add a new region called
Ted Kremenek
2009-11-25
5
-7
/
+43
*
Remove recently added FIXME. The appropriate FIXME is already in MemRegionMa...
Ted Kremenek
2009-11-25
1
-2
/
+0
*
Add FIXME.
Ted Kremenek
2009-11-25
1
-0
/
+2
*
Add post-visit Checker support in GRExprEngine for BlockExpr.
Ted Kremenek
2009-11-25
1
-1
/
+7
*
Add a new RetainReleaseChecker class (that subclasses CheckerVisitor) to exte...
Ted Kremenek
2009-11-25
1
-0
/
+22
*
Move RegisterChecks() to the end of the file. No functionality change.
Ted Kremenek
2009-11-25
1
-57
/
+59
*
Make RegisterInternalChecks() part of GRExprEngine's private implementation b...
Ted Kremenek
2009-11-25
1
-30
/
+32
*
Register internal checks with GRExprEngine when it is constructed, not manual...
Ted Kremenek
2009-11-25
1
-1
/
+5
*
When dispatching to Checker objects in GRExprEngine::CheckerVisit(),
Ted Kremenek
2009-11-25
1
-4
/
+12
*
Add really basic support for blocks in the retain/release checker. For now, ...
Ted Kremenek
2009-11-25
1
-3
/
+14
*
Allow building of CFGs for ASTs that contain BlockExprs.
Ted Kremenek
2009-11-25
1
-3
/
+6
*
Add transfer function support for BlockExpr.
Ted Kremenek
2009-11-25
1
-0
/
+12
*
Split CodeTextRegion into FunctionTextRegion and BlockTextRegion. This a pre...
Ted Kremenek
2009-11-25
6
-16
/
+49
*
For the nil-receiver checker, take into account the behavioral changes that g...
Ted Kremenek
2009-11-24
1
-6
/
+19
*
Cleanups and fixes to the nil-receiver checker, some of it fallout the
Ted Kremenek
2009-11-24
2
-114
/
+129
*
We can remove this file now.
Zhongxing Xu
2009-11-24
2
-31
/
+0
*
Refactor undefined result checker. This is the last one.
Zhongxing Xu
2009-11-24
5
-154
/
+122
*
Refactor NilReceiverStructRet and NilReceiverLargerThanVoidPtrRet into
Zhongxing Xu
2009-11-24
4
-157
/
+134
*
rename UndefinedArgChecker to CallAndMessageChecker.
Zhongxing Xu
2009-11-24
3
-16
/
+16
*
Rename: UndefinedArgChecker.cpp => CallAndMessageChecker.cpp
Zhongxing Xu
2009-11-24
2
-1
/
+1
*
Enhance null dereference diagnostics by indicating what variable (if any) was...
Ted Kremenek
2009-11-24
2
-4
/
+27
*
After performing a bounds check in ArrayBoundChecker, record the fact that a ...
Ted Kremenek
2009-11-23
1
-0
/
+6
*
Clean up the Checker API a little more, resolving some hidden bugs
Ted Kremenek
2009-11-23
19
-49
/
+55
*
Provide out-of-line definition for destructor of Checker.
Ted Kremenek
2009-11-23
2
-0
/
+19
[next]