aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGObjC.cpp
AgeCommit message (Expand)Author
2009-04-21Remove unnused variable.Daniel Dunbar
2009-04-21Kill ASTContext::[gs]etFieldForDecl, instead we just lookup thingsDaniel Dunbar
2009-04-20Remove non-const form of lookupFieldDeclForIvar.Daniel Dunbar
2009-04-18Use EmitCallArgs in EmitObjCMessageExpr.Anders Carlsson
2009-04-18FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor
2009-04-17Attributes on block functions were not being set.Daniel Dunbar
2009-04-13Update to use hasAttr() instead of getAttr().Daniel Dunbar
2009-04-08Use the new EmitCallArgs function. No indented functionality change.Anders Carlsson
2009-03-31Some "prep" work for handling ObjC @-string constants that contain UTF-8. No ...Steve Naroff
2009-03-28rename some methods.Chris Lattner
2009-03-22pull "runtime globals" into the same framework as other functions/global vari...Chris Lattner
2009-03-20Fix codegen for support for super inside block literal expressions.Mike Stump
2009-03-20More super dot-syntax property implementationFariborz Jahanian
2009-03-20Implement ir gen. for setter/getter applied to 'super' Fariborz Jahanian
2009-03-10ir-gen support for class getter/setter call Fariborz Jahanian
2009-03-03Fixed an ir-gen bug in syntheszing a getter functionFariborz Jahanian
2009-02-28Obscure code gen bug related to sending Fariborz Jahanian
2009-02-25Enable debug info emission for objc methods.Devang Patel
2009-02-20remove some more methods from objc decls, using the iteratorChris Lattner
2009-02-10Start removing the old Obj-C EH stack now that the cleanup stack is used inst...Anders Carlsson
2009-02-07Ensure we track all the stack depths for all break and continue pointsMike Stump
2009-02-07Ensure that we don't miscodegen if vlas creap into the top of the for.Mike Stump
2009-02-07Fixup goto codegen in and around VLAs.Mike Stump
2009-02-04Use correct signature for calling enumeration mutation function.Daniel Dunbar
2009-02-04Update passing of _Bool values to match what function was declared to take.Daniel Dunbar
2009-02-03Use CGCall infrastructure to call enumeration mutation function.Daniel Dunbar
2009-02-03Fix return type for calls to objc_setProperty.Daniel Dunbar
2009-02-03objc2's ir-gen for nonfragile ivar access.Fariborz Jahanian
2009-02-02Thread CGFunctionInfo construction through CodeGenTypes.Daniel Dunbar
2009-02-02More ABI API cleanup.Daniel Dunbar
2009-02-02ABI handling API changes.Daniel Dunbar
2009-01-20Remove ScopedDecl, collapsing all of its functionality into Decl, soDouglas Gregor
2009-01-16Attempt to unbreak Windows build.Daniel Dunbar
2009-01-15Fix some unused variable, control reaches end of non-void function,Daniel Dunbar
2009-01-10Fix a misleading comment.Steve Naroff
2009-01-10This patch fixes the code gen failures which was a fallout fromFariborz Jahanian
2009-01-10assert if attempting to code gen. a property setter/getterFariborz Jahanian
2009-01-06Couple of code gen. fixes in ObjC's colection-statement. HardFariborz Jahanian
2008-12-18Removed a slot in ObjCMemRegExpr used inFariborz Jahanian
2008-12-15Code gen. for ivar references; including bitfieldFariborz Jahanian
2008-12-13Store the size of the EH stack inside each BreakContinue struct so we know wh...Anders Carlsson
2008-12-13Patch for ObjCIvarRefExpr containing the fieldFariborz Jahanian
2008-12-09Support for implementation of property in the case whereFariborz Jahanian
2008-12-08Change condition under which 'retain'/'copy' are directly evaluated.Fariborz Jahanian
2008-11-26Code gen for aggregate-valued properties and a test case.Fariborz Jahanian
2008-11-25Fix 80-col violations.Daniel Dunbar
2008-11-22Implemented ir-gen for 'implicit' properties using the new AST nodes.Fariborz Jahanian
2008-11-22New AST node to access "implicit" setter/getter using property dor syntax.Fariborz Jahanian
2008-11-21Consolidated @try and @synchronize into a singleFariborz Jahanian
2008-11-20Rename IdentifierInfo::isName to ::isStr. Use a nifty trickChris Lattner