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
/
ObjCSelfInitChecker.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove \brief commands from doxygen comments.
Adrian Prantl
2018-05-09
1
-6
/
+6
*
[analyzer] introduce getSVal(Stmt *) helper on ExplodedNode, make sure the he...
George Karpenkov
2018-01-17
1
-2
/
+2
*
Refactor: Simplify boolean conditional return statements in lib/StaticAnalyze...
Alexander Kornienko
2015-12-28
1
-4
/
+1
*
[analyzer] Add generateErrorNode() APIs to CheckerContext.
Devin Coughlin
2015-09-16
1
-1
/
+1
*
[analyzer] Apply whitespace cleanups by Honggyu Kim.
Ted Kremenek
2015-09-08
1
-7
/
+7
*
Clarify pointer ownership semantics by hoisting the std::unique_ptr creation ...
Aaron Ballman
2015-06-23
1
-2
/
+1
*
[analyzer] Use a lazily-initialized BugType in ObjCSelfInitChecker.
Jordan Rose
2014-05-07
1
-10
/
+6
*
Fix leak in ObjCSelfInitChecker, found by LSan.
Nico Weber
2014-05-06
1
-19
/
+18
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-15
1
-1
/
+1
*
[analyzer] Improved checker naming in CFG dump.
Anton Yartsev
2014-02-17
1
-1
/
+1
*
Expose the name of the checker producing each diagnostic message.
Alexander Kornienko
2014-02-11
1
-11
/
+14
*
Replace SVal llvm::cast support to be well-defined.
David Blaikie
2013-02-20
1
-5
/
+6
*
[analyzer] Fix a self-init checker false positive.
Anna Zaks
2012-12-13
1
-2
/
+7
*
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-12-04
1
-2
/
+2
*
Add raw_ostream include to pacify MSVC.
Benjamin Kramer
2012-12-01
1
-0
/
+1
*
[analyzer] Add some convenience accessors to CallEvent, and use them.
Jordan Rose
2012-11-02
1
-4
/
+3
*
[analyzer] Convert some of the harder cases over to ProgramStateTrait macros.
Jordan Rose
2012-11-02
1
-27
/
+11
*
[analyzer] Rename 'EmitReport' to 'emitReport'.
Jordan Rose
2012-11-02
1
-1
/
+1
*
[analyzer] ObjCSelfInitChecker should always clean up in postCall checks.
Jordan Rose
2012-09-08
1
-2
/
+3
*
[analyzer] Add debug output for ObjCSelfInitChecker's state.
Jordan Rose
2012-09-08
1
-0
/
+48
*
[analyzer] Rename Calls.{h,cpp} to CallEvent.{h,cpp}. No functionality change.
Jordan Rose
2012-07-26
1
-1
/
+1
*
[analyzer] Convert existing checkers to use check::preCall and check::postCall.
Jordan Rose
2012-07-02
1
-63
/
+23
*
[analyzer] Finish replacing ObjCMessage with ObjCMethodDecl and friends.
Jordan Rose
2012-07-02
1
-18
/
+11
*
[analyzer] Begin replacing ObjCMessage with ObjCMethodCall and friends.
Jordan Rose
2012-07-02
1
-2
/
+6
*
[analyzer] Convert CallAndMessageChecker and ObjCSelfInitChecker to CallEvent.
Jordan Rose
2012-07-02
1
-10
/
+39
*
[analyzer] SelfInit: Stop tracking self if it's assigned a value we
Anna Zaks
2012-05-08
1
-1
/
+25
*
[analyzer] Fix a false alarm in SelfInitChecker (radar://11235991).
Anna Zaks
2012-04-16
1
-5
/
+20
*
Require that all static analyzer issues have a category. As part of this cha...
Ted Kremenek
2012-04-05
1
-1
/
+1
*
[analyzer] False positive in SelfInit - teach the checker about method
Anna Zaks
2012-03-05
1
-10
/
+35
*
Adopt ExprEngine and checkers to ObjC property refactoring. Everything was w...
Ted Kremenek
2012-02-18
1
-1
/
+1
*
[analyzer] Minor cleanups to the ObjCSelfInitChecker.
Anna Zaks
2012-02-04
1
-15
/
+5
*
Change references to 'const ProgramState *' to typedef 'ProgramStateRef'.
Ted Kremenek
2012-01-26
1
-6
/
+6
*
[analyzer] Make the entries in 'Environment' context-sensitive by making entr...
Ted Kremenek
2012-01-06
1
-5
/
+6
*
[analyzer] Rename generateNode -> addTransition in CheckerContext
Anna Zaks
2011-10-26
1
-3
/
+3
*
[analyzer] Simplify CheckerContext
Anna Zaks
2011-10-25
1
-3
/
+3
*
Rename AnalysisContext to AnalysisDeclContext. Not only is this name more ac...
Ted Kremenek
2011-10-24
1
-4
/
+4
*
[analyzer] Remove the dependency on CheckerContext::getStmt() as well as the ...
Anna Zaks
2011-10-06
1
-1
/
+3
*
[analyzer] Remove TransferFuncs.h, then deal with the fallout.
Jordy Rose
2011-09-02
1
-0
/
+1
*
Remove EnhancedBugReport and RangedBugReport - pull all the extra functionali...
Anna Zaks
2011-08-17
1
-2
/
+2
*
Rename GRState to ProgramState, and cleanup some code formatting along the way.
Ted Kremenek
2011-08-15
1
-10
/
+10
*
Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a...
Ted Kremenek
2011-08-12
1
-3
/
+3
*
fix a bunch of comment typos found by codespell. Patch by
Chris Lattner
2011-04-15
1
-1
/
+1
*
Move some of the logic about classifying Objective-C methods into
John McCall
2011-03-02
1
-7
/
+2
*
[analyzer] Rename CheckerV2 -> Checker.
Argyrios Kyrtzidis
2011-03-01
1
-2
/
+2
*
[analyzer] Start moving the path-sensitive checkers to CheckerV2.
Argyrios Kyrtzidis
2011-02-22
1
-56
/
+67
*
[analyzer] Pass CheckerManager to the registration functions.
Argyrios Kyrtzidis
2011-02-17
1
-1
/
+6
*
[analyzer] Use the new registration mechanism on some of the internal checks....
Argyrios Kyrtzidis
2011-02-15
1
-1
/
+1
*
Weaken the ObjCSelfInitChecker to only warn when one calls an 'init' method w...
Ted Kremenek
2011-02-12
1
-7
/
+22
*
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core'...
Ted Kremenek
2011-02-10
1
-3
/
+3
*
[analyzer] lib/StaticAnalyzer/Checkers/ExprEngineInternalChecks.h -> lib/Stat...
Argyrios Kyrtzidis
2011-02-08
1
-1
/
+1
[next]