| Commit message (Expand) | Author | Age | Files | Lines |
| * | Teach the CF retain checker about "_init" methods. Fixes: <rdar://problem/59... | Ted Kremenek | 2008-06-02 | 1 | -1/+1 |
| * | Prototyped support in the BugReporter to emit diagnostics of the form "p now ... | Ted Kremenek | 2008-05-22 | 1 | -0/+4 |
| * | Expand retain/release checker to consider methods/function calls that cause a | Ted Kremenek | 2008-05-22 | 1 | -27/+31 |
| * | Cache leaks by the allocation site, not the leak location. | Ted Kremenek | 2008-05-16 | 1 | -28/+58 |
| * | Rename IsPointerType to LVal::IsLValType, and update CFRefCount::EvalSummary ... | Ted Kremenek | 2008-05-09 | 1 | -3/+3 |
| * | Added support for "drain". | Ted Kremenek | 2008-05-07 | 1 | -0/+4 |
| * | Expand the CF retain checker to allow the Create/Get rule to apply to any | Ted Kremenek | 2008-05-07 | 1 | -52/+57 |
| * | Flip order of arguments to CStrInStrNoCase. | Ted Kremenek | 2008-05-07 | 1 | -2/+2 |
| * | Use llvm::CStrInCStrNoCase instead of strcasestr, since the latter is not por... | Ted Kremenek | 2008-05-07 | 1 | -2/+4 |
| * | copy-paste: NS types are not typedefs. | Ted Kremenek | 2008-05-07 | 1 | -7/+5 |
| * | Do not treat **instance** methods "copyWithZone:" and "mutableCopyWithZone:" ... | Ted Kremenek | 2008-05-07 | 1 | -18/+1 |
| * | Be less promiscuous with generating summaries for "new", "copy", "create". | Ted Kremenek | 2008-05-07 | 1 | -3/+3 |
| * | Added auto-summary generation for createXXX, copyXXX, newXXX methods. | Ted Kremenek | 2008-05-07 | 1 | -16/+12 |
| * | Don't report leaks for autoreleased objects. | Ted Kremenek | 2008-05-06 | 1 | -42/+21 |
| * | More comments. | Ted Kremenek | 2008-05-06 | 1 | -73/+72 |
| * | Experiment with not converting bug names to lower case. | Ted Kremenek | 2008-05-06 | 1 | -11/+38 |
| * | Generate "stop" summaries for selectors involving receivers whose type is not... | Ted Kremenek | 2008-05-06 | 1 | -19/+92 |
| * | Use strncmp correctly. | Ted Kremenek | 2008-05-06 | 1 | -3/+3 |
| * | Make string comparison legible and remove buffer overrun introduced by typo. | Ted Kremenek | 2008-05-06 | 1 | -2/+2 |
| * | String comparison cleanups. | Ted Kremenek | 2008-05-06 | 1 | -1/+1 |
| * | Fix logic error in string processing. | Ted Kremenek | 2008-05-06 | 1 | -1/+1 |
| * | Remove assertion. | Ted Kremenek | 2008-05-06 | 1 | -1/+0 |
| * | Use EvalSummary to process message expressions, thereby unifying the checker | Ted Kremenek | 2008-05-06 | 1 | -135/+64 |
| * | Added receiver effects to EvalSummary. | Ted Kremenek | 2008-05-06 | 1 | -7/+43 |
| * | Expand summaries to include "Receiver" effects. | Ted Kremenek | 2008-05-06 | 1 | -16/+40 |
| * | Added initialization code to generate initial set of ObjC method summaries (n... | Ted Kremenek | 2008-05-06 | 1 | -3/+22 |
| * | Added code to generate initial set of summaries for instance methods. | Ted Kremenek | 2008-05-06 | 1 | -17/+55 |
| * | Add summary generation for "initXXX" methods. | Ted Kremenek | 2008-05-05 | 1 | -5/+47 |
| * | Make CF retain diagnostics more succinct. | Ted Kremenek | 2008-05-05 | 1 | -4/+5 |
| * | Initial work on refactoring the CFRefCount checker so that it is more | Ted Kremenek | 2008-05-05 | 1 | -108/+184 |
| * | Improve leak diagnostics to not report a leak on the same line where | Ted Kremenek | 2008-05-05 | 1 | -16/+80 |
| * | Improved leak diagnostics. | Ted Kremenek | 2008-05-05 | 1 | -23/+63 |
| * | Minor refactorings/cleanups in CF retain checker and added support for NSMake... | Ted Kremenek | 2008-05-05 | 1 | -93/+68 |
| * | Improved diagnostics for leaks: now we report which variable was leaked. | Ted Kremenek | 2008-05-02 | 1 | -5/+33 |
| * | When running the reference count checker twice (GC and non-GC mode), only emit | Ted Kremenek | 2008-05-02 | 1 | -4/+8 |
| * | Fix copy-paste bug. | Ted Kremenek | 2008-05-01 | 1 | -1/+1 |
| * | Remove no longer valid assertion. | Ted Kremenek | 2008-05-01 | 1 | -4/+0 |
| * | Added line number diagnostics to indicate the allocation site of the leaked o... | Ted Kremenek | 2008-05-01 | 1 | -3/+53 |
| * | Do not highlight bogus ranges for leaks. | Ted Kremenek | 2008-05-01 | 1 | -2/+23 |
| * | Correctly invalidate reference count state when passing objects by reference ... | Ted Kremenek | 2008-05-01 | 1 | -3/+38 |
| * | Renamed static method. | Ted Kremenek | 2008-05-01 | 1 | -4/+4 |
| * | When processing "release", "retain", and "autorelease" messages return the | Ted Kremenek | 2008-05-01 | 1 | -5/+5 |
| * | Added support for "autorelease" message in CF ref. count checker. | Ted Kremenek | 2008-05-01 | 1 | -15/+42 |
| * | added preliminary diagnostics in scan-build results to denote whether | Ted Kremenek | 2008-04-30 | 1 | -6/+52 |
| * | Teach more of the static analyzer about ObjCQualifiedIdType. | Ted Kremenek | 2008-04-30 | 1 | -1/+2 |
| * | Teach the static analysis engine about ObjCQualifiedIdType. | Ted Kremenek | 2008-04-30 | 1 | -2/+1 |
| * | Update typestate logic to support GC-mode. | Ted Kremenek | 2008-04-29 | 1 | -3/+8 |
| * | Implement semantics of CFMakeCollectable for the CF-reference count checker. | Ted Kremenek | 2008-04-29 | 1 | -29/+65 |
| * | Provide the option to run the CF-retain checker in GC enabled mode. | Ted Kremenek | 2008-04-29 | 1 | -4/+6 |
| * | Do a better job at computing dead symbols. | Ted Kremenek | 2008-04-25 | 1 | -15/+5 |