Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1492 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1493 if (NumSkippedElements.ugt(cast<FixedVectorType>(VecTy)->getNumElements())) in getNaturalGEPRecursively()
1495 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1496 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1505 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1506 if (NumSkippedElements.ugt(ArrTy->getNumElements())) in getNaturalGEPRecursively()
1509 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1510 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1564 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPWithOffset() local
1566 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPWithOffset()
[all …]