1. 19cc4ab Revert r75641. by Anders Carlsson · 15 years ago
  2. ad64e02 fix objc codegen to not have its own list of things that eventually get into llvm.used, just by Chris Lattner · 15 years ago
  3. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  4. 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
  5. 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 15 years ago
  6. f495456 Remove ASTContext::isObjCObjectPointerType(). by Steve Naroff · 15 years ago
  7. a1cf15f Update for LLVM API change, and contextify a bunch of related stuff. by Owen Anderson · 15 years ago
  8. 3d598a5 Rename RecordLayout.h to ASTRecordLayout.h by Anders Carlsson · 15 years ago
  9. 6924382 Update for LLVM API change. by Owen Anderson · 15 years ago
  10. c1ab900 Generate correct prototype for objc_enumerationMutation. by Daniel Dunbar · 15 years ago
  11. 818e96f Fix typo (found by gcc warning). by Eli Friedman · 15 years ago
  12. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  13. 1c431b3 Update for LLVM API change. by Owen Anderson · 15 years ago
  14. c14f0d2 Update for LLVM API change. by Owen Anderson · 15 years ago
  15. 082b02e Implemented memmove_collectable API for Next runtime by Fariborz Jahanian · 15 years ago
  16. b59761b use new and simplified LLVM APIs. Patch by Jay Foad! by Chris Lattner · 15 years ago
  17. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  18. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  19. c0183e8 Simplify, and fix a possible crash (never happens however, because we don't ever by Daniel Dunbar · 15 years ago
  20. c38e9af Patch fixes an obscure bug when 'used' attribute is applied to by Fariborz Jahanian · 15 years ago
  21. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
  22. 42f963d Support complex properties, ivars and message expressions. by Daniel Dunbar · 15 years ago
  23. 8e6ac1d Cleanup/Refactoring of ivar collection. No change in functionality. by Fariborz Jahanian · 15 years ago
  24. ecfbdcb Minor refactoring. Uses an existing API to lookup a class method. by Fariborz Jahanian · 15 years ago
  25. f5408fe Reflow some comments. by Mike Stump · 15 years ago
  26. 74d4b12 Classes with "+load" methods need to go in the non-lazy class list (or by Daniel Dunbar · 15 years ago
  27. 463b876 Factor code for adding module-level class lists into separate method. by Daniel Dunbar · 15 years ago
  28. be53be4 Removed 4-letter :) word in comment. Used simple array for Selector build. by Fariborz Jahanian · 15 years ago
  29. 4523eb0 Fixed typos, used DenseSet for keeping track of by Fariborz Jahanian · 15 years ago
  30. 9820074 Patch to implement ivar synthesis of properties declared in protocols by Fariborz Jahanian · 15 years ago
  31. d0f8a8d Patch to allow Nonfragile ABI to use 32-bit style legacy by Fariborz Jahanian · 15 years ago
  32. 9408c45 Correct for renaming PaddedSize -> AllocSize in LLVM. by Duncan Sands · 15 years ago
  33. df9ccc6 Patch to support Gnu runtime's typed selectors. Patch by David Chisnall. by Fariborz Jahanian · 15 years ago
  34. a81419d Remove an unneeded lookup routine. by Daniel Dunbar · 15 years ago
  35. 6e8575b Fix the field count in interface record layout (it was incorrectly by Daniel Dunbar · 15 years ago
  36. b4c79e0 Compute interface instanceStart and instanceSize using the record by Daniel Dunbar · 15 years ago
  37. 3715328 Don't allow clients to traverse into superclass synthesized properties by Daniel Dunbar · 15 years ago
  38. e05cc98 Inline GetFieldBaseOffset into sole callsite. by Daniel Dunbar · 15 years ago
  39. 900c198 Avoid recomputing field offsets. by Daniel Dunbar · 15 years ago
  40. 31682fd Normalize formatting by Daniel Dunbar · 15 years ago
  41. 5a5a803 Use the implementation decl for looking up offset while building the by Daniel Dunbar · 15 years ago
  42. 7c9f6c5 It turns out BuildAggrIvarLayout wasn't even using the shadow struct, by Daniel Dunbar · 15 years ago
  43. 25d583e Lift common subexpression, remove dead "base" variable. by Daniel Dunbar · 15 years ago
  44. d58edcb Factor out BuildAggrIvarRecordLayout routine. by Daniel Dunbar · 15 years ago
  45. 5e563dd Lift out GetGCAttrTypeForType routine. by Daniel Dunbar · 15 years ago
  46. 8b2926c Add constructors for GC_IVAR and SKIP_SCAN, tighten up uses. by Daniel Dunbar · 15 years ago
  47. 487993b Normalize style, remove a dead assert. by Daniel Dunbar · 15 years ago
  48. 532d4da Use ASTRecordLayout for computing ivar offsets instead of shadow by Daniel Dunbar · 15 years ago
  49. 9f89f2b Add a ComputeIvarBaseOffset overload taking an implementation by Daniel Dunbar · 15 years ago
  50. 2bebbf0 Compute Objective-C metadata size information from the record layout, by Daniel Dunbar · 15 years ago
  51. 5384b09 Remove unused argument. by Daniel Dunbar · 15 years ago
  52. 1d7e539 Coalesce the ivar offset calculation further. by Daniel Dunbar · 15 years ago
  53. e38df86 Use type from ivar instead of from shadow struct field. by Daniel Dunbar · 15 years ago
  54. 70b51c7 Remove a warning when this file is compiled optimized. by Fariborz Jahanian · 15 years ago
  55. 5b2bad0 API for message dispatch of methods returning floats to match gcc's closely. by Fariborz Jahanian · 15 years ago
  56. 65257ca Undid setting of the flag for msg_Send for 32bit code gen. by Fariborz Jahanian · 15 years ago
  57. 679cd7f Export lazy references of .objc_class_name of class names by Fariborz Jahanian · 15 years ago
  58. 2f87216 Type of msgSend message dispatch API is a vararg. by Fariborz Jahanian · 15 years ago
  59. 9a901bb Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. by Eli Friedman · 15 years ago
  60. 16f0049 split ObjC and C++ Statements out into their own headers. by Chris Lattner · 15 years ago
  61. d019d96 Minor refactoring. No intended change in behavior. by Fariborz Jahanian · 15 years ago
  62. 8c2f2d1 Minor refactoring. No change in functionality. by Fariborz Jahanian · 15 years ago
  63. 81adc05 Some code clean up of objc2's bitmap layout. by Fariborz Jahanian · 15 years ago
  64. 2eada63 Removed bunch of FIXMEs no longer needed. by Fariborz Jahanian · 15 years ago
  65. 325f758 Mark IMAGE_INFO as constant on x86_64-darwin. by Daniel Dunbar · 16 years ago
  66. 0941b49 Use std::sort instead of qsort. by Daniel Dunbar · 16 years ago
  67. 653f1b1 Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 16 years ago
  68. c71303d ivar layout bitmap is alive! by Fariborz Jahanian · 16 years ago
  69. a80a0f6 Reapply r69771, with updates & fixes: by Daniel Dunbar · 16 years ago
  70. a243578 Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface. by Daniel Dunbar · 16 years ago
  71. 412f59b Don't convert interface types (to structs) as part of CodeGenTypes. by Daniel Dunbar · 16 years ago
  72. 84ad77a Add CGObjCRuntime::GetConcreteClassStruct to encapsulate access to the by Daniel Dunbar · 16 years ago
  73. 3fea0c0 Emit meta data using the Ivar, not a looked up FieldDecl. by Daniel Dunbar · 16 years ago
  74. 9777687 Merge ivar access amongst the three runtimes. by Daniel Dunbar · 16 years ago
  75. 2a03192 Make ObjCInterfaceDecl's const in some more places. by Daniel Dunbar · 16 years ago
  76. d4ae6c0 Revert r69771, I missed some (obvious) details. :/ by Daniel Dunbar · 16 years ago
  77. 0c45793 Rework the shadow struct that is layed out for Objective-C classes. by Daniel Dunbar · 16 years ago
  78. 1c02f86 move 64-bit abi functions to lazy model, everything is lazy now, yay. by Chris Lattner · 16 years ago
  79. 72db6c3 remove the last of the non-lazy objc runtime functions for the 32-bit ABI, by Chris Lattner · 16 years ago
  80. bbccd61 number of non-lazy runtime functions from 9 -> 4. by Chris Lattner · 16 years ago
  81. 4176b0c make message send functions lazy, we're down from 14 non-lazy functions to 9. by Chris Lattner · 16 years ago
  82. 34b02a1 move more EH stuff to being lazily created. An empty .m file now by Chris Lattner · 16 years ago
  83. 8a56911 make try/catch objc runtime functions be lazily generated. rdar://6809612 by Chris Lattner · 16 years ago
  84. 24c8991 Make sure to mark the interface as completed when we see an by Daniel Dunbar · 16 years ago
  85. 7fb1627 More objc2's ivar layout bitmap. No change in functionality. by Fariborz Jahanian · 16 years ago
  86. 525c9b7 Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things by Daniel Dunbar · 16 years ago
  87. 9e6c20b Assert on a few conditions that (I believe) should hold by Daniel Dunbar · 16 years ago
  88. 3d2ad66 ObjC2's Ivar bitmap layout work. No change in functionality. by Fariborz Jahanian · 16 years ago
  89. 6c1aac8 Move countInheritedIvars to within striking distance of GetClassSizeInfo by Daniel Dunbar · 16 years ago
  90. 6ec0716 Inline GetFirstIvarInRecord into sole caller. - No functionality change. by Daniel Dunbar · 16 years ago
  91. c7c6dc0 Set a bit in IMAGE_INFO to indicate that we don't contain any by Daniel Dunbar · 16 years ago
  92. 3e5f0d8 Lift out GetNamedIvarList. by Daniel Dunbar · 16 years ago
  93. 3eec8aa Don't emit ivar offsets for unnamed bit fields. by Daniel Dunbar · 16 years ago
  94. 60952f9 Remove non-const form of lookupFieldDeclForIvar. by Daniel Dunbar · 16 years ago
  95. 91636d6 Comment fixes. by Daniel Dunbar · 16 years ago
  96. b02532a Lift GetClassSizeInfo out of GenerateClass, add a FIXME. by Daniel Dunbar · 16 years ago
  97. b7b58b1 Fix rdar://6804402 - crash on objc implementations declared with by Chris Lattner · 16 years ago
  98. 48fa064 Fix bug in computation of ivar offsets for (adjacent) bitfields. by Daniel Dunbar · 16 years ago
  99. 737c502 Reuse ObjcIvarOffsetVariable instead of duplicating code. by Daniel Dunbar · 16 years ago
  100. 5e88bea Remove some unnecessary complexity. - No functionality change. by Daniel Dunbar · 16 years ago