Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp26 OS << "lsb=" << getLsbWeight() << ", "; in print()
45 int RelativeUpscale = getLsbWeight() - DstSema.getLsbWeight(); in convert()
55 std::min(DstSema.getIntegralBits() - DstSema.getLsbWeight(), in convert()
89 int CommonLsb = std::min(getLsbWeight(), Other.getLsbWeight()); in compare()
96 ThisVal = ThisVal.shl(getLsbWeight() - CommonLsb); in compare()
97 OtherVal = OtherVal.shl(Other.getLsbWeight() - CommonLsb); in compare()
173 int CommonLsb = std::min(getLsbWeight(), Other.getLsbWeight()); in getCommonSemantics()
274 .relativeAShl(CommonFXSema.getLsbWeight()); in mul()
277 .relativeLShl(CommonFXSema.getLsbWeight()); in mul()
327 if (CommonFXSema.getLsbWeight() < 0) in div()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFixedPoint.h64 int getLsbWeight() const { return LsbWeight; } in getLsbWeight() function
182 int getLsbWeight() const { return Sema.getLsbWeight(); }
231 (getLsbWeight() > 0) ? Val.extend(getWidth() + getLsbWeight()) : Val;
233 return -((-ExtVal).relativeShl(getLsbWeight()));
234 return ExtVal.relativeShl(getLsbWeight());