| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -1/+1 |
| * | Attempt to unbreak Windows build. | Daniel Dunbar | 2009-01-16 | 1 | -3/+3 |
| * | Fix some unused variable, control reaches end of non-void function, | Daniel Dunbar | 2009-01-15 | 1 | -3/+2 |
| * | Fix a misleading comment. | Steve Naroff | 2009-01-10 | 1 | -4/+4 |
| * | This patch fixes the code gen failures which was a fallout from | Fariborz Jahanian | 2009-01-10 | 1 | -9/+6 |
| * | assert if attempting to code gen. a property setter/getter | Fariborz Jahanian | 2009-01-10 | 1 | -0/+4 |
| * | Couple of code gen. fixes in ObjC's colection-statement. Hard | Fariborz Jahanian | 2009-01-06 | 1 | -1/+3 |
| * | Removed a slot in ObjCMemRegExpr used in | Fariborz Jahanian | 2008-12-18 | 1 | -2/+2 |
| * | Code gen. for ivar references; including bitfield | Fariborz Jahanian | 2008-12-15 | 1 | -1/+3 |
| * | Store the size of the EH stack inside each BreakContinue struct so we know wh... | Anders Carlsson | 2008-12-13 | 1 | -1/+2 |
| * | Patch for ObjCIvarRefExpr containing the field | Fariborz Jahanian | 2008-12-13 | 1 | -1/+3 |
| * | Support for implementation of property in the case where | Fariborz Jahanian | 2008-12-09 | 1 | -6/+8 |
| * | Change condition under which 'retain'/'copy' are directly evaluated. | Fariborz Jahanian | 2008-12-08 | 1 | -4/+6 |
| * | Code gen for aggregate-valued properties and a test case. | Fariborz Jahanian | 2008-11-26 | 1 | -4/+7 |
| * | Fix 80-col violations. | Daniel Dunbar | 2008-11-25 | 1 | -2/+4 |
| * | Implemented ir-gen for 'implicit' properties using the new AST nodes. | Fariborz Jahanian | 2008-11-22 | 1 | -12/+33 |
| * | New AST node to access "implicit" setter/getter using property dor syntax. | Fariborz Jahanian | 2008-11-22 | 1 | -26/+7 |
| * | Consolidated @try and @synchronize into a single | Fariborz Jahanian | 2008-11-21 | 1 | -2/+2 |
| * | Rename IdentifierInfo::isName to ::isStr. Use a nifty trick | Chris Lattner | 2008-11-20 | 1 | -1/+1 |
| * | fix save-o | Chris Lattner | 2008-11-19 | 1 | -1/+1 |
| * | simplify | Chris Lattner | 2008-11-19 | 1 | -1/+1 |
| * | This reworks some of the Diagnostic interfaces a bit to change how diagnostics | Chris Lattner | 2008-11-18 | 1 | -3/+2 |
| * | Start implementing support for @synchonized with the darwin ObjC API. | Chris Lattner | 2008-11-15 | 1 | -0/+6 |
| * | Rework IRgen invariant w.r.t. current insert point. | Daniel Dunbar | 2008-11-11 | 1 | -0/+1 |
| * | Centralize basic block creation in CodeGenFunction::createBasicBlock. | Daniel Dunbar | 2008-11-11 | 1 | -10/+9 |
| * | Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'.... | Douglas Gregor | 2008-11-04 | 1 | -3/+1 |
| * | Debug info bug fix, function start wasn't getting generated correctly | Daniel Dunbar | 2008-10-18 | 1 | -8/+2 |
| * | silence release-assert warnings. | Chris Lattner | 2008-10-12 | 1 | -3/+3 |
| * | Use DeclStmt::getSolitaryDecl() instead of DeclStmt::getDecl() when processin... | Ted Kremenek | 2008-10-06 | 1 | -3/+3 |
| * | Implement Obj-C synthesized setters for copy / retain. | Daniel Dunbar | 2008-09-24 | 1 | -22/+63 |
| * | Implement Obj-C getter synthesis for copy and retain. | Daniel Dunbar | 2008-09-24 | 1 | -12/+56 |
| * | Make sure to store the exception in the catch parameter. | Anders Carlsson | 2008-09-11 | 1 | -8/+0 |
| * | Make sure to emit the catch parameter as well as the catch body. | Anders Carlsson | 2008-09-11 | 1 | -0/+8 |
| * | Factor CodeGenFunction::StartFunction out of GenerateCode and | Daniel Dunbar | 2008-09-09 | 1 | -41/+11 |
| * | Use a unified return block. | Daniel Dunbar | 2008-09-09 | 1 | -0/+5 |
| * | Move handling of @try and @throw to the runtime class. | Anders Carlsson | 2008-09-09 | 1 | -0/+10 |
| * | Change CodeGen to emit calls using (RValue,Type) list: | Daniel Dunbar | 2008-09-09 | 1 | -5/+6 |
| * | Set function attributes (sext, zext, etc.) on Objective-C methods. | Daniel Dunbar | 2008-09-04 | 1 | -0/+3 |
| * | Fix infinite loop in for ... in code generation. | Daniel Dunbar | 2008-09-04 | 1 | -1/+1 |
| * | Fix ObjCPropertRefExpr to be able to encode all the information for | Daniel Dunbar | 2008-09-03 | 1 | -8/+18 |
| * | Handle mutation while enumerating correctly. Fix some bugs. | Anders Carlsson | 2008-08-31 | 1 | -7/+48 |
| * | Initial support for CodeGen of for ... in statements. | Anders Carlsson | 2008-08-31 | 1 | -1/+151 |
| * | Stub out CodeGenFunction::EmitObjCForCollectionStmt. | Anders Carlsson | 2008-08-30 | 1 | -0/+6 |
| * | Add Objective-C property setter support. | Daniel Dunbar | 2008-08-30 | 1 | -12/+22 |
| * | Refactor handling of calls: | Daniel Dunbar | 2008-08-30 | 1 | -2/+8 |
| * | Add special "property reference" CodeGen::LValue type for emitting | Daniel Dunbar | 2008-08-29 | 1 | -0/+6 |
| * | Initial support for Obj-C dot-syntax for getters. | Daniel Dunbar | 2008-08-27 | 1 | -0/+20 |
| * | Objective-C @synthesize support. | Daniel Dunbar | 2008-08-26 | 1 | -4/+86 |
| * | Fix Obj-C super sends inside class methods. | Daniel Dunbar | 2008-08-25 | 1 | -6/+10 |
| * | Trim CGObjCRuntime::GenerateMessageSend[Super] | Daniel Dunbar | 2008-08-23 | 1 | -29/+5 |