| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix rdar://6804402 - crash on objc implementations declared with | Chris Lattner | 2009-04-19 | 1 | -2/+6 |
* | revert david's patch, which causes a testsuite failure. | Chris Lattner | 2009-04-19 | 1 | -3/+2 |
* | "This patch fixes message sends to super in class methods for the GNU runtime... | Chris Lattner | 2009-04-18 | 1 | -2/+3 |
* | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor | 2009-04-09 | 1 | -4/+5 |
* | Fixes a problem where the compiler is reporting the wrong size to the Gnu | Fariborz Jahanian | 2009-04-01 | 1 | -2/+3 |
* | tidy some code. | Chris Lattner | 2009-04-01 | 1 | -10/+8 |
* | Patch to fix proptocol reference ir-gen for GNU runtime. | Fariborz Jahanian | 2009-03-31 | 1 | -2/+39 |
* | Some "prep" work for handling ObjC @-string constants that contain UTF-8. No ... | Steve Naroff | 2009-03-31 | 1 | -2/+4 |
* | Use CodeGenModule API for ObjC runtime function references. | Fariborz Jahanian | 2009-03-30 | 1 | -14/+28 |
* | Obscure code gen bug related to sending | Fariborz Jahanian | 2009-02-28 | 1 | -0/+2 |
* | Some refactoring of Ivar offset code gen. | Fariborz Jahanian | 2009-02-10 | 1 | -0/+20 |
* | Patch fixes messaging for GNU runtime. | Fariborz Jahanian | 2009-02-04 | 1 | -58/+36 |
* | GNUStep fast enumeration. | Fariborz Jahanian | 2009-02-03 | 1 | -1/+3 |
* | ir-gen for nonfragile ivar bitfield access (objc2 nonfragile abi). | Fariborz Jahanian | 2009-02-03 | 1 | -13/+19 |
* | objc2's ir-gen for nonfragile ivar access. | Fariborz Jahanian | 2009-02-03 | 1 | -0/+2 |
* | Thread CGFunctionInfo construction through CodeGenTypes. | Daniel Dunbar | 2009-02-02 | 1 | -4/+6 |
* | More ABI API cleanup. | Daniel Dunbar | 2009-02-02 | 1 | -2/+2 |
* | ABI handling API changes. | Daniel Dunbar | 2009-02-02 | 1 | -3/+4 |
* | Refactored code gen for ivar access in preparation for | Fariborz Jahanian | 2009-02-02 | 1 | -0/+16 |
* | improvements for GNU objc runtime support, patch by David Chisnall! | Chris Lattner | 2009-01-27 | 1 | -32/+54 |
* | revert the gnu objc patches, they regress codegen-gnu.m | Chris Lattner | 2009-01-21 | 1 | -11/+7 |
* | switch from getTypeAtIndex to getElementType. It is non-virtual | Chris Lattner | 2009-01-21 | 1 | -1/+1 |
* | Fix objc type conversion issues with the GNU runtime, patch by | Chris Lattner | 2009-01-21 | 1 | -7/+11 |
* | (LLVM up) Match TargetData API change in LLVM TOT. | Daniel Dunbar | 2009-01-12 | 1 | -1/+1 |
* | This patch fixes the code gen failures which was a fallout from | Fariborz Jahanian | 2009-01-10 | 1 | -2/+4 |
* | Provide a new kind of iterator, the specific_decl_iterator, that | Douglas Gregor | 2009-01-09 | 1 | -1/+1 |
* | Remove redundant method context (now that ObjCMethodDecl isa ScopedDecl). | Steve Naroff | 2009-01-08 | 1 | -1/+1 |
* | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 1 | -2/+2 |
* | Code gen. for ivar references; including bitfield | Fariborz Jahanian | 2008-12-15 | 1 | -1/+2 |
* | Correct CodeGen assumption that LongTy == Int32Ty in a few places. This makes... | Sebastian Redl | 2008-12-04 | 1 | -2/+2 |
* | Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of | Chris Lattner | 2008-11-24 | 1 | -6/+7 |
* | Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it | Chris Lattner | 2008-11-24 | 1 | -11/+11 |
* | Rename Selector::getName() to Selector::getAsString(), and add | Chris Lattner | 2008-11-24 | 1 | -8/+9 |
* | Consolidated @try and @synchronize into a single | Fariborz Jahanian | 2008-11-21 | 1 | -12/+5 |
* | Introducing objc_assign_ivar to clang. | Fariborz Jahanian | 2008-11-20 | 1 | -0/+8 |
* | Generate strong write barriers for __strong objects. | Fariborz Jahanian | 2008-11-19 | 1 | -0/+16 |
* | Patch for generation of weak write barriers for objc | Fariborz Jahanian | 2008-11-18 | 1 | -2/+10 |
* | Generate objc_read_weak for __weak objc loads. | Fariborz Jahanian | 2008-11-18 | 1 | -0/+8 |
* | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor | 2008-11-17 | 1 | -5/+5 |
* | Start implementing support for @synchonized with the darwin ObjC API. | Chris Lattner | 2008-11-15 | 1 | -0/+7 |
* | Move IRBuilder type definition to common file. | Daniel Dunbar | 2008-11-01 | 1 | -8/+7 |
* | Remove unneeded EncodingRecordTypes argument to getObjCEncodingForType. | Daniel Dunbar | 2008-10-17 | 1 | -3/+1 |
* | Add Obj-C runtime methods to get runtime specific functions for | Daniel Dunbar | 2008-09-24 | 1 | -8/+13 |
* | Move FunctionType conversion into CGCall.cpp: | Daniel Dunbar | 2008-09-10 | 1 | -27/+2 |
* | Move handling of @try and @throw to the runtime class. | Anders Carlsson | 2008-09-09 | 1 | -0/+17 |
* | Change CodeGen to emit calls using (RValue,Type) list: | Daniel Dunbar | 2008-09-09 | 1 | -4/+5 |
* | Handle mutation while enumerating correctly. Fix some bugs. | Anders Carlsson | 2008-08-31 | 1 | -0/+8 |
* | Add Objective-C property setter support. | Daniel Dunbar | 2008-08-30 | 1 | -10/+14 |
* | Refactor handling of calls: | Daniel Dunbar | 2008-08-30 | 1 | -14/+22 |
* | Fix Obj-C super sends inside class methods. | Daniel Dunbar | 2008-08-25 | 1 | -6/+11 |