diff options
author | Craig Topper <craig.topper@intel.com> | 2018-02-01 20:48:50 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-02-01 20:48:50 +0000 |
commit | a5944aade1276ad4a8a15ee1b7ba0bb0ef2257e2 (patch) | |
tree | 1a1b87736033c0435c704cc8a70c9d851f18b018 /llvm/lib | |
parent | cbc02c71a4be9dcd4cd7f9a82c9d1cac3c51ca6a (diff) | |
download | bcm5719-llvm-a5944aade1276ad4a8a15ee1b7ba0bb0ef2257e2.tar.gz bcm5719-llvm-a5944aade1276ad4a8a15ee1b7ba0bb0ef2257e2.zip |
[DAGCombiner] When folding (insert_subvector undef, (bitcast (extract_subvector N1, Idx)), Idx) -> (bitcast N1) make sure that N1 has the same total size as the original output
We were only checking the element count, but not the total width. This could cause illegal bitcasts to be created if for example the output was 512-bits, but N1 is 256 bits, and the extraction size was 128-bits.
Fixes PR36199
Differential Revision: https://reviews.llvm.org/D42809
llvm-svn: 324002
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index f03deb1c66a..c836a5d275b 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -16465,7 +16465,9 @@ SDValue DAGCombiner::visitINSERT_SUBVECTOR(SDNode *N) { N1.getOperand(0).getOpcode() == ISD::EXTRACT_SUBVECTOR && N1.getOperand(0).getOperand(1) == N2 && N1.getOperand(0).getOperand(0).getValueType().getVectorNumElements() == - VT.getVectorNumElements()) { + VT.getVectorNumElements() && + N1.getOperand(0).getOperand(0).getValueType().getSizeInBits() == + VT.getSizeInBits()) { return DAG.getBitcast(VT, N1.getOperand(0).getOperand(0)); } |