1. d9ff48a Have ccc-analyzer skip any files with an unknown (or absent) extension. by Ted Kremenek · 16 years ago
  2. 4cb26b0 add c++ status to sidebar by Chris Lattner · 16 years ago
  3. c05f951 Updated latest checker build. by Ted Kremenek · 16 years ago
  4. f7ff2ce Skip the "-dealloc" check if a ObjC class contains no ivars. by Ted Kremenek · 16 years ago
  5. 4ea864d Added an "ivar_empty" method to ObjCInterfaceDecl. by Ted Kremenek · 16 years ago
  6. fd32dbf For the -dealloc checker, check the LangOptions to determine whether or not the code is compiled with GC. by Ted Kremenek · 16 years ago
  7. fa3c1eb -Added bool feature. by Argiris Kirtzidis · 16 years ago
  8. 92b6dca -Change slightly the link to cxx_status.html of the home page. by Argiris Kirtzidis · 16 years ago
  9. 9b2f304 Updated latest checker build. by Ted Kremenek · 16 years ago
  10. c2a9eae Have BugReporter::getCFG and BugReporter::getLiveVariables returns pointers instead of references, because they can both fail by Ted Kremenek · 16 years ago
  11. 1824ab8 Updated latest checker build. by Ted Kremenek · 16 years ago
  12. ebd001d Update Xcode project. by Ted Kremenek · 16 years ago
  13. 724133b Added static analysis check to see if a subclass of NSObject implements -dealloc, and whether or not that implementation calls [super dealloc]. by Ted Kremenek · 16 years ago
  14. c7436af Shuffle things around in preparation for integrating Eli's constant evaluator. by Anders Carlsson · 16 years ago
  15. 26ef210 Make APValue an APSInt. by Anders Carlsson · 16 years ago
  16. d5b9224 new testcase by Chris Lattner · 16 years ago
  17. 7dbdc63 Fix PR2252: don't warn on negating an unsigned value ever, and don't emit by Chris Lattner · 16 years ago
  18. 5bf0ad5 Fix PR2020 by recovering by defining an anonymous enum, instead of recovering by Chris Lattner · 16 years ago
  19. 4d67773 Update test case with new clang arguments. by Ted Kremenek · 16 years ago
  20. 56b5e45 Update test case: simply running "clang -checker-simple" doesn't invoke the dead store checker anymore. We need "-warn-dead-stores" as well. by Ted Kremenek · 16 years ago
  21. eb9627b Unify the code path for the Dead Stores checker to always use the BugReporter interface. by Ted Kremenek · 16 years ago
  22. 7063365 ccc-analyzer now dispatches the options "-checker-cfref" and "-warn-dead-stores" to clang instead of just "-checker-cfref". by Ted Kremenek · 16 years ago
  23. ba1c7ed Refactored some of the BugReporter interface so that data such as the ASTContext&, PathDiagnosticClient*, can be provided by an external source. by Ted Kremenek · 16 years ago
  24. 1607f51 GRExprEngine now expects the LiveVariables information to be provided by its creator. by Ted Kremenek · 16 years ago
  25. 3349aa1 Added version of CheckDeadStores that accepts a client-provided LiveVariables object. by Ted Kremenek · 16 years ago
  26. ecf7951 Added method "HandleTranslationUnit" to ASTConsumer. This is called by ParseAST when all of the ASTs in a translation unit have been built. by Ted Kremenek · 16 years ago
  27. e972d85 Moved logic for -dump-cfg and -view-cfg into AnalysisConsumer. by Ted Kremenek · 16 years ago
  28. d899b0f Move -dump-live-variables logic to AnalysisConsumer. by Ted Kremenek · 16 years ago
  29. ed80d00 Migrate CheckerConsumer diagnostics to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  30. c8a5fd4 Move logic for "-checker-simple" to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  31. 2e51efd add a description of what sema and parser mean, add C++ style casts. by Chris Lattner · 16 years ago
  32. 60e2e34 Fix typo in test case. by Ted Kremenek · 16 years ago
  33. 2f17b60 Add note that most of C++ is not supported. by Argiris Kirtzidis · 16 years ago
  34. c37860f Set CSS defaults for tables. by Argiris Kirtzidis · 16 years ago
  35. d470d72 Drop 'C++' from the features; suggestion by Holger Schurig. by Argiris Kirtzidis · 16 years ago
  36. ae8a90d Fix the page title. by Argiris Kirtzidis · 16 years ago
  37. 6044169 minor tweaks, escape < and > by Gabor Greif · 16 years ago
  38. b6d20d4 add two popular c++ features by Gabor Greif · 16 years ago
  39. 5edddfe add c++ status link by Gabor Greif · 16 years ago
  40. f0af716 Add a C++ status report page. by Argiris Kirtzidis · 16 years ago
  41. d1b0cbe Add DeclCXX.[h.cpp] to clangAST.vcproj by Ted Kremenek · 16 years ago
  42. 1c6cd21 Migrated driver logic for running the CF retain/release checker over to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  43. 4e43cc3 Added AnalysisConsumer.[cpp,h] to clangDriver.vcproj. by Ted Kremenek · 16 years ago
  44. 0dc1658 Updated Xcode project with new files in the Driver: AnalysisConsumer.[h,cpp] by Ted Kremenek · 16 years ago
  45. 81ea799 Added AnalysisConsumer, a meta-level ASTConsumer class to drive various by Ted Kremenek · 16 years ago
  46. 98600ac Added reference count checker test case. by Ted Kremenek · 16 years ago
  47. 175c0f7 Updated latest checker build. by Ted Kremenek · 16 years ago
  48. e44927e Unlike NSWindow objects, NSPanel objects initially do not have self-ownership. by Ted Kremenek · 16 years ago
  49. 28704b1 Update some comments. by Argiris Kirtzidis · 16 years ago
  50. 38f1671 Add Sema support for C++ classes. by Argiris Kirtzidis · 16 years ago
  51. 4b294e7 Updated checker build to checker-51 by Ted Kremenek · 16 years ago
  52. 4e1d22f Temporarily treat "Autorelease" as "StopTracking". This is the original behavior. by Ted Kremenek · 16 years ago
  53. 2a674dc Make a few related changes: by Chris Lattner · 16 years ago
  54. 900b052 When inspecting the build command, strip off the preceding path to the build command. by Ted Kremenek · 16 years ago
  55. e5a4bb0 Added "Autorelease" ArgEffect to better simulate "autorelease" messages. Right by Ted Kremenek · 16 years ago
  56. ed53910 Updated checker build to checker-48 by Ted Kremenek · 16 years ago
  57. fc765ff Bug fix: when copying prefix files using 'cp', don't split file names by spaces. by Ted Kremenek · 16 years ago
  58. 50df41e Fix a bug reported by Kelly Wilson, where we incorrectly by Chris Lattner · 16 years ago
  59. ca8dbca refactor some code out into a new method. by Chris Lattner · 16 years ago
  60. 65a5704 make type attribute processing static instead of methods on Sema. by Chris Lattner · 16 years ago
  61. 703c52d make the rest of the decl attribute processing methods be by Chris Lattner · 16 years ago
  62. f669015 make most of Sema public. Sema is a class private to the Sema library by Chris Lattner · 16 years ago
  63. a72440d move a few methods, no other change. by Chris Lattner · 16 years ago
  64. f9e90cc handle type attributes when converting types, not when processing decls. by Chris Lattner · 16 years ago
  65. 2024f0a Make ProcessDeclAttributes walk the declarator structure pulling by Chris Lattner · 16 years ago
  66. 9b384ca move some code from all callers of ProcessDeclAttributes into by Chris Lattner · 16 years ago
  67. d7e83d8 more attribute refactoring/renaming, no functionality change. by Chris Lattner · 16 years ago
  68. b0011ca more minor tidiness. by Chris Lattner · 16 years ago
  69. 8ed14aa more cleanups, refactor HandleVectorTypeAttribute by Chris Lattner · 16 years ago
  70. 1c15113 adjust the prototypes of a bunch of decl processing methods to take by Chris Lattner · 16 years ago
  71. f8009b4 Handle unnamed bitfields when parsing C++ classes. by Argiris Kirtzidis · 16 years ago
  72. 0832dbc Fix for PR2501; this patch makes usual arithmetic conversions for by Eli Friedman · 16 years ago
  73. 95256e6 Replace CurFunctionDecl and CurMethodDecl with methods getCurFunctionDecl() and getCurMethodDecl() that return the appropriate Decl through CurContext. by Argiris Kirtzidis · 16 years ago
  74. 2fecf07 Updated checker build to checker-47. by Ted Kremenek · 16 years ago
  75. 1121603 Fix a bug where we didn't promote 'const float' (or typedefs) to by Chris Lattner · 16 years ago
  76. dc78956 the 'mode' attribute is a decl attribute, not a type attribute. Move it to by Chris Lattner · 16 years ago
  77. cd66209 Nuno points out that my numbers were out of date by Chris Lattner · 16 years ago
  78. 195ce18 making progress! by Chris Lattner · 16 years ago
  79. 0d3899e Add missing include file (due to a file splitting in llvm). by Cédric Venet · 16 years ago
  80. c129055 Added a simple static analysis check to look for improper uses of CFCreateNumber. by Ted Kremenek · 16 years ago
  81. 6953a07 move decl attribute processing to a new SemaDeclAttr.cpp. by Chris Lattner · 16 years ago
  82. 1cb2c6f Update Xcode project so that the clang target depends on LLVMAnalysis.a by Ted Kremenek · 16 years ago
  83. c74ae3b clang uses the llvm backend, so define __llvm__ like llvm-gcc. by Chris Lattner · 16 years ago
  84. 0009c94 Another class -> struct in declaration to match definition. by Cédric Venet · 16 years ago
  85. 25349e4 Make clang work on 32 bit powerpc linux. by Matthijs Kooijman · 16 years ago
  86. 9b9f38d Link in LLVMAnalysis after LLVMCodeGen, since the latter depends on the former by Matthijs Kooijman · 16 years ago
  87. 5e77ade Make Declarator::getDeclSpec() return a const reference to avoid by Chris Lattner · 16 years ago
  88. 4c4a0d0 add a comment about something that was surprising, at least to me. by Chris Lattner · 16 years ago
  89. 4eb54d1 rename some attr tests for consistency. by Chris Lattner · 16 years ago
  90. 99dbc96 fix a bug handling type attributes in the declspec. declspec processing by Chris Lattner · 16 years ago
  91. c1cdb62 another const correctness bug with declspec. by Chris Lattner · 16 years ago
  92. 02c126d fix const correctness of accessor. by Chris Lattner · 16 years ago
  93. 578279d refactor more objc codegen interfaces to pass around selectors so by Chris Lattner · 16 years ago
  94. bcb3e86 indenting and other minor things. by Chris Lattner · 16 years ago
  95. ad9c3f3 refactor interface to GenerateClassStructure to avoid converting a by Chris Lattner · 16 years ago
  96. a5b1888 remove the old getSelector implementation, which removes some by Chris Lattner · 16 years ago
  97. 8384c14 avoid a lot of unneeded selector processing work by passing around by Chris Lattner · 16 years ago
  98. 469cb3e use cheaper/simpler getselector call for @selector exprs. by Chris Lattner · 16 years ago
  99. d71288e start avoid doing lots of unneeded work handling selectors by Chris Lattner · 16 years ago
  100. 769c55f improve indentation, avoid thrashing on maps and recalculating strings as much. by Chris Lattner · 16 years ago