Age | Commit message (Expand) | Author |
2013-02-16 | libAnalysis: Add a case for TypeAliasDecl in CFGRecStmtDeclVisitor. | Jordan Rose |
2012-12-04 | Sort #include lines for all files under include/... | Chandler Carruth |
2012-05-19 | [analyzer] c++11: do not crash on namespace alias | Anna Zaks |
2012-03-22 | Fix static analyzer crash on code taking the address of a field. Fixes PR 11... | Ted Kremenek |
2011-12-27 | Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl | Douglas Gregor |
2011-09-23 | Switch assert(0/false) llvm_unreachable. | David Blaikie |
2011-08-12 | Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a... | Ted Kremenek |
2011-04-14 | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith |
2011-02-18 | Handle UsingDecl in CFGRecStmtDeclVisitor. | Argyrios Kyrtzidis |
2011-02-17 | Change the representation of GNU ?: expressions to use a different expression | John McCall |
2011-02-14 | Handle 'UsingDirective' in CFGRecStmtDeclVisitor. | Ted Kremenek |
2011-02-13 | Give some convenient idiomatic accessors to Stmt::child_range and | John McCall |
2010-10-22 | Fix a horrible bug in all dataflow analyses that use CFGRecStmtVisitor (inclu... | Ted Kremenek |
2010-08-25 | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall |
2010-06-25 | Add support for CXXRecordDecl in CFGRecStmtDeclVisitor. | Ted Kremenek |
2010-05-30 | Convert DeclNodes to use TableGen. | Sean Hunt |
2009-12-24 | Enhance dataflow analyses to recognize branch statements in the CFG used as h... | Ted Kremenek |
2009-12-16 | Teach CFRecStmtDeclVisitor about CXXMethodDecl. | Ted Kremenek |
2009-11-15 | Remove an obviously-broken header, which still tries to refer to ScopedDecl. | Douglas Gregor |
2009-10-23 | Remove OriginalTypeParmDecl; the original type is the one specified | John McCall |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-07-16 | Move the source-level CFG from libAST to libAnalysis. | Ted Kremenek |
2009-03-29 | DeclRefExpr refers to one decl, not all the declarators in a declaration. | Chris Lattner |
2009-02-02 | Add a macro-based enumeration of all of the Decl nodes (like we do | Douglas Gregor |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor |
2008-12-20 | Finish up saving original parameter type and | Fariborz Jahanian |
2008-11-12 | Update CFGStmtVisitor to recognize that ObjCForCollectionStmts are special bl... | Ted Kremenek |
2008-10-21 | Preliminary support for function overloading | Douglas Gregor |
2008-10-15 | Simplify handling of struct/union/class tags. | Argyrios Kyrtzidis |
2008-10-06 | Use DeclStmt::decl_iterator instead of walking the ScopedDecl chain (which wi... | Ted Kremenek |
2008-06-17 | Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. | Chris Lattner |
2008-04-15 | Revert my previous patch. | Ted Kremenek |
2008-04-15 | Remove dispatch to "VisitParmVarDecl". | Ted Kremenek |
2008-04-15 | Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVar... | Steve Naroff |
2008-04-15 | Bug fix in VisitChildren: Only visit the last statement in a StmtExpr and the... | Ted Kremenek |
2008-04-02 | Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjC... | Steve Naroff |
2008-03-05 | Reverted patch 47926 for ProgramPoint.h because it is currently buggy. May a... | Ted Kremenek |
2008-01-17 | Modified the notion of "Block-level expressions" in CFGs to include Stmt*. This | Ted Kremenek |
2008-01-07 | Substituted all instances of the string "Objc" for "ObjC". This fixes | Ted Kremenek |
2007-12-29 | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner |
2007-11-20 | Updated CFGStmtVisitor and CFGRecStmtVisitor to have a notion of | Ted Kremenek |
2007-10-09 | Remove addition of protocol names to declaration scopes, use a separate | Fariborz Jahanian |
2007-10-08 | Rename FileVariable -> FileVar for consistency with its class name, | Chris Lattner |
2007-10-08 | Several small patches to do pretty printing for objective-c top-level decls | Fariborz Jahanian |
2007-10-05 | Removed DataflowStmtVisitor. It is no longer used, and is obsoleted | Ted Kremenek |
2007-10-02 | ObjcCategoryDecl Does not subclass from ScopedDecl any more. | Fariborz Jahanian |
2007-10-01 | Move ObjC decls to DeclObjC.h, a new AST header. | Steve Naroff |
2007-09-28 | Fixed bug where declaration initializer expressions were not | Ted Kremenek |
2007-09-26 | Added extra guard for null Stmt* when traversing the AST using VisitChildren. | Ted Kremenek |
2007-09-25 | Further refactored DataflowSolver. Now most code for the solver is shared | Ted Kremenek |