Age | Commit message (Expand) | Author |
2009-11-25 | When dispatching to Checker objects in GRExprEngine::CheckerVisit(), | Ted Kremenek |
2009-11-25 | Add transfer function support for BlockExpr. | Ted Kremenek |
2009-11-24 | Cleanups and fixes to the nil-receiver checker, some of it fallout the | Ted Kremenek |
2009-11-24 | Refactor undefined result checker. This is the last one. | Zhongxing Xu |
2009-11-24 | Refactor NilReceiverStructRet and NilReceiverLargerThanVoidPtrRet into | Zhongxing Xu |
2009-11-23 | Clean up the Checker API a little more, resolving some hidden bugs | Ted Kremenek |
2009-11-23 | Initial refactor of UndefBranchChecker. We still use GRBranchNodeBuilder | Zhongxing Xu |
2009-11-22 | Undefined compound assignment result is checked in UndefinedAssignmentChecker... | Zhongxing Xu |
2009-11-22 | Remove invalid comments. The result is undefined only when operands are undef... | Zhongxing Xu |
2009-11-21 | Pull BadCallChecker int UndefinedArgChecker, and have UndefinedArgChecker als... | Ted Kremenek |
2009-11-21 | More checker refactoring. Passing undefined values in a message expression i... | Ted Kremenek |
2009-11-20 | Revert r89437 and add a comment. | Zhongxing Xu |
2009-11-20 | It's unnecessary to check for unknown at this point. | Zhongxing Xu |
2009-11-19 | Remove printf statement. | Ted Kremenek |
2009-11-17 | Add EvalEndPath interface to Checker. Now we can check memory leaked at the | Zhongxing Xu |
2009-11-17 | Clear the dest set. | Zhongxing Xu |
2009-11-16 | * Do the same thing to the basicstore as in r84163. | Zhongxing Xu |
2009-11-16 | Remove an unused parameter. | Zhongxing Xu |
2009-11-14 | Move definition of GRExprEngine::ProcessEndPath() out-of-line. | 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-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-11 | Remove some stale ErrorNodes variables in GRExprEngine and the old buffer ove... | Ted Kremenek |
2009-11-11 | Add undefined array subscript checker. | Zhongxing Xu |
2009-11-11 | Remove the old out-of-bound checking code. | Zhongxing Xu |
2009-11-11 | Refactor DereferenceChecker to use only the new Checker API instead of | Ted Kremenek |
2009-11-10 | Fix clang's use of DenseMap iterators after r86636 fixed their constness. | Jeffrey Yasskin |
2009-11-09 | Remove stale FIXME. | Ted Kremenek |
2009-11-09 | Add checker for CWE-588: Attempt to Access Child of a Non-structure Pointer. | Zhongxing Xu |
2009-11-07 | Remove Checker::CheckType() (and instead using CheckerVisitor::PreVisitDeclSt... | Ted Kremenek |
2009-11-06 | static analyzer: refactor checking logic for returning the address of a stack... | 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 | 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 | Pull VLA size checker into its own files. | Zhongxing Xu |
2009-11-03 | Implement: <rdar://problem/6250216> Warn against using -[NSAutoreleasePool re... | Ted Kremenek |
2009-11-02 | Remove GRExprEngine::CheckerVisitLocation(). It was only called in one place... | Ted Kremenek |
2009-10-30 | Tighten computation of ExprVal using ?: expression. No functionality change. | Ted Kremenek |
2009-10-30 | Make checkers run in deterministic order. | Ted Kremenek |
2009-10-30 | Fix PR5316: make assignment expressions can be visited as lvalue. Then we | Zhongxing Xu |
2009-10-30 | Handle loading of field values from LazyCompoundVals in GRExprEngine::VisitMe... | Ted Kremenek |
2009-10-29 | Move NullDeref and UndefDeref into their own checker. | Zhongxing Xu |
2009-10-29 | [llvm up] | Douglas Gregor |
2009-10-26 | 'error' is usually used as a noreturn function. This can suppress some false | Zhongxing Xu |
2009-10-23 | Eliminate QualifiedDeclRefExpr, which captured the notion of a | Douglas Gregor |
2009-10-21 | Simplify some code. No functionality change. | Zhongxing Xu |
2009-10-18 | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar |
2009-10-18 | Move misc clients to IdentifierInfo StringRef API. | Daniel Dunbar |