1. da65ea8 Teach IR generation how to lazily emit cleanups. This has a lot of advantages, by John McCall · 14 years ago
  2. f1549f6 Validated by nightly-test runs on x86 and x86-64 darwin, including after by John McCall · 14 years ago
  3. 03b2960 Objective-c++ IRGen. Support for @selector expression as by Fariborz Jahanian · 14 years ago
  4. 9d3347a Give Type::isIntegralType() an ASTContext parameter, so that it by Douglas Gregor · 14 years ago
  5. 55bcace Patch adds support for copying of those by Fariborz Jahanian · 14 years ago
  6. ef072fd Push a return-value slot throughout ObjC message-send codegen. Will be by John McCall · 14 years ago
  7. a54da05 Fix my inability to spell 'continue' and a case where message sends returning non-pointer-sized things were generating invalid IR inside @try blocks. by David Chisnall · 14 years ago
  8. 506b57e Clean up some more uses of getAs<ObjCInterfaceType>() that Fariborz pointed by John McCall · 14 years ago
  9. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  10. 22b8827 Tweaked selector mangling again (GNU runtime). by David Chisnall · 14 years ago
  11. 20fba8a Fixed linkage problem from last commit (GNU runtime). by David Chisnall · 14 years ago
  12. 87935a8 Tweaked selector generation (GNU runtime). Removed the use of GlobalAliases in the generated bitcode. by David Chisnall · 14 years ago
  13. 4b02afc As per Chris' request, return the Instruction from EmitCall and add the metadata in the caller. by David Chisnall · 14 years ago
  14. 63e742b Attach message send metadata to the lookup as well as to the call (GNU runtime). by David Chisnall · 14 years ago
  15. db83194 Make super message lookups cacheable (GNUstep Runtime) by David Chisnall · 14 years ago
  16. dd5c98f Tweaked EmitCall() to permit the caller to provide some metadata to attach to the call site. by David Chisnall · 14 years ago
  17. 866163b Fixed incorrect type of alloca (GNU runtime). by David Chisnall · 14 years ago
  18. c6cd5fd Changed signature of GenerateMessageSend() function to pass the ObjCInterfaceDecl for class messages and removed the boolean IsClassMessage argument, which wasn't used anywhere. by David Chisnall · 14 years ago
  19. 07c55e3 Remove unused function. by Benjamin Kramer · 14 years ago
  20. 8c757f9 Emit the correct symbol name for the class (GNU runtime). by David Chisnall · 14 years ago
  21. 254e2d9 Fixed message send to void (broken by my last commit - GNU runtime). by David Chisnall · 14 years ago
  22. 664b7c7 Ensure return from a message to nil is always 0 (GNU runtime). by David Chisnall · 14 years ago
  23. c00d8e1 Make the static type of the exception variable in an Objective-C by Douglas Gregor · 14 years ago
  24. 8f5e3dd Improve the AST representation of Objective-C @try/@catch/@finally by Douglas Gregor · 14 years ago
  25. cb421fa Fix -Wcast-qual warnings. by Dan Gohman · 14 years ago
  26. d901da5 Don't just emit ivar metadata - emit CORRECT ivar metadata. (GNU runtime) by David Chisnall · 14 years ago
  27. 7f63cb0 Fix emitting ivar metadata for synthesized ivars and some 64-bit fixes. (GNU runtime) by David Chisnall · 14 years ago
  28. 6cc5906 Add some API code for future work. by Fariborz Jahanian · 14 years ago
  29. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  30. 4c8c8e9 Fixed synthesizing properties declared in properties (GNU runtime). by David Chisnall · 14 years ago
  31. ad9e06d Fixed copy-and-paste error causing categories to contain the protocols declared on the class, not the protocols declared on the category. by David Chisnall · 14 years ago
  32. 42ba04a Don't generate method metadata for @dynamic properties. Fixes PR6354. by David Chisnall · 15 years ago
  33. ead608a Use the power of types to track down another canonicalization bug in by John McCall · 15 years ago
  34. 74a8bbf StringRefize two random methods, remove a dead variable and a weird constructor call. by Benjamin Kramer · 15 years ago
  35. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 15 years ago
  36. 6d5a1c2 Revert "Numerous changes to selector handling:", this breaks a whole bunch of by Daniel Dunbar · 15 years ago
  37. ef6e0f3 First pass at adding GC support for GNU runtime. GC ivar maps not yet constructed, GC flag not set. by David Chisnall · 15 years ago
  38. a8fa96e Numerous changes to selector handling: by David Chisnall · 15 years ago
  39. 48272a0 Unique ObjC strings (GNU Runtime); fix for PR6142. Note: Doing this in the runtime-specific code is a bit ugly. It would be a good idea to hoist all of the string / protocol uniqueing code up into CGObjCRuntime or CodeGenModule and only handle emitting the original versions in the runtime-specific code. by David Chisnall · 15 years ago
  40. 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 15 years ago
  41. d346736 Made ObjC method name mangling match GCC (which does it in a stupid and broken way that can give conflicts on method names containing underscores, but is needed for gdb to work because gdb does not know how to read ObjC class tables and relies on the mangling). by David Chisnall · 15 years ago
  42. f950837 Fix type mismatch on 64-bit platforms (GNU ObjC). by David Chisnall · 15 years ago
  43. 41d63ed Export a public symbol for classes with the GNU runtime. by David Chisnall · 15 years ago
  44. 90665bd Fix for PR5691 by David Chisnall · 15 years ago
  45. f3c47c9 Pass ReturnValueSlot to EmitCall. No functionality change yet. by Anders Carlsson · 15 years ago
  46. 0faa516 Fix for bug 5691. by David Chisnall · 15 years ago
  47. 1b09695 Change LangOptions::ObjCConstantStringClass to an std::string to avoid worrying about the lifetime. by Daniel Dunbar · 15 years ago
  48. ff80fab Fixed crash when using undefined protocols (GNU runtime). by David Chisnall · 15 years ago
  49. aecbf24 Fixed bug where ivar offsets were being initialized as 0 with the fragile GNU ABI. by David Chisnall · 15 years ago
  50. 1804463 Fixed two minor differences between clang and GCC-generated runtime structures for the GNU runtime. by David Chisnall · 15 years ago
  51. 790b20e There is now only one version of eh.selector and eh.typeid.for. by Duncan Sands · 15 years ago
  52. 3c0ef8c Simplify pointer creation with the new Type::getInt*Ptr methods. by Benjamin Kramer · 15 years ago
  53. 6c7a1f3 Patch fixes a code gen. bug in generation of objc_assign_ivar (objc GC's API). by Fariborz Jahanian · 15 years ago
  54. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  55. 0d36dd2 Make clang stop relying on ConstantStruct::get's default value for isPacked by Nick Lewycky · 15 years ago
  56. 6793966 IRgen/ObjC: Correctly construct the function info for variadic message sends. by Daniel Dunbar · 15 years ago
  57. d6c93d7 IRgen/ObjC: Make the target method decl available to GenerateMessageSendSuper. by Daniel Dunbar · 15 years ago
  58. a7c5b08 Small fix to stop CGObjCGNU emitting symbols that break some versions of gas. by David Chisnall · 15 years ago
  59. 389a0e8 Fix use of uninitialized, David please check. by Daniel Dunbar · 15 years ago
  60. d9a1db3 Non fragile ABI for GNU runtime. Patch bu David Chisnall. by Fariborz Jahanian · 15 years ago
  61. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  62. 08c3213 Re-implemented generation of objc_memmove_collectable by Fariborz Jahanian · 15 years ago
  63. 8a5a9aa Updated GNU runtime non-fragile ABI. by David Chisnall · 15 years ago
  64. 0f43656 Initial patch to support definitions of id and Class from headers in Objective-C code. by David Chisnall · 15 years ago
  65. 8c8f69e Update for LLVM API change. by Owen Anderson · 15 years ago
  66. 0032b27 Update for LLVM API change. by Owen Anderson · 15 years ago
  67. 47a434f Update for LLVM API change. by Owen Anderson · 15 years ago
  68. f35271b cgobjcgnu was making invalid common globals. by Chris Lattner · 15 years ago
  69. bb1c860 Fixup spacing and 80-col violations. by Mike Stump · 15 years ago
  70. c9c88b4 Update for LLVM API change. by Owen Anderson · 15 years ago
  71. 03e2050 Update for LLVM API changes. by Owen Anderson · 15 years ago
  72. 96e0fc7 Update for LLVM API change. by Owen Anderson · 15 years ago
  73. 3c4972d Update for LLVM API change. by Owen Anderson · 15 years ago
  74. 7db6d83 Update for LLVM API change. by Owen Anderson · 15 years ago
  75. 08e2524 Update for LLVM API change. by Owen Anderson · 15 years ago
  76. 4a28d5d Update for LLVM API change. by Owen Anderson · 15 years ago
  77. 309a436 Fix declaration of obc_enumerationMutation function, for GNU runtime. by Daniel Dunbar · 15 years ago
  78. 19cc4ab Revert r75641. by Anders Carlsson · 15 years ago
  79. 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
  80. a1cf15f Update for LLVM API change, and contextify a bunch of related stuff. by Owen Anderson · 15 years ago
  81. 3d598a5 Rename RecordLayout.h to ASTRecordLayout.h by Anders Carlsson · 15 years ago
  82. 6924382 Update for LLVM API change. by Owen Anderson · 15 years ago
  83. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  84. aac8705 Update for IRBuilder API change. by Owen Anderson · 15 years ago
  85. 1c431b3 Update for LLVM API change. by Owen Anderson · 15 years ago
  86. c14f0d2 Update for LLVM API change. by Owen Anderson · 15 years ago
  87. 082b02e Implemented memmove_collectable API for Next runtime by Fariborz Jahanian · 15 years ago
  88. c51db23 This fixes the case where the wrong symbol is emitted leading to linking errors when you reference a class before defining it (GNU runtime). by Fariborz Jahanian · 15 years ago
  89. b59761b use new and simplified LLVM APIs. Patch by Jay Foad! by Chris Lattner · 15 years ago
  90. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  91. c38e9af Patch fixes an obscure bug when 'used' attribute is applied to by Fariborz Jahanian · 15 years ago
  92. 2a8e4e1 "GCC emits an __objc_class_name_{classname} symbol for every class, and a corresponding reference to this symbol for every compilation unit that references the class. This causes linker errors when you try linking a program which references some classes but doesn't define them. The attached patch implements this support in clang, so you can compile a class with clang, reference it in a file compiled with GCC, and have it all work correctly." by Chris Lattner · 15 years ago
  93. 8e6ac1d Cleanup/Refactoring of ivar collection. No change in functionality. by Fariborz Jahanian · 15 years ago
  94. 34e6577 This patch adds support for sender-aware dispatch in Objective-C for the GNU runtime, when by Fariborz Jahanian · 15 years ago
  95. 9cd96ff This patch provides preliminary support for non-fragile instance variables on the GNU runtime. by Fariborz Jahanian · 15 years ago
  96. cb9dad0 This patch allows clang to generate code for declared properties on the GNU runtime. As with @synchronized, this requires some extra functions that are included with other libraries (not with the GNU runtime itself) and so will cause linker errors when these are not present. by Fariborz Jahanian · 15 years ago
  97. 1e64a95 This patch fixes two bugs in the GNU Objective-C runtime implementation. One is a case in rethrowing exceptions where the C types don't match correctly (I already sent this patch to Daniel Dunbar, who found the bug, so it may have already been committed). The other fixes the case properties so that the methods generated as property accessors are added to the class structure correctly. by Fariborz Jahanian · 15 years ago
  98. d6a9907 More improvements for GNU runtime objc EH, patch by David Chisnall! by Chris Lattner · 15 years ago
  99. bb422ad further improvements to gnu objc EH stuff, patch by David Chisnall! by Chris Lattner · 15 years ago
  100. 48e6e7e "This patch fixes message sends to super in categories for the GNU runtime. This used to work, but I broke it when I modified the code to emit the same thing as GCC for message sends to super in classes." by Chris Lattner · 15 years ago