1. 211f6ad Assume statement expressions have side effects; this gets rid of a lot by Eli Friedman · 17 years ago
  2. 2742496 Don't swap function decls, and add them to the scope as they are by Eli Friedman · 17 years ago
  3. b26153c Stop leaking the TUDecl. by Eli Friedman · 17 years ago
  4. 0613c37 Always initialize NEXT_CATCH; fixes a Valgrind uninitialized read error by Eli Friedman · 17 years ago
  5. ebf27b1 Call the correct destructor. by Ted Kremenek · 17 years ago
  6. 218543b Minor tweak to -ast-dump for ivars. by Steve Naroff · 17 years ago
  7. 466c2e3 Tweak AST dumper for ObjC ivars. by Steve Naroff · 17 years ago
  8. 4f8d123 Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 17 years ago
  9. e1b6d50 Remove the unneeded #include of VMCore header "llvm/DerivedTypes.h". by Dan Gohman · 17 years ago
  10. 4b05b1d Add Destroy method to Types, making there destruction more harmonious with by Ted Kremenek · 17 years ago
  11. 936ff13 Fix potential double-free. by Ted Kremenek · 17 years ago
  12. 6cc1896 Fixup ASTContext::PrintStats()...it was causing several test failures. by Steve Naroff · 17 years ago
  13. 8e355f2 When destroying DeclStmts, also destroy the associated Decl (reclaim its memory). by Ted Kremenek · 17 years ago
  14. 5f1adf8 Fix the destruction "properly" in the sense that we actually destroy the by Eli Friedman · 17 years ago
  15. b0c0554 PR2347: Fix crash iterating over VLAs; this started triggering because by Eli Friedman · 17 years ago
  16. 1108e7d Don't kill the declarations if the translation unit doesn't own them by Eli Friedman · 17 years ago
  17. 4210802 Remove hacks from ASTContext now that alignment gets reported correctly. by Eli Friedman · 17 years ago
  18. d1ac17a Reclaim memory from chains of ScopedDecls, and reclaim memory for the initializers of EnumConstantDecls. by Ted Kremenek · 17 years ago
  19. f809e3b Delete AST nodes, not just Decls. by Ted Kremenek · 17 years ago
  20. b65cf41 Reclaim memory allocated for ParmVarDecl's in FunctionDecl::Destroy. by Ted Kremenek · 17 years ago
  21. 3bbc198 When serializing FunctionDecl, serialize out a reference to the previous declaration. by Ted Kremenek · 17 years ago
  22. 75a13a5 Remove unnecessary #include (introduced by a recent patch of mine). by Ted Kremenek · 17 years ago
  23. 27f8a28 Try to plug some memory leaks... by Ted Kremenek · 17 years ago
  24. 9c1863e Added Stmt::DestroyChildren, which will be used by the dstors of the subclasses of Stmt to recursively delete their child AST nodes. by Ted Kremenek · 17 years ago
  25. 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 17 years ago
  26. 9c2535a Added CFGBlock::hasBinaryBranchTerminator(). by Ted Kremenek · 17 years ago
  27. 861dc46 Minor cleanup to isBuiltinConstantExpr. by Eli Friedman · 17 years ago
  28. 774e4af Removed bogus "return true" in Expr::isConstantExpr that returned true for all by Ted Kremenek · 17 years ago
  29. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 17 years ago
  30. 3b8d116 Remove AST dependency on VMCore by switching ExtVectorElementExpr off Constant. by Nate Begeman · 17 years ago
  31. adbb619 Unbreak build. by Ted Kremenek · 17 years ago
  32. 81edea8 Grammar cleanup in comment. Remove redundant assignment. by Ted Kremenek · 17 years ago
  33. 9f3e89a When reading in the DeclCtx during deserialization, register the DeclCtx of the by Ted Kremenek · 17 years ago
  34. 6b3502c fix free/delete mismatch problem in add/mergeProperties (found by valgrind) by Nuno Lopes · 17 years ago
  35. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 17 years ago
  36. 4607034 Synthesized getter/setter method declarations need not have by Fariborz Jahanian · 17 years ago
  37. 33de3f0 This patch introduces declaration of getter methods for ObjC2's by Fariborz Jahanian · 17 years ago
  38. 1a42a25 Fixup InitListExpr::child_begin/end. Thanks to Ted for catching the regression. by Steve Naroff · 17 years ago
  39. 81e72e4 Fix off-by-one error. by Steve Naroff · 17 years ago
  40. 46b55e5 percolate @optional/@required protocols down to ASTs for by Fariborz Jahanian · 17 years ago
  41. a212c56 Simplify FunctionDecl::AddRedeclaration a bit by using std::swap. by Chris Lattner · 17 years ago
  42. aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 17 years ago
  43. 9226197 Fixed bug in ObjCIVarExpr: the child iterator now iterates over the Base expression. by Ted Kremenek · 17 years ago
  44. c29efd8 Bug fix in StmtPrinter to handle pretty-printing ObjCMessageExprs involving variadic methods (also did some cosmetic cleanups in the printing output). by Ted Kremenek · 17 years ago
  45. ea958e57 Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 17 years ago
  46. c5ae899 Extend InitListExpr API/IMPL to support arbitrary add/remove (in support of the initializer rewrite I am doing). by Steve Naroff · 17 years ago
  47. 274f433 Bug fix in CFG::getBlockEdgeImpl(): Use a BumpPtrAllocator to allocate by Ted Kremenek · 17 years ago
  48. 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 17 years ago
  49. c1e9dea TranslationUnit now owns IdentifierTable, TargetInfo, and Selectors objects by Ted Kremenek · 17 years ago
  50. 628b96f Patch to build AST for property implementation declarations and by Fariborz Jahanian · 17 years ago
  51. 9fdf9c6 "This patch renames by Chris Lattner · 17 years ago
  52. c70bee8 Allow property in base class to be implemented in a derived class. by Fariborz Jahanian · 17 years ago
  53. 559c0c4 Continuation of work on ObjC2's properties. by Fariborz Jahanian · 17 years ago
  54. f009795 Clean up handling of function redeclarations by Douglas Gregor · 17 years ago
  55. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  56. 3dd4ba4 Added property decl support for protocols. by Fariborz Jahanian · 17 years ago
  57. ef17782 Addition of TranslationUnitDecl to the AST: by Argyrios Kyrtzidis · 17 years ago
  58. 61d4615 New AST class for property implementation declarations. by Fariborz Jahanian · 17 years ago
  59. d9a3c33 Fixed a comment. by Fariborz Jahanian · 17 years ago
  60. 411cdee Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a block's terminator. by Ted Kremenek · 17 years ago
  61. 7e7e387 This patch adds support for declaraing properties in categories, by Fariborz Jahanian · 17 years ago
  62. 97b7f26 Remove uses of "Selector&" and "const Selector&", since Selector is just an by Ted Kremenek · 17 years ago
  63. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
  64. 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 17 years ago
  65. 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
  66. 99dc914 This patch is just the easy part of the class names patch, which by Chris Lattner · 17 years ago
  67. 1b30cb2 Use static_cast<> instead of cast<> in Decl::Destroy(). Suggestion by Argiris by Sam Bishop · 17 years ago
  68. 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
  69. dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 17 years ago
  70. d6a07aa Add class and super class location info to ObjCInterfaceDecl... by Steve Naroff · 17 years ago
  71. 1bb1963 Invoke destructors in Decl::Destroy(). by Sam Bishop · 17 years ago
  72. bb45c51 Stub out and start using a Decl::Destroy() method. by Sam Bishop · 17 years ago
  73. f3c63ae Use the ASTContext allocator when creating deserialized Decl objects. by Sam Bishop · 17 years ago
  74. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
  75. 670aa9d Changed the Decl::Kind enum of the ObjCPropertyDecl class, so that it follows by Sam Bishop · 17 years ago
  76. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  77. e2563ca Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 17 years ago
  78. 5426bf6 random whitespace fixes. by Chris Lattner · 17 years ago
  79. 8c7bbb5 fix a bug I introduced in my previous checkin. by Chris Lattner · 17 years ago
  80. acc9972 simplify array compatibility testing. by Chris Lattner · 17 years ago
  81. 8f8fc7b simplify reference handling. by Chris Lattner · 17 years ago
  82. 6ac46a4 move some code around, no other change. by Chris Lattner · 17 years ago
  83. 78eca28 simplify compatibility testing for tag types. by Chris Lattner · 17 years ago
  84. b048981 merge compatibility testing of qualified/unqualified interfaces together by Chris Lattner · 17 years ago
  85. 1ee0700 Fix a really bad bug where type uniquing would merge a<x> with b<x> as the same by Chris Lattner · 17 years ago
  86. 42a997c MyOtherClass<MyProtocol>* is compatible with MyClass* by Chris Lattner · 17 years ago
  87. 3cc4c0c Remove a dead check for compatible builtin types by Chris Lattner · 17 years ago
  88. 6e26f5d futher simplify compatibility testing of objc interface types. by Chris Lattner · 17 years ago
  89. a36a61f ocuvector and vector should be compatible. Fix ASQual compatibility. by Chris Lattner · 17 years ago
  90. f3692dc Fix comment typo, do reference eval at the correct type. by Chris Lattner · 17 years ago
  91. f62f9cd simplify vector type compatibility testing. by Chris Lattner · 17 years ago
  92. eca7be6 move ObjCQualifiedIdTypesAreCompatible out of ASTContext into Sema. by Chris Lattner · 17 years ago
  93. 821a01b Replace an O(n^2) algorithm in areCompatObjCQualInterfaces with by Chris Lattner · 17 years ago
  94. 88cb27a move sorting of qualifying protocols from the parser into by Chris Lattner · 17 years ago
  95. 065f0d7 eliminate getReferencedProtocols from by Chris Lattner · 17 years ago
  96. 3b27546 make QualifiedInterfaceTypesAreCompatible a static function by Chris Lattner · 17 years ago
  97. 53efc25 This predicate is just a generic "issuperclass" predicate, move it to the by Chris Lattner · 17 years ago
  98. c4e4059 Simplify some objc compatibility testing, make interfaceTypesAreCompatible by Chris Lattner · 17 years ago
  99. 439dbad simplify the logic in ASTContext::objcTypesAreCompatible by Chris Lattner · 17 years ago
  100. 368eefa clean up some logic in objc type handling. Specifically, make it so that by Chris Lattner · 17 years ago