11debfc3dSmrg /* Software floating-point emulation.
21debfc3dSmrg Convert a 128bit unsigned integer to IEEE double
3*8feb0f0bSmrg Copyright (C) 1997-2019 Free Software Foundation, Inc.
41debfc3dSmrg This file is part of the GNU C Library.
51debfc3dSmrg Contributed by Uros Bizjak (ubizjak@gmail.com).
61debfc3dSmrg
71debfc3dSmrg The GNU C Library is free software; you can redistribute it and/or
81debfc3dSmrg modify it under the terms of the GNU Lesser General Public
91debfc3dSmrg License as published by the Free Software Foundation; either
101debfc3dSmrg version 2.1 of the License, or (at your option) any later version.
111debfc3dSmrg
121debfc3dSmrg In addition to the permissions in the GNU Lesser General Public
131debfc3dSmrg License, the Free Software Foundation gives you unlimited
141debfc3dSmrg permission to link the compiled version of this file into
151debfc3dSmrg combinations with other programs, and to distribute those
161debfc3dSmrg combinations without any restriction coming from the use of this
171debfc3dSmrg file. (The Lesser General Public License restrictions do apply in
181debfc3dSmrg other respects; for example, they cover modification of the file,
191debfc3dSmrg and distribution when not linked into a combine executable.)
201debfc3dSmrg
211debfc3dSmrg The GNU C Library is distributed in the hope that it will be useful,
221debfc3dSmrg but WITHOUT ANY WARRANTY; without even the implied warranty of
231debfc3dSmrg MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
241debfc3dSmrg Lesser General Public License for more details.
251debfc3dSmrg
261debfc3dSmrg You should have received a copy of the GNU Lesser General Public
271debfc3dSmrg License along with the GNU C Library; if not, see
281debfc3dSmrg <http://www.gnu.org/licenses/>. */
291debfc3dSmrg
301debfc3dSmrg #include "soft-fp.h"
311debfc3dSmrg #include "double.h"
321debfc3dSmrg
331debfc3dSmrg DFtype
__floatuntidf(UTItype i)341debfc3dSmrg __floatuntidf (UTItype i)
351debfc3dSmrg {
361debfc3dSmrg FP_DECL_EX;
371debfc3dSmrg FP_DECL_D (A);
381debfc3dSmrg DFtype a;
391debfc3dSmrg
401debfc3dSmrg FP_INIT_ROUNDMODE;
411debfc3dSmrg FP_FROM_INT_D (A, i, TI_BITS, UTItype);
421debfc3dSmrg FP_PACK_RAW_D (a, A);
431debfc3dSmrg FP_HANDLE_EXCEPTIONS;
441debfc3dSmrg
451debfc3dSmrg return a;
461debfc3dSmrg }
47