| Commit message (Expand) | Author | Age | Files | Lines |
* | Split libAnalysis into two libraries: libAnalysis and libChecker. | Ted Kremenek | 2010-01-25 | 1 | -598/+0 |
* | move a few more symbols to .rodata/.data.rel.ro | Nuno Lopes | 2009-12-23 | 1 | -1/+1 |
* | Kill some unnecessary calls to c_str(). | Benjamin Kramer | 2009-11-29 | 1 | -2/+2 |
* | lib/Analysis: Remove VISIBILITY_HIDDEN from definitions in anonymous namespace | Kovarththanan Rajaratnam | 2009-11-28 | 1 | -6/+5 |
* | Clean up the Checker API a little more, resolving some hidden bugs | Ted Kremenek | 2009-11-23 | 1 | -3/+2 |
* | Fix typo GCC 4.3 warned about. | Benjamin Kramer | 2009-11-20 | 1 | -1/+1 |
* | Add simple static analyzer checker to check for sending 'release', 'retain', ... | Ted Kremenek | 2009-11-20 | 1 | -0/+61 |
* | Rename: StripCasts describes what it does better. | Zhongxing Xu | 2009-11-10 | 1 | -1/+1 |
* | Implement: <rdar://problem/6250216> Warn against using -[NSAutoreleasePool re... | Ted Kremenek | 2009-11-03 | 1 | -0/+1 |
* | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar | 2009-10-18 | 1 | -1/+1 |
* | Move clients to use IdentifierInfo::getNameStart() instead of getName() | Daniel Dunbar | 2009-10-18 | 1 | -3/+3 |
* | Simplify. | Daniel Dunbar | 2009-10-17 | 1 | -15/+5 |
* | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall | 2009-09-21 | 1 | -1/+1 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -105/+105 |
* | Tie the local check NSErrorCheck to a Decl to pave the way | Zhongxing Xu | 2009-08-21 | 1 | -2/+2 |
* | Last step of template cleanup: merge *BuilderImpl to *Builder. | Zhongxing Xu | 2009-08-06 | 1 | -7/+7 |
* | As GRState seems general enough, it is time to merge some template classes | Zhongxing Xu | 2009-08-06 | 1 | -8/+8 |
* | Remove some uses of TypedViewRegion, and use getBaseRegion() in a context where | Ted Kremenek | 2009-07-29 | 1 | -8/+5 |
* | Refactor 'PostStmt' and 'PreStmt' to subclass a common parent 'StmtPoint'. | Ted Kremenek | 2009-07-22 | 1 | -13/+14 |
* | Add basic checking for passing NULL to CFRetain/CFRelease, since those functions | Ted Kremenek | 2009-07-14 | 1 | -3/+79 |
* | This patch includes a conceptually simple, but very intrusive/pervasive change. | Steve Naroff | 2009-07-10 | 1 | -19/+12 |
* | Move clients over from using GRStateManager::BindXXX and friends to | Ted Kremenek | 2009-06-18 | 1 | -26/+15 |
* | As discussed with Ted, rename TypedRegion::getObjectType() to | Zhongxing Xu | 2009-05-09 | 1 | -1/+1 |
* | rename: MemRegion: | Zhongxing Xu | 2009-05-09 | 1 | -1/+1 |
* | get a CodeTextRegion when visiting FunctionDecl reference. | Zhongxing Xu | 2009-04-20 | 1 | -2/+2 |
* | Rename AnonTypedRegion to TypedViewRegion. | Ted Kremenek | 2009-03-01 | 1 | -1/+1 |
* | Overhaul BugReporter interface and implementation. The new interface cleans up | Ted Kremenek | 2009-02-04 | 1 | -138/+48 |
* | MemRegion: | Ted Kremenek | 2008-12-13 | 1 | -3/+6 |
* | Rename Selector::getName() to Selector::getAsString(), and add | Chris Lattner | 2008-11-24 | 1 | -2/+2 |
* | Added method "getSelfRegion" to Store. This method returns the region associ... | Ted Kremenek | 2008-10-24 | 1 | -1/+1 |
* | - constify some uses of MemRegion* (MemRegion should be immutable). | Ted Kremenek | 2008-10-17 | 1 | -3/+3 |
* | This patch did the following renaming. There should be no functional changes. | Zhongxing Xu | 2008-10-17 | 1 | -11/+11 |
* | This is a big patch, but the functionality change is small and the rest of th... | Ted Kremenek | 2008-10-04 | 1 | -5/+11 |
* | The checks in BasicObjCFoundationChecks now have a category: "API Misuse (App... | Ted Kremenek | 2008-09-21 | 1 | -3/+10 |
* | Change implementation of NSError** coding-style check to be invoked at the en... | Ted Kremenek | 2008-09-18 | 1 | -1/+4 |
* | Remove dead method. | Ted Kremenek | 2008-08-29 | 1 | -1/+0 |
* | Rename ValueState -> GRState. | Ted Kremenek | 2008-08-13 | 1 | -20/+20 |
* | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -0/+1 |
* | change more instances of QualType::getCanonicalType to call | Chris Lattner | 2008-07-26 | 1 | -2/+1 |
* | Moved registration of basic path-sensitive checks from GRSimpleVals.cpp to GR... | Ted Kremenek | 2008-07-22 | 1 | -0/+15 |
* | Added path-sensitive checking for null pointer values passed to function argu... | Ted Kremenek | 2008-07-22 | 1 | -4/+5 |
* | Refactored most of the "Store" piece of ValueState into a Store type. The | Ted Kremenek | 2008-07-10 | 1 | -3/+3 |
* | Added a simple static analysis check to look for improper uses of CFCreateNum... | Ted Kremenek | 2008-06-26 | 1 | -0/+257 |
* | - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h | Steve Naroff | 2008-05-29 | 1 | -0/+1 |
* | fix warning with gcc 4.1 (ptr to bool convertion) | Nuno Lopes | 2008-05-20 | 1 | -2/+2 |
* | Do not highlight bogus ranges for leaks. | Ted Kremenek | 2008-05-01 | 1 | -1/+2 |
* | More cleanups with ObjCQualifiedIdType in the static analyzer. | Ted Kremenek | 2008-04-30 | 1 | -8/+8 |
* | Teach more of the static analyzer about ObjCQualifiedIdType. | Ted Kremenek | 2008-04-30 | 1 | -4/+1 |
* | Gracefully handle when the receiver of a message expression is not a pointer ... | Ted Kremenek | 2008-04-19 | 1 | -1/+5 |
* | Generalize caching mechanism for bugs reports. Now individual BugTypes | Ted Kremenek | 2008-04-18 | 1 | -1/+1 |