diff options
author | Craig Topper <craig.topper@gmail.com> | 2017-02-13 04:53:33 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2017-02-13 04:53:33 +0000 |
commit | 3668bde3717b0ffd67e683be45607f0892036312 (patch) | |
tree | 6a4e335666566704bc6650bc9ea730d13c5d020a /llvm/lib/CodeGen | |
parent | 680c73e7ab086ea7d5844f711186f12d590dab13 (diff) | |
download | bcm5719-llvm-3668bde3717b0ffd67e683be45607f0892036312.tar.gz bcm5719-llvm-3668bde3717b0ffd67e683be45607f0892036312.zip |
[DAGCombiner] Teach DAG combine that inserting an extract_subvector result into the same location of a an undef vector can just use the original input to the extract.
llvm-svn: 294932
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 9e06f0fd6f9..ef191580568 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -14554,6 +14554,12 @@ SDValue DAGCombiner::visitINSERT_SUBVECTOR(SDNode *N) { if (N1.isUndef()) return N0; + // If this is an insert of an extracted vector into an undef vector, we can + // just use the input to the extract. + if (N0.isUndef() && N1.getOpcode() == ISD::EXTRACT_SUBVECTOR && + N1.getOperand(1) == N2 && N1.getOperand(0).getValueType() == VT) + return N1.getOperand(0); + // Combine INSERT_SUBVECTORs where we are inserting to the same index. // INSERT_SUBVECTOR( INSERT_SUBVECTOR( Vec, SubOld, Idx ), SubNew, Idx ) // --> INSERT_SUBVECTOR( Vec, SubNew, Idx ) |