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
/
Checkers
Commit message (
Expand
)
Author
Age
Files
Lines
*
Forgot some references to misspelled enums.
Benjamin Kramer
2013-10-20
1
-4
/
+4
*
Miscellaneous speling fixes.
Benjamin Kramer
2013-10-20
1
-1
/
+1
*
[analyzer] ArrayRef-ize BugReporter::EmitBasicReport.
Jordan Rose
2013-10-07
7
-32
/
+19
*
[analyzer] RetainCountChecker: add support for CFAutorelease.
Jordan Rose
2013-10-07
1
-8
/
+22
*
[analyzer] Replace bug category magic strings with shared constants, take 2.
Jordan Rose
2013-10-04
5
-25
/
+6
*
Temporarily revert r191910 until the layering violation can be fixed.
Richard Smith
2013-10-03
3
-6
/
+5
*
[analyzer] Replace bug category magic strings with shared constants.
Jordan Rose
2013-10-03
3
-5
/
+6
*
[analyzer] Add new debug helper clang_analyzer_warnIfReached.
Jordan Rose
2013-10-03
1
-0
/
+13
*
[analyzer] Add missing return after function pointer null check.
Jordan Rose
2013-10-02
1
-0
/
+1
*
[analyzer] Handle destructors for the argument to C++ 'delete'.
Jordan Rose
2013-09-25
1
-1
/
+2
*
Fix array_pod_sort predicates after LLVM change.
Benjamin Kramer
2013-09-22
1
-3
/
+3
*
array_pod_sort loses some type safety, better use the right types.
Benjamin Kramer
2013-09-22
1
-2
/
+2
*
Rewrite a cold use of std::sort to array_pod_sort.
Benjamin Kramer
2013-09-22
1
-12
/
+16
*
[analyzer] Stop tracking the objects with attribute cleanup in the RetainCoun...
Anna Zaks
2013-09-17
1
-0
/
+10
*
New message for cases when ownership is taken:
Anton Yartsev
2013-09-16
1
-10
/
+23
*
Clean up some Triple usage in clang.
Cameron Esfahani
2013-09-14
1
-2
/
+1
*
Fix two incorrect comments.
Jordan Rose
2013-09-13
1
-2
/
+2
*
Get rid of unused isPodLike definition.
Eli Friedman
2013-09-11
1
-2
/
+0
*
Switched FormatAttr to using an IdentifierArgument instead of a StringArgumen...
Aaron Ballman
2013-09-03
1
-1
/
+2
*
Use pop_back_val() instead of both back() and pop_back().
Robert Wilhelm
2013-08-23
1
-3
/
+2
*
[analyzer] Don't run unreachable code checker on inlined functions.
Jordan Rose
2013-08-19
1
-0
/
+3
*
[analyzer] Assume that strings are no longer than SIZE_MAX/4.
Jordan Rose
2013-08-19
1
-2
/
+15
*
Omit arguments of __builtin_object_size from the CFG.
Jordan Rose
2013-08-19
1
-6
/
+19
*
Use the number of parameters in the actual method or function to determine th...
Ted Kremenek
2013-08-16
1
-7
/
+1
*
RetainCountChecker: Replace some loops with std:: algorithms.
Benjamin Kramer
2013-08-16
1
-17
/
+5
*
Revert r188574. Turns out it isn't needed.
Ted Kremenek
2013-08-16
1
-1
/
+0
*
Need summary info. about arguments to
Fariborz Jahanian
2013-08-16
1
-0
/
+1
*
[analyzer] If realloc fails on an escaped region, that region doesn't leak.
Jordan Rose
2013-08-15
1
-1
/
+1
*
[static analyzer] add a simple "CallEffects" API to query the retain count se...
Ted Kremenek
2013-08-14
1
-0
/
+44
*
[static analyzer] Factor out ArgEffect and RetEffect into public header file.
Ted Kremenek
2013-08-14
1
-93
/
+14
*
DirectIvarAssignment: Replace vtable'd objects with simple functions.
Benjamin Kramer
2013-08-09
1
-31
/
+19
*
[analyzer] Warn when using 'delete' on an uninitialized variable.
Jordan Rose
2013-08-09
1
-1
/
+29
*
Eliminate CXXConstructorDecl::IsImplicitlyDefined.
Jordan Rose
2013-08-07
1
-1
/
+1
*
[analyzer] Don't process autorelease counts in synthesized function bodies.
Jordan Rose
2013-08-01
1
-1
/
+8
*
Make IgnoreParens() look through ChooseExprs.
Eli Friedman
2013-07-20
1
-13
/
+2
*
[analyzer] Include analysis stack in crash traces.
Jordan Rose
2013-07-19
1
-0
/
+7
*
Add 'static' and 'const' qualifiers to some arrays of strings.
Craig Topper
2013-07-15
1
-1
/
+1
*
[analyzer] Add support for __builtin_addressof.
Jordan Rose
2013-07-12
1
-1
/
+4
*
Use SmallVectorImpl instead of SmallVector for iterators and references to av...
Craig Topper
2013-07-04
2
-4
/
+4
*
[analyzer] Improve handling of noreturn destructors
Pavel Labath
2013-07-03
1
-13
/
+11
*
Use getAs<> where appropriate on QualTypes instead of using dyn_cast.
Eli Friedman
2013-06-24
1
-14
/
+7
*
[analyzer] Add a debug checker that prints Exploded Graph
Anna Zaks
2013-06-24
2
-0
/
+25
*
Check the canonical parameter type with getAs<>() in a static checker
Reid Kleckner
2013-06-24
1
-5
/
+5
*
[analyzer] Use output form collections’ count to decide if ObjC for loop sh...
Anna Zaks
2013-06-22
1
-8
/
+175
*
Fix a crash in the static analyzer (bug #16307)
Pavel Labath
2013-06-19
1
-1
/
+24
*
[analyzer] Do not report uninitialized value warnings inside swap functions.
Anna Zaks
2013-06-18
2
-0
/
+17
*
[AST] Don't include RecursiveASTVisitor.h in ASTContext.h
Reid Kleckner
2013-06-17
1
-0
/
+1
*
Fix memory corruption in CStringChecker
Pavel Labath
2013-06-12
1
-4
/
+1
*
[analyzer] Minor fixups to r183062
Anna Zaks
2013-06-08
1
-7
/
+8
*
[analyzer] Malloc checker should only escape the receiver when “[O init..]â...
Anna Zaks
2013-05-31
1
-29
/
+45
[next]