1. 50d62d1 Introduce the canonical type smart pointers, and use them in a few places to by Douglas Gregor · 15 years ago
  2. 6ebd15e Canonicalization and profiling for overloaded function declarations, by Douglas Gregor · 15 years ago
  3. 2ec09f1 Canonicalize dependent extended vector types. by Douglas Gregor · 15 years ago
  4. 9fdbab3 Whitespace around else canonicalization and fix 80-col violations. by Mike Stump · 15 years ago
  5. 04d4bee Build canonical types for dependently-sized array types. by Douglas Gregor · 15 years ago
  6. 9d702ae Canonicalization of dependent C++0x decltype types. by Douglas Gregor · 15 years ago
  7. b197572 Canonicalization for dependent typeof(expr) types. by Douglas Gregor · 15 years ago
  8. b88e888 Support out-of-line definitions of the members of class template by Douglas Gregor · 15 years ago
  9. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  10. d99cbe6 [llvm up] by Douglas Gregor · 15 years ago
  11. 828e226 Use the new statement/expression profiling code to unique dependent by Douglas Gregor · 15 years ago
  12. f711c41 Some minor cleanups, thanks Chris. by Mike Stump · 15 years ago
  13. fd612db Some style fixes, thanks Chris. by Mike Stump · 15 years ago
  14. 1275ae0 Refactor the code that produces a TemplateSpecializationType, so that by Douglas Gregor · 15 years ago
  15. 9a5a7e7 remove extraneous braces by Chris Lattner · 15 years ago
  16. 782fa30 Make longjmp a real builtin. by Mike Stump · 15 years ago
  17. e24aea2 Ensure we can work through typedefs. by Mike Stump · 15 years ago
  18. 2d3c191 Fix PR4624. by Mike Stump · 15 years ago
  19. 6dcbc29 Preserve qualifiers. by Mike Stump · 15 years ago
  20. 2455636 Add noreturn as a type attribute, handle printing for them and handle by Mike Stump · 15 years ago
  21. 7caa682 Template instantiation for static data members that are defined out-of-line. by Douglas Gregor · 15 years ago
  22. 5e03f9e This patch fixes the implementations of the __has_trivial_destructor by Douglas Gregor · 15 years ago
  23. 4084c30 Remove a bunch of FIXME's related to ObjC type checking. by Steve Naroff · 15 years ago
  24. ab22c43 Fix a nasty little use-after-free bug. by Eli Friedman · 15 years ago
  25. 8e1fab2 Use isa instead of dyn_cast for conditionals. by Mike Stump · 15 years ago
  26. 9533a7f Fix a couple recent ABI regressions noticed during code review (fallout from the ObjC type system rewrite). by Steve Naroff · 15 years ago
  27. 470301b Fix <rdar://problem/6770276> Support Class<Proto> syntax. by Steve Naroff · 15 years ago
  28. 8a1d722 - Introduce ASTContext::getObjCImplementation() and ASTContext::setObjCImplementation() which use a DenseMap to associate by Argyrios Kyrtzidis · 15 years ago
  29. 67ef8ea 5 cleanups to ObjCObjectPointerType work: by Steve Naroff · 15 years ago
  30. 29445a0 Migrate over to the record layout builder. by Anders Carlsson · 15 years ago
  31. 19cc4ab Revert r75641. by Anders Carlsson · 15 years ago
  32. c15cb2a Remove ObjCQualifiedInterfaceType:-) by Steve Naroff · 15 years ago
  33. 97fbaa2 Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its place. by Argyrios Kyrtzidis · 15 years ago
  34. b57a4fe Move the functionality of ASTContext::getCanonicalDecl(), into a virtual method Decl::getCanonicalDecl(). by Argyrios Kyrtzidis · 15 years ago
  35. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  36. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  37. 808825c Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). by Ted Kremenek · 15 years ago
  38. 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 15 years ago
  39. 8f16756 Cleanup a couple loops and improve a comment (based on feedback from Fariborz). by Steve Naroff · 15 years ago
  40. f495456 Remove ASTContext::isObjCObjectPointerType(). by Steve Naroff · 15 years ago
  41. de2e22d Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseudo built-in types, since Sema still injects a typedef for recognition (i.e. they aren't truly built-ins from a parser perspective). by Steve Naroff · 15 years ago
  42. 58f9f2c Introduce Type::isAnyPointerType() and convert all clients (suggested by Chris). by Steve Naroff · 15 years ago
  43. 3d598a5 Rename RecordLayout.h to ASTRecordLayout.h by Anders Carlsson · 15 years ago
  44. f5c209d Basic support for C++0x unicode types. Support for literals will follow in an incremental patch by Alisdair Meredith · 15 years ago
  45. ce7b38c minor cleanups, reduce nesting of if's with early return. by Chris Lattner · 15 years ago
  46. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  47. 563a03b Fix a problem that Eli noticed, and that Doug helped me fix. by Anders Carlsson · 15 years ago
  48. dd0257c The canonical type of typeof or decltype with a dependent type is itself, by Douglas Gregor · 15 years ago
  49. c29f77b Make ASTContext explicitly keep track of the declaration for the C by Douglas Gregor · 15 years ago
  50. 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
  51. a342675 Fix for PR4502: add calculation of the integer conversion rank for wchar_t. by Eli Friedman · 15 years ago
  52. 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 15 years ago
  53. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  54. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  55. e4f2142 Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. by Chris Lattner · 15 years ago
  56. 127102b Keep track of function template specializations, to eliminate by Douglas Gregor · 15 years ago
  57. 683087f Remove ASTContext::getObjCQualifiedIdType(). by Steve Naroff · 15 years ago
  58. e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 15 years ago
  59. a07c33e Decltype needs to have a dependent type if the expr passed to it is type dependent. Fixes PR4444. by Anders Carlsson · 15 years ago
  60. 60a9a2a C++ decltype support (N2343) by Anders Carlsson · 15 years ago
  61. 395b475 Add a DecltypeType type. by Anders Carlsson · 15 years ago
  62. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
  63. d1b3c2d First step toward fixing <rdar://problem/6613046> refactor clang objc type representation. by Steve Naroff · 15 years ago
  64. 9cdda0c Support dependent extended vector types and template instantiation by Douglas Gregor · 15 years ago
  65. 76e4ce4 Keep track of whether a type parameter type is a parameter pack. by Anders Carlsson · 15 years ago
  66. 1b63e4f Sink the BuiltinInfo object from ASTContext into the by Chris Lattner · 15 years ago
  67. 86df27b move GetBuiltinType from Builtin::Context to ASTContext. by Chris Lattner · 15 years ago
  68. 26784c1 Delete method which is now trivial. by Eli Friedman · 15 years ago
  69. 687abff Don't allow defining a block with a non-prototype type. Remove a by Eli Friedman · 15 years ago
  70. 15b9176 Move CharIsSigned from TargetInfo to LangOptions. by Eli Friedman · 15 years ago
  71. 8e6ac1d Cleanup/Refactoring of ivar collection. No change in functionality. by Fariborz Jahanian · 15 years ago
  72. 4027cd1 Place the GC attribute on the same relative pointer by Fariborz Jahanian · 15 years ago
  73. 86f4385 Diagnose misuse of __strong attribute in a redeclaration. by Fariborz Jahanian · 15 years ago
  74. 8df7a28 Issue diagnostics on __weak attribute mismatch. by Fariborz Jahanian · 15 years ago
  75. 354e53d Fix a silly typo in my previous objc_gc merging patch. by Eli Friedman · 15 years ago
  76. 07d2587 Cleaned-up version of gc attribute type merging. I still don't like it by Eli Friedman · 15 years ago
  77. 585f7b2 This patch attempts to fix the merging of __strong/__weak attributes by Fariborz Jahanian · 15 years ago
  78. 852d63b Disable type merging with gc attributes. This has a number of nasty by Eli Friedman · 15 years ago
  79. d249e1d1f Create a new PrintingPolicy class, which we pass down through the AST by Douglas Gregor · 15 years ago
  80. 587cbdf Add an assertion so that we don't accidentally build constant arrays of VLAs. by Eli Friedman · 15 years ago
  81. 465226e Reintroduce the home for exception specs, and make Sema fill it. However, keep the spec out of the canonical type this time. Net effect is currently nothing, because the spec isn't checked anywhere. by Sebastian Redl · 15 years ago
  82. 1590d9c Add a big test case for I-C-Es in C++, and a fix to make it work. The fix might not be the right way to do it. by Sebastian Redl · 15 years ago
  83. 446ee4e Convert ObjC qualified type clients over to using iterators. by Steve Naroff · 15 years ago
  84. dbe833d Simplify printing of the statistics for types. by Douglas Gregor · 15 years ago
  85. 1eed602 Extend getPreferredTypeAlign to handle _Complex double and long long correctly. by Eli Friedman · 15 years ago
  86. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  87. 1cca74e Use the Itanium ABI for member pointers. Add a missing 'break' statement and a test case by Anders Carlsson · 15 years ago
  88. 38aeec7 Fix rdar://6880874 - [sema] crash on array types with different index sizes by Chris Lattner · 15 years ago
  89. 9820074 Patch to implement ivar synthesis of properties declared in protocols by Fariborz Jahanian · 15 years ago
  90. c4ccf01 The canonical declaration of a NULL declaration is NULL by Douglas Gregor · 15 years ago
  91. 7da97d0 Implement the semantics of the injected-class-name within a class by Douglas Gregor · 15 years ago
  92. 6e8ed16 Implement C++0x nullptr. by Sebastian Redl · 15 years ago
  93. 913af35 Remove -fobjc-tight-layout, seems to work! by Daniel Dunbar · 15 years ago
  94. 25a3ef7 Start canonicalizing template names. This is not yet complete, but it by Douglas Gregor · 15 years ago
  95. bfa2fcb Back out r70506 (exception spec in AST) again. We won't have exception specs until we've had a lot more discussion. by Sebastian Redl · 15 years ago
  96. 6e8575b Fix the field count in interface record layout (it was incorrectly by Daniel Dunbar · 16 years ago
  97. d6884a0 Add -fobjc-tight-layout. by Daniel Dunbar · 16 years ago
  98. 3715328 Don't allow clients to traverse into superclass synthesized properties by Daniel Dunbar · 16 years ago
  99. ee1ec39 Remove ASTContext::addRecordToClass. by Daniel Dunbar · 16 years ago
  100. 532d4da Use ASTRecordLayout for computing ivar offsets instead of shadow by Daniel Dunbar · 16 years ago