| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement IRGen of lambda expressions which capture arrays. | Eli Friedman | 2012-02-14 | 1 | -0/+3 |
* | Deal with a horrible C++11 special case. If a non-literal type has a constexpr | Richard Smith | 2012-02-13 | 1 | -3/+6 |
* | Basic support for referring to captured variables from lambdas. Some simple ... | Eli Friedman | 2012-02-11 | 1 | -1/+5 |
* | Refactor lambda IRGen so AggExprEmitter::VisitLambdaExpr does the right thing. | Eli Friedman | 2012-02-09 | 1 | -0/+2 |
* | A little bit of lambda IRGen. | Eli Friedman | 2012-02-08 | 1 | -0/+1 |
* | revert r149184 | Fariborz Jahanian | 2012-01-29 | 1 | -69/+1 |
* | objc-arc: Perform null check on receiver before sending methods which | Fariborz Jahanian | 2012-01-28 | 1 | -1/+69 |
* | Use function pointers, rather than references, to pass Destroyers | Peter Collingbourne | 2012-01-26 | 1 | -7/+7 |
* | Some improvements to the handling of C11 atomic types: | David Chisnall | 2012-01-16 | 1 | -4/+5 |
* | Remove a redundant word. | Zhongxing Xu | 2012-01-14 | 1 | -1/+1 |
* | objc++: patch for IRgen for atomic properties of | Fariborz Jahanian | 2012-01-10 | 1 | -3/+4 |
* | objc++: More codegen stuff for atomic properties of c++ objects | Fariborz Jahanian | 2012-01-07 | 1 | -2/+4 |
* | objc++: more code gen stuff for atomic property api, | Fariborz Jahanian | 2012-01-06 | 1 | -1/+2 |
* | objc++: sythesize a helper function to be used | Fariborz Jahanian | 2012-01-06 | 1 | -0/+2 |
* | Small refactoring and simplification of constant evaluation and some of its | Richard Smith | 2011-12-28 | 1 | -1/+0 |
* | Hexagon backend support | Tony Linthicum | 2011-12-12 | 1 | -0/+1 |
* | Make EmitAggregateCopy take an alignment argument. Make EmitFinalDestCopy pa... | Eli Friedman | 2011-12-05 | 1 | -1/+2 |
* | Switch LValue so that it exposes alignment in CharUnits. (No functional chan... | Eli Friedman | 2011-12-03 | 1 | -6/+5 |
* | Switch the Alignment argument on AggValueSlot over to CharUnits, per John's r... | Eli Friedman | 2011-12-03 | 1 | -1/+1 |
* | Track alignment in AggValueSlot. No functional change in this patch, but I'l... | Eli Friedman | 2011-12-03 | 1 | -1/+3 |
* | When destroying temporaries, instead of a custom cleanup use the | Peter Collingbourne | 2011-11-27 | 1 | -1/+2 |
* | Fix a bunch of really nasty bugs in how we compute alignment for reference lv... | Eli Friedman | 2011-11-16 | 1 | -0/+9 |
* | Whenever explicitly activating or deactivating a cleanup, we | John McCall | 2011-11-10 | 1 | -6/+24 |
* | Enter the cleanups for a block outside the enclosing | John McCall | 2011-11-10 | 1 | -3/+12 |
* | Bind function "r-values" as l-values when emitting them as | John McCall | 2011-11-08 | 1 | -1/+8 |
* | Rip the ObjCPropertyRef l-value kind out of IR-generation. | John McCall | 2011-11-07 | 1 | -4/+0 |
* | Change the AST representation of operations on Objective-C | John McCall | 2011-11-06 | 1 | -54/+83 |
* | Annotate imprecise FP division with fpaccuracy metadata | Peter Collingbourne | 2011-10-27 | 1 | -0/+5 |
* | Add a new subclass of RunCleanupScopes that also handles creating new | Eric Christopher | 2011-10-19 | 1 | -3/+41 |
* | Initial implementation of __atomic_* (everything except __atomic_is_lock_free). | Eli Friedman | 2011-10-11 | 1 | -0/+2 |
* | CUDA: IR generation support for kernel call expressions | Peter Collingbourne | 2011-10-06 | 1 | -0/+3 |
* | Mark calls to objc_retainBlock that don't result from casts | John McCall | 2011-10-04 | 1 | -1/+2 |
* | When performing an @throw in ARC, retain + autorelease | John McCall | 2011-10-01 | 1 | -0/+2 |
* | Throw the switch to convert clang to the new exception handling model! | Bill Wendling | 2011-09-19 | 1 | -6/+6 |
* | Refactor the load of the exception pointer and the exception selector from their | Bill Wendling | 2011-09-15 | 1 | -0/+5 |
* | Rewrite this loop to use partial destruction; I'm not sure it's | John McCall | 2011-09-15 | 1 | -2/+2 |
* | Unify the decision of how to emit property getters and setters into a | John McCall | 2011-09-13 | 1 | -0/+2 |
* | Privatize the setter/getter call generation methods, plus some minor | John McCall | 2011-09-12 | 1 | -3/+0 |
* | Simplify the generation of Objective-C setters, at least a little. | John McCall | 2011-09-10 | 1 | -0/+2 |
* | Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: can | Julien Lerouge | 2011-09-09 | 1 | -0/+17 |
* | 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/+2 |
* | Simplify EH control flow by observing that EH scopes form a simple | John McCall | 2011-08-11 | 1 | -65/+23 |
* | Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon ... | Chris Lattner | 2011-07-23 | 1 | -1/+1 |
* | add raw_ostream and Twine to LLVM.h, eliminating a ton of llvm:: qualifications. | Chris Lattner | 2011-07-20 | 1 | -6/+6 |
* | now that we have a centralized place to do so, add some using declarations for | Chris Lattner | 2011-07-20 | 1 | -8/+8 |
* | de-constify llvm::Type, patch by David Blaikie! | Chris Lattner | 2011-07-18 | 1 | -10/+10 |
* | Convert CallInst and InvokeInst APIs to use ArrayRef. | Jay Foad | 2011-07-15 | 1 | -2/+4 |
* | Okay, that rule about zero-length arrays applies to destroying | John McCall | 2011-07-13 | 1 | -1/+1 |
* | Aggressive dead code elimination. | John McCall | 2011-07-13 | 1 | -8/+0 |