aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
AgeCommit message (Expand)Author
2012-05-08[analyzer] SelfInit: Stop tracking self if it's assigned a value weAnna Zaks
2012-04-16[analyzer] Fix a false alarm in SelfInitChecker (radar://11235991).Anna Zaks
2012-04-05Require that all static analyzer issues have a category. As part of this cha...Ted Kremenek
2012-03-05[analyzer] False positive in SelfInit - teach the checker about methodAnna Zaks
2012-02-18Adopt ExprEngine and checkers to ObjC property refactoring. Everything was w...Ted Kremenek
2012-02-04[analyzer] Minor cleanups to the ObjCSelfInitChecker.Anna Zaks
2012-01-26Change references to 'const ProgramState *' to typedef 'ProgramStateRef'.Ted Kremenek
2012-01-06[analyzer] Make the entries in 'Environment' context-sensitive by making entr...Ted Kremenek
2011-10-26[analyzer] Rename generateNode -> addTransition in CheckerContextAnna Zaks
2011-10-25[analyzer] Simplify CheckerContextAnna Zaks
2011-10-24Rename AnalysisContext to AnalysisDeclContext. Not only is this name more ac...Ted Kremenek
2011-10-06[analyzer] Remove the dependency on CheckerContext::getStmt() as well as the ...Anna Zaks
2011-09-02[analyzer] Remove TransferFuncs.h, then deal with the fallout.Jordy Rose
2011-08-17Remove EnhancedBugReport and RangedBugReport - pull all the extra functionali...Anna Zaks
2011-08-15Rename GRState to ProgramState, and cleanup some code formatting along the way.Ted Kremenek
2011-08-12Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a...Ted Kremenek
2011-04-15fix a bunch of comment typos found by codespell. Patch byChris Lattner
2011-03-02Move some of the logic about classifying Objective-C methods intoJohn McCall
2011-03-01[analyzer] Rename CheckerV2 -> Checker.Argyrios Kyrtzidis
2011-02-22[analyzer] Start moving the path-sensitive checkers to CheckerV2.Argyrios Kyrtzidis
2011-02-17[analyzer] Pass CheckerManager to the registration functions.Argyrios Kyrtzidis
2011-02-15[analyzer] Use the new registration mechanism on some of the internal checks....Argyrios Kyrtzidis
2011-02-12Weaken the ObjCSelfInitChecker to only warn when one calls an 'init' method w...Ted Kremenek
2011-02-10Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core'...Ted Kremenek
2011-02-08[analyzer] lib/StaticAnalyzer/Checkers/ExprEngineInternalChecks.h -> lib/Stat...Argyrios Kyrtzidis
2011-02-05[analyzer] Fix a false positive of the 'self' initialization checker.Argyrios Kyrtzidis
2011-02-01Fix the message. Thanks to Thomas Clement for noticing.Argyrios Kyrtzidis
2011-02-01[analyzer] Slightly improve the diagnostic message of ObjCSelfInitChecker.Argyrios Kyrtzidis
2011-01-26[analyzer] Improve the diagnostic for the self-init checker. Suggestion by Ted!Argyrios Kyrtzidis
2011-01-25[analyzer] Do the self-init check only on NSObject subclasses. Patch by Jean-...Argyrios Kyrtzidis
2011-01-25[analyzer] Introduce ObjCMessage which represents both explicit ObjC message ...Argyrios Kyrtzidis
2011-01-11[analyzer] Introduce ObjCSelfInitChecker, which checks initialization methods...Argyrios Kyrtzidis