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
/
Analysis
/
BasicObjCFoundationChecks.cpp
Age
Commit message (
Expand
)
Author
2009-07-29
Remove some uses of TypedViewRegion, and use getBaseRegion() in a context where
Ted Kremenek
2009-07-22
Refactor 'PostStmt' and 'PreStmt' to subclass a common parent 'StmtPoint'.
Ted Kremenek
2009-07-14
Add basic checking for passing NULL to CFRetain/CFRelease, since those functions
Ted Kremenek
2009-07-10
This patch includes a conceptually simple, but very intrusive/pervasive change.
Steve Naroff
2009-06-18
Move clients over from using GRStateManager::BindXXX and friends to
Ted Kremenek
2009-05-09
As discussed with Ted, rename TypedRegion::getObjectType() to
Zhongxing Xu
2009-05-09
rename: MemRegion:
Zhongxing Xu
2009-04-20
get a CodeTextRegion when visiting FunctionDecl reference.
Zhongxing Xu
2009-03-01
Rename AnonTypedRegion to TypedViewRegion.
Ted Kremenek
2009-02-04
Overhaul BugReporter interface and implementation. The new interface cleans up
Ted Kremenek
2008-12-13
MemRegion:
Ted Kremenek
2008-11-24
Rename Selector::getName() to Selector::getAsString(), and add
Chris Lattner
2008-10-24
Added method "getSelfRegion" to Store. This method returns the region associ...
Ted Kremenek
2008-10-17
- constify some uses of MemRegion* (MemRegion should be immutable).
Ted Kremenek
2008-10-17
This patch did the following renaming. There should be no functional changes.
Zhongxing Xu
2008-10-04
This is a big patch, but the functionality change is small and the rest of th...
Ted Kremenek
2008-09-21
The checks in BasicObjCFoundationChecks now have a category: "API Misuse (App...
Ted Kremenek
2008-09-18
Change implementation of NSError** coding-style check to be invoked at the en...
Ted Kremenek
2008-08-29
Remove dead method.
Ted Kremenek
2008-08-13
Rename ValueState -> GRState.
Ted Kremenek
2008-08-11
More #include cleaning
Daniel Dunbar
2008-07-26
change more instances of QualType::getCanonicalType to call
Chris Lattner
2008-07-22
Moved registration of basic path-sensitive checks from GRSimpleVals.cpp to GR...
Ted Kremenek
2008-07-22
Added path-sensitive checking for null pointer values passed to function argu...
Ted Kremenek
2008-07-10
Refactored most of the "Store" piece of ValueState into a Store type. The
Ted Kremenek
2008-06-26
Added a simple static analysis check to look for improper uses of CFCreateNum...
Ted Kremenek
2008-05-29
- Move ObjC Expresssion AST's from Expr.h => ExprObjC.h
Steve Naroff
2008-05-20
fix warning with gcc 4.1 (ptr to bool convertion)
Nuno Lopes
2008-05-01
Do not highlight bogus ranges for leaks.
Ted Kremenek
2008-04-30
More cleanups with ObjCQualifiedIdType in the static analyzer.
Ted Kremenek
2008-04-30
Teach more of the static analyzer about ObjCQualifiedIdType.
Ted Kremenek
2008-04-19
Gracefully handle when the receiver of a message expression is not a pointer ...
Ted Kremenek
2008-04-18
Generalize caching mechanism for bugs reports. Now individual BugTypes
Ted Kremenek
2008-04-18
Simplified internal logic of BugReporter, consolidating EmitWarning and
Ted Kremenek
2008-04-14
Hooked up the dead-store checker to the BugReporter interface. Now dead-store
Ted Kremenek
2008-04-10
Fixed regressions in error reporting due to copy-paste errors (using the "begin"
Ted Kremenek
2008-04-09
Major refactoring/cleanup of GRExprEngine, ExplodedGraph, and BugReporter.
Ted Kremenek
2008-04-03
Added investigate patch for an occasionally failing assertion (heisenbug?)
Ted Kremenek
2008-04-03
Hooked up GRSimpleAPICheck and the simple Objective-C Foundation checks to use
Ted Kremenek
2008-03-28
Added skeleton checking for NSString's method initWithFormat: (do not pass ni...
Ted Kremenek
2008-03-27
Expanded NSString checking to check for nil for a few more methods.
Ted Kremenek
2008-03-27
Add line SourceLocation to NSString checks.
Ted Kremenek
2008-03-27
Hooked up initial NSString interface checking to GRSimpleVals.
Ted Kremenek
2008-03-27
Add creation of BasicObjCFoundationChecks when running GRSimpleVals from the ...
Ted Kremenek
2008-03-27
Added "GRAuditor" and "GRSimpleAPICheck" interface to allow simple stateless ...
Ted Kremenek