Searched refs:apf (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp698 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended()); local
699 (void)apf.convertFromAPInt(GV.IntVal,
702 GV.IntVal = apf.bitcastToAPInt();
713 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended()); local
714 (void)apf.convertFromAPInt(GV.IntVal,
717 GV.IntVal = apf.bitcastToAPInt();
730 APFloat apf = APFloat(APFloat::x87DoubleExtended(), GV.IntVal); local
733 (void)apf.convertToInteger(makeMutableArrayRef(v), BitWidth,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp696 APFloat apf(DestTy->getFltSemantics(),
698 apf.convertFromAPInt(api, opc==Instruction::SIToFP,
700 return ConstantFP::get(V->getContext(), apf);
H A DAsmWriter.cpp1374 APFloat apf = APF; local
1377 apf.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven,
1379 Out << format_hex(apf.bitcastToAPInt().getZExtValue(), 0, /*Upper=*/true);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4451 APFloat apf(EVTToAPFloatSemantics(VT),
4453 (void)apf.convertFromAPInt(Val,
4456 return getConstantFP(apf, DL, VT);

Completed in 87 milliseconds