| Age | Commit message (Expand) | Author |
| 2010-06-22 | When unfolding a load, avoid assuming which instruction that | Dan Gohman |
| 2010-06-22 | Use single interface, using twine, to get named metadata. | Devang Patel |
| 2010-06-22 | Tail merging pass shall not break up IT blocks. rdar://8115404 | Evan Cheng |
| 2010-06-22 | Discard special LLVM prefix from linkage name. | Devang Patel |
| 2010-06-22 | Do not rely on Twine temporaries to survive. | Devang Patel |
| 2010-06-22 | Fix the new load-unfolding code to update LiveVariable's dead flags, | Dan Gohman |
| 2010-06-21 | Teach two-address lowering how to unfold a load to open up commuting | Dan Gohman |
| 2010-06-21 | Use A.append(...) instead of A.insert(A.end(), ...) when A is a | Dan Gohman |
| 2010-06-21 | Revert r106422, which is breaking the non-fast-isel path. | Dan Gohman |
| 2010-06-21 | More changes for non-top-down fast-isel. | Dan Gohman |
| 2010-06-21 | Do one lookup instead of two. | Dan Gohman |
| 2010-06-21 | Generalize this to look in the regular ValueMap in addition to | Dan Gohman |
| 2010-06-19 | Tidy. | Bob Wilson |
| 2010-06-18 | Teach regular and fast isel to set dead flags on unused implicit defs | Dan Gohman |
| 2010-06-18 | Only run CoalesceExtSubRegs when we can expect LiveIntervalAnalysis to clean up | Jakob Stoklund Olesen |
| 2010-06-18 | Allow ARM if-converter to be run after post allocation scheduling. | Evan Cheng |
| 2010-06-18 | back-end libcall handling for ATOMIC_SWAP (__sync_lock_test_and_set) | Jim Grosbach |
| 2010-06-18 | TwoAddressInstructionPass::CoalesceExtSubRegs can insert INSERT_SUBREG | Jakob Stoklund Olesen |
| 2010-06-18 | Fix an inverted condition. | Evan Cheng |
| 2010-06-18 | Fix cross initialization compilation error. | Evan Cheng |
| 2010-06-18 | Teach iff-converter to properly count # of dups. It was not skipping over dbg... | Evan Cheng |
| 2010-06-18 | Add Expand-to-libcall support for additional atomics. This covers the usual | Jim Grosbach |
| 2010-06-18 | Don't leak RegClass2VRegMap, which is now a new[] array instead of a | Dan Gohman |
| 2010-06-18 | Start TargetRegisterClass indices at 0 instead of 1, so that | Dan Gohman |
| 2010-06-18 | Fix PR7372: Conditional branches (at least on ARM) are treated as predicated, | Bob Wilson |
| 2010-06-18 | Don't bother calling releaseMemory before destroying the DominatorTreeBase. | Dan Gohman |
| 2010-06-18 | Minor code simplifications. | Dan Gohman |
| 2010-06-18 | Give NamedRegionTimer an Enabled flag, allowing all its clients to | Dan Gohman |
| 2010-06-18 | Don't replace the old Ordering object with a new one; just clear() | Dan Gohman |
| 2010-06-18 | Don't call clear() on DbgInfo when it's going to be deleted anyway. | Dan Gohman |
| 2010-06-18 | Change UpdateNodeOperands' operand and return value from SDValue to | Dan Gohman |
| 2010-06-18 | Eliminate unnecessary uses of getZExtValue(). | Dan Gohman |
| 2010-06-18 | isValueValidForType can be a static member function. | Dan Gohman |
| 2010-06-18 | Fold the ShrinkDemandedOps pass into the regular DAGCombiner pass, | Dan Gohman |
| 2010-06-18 | Handle ext(ext(x)) -> ext(x) immediately, since it's simple. | Dan Gohman |
| 2010-06-17 | Add a DebugLoc parameter to TargetInstrInfo::InsertBranch(). This | Stuart Hastings |
| 2010-06-17 | add missing break. inconsequential as the code shouldn't be reached, but | Jim Grosbach |
| 2010-06-17 | Add entries for Expanding atomic intrinsics to libcalls. Just a placeholder | Jim Grosbach |
| 2010-06-17 | ISD::MEMBARRIER should lower to a libcall (__sync_synchronize) if the target | Jim Grosbach |
| 2010-06-16 | Allow a register to be redefined multiple times in a basic block. | Jakob Stoklund Olesen |
| 2010-06-16 | add FIXME | Jim Grosbach |
| 2010-06-16 | Improve comment to include that the use of a preg is also verboten in this si... | Bill Wendling |
| 2010-06-16 | Make post-ra scheduling, anti-dep breaking, and register scavenger (conservat... | Evan Cheng |
| 2010-06-16 | Use separate named MDNode to hold each function's local variable info. | Devang Patel |
| 2010-06-16 | Don't emit the linkage for initializer label for mach-o tls. | Eric Christopher |
| 2010-06-15 | Create a more targeted fix for not sinking instructions into a range where it | Bill Wendling |
| 2010-06-15 | Added a comment. | Stuart Hastings |
| 2010-06-15 | Fix 80col violations, remove trailing whitespace, and clarify a comment. | Bob Wilson |
| 2010-06-15 | Remove the local register allocator. | Jakob Stoklund Olesen |
| 2010-06-15 | Fixed vector widening of binary instructions that can trap. Patch by Visa Put... | Mon P Wang |