1. 19cc4ab Revert r75641. by Anders Carlsson · 15 years ago
  2. c15cb2a Remove ObjCQualifiedInterfaceType:-) by Steve Naroff · 15 years ago
  3. 97fbaa2 Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its place. by Argyrios Kyrtzidis · 15 years ago
  4. b57a4fe Move the functionality of ASTContext::getCanonicalDecl(), into a virtual method Decl::getCanonicalDecl(). by Argyrios Kyrtzidis · 15 years ago
  5. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  6. 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
  7. 808825c Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). by Ted Kremenek · 15 years ago
  8. 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 15 years ago
  9. 8f16756 Cleanup a couple loops and improve a comment (based on feedback from Fariborz). by Steve Naroff · 15 years ago
  10. f495456 Remove ASTContext::isObjCObjectPointerType(). by Steve Naroff · 15 years ago
  11. 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
  12. 58f9f2c Introduce Type::isAnyPointerType() and convert all clients (suggested by Chris). by Steve Naroff · 15 years ago
  13. 3d598a5 Rename RecordLayout.h to ASTRecordLayout.h by Anders Carlsson · 15 years ago
  14. f5c209d Basic support for C++0x unicode types. Support for literals will follow in an incremental patch by Alisdair Meredith · 15 years ago
  15. ce7b38c minor cleanups, reduce nesting of if's with early return. by Chris Lattner · 15 years ago
  16. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  17. 563a03b Fix a problem that Eli noticed, and that Doug helped me fix. by Anders Carlsson · 15 years ago
  18. dd0257c The canonical type of typeof or decltype with a dependent type is itself, by Douglas Gregor · 15 years ago
  19. c29f77b Make ASTContext explicitly keep track of the declaration for the C by Douglas Gregor · 15 years ago
  20. 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
  21. a342675 Fix for PR4502: add calculation of the integer conversion rank for wchar_t. by Eli Friedman · 15 years ago
  22. 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 15 years ago
  23. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  24. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  25. e4f2142 Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. by Chris Lattner · 15 years ago
  26. 127102b Keep track of function template specializations, to eliminate by Douglas Gregor · 15 years ago
  27. 683087f Remove ASTContext::getObjCQualifiedIdType(). by Steve Naroff · 15 years ago
  28. e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 15 years ago
  29. 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
  30. 60a9a2a C++ decltype support (N2343) by Anders Carlsson · 15 years ago
  31. 395b475 Add a DecltypeType type. by Anders Carlsson · 15 years ago
  32. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
  33. d1b3c2d First step toward fixing <rdar://problem/6613046> refactor clang objc type representation. by Steve Naroff · 15 years ago
  34. 9cdda0c Support dependent extended vector types and template instantiation by Douglas Gregor · 15 years ago
  35. 76e4ce4 Keep track of whether a type parameter type is a parameter pack. by Anders Carlsson · 15 years ago
  36. 1b63e4f Sink the BuiltinInfo object from ASTContext into the by Chris Lattner · 15 years ago
  37. 86df27b move GetBuiltinType from Builtin::Context to ASTContext. by Chris Lattner · 15 years ago
  38. 26784c1 Delete method which is now trivial. by Eli Friedman · 15 years ago
  39. 687abff Don't allow defining a block with a non-prototype type. Remove a by Eli Friedman · 15 years ago
  40. 15b9176 Move CharIsSigned from TargetInfo to LangOptions. by Eli Friedman · 15 years ago
  41. 8e6ac1d Cleanup/Refactoring of ivar collection. No change in functionality. by Fariborz Jahanian · 15 years ago
  42. 4027cd1 Place the GC attribute on the same relative pointer by Fariborz Jahanian · 15 years ago
  43. 86f4385 Diagnose misuse of __strong attribute in a redeclaration. by Fariborz Jahanian · 15 years ago
  44. 8df7a28 Issue diagnostics on __weak attribute mismatch. by Fariborz Jahanian · 15 years ago
  45. 354e53d Fix a silly typo in my previous objc_gc merging patch. by Eli Friedman · 15 years ago
  46. 07d2587 Cleaned-up version of gc attribute type merging. I still don't like it by Eli Friedman · 15 years ago
  47. 585f7b2 This patch attempts to fix the merging of __strong/__weak attributes by Fariborz Jahanian · 15 years ago
  48. 852d63b Disable type merging with gc attributes. This has a number of nasty by Eli Friedman · 15 years ago
  49. d249e1d1f Create a new PrintingPolicy class, which we pass down through the AST by Douglas Gregor · 15 years ago
  50. 587cbdf Add an assertion so that we don't accidentally build constant arrays of VLAs. by Eli Friedman · 15 years ago
  51. 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
  52. 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
  53. 446ee4e Convert ObjC qualified type clients over to using iterators. by Steve Naroff · 15 years ago
  54. dbe833d Simplify printing of the statistics for types. by Douglas Gregor · 15 years ago
  55. 1eed602 Extend getPreferredTypeAlign to handle _Complex double and long long correctly. by Eli Friedman · 15 years ago
  56. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  57. 1cca74e Use the Itanium ABI for member pointers. Add a missing 'break' statement and a test case by Anders Carlsson · 15 years ago
  58. 38aeec7 Fix rdar://6880874 - [sema] crash on array types with different index sizes by Chris Lattner · 15 years ago
  59. 9820074 Patch to implement ivar synthesis of properties declared in protocols by Fariborz Jahanian · 15 years ago
  60. c4ccf01 The canonical declaration of a NULL declaration is NULL by Douglas Gregor · 16 years ago
  61. 7da97d0 Implement the semantics of the injected-class-name within a class by Douglas Gregor · 16 years ago
  62. 6e8ed16 Implement C++0x nullptr. by Sebastian Redl · 16 years ago
  63. 913af35 Remove -fobjc-tight-layout, seems to work! by Daniel Dunbar · 16 years ago
  64. 25a3ef7 Start canonicalizing template names. This is not yet complete, but it by Douglas Gregor · 16 years ago
  65. 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 · 16 years ago
  66. 6e8575b Fix the field count in interface record layout (it was incorrectly by Daniel Dunbar · 16 years ago
  67. d6884a0 Add -fobjc-tight-layout. by Daniel Dunbar · 16 years ago
  68. 3715328 Don't allow clients to traverse into superclass synthesized properties by Daniel Dunbar · 16 years ago
  69. ee1ec39 Remove ASTContext::addRecordToClass. by Daniel Dunbar · 16 years ago
  70. 532d4da Use ASTRecordLayout for computing ivar offsets instead of shadow by Daniel Dunbar · 16 years ago
  71. d8fd6ff Fix a possible memory error, the record layout entry could be by Daniel Dunbar · 16 years ago
  72. 453addb Implement the interface/implementation layout distinction. by Daniel Dunbar · 16 years ago
  73. b2dbbb9 Split out getASTObjCImplementationLayout by Daniel Dunbar · 16 years ago
  74. 7b9a2ee Make a home for exception specs in the AST. Now Sema can hook them up. by Sebastian Redl · 16 years ago
  75. 1885764 Properly compute the alignment of typedefs that make use of the by Douglas Gregor · 16 years ago
  76. ec16cb9 int128_t is apparently 128-bit aligned on all 64-bit targets, and by Chris Lattner · 16 years ago
  77. 2df9ced initial support for __[u]int128_t, which should be basically by Chris Lattner · 16 years ago
  78. 9a901bb Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. by Eli Friedman · 16 years ago
  79. 7a9cbed Make sure to pull in the target builtin records when initialize the AST context, even if we're not going to initialize the __builin_* identifiers by Douglas Gregor · 16 years ago
  80. 319ac89 PCH support for all of the predefined Objective-C types, such as id, by Douglas Gregor · 16 years ago
  81. 653f1b1 Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 16 years ago
  82. 370187c Remove the serialization code that predates precompiled by Douglas Gregor · 16 years ago
  83. 2deaea3 Lazy loading of builtins for precompiled headers. by Douglas Gregor · 16 years ago
  84. a80a0f6 Reapply r69771, with updates & fixes: by Daniel Dunbar · 16 years ago
  85. 75da674 Simplify addRecordToClass, it is not legal to call it on a forward by Daniel Dunbar · 16 years ago
  86. 068360e ObjCQualifiedClass is dead, remove it. by Chris Lattner · 16 years ago
  87. 71dfdb9 Reorganize built-in initialization to separate the creation of target builtins from marking IdentifierInfos as builtins. No functionality change by Douglas Gregor · 16 years ago
  88. d4ae6c0 Revert r69771, I missed some (obvious) details. :/ by Daniel Dunbar · 16 years ago
  89. 3b3a458 Mark another TypeForDecl const and make getObjCInterfaceType's argument const. by Daniel Dunbar · 16 years ago
  90. 0c45793 Rework the shadow struct that is layed out for Objective-C classes. by Daniel Dunbar · 16 years ago
  91. 24c8991 Make sure to mark the interface as completed when we see an by Daniel Dunbar · 16 years ago
  92. 525c9b7 Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things by Daniel Dunbar · 16 years ago
  93. 9e6c20b Assert on a few conditions that (I believe) should hold by Daniel Dunbar · 16 years ago
  94. 153bfe5 Make FieldDecl parameter to getObjCEncodingForType... const. by Daniel Dunbar · 16 years ago
  95. c8d2e77 Fix decl type merges when they have __string/__weak attributes. by Fariborz Jahanian · 16 years ago
  96. d824c9c ASTContext::mergeTypes(): Loosen up the type checking for 'Class' (treating it like 'id'). by Steve Naroff · 16 years ago
  97. bb3fde3 Change dyn_cast<> to isa<>. Pointed out by Anders (thanks). by Steve Naroff · 16 years ago
  98. ab76d45 Fix crasher in ASTContext::getObjCEncodingForMethodDecl(). by Steve Naroff · 16 years ago
  99. 16ede0e fix PR3932: [ObjC]Type defined as 'id' is not recognized as a valid object type. by Chris Lattner · 16 years ago
  100. c211218 Non-pointer objects are none gc'able regardles of the attribute set on them. by Fariborz Jahanian · 16 years ago