summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/2008-05-06-SpillerBug.ll
Commit message (Collapse)AuthorAgeFilesLines
* Implement support for using modeling implicit-zero-extension on x86-64Dan Gohman2009-04-081-39/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with SUBREG_TO_REG, teach SimpleRegisterCoalescing to coalesce SUBREG_TO_REG instructions (which are similar to INSERT_SUBREG instructions), and teach the DAGCombiner to take advantage of this on targets which support it. This eliminates many redundant zero-extension operations on x86-64. This adds a new TargetLowering hook, isZExtFree. It's similar to isTruncateFree, except it only applies to actual definitions, and not no-op truncates which may not zero the high bits. Also, this adds a new optimization to SimplifyDemandedBits: transform operations like x+y into (zext (add (trunc x), (trunc y))) on targets where all the casts are no-ops. In contexts where the high part of the add is explicitly masked off, this allows the mask operation to be eliminated. Fix the DAGCombiner to avoid undoing these transformations to eliminate casts on targets where the casts are no-ops. Also, this adds a new two-address lowering heuristic. Since two-address lowering runs before coalescing, it helps to be able to look through copies when deciding whether commuting and/or three-address conversion are profitable. Also, fix a bug in LiveInterval::MergeInClobberRanges. It didn't handle the case that a clobber range extended both before and beyond an existing live range. In that case, multiple live ranges need to be added. This was exposed by the new subreg coalescing code. Remove 2008-05-06-SpillerBug.ll. It was bugpoint-reduced, and the spiller behavior it was looking for no longer occurrs with the new instruction selection. llvm-svn: 68576
* Update the remaining tests not to use -disable-correct-folding, and remove twoOwen Anderson2008-08-051-3/+5
| | | | | | that couldn't be updated. llvm-svn: 54359
* Update these tests to work by disabling the new correct CFG generation. ↵Owen Anderson2008-08-041-1/+1
| | | | | | This flag should ONLY be used to for tests like these. llvm-svn: 54334
* Yet another nasty spiller bug.Evan Cheng2008-05-071-0/+37
%ecx = op store %cl<kill>, (addr) (addr) = op %al It's not safe to unfold the last operand and eliminate store even though %cl is marked kill. It's a sub-register use which means one of its super-register(s) may be used below. llvm-svn: 50794
OpenPOWER on IntegriCloud