1. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 16 years ago
  2. 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 16 years ago
  3. 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 16 years ago
  4. 99dc914 This patch is just the easy part of the class names patch, which by Chris Lattner · 16 years ago
  5. 1b30cb2 Use static_cast<> instead of cast<> in Decl::Destroy(). Suggestion by Argiris by Sam Bishop · 16 years ago
  6. 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 16 years ago
  7. dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 16 years ago
  8. d6a07aa Add class and super class location info to ObjCInterfaceDecl... by Steve Naroff · 16 years ago
  9. 1bb1963 Invoke destructors in Decl::Destroy(). by Sam Bishop · 16 years ago
  10. bb45c51 Stub out and start using a Decl::Destroy() method. by Sam Bishop · 16 years ago
  11. f3c63ae Use the ASTContext allocator when creating deserialized Decl objects. by Sam Bishop · 16 years ago
  12. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 16 years ago
  13. 670aa9d Changed the Decl::Kind enum of the ObjCPropertyDecl class, so that it follows by Sam Bishop · 16 years ago
  14. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  15. e2563ca Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 16 years ago
  16. 5426bf6 random whitespace fixes. by Chris Lattner · 16 years ago
  17. 8c7bbb5 fix a bug I introduced in my previous checkin. by Chris Lattner · 16 years ago
  18. acc9972 simplify array compatibility testing. by Chris Lattner · 16 years ago
  19. 8f8fc7b simplify reference handling. by Chris Lattner · 16 years ago
  20. 6ac46a4 move some code around, no other change. by Chris Lattner · 16 years ago
  21. 78eca28 simplify compatibility testing for tag types. by Chris Lattner · 16 years ago
  22. b048981 merge compatibility testing of qualified/unqualified interfaces together by Chris Lattner · 16 years ago
  23. 1ee0700 Fix a really bad bug where type uniquing would merge a<x> with b<x> as the same by Chris Lattner · 16 years ago
  24. 42a997c MyOtherClass<MyProtocol>* is compatible with MyClass* by Chris Lattner · 16 years ago
  25. 3cc4c0c Remove a dead check for compatible builtin types by Chris Lattner · 16 years ago
  26. 6e26f5d futher simplify compatibility testing of objc interface types. by Chris Lattner · 16 years ago
  27. a36a61f ocuvector and vector should be compatible. Fix ASQual compatibility. by Chris Lattner · 16 years ago
  28. f3692dc Fix comment typo, do reference eval at the correct type. by Chris Lattner · 16 years ago
  29. f62f9cd simplify vector type compatibility testing. by Chris Lattner · 16 years ago
  30. eca7be6 move ObjCQualifiedIdTypesAreCompatible out of ASTContext into Sema. by Chris Lattner · 16 years ago
  31. 821a01b Replace an O(n^2) algorithm in areCompatObjCQualInterfaces with by Chris Lattner · 16 years ago
  32. 88cb27a move sorting of qualifying protocols from the parser into by Chris Lattner · 16 years ago
  33. 065f0d7 eliminate getReferencedProtocols from by Chris Lattner · 16 years ago
  34. 3b27546 make QualifiedInterfaceTypesAreCompatible a static function by Chris Lattner · 16 years ago
  35. 53efc25 This predicate is just a generic "issuperclass" predicate, move it to the by Chris Lattner · 16 years ago
  36. c4e4059 Simplify some objc compatibility testing, make interfaceTypesAreCompatible by Chris Lattner · 16 years ago
  37. 439dbad simplify the logic in ASTContext::objcTypesAreCompatible by Chris Lattner · 16 years ago
  38. 368eefa clean up some logic in objc type handling. Specifically, make it so that by Chris Lattner · 16 years ago
  39. 1361b11 trivial changes to getFloatingTypeOfSizeWithinDomain, nothing significant. by Chris Lattner · 16 years ago
  40. 7cfeb08 simplify max type computation by making it return an integer (like by Chris Lattner · 16 years ago
  41. a75cea3 minor simplifications/cleanups to type comparisons. by Chris Lattner · 16 years ago
  42. d8bdba5 remove a use of getCanonicalType. by Chris Lattner · 16 years ago
  43. f52ab25 Start switching clients over from CT.getCanonicalType() to Context.getCanonicalType(CT) for PR2189. by Chris Lattner · 16 years ago
  44. 77c9647 introduce a new ASTContext::getCanonicalType method. This is the first by Chris Lattner · 16 years ago
  45. 37c1b78 Use EnumType to simplify some code. by Chris Lattner · 16 years ago
  46. 7176331 make use of EnumType to simplify some code, eliminate warnings by Chris Lattner · 16 years ago
  47. 2daa5df Make EnumType/RecordType classof predicates simpler and more efficient in by Chris Lattner · 16 years ago
  48. 5edb8bf add a helper EnumType object for asking about tagtypes for enums. by Chris Lattner · 16 years ago
  49. 5619688 Fix a bug I introduced in my const'ification patch. by Chris Lattner · 16 years ago
  50. b048c98 This patch contains these changes: by Chris Lattner · 16 years ago
  51. e0def75 fix a number of const qualification bugs. by Chris Lattner · 16 years ago
  52. b6e64c5 Rename ScopedDecl::getContext() -> getContextDecl(). Two motivations: by Steve Naroff · 16 years ago
  53. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 16 years ago
  54. 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 16 years ago
  55. 0f9c72f trivial whitespace fix by Sam Bishop · 16 years ago
  56. 71de20e Created a destructor so that the top-level decls can be deleted. by Sam Bishop · 16 years ago
  57. 988ee6e qualifier comparisons should be done on canonical types. by Chris Lattner · 16 years ago
  58. 8266d7f Call "delete" on the body of FunctionDecls. by Sam Bishop · 16 years ago
  59. bdcd637 add a common base class "PointerLikeType" for PointerType and ReferenceType, by Chris Lattner · 16 years ago
  60. d965455 Add a citation. by Chris Lattner · 16 years ago
  61. e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 16 years ago
  62. 8527f82 remove blank line. by Chris Lattner · 16 years ago
  63. bad3785 print cvr qualifiers on simplified typedefs by Chris Lattner · 16 years ago
  64. e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 16 years ago
  65. 35de512 Update to match simplified llvm MemoryBuffer interfaces for files. by Chris Lattner · 16 years ago
  66. 8a93423 rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 16 years ago
  67. a716d7a Bug fix in CFG construction: VisitCompoundStmt should return the last created block. by Ted Kremenek · 16 years ago
  68. f4af515 clean up property memory allocation to move it into the ast classes by Chris Lattner · 16 years ago
  69. 55d13b4 make property addition work list all other "add" methods. Do by Chris Lattner · 16 years ago
  70. f8d17a5 add the last two Create methods for decls, woo! by Chris Lattner · 16 years ago
  71. 75c9cae add two more Create methods. by Chris Lattner · 16 years ago
  72. 68c82cf simplify the way ObjCCategoryDecl's get their referenced protocols list by Chris Lattner · 16 years ago
  73. 61f9d41 Add create methods for ObjCCategoryDecl, ObjCForwardProtocolDecl, ObjCClassDecl. by Chris Lattner · 16 years ago
  74. c858105 minor cleanups, make getNumInstanceMethods always return unsigned. by Chris Lattner · 16 years ago
  75. cca59d7 Give ObjCProtocolDecl a Create method. by Chris Lattner · 16 years ago
  76. 0e77ba0 Add create methods for ObjCIvarDecl and ObjCInterfaceDecl by Chris Lattner · 16 years ago
  77. b06fa3b remove some dead arguments to ObjCMethodDecl. by Chris Lattner · 16 years ago
  78. 6c4ae5d Give ObjCMethodDecl a Create method. by Chris Lattner · 16 years ago
  79. 1e03a56 Split objc decl implementation out into DeclObjC.cpp by Chris Lattner · 16 years ago
  80. 8e25d86 switch the rest of the C decl classes to do their by Chris Lattner · 16 years ago
  81. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago