1. 2c67d1b Reimplement ccc-analyzer in a language I actually know, and implement some obvious optimizations when processing command line arguments. by Ted Kremenek · 16 years ago
  2. 7712478 Remove typo. by Ted Kremenek · 16 years ago
  3. d7892ff Quote invocation of clang in pipe to handle paths with spaces. by Ted Kremenek · 16 years ago
  4. 87ca664 Added test case. by Ted Kremenek · 16 years ago
  5. 810ea0f Update checker build. by Ted Kremenek · 16 years ago
  6. 1ebce74 "currentHandler" is a nullary selector by Ted Kremenek · 16 years ago
  7. 6fbecac Fix caching bug. by Ted Kremenek · 16 years ago
  8. f2717b0 Add panic support for NSAssertionHandler. by Ted Kremenek · 16 years ago
  9. 5f027ef Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  10. d277421 Add panic function. by Ted Kremenek · 16 years ago
  11. 43a281c Fix 80 col violation by Ted Kremenek · 16 years ago
  12. 99b4f43 Fix regression by explicitly checking if we are negating a SymIntConstantVal. by Ted Kremenek · 16 years ago
  13. 19c5407 Improve path-sensitivity when using the logical not operator. by Ted Kremenek · 16 years ago
  14. 589f881 Renamed deterministic EvalBinOp to DetermEvalBinOpNN. This name mangling is unfortunately needed because virtual methods with the same name can be hidden by subclasses. by Ted Kremenek · 16 years ago
  15. 9c4ce60 Created ValueStateSet class to manage the creation of multiple states by a method. by Ted Kremenek · 16 years ago
  16. 6984d55 Remove dead method. by Ted Kremenek · 16 years ago
  17. eae5613 Add support shufpd by Mon P Wang · 16 years ago
  18. 76d3166 Update signature of EvalAssume. by Ted Kremenek · 16 years ago
  19. 481f4bc Provide static methods in BinaryOperator to determine if an opcode is an equality opcode, a relational opcode, or a logical opcode. by Ted Kremenek · 16 years ago
  20. c746954 Move GRTransferFunc* into ValueStateManager, and move the assumption logic there as well. by Ted Kremenek · 16 years ago
  21. 5387a29 Added headers by Ted Kremenek · 16 years ago
  22. e4d3ffa Remove redundant logic. by Ted Kremenek · 16 years ago
  23. fa81dff Begin major changes to EvalXXX methods in GRTransferFuncs. Currently some of the methods only return an RVal; we want them to be able to create an arbitrary number of states. by Ted Kremenek · 16 years ago
  24. 3b9a77e Fix for codegen crash on multibit bool bitfield initialization by Daniel Dunbar · 16 years ago
  25. ee93012 Moved RemoveDeadBindings logic for the contents of 'Store' to a virtual RemoveDeadBindings method in StoreManager. by Ted Kremenek · 16 years ago
  26. 9207e53 We now build universal binaries of the checker. by Ted Kremenek · 16 years ago
  27. 9480523 Unify ctx_iterator/ctx_begin()/ctx_end() and iterator/begin()/end() so that a single iterator type is used for both traversing decls of the same declaration context *and* of the parent declaration contexts, depending on the value of the bool parameter 'LookInParentCtx' that is passed to IdentifierResolver::begin(). by Argiris Kirtzidis · 16 years ago
  28. 2352861 RewriteObjC::SynthMessageExpr(): Fix super rewrite (a fairly recent regression). by Steve Naroff · 16 years ago
  29. 4f071ec When in C++, make EnumConstant names hide tag names in the same scope, instead of colliding with them. by Argiris Kirtzidis · 16 years ago
  30. 17919b5 Remove a FIXME from RewriteObjC::RewriteObjCSynchronizedStmt(). by Steve Naroff · 16 years ago
  31. cd25d78 RewriteObjC::Initialize(): add function decls used by @synchronized. by Steve Naroff · 16 years ago
  32. d335422 Two fixes: by Steve Naroff · 16 years ago
  33. 9d0ff35 RewriteObjC::RewriteObjCTryStmt():Don't synthesize a catch begin if there are 0 catch clauses. by Steve Naroff · 16 years ago
  34. 91044cf Teach RewriteObjC::RewriteObjCMethodDecl() to deal with pointer to function return types. by Steve Naroff · 16 years ago
  35. 5beb45f When checking for name collision between a tag and a previously defined namespace, the collision occured even when the tag was in a different nested scope. by Argiris Kirtzidis · 16 years ago
  36. fdde276 Add 'this' in the comments of Parser::ParseCastExpression to indicate that it is handled. by Argiris Kirtzidis · 16 years ago
  37. 78d3d2c Updated latest checker build. by Ted Kremenek · 16 years ago
  38. 9ea2f77 Fix regression introduced by http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20080714/006514.html. by Ted Kremenek · 16 years ago
  39. 4721991 Have scan-build control default analyses. by Ted Kremenek · 16 years ago
  40. d9eb592 Fix transfer function logic in GRSimpleVals for integer casts: only support casts from integers to integers. by Ted Kremenek · 16 years ago
  41. e8fe079 Add -DIBOutlet=__attribute__((iboutlet)) to analyzer arguments. by Ted Kremenek · 16 years ago
  42. 7aa0f4e For the MissingDealloc check, don't treat IBOutlet ivars as being needed to be released by Ted Kremenek · 16 years ago
  43. ff2410b Make iboutlet diagnostic lowercase by Ted Kremenek · 16 years ago
  44. ec695ed Use lowercase of attribute iboutlet to not conflict with the macro IBOutlet by Ted Kremenek · 16 years ago
  45. 4e5bb12 Added parsing/sema support for __attribute__ ((IBOutlet)), a clang-specific attribute that the static analyzer will use to recognize what ivars are IBOutlets. by Ted Kremenek · 16 years ago
  46. fea3952 Added --status-bugs option to scan-build. By default, the exit status of by Ted Kremenek · 16 years ago
  47. bd5e328 Per Sam Bishop's excellent suggestion, use "system" instead of backticks to invoke sub-commands used by scan-build. This avoids meta-character translation issues caused by a shell subprocess. by Ted Kremenek · 16 years ago
  48. d911299 Quote file names to better handle paths with spaces. by Ted Kremenek · 16 years ago
  49. f36f131 Incremented latest checker build. by Ted Kremenek · 16 years ago
  50. 6360004 Distinguish between dead stores and dead initializations. by Ted Kremenek · 16 years ago
  51. a48ea85 isRetain() and isRelease() now only returns true if "Retain"/"Release" appears in the suffix of a function's name. by Ted Kremenek · 16 years ago
  52. 4603557 scan-build now propagates up the exit status of the build command. by Ted Kremenek · 16 years ago
  53. 8663e16 Do not enable -warn-objc-missing-dealloc by default. by Ted Kremenek · 16 years ago
  54. adcf72b scan-build now interrogates clang for a list of available analyses, and presents by Ted Kremenek · 16 years ago
  55. 4c5378c Support retain/release tracking for CoreGraphics (CGxxxRef) objects. by Ted Kremenek · 16 years ago
  56. eb9601d Update radar component to file static analyzer bugs against. by Ted Kremenek · 16 years ago
  57. 03a8751 Removed disclaimer about checker-36, which is old news. by Ted Kremenek · 16 years ago
  58. fbda0ef Provide an "Analysis Scope" for Analyses so checks can either be run on code declarations (bodies) or Objective-C @implementation blocks. by Ted Kremenek · 16 years ago
  59. a6b8e45 Re-enable missing -dealloc check. by Ted Kremenek · 16 years ago
  60. 5aae7e0 Update Xcode project. by Ted Kremenek · 16 years ago
  61. 70a60eb Using new clang option to invoke the type-signature check of Objective-C instance methods. by Ted Kremenek · 16 years ago
  62. 8ce61b3 Break off declaration of Analysis enum into Analyses.def. The driver options in by Ted Kremenek · 16 years ago
  63. 4bd03ef Refactor Dead Stores error reporting to use the simplified BugReporter::EmitBasicReport interface. by Ted Kremenek · 16 years ago
  64. c5f0f65 http://llvm.org/bugs/show_bug.cgi?id=2523 by Nate Begeman · 16 years ago
  65. 39c766a Added method "EmitBasicReport" to BugReporter to simplify the emission of simple bug diagnostics. by Ted Kremenek · 16 years ago
  66. 96b1416 remove CGObjCEtoile until it compiles. by Chris Lattner · 16 years ago
  67. 3af15d5 Fix minor mistake in clang checkout instructions. by Ted Kremenek · 16 years ago
  68. 87a0d92 test commit. Remove previously added line. by Cédric Venet · 16 years ago
  69. d6a8a4c test commit. Add a blank line. by Cédric Venet · 16 years ago
  70. 824a371 Use of NextToken() makes ParseIdentifierStatement unnecessary. by Argiris Kirtzidis · 16 years ago
  71. 1d96315 Convert CRLF -> LF line endings. by Argiris Kirtzidis · 16 years ago
  72. 2ed8582 Added two new files to VC++ project. by Cédric Venet · 16 years ago
  73. ff579ff expand casts to handle what isIntegerConstantExpr handles. by Chris Lattner · 16 years ago
  74. 15e5911 Add support for __builtin_type_compatible_p, enums, etc. by Chris Lattner · 16 years ago
  75. 82437da start remembering diagnostics for various cases, add some missing by Chris Lattner · 16 years ago
  76. 9239513 Updated latest checker build. This build includes the new check for type-compatibility of the return types of ObjC methods. by Ted Kremenek · 16 years ago
  77. 9aed124 Tidy up error message. by Ted Kremenek · 16 years ago
  78. da069d8 Add CSS for word wrapping of long message bubbles. by Ted Kremenek · 16 years ago
  79. 422373c Provide a structure for passing down 'is evaluated' and passing up by Chris Lattner · 16 years ago
  80. 04ae73f Update Xcode project. by Ted Kremenek · 16 years ago
  81. cbea407 Run by default: -check-objc-methodsigs by Ted Kremenek · 16 years ago
  82. d072b89 Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 16 years ago
  83. 400d740 simplify some code a bit. by Chris Lattner · 16 years ago
  84. 265a089 share code between sizeof(expr) and sizeof(type) by Chris Lattner · 16 years ago
  85. a521db6 Fix comment. by Ted Kremenek · 16 years ago
  86. 045502c implement support for __extension__, make sure the result of a by Chris Lattner · 16 years ago
  87. 2c99c71 add a new getIntTypeSizeInBits method. by Chris Lattner · 16 years ago
  88. 334b194 rename "SInt" methods to "Int" in APValue. by Chris Lattner · 16 years ago
  89. 49226ac scan-build now also prints the HTML directory reports were emitted to at the end of the build. by Ted Kremenek · 16 years ago
  90. a42f09a make the new evaluator avoid conversions APValue<->APSInt in some cases. by Chris Lattner · 16 years ago
  91. 7d4d9f3 Refactored auditor interface within GRExprEngine and GRCoreEngine to use a "batch auditor" to dispatch to specialized auditors instead of having a separate vector for each audited Expr*. This not only provides a much cleaner implementation, but also allows us to install auditors for any expression. by Ted Kremenek · 16 years ago
  92. a823ccf rearrange some code, no functionality changes. by Chris Lattner · 16 years ago
  93. 438a8f0 Patch by Csaba Hruska and Peter Neumark: by Ted Kremenek · 16 years ago
  94. a205dad Updated Xcode project. by Ted Kremenek · 16 years ago
  95. f22f868 Refactored most of the "Store" piece of ValueState into a Store type. The by Ted Kremenek · 16 years ago
  96. 41189e8 Remove unused class AnnotatedPath. by Ted Kremenek · 16 years ago
  97. d45b9c6 Move some environment methods from ValueState/ValueStateManager to Environment/EnvironmentManager. by Ted Kremenek · 16 years ago
  98. 04e6a9d Add a new distcc status page, which is currently empty and not by Chris Lattner · 16 years ago
  99. ed02253 Add an accessor, patch by Csaba Hruska. by Chris Lattner · 16 years ago
  100. 680e1d9 Simplify the parser a bit by looking at the next token without consuming it (by Preprocessor::LookNext): by Argiris Kirtzidis · 16 years ago