aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
AgeCommit message (Expand)AuthorFilesLines
2017-03-08[analyzer] Clarify 'uninitialized function argument' messagesDaniel Marjamaki1-31/+45
2016-11-15[analyzer] Add check for when block is called with too few arguments.Devin Coughlin1-8/+13
2016-03-23[analyzer] Fix typo s/initalize/initialize/Chih-Hung Hsieh1-1/+1
2015-10-30Support watchOS and tvOS driver optionsTim Northover1-1/+2
2015-10-04SourceRanges are small and trivially copyable, don't them by reference.Craig Topper1-2/+2
2015-09-16[analyzer] Add generateErrorNode() APIs to CheckerContext.Devin Coughlin1-8/+8
2015-09-15[analyzer] Skip Pre/Post handlers for ObjC calls when receiver is nil.Devin Coughlin1-13/+12
2015-06-23Clarify pointer ownership semantics by hoisting the std::unique_ptr creation ...Aaron Ballman1-16/+16
2014-05-27[C++11] Use 'nullptr'. StaticAnalyzer edition.Craig Topper1-3/+3
2014-03-13[analyzer] Warn when passing pointers to const but uninitialized memory.Jordan Rose1-23/+109
2014-03-08[C++11] Replacing RecordDecl iterators field_begin() and field_end() with ite...Aaron Ballman1-4/+3
2014-03-07Replace OwningPtr with std::unique_ptr.Ahmed Charles1-22/+20
2014-03-02[C++11] Replace llvm::tie with std::tie.Benjamin Kramer1-4/+3
2014-02-17[analyzer] Improved checker naming in CFG dump.Anton Yartsev1-1/+1
2014-02-11Expose the name of the checker producing each diagnostic message.Alexander Kornienko1-24/+24
2014-01-03Fixed a FIXME; created a print method for Selectors that accepts a raw_ostrea...Aaron Ballman1-2/+3
2013-10-02[analyzer] Add missing return after function pointer null check.Jordan Rose1-0/+1
2013-09-14Clean up some Triple usage in clang.Cameron Esfahani1-2/+1
2013-08-09[analyzer] Warn when using 'delete' on an uninitialized variable.Jordan Rose1-1/+29
2013-06-19Fix a crash in the static analyzer (bug #16307)Pavel Labath1-1/+24
2013-04-03[analyzer] Warn when nil receiver results in forming null referenceAnna Zaks1-12/+19
2013-03-27[analyzer] Ensure that the node NilReceiverBRVisitor is looking for is not re...Anna Zaks1-3/+4
2013-02-20Include llvm::Optional in clang/Basic/LLVM.hDavid Blaikie1-1/+1
2013-02-20Replace SVal llvm::cast support to be well-defined.David Blaikie1-6/+8
2013-01-26[analyzer] Track null object lvalues back through C++ method calls.Jordan Rose1-0/+2
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth1-3/+3
2012-12-01Include pruning and general cleanup.Benjamin Kramer1-0/+1
2012-11-02[analyzer] Rename 'EmitReport' to 'emitReport'.Jordan Rose1-5/+5
2012-09-10Make helper functions static.Benjamin Kramer1-2/+2
2012-08-28[analyzer] Rename addTrackNullOrUndefValueVisitor to trackNullOrUndefValue.Jordan Rose1-4/+4
2012-08-15[analyzer] If we call a C++ method on an object, assume it's non-null.Jordan Rose1-3/+9
2012-08-04[analyzer] Use a more robust check for null in CallAndMessageChecker.Jordan Rose1-2/+12
2012-08-03[analyzer] When a symbol is null, we should track its constraints.Jordan Rose1-9/+4
2012-08-03[analyzer] Track null/uninitialized C++ objects used in method calls.Jordan Rose1-12/+12
2012-07-26[analyzer] Rename Calls.{h,cpp} to CallEvent.{h,cpp}. No functionality change.Jordan Rose1-1/+1
2012-07-26Add static analyzer check for calling a C++ instance method with a null/unini...Ted Kremenek1-2/+25
2012-07-18[analyzer] Combine all ObjC message CallEvents into ObjCMethodCall.Jordan Rose1-39/+67
2012-07-02[analyzer] If 'super' is known to be nil, we can still mark its range.Jordan Rose1-1/+1
2012-07-02[analyzer] Convert existing checkers to use check::preCall and check::postCall.Jordan Rose1-54/+47
2012-07-02[analyzer] Finish replacing ObjCMessage with ObjCMethodDecl and friends.Jordan Rose1-62/+59
2012-07-02[analyzer] Begin replacing ObjCMessage with ObjCMethodCall and friends.Jordan Rose1-1/+2
2012-07-02[analyzer] Convert CallAndMessageChecker and ObjCSelfInitChecker to CallEvent.Jordan Rose1-14/+29
2012-06-06Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie1-2/+2
2012-06-06Remove unused private member variables found by clang's new -Wunused-private-...Benjamin Kramer1-5/+3
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie1-3/+3
2012-03-09[analyzer] Implement basic path diagnostic pruning based on "interesting" sym...Ted Kremenek1-4/+7
2012-03-05Teak CallAndMessageChecker to only warn about uninitialized struct fields in ...Ted Kremenek1-2/+18
2012-02-18Adopt ExprEngine and checkers to ObjC property refactoring. Everything was w...Ted Kremenek1-7/+18
2012-02-05Basic: import SmallString<> into clang namespaceDylan Noblesmith1-2/+2
2012-02-05Basic: import OwningPtr<> into clang namespaceDylan Noblesmith1-11/+11