1. e583364 add castToDeclContext/castFromDeclContext methods to RecordDecl. by Zhongxing Xu · 16 years ago
  2. 4312472 ccc: Introduce ToolChains for mapping Actions to Tools which can perform them. by Daniel Dunbar · 16 years ago
  3. a9ad2bc ccc: Add generic assembler & linker tools which effectively shell out to gcc. by Daniel Dunbar · 16 years ago
  4. d38c11e ccc: Add information about whether type can be user specified (a -x by Daniel Dunbar · 16 years ago
  5. 5a2f5d3 Allow multiple Microsoft calling-convention keywords. Fixes rdar://problem/6486133 by Douglas Gregor · 16 years ago
  6. 57966fc assert if attempting to code gen. a property setter/getter by Fariborz Jahanian · 16 years ago
  7. dcde115 Don't bother setting NextDeclarator for EnumConstantDecls. It isn't used by Douglas Gregor · 16 years ago
  8. 3218c4b When we see a reference to a struct, class, or union like "struct X" by Douglas Gregor · 16 years ago
  9. ef64fcf Add utils/SummarizeErrors. by Daniel Dunbar · 16 years ago
  10. c9b580a Add some comments to the virtual work. Thanks to Doug Gregor for the review. by Sebastian Redl · 16 years ago
  11. a75ea3d ccc: Get host information via Driver methods. by Daniel Dunbar · 16 years ago
  12. 3b58786 Dead stores checker: Don't flag dead stores for self-assignments (common escape hatch for 'unused variable' warnings). by Ted Kremenek · 16 years ago
  13. 5f07426 Enhance PTH 'getSpelling' caching: by Ted Kremenek · 16 years ago
  14. 0262f02 Prevent a segfault for vaarg expressions on unsupported architectures. by Sebastian Redl · 16 years ago
  15. a66793e This patch removes mergeProperties and does the property lookup by Fariborz Jahanian · 16 years ago
  16. 8fa73ed Implement EmitUnsupportedRValue to generate an appropriately typed RValue. by Daniel Dunbar · 16 years ago
  17. 9ba73ad Very basic support for pure virtual functions. by Sebastian Redl · 16 years ago
  18. 6037fcb Replace DeclContext's vector of ScopedDecl pointers with a linked list by Douglas Gregor · 16 years ago
  19. a8cc8ce Make sure that ScopedDecls passed to DeclContext::addDecl are added into their lexical context by Douglas Gregor · 16 years ago
  20. 1b95a65 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
  21. f8d49f6 Provide a new kind of iterator, the specific_decl_iterator, that by Douglas Gregor · 16 years ago
  22. 088a52d Emit more refined "unsupported" error for block expressions. by Daniel Dunbar · 16 years ago
  23. ce1d38b Give "unsupported" error on calls through block pointers instead of crashes. by Daniel Dunbar · 16 years ago
  24. 09c4719 Move property API's up to ObjCContainerDecl (removing a lot of duplicate code). by Steve Naroff · 16 years ago
  25. 1fd8011 Fix rdar://6480479 - [parser] infinite loop on invalid input by Chris Lattner · 16 years ago
  26. 4e174f1 Convert block types in IRgen. This is not the correct type, but by Daniel Dunbar · 16 years ago
  27. a782ca7 Block pointer types are not aggregate types. by Daniel Dunbar · 16 years ago
  28. 51efe56 Don't crash when our FunctionDecl has a non-identifier name by Douglas Gregor · 16 years ago
  29. 84efc04 Fix crash on null deference when searching for readwrite properties in by Daniel Dunbar · 16 years ago
  30. 9066af8 ccc: Start defining host information. by Daniel Dunbar · 16 years ago
  31. d043410 Addressed the issue in <rdar://problem/6479085>, where we failed to by Douglas Gregor · 16 years ago
  32. be3f7f3 Re-enable PTH testing for Cocoa.h and Carbon.h (and include testing for Objective-C++). by Ted Kremenek · 16 years ago
  33. 439c658 Adding support for ObjC methods which have c-style by Fariborz Jahanian · 16 years ago
  34. f890191 Enable support for '-x objective-c++-header'. by Ted Kremenek · 16 years ago
  35. e338ccd Simpler solution to LiteralSupport compatibility: just add one whitespace character after each cached string. by Ted Kremenek · 16 years ago
  36. defb709 Invert assertion condition. by Ted Kremenek · 16 years ago
  37. f376b48 Temporarily revert r61956 and r61957 (PTH tests failing). by Ted Kremenek · 16 years ago
  38. 6b61487 Enhance -fsyntax-only test of Carbon.h to also include testing for PTH. by Ted Kremenek · 16 years ago
  39. e547757 Enhance -fsyntax-only test of Cocoa.h to also include testing for PTH. by Ted Kremenek · 16 years ago
  40. f89f7f9 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
  41. d4a5c9a Add mm_malloc.h, patch by Sam Weinig. by Anders Carlsson · 16 years ago
  42. 17d0d0d Place warning about 'readonly' property attributes which by Fariborz Jahanian · 16 years ago
  43. b3eef68 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
  44. 6321c0a 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
  45. 2555351 Remove double-insertion of EnumConstantDecls. Thanks to Zhongxing Xu for pointing this out by Douglas Gregor · 16 years ago
  46. 7ed4fac Added iterator mechanism to ObjCContainerDecl to iterate over both class and instance methods at the same time. by Ted Kremenek · 16 years ago
  47. 72de667 Unify the code for defining tags in C and C++, so that we always by Douglas Gregor · 16 years ago
  48. b718b40 Add missing castToDeclContext/castFromDeclContext hooks. by Steve Naroff · 16 years ago
  49. 6804461 Remove a dead decl. by Steve Naroff · 16 years ago
  50. 4fb78c6 Move FIXME to a better location. by Steve Naroff · 16 years ago
  51. 92f863b Removed ObjCContainerDecl::getPropertyMethods()...doesn't belong in the AST. by Steve Naroff · 16 years ago
  52. 3e0a540 Remove redundant method context (now that ObjCMethodDecl isa ScopedDecl). by Steve Naroff · 16 years ago
  53. 40449fe Initialized member variable 'Implicit' in Decl's ctor. by Ted Kremenek · 16 years ago
  54. 0701bbb This is a large/messy diff that unifies the ObjC AST's with DeclContext. by Steve Naroff · 16 years ago
  55. 7e5d6ed Add isSubRegionOf() method to SubRegion. by Zhongxing Xu · 16 years ago
  56. 41761d6 Fix comment because we could have arbitrary number of overloaded functions with by Zhongxing Xu · 16 years ago
  57. 32a8ad5 PTH: Hook up getSpelling() caching in PTHLexer. This results in a nice by Ted Kremenek · 16 years ago
  58. b70e3da PTH: by Ted Kremenek · 16 years ago
  59. 500bab2 Remove debugging variable I forgot to remove in my last commit. by Ted Kremenek · 16 years ago
  60. be29533 Cache the "spellings" of string, character, and numeric literals in the PTH by Ted Kremenek · 16 years ago
  61. b978c66 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
  62. 305c658 Objc's compatibility-alias semantics and code gen issue fix. by Fariborz Jahanian · 16 years ago
  63. c6ed384 Update some doxygen comments to be more rich. Remove StoreManager::GetRegionSVal. by Ted Kremenek · 16 years ago
  64. d6cfbe4 Refactor MemRegionManager instance variable into parent class. No functionality change. by Ted Kremenek · 16 years ago
  65. bc468ba Fix PR clang/3291 by Douglas Gregor · 16 years ago
  66. 83233a4 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
  67. 4b1e275 Don't ICE when messaging on 'super' receiver when class by Fariborz Jahanian · 16 years ago
  68. b0d2794 Another nasty code gen. bug with trivial fix. Calling class by Fariborz Jahanian · 16 years ago
  69. 6b3945f Finished semantic analysis of anonymous unions in C++. by Douglas Gregor · 16 years ago
  70. 39cbfaa ccc: Make proper synthetic arguments in places we have to construct by Daniel Dunbar · 16 years ago
  71. db43990 ccc: Change Command to take list of strings for argv instead of Arg by Daniel Dunbar · 16 years ago
  72. e4f039e ObjC AST cleanups/simplifications (phase 1). by Steve Naroff · 16 years ago
  73. e21b994 Use DeclContext::getLookupContext wherever necessary to ensure that we look through transparent contexts by Douglas Gregor · 16 years ago
  74. bdae88f Test case for anonymous unions in C++ by Douglas Gregor · 16 years ago
  75. 17a9b9e When determining whether a variable is a file-scoped variable, check by Douglas Gregor · 16 years ago
  76. efb4aeb ccc: Extend ArgList to support indexing into a synthetic arg array by Daniel Dunbar · 16 years ago
  77. fb2c5c4 ccc: Refactor so that all accesses to actual input strings go through by Daniel Dunbar · 16 years ago
  78. bdd686d Update checker build. by Ted Kremenek · 16 years ago
  79. bcbffc4 Initial implementation of anonymous unions (and, as a GNU extension, by Douglas Gregor · 16 years ago
  80. 234a4c2 This commit reflects changes to the retain/release checker motivated by my by Ted Kremenek · 16 years ago
  81. 91dce08 ccc (old): Pass -arch through to assembler if given. by Daniel Dunbar · 16 years ago
  82. ce35607 Allow Objective-C entities to be declared within a transparent context by Douglas Gregor · 16 years ago
  83. 5b034ad SourceManager: Implement "lazy" creation of MemBuffers for source files. by Ted Kremenek · 16 years ago
  84. b789103 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
  85. 47f5209 Another tweak to handle the MS extensions (<rdar://problem/5956221>). by Steve Naroff · 16 years ago
  86. b8006e5 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
  87. a21362d Return UnknownVal in RegionStoreManager::getSizeInElements() for unsupported regions. This silences a warning when compiling Release-Asserts builds. by Ted Kremenek · 16 years ago
  88. f0906c4 Couple of code gen. fixes in ObjC's colection-statement. Hard by Fariborz Jahanian · 16 years ago
  89. 7ec5658 Fix <rdar://problem/5956221> clang ObjC rewriter: Microsoft-specific __fastcall keyword unrecognized. by Steve Naroff · 16 years ago
  90. da76b28 Fix a typo. by Cedric Venet · 16 years ago
  91. 823c44e - Various comment typo fixes in Sema.h by Chris Lattner · 16 years ago
  92. ead013e it is ok to insert empty source ranges into diagnostics, declare variable in an if. by Chris Lattner · 16 years ago
  93. 7bea766 simplify some code using 'continue' and the new 'isInIdentifierNamespace' predicate. by Chris Lattner · 16 years ago
  94. 4f3b8f8 Minor tweaks to the transparent declcontext patch by Douglas Gregor · 16 years ago
  95. d62fdc4 add a helper method. by Chris Lattner · 16 years ago
  96. 7a0ab5f rename MaybeParseCXXScopeSpecifier -> ParseOptionalCXXScopeSpecifier and by Chris Lattner · 16 years ago
  97. 2f27477 minor code cleanups, reduce indentation since 'if' block can't fall through. by Chris Lattner · 16 years ago
  98. 1dd2ada ccc: Remove ValueArg::setValue, this is no longer used. by Daniel Dunbar · 16 years ago
  99. ba6e323 ccc: Track last actual argument instance for each option & change by Daniel Dunbar · 16 years ago
  100. 3932fe0 document annotation tokens. by Chris Lattner · 16 years ago