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
/
StaticAnalyzer
Commit message (
Expand
)
Author
Age
Files
Lines
*
Rework ExprEngine::evalLoad and clients (e.g. VisitBinaryOperator) so that wh...
Ted Kremenek
2012-04-06
5
-51
/
+72
*
[analyzer] Check that the arguments to NSOrderedSet creation methods are vali...
Jordy Rose
2012-04-06
1
-0
/
+12
*
Require that all static analyzer issues have a category. As part of this cha...
Ted Kremenek
2012-04-05
13
-20
/
+39
*
Handle symbolicating a reference in an initializer expression that we don't u...
Ted Kremenek
2012-04-05
1
-1
/
+6
*
Teach ObjCContainersChecker that the array passed to CFArrayGetValueAtIndex m...
Ted Kremenek
2012-04-05
1
-3
/
+6
*
[analyzer] Move stats calculation out of AnalysisConsumer destructor.
Anna Zaks
2012-04-05
1
-7
/
+8
*
[analyzer] Change warding in a path diagnostic:
Anna Zaks
2012-04-05
1
-1
/
+1
*
[analyzer] Remove redundant if statement (pointed out by Ted).
Anna Zaks
2012-04-05
1
-4
/
+0
*
Look through chains of 'x = y = z' when employing silencing heuristics in the...
Ted Kremenek
2012-04-04
1
-8
/
+30
*
Include the "issue context" (e.g. function or method) where a static analyzer...
Ted Kremenek
2012-04-04
18
-61
/
+131
*
Change BugReporter's usage of IsCachedDiagnostic to only impact pruning diagn...
Ted Kremenek
2012-04-04
1
-12
/
+8
*
[analyzer] Record the basic blocks covered by the analyzes run.
Anna Zaks
2012-04-03
6
-7
/
+68
*
Fix another false positive in RegionStore involving doing loads from symbolic...
Ted Kremenek
2012-04-03
1
-7
/
+18
*
Fix potential null dereference in the static analyzer when inlining a call th...
Ted Kremenek
2012-04-02
1
-4
/
+5
*
Analyzer: Store BugReports directly in a ilist instead of adding another laye...
Benjamin Kramer
2012-04-01
4
-18
/
+13
*
[analyzer]Malloc,RetainRelease: Allow pointer to escape via NSMapInsert.
Anna Zaks
2012-03-30
3
-0
/
+16
*
[analyzer] Do not inline functions which previously reached max block
Anna Zaks
2012-03-30
3
-4
/
+15
*
[analyzer] Enable retry exhausted without inlining by default.
Anna Zaks
2012-03-28
3
-5
/
+5
*
[analyser] Stats checker: do not mark a node as exhausted if we will
Anna Zaks
2012-03-28
2
-26
/
+20
*
[analyzer] Refactor: Use Decl when determining if the Block belongs to
Anna Zaks
2012-03-28
1
-7
/
+6
*
Fix suspicious comparison reported by PVS-Studio!
Ted Kremenek
2012-03-28
1
-1
/
+1
*
[analyzer] Add an option to re-analyze a dead-end path without inlining.
Anna Zaks
2012-03-27
5
-71
/
+182
*
[analyzer] Stats checker: minor interprocedural tweaks.
Anna Zaks
2012-03-27
1
-15
/
+20
*
[analyzer] Stats: Only count the number of times we run path sensitive
Anna Zaks
2012-03-27
1
-2
/
+3
*
Change RetainCountChecker to eagerly "escape" retained objects when they are
Ted Kremenek
2012-03-27
1
-0
/
+6
*
[analyzer] Malloc: Allow a pointer to escape through OSAtomicEnqueue.
Anna Zaks
2012-03-26
1
-1
/
+2
*
[analyzer] Tighten up the realloc() failure path note generation...make sure ...
Jordy Rose
2012-03-24
1
-22
/
+31
*
[analyzer] Restart path diagnostic generation if any of the visitors change t...
Jordy Rose
2012-03-24
2
-34
/
+65
*
[analyzer] Add a clone() method to BugReporterVisitor, so that we'll be able ...
Jordy Rose
2012-03-24
3
-3
/
+13
*
Avoid applying retain/release effects twice in RetainCountChecker when a func...
Ted Kremenek
2012-03-23
3
-7
/
+13
*
corrected check::EndOfTranslationUnit checker name and added 'const' to decla...
Anton Yartsev
2012-03-23
1
-3
/
+3
*
Fix static analyzer crash on code taking the address of a field. Fixes PR 11...
Ted Kremenek
2012-03-22
1
-0
/
+7
*
[analyzer] Add the stat for the number of successfully explored paths.
Anna Zaks
2012-03-22
1
-1
/
+5
*
[analyzer] Add stats useful for coverage investigations.
Anna Zaks
2012-03-22
2
-0
/
+24
*
[analyzer] Add inlining awareness to the block coverage computation
Anna Zaks
2012-03-22
1
-5
/
+12
*
"Teach" RetainCountChecker about dispatch_set_context, which can indirectly f...
Ted Kremenek
2012-03-22
1
-0
/
+8
*
[analyzer] Malloc: drop symbols captured by blocks.
Anna Zaks
2012-03-22
1
-0
/
+42
*
Remove unused variable, fix indentation.
Benjamin Kramer
2012-03-21
1
-7
/
+5
*
[analyzer] Malloc: Utter the name of the leaked variable.
Anna Zaks
2012-03-21
3
-18
/
+65
*
[analyser] Factor out FindUniqueBinding from RetainCount checker.
Anna Zaks
2012-03-21
2
-33
/
+19
*
[analyzer] Mark a failed-realloc's result as an interesting symbol between th...
Jordy Rose
2012-03-18
1
-3
/
+27
*
[analyzer] Use a FoldingSet to cache simple RetainSummary instances, rather t...
Jordy Rose
2012-03-18
1
-40
/
+58
*
[analyzer] Unify retain-count summary generation for class and instance metho...
Jordy Rose
2012-03-17
1
-53
/
+26
*
[analyzer] Remove duplicate work on deriving method behavior. No functionalit...
Jordy Rose
2012-03-17
1
-83
/
+74
*
StaticAnalyzer: Fix abuse of StringRef in r152962.
NAKAMURA Takumi
2012-03-17
1
-1
/
+1
*
[analyzer] Don't claim an object was returned with +1 retain count before cou...
Jordy Rose
2012-03-17
1
-4
/
+8
*
[analyzer] Shorten the stack hint diagnostic.
Anna Zaks
2012-03-16
2
-9
/
+12
*
[analyzer] Create symbol-aware stack hints (building upon r152837).
Anna Zaks
2012-03-16
3
-20
/
+142
*
[analyzer] +Comments
Anna Zaks
2012-03-16
1
-5
/
+9
*
[analyzer] Add a statistic for the number of times we reach the max
Anna Zaks
2012-03-16
1
-1
/
+10
[next]