Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp371 if (I.getBitWidth() > IntTyBits && I.getActiveBits() > IntTyBits) in CheckedZextOrTrunc()
373 if (I.getBitWidth() != IntTyBits) in CheckedZextOrTrunc()
374 I = I.zextOrTrunc(IntTyBits); in CheckedZextOrTrunc()
405 APInt MaxSize = Arg->getValue().zext(IntTyBits); in getAllocSize()
418 if (!CheckedZextOrTrunc(Size, IntTyBits)) in getAllocSize()
430 if (!CheckedZextOrTrunc(NumElems, IntTyBits)) in getAllocSize()
720 IntTyBits = DL.getIndexTypeSizeInBits(V->getType()); in computeImpl()
721 Zero = APInt::getZero(IntTyBits); in computeImpl()
777 return ::CheckedZextOrTrunc(I, IntTyBits); in CheckedZextOrTrunc()
784 APInt Size(IntTyBits, ElemSize.getKnownMinValue()); in visitAllocaInst()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h230 unsigned IntTyBits; variable