| Commit message (Expand) | Author | Age | Files | Lines |
| * | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor | 2009-01-12 | 1 | -8/+4 |
| * | A few property related cleanups to ObjCContainerDecl AST. | Steve Naroff | 2009-01-11 | 1 | -12/+10 |
| * | Provide a new kind of iterator, the specific_decl_iterator, that | Douglas Gregor | 2009-01-09 | 1 | -3/+3 |
| * | Don't crash when our FunctionDecl has a non-identifier name | Douglas Gregor | 2009-01-09 | 1 | -1/+2 |
| * | Addressed the issue in <rdar://problem/6479085>, where we failed to | Douglas Gregor | 2009-01-09 | 1 | -8/+6 |
| * | 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/+1 |
| * | Fix <rdar://problem/6465284> clang ObjC rewriter: objc_super messed up again. | Steve Naroff | 2008-12-23 | 1 | -16/+33 |
| * | Fix <rdar://problem/6463613> clang ObjC rewriter: assertion failure rewriting... | Steve Naroff | 2008-12-22 | 1 | -0/+2 |
| * | Remove rewriter dependency on 'nil' macro (used when rewriting for(...)) | Steve Naroff | 2008-12-17 | 1 | -2/+2 |
| * | Tweaks to allow us to rewrite with -x=objective-c++ enabled. | Steve Naroff | 2008-12-17 | 1 | -0/+11 |
| * | Fix <rdar://problem/6445502> clang ObjC rewriter: _Block_release has wrong pa... | Steve Naroff | 2008-12-16 | 1 | -11/+9 |
| * | Fix <rdar://problem/6435837> clang ObjC rewriter: use Block_release instead o... | Steve Naroff | 2008-12-12 | 1 | -2/+2 |
| * | Rename a local predicate to avoid confusion with Type::isBlockPointerType(). | Steve Naroff | 2008-12-11 | 1 | -17/+17 |
| * | Fixup generated code for imported block decl refs. | Steve Naroff | 2008-12-11 | 1 | -4/+4 |
| * | Fix <rdar://problem/6435842> clang ObjC rewriter: #include Block.h, Block_pri... | Steve Naroff | 2008-12-11 | 1 | -4/+0 |
| * | Fix <rdar://problem/6435382> clang ObjC rewriter: @property/@synthesize and b... | Steve Naroff | 2008-12-11 | 1 | -8/+11 |
| * | Actually distinguish between RecordDecl::field_iterator and RecordDecl::field... | Douglas Gregor | 2008-12-11 | 1 | -1/+1 |
| * | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -15/+26 |
| * | Fix regression caused by fixing <rdar://problem/6429113> clang ObjC rewriter:... | Steve Naroff | 2008-12-10 | 1 | -1/+1 |
| * | Fix <rdar://problem/6429113> clang ObjC rewriter: crash rewriting file with B... | Steve Naroff | 2008-12-09 | 1 | -6/+48 |
| * | Fix a couple uninitialized variables from my previous commit. | Steve Naroff | 2008-12-08 | 1 | -1/+3 |
| * | Fix <rdar://problem/6423452> clang ObjC rewriter: Don't use __declspec(dllimp... | Steve Naroff | 2008-12-08 | 1 | -28/+30 |
| * | Handle chained/nested property 'getters' (obj.p1.p2.p3). | Steve Naroff | 2008-12-08 | 1 | -10/+58 |
| * | Fixed <rdar://problem/6213808> clang ObjC rewriter: @finally is not always ex... | Steve Naroff | 2008-12-05 | 1 | -1/+23 |
| * | Finish up support for <rdar://problem/6213955> clang ObjC rewriter: rewriter ... | Steve Naroff | 2008-12-04 | 1 | -19/+54 |
| * | Several things... | Steve Naroff | 2008-12-04 | 1 | -20/+76 |
| * | More support for rewriting property getter/setters. | Steve Naroff | 2008-12-03 | 1 | -1/+44 |
| * | Add a couple FIXME's. | Steve Naroff | 2008-12-02 | 1 | -0/+6 |
| * | Make sure synthesized properties get inserted into the classes/categories met... | Steve Naroff | 2008-12-02 | 1 | -3/+22 |
| * | Simplify previous commit. | Steve Naroff | 2008-12-02 | 1 | -17/+14 |
| * | More work to rewrite synthesize properties (<rdar://problem/6213955>) | Steve Naroff | 2008-12-02 | 1 | -0/+50 |
| * | -Add several ObjC types to Decl::getDeclKindName(), a useful debug hook. | Steve Naroff | 2008-12-01 | 1 | -0/+11 |
| * | Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of | Chris Lattner | 2008-11-24 | 1 | -66/+66 |
| * | Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it | Chris Lattner | 2008-11-24 | 1 | -19/+19 |
| * | Rename Selector::getName() to Selector::getAsString(), and add | Chris Lattner | 2008-11-24 | 1 | -15/+13 |
| * | Fix <rdar://problem/6291588> assertion failure: SourceManager.h line 489. | Steve Naroff | 2008-11-19 | 1 | -2/+14 |
| * | This reworks some of the Diagnostic interfaces a bit to change how diagnostics | Chris Lattner | 2008-11-18 | 1 | -3/+2 |
| * | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor | 2008-11-17 | 1 | -19/+21 |
| * | Fix <rdar://problem/6372970> clang ObjC rewriter: incorrect cast when passing... | Steve Naroff | 2008-11-14 | 1 | -0/+1 |
| * | Fix <rdar://problem/6370288> clang ObjC rewriter: Too many _objc_symtab, _OBJ... | Steve Naroff | 2008-11-14 | 1 | -9/+9 |
| * | Fix an obscure rewriter bug when rewriting implementations that don't have a ... | Steve Naroff | 2008-11-13 | 1 | -6/+15 |
| * | Fix <rdar://problem/6343942> clang ObjC rewriter: crash rewriting blocks | Steve Naroff | 2008-11-13 | 1 | -1/+1 |
| * | [LLVM up] Update for raw_fd_ostream change. This fixes a FIXME that | Daniel Dunbar | 2008-11-13 | 1 | -2/+2 |
| * | Implement support for operator overloading using candidate operator | Douglas Gregor | 2008-11-12 | 1 | -1/+2 |
| * | Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr... | Sebastian Redl | 2008-11-11 | 1 | -3/+4 |
| * | Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'.... | Douglas Gregor | 2008-11-04 | 1 | -3/+2 |
| * | Fix <rdar://problem/6339636> clang ObjC rewriter: Assertion failed: FileID-1 ... | Steve Naroff | 2008-11-03 | 1 | -28/+28 |
| * | Fix <rdar://problem/6336774> clang block rewriter: Assertion failed: Offset+N... | Steve Naroff | 2008-11-03 | 1 | -0/+3 |
| * | Make sure RewriteObjCMethodDecl() does a block pointer rewrite. | Steve Naroff | 2008-10-30 | 1 | -1/+6 |