index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
StaticAnalyzer
/
Checkers
/
ObjCSelfInitChecker.cpp
Age
Commit message (
Expand
)
Author
2013-02-20
Replace SVal llvm::cast support to be well-defined.
David Blaikie
2012-12-13
[analyzer] Fix a self-init checker false positive.
Anna Zaks
2012-12-04
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-12-01
Add raw_ostream include to pacify MSVC.
Benjamin Kramer
2012-11-02
[analyzer] Add some convenience accessors to CallEvent, and use them.
Jordan Rose
2012-11-02
[analyzer] Convert some of the harder cases over to ProgramStateTrait macros.
Jordan Rose
2012-11-02
[analyzer] Rename 'EmitReport' to 'emitReport'.
Jordan Rose
2012-09-08
[analyzer] ObjCSelfInitChecker should always clean up in postCall checks.
Jordan Rose
2012-09-08
[analyzer] Add debug output for ObjCSelfInitChecker's state.
Jordan Rose
2012-07-26
[analyzer] Rename Calls.{h,cpp} to CallEvent.{h,cpp}. No functionality change.
Jordan Rose
2012-07-02
[analyzer] Convert existing checkers to use check::preCall and check::postCall.
Jordan Rose
2012-07-02
[analyzer] Finish replacing ObjCMessage with ObjCMethodDecl and friends.
Jordan Rose
2012-07-02
[analyzer] Begin replacing ObjCMessage with ObjCMethodCall and friends.
Jordan Rose
2012-07-02
[analyzer] Convert CallAndMessageChecker and ObjCSelfInitChecker to CallEvent.
Jordan Rose
2012-05-08
[analyzer] SelfInit: Stop tracking self if it's assigned a value we
Anna Zaks
2012-04-16
[analyzer] Fix a false alarm in SelfInitChecker (radar://11235991).
Anna Zaks
2012-04-05
Require 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 method
Anna Zaks
2012-02-18
Adopt 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-26
Change 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 CheckerContext
Anna Zaks
2011-10-25
[analyzer] Simplify CheckerContext
Anna Zaks
2011-10-24
Rename 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-17
Remove EnhancedBugReport and RangedBugReport - pull all the extra functionali...
Anna Zaks
2011-08-15
Rename GRState to ProgramState, and cleanup some code formatting along the way.
Ted Kremenek
2011-08-12
Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a...
Ted Kremenek
2011-04-15
fix a bunch of comment typos found by codespell. Patch by
Chris Lattner
2011-03-02
Move some of the logic about classifying Objective-C methods into
John 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-12
Weaken the ObjCSelfInitChecker to only warn when one calls an 'init' method w...
Ted Kremenek
2011-02-10
Split '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-01
Fix 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