| Commit message (Expand) | Author | Age | Files | Lines |
* | Constify all references to Stmt* and CFGBlock* in libChecker. | Zhongxing Xu | 2010-07-20 | 1 | -107/+115 |
* | Constify. | Zhongxing Xu | 2010-07-20 | 1 | -8/+9 |
* | Reapply r108617. | Zhongxing Xu | 2010-07-19 | 1 | -13/+26 |
* | Revert r108617, it broke the build. | Benjamin Kramer | 2010-07-17 | 1 | -26/+13 |
* | Prepare the analyzer for the callee in another translation unit: | Zhongxing Xu | 2010-07-17 | 1 | -13/+26 |
* | Fix '<rdar://problem/8202272> __imag passed non-complex should not crash' by ... | Ted Kremenek | 2010-07-17 | 1 | -2/+1 |
* | Improved false positive rate for the idempotent operations checker and moved ... | Tom Care | 2010-07-16 | 1 | -0/+1 |
* | Introduce a new cast kind for an "lvalue bitcast", which handles | Douglas Gregor | 2010-07-13 | 1 | -0/+1 |
* | Reinstate the fix for PR7556. A silly use of isTrivial() was | Douglas Gregor | 2010-07-08 | 1 | -2/+2 |
* | Revert r107828 and r107827, the fix for PR7556, which seems to be | Douglas Gregor | 2010-07-07 | 1 | -2/+2 |
* | Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its | Douglas Gregor | 2010-07-07 | 1 | -2/+2 |
* | Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of... | Argyrios Kyrtzidis | 2010-07-07 | 1 | -1/+1 |
* | Support sizeof for VLA expressions (sizeof(someVLA)). sizeof(int[n]) still un... | Jordy Rose | 2010-07-05 | 1 | -3/+32 |
* | Add an ivar to SymbolReaper for the current statement, and then stop passing ... | Jordy Rose | 2010-07-01 | 1 | -3/+3 |
* | ExplodedGraph never uses ASTContext, remove it. | Zhongxing Xu | 2010-07-01 | 1 | -3/+3 |
* | Correctly implement the CheckerVisit optimization introduced in r106884, but ... | Ted Kremenek | 2010-06-30 | 1 | -1/+1 |
* | Allow '__extension__' to be analyzed in a lvalue context. | Ted Kremenek | 2010-06-26 | 1 | -2/+6 |
* | Relax assertion since non-pod C++ classes are not aggregates, but still can a... | Ted Kremenek | 2010-06-25 | 1 | -4/+9 |
* | Add "checker caching" to GRExprEngine::CheckerVisit to progressively build | Ted Kremenek | 2010-06-25 | 1 | -3/+51 |
* | Add 'VisitEndAnalysis' callback to Checker class. This callback is called by... | Ted Kremenek | 2010-06-23 | 1 | -0/+7 |
* | Don't assert on C++ casts that are currently not handled by the static analyzer. | Ted Kremenek | 2010-06-22 | 1 | -6/+24 |
* | Register CallAndMessageChecker before AttrNonNullChecker. Then we can assume | Zhongxing Xu | 2010-06-16 | 1 | -1/+3 |
* | Merge StackAddrLeakChecker and ReturnStackAddressChecker. | Zhongxing Xu | 2010-06-09 | 1 | -1/+1 |
* | Add comments. | Zhongxing Xu | 2010-06-03 | 1 | -1/+2 |
* | Add option '-analyzer-max-loop', which specifies the maximum | Zhongxing Xu | 2010-05-18 | 1 | -2/+1 |
* | Substantially alter the design of the Objective C type AST by introducing | John McCall | 2010-05-15 | 1 | -2/+2 |
* | Fixes for compilation with Microsoft Visual Studio 2010, from Steven Watanabe! | Douglas Gregor | 2010-05-11 | 1 | -1/+1 |
* | Turn -analyzer-inline-call on for C functions. This also fixed a bug that | Zhongxing Xu | 2010-05-06 | 1 | -0/+26 |
* | Completely reimplement __builtin_offsetof, based on a patch by Roberto | Douglas Gregor | 2010-04-28 | 1 | -9/+28 |
* | Introduce Type::isStructureOrClassType(), which does the obvious | Douglas Gregor | 2010-04-26 | 1 | -3/+1 |
* | CXXNamedCastExpr is actually an abstract expression. | Zhongxing Xu | 2010-04-21 | 1 | -1/+0 |
* | Add initial support for C++ delete expr. | Zhongxing Xu | 2010-04-21 | 1 | -1/+5 |
* | Overhaul the AST representation of Objective-C message send | Douglas Gregor | 2010-04-21 | 1 | -4/+4 |
* | Use GetState() to get the possible cleaned state. | Zhongxing Xu | 2010-04-20 | 1 | -3/+3 |
* | Move all C++ expression evaluation logic into its own file. | Zhongxing Xu | 2010-04-19 | 1 | -234/+0 |
* | Analyzer: add support for CXXNewExpr. | Zhongxing Xu | 2010-04-19 | 1 | -1/+33 |
* | Fix PR 6844, a regression caused by the introduction of llvm_unreachable for ... | Ted Kremenek | 2010-04-15 | 1 | -25/+61 |
* | Add support for CXXBoolLiteralExpr. | Zhongxing Xu | 2010-04-14 | 1 | -1/+2 |
* | Make all cases that we don't handle explicit. | Zhongxing Xu | 2010-04-13 | 1 | -1/+12 |
* | Dispatch all C++ cast expr to VisitCast(). | Zhongxing Xu | 2010-04-13 | 1 | -7/+6 |
* | Initial support for visiting CXXMemberCallExpr. | Zhongxing Xu | 2010-04-01 | 1 | -5/+88 |
* | Improve C++ constructor handling. | Zhongxing Xu | 2010-04-01 | 1 | -2/+4 |
* | Introduce a new kind of derived-to-base cast which bypasses the need for | John McCall | 2010-03-30 | 1 | -0/+1 |
* | Change the analyzer to recognize (but ignore) assignments to isa. Fixes PR 6... | Ted Kremenek | 2010-03-30 | 1 | -0/+5 |
* | Checker: random include cleanup. | Benjamin Kramer | 2010-03-27 | 1 | -0/+2 |
* | Add methods to remove a GDM entry. | Zhongxing Xu | 2010-03-25 | 1 | -1/+1 |
* | Bind the constructed object value to CXXConstructExpr. | Zhongxing Xu | 2010-03-23 | 1 | -4/+22 |
* | Clear the return expr GDM after using it. | Zhongxing Xu | 2010-03-23 | 1 | -1/+4 |
* | Add a AggExprVisitor class. It contains lots of boiler | Zhongxing Xu | 2010-03-23 | 1 | -0/+4 |
* | Since we now may have basicblocks with the same block is in different function, | Zhongxing Xu | 2010-03-23 | 1 | -2/+3 |