Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp1611 unsigned NewPtrBitWidth = DL.getTypeStoreSizeInBits(PtrA->getType()); in getConstantOffset() local
1612 if (NewPtrBitWidth != DL.getTypeStoreSizeInBits(PtrB->getType())) in getConstantOffset()
1618 assert(OffsetA.getSignificantBits() <= NewPtrBitWidth && in getConstantOffset()
1619 OffsetB.getSignificantBits() <= NewPtrBitWidth); in getConstantOffset()
1621 OffsetA = OffsetA.sextOrTrunc(NewPtrBitWidth); in getConstantOffset()
1622 OffsetB = OffsetB.sextOrTrunc(NewPtrBitWidth); in getConstantOffset()
1634 APInt Dist = DistRange.getSingleElement()->sextOrTrunc(NewPtrBitWidth); in getConstantOffset()