1. ec2a4ed Add {ExternalSemaSource,SemaConsumer}::ForgetSema callback, and update PCHReader by Daniel Dunbar · 15 years ago
  2. 7d8a782 Don't call Decl::CollectingStats(false) and Stmt::CollectingStats(false). When called with false these functions return whether statistics are enabled. They don't change any state. Since we're not using the return value avoid calling them in the first place. by Kovarththanan Rajaratnam · 15 years ago
  3. 1ac7104 Fixes a typo, reported by Doug. by Fariborz Jahanian · 15 years ago
  4. 6490ae5 Silence some warnings produced by Clang, and add a missing header by Douglas Gregor · 15 years ago
  5. 63e963c Handle case of missing '@end' in implementation context by Fariborz Jahanian · 15 years ago
  6. 3a2838d Rework Sema code completion interface. by Daniel Dunbar · 15 years ago
  7. e119e84 Spell function pointer correctly. by Daniel Dunbar · 15 years ago
  8. 86d9a52 Refactor and simplify the CodeCompleteConsumer, so that all of the by Douglas Gregor · 15 years ago
  9. 81b747b Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 15 years ago
  10. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  11. f42e4a6 Fix build of clang with gcc-4.4: #include <cstdio> was missing. by Torok Edwin · 15 years ago
  12. 7b1fdbd PR3679 - enable #pragma weak aliasing. by Ryan Flynn · 15 years ago
  13. 0285767 Remove an unneeded header. by Mike Stump · 15 years ago
  14. 668c1a4 Lazy deserialization of the declaration chains associated with by Douglas Gregor · 15 years ago
  15. e778504 Introduce the notion of a SemaConsumer, which is an ASTConsumer that by Douglas Gregor · 15 years ago
  16. 498603d rearrange #include order. by Chris Lattner · 16 years ago
  17. f807fe0 When building a PCH file, don't perform end-of-translation-unit by Douglas Gregor · 16 years ago
  18. fdd0172 When writing a PCH file, keep track of all of the non-static, by Douglas Gregor · 16 years ago
  19. 682bf92 Push DeclGroup much farther throughout the compiler. Now the various by Chris Lattner · 16 years ago
  20. b28317a Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a by Chris Lattner · 16 years ago
  21. 557c5b1 push more ASTContext goodness out through interfaces that use TranslationUnit by Chris Lattner · 16 years ago
  22. 3599dbe remove TranslationUnit from ParseAST. by Chris Lattner · 16 years ago
  23. dacbc5d change HandleTranslationUnit to take an ASTContext instead of TranslationUnit by Chris Lattner · 16 years ago
  24. 7bb0da0 eliminate ASTConsumer::InitializeTU, all clients are by Chris Lattner · 16 years ago
  25. 9ecd26a simplify ParseAST by sucking -disable-free handling logic up into clang.cpp by Chris Lattner · 16 years ago
  26. 46157b5 Patch by Alexei Svitkine: Refactor Sema::ParseAST API to allow clients to pass as an argument a TranslationUnit object whose contents live beyond the call to ParseAST. by Ted Kremenek · 16 years ago
  27. c0ac492 Finish making AST BumpPtrAllocation runtime configurable (based on -disable-free). by Steve Naroff · 16 years ago
  28. 00ad0ef Remove the TopLevelDecls from TranslationUnit, since all of those decls are owned by the ASTContext's TranslationUnitDecl. There are definitely some leaking Decls now that I'll tackle tomorrow by Douglas Gregor · 16 years ago
  29. d6a1c5d Comment fix, ParseAST does not take ownership of the consumer. by Daniel Dunbar · 16 years ago
  30. d3db401 Add --disable-free flag to clang. by Daniel Dunbar · 16 years ago
  31. 77ee5ed Re-enable deletion of AST nodes upon completion of ParseAST. by Ted Kremenek · 16 years ago
  32. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  33. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  34. 7e7e625 ParseAST now never releases the passed ASTConsumer. This is the responsibility of the client. by Ted Kremenek · 16 years ago
  35. 159346a ParseAST now conditionally deletes the passed ASTConsumer. by Ted Kremenek · 16 years ago
  36. c87190d 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
  37. 7ff22b2 Introduce preliminary support for NSString format-string checking. by Ted Kremenek · 16 years ago
  38. e7d07d1 Moved LangOptions from TranslationUnit to ASTContext. This induced a variety of cleanups in some ASTConsumers. by Ted Kremenek · 16 years ago
  39. e3a6198 Added "InitializeTU" to ASTConsumer. This is used by Sema::ParseAST to pass a by Ted Kremenek · 16 years ago
  40. 80f3346 Stop leaking the main Sema object. (Leak found using valgrind.) by Eli Friedman · 16 years ago
  41. 27f8a28 Try to plug some memory leaks... by Ted Kremenek · 16 years ago
  42. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from Sema/ParseAST.cpp]
  43. 8ee3c03 move the codegen ASTConsumer out of the driver into libcodegen, by Chris Lattner · 17 years ago
  44. 2ae34ed pass the astconsumer into Sema's ctor, clean up some stuff in by Chris Lattner · 17 years ago
  45. e91c134 rename ASTSTreamer.{h|cpp} -> ParseAST.{h|cpp} by Chris Lattner · 17 years ago[Renamed (93%) from Sema/ASTStreamer.cpp]
  46. a0e328f kill the ASTStreamer class, inlining it into its only client: clang::ParseAST by Chris Lattner · 17 years ago
  47. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  48. 95041a2 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 17 years ago
  49. 89307ff by Steve Naroff · 17 years ago
  50. 1f64432 by Steve Naroff · 17 years ago
  51. 31e6c7d Fix ownership model of ParseAST to allow the dtor of by Chris Lattner · 17 years ago
  52. 26e4cd3 Patch to synthesize computation of Ivar offset in rewritten c file. by Fariborz Jahanian · 17 years ago
  53. 58ff9e8 by Steve Naroff · 17 years ago
  54. 53b0dab Make a significant change to invert the control flow handling by Chris Lattner · 17 years ago
  55. 68d331a by Steve Naroff · 17 years ago
  56. 4b1aa81 remove some obsolete interfaces. by Chris Lattner · 17 years ago
  57. 556beb7 add a new ASTConsumer consumer to simplify stuff in the driver. by Chris Lattner · 17 years ago
  58. 6f4b92c Fix 80 col violations. by Chris Lattner · 17 years ago
  59. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago