Age | Commit message (Expand) | Author |
2011-12-12 | Hexagon backend support | Tony Linthicum |
2011-12-05 | Make EmitAggregateCopy take an alignment argument. Make EmitFinalDestCopy pa... | Eli Friedman |
2011-12-03 | Switch LValue so that it exposes alignment in CharUnits. (No functional chan... | Eli Friedman |
2011-12-03 | Switch the Alignment argument on AggValueSlot over to CharUnits, per John's r... | Eli Friedman |
2011-12-03 | Track alignment in AggValueSlot. No functional change in this patch, but I'l... | Eli Friedman |
2011-11-27 | When destroying temporaries, instead of a custom cleanup use the | Peter Collingbourne |
2011-11-16 | Fix a bunch of really nasty bugs in how we compute alignment for reference lv... | Eli Friedman |
2011-11-10 | Whenever explicitly activating or deactivating a cleanup, we | John McCall |
2011-11-10 | Enter the cleanups for a block outside the enclosing | John McCall |
2011-11-08 | Bind function "r-values" as l-values when emitting them as | John McCall |
2011-11-07 | Rip the ObjCPropertyRef l-value kind out of IR-generation. | John McCall |
2011-11-06 | Change the AST representation of operations on Objective-C | John McCall |
2011-10-27 | Annotate imprecise FP division with fpaccuracy metadata | Peter Collingbourne |
2011-10-19 | Add a new subclass of RunCleanupScopes that also handles creating new | Eric Christopher |
2011-10-11 | Initial implementation of __atomic_* (everything except __atomic_is_lock_free). | Eli Friedman |
2011-10-06 | CUDA: IR generation support for kernel call expressions | Peter Collingbourne |
2011-10-04 | Mark calls to objc_retainBlock that don't result from casts | John McCall |
2011-10-01 | When performing an @throw in ARC, retain + autorelease | John McCall |
2011-09-19 | Throw the switch to convert clang to the new exception handling model! | Bill Wendling |
2011-09-15 | Refactor the load of the exception pointer and the exception selector from their | Bill Wendling |
2011-09-15 | Rewrite this loop to use partial destruction; I'm not sure it's | John McCall |
2011-09-13 | Unify the decision of how to emit property getters and setters into a | John McCall |
2011-09-12 | Privatize the setter/getter call generation methods, plus some minor | John McCall |
2011-09-10 | Simplify the generation of Objective-C setters, at least a little. | John McCall |
2011-09-09 | Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: can | Julien Lerouge |
2011-08-25 | Track whether an AggValueSlot is potentially aliased, and do not | John McCall |
2011-08-25 | Use stronger typing for the flags on AggValueSlot and require | John McCall |
2011-08-11 | Simplify EH control flow by observing that EH scopes form a simple | John McCall |
2011-07-23 | Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon ... | Chris Lattner |
2011-07-20 | add raw_ostream and Twine to LLVM.h, eliminating a ton of llvm:: qualifications. | Chris Lattner |
2011-07-20 | now that we have a centralized place to do so, add some using declarations for | Chris Lattner |
2011-07-18 | de-constify llvm::Type, patch by David Blaikie! | Chris Lattner |
2011-07-15 | Convert CallInst and InvokeInst APIs to use ArrayRef. | Jay Foad |
2011-07-13 | Okay, that rule about zero-length arrays applies to destroying | John McCall |
2011-07-13 | Aggressive dead code elimination. | John McCall |
2011-07-13 | Generalize the routine for destroying an object with static | John McCall |
2011-07-12 | Generalize Cleanup::Emit's "isForEH" parameter into a set | John McCall |
2011-07-12 | Switch field destruction over to use the new destroyer-based API | John McCall |
2011-07-12 | insert a bitcast in the 'expand' case of argument passing when needed. This | Chris Lattner |
2011-07-12 | Do full-expression cleanups in a much more sensible way that still lets | John McCall |
2011-07-11 | Fix a lot of problems with the partial destruction of arrays: | John McCall |
2011-07-09 | clang side to match the LLVM IR type system rewrite patch. | Chris Lattner |
2011-07-09 | A number of array-related IR-gen cleanups. | John McCall |
2011-06-25 | LValue carries a type now, so simplify the main EmitLoad/Store APIs | John McCall |
2011-06-24 | Honor objc_precise_lifetime in GC mode by feeding the value | John McCall |
2011-06-24 | Change the IR-generation of VLAs so that we capture bounds, | John McCall |
2011-06-22 | When binding a reference to an Automatic Reference Counting temporary, | Douglas Gregor |
2011-06-22 | Emit @finally blocks completely lazily instead of forcing their | John McCall |
2011-06-21 | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor |
2011-06-17 | Objective-C fast enumeration loop variables are not retained in ARC, but | John McCall |