diff options
author | Bob Wilson <bob.wilson@apple.com> | 2011-01-07 04:59:04 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2011-01-07 04:59:04 +0000 |
commit | 8265d566389b711e56b3c6806ddcde5344784848 (patch) | |
tree | a38269c0a2d1b612b66ef2eacaffe6c410f59d9d /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
parent | d23b3d2dfc09fc4f0c308117b3b1c70401f53946 (diff) | |
download | bcm5719-llvm-8265d566389b711e56b3c6806ddcde5344784848.tar.gz bcm5719-llvm-8265d566389b711e56b3c6806ddcde5344784848.zip |
Add ARM patterns to match EXTRACT_SUBVECTOR nodes.
Also fix an off-by-one in SelectionDAGBuilder that was preventing shuffle
vectors from being translated to EXTRACT_SUBVECTOR.
Patch by Tim Northover.
The test changes are needed to keep those spill-q tests from testing aligned
spills and restores. If the only aligned stack objects are spill slots, we
no longer realign the stack frame. Prior to this patch, an EXTRACT_SUBVECTOR
was legalized by loading from the stack, which created an aligned frame index.
Now, however, there is nothing except the spill slot in the stack frame, so
I added an aligned alloca.
llvm-svn: 122995
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 88490b31203..2167523f234 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -2745,7 +2745,7 @@ void SelectionDAGBuilder::visitShuffleVector(const User &I) { } else { StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts && - StartIdx[Input] + MaskNumElts < SrcNumElts) + StartIdx[Input] + MaskNumElts <= SrcNumElts) RangeUse[Input] = 1; // Extract from a multiple of the mask length. } } |