| Commit message (Expand) | Author | Age | Files | Lines |
| * | Change "Regions" to be "LexicalBlocks" since that's what they | Eric Christopher | 2011-09-29 | 1 | -4/+4 |
| * | de-tmpify clang. | Benjamin Kramer | 2011-09-27 | 1 | -2/+1 |
| * | Turn off the generation of unaligned atomic load/store; I'm going to explicit... | Eli Friedman | 2011-09-13 | 1 | -1/+3 |
| * | Refactoring, mostly to give ObjCPropertyDecls stronger invariants for | John McCall | 2011-09-13 | 1 | -9/+8 |
| * | Switch LangOptions over to a .def file that describes header of the | Douglas Gregor | 2011-09-13 | 1 | -4/+4 |
| * | Don't use native atomics on ivars whose size is not a power of two, | John McCall | 2011-09-13 | 1 | -0/+8 |
| * | Handle reference properties correctly in the trivial-getter check. | John McCall | 2011-09-13 | 1 | -2/+8 |
| * | Always emit bitfield properties using expression behavior, even if they're | John McCall | 2011-09-13 | 1 | -0/+7 |
| * | Unify the decision of how to emit property getters and setters into a | John McCall | 2011-09-13 | 1 | -205/+338 |
| * | Privatize the setter/getter call generation methods, plus some minor | John McCall | 2011-09-12 | 1 | -69/+70 |
| * | Modernize and comment; no functionality change. | John McCall | 2011-09-10 | 1 | -31/+27 |
| * | Simplify the generation of Objective-C setters, at least a little. | John McCall | 2011-09-10 | 1 | -132/+201 |
| * | Rename the ARC cast kinds to start with "ARC". | John McCall | 2011-09-10 | 1 | -8/+8 |
| * | When converting a block pointer to an Objective-C pointer type, extend | John McCall | 2011-09-10 | 1 | -0/+70 |
| * | Give conversions of block pointers to ObjC pointers a different cast kind | John McCall | 2011-09-09 | 1 | -1/+2 |
| * | Extend the ASTContext constructor to delay the initialization of | Douglas Gregor | 2011-09-02 | 1 | -2/+2 |
| * | Be sure to emit lvalue-to-rvalue casts for loads from x-values. | John McCall | 2011-08-30 | 1 | -24/+18 |
| * | Track whether an AggValueSlot is potentially aliased, and do not | John McCall | 2011-08-25 | 1 | -1/+2 |
| * | Use stronger typing for the flags on AggValueSlot and require | John McCall | 2011-08-25 | 1 | -1/+3 |
| * | Move the creation of the record type for the state of Objective-C fast | Douglas Gregor | 2011-08-09 | 1 | -1/+1 |
| * | The continue label in an ARC for-in loop should not involve | John McCall | 2011-08-05 | 1 | -1/+4 |
| * | Use the general conditional-cleanup framework instead of rolling our | John McCall | 2011-08-03 | 1 | -45/+4 |
| * | Remove some unnecessary single element array temporaries. | Jay Foad | 2011-07-29 | 1 | -4/+2 |
| * | Fix a couple of problems with initialization and assignment to | John McCall | 2011-07-28 | 1 | -1/+11 |
| * | Clean up the analysis of the collection operand to ObjC | John McCall | 2011-07-27 | 1 | -2/+20 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -8/+8 |
| * | Document the existing objc_precise_lifetime attribute. | John McCall | 2011-07-22 | 1 | -18/+68 |
| * | In ARC, non-atomic getters do not need to retain and autorelease | John McCall | 2011-07-22 | 1 | -17/+20 |
| * | Add a const overload for ObjCInterfaceDecl::all_declared_ivar_begin. | Jordy Rose | 2011-07-22 | 1 | -3/+2 |
| * | de-constify llvm::Type, patch by David Blaikie! | Chris Lattner | 2011-07-18 | 1 | -20/+20 |
| * | Don't crash if defining -dealloc in a category. | John McCall | 2011-07-13 | 1 | -3/+5 |
| * | Generalize Cleanup::Emit's "isForEH" parameter into a set | John McCall | 2011-07-12 | 1 | -6/+6 |
| * | Switch field destruction over to use the new destroyer-based API | John McCall | 2011-07-12 | 1 | -276/+41 |
| * | Do full-expression cleanups in a much more sensible way that still lets | John McCall | 2011-07-12 | 1 | -33/+0 |
| * | clang side to match the LLVM IR type system rewrite patch. | Chris Lattner | 2011-07-09 | 1 | -9/+9 |
| * | A number of array-related IR-gen cleanups. | John McCall | 2011-07-09 | 1 | -126/+45 |
| * | In ARC, reclaim all return values of retainable type, not just those | John McCall | 2011-07-07 | 1 | -0/+8 |
| * | Change the driver's logic about Objective-C runtimes: abstract out a | John McCall | 2011-07-06 | 1 | -8/+2 |
| * | Update for llvm commit r134291. | Eric Christopher | 2011-07-02 | 1 | -2/+2 |
| * | Do not apply the ARC move optimization to 'const'-qualified xvalues. | John McCall | 2011-06-25 | 1 | -1/+1 |
| * | LValue carries a type now, so simplify the main EmitLoad/Store APIs | John McCall | 2011-06-25 | 1 | -16/+12 |
| * | Honor objc_precise_lifetime in GC mode by feeding the value | John McCall | 2011-06-24 | 1 | -0/+18 |
| * | Change the IR-generation of VLAs so that we capture bounds, | John McCall | 2011-06-24 | 1 | -13/+12 |
| * | Try to silence GCC warning | Douglas Gregor | 2011-06-22 | 1 | -0/+2 |
| * | Implement the C++0x move optimization for Automatic Reference Counting | Douglas Gregor | 2011-06-22 | 1 | -0/+25 |
| * | When binding a reference to an Automatic Reference Counting temporary, | Douglas Gregor | 2011-06-22 | 1 | -4/+42 |
| * | Remove dead variables. | Benjamin Kramer | 2011-06-18 | 1 | -2/+0 |
| * | Objective-C fast enumeration loop variables are not retained in ARC, but | John McCall | 2011-06-17 | 1 | -3/+8 |
| * | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -17/+1362 |
| * | Put local variables in appropriate debug info scope. | Devang Patel | 2011-06-13 | 1 | -5/+5 |