Home
last modified time | relevance | path

Searched refs:InVWidth (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp1448 unsigned InVWidth = cast<FixedVectorType>(VTy)->getNumElements(); in SimplifyDemandedVectorElts() local
1449 APInt InputDemandedElts(InVWidth, 0); in SimplifyDemandedVectorElts()
1450 UndefElts2 = APInt(InVWidth, 0); in SimplifyDemandedVectorElts()
1453 if (VWidth == InVWidth) { in SimplifyDemandedVectorElts()
1458 } else if ((VWidth % InVWidth) == 0) { in SimplifyDemandedVectorElts()
1462 Ratio = VWidth / InVWidth; in SimplifyDemandedVectorElts()
1466 } else if ((InVWidth % VWidth) == 0) { in SimplifyDemandedVectorElts()
1470 Ratio = InVWidth / VWidth; in SimplifyDemandedVectorElts()
1471 for (unsigned InIdx = 0; InIdx != InVWidth; ++InIdx) in SimplifyDemandedVectorElts()
1481 if (VWidth == InVWidth) { in SimplifyDemandedVectorElts()
[all …]