Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp1484 unsigned NewPtrBitWidth = DL.getTypeStoreSizeInBits(PtrA->getType()); in getConstantOffset() local
1485 if (NewPtrBitWidth != DL.getTypeStoreSizeInBits(PtrB->getType())) in getConstantOffset()
1491 assert(OffsetA.getSignificantBits() <= NewPtrBitWidth && in getConstantOffset()
1492 OffsetB.getSignificantBits() <= NewPtrBitWidth); in getConstantOffset()
1494 OffsetA = OffsetA.sextOrTrunc(NewPtrBitWidth); in getConstantOffset()
1495 OffsetB = OffsetB.sextOrTrunc(NewPtrBitWidth); in getConstantOffset()
1507 APInt Dist = DistRange.getSingleElement()->sextOrTrunc(NewPtrBitWidth); in getConstantOffset()