index
:
delta/clang.git
baserock/flang
google/stable
google/testing
master
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
release_34
release_35
release_35@215011
release_36
release_37
release_38
release_39
release_40
release_50
release_60
release_70
release_80
release_90
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
llvm.org: Obsolete (use llvm)
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
StaticAnalyzer
/
Checkers
/
NullabilityChecker.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[analyzer][NFC] Move CheckerRegistry from the Core directory to Frontend
Kristof Umann
2018-12-15
1
-1
/
+1
*
Misc typos fixes in ./lib folder
Raphael Isemann
2018-12-10
1
-1
/
+1
*
Re-apply r347954 "[analyzer] Nullability: Don't detect post factum violation..."
Artem Dergachev
2018-12-03
1
-6
/
+16
*
Revert r344580 "[analyzer] Nullability: Don't detect post factum violation..."
Artem Dergachev
2018-11-30
1
-16
/
+6
*
[analyzer] Nullability: Don't detect post factum violation on concrete values.
Artem Dergachev
2018-11-30
1
-6
/
+16
*
[analyzer] Fix the "Zombie Symbols" bug.
Artem Dergachev
2018-11-30
1
-3
/
+0
*
[analyzer] Restrict AnalyzerOptions' interface so that non-checker objects ha...
Kristof Umann
2018-11-05
1
-1
/
+1
*
[analyzer] Rename trackNullOrUndefValue to trackExpressionValue
George Karpenkov
2018-10-23
1
-1
/
+2
*
[analyzer] [NFC] Remove unused parameters, as found by -Wunused-parameter
George Karpenkov
2018-09-28
1
-3
/
+1
*
Port getLocStart -> getBeginLoc
Stephen Kelly
2018-08-09
1
-2
/
+2
*
[analyzer] Do not run visitors until the fixpoint, run only once.
George Karpenkov
2018-06-26
1
-2
/
+1
*
Fix typos in clang
Alexander Kornienko
2018-04-06
1
-1
/
+1
*
[analyzer] Trust _Nonnull annotations for system framework
George Karpenkov
2018-03-23
1
-29
/
+4
*
[analyzer] introduce getSVal(Stmt *) helper on ExplodedNode, make sure the he...
George Karpenkov
2018-01-17
1
-4
/
+2
*
[analyzer] Nullability: fix notes around synthesized ObjC property accessors.
Artem Dergachev
2017-06-05
1
-1
/
+1
*
[analyzer] Fix memory error bug category capitalization.
Artem Dergachev
2017-05-03
1
-1
/
+1
*
Spelling mistakes in comments. NFCI. (PR27635)
Simon Pilgrim
2017-03-30
1
-2
/
+2
*
Migrate PathDiagnosticPiece to std::shared_ptr
David Blaikie
2017-01-05
1
-8
/
+11
*
[analyzer] Refine the diagnostics in the nullability checker to differentiate...
Anna Zaks
2016-12-15
1
-5
/
+10
*
[analyzer] Fix typo in nullability checker diagnostic
Devin Coughlin
2016-12-07
1
-1
/
+1
*
[analyzer] Fix crash in NullabilityChecker calling block with too few arguments
Devin Coughlin
2016-11-14
1
-3
/
+4
*
[analyzer] Small cleanups when checkers retrieving statements from exploded
Gabor Horvath
2016-08-18
1
-4
/
+1
*
[analyzer] Nullability: Suppress diagnostic on bind with cast.
Devin Coughlin
2016-04-13
1
-6
/
+28
*
[analyzer] Nullability: Treat nil _Nonnull ivar as invariant violation.
Devin Coughlin
2016-04-13
1
-14
/
+56
*
[analyzer] Nullability: Suppress return diagnostics in inlined functions.
Devin Coughlin
2016-04-12
1
-1
/
+2
*
[analyzer] Nullability: Don't warn along paths where null returned from non-n...
Devin Coughlin
2016-03-28
1
-55
/
+79
*
[analyzer] Nullability: add option to not report on calls to system headers.
Devin Coughlin
2016-03-05
1
-2
/
+25
*
[analyzer] Improve Nullability checker diagnostics
Anna Zaks
2016-01-29
1
-32
/
+60
*
[analyzer] NullabilityChecker: Remove unused isReturnSelf() function.
Devin Coughlin
2016-01-28
1
-16
/
+0
*
[analyzer] Suppress nullability warnings in copy, mutableCopy, and init famil...
Devin Coughlin
2016-01-28
1
-11
/
+10
*
[analyzer] Suppress nullability warning for defensive super initializer idiom.
Devin Coughlin
2016-01-22
1
-4
/
+33
*
[analyzer] Nullability: Look through implicit casts when suppressing warnings...
Devin Coughlin
2016-01-18
1
-1
/
+15
*
[analyzer] Check for return of nil in ObjC methods with nonnull return type.
Devin Coughlin
2016-01-15
1
-20
/
+20
*
[analyzer] Suppress nullability warning for _Nonnull locals zero-initialized ...
Devin Coughlin
2015-12-29
1
-1
/
+44
*
[analyzer] Nullability: allow cast to _Nonnull to suppress warning about retu...
Devin Coughlin
2015-12-29
1
-12
/
+23
*
[analyzer] Pass value expression for inlined defensive checks when binding nu...
Devin Coughlin
2015-11-24
1
-1
/
+30
*
[analyzer] Add generateErrorNode() APIs to CheckerContext.
Devin Coughlin
2015-09-16
1
-3
/
+9
*
[Static Analyzer] Nullability checker optimization.
Gabor Horvath
2015-09-14
1
-1
/
+6
*
[Static Analyzer] Moving nullability checkers to a top level package.
Gabor Horvath
2015-09-14
1
-10
/
+27
*
[Static Analyzer] Fixed a typo in a diagnostic message.
Gabor Horvath
2015-09-11
1
-1
/
+1
*
[Static Analyzer] Minor cleanups for the nullability checker.
Gabor Horvath
2015-09-11
1
-46
/
+40
*
[Static Analyzer] Remove sinks from nullability checks.
Gabor Horvath
2015-09-03
1
-26
/
+146
*
[Static Analyzer] Make NonNullParamChecker emit implicit null dereference eve...
Gabor Horvath
2015-08-27
1
-1
/
+4
*
[Static Analyzer] Checks to catch nullability related issues.
Gabor Horvath
2015-08-26
1
-0
/
+838