1. 11ddb7d add a new helper function to FunctionDecl instead of it being by Chris Lattner · 15 years ago
  2. c62a2fe Make sure that the consumer sees all interested decls. This fixes Preview by Douglas Gregor · 15 years ago
  3. de9a81b Add new checker-specific attribute 'objc_ownership_retain'. This isn't hooked up by Ted Kremenek · 15 years ago
  4. b5f1562 reject explicit pointer arithmetic on interface pointers in 64-bit objc ABI by Chris Lattner · 15 years ago
  5. 0fc169e Add new checker-specific attribute 'objc_ownership_returns'. This isn't hooked by Ted Kremenek · 15 years ago
  6. 02bbfa3 Add CXXExprWithCleanup by Anders Carlsson · 15 years ago
  7. f0aaf7a PCH support for the global method pool (= instance and factory method by Douglas Gregor · 15 years ago
  8. 83d63c7 Add PCH support for #import. by Steve Naroff · 15 years ago
  9. 524fa13 Make CXXTemporaryObjectExpr inherit from CXXConstructExpr. by Anders Carlsson · 15 years ago
  10. 09c4abb Add an ASTContext parameter to CXXTemporaryObjectExpr. by Anders Carlsson · 15 years ago
  11. 26de549 Add a VarDecl parameter to the CXXTemporaryObjectExpr constructor. It's unused for now, so no functionality change yet. Also, create CXXTempVarDecls to pass to the CXXTemporaryObjectExpr ctor. by Anders Carlsson · 15 years ago
  12. 76b3291 Make sure that ObjCCompatibleAlias and ObjCImplementation decls are considered NamedDecls by Douglas Gregor · 15 years ago
  13. bd6734e Make the CXXConstructExpr public and add a StmtClass to it. No functionality change. by Anders Carlsson · 15 years ago
  14. 15ef2b5 Move the CXXConstructExpr before the CXXTemporaryObjectExpr so that the temporary object expr can inherit from the construct expr. No functionality change. by Anders Carlsson · 15 years ago
  15. 1efaa95 Fix rdar://6821047 - clang crashes on subscript of interface in 64-bit mode by Chris Lattner · 15 years ago
  16. 8fc463a Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's good for uniformity is good for PCH (or is it the other way around?). by Douglas Gregor · 15 years ago
  17. 319ac89 PCH support for all of the predefined Objective-C types, such as id, by Douglas Gregor · 15 years ago
  18. e9de8eb accept and ignore -Wconversion by Chris Lattner · 15 years ago
  19. b3efa98 Fix handling of C99 "extern inline" semantics when dealing with by Douglas Gregor · 15 years ago
  20. 08f537f Fix rdar://6819438 - -Wmissing-noreturn not recognised by clang, by Chris Lattner · 15 years ago
  21. 90cd1bb Add PCH read/write support for Objective-C Selectors. by Steve Naroff · 15 years ago
  22. 4863db4 fix a problem producing debug info with global blocks. by Chris Lattner · 15 years ago
  23. 9396dcf Add implicit definition of objc_msgSend. by Daniel Dunbar · 15 years ago
  24. b5437d2 the logic for computing __func__ and friends is really broken: by Chris Lattner · 15 years ago
  25. 2432cd3 Silence warnings about common forms of -Wstrict-aliasing etc. by Chris Lattner · 15 years ago
  26. 291be39 PCH (de-)serialization of the protocols in an ObjCInterfaceDecl by Douglas Gregor · 15 years ago
  27. 8818c4f PCH support for ObjCPropertyImplDecl by Douglas Gregor · 15 years ago
  28. 8f36aba The ivars in an ObjCImplementationDecl are now stored in the by Douglas Gregor · 15 years ago
  29. 10b0e1f PCH support for ObjCCategoryImplDecl (which can't be tested now). by Douglas Gregor · 15 years ago
  30. 2c2d43c PCH (de-)serialization for ObjCImplDecl. This can't be tested yet. by Douglas Gregor · 15 years ago
  31. e349bea Add a CXXConstructExpr that represents an implicit call to a C++ constructor. I think CXXTemporaryObjectExpr is going to become a subclass of CXXConstructExpr, since CXXTemporaryObjectExpr represents a syntactic temporary, for example T() by Anders Carlsson · 15 years ago
  32. 653f1b1 Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 15 years ago
  33. 70e5a14 PCH support for Objective-C property declarations (UNTESTED!) by Douglas Gregor · 15 years ago
  34. 2512308 Add PCH statistics for the number/percent of lexical/visible declcontexts read by Douglas Gregor · 15 years ago
  35. 4c5fcd9 Add PathDiagnosticRange to PathDiagnostics. These simply wrap SourceRange and by Ted Kremenek · 15 years ago
  36. 14c22f2 Support locally-declared external declarations in PCH files by Douglas Gregor · 15 years ago
  37. 4c0e86b Support tentative definitions in precompiled headers. This isn't likely by Douglas Gregor · 15 years ago
  38. 370187c Remove the serialization code that predates precompiled by Douglas Gregor · 15 years ago
  39. 6cfc1a8 Eliminate some FIXMEs in the PCH reader that were either already fixed or aren't actually things to fix by Douglas Gregor · 15 years ago
  40. 0af2ca4 Minimize the number and kind of "external definitions" that the PCH by Douglas Gregor · 15 years ago
  41. 2deaea3 Lazy loading of builtins for precompiled headers. by Douglas Gregor · 15 years ago
  42. a243578 Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface. by Daniel Dunbar · 15 years ago
  43. 068360e ObjCQualifiedClass is dead, remove it. by Chris Lattner · 15 years ago
  44. d7a3fcd pch support for protocol qualified id's. by Chris Lattner · 15 years ago
  45. 3a57a37 add three new objc expression types. @selector doesn't work because we have no by Chris Lattner · 15 years ago
  46. 4dcf151a implement serialization support for @encode, by Chris Lattner · 15 years ago
  47. 71dfdb9 Reorganize built-in initialization to separate the creation of target builtins from marking IdentifierInfos as builtins. No functionality change by Douglas Gregor · 15 years ago
  48. 3b3a458 Mark another TypeForDecl const and make getObjCInterfaceType's argument const. by Daniel Dunbar · 15 years ago
  49. d55a71d Fix some mishandling of the attr(gnu_inline) mode when used with by Chris Lattner · 15 years ago
  50. 37e2684 Lazy deserialization of macro definitions for precompiled headers. by Douglas Gregor · 15 years ago
  51. 25efa10 Tighten up blocks type checking. This was discussed back in the by Mike Stump · 15 years ago
  52. 668c1a4 Lazy deserialization of the declaration chains associated with by Douglas Gregor · 15 years ago
  53. 5b54b88 this is a warning now, return a well formed ast. by Chris Lattner · 15 years ago
  54. c62abc1 Refactor 'BasicStoreManager::CastRegion' and 'RegionStoreManager::CastRegion' by Ted Kremenek · 15 years ago
  55. f365d5b temporarily downgrade to a warning. by Chris Lattner · 15 years ago
  56. 0468fb9 Patch to diagnose use of objc's @defs in nonfragile abi. by Fariborz Jahanian · 15 years ago
  57. 72e0320 Recommit 69694 but this time also include the header changes (sorry for breaking by Ted Kremenek · 15 years ago
  58. ca79092 reject sizeof(itf) when itf is a forward declared interface, or when by Chris Lattner · 15 years ago
  59. b6c8c8b Explictly track tentative definitions within Sema, then hand those by Douglas Gregor · 15 years ago
  60. 30833f8 Add pch reader/writer support for most of DeclObjC.h. Very close to reading/writing all ObjC AST nodes that we will encounter in header files (still a few FIXME's). by Steve Naroff · 15 years ago
  61. a868a20 implement semantic analysis for @synchronized, fixing a crash on invalid by Chris Lattner · 15 years ago
  62. 46c3c4b add support for goto checking and @synchronized blocks, rdar://6810106 by Chris Lattner · 15 years ago
  63. e116ccf Split preprocessor initialization logic out of clang-cc into by Chris Lattner · 15 years ago
  64. 182e092 rename -fprint-source-range-info -> -fdiagnostics-print-source-range-info. by Chris Lattner · 15 years ago
  65. ce84c16 downgrade from extwarn to warning. by Chris Lattner · 15 years ago
  66. 2451b52 improve MacroInfo to track the source range of the macro definition, by Chris Lattner · 15 years ago
  67. 41c1747 add a preprocessor callback function for #undef, patch by Alexei Svitkine! by Chris Lattner · 15 years ago
  68. 19d28a6 Add a CXXDestroyExpr. Add classof member functions to CXXTempVarDecl. by Anders Carlsson · 15 years ago
  69. 4bc11af Use an APInt of target int size to detect overflow while parsing multichars. by Sanjiv Gupta · 15 years ago
  70. 86fa750 Add the beginnings of a CXXTempVarDecl class. by Anders Carlsson · 15 years ago
  71. 525c9b7 Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things by Daniel Dunbar · 15 years ago
  72. 75b163f Fixup codegen for write barriers for block variables. Radar 6786715 by Mike Stump · 15 years ago
  73. 3bfb885 Mark TypeForDecl mutable. - Let the const propogation begin. by Daniel Dunbar · 15 years ago
  74. 3251ceb Write the identifier table into the PCH file as an on-disk hash table by Douglas Gregor · 15 years ago
  75. 28e71cf Fix spelling error. by Steve Naroff · 15 years ago
  76. 33feeb0 Add pch reader/writer support for ObjCContainerDecl, ObjCInterfaceDecl, & ObjCIvarDecl. by Steve Naroff · 15 years ago
  77. cf2a721 the __gnuc_inline__ attribute is actually named __gnu_inline__, PR4023 by Chris Lattner · 15 years ago
  78. 2402280 Allow the Info type used in the on-disk hash table generator to have state by Douglas Gregor · 15 years ago
  79. df9bcd5 clean up anonymous bitfield diagnostics, PR4017 by Chris Lattner · 15 years ago
  80. e778504 Introduce the notion of a SemaConsumer, which is an ASTConsumer that by Douglas Gregor · 15 years ago
  81. 53c9d8a Add pch reader/writer support for ObjCMethodDecl. by Steve Naroff · 15 years ago
  82. 3432fa5 Make the on-disk hash table usable with non-file by Douglas Gregor · 15 years ago
  83. 9378ba4 Move the on-disk hash table code into its own header. No functionality change. by Douglas Gregor · 15 years ago
  84. 153bfe5 Make FieldDecl parameter to getObjCEncodingForType... const. by Daniel Dunbar · 15 years ago
  85. 5cbe5f9 Remove loc::FuncVal. by Zhongxing Xu · 15 years ago
  86. 9da8a68 Add option groups for -Wimplicit-int and -Wimplicit. by Chris Lattner · 15 years ago
  87. 369f447 get a CodeTextRegion when visiting FunctionDecl reference. by Zhongxing Xu · 15 years ago
  88. 0272b56 Hook up -Wunused-value to the unused expression warning. This is by Eli Friedman · 15 years ago
  89. 60952f9 Remove non-const form of lookupFieldDeclForIvar. by Daniel Dunbar · 15 years ago
  90. edaf877 implement "#pragma GCC diagnostic". Besides being a nice feature, this by Chris Lattner · 15 years ago
  91. 3bc172b move group twiddling options into Diagnostic.cpp instead of by Chris Lattner · 15 years ago
  92. 4d8aac3 Warn about uses of #pragma STDC FENV_ACCESS ON, since we don't by Chris Lattner · 15 years ago
  93. 6c5cf4a diagnose invalid syntax of STDC pragmas. by Chris Lattner · 15 years ago
  94. 4fb71b0 Print an error for uses of __thread on targets which don't support it. by Eli Friedman · 15 years ago
  95. b030f02 Add target property for whether thread-local storage is supported. by Eli Friedman · 15 years ago
  96. f545be5 reject invalid stuff in the STDC namespace. by Chris Lattner · 15 years ago
  97. 7695fba Forward f[no-]dollars-in-identifiers to clang, when specified. by Daniel Dunbar · 15 years ago
  98. af7cdf4 basic support for -Wunknown-pragmas, more coming. by Chris Lattner · 15 years ago
  99. 49138fc Forward -fno-diagnostics-fixit-info to clang-cc. by Daniel Dunbar · 15 years ago
  100. 63054b3 Add more thorough/correct checking for invalid __thread specifiers. by Eli Friedman · 15 years ago