Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp384 if (I.getBitWidth() > IntTyBits && I.getActiveBits() > IntTyBits) in CheckedZextOrTrunc()
386 if (I.getBitWidth() != IntTyBits) in CheckedZextOrTrunc()
387 I = I.zextOrTrunc(IntTyBits); in CheckedZextOrTrunc()
418 APInt MaxSize = Arg->getValue().zext(IntTyBits); in getAllocSize()
431 if (!CheckedZextOrTrunc(Size, IntTyBits)) in getAllocSize()
443 if (!CheckedZextOrTrunc(NumElems, IntTyBits)) in getAllocSize()
728 IntTyBits = DL.getIndexTypeSizeInBits(V->getType()); in compute()
729 Zero = APInt::getZero(IntTyBits); in compute()
776 return ::CheckedZextOrTrunc(I, IntTyBits); in CheckedZextOrTrunc()
786 APInt Size(IntTyBits, ElemSize.getKnownMinSize()); in visitAllocaInst()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h189 unsigned IntTyBits; variable