Age | Commit message (Expand) | Author |
2009-10-18 | Move clients to use IdentifierInfo::getNameStart() instead of getName() | Daniel Dunbar |
2009-10-14 | Remove dead code. | Zhongxing Xu |
2009-10-14 | * Remove unused GRState* parameter | Zhongxing Xu |
2009-10-06 | Fix: <rdar://problem/7275774> Static analyzer warns about NULL pointer when | Ted Kremenek |
2009-09-27 | Fix: | Ted Kremenek |
2009-09-23 | Fix PR 4988 by removing an invalid assertion (a function can be referenced in | Ted Kremenek |
2009-09-22 | Fix: <rdar://problem/7242006> [RegionStore] compound literal assignment with ... | Ted Kremenek |
2009-09-21 | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall |
2009-09-16 | Remove ImplicitBadDivides/ExplicitBadDivides node sets. This checking is now... | Ted Kremenek |
2009-09-15 | Per feedback from Eli, recognize in the transfer function logic for | Ted Kremenek |
2009-09-15 | Add static analyzer transfer function support for __builtin_offsetof. | Ted Kremenek |
2009-09-12 | Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinID | Douglas Gregor |
2009-09-11 | Introduce "DefinedOrUnknownSVal" into the SVal class hierarchy, providing a way | Ted Kremenek |
2009-09-10 | Make AnalysisManager stateless. Now other analyzer components only depends on | Zhongxing Xu |
2009-09-09 | Implement: <rdar://problem/7185647> [RegionStore] 'self' cannot be NULL upon... | Ted Kremenek |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-05 | pass the correct predecessor node. | Zhongxing Xu |
2009-09-05 | Refactor builtin function evaluation code into its own function. | Zhongxing Xu |
2009-09-04 | move the check into MarkNoReturnFunction. | Zhongxing Xu |
2009-09-04 | Extract mark-no-return-function code into a function. | Zhongxing Xu |
2009-09-03 | Fix 80 column violations. | Ted Kremenek |
2009-09-02 | Refactor the check for bad divide into a checker. | Zhongxing Xu |
2009-09-02 | Refactor bad callee check into a Checker. | Zhongxing Xu |
2009-08-31 | Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate | Douglas Gregor |
2009-08-31 | Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will | Douglas Gregor |
2009-08-29 | Refactor undefined argument checking into a Checker. | Zhongxing Xu |
2009-08-27 | Rename 'bindExpr' to 'BindExpr'. | Ted Kremenek |
2009-08-27 | Remove a unused member variable. Instead query the option from AnalysisManager. | Zhongxing Xu |
2009-08-27 | Simplify 'Environment' to contain only one map from 'const Stmt*' to SVals, g... | Ted Kremenek |
2009-08-26 | When a member reference expression includes a qualifier on the member | Douglas Gregor |
2009-08-25 | Move logic of GRExprEngine::EvalBinOp to SValuator::EvalBinOp. | Ted Kremenek |
2009-08-25 | Remove CodeDecl and CFG from GRExprEngine and GRStateManager. | Zhongxing Xu |
2009-08-25 | Remove Decl and CFG from ExplodedGraph. This leads to a series small changes. | Zhongxing Xu |
2009-08-23 | Replace cerr with errs(). | Benjamin Kramer |
2009-08-21 | Remove 'AnalysisContext::setDecl()', as we the Decl associated with an | Ted Kremenek |
2009-08-21 | Add LocationContext* field to VarRegion. This is needed for interprocedural ... | Ted Kremenek |
2009-08-21 | Get the code decl from the initial location context. | Zhongxing Xu |
2009-08-20 | Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRef... | Fariborz Jahanian |
2009-08-18 | Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. | Fariborz Jahanian |
2009-08-17 | To make the analysis independent on the locally stored liveness and cfg | Zhongxing Xu |
2009-08-15 | Extend the ProgramPoint to include the context information LocationContext, | Zhongxing Xu |
2009-08-06 | Last step of template cleanup: merge *BuilderImpl to *Builder. | Zhongxing Xu |
2009-08-06 | As GRState seems general enough, it is time to merge some template classes | Zhongxing Xu |
2009-08-05 | If the UnaryOperator has non-location type, use its type to create the | Zhongxing Xu |
2009-08-01 | Temporarily disable out-of-bounds checking. The current checking logic will ... | Ted Kremenek |
2009-07-29 | Change uses of: | Ted Kremenek |
2009-07-28 | Fix PR 4631. The compound initializers of unions were not being evaluated, which | Ted Kremenek |
2009-07-23 | Revert r76831, there are many Analyzer test failures on multiple platforms. | Daniel Dunbar |
2009-07-23 | Add 'previsit' Checker pass for ObjCMessageExprs. | Ted Kremenek |
2009-07-22 | Refactor 'PostStmt' and 'PreStmt' to subclass a common parent 'StmtPoint'. | Ted Kremenek |