Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp4803 APInt NumActiveElems; in optimizeWhile() local
4806 NumActiveElems = IsSigned ? Y.ssub_ov(X, Overflow) : Y.usub_ov(X, Overflow); in optimizeWhile()
4808 NumActiveElems = IsSigned ? X.ssub_ov(Y, Overflow) : X.usub_ov(Y, Overflow); in optimizeWhile()
4814 APInt One(NumActiveElems.getBitWidth(), 1, IsSigned); in optimizeWhile()
4815 NumActiveElems = IsSigned ? NumActiveElems.sadd_ov(One, Overflow) in optimizeWhile()
4816 : NumActiveElems.uadd_ov(One, Overflow); in optimizeWhile()
4822 getSVEPredPatternFromNumElements(NumActiveElems.getZExtValue()); in optimizeWhile()
4827 NumActiveElems.getZExtValue() <= (MinSVEVectorSize / ElementSize)) in optimizeWhile()