1. 3db6cae introduce a new ObjCList templated class and start moving by Chris Lattner · 16 years ago
  2. 902141f Moved logic for -dump-cfg and -view-cfg into AnalysisConsumer. by Ted Kremenek · 16 years ago
  3. 235e031 Move -dump-live-variables logic to AnalysisConsumer. by Ted Kremenek · 16 years ago
  4. 34d7734 Migrate CheckerConsumer diagnostics to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  5. bc46f34 Move logic for "-checker-simple" to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  6. b35a74a Migrated driver logic for running the CF retain/release checker over to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  7. f4381fd Added AnalysisConsumer, a meta-level ASTConsumer class to drive various by Ted Kremenek · 16 years ago
  8. 23a0e45 Implement printing for ObjCClassDecl's, patch by Jean-Daniel Dupas! by Chris Lattner · 16 years ago
  9. 354840e Updated call to dead stores to use proper arguments. by Ted Kremenek · 16 years ago
  10. d8a65c1 Get -serialize working again, plus a bit of minor cleanup. by Eli Friedman · 17 years ago
  11. e7d07d1 Moved LangOptions from TranslationUnit to ASTContext. This induced a variety of cleanups in some ASTConsumers. by Ted Kremenek · 17 years ago
  12. e3a6198 Added "InitializeTU" to ASTConsumer. This is used by Sema::ParseAST to pass a by Ted Kremenek · 17 years ago
  13. 9b52393 Fix crash with -serialize (reported to cfe-dev). The issue was by Eli Friedman · 17 years ago
  14. 1a2b90d Make sure method definitions get output with -ast-dump. by Steve Naroff · 17 years ago
  15. 33de3f0 This patch introduces declaration of getter methods for ObjC2's by Fariborz Jahanian · 17 years ago
  16. b89ca23 Print ObjC methods of ObjC classes. by Fariborz Jahanian · 17 years ago
  17. 5251e13 Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 17 years ago
  18. 46b55e5 percolate @optional/@required protocols down to ASTs for by Fariborz Jahanian · 17 years ago
  19. 9f74161 When running the reference count checker twice (GC and non-GC mode), only emit by Ted Kremenek · 17 years ago
  20. 072192b added preliminary diagnostics in scan-build results to denote whether by Ted Kremenek · 17 years ago
  21. e5c3012 Provide the option to run the CF-retain checker in GC enabled mode. by Ted Kremenek · 17 years ago
  22. c1e9dea TranslationUnit now owns IdentifierTable, TargetInfo, and Selectors objects by Ted Kremenek · 17 years ago
  23. 628b96f Patch to build AST for property implementation declarations and by Fariborz Jahanian · 17 years ago
  24. 339b9c2 class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 17 years ago
  25. 3dd4ba4 Added property decl support for protocols. by Fariborz Jahanian · 17 years ago
  26. 7e7e387 This patch adds support for declaraing properties in categories, by Fariborz Jahanian · 17 years ago
  27. 47abe76 Hook up HTMLDiagnostics to use Chris's new syntax highlighting. --html-diags by Ted Kremenek · 17 years ago
  28. 24bd3c4 Handle "__private_extern__" storage class when printing FunctionDecls. by Ted Kremenek · 17 years ago
  29. 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 17 years ago
  30. 080c40b Use SourceManager::isFromMainFile() by Ted Kremenek · 17 years ago
  31. 55af98c Added driver option "-checker-opt-analyze-headers" to force the static by Ted Kremenek · 17 years ago
  32. dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 17 years ago
  33. 3ea0b6a Fix some bonehead bugs in summary generation in CFRefCount. by Ted Kremenek · 17 years ago
  34. d71ed26 Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 17 years ago
  35. 0676751 silence some warnings when assertions are disabled. by Chris Lattner · 17 years ago
  36. 8fb0016 Better handling for tabs with message bubbles. by Ted Kremenek · 17 years ago
  37. 4dc41cc Inlined clang/Analysis/Analyses/GRSimpleVals.h into LocalCheckers.h and removed by Ted Kremenek · 17 years ago
  38. f186f30 Disable timing diagnostics for GRSimpleVals. by Ted Kremenek · 17 years ago
  39. 1c33975 Don't emit any timings for GRSimple if the CFG is not going to be built. by Ted Kremenek · 17 years ago
  40. a567425 clean up iteration over propertydecls. by Chris Lattner · 17 years ago
  41. f4af515 clean up property memory allocation to move it into the ast classes by Chris Lattner · 17 years ago
  42. f3a7af9 Convert more counts to be zero based instead of -1 based, make them unsigned. by Chris Lattner · 17 years ago
  43. 58cce3b Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 17 years ago
  44. 1b9df4c Emit warnings for undefined control-flow. by Ted Kremenek · 17 years ago
  45. 63bbe53 Path-sensitive analyses no longer take a FunctionDecl, but any Decl representing by Ted Kremenek · 17 years ago
  46. 7cb1593 The LiveVariables analysis no longer requires a FunctionDecl&; this allows it by Ted Kremenek · 17 years ago
  47. 4102af9 Added bandaid support in CFG construction for ObjCForEachStmt and ObjCAtTryStmt: by Ted Kremenek · 17 years ago
  48. ffe0f43 Added --trim-path-graph to the driver to trim paths from the ExplodedGraph by Ted Kremenek · 17 years ago
  49. 2fff37e Added boilerplate to execute the CF reference count checker (which isn't yet implemented). by Ted Kremenek · 17 years ago
  50. c81c814 convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 17 years ago
  51. bfc10c9 Modified clang driver option -dump-live-variables to (optionally) use the by Ted Kremenek · 17 years ago
  52. 5f39c2d clang driver options --dump-cfg and --view-cfg now (optionally) use the by Ted Kremenek · 17 years ago
  53. 71ac9c4 When running the GRSimpleVals analysis, skip functions that do not by Ted Kremenek · 17 years ago
  54. b9c31f0 For now, --grsimple skips analyzing functions in header files. by Ted Kremenek · 17 years ago
  55. 9dca062 --grsimple now reports the number of nodes in the ExplodedGraph for by Ted Kremenek · 17 years ago
  56. cb33093 Running -grsimple now emits diagnostics about the time spent analyzing each function. Will by Ted Kremenek · 17 years ago
  57. d55fe52 Added --grsimple-view option to clang driver; this is the same as by Ted Kremenek · 17 years ago
  58. e01c987 Renamed GRConstants => GRSimpleVals. by Ted Kremenek · 17 years ago
  59. dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 17 years ago
  60. 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 17 years ago
  61. 61900f0 Handle top-level asm declarations. by Anders Carlsson · 17 years ago
  62. 19227e3 Added proof-of-concept NULL pointer diagnostics to GRConstants. by Ted Kremenek · 17 years ago
  63. 8ee3c03 move the codegen ASTConsumer out of the driver into libcodegen, by Chris Lattner · 17 years ago
  64. e66b65c pull .ll and .bc writing out of the ASTConsumer destructors into some top by Chris Lattner · 17 years ago
  65. d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 17 years ago
  66. bffaa83 Modified LiveVariables to perform all of its base initialization in the ctor, by Ted Kremenek · 17 years ago
  67. cb48b9c Driver now passes the top-level FunctionDecl* to GRConstants. by Ted Kremenek · 17 years ago
  68. 874d63f Added passing "ASTContext" to both GREngine and GRConstants. by Ted Kremenek · 17 years ago
  69. ee98546 Hooked up the GRConstants analysis to the driver. by Ted Kremenek · 17 years ago
  70. c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
  71. 4b1daf0 Fix some 80 col violations by Chris Lattner · 17 years ago
  72. e603df4 Added most of the boilerplate to the driver needed to run the graph-reachability by Ted Kremenek · 17 years ago
  73. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  74. ef5a85d Refactor the decl printer, patch by Mike Stump! by Chris Lattner · 17 years ago
  75. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  76. 4c92b43 Make output files binary mode for -emit-llvm-bc by Christopher Lamb · 17 years ago
  77. 396f9fe Almost the best possible handling of stdin/stdout for llvm-emit-bc! by Christopher Lamb · 17 years ago
  78. 8bd848f Better handing of stdin/stdout for -emit-llvm-bc by Christopher Lamb · 17 years ago
  79. 2d6c065 Allow bitcode output to be redirected to stdout. by Christopher Lamb · 17 years ago
  80. fe947ad Implement -emit-llvm-bc option by Seo Sanghyeon · 17 years ago
  81. cf6e41b Directory restructing of Analysis files. by Ted Kremenek · 17 years ago
  82. ee53364 Converted uses of scoped_ptr to OwningPtr. by Ted Kremenek · 17 years ago
  83. 5411772 Created initial implementation of "BuildSerializer", and ASTConsumer by Ted Kremenek · 17 years ago
  84. f06c928 Split serialization ASTConsumers into two consumers: SingleFileSerializer and by Ted Kremenek · 17 years ago
  85. 95041a2 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 17 years ago
  86. fdfc198 Removed "SourceFile" from TranslationUnit. This same information will (soon) by Ted Kremenek · 17 years ago
  87. 63ea863 Removed storing inode and device number in TranslationUnit. by Ted Kremenek · 17 years ago
  88. 3910c7c Moved generation of the name of the serialized AST file into by Ted Kremenek · 17 years ago
  89. dca2927 Moved ReadBitcodeFile and EmitBitcodeFile out of TranslationUnit and made them by Ted Kremenek · 17 years ago
  90. 77cda50 Moved TranslationUnit from Driver to AST library. by Ted Kremenek · 17 years ago
  91. 3821d40 Changed -serialize-ast to not create a temporary directory, but instead by Ted Kremenek · 17 years ago
  92. 0404cd8 Set target data layout info in module. by Chris Lattner · 17 years ago
  93. a1fa3a1 Implemented -serialize-ast option for the driver. This is not really tested by Ted Kremenek · 17 years ago
  94. be6df08 more cleanups changing things like getInstanceVariables to iterators. by Chris Lattner · 17 years ago
  95. ab4c4d5 resolve some fixmes and clean up some code by eliminating the get*Vars apis to some classes and use iterators instead. by Chris Lattner · 17 years ago
  96. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  97. 0d6ca11 Fix an ast-print/ast-dump bug. by Chris Lattner · 17 years ago
  98. fb97b03 Warn about unsupported codegen with the diags machinery, giving us: by Chris Lattner · 17 years ago
  99. 1f64432 by Steve Naroff · 17 years ago
  100. ea75c55 Converted AST Pretty-Printer to use iostreams instead of FILE*. This fixes by Ted Kremenek · 17 years ago