aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
AgeCommit message (Expand)Author
2011-09-15Some legalization fixes for atomic load and store.Eli Friedman
2011-09-15Add an option to disable spill hoisting.Jakob Stoklund Olesen
2011-09-15VirtRegMap is counting spill slots, not register spills.Jakob Stoklund Olesen
2011-09-15Count correctly when a COPY turns into a spill or reload.Jakob Stoklund Olesen
2011-09-15Count inserted spills and reloads more accurately.Jakob Stoklund Olesen
2011-09-15Trace through sibling PHIs in bulk.Jakob Stoklund Olesen
2011-09-15Speed up LiveIntervals::shrinkToUse with some caching.Jakob Stoklund Olesen
2011-09-15Revert r139782, "RemoveCopyByCommutingDef doesn't need hasPHIKill()."Jakob Stoklund Olesen
2011-09-15Stop verifying hasPHIKill() flags.Jakob Stoklund Olesen
2011-09-15RemoveCopyByCommutingDef doesn't need hasPHIKill().Jakob Stoklund Olesen
2011-09-15It is safe to remat a value killed by phis.Jakob Stoklund Olesen
2011-09-15Leave hasPHIKill flags alone in LiveInterval::RenumberValues.Jakob Stoklund Olesen
2011-09-15[regcoalescing] bug fix for RegistersDefinedFromSameValue.Andrew Trick
2011-09-14Add support to emit debug info for C++0x nullptr type.Devang Patel
2011-09-14Ignore the cloning of unknown registers.Jakob Stoklund Olesen
2011-09-14Hoist back-copies to the least busy dominator.Jakob Stoklund Olesen
2011-09-14Add integer promotion support for vselectNadav Rotem
2011-09-13Distinguish complex mapped values from forced recomputation.Jakob Stoklund Olesen
2011-09-13Implement -split-spill-mode=size.Jakob Stoklund Olesen
2011-09-13Fix check for unaligned load/store so it doesn't catch over-aligned load/store.Eli Friedman
2011-09-13Error out on CodeGen of unaligned load/store. Fix test so it isn't accidenta...Eli Friedman
2011-09-13Fix the assertion which checks the size of the input operand.Nadav Rotem
2011-09-13Add vselect target support for targets that do not support blend but do supportNadav Rotem
2011-09-13Use a cache to maintain list of machine basic blocks for a given UserValue.Devang Patel
2011-09-13Add SplitEditor::markOverlappedComplement().Jakob Stoklund Olesen
2011-09-13Eliminate the extendRange() wrapper.Jakob Stoklund Olesen
2011-09-13Switch extendInBlock() to take a kill slot instead of the last use slot.Jakob Stoklund Olesen
2011-09-13Use a separate LiveRangeCalc for the complement in spill modes.Jakob Stoklund Olesen
2011-09-13Unbreak msvc.NAKAMURA Takumi
2011-09-13Extract live range calculations from SplitKit.Jakob Stoklund Olesen
2011-09-12Introduce a bit of a hack.Bill Wendling
2011-09-12Remove the -compact-regions flag.Jakob Stoklund Olesen
2011-09-12Add an interface for SplitKit complement spill modes.Jakob Stoklund Olesen
2011-09-12Update comments to reflect some (not so) recent changes.Jakob Stoklund Olesen
2011-09-10Fix asserts in CodeGen from:Richard Trieu
2011-09-09tidy up a bitChris Lattner
2011-09-09Make the SelectionDAG verify that all the operands of BUILD_VECTOR have the s...Eli Friedman
2011-09-09Reapply r139247: Cache intermediate results during traceSiblingValue.Jakob Stoklund Olesen
2011-09-08Directly point debug info to the stack slot of the arugment, instead of tryin...Devang Patel
2011-09-07Revert r139247 "Cache intermediate results during traceSiblingValue."Jakob Stoklund Olesen
2011-09-07Cache intermediate results during traceSiblingValue.Jakob Stoklund Olesen
2011-09-07Refactor instprinter and mcdisassembler to take a SubtargetInfo. Add -mattr= ...James Molloy
2011-09-07Relax the MemOperands on atomics a bit. Fixes -verify-machineinstrs failures...Eli Friedman
2011-09-07While sinking machine instructions, sink matching DBG_VALUEs also otherwise l...Devang Patel
2011-09-06Add codegen support for vector select (in the IR this means a selectDuncan Sands
2011-09-06Split the init.trampoline intrinsic, which currently combines GCC'sDuncan Sands
2011-09-03Fix a truly heinous bug in DAGCombine related to AssertZext.Owen Anderson
2011-09-02Simplify by using isFullCopy().Jakob Stoklund Olesen
2011-09-02Darwin wants ctors/dtors to be ordered the other way round to linux.Duncan Sands
2011-09-01Revert r131152, r129796, r129761. This code is currently consideredDan Gohman