1. 90eb539 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 Argyrios Kyrtzidis · 16 years ago
  2. f616ebb RewriteObjC::SynthMessageExpr(): Fix super rewrite (a fairly recent regression). by Steve Naroff · 16 years ago
  3. 0ff12f0 When in C++, make EnumConstant names hide tag names in the same scope, instead of colliding with them. by Argyrios Kyrtzidis · 16 years ago
  4. b2a3945 Remove a FIXME from RewriteObjC::RewriteObjCSynchronizedStmt(). by Steve Naroff · 16 years ago
  5. 59f05a4 RewriteObjC::Initialize(): add function decls used by @synchronized. by Steve Naroff · 16 years ago
  6. 8f3b265 Two fixes: by Steve Naroff · 16 years ago
  7. c9ba172 RewriteObjC::RewriteObjCTryStmt():Don't synthesize a catch begin if there are 0 catch clauses. by Steve Naroff · 16 years ago
  8. 76e429d Teach RewriteObjC::RewriteObjCMethodDecl() to deal with pointer to function return types. by Steve Naroff · 16 years ago
  9. b02ef24 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 Argyrios Kyrtzidis · 16 years ago
  10. d7464be Add 'this' in the comments of Parser::ParseCastExpression to indicate that it is handled. by Argyrios Kyrtzidis · 16 years ago
  11. 6271c5e Updated latest checker build. by Ted Kremenek · 16 years ago
  12. cd512dc Fix regression introduced by http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20080714/006514.html. by Ted Kremenek · 16 years ago
  13. 9012599 Have scan-build control default analyses. by Ted Kremenek · 16 years ago
  14. f496ee1 Fix transfer function logic in GRSimpleVals for integer casts: only support casts from integers to integers. by Ted Kremenek · 16 years ago
  15. ef42ca2 Add -DIBOutlet=__attribute__((iboutlet)) to analyzer arguments. by Ted Kremenek · 16 years ago
  16. f4ebf42 For the MissingDealloc check, don't treat IBOutlet ivars as being needed to be released by Ted Kremenek · 16 years ago
  17. f1b4c42 Make iboutlet diagnostic lowercase by Ted Kremenek · 16 years ago
  18. f135e80 Use lowercase of attribute iboutlet to not conflict with the macro IBOutlet by Ted Kremenek · 16 years ago
  19. 96329d4 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
  20. 363dc3f Added --status-bugs option to scan-build. By default, the exit status of by Ted Kremenek · 16 years ago
  21. 20161e9 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
  22. e078781 Quote file names to better handle paths with spaces. by Ted Kremenek · 16 years ago
  23. e703a90 Incremented latest checker build. by Ted Kremenek · 16 years ago
  24. f9c2a5d Distinguish between dead stores and dead initializations. by Ted Kremenek · 16 years ago
  25. 10161bf 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
  26. 5656a98 scan-build now propagates up the exit status of the build command. by Ted Kremenek · 16 years ago
  27. 24ec065 Do not enable -warn-objc-missing-dealloc by default. by Ted Kremenek · 16 years ago
  28. b7770c0 scan-build now interrogates clang for a list of available analyses, and presents by Ted Kremenek · 16 years ago
  29. 37d785b Support retain/release tracking for CoreGraphics (CGxxxRef) objects. by Ted Kremenek · 16 years ago
  30. 0ef77d4 Update radar component to file static analyzer bugs against. by Ted Kremenek · 16 years ago
  31. cfcc247 Removed disclaimer about checker-36, which is old news. by Ted Kremenek · 16 years ago
  32. f7f3c20 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
  33. 57bb37f Re-enable missing -dealloc check. by Ted Kremenek · 16 years ago
  34. 24ad90c Update Xcode project. by Ted Kremenek · 16 years ago
  35. 0037981 Using new clang option to invoke the type-signature check of Objective-C instance methods. by Ted Kremenek · 16 years ago
  36. fb9a48c Break off declaration of Analysis enum into Analyses.def. The driver options in by Ted Kremenek · 16 years ago
  37. 8f26986 Refactor Dead Stores error reporting to use the simplified BugReporter::EmitBasicReport interface. by Ted Kremenek · 16 years ago
  38. be2341d http://llvm.org/bugs/show_bug.cgi?id=2523 by Nate Begeman · 16 years ago
  39. 5720207 Added method "EmitBasicReport" to BugReporter to simplify the emission of simple bug diagnostics. by Ted Kremenek · 16 years ago
  40. ca33f79 remove CGObjCEtoile until it compiles. by Chris Lattner · 16 years ago
  41. 8c22bc3 Fix minor mistake in clang checkout instructions. by Ted Kremenek · 16 years ago
  42. bb2627d test commit. Remove previously added line. by Cedric Venet · 16 years ago
  43. 82bdaba test commit. Add a blank line. by Cedric Venet · 16 years ago
  44. b9f930d Use of NextToken() makes ParseIdentifierStatement unnecessary. by Argyrios Kyrtzidis · 16 years ago
  45. 63cf923 Convert CRLF -> LF line endings. by Argyrios Kyrtzidis · 16 years ago
  46. a31bfc2 Added two new files to VC++ project. by Cedric Venet · 16 years ago
  47. 732b223 expand casts to handle what isIntegerConstantExpr handles. by Chris Lattner · 16 years ago
  48. 4c4867e Add support for __builtin_type_compatible_p, enums, etc. by Chris Lattner · 16 years ago
  49. 54176fd start remembering diagnostics for various cases, add some missing by Chris Lattner · 16 years ago
  50. b0ac214 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
  51. e4773eb Tidy up error message. by Ted Kremenek · 16 years ago
  52. 170db7c Add CSS for word wrapping of long message bubbles. by Ted Kremenek · 16 years ago
  53. 87eae5e Provide a structure for passing down 'is evaluated' and passing up by Chris Lattner · 16 years ago
  54. 0e0caa2 Update Xcode project. by Ted Kremenek · 16 years ago
  55. 5b10bd7 Run by default: -check-objc-methodsigs by Ted Kremenek · 16 years ago
  56. 0d8019e Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 16 years ago
  57. 75a4881 simplify some code a bit. by Chris Lattner · 16 years ago
  58. fcee001 share code between sizeof(expr) and sizeof(type) by Chris Lattner · 16 years ago
  59. 078c0bc Fix comment. by Ted Kremenek · 16 years ago
  60. ac7cb60 implement support for __extension__, make sure the result of a by Chris Lattner · 16 years ago
  61. 7a76778 add a new getIntTypeSizeInBits method. by Chris Lattner · 16 years ago
  62. cf0f51d rename "SInt" methods to "Int" in APValue. by Chris Lattner · 16 years ago
  63. 150c212 scan-build now also prints the HTML directory reports were emitted to at the end of the build. by Ted Kremenek · 16 years ago
  64. b542afe make the new evaluator avoid conversions APValue<->APSInt in some cases. by Chris Lattner · 16 years ago
  65. bdb435d 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
  66. f5eeb05 rearrange some code, no functionality changes. by Chris Lattner · 16 years ago
  67. 0ce902b Patch by Csaba Hruska and Peter Neumark: by Ted Kremenek · 16 years ago
  68. eb04751 Updated Xcode project. by Ted Kremenek · 16 years ago
  69. 4323a57 Refactored most of the "Store" piece of ValueState into a Store type. The by Ted Kremenek · 16 years ago
  70. e569031 Remove unused class AnnotatedPath. by Ted Kremenek · 16 years ago
  71. d72ee90 Move some environment methods from ValueState/ValueStateManager to Environment/EnvironmentManager. by Ted Kremenek · 16 years ago
  72. 412e17f Add a new distcc status page, which is currently empty and not by Chris Lattner · 16 years ago
  73. e3d5e3a Add an accessor, patch by Csaba Hruska. by Chris Lattner · 16 years ago
  74. f7da726 Simplify the parser a bit by looking at the next token without consuming it (by Preprocessor::LookNext): by Argyrios Kyrtzidis · 16 years ago
  75. 9e0ed0b Add Preprocessor::LookNext method, which implements an efficient way to 'take a peek' at the next token without consuming it. by Argyrios Kyrtzidis · 16 years ago
  76. a80e448 More information on filing bug reports. by Ted Kremenek · 16 years ago
  77. 1fa7f58 Remove getParentMap() from GRExprEngine. by Ted Kremenek · 16 years ago
  78. 7671bc1 Updated checker build. by Ted Kremenek · 16 years ago
  79. 66e855f Add test case. by Ted Kremenek · 16 years ago
  80. 070a825 Fix PR2519: correctly handle CFDictionaryCreate. by Ted Kremenek · 16 years ago
  81. 49ff7a1 Extend va_start checking to include __builtin_stdarg_start. by Ted Kremenek · 16 years ago
  82. 6a705f0 Codegen support for __builtin_stdarg_start by Chris Lattner · 16 years ago
  83. f8396b6 Add parser support for __builtin_stdarg_start, PR2531 by Chris Lattner · 16 years ago
  84. 3929f98 Add Environment.cpp to the clangAnalysis Visual Studio project. by Ted Kremenek · 16 years ago
  85. 48fa89e Update Xcode project. by Ted Kremenek · 16 years ago
  86. 8133a26 Initial work on splitting the ValueState into an Environment, Store, and by Ted Kremenek · 16 years ago
  87. f794675 More info on filing static analysis bug reports. by Ted Kremenek · 16 years ago
  88. 5f6b632 revert my bogus attempt to fix the comment. sorry for the noise. by Nuno Lopes · 16 years ago
  89. 559e56b Fix small bug. The evaluator now works well enough to pass all tests by Anders Carlsson · 16 years ago
  90. 650c92f More constant expression work. by Anders Carlsson · 16 years ago
  91. a25ae3d Move out some methods. by Anders Carlsson · 16 years ago
  92. 2bad168 More work. by Anders Carlsson · 16 years ago
  93. 0fe52e1 Compilation fix by Seo Sanghyeon · 16 years ago
  94. 06a3675 Port more of Eli's evaluator over. This makes the int evaluator handle binary and unary operators. by Anders Carlsson · 16 years ago
  95. c754aa6 Commit beginnings of int evaluator. Currently not used. by Anders Carlsson · 16 years ago
  96. 62f6b21 Add LValue setters for APValue by Anders Carlsson · 16 years ago
  97. 9e9f2a4 Updated latest checker build. by Ted Kremenek · 16 years ago
  98. f6f593f In a report-XXXXX.html, make the title include the name of the file with the bug. Patch by Jean-Daniel Dupas! by Ted Kremenek · 16 years ago
  99. 88a96d6 Mark the "Bug Type" column as being initially sorted (display the sort ding) so that users can readily see that the table can be sorted. by Ted Kremenek · 16 years ago
  100. 2645c77 Output html should have 'class=' before "sorttable_nosort". by Ted Kremenek · 16 years ago