2010-01-05 06:36:20 +01:00
|
|
|
//===- InstCombineVectorOps.cpp -------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements instcombine for ExtractElement, InsertElement and
|
|
|
|
// ShuffleVector.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "InstCombine.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
/// CheapToScalarize - Return true if the value is cheaper to scalarize than it
|
|
|
|
/// is to leave as a vector operation.
|
|
|
|
static bool CheapToScalarize(Value *V, bool isConstant) {
|
2010-10-30 00:20:43 +02:00
|
|
|
if (isa<ConstantAggregateZero>(V))
|
2010-01-05 06:36:20 +01:00
|
|
|
return true;
|
|
|
|
if (ConstantVector *C = dyn_cast<ConstantVector>(V)) {
|
|
|
|
if (isConstant) return true;
|
|
|
|
// If all elts are the same, we can extract.
|
|
|
|
Constant *Op0 = C->getOperand(0);
|
|
|
|
for (unsigned i = 1; i < C->getNumOperands(); ++i)
|
|
|
|
if (C->getOperand(i) != Op0)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Instruction *I = dyn_cast<Instruction>(V);
|
|
|
|
if (!I) return false;
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Insert element gets simplified to the inserted element or is deleted if
|
|
|
|
// this is constant idx extract element and its a constant idx insertelt.
|
|
|
|
if (I->getOpcode() == Instruction::InsertElement && isConstant &&
|
|
|
|
isa<ConstantInt>(I->getOperand(2)))
|
|
|
|
return true;
|
|
|
|
if (I->getOpcode() == Instruction::Load && I->hasOneUse())
|
|
|
|
return true;
|
|
|
|
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I))
|
|
|
|
if (BO->hasOneUse() &&
|
|
|
|
(CheapToScalarize(BO->getOperand(0), isConstant) ||
|
|
|
|
CheapToScalarize(BO->getOperand(1), isConstant)))
|
|
|
|
return true;
|
|
|
|
if (CmpInst *CI = dyn_cast<CmpInst>(I))
|
|
|
|
if (CI->hasOneUse() &&
|
|
|
|
(CheapToScalarize(CI->getOperand(0), isConstant) ||
|
|
|
|
CheapToScalarize(CI->getOperand(1), isConstant)))
|
|
|
|
return true;
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-30 00:03:05 +02:00
|
|
|
/// getShuffleMask - Read and decode a shufflevector mask.
|
|
|
|
/// Turn undef elements into negative values.
|
|
|
|
static std::vector<int> getShuffleMask(const ShuffleVectorInst *SVI) {
|
2010-01-05 06:36:20 +01:00
|
|
|
unsigned NElts = SVI->getType()->getNumElements();
|
|
|
|
if (isa<ConstantAggregateZero>(SVI->getOperand(2)))
|
2010-10-30 00:03:05 +02:00
|
|
|
return std::vector<int>(NElts, 0);
|
2010-01-05 06:36:20 +01:00
|
|
|
if (isa<UndefValue>(SVI->getOperand(2)))
|
2010-10-30 00:03:05 +02:00
|
|
|
return std::vector<int>(NElts, -1);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-10-30 00:03:05 +02:00
|
|
|
std::vector<int> Result;
|
2010-01-05 06:36:20 +01:00
|
|
|
const ConstantVector *CP = cast<ConstantVector>(SVI->getOperand(2));
|
|
|
|
for (User::const_op_iterator i = CP->op_begin(), e = CP->op_end(); i!=e; ++i)
|
|
|
|
if (isa<UndefValue>(*i))
|
2010-10-30 00:03:05 +02:00
|
|
|
Result.push_back(-1); // undef
|
2010-01-05 06:36:20 +01:00
|
|
|
else
|
|
|
|
Result.push_back(cast<ConstantInt>(*i)->getZExtValue());
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// FindScalarElement - Given a vector and an element number, see if the scalar
|
|
|
|
/// value is already around as a register, for example if it were inserted then
|
|
|
|
/// extracted from the vector.
|
|
|
|
static Value *FindScalarElement(Value *V, unsigned EltNo) {
|
2010-02-16 12:11:14 +01:00
|
|
|
assert(V->getType()->isVectorTy() && "Not looking at a vector?");
|
2010-01-05 06:36:20 +01:00
|
|
|
const VectorType *PTy = cast<VectorType>(V->getType());
|
|
|
|
unsigned Width = PTy->getNumElements();
|
|
|
|
if (EltNo >= Width) // Out of range access.
|
|
|
|
return UndefValue::get(PTy->getElementType());
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (isa<UndefValue>(V))
|
|
|
|
return UndefValue::get(PTy->getElementType());
|
2010-01-05 06:42:08 +01:00
|
|
|
if (isa<ConstantAggregateZero>(V))
|
2010-01-05 06:36:20 +01:00
|
|
|
return Constant::getNullValue(PTy->getElementType());
|
2010-01-05 06:42:08 +01:00
|
|
|
if (ConstantVector *CP = dyn_cast<ConstantVector>(V))
|
2010-01-05 06:36:20 +01:00
|
|
|
return CP->getOperand(EltNo);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:42:08 +01:00
|
|
|
if (InsertElementInst *III = dyn_cast<InsertElementInst>(V)) {
|
2010-01-05 06:36:20 +01:00
|
|
|
// If this is an insert to a variable element, we don't know what it is.
|
2010-10-30 00:20:43 +02:00
|
|
|
if (!isa<ConstantInt>(III->getOperand(2)))
|
2010-01-05 06:36:20 +01:00
|
|
|
return 0;
|
|
|
|
unsigned IIElt = cast<ConstantInt>(III->getOperand(2))->getZExtValue();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// If this is an insert to the element we are looking for, return the
|
|
|
|
// inserted value.
|
2010-10-30 00:20:43 +02:00
|
|
|
if (EltNo == IIElt)
|
2010-01-05 06:36:20 +01:00
|
|
|
return III->getOperand(1);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Otherwise, the insertelement doesn't modify the value, recurse on its
|
|
|
|
// vector input.
|
|
|
|
return FindScalarElement(III->getOperand(0), EltNo);
|
2010-01-05 06:42:08 +01:00
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:42:08 +01:00
|
|
|
if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(V)) {
|
2010-01-05 06:36:20 +01:00
|
|
|
unsigned LHSWidth =
|
2010-10-30 00:03:05 +02:00
|
|
|
cast<VectorType>(SVI->getOperand(0)->getType())->getNumElements();
|
|
|
|
int InEl = getShuffleMask(SVI)[EltNo];
|
2010-10-30 00:20:43 +02:00
|
|
|
if (InEl < 0)
|
2010-01-05 06:36:20 +01:00
|
|
|
return UndefValue::get(PTy->getElementType());
|
2010-10-30 00:03:05 +02:00
|
|
|
if (InEl < (int)LHSWidth)
|
|
|
|
return FindScalarElement(SVI->getOperand(0), InEl);
|
|
|
|
return FindScalarElement(SVI->getOperand(1), InEl - LHSWidth);
|
2010-01-05 06:36:20 +01:00
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Otherwise, we don't know.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
|
|
|
|
// If vector val is undef, replace extract with scalar undef.
|
|
|
|
if (isa<UndefValue>(EI.getOperand(0)))
|
|
|
|
return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType()));
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// If vector val is constant 0, replace extract with scalar 0.
|
|
|
|
if (isa<ConstantAggregateZero>(EI.getOperand(0)))
|
|
|
|
return ReplaceInstUsesWith(EI, Constant::getNullValue(EI.getType()));
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (ConstantVector *C = dyn_cast<ConstantVector>(EI.getOperand(0))) {
|
|
|
|
// If vector val is constant with all elements the same, replace EI with
|
|
|
|
// that element. When the elements are not identical, we cannot replace yet
|
|
|
|
// (we do that below, but only when the index is constant).
|
|
|
|
Constant *op0 = C->getOperand(0);
|
|
|
|
for (unsigned i = 1; i != C->getNumOperands(); ++i)
|
|
|
|
if (C->getOperand(i) != op0) {
|
2010-10-30 00:20:43 +02:00
|
|
|
op0 = 0;
|
2010-01-05 06:36:20 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (op0)
|
|
|
|
return ReplaceInstUsesWith(EI, op0);
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// If extracting a specified index from the vector, see if we can recursively
|
|
|
|
// find a previously computed scalar that was inserted into the vector.
|
|
|
|
if (ConstantInt *IdxC = dyn_cast<ConstantInt>(EI.getOperand(1))) {
|
|
|
|
unsigned IndexVal = IdxC->getZExtValue();
|
|
|
|
unsigned VectorWidth = EI.getVectorOperandType()->getNumElements();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// If this is extracting an invalid index, turn this into undef, to avoid
|
|
|
|
// crashing the code below.
|
|
|
|
if (IndexVal >= VectorWidth)
|
|
|
|
return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType()));
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// This instruction only demands the single element from the input vector.
|
|
|
|
// If the input vector has a single use, simplify it based on this use
|
|
|
|
// property.
|
|
|
|
if (EI.getOperand(0)->hasOneUse() && VectorWidth != 1) {
|
|
|
|
APInt UndefElts(VectorWidth, 0);
|
2010-02-09 00:56:03 +01:00
|
|
|
APInt DemandedMask(VectorWidth, 0);
|
2010-12-01 09:53:58 +01:00
|
|
|
DemandedMask.setBit(IndexVal);
|
2010-01-05 06:36:20 +01:00
|
|
|
if (Value *V = SimplifyDemandedVectorElts(EI.getOperand(0),
|
|
|
|
DemandedMask, UndefElts)) {
|
|
|
|
EI.setOperand(0, V);
|
|
|
|
return &EI;
|
|
|
|
}
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (Value *Elt = FindScalarElement(EI.getOperand(0), IndexVal))
|
|
|
|
return ReplaceInstUsesWith(EI, Elt);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// If the this extractelement is directly using a bitcast from a vector of
|
|
|
|
// the same number of elements, see if we can find the source element from
|
|
|
|
// it. In this case, we will end up needing to bitcast the scalars.
|
|
|
|
if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
|
2010-10-30 00:20:43 +02:00
|
|
|
if (const VectorType *VT =
|
2010-01-05 06:36:20 +01:00
|
|
|
dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
|
|
|
|
if (VT->getNumElements() == VectorWidth)
|
|
|
|
if (Value *Elt = FindScalarElement(BCI->getOperand(0), IndexVal))
|
|
|
|
return new BitCastInst(Elt, EI.getType());
|
|
|
|
}
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (Instruction *I = dyn_cast<Instruction>(EI.getOperand(0))) {
|
|
|
|
// Push extractelement into predecessor operation if legal and
|
|
|
|
// profitable to do so
|
|
|
|
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
|
|
|
|
if (I->hasOneUse() &&
|
|
|
|
CheapToScalarize(BO, isa<ConstantInt>(EI.getOperand(1)))) {
|
|
|
|
Value *newEI0 =
|
2010-10-30 00:20:45 +02:00
|
|
|
Builder->CreateExtractElement(BO->getOperand(0), EI.getOperand(1),
|
|
|
|
EI.getName()+".lhs");
|
2010-01-05 06:36:20 +01:00
|
|
|
Value *newEI1 =
|
2010-10-30 00:20:45 +02:00
|
|
|
Builder->CreateExtractElement(BO->getOperand(1), EI.getOperand(1),
|
|
|
|
EI.getName()+".rhs");
|
2010-01-05 06:36:20 +01:00
|
|
|
return BinaryOperator::Create(BO->getOpcode(), newEI0, newEI1);
|
|
|
|
}
|
|
|
|
} else if (InsertElementInst *IE = dyn_cast<InsertElementInst>(I)) {
|
|
|
|
// Extracting the inserted element?
|
|
|
|
if (IE->getOperand(2) == EI.getOperand(1))
|
|
|
|
return ReplaceInstUsesWith(EI, IE->getOperand(1));
|
|
|
|
// If the inserted and extracted elements are constants, they must not
|
|
|
|
// be the same value, extract from the pre-inserted value instead.
|
|
|
|
if (isa<Constant>(IE->getOperand(2)) && isa<Constant>(EI.getOperand(1))) {
|
|
|
|
Worklist.AddValue(EI.getOperand(0));
|
|
|
|
EI.setOperand(0, IE->getOperand(0));
|
|
|
|
return &EI;
|
|
|
|
}
|
|
|
|
} else if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(I)) {
|
|
|
|
// If this is extracting an element from a shufflevector, figure out where
|
|
|
|
// it came from and extract from the appropriate input element instead.
|
|
|
|
if (ConstantInt *Elt = dyn_cast<ConstantInt>(EI.getOperand(1))) {
|
2010-10-30 00:03:05 +02:00
|
|
|
int SrcIdx = getShuffleMask(SVI)[Elt->getZExtValue()];
|
2010-01-05 06:36:20 +01:00
|
|
|
Value *Src;
|
|
|
|
unsigned LHSWidth =
|
2010-10-30 00:03:05 +02:00
|
|
|
cast<VectorType>(SVI->getOperand(0)->getType())->getNumElements();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-10-30 00:03:05 +02:00
|
|
|
if (SrcIdx < 0)
|
|
|
|
return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType()));
|
|
|
|
if (SrcIdx < (int)LHSWidth)
|
2010-01-05 06:36:20 +01:00
|
|
|
Src = SVI->getOperand(0);
|
2010-10-30 00:03:05 +02:00
|
|
|
else {
|
2010-01-05 06:36:20 +01:00
|
|
|
SrcIdx -= LHSWidth;
|
|
|
|
Src = SVI->getOperand(1);
|
|
|
|
}
|
2010-10-30 00:03:07 +02:00
|
|
|
const Type *Int32Ty = Type::getInt32Ty(EI.getContext());
|
2010-01-05 06:36:20 +01:00
|
|
|
return ExtractElementInst::Create(Src,
|
2010-10-30 00:03:07 +02:00
|
|
|
ConstantInt::get(Int32Ty,
|
2010-01-05 06:36:20 +01:00
|
|
|
SrcIdx, false));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// FIXME: Canonicalize extractelement(bitcast) -> bitcast(extractelement)
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// CollectSingleShuffleElements - If V is a shuffle of values that ONLY returns
|
2010-10-30 00:20:43 +02:00
|
|
|
/// elements from either LHS or RHS, return the shuffle mask and true.
|
2010-01-05 06:36:20 +01:00
|
|
|
/// Otherwise, return false.
|
|
|
|
static bool CollectSingleShuffleElements(Value *V, Value *LHS, Value *RHS,
|
|
|
|
std::vector<Constant*> &Mask) {
|
|
|
|
assert(V->getType() == LHS->getType() && V->getType() == RHS->getType() &&
|
|
|
|
"Invalid CollectSingleShuffleElements");
|
|
|
|
unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (isa<UndefValue>(V)) {
|
|
|
|
Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
|
|
|
|
return true;
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (V == LHS) {
|
|
|
|
for (unsigned i = 0; i != NumElts; ++i)
|
|
|
|
Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i));
|
|
|
|
return true;
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (V == RHS) {
|
|
|
|
for (unsigned i = 0; i != NumElts; ++i)
|
|
|
|
Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()),
|
|
|
|
i+NumElts));
|
|
|
|
return true;
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (InsertElementInst *IEI = dyn_cast<InsertElementInst>(V)) {
|
|
|
|
// If this is an insert of an extract from some other vector, include it.
|
|
|
|
Value *VecOp = IEI->getOperand(0);
|
|
|
|
Value *ScalarOp = IEI->getOperand(1);
|
|
|
|
Value *IdxOp = IEI->getOperand(2);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (!isa<ConstantInt>(IdxOp))
|
|
|
|
return false;
|
|
|
|
unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (isa<UndefValue>(ScalarOp)) { // inserting undef into vector.
|
|
|
|
// Okay, we can handle this if the vector we are insertinting into is
|
|
|
|
// transitively ok.
|
|
|
|
if (CollectSingleShuffleElements(VecOp, LHS, RHS, Mask)) {
|
|
|
|
// If so, update the mask to reflect the inserted undef.
|
|
|
|
Mask[InsertedIdx] = UndefValue::get(Type::getInt32Ty(V->getContext()));
|
|
|
|
return true;
|
2010-10-30 00:20:43 +02:00
|
|
|
}
|
2010-01-05 06:36:20 +01:00
|
|
|
} else if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)){
|
|
|
|
if (isa<ConstantInt>(EI->getOperand(1)) &&
|
|
|
|
EI->getOperand(0)->getType() == V->getType()) {
|
|
|
|
unsigned ExtractedIdx =
|
|
|
|
cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// This must be extracting from either LHS or RHS.
|
|
|
|
if (EI->getOperand(0) == LHS || EI->getOperand(0) == RHS) {
|
|
|
|
// Okay, we can handle this if the vector we are insertinting into is
|
|
|
|
// transitively ok.
|
|
|
|
if (CollectSingleShuffleElements(VecOp, LHS, RHS, Mask)) {
|
|
|
|
// If so, update the mask to reflect the inserted value.
|
|
|
|
if (EI->getOperand(0) == LHS) {
|
2010-10-30 00:20:43 +02:00
|
|
|
Mask[InsertedIdx % NumElts] =
|
2010-01-05 06:36:20 +01:00
|
|
|
ConstantInt::get(Type::getInt32Ty(V->getContext()),
|
|
|
|
ExtractedIdx);
|
|
|
|
} else {
|
|
|
|
assert(EI->getOperand(0) == RHS);
|
2010-10-30 00:20:43 +02:00
|
|
|
Mask[InsertedIdx % NumElts] =
|
2010-01-05 06:36:20 +01:00
|
|
|
ConstantInt::get(Type::getInt32Ty(V->getContext()),
|
|
|
|
ExtractedIdx+NumElts);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: Handle shufflevector here!
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// CollectShuffleElements - We are building a shuffle of V, using RHS as the
|
|
|
|
/// RHS of the shuffle instruction, if it is not null. Return a shuffle mask
|
|
|
|
/// that computes V and the LHS value of the shuffle.
|
|
|
|
static Value *CollectShuffleElements(Value *V, std::vector<Constant*> &Mask,
|
|
|
|
Value *&RHS) {
|
2010-10-30 00:20:43 +02:00
|
|
|
assert(V->getType()->isVectorTy() &&
|
2010-01-05 06:36:20 +01:00
|
|
|
(RHS == 0 || V->getType() == RHS->getType()) &&
|
|
|
|
"Invalid shuffle!");
|
|
|
|
unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (isa<UndefValue>(V)) {
|
|
|
|
Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
|
|
|
|
return V;
|
|
|
|
} else if (isa<ConstantAggregateZero>(V)) {
|
|
|
|
Mask.assign(NumElts, ConstantInt::get(Type::getInt32Ty(V->getContext()),0));
|
|
|
|
return V;
|
|
|
|
} else if (InsertElementInst *IEI = dyn_cast<InsertElementInst>(V)) {
|
|
|
|
// If this is an insert of an extract from some other vector, include it.
|
|
|
|
Value *VecOp = IEI->getOperand(0);
|
|
|
|
Value *ScalarOp = IEI->getOperand(1);
|
|
|
|
Value *IdxOp = IEI->getOperand(2);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)) {
|
|
|
|
if (isa<ConstantInt>(EI->getOperand(1)) && isa<ConstantInt>(IdxOp) &&
|
|
|
|
EI->getOperand(0)->getType() == V->getType()) {
|
|
|
|
unsigned ExtractedIdx =
|
2010-10-30 00:20:45 +02:00
|
|
|
cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
|
2010-01-05 06:36:20 +01:00
|
|
|
unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Either the extracted from or inserted into vector must be RHSVec,
|
|
|
|
// otherwise we'd end up with a shuffle of three inputs.
|
|
|
|
if (EI->getOperand(0) == RHS || RHS == 0) {
|
|
|
|
RHS = EI->getOperand(0);
|
|
|
|
Value *V = CollectShuffleElements(VecOp, Mask, RHS);
|
2010-10-30 00:20:43 +02:00
|
|
|
Mask[InsertedIdx % NumElts] =
|
2010-10-30 00:20:45 +02:00
|
|
|
ConstantInt::get(Type::getInt32Ty(V->getContext()),
|
|
|
|
NumElts+ExtractedIdx);
|
2010-01-05 06:36:20 +01:00
|
|
|
return V;
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (VecOp == RHS) {
|
|
|
|
Value *V = CollectShuffleElements(EI->getOperand(0), Mask, RHS);
|
|
|
|
// Everything but the extracted element is replaced with the RHS.
|
|
|
|
for (unsigned i = 0; i != NumElts; ++i) {
|
|
|
|
if (i != InsertedIdx)
|
|
|
|
Mask[i] = ConstantInt::get(Type::getInt32Ty(V->getContext()),
|
|
|
|
NumElts+i);
|
|
|
|
}
|
|
|
|
return V;
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// If this insertelement is a chain that comes from exactly these two
|
|
|
|
// vectors, return the vector and the effective shuffle.
|
|
|
|
if (CollectSingleShuffleElements(IEI, EI->getOperand(0), RHS, Mask))
|
|
|
|
return EI->getOperand(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: Handle shufflevector here!
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Otherwise, can't do anything fancy. Return an identity vector.
|
|
|
|
for (unsigned i = 0; i != NumElts; ++i)
|
|
|
|
Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i));
|
|
|
|
return V;
|
|
|
|
}
|
|
|
|
|
|
|
|
Instruction *InstCombiner::visitInsertElementInst(InsertElementInst &IE) {
|
|
|
|
Value *VecOp = IE.getOperand(0);
|
|
|
|
Value *ScalarOp = IE.getOperand(1);
|
|
|
|
Value *IdxOp = IE.getOperand(2);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Inserting an undef or into an undefined place, remove this.
|
|
|
|
if (isa<UndefValue>(ScalarOp) || isa<UndefValue>(IdxOp))
|
|
|
|
ReplaceInstUsesWith(IE, VecOp);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
|
|
|
// If the inserted element was extracted from some other vector, and if the
|
2010-01-05 06:36:20 +01:00
|
|
|
// indexes are constant, try to turn this into a shufflevector operation.
|
|
|
|
if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)) {
|
|
|
|
if (isa<ConstantInt>(EI->getOperand(1)) && isa<ConstantInt>(IdxOp) &&
|
|
|
|
EI->getOperand(0)->getType() == IE.getType()) {
|
|
|
|
unsigned NumVectorElts = IE.getType()->getNumElements();
|
|
|
|
unsigned ExtractedIdx =
|
2010-10-30 00:20:45 +02:00
|
|
|
cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
|
2010-01-05 06:36:20 +01:00
|
|
|
unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (ExtractedIdx >= NumVectorElts) // Out of range extract.
|
|
|
|
return ReplaceInstUsesWith(IE, VecOp);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
if (InsertedIdx >= NumVectorElts) // Out of range insert.
|
|
|
|
return ReplaceInstUsesWith(IE, UndefValue::get(IE.getType()));
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// If we are extracting a value from a vector, then inserting it right
|
|
|
|
// back into the same place, just use the input vector.
|
|
|
|
if (EI->getOperand(0) == VecOp && ExtractedIdx == InsertedIdx)
|
2010-10-30 00:20:43 +02:00
|
|
|
return ReplaceInstUsesWith(IE, VecOp);
|
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// If this insertelement isn't used by some other insertelement, turn it
|
|
|
|
// (and any insertelements it points to), into one big shuffle.
|
|
|
|
if (!IE.hasOneUse() || !isa<InsertElementInst>(IE.use_back())) {
|
|
|
|
std::vector<Constant*> Mask;
|
|
|
|
Value *RHS = 0;
|
|
|
|
Value *LHS = CollectShuffleElements(&IE, Mask, RHS);
|
|
|
|
if (RHS == 0) RHS = UndefValue::get(LHS->getType());
|
|
|
|
// We now have a shuffle of LHS, RHS, Mask.
|
2010-10-30 00:20:45 +02:00
|
|
|
return new ShuffleVectorInst(LHS, RHS, ConstantVector::get(Mask));
|
2010-01-05 06:36:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
unsigned VWidth = cast<VectorType>(VecOp->getType())->getNumElements();
|
|
|
|
APInt UndefElts(VWidth, 0);
|
|
|
|
APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
|
2011-02-19 23:42:40 +01:00
|
|
|
if (Value *V = SimplifyDemandedVectorElts(&IE, AllOnesEltMask, UndefElts)) {
|
|
|
|
if (V != &IE)
|
|
|
|
return ReplaceInstUsesWith(IE, V);
|
2010-01-05 06:36:20 +01:00
|
|
|
return &IE;
|
2011-02-19 23:42:40 +01:00
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Instruction *InstCombiner::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
|
|
|
|
Value *LHS = SVI.getOperand(0);
|
|
|
|
Value *RHS = SVI.getOperand(1);
|
2010-10-30 00:03:05 +02:00
|
|
|
std::vector<int> Mask = getShuffleMask(&SVI);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
bool MadeChange = false;
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Undefined shuffle mask -> undefined value.
|
|
|
|
if (isa<UndefValue>(SVI.getOperand(2)))
|
|
|
|
return ReplaceInstUsesWith(SVI, UndefValue::get(SVI.getType()));
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-08-18 00:55:27 +02:00
|
|
|
unsigned VWidth = cast<VectorType>(SVI.getType())->getNumElements();
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-08-18 00:55:27 +02:00
|
|
|
if (VWidth != cast<VectorType>(LHS->getType())->getNumElements())
|
|
|
|
return 0;
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
APInt UndefElts(VWidth, 0);
|
|
|
|
APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
|
2011-02-19 23:42:40 +01:00
|
|
|
if (Value *V = SimplifyDemandedVectorElts(&SVI, AllOnesEltMask, UndefElts)) {
|
|
|
|
if (V != &SVI)
|
|
|
|
return ReplaceInstUsesWith(SVI, V);
|
2010-01-05 06:36:20 +01:00
|
|
|
LHS = SVI.getOperand(0);
|
|
|
|
RHS = SVI.getOperand(1);
|
|
|
|
MadeChange = true;
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Canonicalize shuffle(x ,x,mask) -> shuffle(x, undef,mask')
|
|
|
|
// Canonicalize shuffle(undef,x,mask) -> shuffle(x, undef,mask').
|
|
|
|
if (LHS == RHS || isa<UndefValue>(LHS)) {
|
2010-08-18 00:55:27 +02:00
|
|
|
if (isa<UndefValue>(LHS) && LHS == RHS) {
|
|
|
|
// shuffle(undef,undef,mask) -> undef.
|
|
|
|
return ReplaceInstUsesWith(SVI, LHS);
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Remap any references to RHS to use LHS.
|
|
|
|
std::vector<Constant*> Elts;
|
2010-08-18 00:55:27 +02:00
|
|
|
for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
|
2010-10-30 00:03:05 +02:00
|
|
|
if (Mask[i] < 0)
|
2010-01-05 06:36:20 +01:00
|
|
|
Elts.push_back(UndefValue::get(Type::getInt32Ty(SVI.getContext())));
|
|
|
|
else {
|
2010-10-30 00:03:05 +02:00
|
|
|
if ((Mask[i] >= (int)e && isa<UndefValue>(RHS)) ||
|
|
|
|
(Mask[i] < (int)e && isa<UndefValue>(LHS))) {
|
|
|
|
Mask[i] = -1; // Turn into undef.
|
2010-01-05 06:36:20 +01:00
|
|
|
Elts.push_back(UndefValue::get(Type::getInt32Ty(SVI.getContext())));
|
|
|
|
} else {
|
|
|
|
Mask[i] = Mask[i] % e; // Force to LHS.
|
|
|
|
Elts.push_back(ConstantInt::get(Type::getInt32Ty(SVI.getContext()),
|
|
|
|
Mask[i]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SVI.setOperand(0, SVI.getOperand(1));
|
|
|
|
SVI.setOperand(1, UndefValue::get(RHS->getType()));
|
|
|
|
SVI.setOperand(2, ConstantVector::get(Elts));
|
|
|
|
LHS = SVI.getOperand(0);
|
|
|
|
RHS = SVI.getOperand(1);
|
|
|
|
MadeChange = true;
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
// Analyze the shuffle, are the LHS or RHS and identity shuffles?
|
2010-08-18 00:55:27 +02:00
|
|
|
bool isLHSID = true, isRHSID = true;
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-08-18 00:55:27 +02:00
|
|
|
for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
|
2010-10-30 00:03:05 +02:00
|
|
|
if (Mask[i] < 0) continue; // Ignore undef values.
|
2010-08-18 00:55:27 +02:00
|
|
|
// Is this an identity shuffle of the LHS value?
|
2010-10-30 00:03:05 +02:00
|
|
|
isLHSID &= (Mask[i] == (int)i);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-08-18 00:55:27 +02:00
|
|
|
// Is this an identity shuffle of the RHS value?
|
|
|
|
isRHSID &= (Mask[i]-e == i);
|
2010-08-10 23:38:12 +02:00
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-08-18 00:55:27 +02:00
|
|
|
// Eliminate identity shuffles.
|
|
|
|
if (isLHSID) return ReplaceInstUsesWith(SVI, LHS);
|
|
|
|
if (isRHSID) return ReplaceInstUsesWith(SVI, RHS);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-08-18 00:55:27 +02:00
|
|
|
// If the LHS is a shufflevector itself, see if we can combine it with this
|
|
|
|
// one without producing an unusual shuffle. Here we are really conservative:
|
|
|
|
// we are absolutely afraid of producing a shuffle mask not in the input
|
|
|
|
// program, because the code gen may not be smart enough to turn a merged
|
|
|
|
// shuffle into two specific shuffles: it may produce worse code. As such,
|
2010-10-30 00:02:50 +02:00
|
|
|
// we only merge two shuffles if the result is either a splat or one of the
|
|
|
|
// two input shuffle masks. In this case, merging the shuffles just removes
|
|
|
|
// one instruction, which we know is safe. This is good for things like
|
|
|
|
// turning: (splat(splat)) -> splat.
|
2010-08-18 00:55:27 +02:00
|
|
|
if (ShuffleVectorInst *LHSSVI = dyn_cast<ShuffleVectorInst>(LHS)) {
|
|
|
|
if (isa<UndefValue>(RHS)) {
|
2010-10-30 00:03:05 +02:00
|
|
|
std::vector<int> LHSMask = getShuffleMask(LHSSVI);
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-08-18 00:55:27 +02:00
|
|
|
if (LHSMask.size() == Mask.size()) {
|
2010-10-30 00:03:05 +02:00
|
|
|
std::vector<int> NewMask;
|
2010-10-30 00:02:50 +02:00
|
|
|
bool isSplat = true;
|
2010-10-30 00:03:05 +02:00
|
|
|
int SplatElt = -1; // undef
|
2010-10-30 00:02:50 +02:00
|
|
|
for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
|
2010-10-30 00:03:05 +02:00
|
|
|
int MaskElt;
|
|
|
|
if (Mask[i] < 0 || Mask[i] >= (int)e)
|
|
|
|
MaskElt = -1; // undef
|
|
|
|
else
|
2010-10-30 00:02:50 +02:00
|
|
|
MaskElt = LHSMask[Mask[i]];
|
|
|
|
// Check if this could still be a splat.
|
2010-10-30 00:03:05 +02:00
|
|
|
if (MaskElt >= 0) {
|
|
|
|
if (SplatElt >=0 && SplatElt != MaskElt)
|
2010-10-30 00:02:50 +02:00
|
|
|
isSplat = false;
|
|
|
|
SplatElt = MaskElt;
|
|
|
|
}
|
|
|
|
NewMask.push_back(MaskElt);
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-08-18 00:55:27 +02:00
|
|
|
// If the result mask is equal to the src shuffle or this
|
|
|
|
// shuffle mask, do the replacement.
|
2010-10-30 00:02:50 +02:00
|
|
|
if (isSplat || NewMask == LHSMask || NewMask == Mask) {
|
2010-08-18 00:55:27 +02:00
|
|
|
std::vector<Constant*> Elts;
|
2010-10-30 00:02:50 +02:00
|
|
|
const Type *Int32Ty = Type::getInt32Ty(SVI.getContext());
|
2010-08-18 00:55:27 +02:00
|
|
|
for (unsigned i = 0, e = NewMask.size(); i != e; ++i) {
|
2010-10-30 00:03:05 +02:00
|
|
|
if (NewMask[i] < 0) {
|
2010-10-30 00:02:50 +02:00
|
|
|
Elts.push_back(UndefValue::get(Int32Ty));
|
2010-08-18 00:55:27 +02:00
|
|
|
} else {
|
2010-10-30 00:02:50 +02:00
|
|
|
Elts.push_back(ConstantInt::get(Int32Ty, NewMask[i]));
|
2010-08-18 00:55:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return new ShuffleVectorInst(LHSSVI->getOperand(0),
|
|
|
|
LHSSVI->getOperand(1),
|
|
|
|
ConstantVector::get(Elts));
|
2010-08-13 02:17:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-30 00:20:43 +02:00
|
|
|
|
2010-01-05 06:36:20 +01:00
|
|
|
return MadeChange ? &SVI : 0;
|
|
|
|
}
|