1. f1549f6 Validated by nightly-test runs on x86 and x86-64 darwin, including after by John McCall · 14 years ago
  2. 1d110e0 Remove unnecessary ASTContext parameter from by Douglas Gregor · 14 years ago
  3. 7e70fb2 Fix an Obj-C++ miscompile when calling an Obj-C method that returns a C++ reference. by Anders Carlsson · 14 years ago
  4. e2a901a When using property-dot assignment syntax to call a setter method, by Fariborz Jahanian · 14 years ago
  5. 1884eb0 Re-land the fix for PR7139. by Anders Carlsson · 14 years ago
  6. ef072fd Push a return-value slot throughout ObjC message-send codegen. Will be by John McCall · 14 years ago
  7. 892fa6c Unbreak self-host. by Anders Carlsson · 14 years ago
  8. db9b12e Rename CodeGenFunction::EmitMemSetToZero to EmitNullInitialization. Handle setting null data member pointers correctly. Fixes PR7139. by Anders Carlsson · 14 years ago
  9. ee50429 Allocate space in a block record for implicit references to the Objective C by John McCall · 14 years ago
  10. 3031c63 Correctly generate IR for ObjC messages sends to protocol-qualified types. by John McCall · 14 years ago
  11. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  12. 5077c38 Implement semantic analysis and an AST representation for the named by Douglas Gregor · 14 years ago
  13. 97a73cd Code Gen support for Getter/Setter synthesis of by Fariborz Jahanian · 14 years ago
  14. bc397cf Clean up the {} and else placement. This fixes an ambiguous else as well as by Chandler Carruth · 14 years ago
  15. 17cb326 This patch deals with Sema Part of Setter/Getter synthesis by Fariborz Jahanian · 14 years ago
  16. 8b688ed Fixes a code gen. crash when ivar object has trivial constructor. by Fariborz Jahanian · 14 years ago
  17. 8e6404c Add the same 'ForVirtualBase' parameter to EmitCXXDestructorCall. by Anders Carlsson · 14 years ago
  18. 9b4d4fc Support for construct/destruct of ivar array by Fariborz Jahanian · 14 years ago
  19. 109dfc6 IRGen for initialization/destruction of by Fariborz Jahanian · 14 years ago
  20. 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
  21. f1b48b7 CastExpr should not hold a pointer to the base path. More cleanup. by Anders Carlsson · 14 years ago
  22. 88465d3 Add an InheritancePath parameter to the ImplicitCastExpr constructor. by Anders Carlsson · 14 years ago
  23. 0b647a6 Suppress compiler warning. by Daniel Dunbar · 14 years ago
  24. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 14 years ago
  25. 08adf32 Removes a FIXME. by Fariborz Jahanian · 14 years ago
  26. 15bd588 Variation of objc_copyStruct API generation when by Fariborz Jahanian · 14 years ago
  27. 0b2bd47 Add support for objc_copyStruct to enforce by Fariborz Jahanian · 14 years ago
  28. c603d09 revert 100942, pending discussion. by Chris Lattner · 14 years ago
  29. d281915 Fix for PR6811. by David Chisnall · 14 years ago
  30. 4800ea6 Emit debug info for objc getters and setters. by Devang Patel · 14 years ago
  31. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  32. ad46886 Replace some constant-sized SmallVectors. by Benjamin Kramer · 14 years ago
  33. 1b23fe6 Fix a code gen. bug involving generation of getter method by Fariborz Jahanian · 14 years ago
  34. c2350e5 Extend ObjCMessageExpr for class method sends with the source location by Douglas Gregor · 14 years ago
  35. a92d613 Use getLocStart(), instead of getLocEnd(), to record starting location of objc method. :) by Devang Patel · 14 years ago
  36. 195337d IRgen: Add CreateMemTemp, for creating an temporary memory object for a particular type, and flood fill. - CreateMemTemp sets the alignment on the alloca correctly, which fixes a great many places in IRgen where we were doing the wrong thing. by Daniel Dunbar · 14 years ago
  37. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 14 years ago
  38. ea48522 IRgen: Fix some CreateTempAlloca calls to use ConvertTypeForMem when that is by Daniel Dunbar · 14 years ago
  39. 6d5a1c2 Revert "Numerous changes to selector handling:", this breaks a whole bunch of by Daniel Dunbar · 14 years ago
  40. a8fa96e Numerous changes to selector handling: by David Chisnall · 14 years ago
  41. 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 14 years ago
  42. f3c47c9 Pass ReturnValueSlot to EmitCall. No functionality change yet. by Anders Carlsson · 15 years ago
  43. 45e8423 Fix crash when synthesizing property setters when the property type and ivar by Daniel Dunbar · 15 years ago
  44. d6c93d7 IRgen/ObjC: Make the target method decl available to GenerateMessageSendSuper. by Daniel Dunbar · 15 years ago
  45. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  46. d2e1eb0 Fixed a property getter ir-gen crash. by Fariborz Jahanian · 15 years ago
  47. 1feade8 Regularize the case and sort. by Mike Stump · 15 years ago
  48. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 15 years ago
  49. d2ae5aa Renamed ClassProp data member of ObjCImplctSetterGetterRefExpr by Fariborz Jahanian · 15 years ago
  50. 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 15 years ago
  51. c9c88b4 Update for LLVM API change. by Owen Anderson · 15 years ago
  52. b3589f4 Canonicalize else spacing. by Mike Stump · 15 years ago
  53. 3c4972d Update for LLVM API change. by Owen Anderson · 15 years ago
  54. 4a28d5d Update for LLVM API change. by Owen Anderson · 15 years ago
  55. a1cf15f Update for LLVM API change, and contextify a bunch of related stuff. by Owen Anderson · 15 years ago
  56. 6924382 Update for LLVM API change. by Owen Anderson · 15 years ago
  57. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  58. 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 15 years ago
  59. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  60. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
  61. f5408fe Reflow some comments. by Mike Stump · 15 years ago
  62. df9ccc6 Patch to support Gnu runtime's typed selectors. Patch by David Chisnall. by Fariborz Jahanian · 15 years ago
  63. d3a413d Implement function-try-blocks. However, there's a very subtle bug that I can't track down. by Sebastian Redl · 15 years ago
  64. 16f0049 split ObjC and C++ Statements out into their own headers. by Chris Lattner · 15 years ago
  65. 7818a4d Remove unnused variable. by Daniel Dunbar · 15 years ago
  66. 525c9b7 Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things by Daniel Dunbar · 15 years ago
  67. 60952f9 Remove non-const form of lookupFieldDeclForIvar. by Daniel Dunbar · 15 years ago
  68. 131038e Use EmitCallArgs in EmitObjCMessageExpr. by Anders Carlsson · 15 years ago
  69. 7297134 FunctionDecl::getBody() is getting an ASTContext argument for use in by Douglas Gregor · 15 years ago
  70. 0e4f40e Attributes on block functions were not being set. by Daniel Dunbar · 15 years ago
  71. b11fa0d Update to use hasAttr() instead of getAttr(). - No functionality change. by Daniel Dunbar · 15 years ago
  72. 782f397 Use the new EmitCallArgs function. No indented functionality change. by Anders Carlsson · 15 years ago
  73. 33fdb73 Some "prep" work for handling ObjC @-string constants that contain UTF-8. No functionality change. by Steve Naroff · 15 years ago
  74. 7e24e82 rename some methods. by Chris Lattner · 15 years ago
  75. 74391b4 pull "runtime globals" into the same framework as other functions/global variables. by Chris Lattner · 15 years ago
  76. 6cc88f7 Fix codegen for support for super inside block literal expressions. by Mike Stump · 15 years ago
  77. f469557 More super dot-syntax property implementation by Fariborz Jahanian · 15 years ago
  78. 8e5d232 Implement ir gen. for setter/getter applied to 'super' by Fariborz Jahanian · 15 years ago
  79. 3523d4f ir-gen support for class getter/setter call using property dot-syntax. by Fariborz Jahanian · 15 years ago
  80. ed1d29d Fixed an ir-gen bug in syntheszing a getter function by Fariborz Jahanian · 15 years ago
  81. 7ce7792 Obscure code gen bug related to sending by Fariborz Jahanian · 15 years ago
  82. 1d6a451 Enable debug info emission for objc methods. by Devang Patel · 15 years ago
  83. 89951a8 remove some more methods from objc decls, using the iterator by Chris Lattner · 15 years ago
  84. e4b6d34 Start removing the old Obj-C EH stack now that the cleanup stack is used instead. by Anders Carlsson · 15 years ago
  85. 3e9da66 Ensure we track all the stack depths for all break and continue points by Mike Stump · 15 years ago
  86. 501af1f Ensure that we don't miscodegen if vlas creap into the top of the for. by Mike Stump · 15 years ago
  87. 36a2ada Fixup goto codegen in and around VLAs. by Mike Stump · 15 years ago
  88. 90350b6 Use correct signature for calling enumeration mutation function. by Daniel Dunbar · 15 years ago
  89. be395f6 Update passing of _Bool values to match what function was declared to take. by Daniel Dunbar · 15 years ago
  90. 2b2105e Use CGCall infrastructure to call enumeration mutation function. by Daniel Dunbar · 15 years ago
  91. e4be5a6 Fix return type for calls to objc_setProperty. by Daniel Dunbar · 15 years ago
  92. 45012a7 objc2's ir-gen for nonfragile ivar access. by Fariborz Jahanian · 15 years ago
  93. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 15 years ago
  94. 88b5396 More ABI API cleanup. by Daniel Dunbar · 15 years ago
  95. bb36d33 ABI handling API changes. by Daniel Dunbar · 15 years ago
  96. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 15 years ago
  97. f479cea Attempt to unbreak Windows build. by Daniel Dunbar · 15 years ago
  98. f185319 Fix some unused variable, control reaches end of non-void function, by Daniel Dunbar · 15 years ago
  99. 489034c Fix a misleading comment. by Steve Naroff · 16 years ago
  100. 679a502 This patch fixes the code gen failures which was a fallout from by Fariborz Jahanian · 16 years ago