Age | Commit message (Expand) | Author |
2009-11-17 | Add EvalEndPath interface to Checker. Now we can check memory leaked at the | Zhongxing Xu |
2009-11-17 | Silence some warnings produced by Clang, and add a missing header | Douglas Gregor |
2009-11-17 | Add a comment. | Zhongxing Xu |
2009-11-16 | Fix condition in LocationCheck::classof(). Thanks to Marius Wachtler for poi... | Ted Kremenek |
2009-11-16 | * Do the same thing to the basicstore as in r84163. | Zhongxing Xu |
2009-11-15 | Make a couple more headers standalone | Douglas Gregor |
2009-11-15 | Remove an obviously-broken header, which still tries to refer to ScopedDecl. | Douglas Gregor |
2009-11-14 | Change *BugReport constructors to take StringRefs. | Benjamin Kramer |
2009-11-14 | Move definition of GRExprEngine::ProcessEndPath() out-of-line. | Ted Kremenek |
2009-11-13 | Add clang-cc option "--analyzer-experimental-internal-checks". This | Ted Kremenek |
2009-11-13 | Check in a new interface of Checker, which will soon be used. | Zhongxing Xu |
2009-11-13 | GRStateManager::CurrentStmt is not used. Remove it. | Zhongxing Xu |
2009-11-13 | Add clang-cc option "-analyzer-experimental-checks" to enable experimental pa... | Ted Kremenek |
2009-11-12 | Remove obsolete 'struct NullDerefTag'. | Ted Kremenek |
2009-11-12 | Enhance Checker class (and GRExprEngine) to support PostVisitation for CallEx... | Ted Kremenek |
2009-11-12 | Remove GRExprEngine::EvalCall(). It had a single callsite in GRExprEngine, a... | Ted Kremenek |
2009-11-12 | Make StoreManager::getSizeInElements() always return DefinedOrUnknownSVal. | Zhongxing Xu |
2009-11-11 | Remove some stale ErrorNodes variables in GRExprEngine and the old buffer ove... | Ted Kremenek |
2009-11-11 | After drinking caffeine, add the two files missing from the previous submit. | Chandler Carruth |
2009-11-11 | Add undefined array subscript checker. | Zhongxing Xu |
2009-11-11 | Fix display of "ANALYZE" statements in AnalysisConsumer by correctly resettin... | Ted Kremenek |
2009-11-11 | Remove public headers for UndefinedArgChecker, AttrNonNullChecker, and BadCal... | Ted Kremenek |
2009-11-11 | Refactor DereferenceChecker to use only the new Checker API instead of | Ted Kremenek |
2009-11-10 | Refine PointerSubChecker: compare the base region instead of the original | Zhongxing Xu |
2009-11-10 | Rename: StripCasts describes what it does better. | Zhongxing Xu |
2009-11-09 | Add checker for CWE-588: Attempt to Access Child of a Non-structure Pointer. | Zhongxing Xu |
2009-11-09 | Add checker for CWE-587: Assignment of a Fixed Address to a Pointer. | Zhongxing Xu |
2009-11-09 | Remove dead code. | Zhongxing Xu |
2009-11-08 | Add a checker for CWE-467: Use of sizeof() on a Pointer Type. | Zhongxing Xu |
2009-11-07 | Use SaveAndRestore to simplify logic in LiveVariables::runOnAllBlocks(). Pat... | Ted Kremenek |
2009-11-07 | Remove Checker::CheckType() (and instead using CheckerVisitor::PreVisitDeclSt... | Ted Kremenek |
2009-11-06 | Make the VLASizeChecker implementation private, and its creation only known t... | Ted Kremenek |
2009-11-06 | Make the implementation of DivZeroChecker private. | Ted Kremenek |
2009-11-06 | add some const qualifiers, patch by Kovarththanan Rajaratnam! | Chris Lattner |
2009-11-06 | Add a checker for CWE-466: Return of Pointer Value Outside of Expected Range. | Zhongxing Xu |
2009-11-06 | static analyzer: refactor checking logic for returning the address of a stack... | Ted Kremenek |
2009-11-06 | Minor cleanup: use BuiltinBug (which will soon be renamed) for DeferenceCheck... | Ted Kremenek |
2009-11-05 | Tweak wording and classifications of analyzer diagnostics. | Ted Kremenek |
2009-11-05 | Remove unused SetPreprocessor method. | Daniel Dunbar |
2009-11-05 | AnalysisManager: Don't rely on PathDiagnosicClients flushing their diagnostic... | Ted Kremenek |
2009-11-05 | Acting on Daniel's nagging, remove PathDiagnosticClientFactory() and | Ted Kremenek |
2009-11-05 | Modify GRExprEngine::EvalBind() to take both a "store expression" and | Ted Kremenek |
2009-11-04 | Catch uses of undefined values when they are used in assignment, thus catchin... | Ted Kremenek |
2009-11-04 | Add mising #ifdef guards. | Ted Kremenek |
2009-11-04 | Merge ZeroSizedVLAChecker and UndefSizedVLAChecker. | Zhongxing Xu |
2009-11-04 | Refactor StoreManager::BindDecl() to take a VarRegion* instead of a VarDecl*,... | Ted Kremenek |
2009-11-03 | Change GRTransferFuncs::RegisterChecks() to take a GRExprEngine& instead of a... | Ted Kremenek |
2009-11-03 | Merge NullDerefChecker.[h,cpp] and UndefDerefChecker.[h,cpp]. They are essen... | Ted Kremenek |
2009-11-03 | Pull VLA size checker into its own files. | Zhongxing Xu |
2009-11-03 | Implement: <rdar://problem/6250216> Warn against using -[NSAutoreleasePool re... | Ted Kremenek |