| Commit message (Expand) | Author | Age | Files | Lines |
| * | Vector codegen improvements | Nate Begeman | 2009-01-18 | 1 | -40/+59 |
| * | Patch to implement code gen for aggrgate-valued property used | Fariborz Jahanian | 2009-01-12 | 1 | -0/+8 |
| * | Implement EmitUnsupportedRValue to generate an appropriately typed RValue. | Daniel Dunbar | 2009-01-09 | 1 | -3/+13 |
| * | Give "unsupported" error on calls through block pointers instead of | Daniel Dunbar | 2009-01-09 | 1 | -6/+22 |
| * | Add QualifiedDeclRefExpr, which retains additional source-location | Douglas Gregor | 2009-01-06 | 1 | -1/+3 |
| * | Add ASTContext::getBaseElementType and use it in CodeGenFunction::EmitArraySu... | Anders Carlsson | 2008-12-21 | 1 | -6/+1 |
| * | Handle VLA indexing | Anders Carlsson | 2008-12-21 | 1 | -2/+19 |
| * | Add support for member references (E1.E2, E1->E2) with C++ semantics, | Douglas Gregor | 2008-12-20 | 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 | -29/+37 |
| * | Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue | Chris Lattner | 2008-12-12 | 1 | -0/+6 |
| * | Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of | Chris Lattner | 2008-11-24 | 1 | -1/+1 |
| * | Implemented ir-gen for 'implicit' properties using the new AST nodes. | Fariborz Jahanian | 2008-11-22 | 1 | -0/+26 |
| * | Fields of ivars of struct types are considered ivars | Fariborz Jahanian | 2008-11-21 | 1 | -2/+7 |
| * | Support generation of objc_assign_ivar for ivar | Fariborz Jahanian | 2008-11-20 | 1 | -3/+9 |
| * | Added a test case for __weak field decls. Change SetVarDeclObjCAttribute | Fariborz Jahanian | 2008-11-20 | 1 | -8/+9 |
| * | More objc gc stuff. Read/Write barriers for local static/extern, | Fariborz Jahanian | 2008-11-20 | 1 | -17/+45 |
| * | More of objective-c's gc code-gen. Treat objective-c | Fariborz Jahanian | 2008-11-19 | 1 | -0/+6 |
| * | Few more changes due to Daniel's feedback. | Fariborz Jahanian | 2008-11-19 | 1 | -17/+17 |
| * | Fix redundant load of bit-fields on assignment (to get the updated | Daniel Dunbar | 2008-11-19 | 1 | -3/+23 |
| * | Generate strong write barriers for __strong objects. | Fariborz Jahanian | 2008-11-19 | 1 | -6/+13 |
| * | Patch for generation of weak write barriers for objc | Fariborz Jahanian | 2008-11-18 | 1 | -1/+9 |
| * | Generate objc_read_weak for __weak objc loads. | Fariborz Jahanian | 2008-11-18 | 1 | -0/+8 |
| * | Some basic support toward objective-c's GC code gen. | Fariborz Jahanian | 2008-11-18 | 1 | -2/+8 |
| * | Add a new expression node, CXXOperatorCallExpr, which expresses a | Douglas Gregor | 2008-11-14 | 1 | -1/+3 |
| * | Easy IRgen improvement for bitfields, don't emit x >> 0. | Daniel Dunbar | 2008-11-13 | 1 | -2/+3 |
| * | Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'.... | Douglas Gregor | 2008-11-04 | 1 | -3/+8 |
| * | Emit more descriptive unsupported error message on dot-syntax use of super. | Daniel Dunbar | 2008-10-17 | 1 | -0/+2 |
| * | Lift CodeGenFunction::EmitPredefinedFunctioName out of EmitPredefinedLValue. | Daniel Dunbar | 2008-10-17 | 1 | -23/+27 |
| * | Refactor some CodeGen functionality: | Daniel Dunbar | 2008-09-24 | 1 | -15/+35 |
| * | Implement CodeGen support for the 'CXXConditionDeclExpr' expression node, whi... | Argyrios Kyrtzidis | 2008-09-10 | 1 | -0/+9 |
| * | Move ABI specific code for functions / calls to CGCall.cpp: | Daniel Dunbar | 2008-09-09 | 1 | -55/+0 |
| * | Change CodeGen to emit calls using (RValue,Type) list: | Daniel Dunbar | 2008-09-09 | 1 | -40/+25 |
| * | Refactor parameter attribute handling: | Daniel Dunbar | 2008-09-08 | 1 | -30/+9 |
| * | Implement codegen of aggregates as lvalues in binary expressions, | Daniel Dunbar | 2008-09-04 | 1 | -1/+15 |
| * | Add Objective-C property setter support. | Daniel Dunbar | 2008-08-30 | 1 | -0/+18 |
| * | Refactor handling of calls: | Daniel Dunbar | 2008-08-30 | 1 | -44/+55 |
| * | Add special "property reference" CodeGen::LValue type for emitting | Daniel Dunbar | 2008-08-29 | 1 | -3/+25 |
| * | Support __PRETTY_FUNCTION__ and friends in Obj-C methods. | Daniel Dunbar | 2008-08-25 | 1 | -22/+23 |
| * | Make code generation of ivar ref exprs more like member exprs. | Anders Carlsson | 2008-08-25 | 1 | -19/+25 |
| * | Implement Obj-C ivar references to aggregates. | Daniel Dunbar | 2008-08-23 | 1 | -0/+17 |
| * | NeXT: Fix message sends which return structures. | Daniel Dunbar | 2008-08-23 | 1 | -5/+5 |
| * | Trim CGObjCRuntime::GenerateMessageSend[Super] | Daniel Dunbar | 2008-08-23 | 1 | -1/+11 |
| * | Change WarnUnsupported to ErrorUnsupported (in name and in practice). | Daniel Dunbar | 2008-08-16 | 1 | -2/+1 |
| * | Add GetAddrOfConstantCString method | Daniel Dunbar | 2008-08-13 | 1 | -4/+1 |
| * | Change ObjCRuntime GenerateProtocol[Ref] methods to take | Daniel Dunbar | 2008-08-13 | 1 | -0/+1 |
| * | Change CodeGenModule to only create ObjC runtime for ObjC files | Daniel Dunbar | 2008-08-11 | 1 | -1/+1 |
| * | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -7/+0 |
| * | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -0/+2 |
| * | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -1/+1 |