Searched refs:IntTyBits (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp566 return APInt(IntTyBits, alignTo(Size.getZExtValue(), Align(Alignment)));
580 IntTyBits = DL.getIndexTypeSizeInBits(V->getType());
581 Zero = APInt::getNullValue(IntTyBits);
619 /// checks for us. Check and zext or trunc \p I depending on IntTyBits and
625 if (I.getBitWidth() > IntTyBits && I.getActiveBits() > IntTyBits)
627 if (I.getBitWidth() != IntTyBits)
628 I = I.zextOrTrunc(IntTyBits);
636 APInt Size(IntTyBits, DL.getTypeAllocSize(I.getAllocatedType()));
661 APInt Size(IntTyBits, D
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h230 unsigned IntTyBits; member in class:llvm::ObjectSizeOffsetVisitor

Completed in 55 milliseconds