Age | Commit message (Expand) | Author |
2011-03-10 | Require AddStmtChoice::alwaysAdd() to take a CFGBuilder& and Stmt*. Prep for... | Ted Kremenek |
2011-03-10 | Remove unused 'AddStmtChoice' argument to CFGBuilder::appendStmt(). | Ted Kremenek |
2011-03-10 | Rework interaction between AnalysisContext and CFG::BuildOptions to keep a Bu... | Ted Kremenek |
2011-03-07 | Fix null dereference in CFGBlock::FilterEdge that was reported in PR 9412. | Ted Kremenek |
2011-03-04 | Correctly handle nested switch statements in CFGBuilder when on switch statem... | Ted Kremenek |
2011-03-03 | Teach CFGImplicitDtor::getDestructorDecl() about arrays of objects with destr... | Ted Kremenek |
2011-03-03 | Teach CFGImplicitDtor::getDestructorDecl() about reference types. | Ted Kremenek |
2011-03-03 | Let's go with John and Ted's preferred fix. | Matt Beaumont-Gay |
2011-03-02 | Keep GCC from complaining about falling off the end of the function. | Matt Beaumont-Gay |
2011-03-02 | Introduce CFGImplicitDtor::isNoReturn() to query whether a destructor actuall... | Ted Kremenek |
2011-03-01 | Teach CFGBuilder to prune trivially unreachable case statements. | Ted Kremenek |
2011-03-01 | In preparation for fixing PR 6884, rework CFGElement to have getAs<> return p... | Ted Kremenek |
2011-02-28 | Get rid of the areExceptionsEnabled() getter from LangOptions. | Anders Carlsson |
2011-02-24 | Fix tiny error in CFG construction for BinaryConditionalOperators, making sur... | Ted Kremenek |
2011-02-23 | Teach CFGBuilder about null pointer constants in conditionals, and how they c... | Ted Kremenek |
2011-02-21 | Fix a CFGBuilder bug exposed on convoluted control-flow in the Linux kernel. | Ted Kremenek |
2011-02-20 | Add a LangOptions::areExceptionsEnabled and start using it. | Anders Carlsson |
2011-02-19 | Fix a -Wuninitialized warning; it's actually a false positive, | John McCall |
2011-02-17 | Change the representation of GNU ?: expressions to use a different expression | John McCall |
2011-02-17 | Step #1/N of implementing support for __label__: split labels into | Chris Lattner |
2011-02-15 | Fix memory leak in CFGBuilder resulting from tracking scope information using... | Ted Kremenek |
2011-02-13 | Give some convenient idiomatic accessors to Stmt::child_range and | John McCall |
2011-01-19 | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall |
2011-01-08 | Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, | Sean Hunt |
2011-01-07 | Fix crash in CFGBuilder on invalid code. We still need | Ted Kremenek |
2010-12-17 | Rename several methods/functions in the analyzer | Ted Kremenek |
2010-12-16 | Start migration of static analyzer to using the | Ted Kremenek |
2010-12-06 | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall |
2010-12-04 | More anonymous struct/union redesign. This one deals with anonymous field use... | Francois Pichet |
2010-12-04 | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall |
2010-11-24 | print asLValue attribute of CFGStmt. | Zhongxing Xu |
2010-11-24 | Refactor AddStmtChoice to make it easier to use; also add comments on how the... | Zhanyong Wan |
2010-11-22 | Stylistic changes to CFG.cpp: | Zhanyong Wan |
2010-11-22 | Fix PR8419. Reviewed by kremenek and xuzhongxing. | Zhanyong Wan |
2010-11-15 | Remove invalid assertion from CFG builder. When building the CFG pieces for ... | Ted Kremenek |
2010-11-14 | Revert r118991. | Zhongxing Xu |
2010-11-13 | Do not add implicit dtors for CXXBindTemporaryExpr with elidable | Zhongxing Xu |
2010-11-03 | Do not add elidable CXXConstructExpr as block-level expr. | Zhongxing Xu |
2010-11-03 | Added generating destructors for temporary objects. Two cases I know of, that... | Marcin Swiderski |
2010-11-01 | Explicitly handle CXXBindTemporaryExpr, CXXFunctionalCastExpr, | Zhongxing Xu |
2010-11-01 | Make all CXXConstructExpr's block-level expressions. This is required by | Zhongxing Xu |
2010-10-29 | Added CFGTerminator class, that holds information about CFGBlock terminator s... | Marcin Swiderski |
2010-10-27 | If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr | Zhongxing Xu |
2010-10-25 | Added generation of destructors for member constant size arrays. | Marcin Swiderski |
2010-10-25 | Added generation of destructors for constant size arrays. | Marcin Swiderski |
2010-10-24 | - Fixed subexpressions evaluation order for binary operators to match order i... | Marcin Swiderski |
2010-10-05 | * Simplify code | Zhongxing Xu |
2010-10-05 | Added support for base and member destructors in destructor. | Marcin Swiderski |
2010-10-04 | Added support for C++ initializers in CFG. | Marcin Swiderski |
2010-10-01 | Now the whether adding implicit dtors is controlled by cmd option. | Zhongxing Xu |