1. 306ca04 ccc: Add generic assembler & linker tools which effectively shell out to gcc. by Daniel Dunbar · 16 years ago
  2. ae5d9b2 ccc: Add information about whether type can be user specified (a -x by Daniel Dunbar · 16 years ago
  3. e51b7c8 Allow multiple Microsoft calling-convention keywords. Fixes rdar://problem/6486133 by Douglas Gregor · 16 years ago
  4. 17660d9 assert if attempting to code gen. a property setter/getter by Fariborz Jahanian · 16 years ago
  5. a89ed20 Don't bother setting NextDeclarator for EnumConstantDecls. It isn't used by Douglas Gregor · 16 years ago
  6. cab994d When we see a reference to a struct, class, or union like "struct X" by Douglas Gregor · 16 years ago
  7. 7dc58b7 Add utils/SummarizeErrors. by Daniel Dunbar · 16 years ago
  8. 54e4be9 Add some comments to the virtual work. Thanks to Doug Gregor for the review. by Sebastian Redl · 16 years ago
  9. dbc9ee9 ccc: Get host information via Driver methods. by Daniel Dunbar · 16 years ago
  10. c1d0cb0 Dead stores checker: Don't flag dead stores for self-assignments (common escape hatch for 'unused variable' warnings). by Ted Kremenek · 16 years ago
  11. d310fde Enhance PTH 'getSpelling' caching: by Ted Kremenek · 16 years ago
  12. 79f36c9 Prevent a segfault for vaarg expressions on unsupported architectures. by Sebastian Redl · 16 years ago
  13. faca5e2 This patch removes mergeProperties and does the property lookup by Fariborz Jahanian · 16 years ago
  14. 8cb7340 Implement EmitUnsupportedRValue to generate an appropriately typed RValue. by Daniel Dunbar · 16 years ago
  15. 83faa29 Very basic support for pure virtual functions. by Sebastian Redl · 16 years ago
  16. d167538 Replace DeclContext's vector of ScopedDecl pointers with a linked list by Douglas Gregor · 16 years ago
  17. d394a27 Make sure that ScopedDecls passed to DeclContext::addDecl are added into their lexical context by Douglas Gregor · 16 years ago
  18. 40997b6 Always print out SourceManager stats with 'Stats' is true. This revealed that PTH always pulls in the source pages with -fsyntax-only (investigating further). by Ted Kremenek · 16 years ago
  19. 5d76484 Provide a new kind of iterator, the specific_decl_iterator, that by Douglas Gregor · 16 years ago
  20. bf5eb6c Emit more refined "unsupported" error for block expressions. by Daniel Dunbar · 16 years ago
  21. e3a6a68 Give "unsupported" error on calls through block pointers instead of crashes. by Daniel Dunbar · 16 years ago
  22. 451f83c Move property API's up to ObjCContainerDecl (removing a lot of duplicate code). by Steve Naroff · 16 years ago
  23. d4c2ec7 Fix rdar://6480479 - [parser] infinite loop on invalid input by Chris Lattner · 16 years ago
  24. 1298691 Convert block types in IRgen. This is not the correct type, but by Daniel Dunbar · 16 years ago
  25. 9689124 Block pointer types are not aggregate types. by Daniel Dunbar · 16 years ago
  26. 7339c9e Don't crash when our FunctionDecl has a non-identifier name by Douglas Gregor · 16 years ago
  27. 0a576d5 Fix crash on null deference when searching for readwrite properties in by Daniel Dunbar · 16 years ago
  28. 4ed45ea ccc: Start defining host information. by Daniel Dunbar · 16 years ago
  29. 6e4fa2c Addressed the issue in <rdar://problem/6479085>, where we failed to by Douglas Gregor · 16 years ago
  30. 45f7a98 Re-enable PTH testing for Cocoa.h and Carbon.h (and include testing for Objective-C++). by Ted Kremenek · 16 years ago
  31. 89d5304 Adding support for ObjC methods which have c-style by Fariborz Jahanian · 16 years ago
  32. ceacc81 Enable support for '-x objective-c++-header'. by Ted Kremenek · 16 years ago
  33. e98da52 Simpler solution to LiteralSupport compatibility: just add one whitespace character after each cached string. by Ted Kremenek · 16 years ago
  34. e4caf14 Invert assertion condition. by Ted Kremenek · 16 years ago
  35. f6f18b2 Temporarily revert r61956 and r61957 (PTH tests failing). by Ted Kremenek · 16 years ago
  36. c0fc469 Enhance -fsyntax-only test of Carbon.h to also include testing for PTH. by Ted Kremenek · 16 years ago
  37. 9dcfd51 Enhance -fsyntax-only test of Cocoa.h to also include testing for PTH. by Ted Kremenek · 16 years ago
  38. f66811e PTH: For the cached spellings of literals, store one whitespace character after the spelling to accomodate sanity checking in LiteralSuppoert.cpp. by Ted Kremenek · 16 years ago
  39. a2c3bc3 Add mm_malloc.h, patch by Sam Weinig. by Anders Carlsson · 16 years ago
  40. 4fb265c Place warning about 'readonly' property attributes which by Fariborz Jahanian · 16 years ago
  41. bdbbc2d Revert my previous, failed attempt to pretty-print anonymous struct/union accesses well. Added a FIXME so we know to revisit this later by Douglas Gregor · 16 years ago
  42. 788ef0a Fix ObjCInterfaceDecl::Destroy and ObjCProtocolDecl::Destroy to iterate and destroy all contained ObjCMethodDecls in one sweep. This fixes a use-after-free error found by valgrind. by Ted Kremenek · 16 years ago
  43. 96babf0 Remove double-insertion of EnumConstantDecls. Thanks to Zhongxing Xu for pointing this out by Douglas Gregor · 16 years ago
  44. d9be6cd Added iterator mechanism to ObjCContainerDecl to iterate over both class and instance methods at the same time. by Ted Kremenek · 16 years ago
  45. db568cf Unify the code for defining tags in C and C++, so that we always by Douglas Gregor · 16 years ago
  46. 5968d4e Add missing castToDeclContext/castFromDeclContext hooks. by Steve Naroff · 16 years ago
  47. 1bb3817 Remove a dead decl. by Steve Naroff · 16 years ago
  48. 4cf0d3f Move FIXME to a better location. by Steve Naroff · 16 years ago
  49. 5492c1b Removed ObjCContainerDecl::getPropertyMethods()...doesn't belong in the AST. by Steve Naroff · 16 years ago
  50. 438be77 Remove redundant method context (now that ObjCMethodDecl isa ScopedDecl). by Steve Naroff · 16 years ago
  51. 228fe4f Initialized member variable 'Implicit' in Decl's ctor. by Ted Kremenek · 16 years ago
  52. ab63fd6 This is a large/messy diff that unifies the ObjC AST's with DeclContext. by Steve Naroff · 16 years ago
  53. b287b21 Add isSubRegionOf() method to SubRegion. by Zhongxing Xu · 16 years ago
  54. 192bee4 Fix comment because we could have arbitrary number of overloaded functions with by Zhongxing Xu · 16 years ago
  55. a4d5bf5 PTH: Hook up getSpelling() caching in PTHLexer. This results in a nice by Ted Kremenek · 16 years ago
  56. d2c849d PTH: by Ted Kremenek · 16 years ago
  57. 485206a Remove debugging variable I forgot to remove in my last commit. by Ted Kremenek · 16 years ago
  58. 2e39556 Cache the "spellings" of string, character, and numeric literals in the PTH by Ted Kremenek · 16 years ago
  59. 4029188 Refactor CacheTokens to use a PTHWriter class that creates and manages most of the PTH generation data structures. No functionality change. by Ted Kremenek · 16 years ago
  60. 2ac4cd3 Objc's compatibility-alias semantics and code gen issue fix. by Fariborz Jahanian · 16 years ago
  61. b1d9eb3 Update some doxygen comments to be more rich. Remove StoreManager::GetRegionSVal. by Ted Kremenek · 16 years ago
  62. 7b61ab7 Refactor MemRegionManager instance variable into parent class. No functionality change. by Ted Kremenek · 16 years ago
  63. 1ae2770 Fix PR clang/3291 by Douglas Gregor · 16 years ago
  64. cc74331 Fix printing of member references to avoid displaying implicitly-generated member references, e.g., for anonymous struct/unions or implicit 'this' in member functions by Douglas Gregor · 16 years ago
  65. a04fcb6 Don't ICE when messaging on 'super' receiver when class by Fariborz Jahanian · 16 years ago
  66. 5fe09f7 Another nasty code gen. bug with trivial fix. Calling class by Fariborz Jahanian · 16 years ago
  67. c7f0161 Finished semantic analysis of anonymous unions in C++. by Douglas Gregor · 16 years ago
  68. 1ba9098 ccc: Make proper synthetic arguments in places we have to construct by Daniel Dunbar · 16 years ago
  69. b421dba ccc: Change Command to take list of strings for argv instead of Arg by Daniel Dunbar · 16 years ago
  70. d9d4d50 ObjC AST cleanups/simplifications (phase 1). by Steve Naroff · 16 years ago
  71. 3a42313 Use DeclContext::getLookupContext wherever necessary to ensure that we look through transparent contexts by Douglas Gregor · 16 years ago
  72. 38f4666 Test case for anonymous unions in C++ by Douglas Gregor · 16 years ago
  73. 38d38a0 When determining whether a variable is a file-scoped variable, check by Douglas Gregor · 16 years ago
  74. 6427145 ccc: Extend ArgList to support indexing into a synthetic arg array by Daniel Dunbar · 16 years ago
  75. 9d32bcd ccc: Refactor so that all accesses to actual input strings go through by Daniel Dunbar · 16 years ago
  76. 7f4b5a3 Update checker build. by Ted Kremenek · 16 years ago
  77. 723d333 Initial implementation of anonymous unions (and, as a GNU extension, by Douglas Gregor · 16 years ago
  78. 35920ed This commit reflects changes to the retain/release checker motivated by my by Ted Kremenek · 16 years ago
  79. ea301f9 ccc (old): Pass -arch through to assembler if given. by Daniel Dunbar · 16 years ago
  80. 69e781f Allow Objective-C entities to be declared within a transparent context by Douglas Gregor · 16 years ago
  81. 2bb9e6c SourceManager: Implement "lazy" creation of MemBuffers for source files. by Ted Kremenek · 16 years ago
  82. 0e54886 Remove redunant (and incorrect) call to SourceManager::PrintStats(). This would be called after a SourceManager was 'cleared', so it printed bogus results. Moreover, these stats are already printed earlier in the code path. by Ted Kremenek · 16 years ago
  83. ab1a363 Another tweak to handle the MS extensions (<rdar://problem/5956221>). by Steve Naroff · 16 years ago
  84. 34034d7 Add whitespace to silence the following warning in a Release build: warning: suggest a space before ';' or explicit braces around empty body in 'while' statement by Ted Kremenek · 16 years ago
  85. f704163 Return UnknownVal in RegionStoreManager::getSizeInElements() for unsupported regions. This silences a warning when compiling Release-Asserts builds. by Ted Kremenek · 16 years ago
  86. 6296cda Couple of code gen. fixes in ObjC's colection-statement. Hard by Fariborz Jahanian · 16 years ago
  87. 21bf4dc Fix <rdar://problem/5956221> clang ObjC rewriter: Microsoft-specific __fastcall keyword unrecognized. by Steve Naroff · 16 years ago
  88. f43bc32 Fix a typo. by Cédric Venet · 16 years ago
  89. 7898bf6 - Various comment typo fixes in Sema.h by Chris Lattner · 16 years ago
  90. 954381a it is ok to insert empty source ranges into diagnostics, declare variable in an if. by Chris Lattner · 16 years ago
  91. 093e31b simplify some code using 'continue' and the new 'isInIdentifierNamespace' predicate. by Chris Lattner · 16 years ago
  92. f0464ec Minor tweaks to the transparent declcontext patch by Douglas Gregor · 16 years ago
  93. ab6168e add a helper method. by Chris Lattner · 16 years ago
  94. d706dc8 rename MaybeParseCXXScopeSpecifier -> ParseOptionalCXXScopeSpecifier and by Chris Lattner · 16 years ago
  95. 08ab416 minor code cleanups, reduce indentation since 'if' block can't fall through. by Chris Lattner · 16 years ago
  96. 52d0459 ccc: Remove ValueArg::setValue, this is no longer used. by Daniel Dunbar · 16 years ago
  97. e9f1a69 ccc: Track last actual argument instance for each option & change by Daniel Dunbar · 16 years ago
  98. cada64a document annotation tokens. by Chris Lattner · 16 years ago
  99. 655972d Make Token::setLength assert that the token is not an annotation token. by Chris Lattner · 16 years ago
  100. 0f56bfb Oops. Un-publicify SrcMgr::ContentCache::Buffer. by Douglas Gregor · 16 years ago