Searched refs:ExponentBias (Results 1 – 2 of 2) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/CodeGen/ |
H A D | ExpandLargeFpConvert.cpp | 120 unsigned ExponentBias = (1 << (ExponentWidth - 1)) - 1; in expandFPToI() local 171 Builder.CreateICmpULT(And2, Builder.getIntN(BitWidth, ExponentBias)); in expandFPToI() 177 And2, ConstantInt::getSigned(IntTy, -int64_t(ExponentBias + BitWidth))); in expandFPToI() 191 And2, Builder.getIntN(BitWidth, ExponentBias + FPMantissaWidth)); in expandFPToI() 197 Builder.getIntN(BitWidth, ExponentBias + FPMantissaWidth), And2); in expandFPToI() 206 ConstantInt::getSigned(IntTy, -(ExponentBias + FPMantissaWidth))); in expandFPToI()
|
/openbsd/gnu/llvm/llvm/lib/Target/RISCV/ |
H A D | RISCVISelLowering.cpp | 3601 unsigned ExponentBias = FloatEltVT == MVT::f64 ? 1023 : 127; in lowerCTLZ_CTTZ_ZERO_UNDEF() local 3606 DAG.getConstant(ExponentBias, DL, VT)); in lowerCTLZ_CTTZ_ZERO_UNDEF() 3610 unsigned Adjust = ExponentBias + (EltSize - 1); in lowerCTLZ_CTTZ_ZERO_UNDEF()
|