Age | Commit message (Expand) | Author |
2010-12-22 | [analyzer] Refactoring: lib/Checker -> lib/GR and libclangChecker -> libclang... | Argyrios Kyrtzidis |
2010-12-22 | [analyzer] Refactoring: include/clang/Checker -> include/clang/GR | Argyrios Kyrtzidis |
2010-12-22 | If the unary operator is prefix and an lvalue (in C++), bind | Zhongxing Xu |
2010-12-22 | After inlining the CXXConstructExpr, bind the temporary object region to it. | Zhongxing Xu |
2010-12-20 | Rename 'VisitLocation' to 'visitLocation'. | Ted Kremenek |
2010-12-20 | Rename 'Generate[Node,Sink]' to 'generate[Node,Sink]'. | Ted Kremenek |
2010-12-19 | If the initializer is an rvalue and the variable is a const reference, | Zhongxing Xu |
2010-12-18 | The evaluation of dereference and address-of is identical. | Zhongxing Xu |
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-10 | It's kindof silly that ExtQuals has an ASTContext&, and we can use that | John McCall |
2010-12-08 | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet |
2010-12-07 | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet |
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-12-03 | Also include the pointer address of the ExplodedNode | Ted Kremenek |
2010-12-02 | Merge ValueManager into SValBuilder. | Ted Kremenek |
2010-12-02 | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall |
2010-12-01 | Rename all 'AssumeXXX' methods in libChecker | Ted Kremenek |
2010-12-01 | Rename all 'EvalXXX' methods in libChecker to | Ted Kremenek |
2010-12-01 | Rename 'SValuator' to 'SValBuilder'. The new name | Ted Kremenek |
2010-12-01 | Restore the lvalue-to-rvalue conversion patch with a minimal fix. | John McCall |
2010-11-30 | L-value to r-value conversion is not ready for prime-time. | John McCall |
2010-11-30 | Introduce an r-value to l-value cast kind. I'm not promising anything | John McCall |
2010-11-26 | Regionstore: support derived-to-base cast by creating a CXXBaseObjectRegion. | Zhongxing Xu |
2010-11-25 | For CFGAutomaticObjDtor, the type may be reference type, e.g., const A &c = A(); | Zhongxing Xu |
2010-11-25 | handle CXXFunctionalCastExpr in visitLValue and Environment. | Zhongxing Xu |
2010-11-24 | Let StackFrameContext represent if the call expr is evaluated as lvalue. | Zhongxing Xu |
2010-11-24 | Use StackFrameContext directly in CallEnter program point. Then we don't need | Zhongxing Xu |
2010-11-24 | Add an assert() to catch errors using EvalLoad(). Reviewed by kremenek. | Zhanyong Wan |
2010-11-20 | Handle CFGAutomaticObjDtor. | Zhongxing Xu |
2010-11-18 | Added method for handling CXXOperatorCallExpr differently from CallExpr if CX... | Marcin Swiderski |
2010-11-17 | Add skeleton for handling various cfg dtors. | Zhongxing Xu |
2010-11-16 | Handle member initializer in C++ ctor. | Zhongxing Xu |
2010-11-16 | Kill CK_Unknown and flesh out the documentation for the existing CastKinds. | John McCall |
2010-11-15 | Add a new expression kind, OpaqueValueExpr, which is useful for | John McCall |
2010-11-15 | Assorted work leading towards the elimination of CK_Unknown. | John McCall |
2010-11-15 | Add skeleton for handling other kinds of CFGElements. | Zhongxing Xu |
2010-11-14 | Add a few more complex-related cast kinds that arise due to arbitrary | John McCall |
2010-11-13 | Introduce five new cast kinds for various conversions into and | John McCall |
2010-11-13 | Introduce a null-to-pointer implicit cast kind. | John McCall |
2010-11-01 | Now initializer of C++ record type is visited as block-level expr. | Zhongxing Xu |
2010-10-20 | Remove obsolete GRAuditor and GRSimpleAPICheck, which have been completely su... | Ted Kremenek |
2010-10-14 | Eliminate usage of ObjCSuperExpr used for | Fariborz Jahanian |
2010-10-14 | Call PreVisitDeclStmt for C++ aggregate initializers. Patch by Jim Goodnow II. | Zhongxing Xu |
2010-09-23 | Refactor GRExprEngine::VisitCall() to use EvalArguments(), just like VisitCXX... | Ted Kremenek |
2010-09-16 | Refactored BugReporter to refer to EndNode as ErrorNode. We currently make th... | Tom Care |
2010-09-16 | Introduce new CFGElement hierarchy to support C++ CFG, based on Marcin's patch | Zhongxing Xu |
2010-09-14 | Rename 'MaxLoop' to 'MaxVisit' in AnalysisManager to more correctly reflect t... | Tom Care |