mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-24 17:34:47 +00:00
47 lines
1.8 KiB
Diff
47 lines
1.8 KiB
Diff
From 2eb830fed5b813c5624e770c244eec61dacb04d7 Mon Sep 17 00:00:00 2001
|
|
From: Tom Stellard <tstellar@redhat.com>
|
|
Date: Mon, 9 Jul 2018 10:35:30 -0700
|
|
Subject: [PATCH] Don't run BV DAG Combine before legalization if it assumes
|
|
legal types
|
|
|
|
---
|
|
lib/Target/PowerPC/PPCISelLowering.cpp | 13 ++++++++++---
|
|
1 file changed, 10 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp
|
|
index 26e9f13..f622b05 100644
|
|
--- a/lib/Target/PowerPC/PPCISelLowering.cpp
|
|
+++ b/lib/Target/PowerPC/PPCISelLowering.cpp
|
|
@@ -11790,10 +11790,15 @@ static SDValue combineBVOfVecSExt(SDNode *N, SelectionDAG &DAG) {
|
|
auto isSExtOfVecExtract = [&](SDValue Op) -> bool {
|
|
if (!Op)
|
|
return false;
|
|
- if (Op.getOpcode() != ISD::SIGN_EXTEND)
|
|
+ if (Op.getOpcode() != ISD::SIGN_EXTEND &&
|
|
+ Op.getOpcode() != ISD::SIGN_EXTEND_INREG)
|
|
return false;
|
|
|
|
+ // A SIGN_EXTEND_INREG might be fed by an ANY_EXTEND to produce a value
|
|
+ // of the right width.
|
|
SDValue Extract = Op.getOperand(0);
|
|
+ if (Extract.getOpcode() == ISD::ANY_EXTEND)
|
|
+ Extract = Extract.getOperand(0);
|
|
if (Extract.getOpcode() != ISD::EXTRACT_VECTOR_ELT)
|
|
return false;
|
|
|
|
@@ -11881,8 +11886,10 @@ SDValue PPCTargetLowering::DAGCombineBuildVector(SDNode *N,
|
|
return Reduced;
|
|
|
|
// If we're building a vector out of extended elements from another vector
|
|
- // we have P9 vector integer extend instructions.
|
|
- if (Subtarget.hasP9Altivec()) {
|
|
+ // we have P9 vector integer extend instructions. The code assumes legal
|
|
+ // input types (i.e. it can't handle things like v4i16) so do not run before
|
|
+ // legalization.
|
|
+ if (Subtarget.hasP9Altivec() && !DCI.isBeforeLegalize()) {
|
|
Reduced = combineBVOfVecSExt(N, DAG);
|
|
if (Reduced)
|
|
return Reduced;
|
|
--
|
|
1.8.3.1
|
|
|