Lines Matching refs:Shuffle
1350 auto *Shuffle = cast<ShuffleVectorInst>(I); in SimplifyDemandedVectorElts() local
1351 assert(Shuffle->getOperand(0)->getType() == in SimplifyDemandedVectorElts()
1352 Shuffle->getOperand(1)->getType() && in SimplifyDemandedVectorElts()
1354 unsigned OpWidth = cast<FixedVectorType>(Shuffle->getOperand(0)->getType()) in SimplifyDemandedVectorElts()
1358 if (all_of(Shuffle->getShuffleMask(), [](int Elt) { return Elt == 0; }) && in SimplifyDemandedVectorElts()
1377 unsigned MaskVal = Shuffle->getMaskValue(i); in SimplifyDemandedVectorElts()
1409 unsigned MaskVal = Shuffle->getMaskValue(i); in SimplifyDemandedVectorElts()
1416 return Shuffle->getOperand(0); in SimplifyDemandedVectorElts()
1425 unsigned MaskVal = Shuffle->getMaskValue(i); in SimplifyDemandedVectorElts()
1457 cast<FixedVectorType>(Shuffle->getType())->getNumElements()) { in SimplifyDemandedVectorElts()
1464 if (auto *CV = dyn_cast<ConstantVector>(Shuffle->getOperand(0))) { in SimplifyDemandedVectorElts()
1465 Op = Shuffle->getOperand(1); in SimplifyDemandedVectorElts()
1471 if (auto *CV = dyn_cast<ConstantVector>(Shuffle->getOperand(1))) { in SimplifyDemandedVectorElts()
1472 Op = Shuffle->getOperand(0); in SimplifyDemandedVectorElts()
1481 Shuffle->getName()); in SimplifyDemandedVectorElts()
1482 InsertNewInstWith(New, *Shuffle); in SimplifyDemandedVectorElts()
1493 Elts.push_back(Shuffle->getMaskValue(i)); in SimplifyDemandedVectorElts()
1495 Shuffle->setShuffleMask(Elts); in SimplifyDemandedVectorElts()