Home | History | Annotate | Line # | Download | only in gen
      1  1.1  joerg /*	$NetBSD: floatunditf_ieee754.c,v 1.1 2014/01/30 15:06:18 joerg Exp $	*/
      2  1.1  joerg 
      3  1.1  joerg /*-
      4  1.1  joerg  * Copyright (c) 2014 Joerg Sonnenberger <joerg (at) NetBSD.org>.
      5  1.1  joerg  * All rights reserved.
      6  1.1  joerg  *
      7  1.1  joerg  * Redistribution and use in source and binary forms, with or without
      8  1.1  joerg  * modification, are permitted provided that the following conditions
      9  1.1  joerg  * are met:
     10  1.1  joerg  *
     11  1.1  joerg  * 1. Redistributions of source code must retain the above copyright
     12  1.1  joerg  *    notice, this list of conditions and the following disclaimer.
     13  1.1  joerg  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1  joerg  *    notice, this list of conditions and the following disclaimer in
     15  1.1  joerg  *    the documentation and/or other materials provided with the
     16  1.1  joerg  *    distribution.
     17  1.1  joerg  *
     18  1.1  joerg  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     19  1.1  joerg  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     20  1.1  joerg  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
     21  1.1  joerg  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
     22  1.1  joerg  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     23  1.1  joerg  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
     24  1.1  joerg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     25  1.1  joerg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     26  1.1  joerg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     27  1.1  joerg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
     28  1.1  joerg  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  1.1  joerg  * SUCH DAMAGE.
     30  1.1  joerg  */
     31  1.1  joerg 
     32  1.1  joerg #include <sys/cdefs.h>
     33  1.1  joerg __RCSID("$NetBSD: floatunditf_ieee754.c,v 1.1 2014/01/30 15:06:18 joerg Exp $");
     34  1.1  joerg 
     35  1.1  joerg #include <math.h>
     36  1.1  joerg #include <machine/ieee.h>
     37  1.1  joerg #include <limits.h>
     38  1.1  joerg 
     39  1.1  joerg #ifdef __HAVE_LONG_DOUBLE
     40  1.1  joerg 
     41  1.1  joerg long double __floatunditf(uint64_t x);
     42  1.1  joerg 
     43  1.1  joerg /*
     44  1.1  joerg  * Convert uint64_t to long double.
     45  1.1  joerg  */
     46  1.1  joerg long double
     47  1.1  joerg __floatunditf(uint64_t x)
     48  1.1  joerg {
     49  1.1  joerg 	int exponent, zeros;
     50  1.1  joerg 	union ieee_ext_u ux;
     51  1.1  joerg 
     52  1.1  joerg 	/* Use the easier conversion routine for uint32_t if possible. */
     53  1.1  joerg 	if (x <= UINT32_MAX)
     54  1.1  joerg 		return (long double)(uint32_t)x;
     55  1.1  joerg 
     56  1.1  joerg 	zeros = __builtin_clzll(x);
     57  1.1  joerg #ifdef LDBL_IMPLICIT_NBIT
     58  1.1  joerg 	exponent = 64 - zeros;
     59  1.1  joerg 	x <<= zeros + 1;
     60  1.1  joerg #else
     61  1.1  joerg 	exponent = 63 - zeros;
     62  1.1  joerg 	x <<= zeros;
     63  1.1  joerg #endif
     64  1.1  joerg 
     65  1.1  joerg 	ux.extu_exp = EXT_EXP_BIAS + exponent;
     66  1.1  joerg 	ux.extu_frach = (x >> (64 - EXT_FRACHBITS));
     67  1.1  joerg 	x <<= EXT_FRACHBITS;
     68  1.1  joerg #ifdef EXT_FRACHMBITS
     69  1.1  joerg 	ux.extu_frachm = (x >> (64 - EXT_FRACHMBITS));
     70  1.1  joerg 	x <<= EXT_FRACHMBITS;
     71  1.1  joerg #endif
     72  1.1  joerg #ifdef EXT_FRACLMBITS
     73  1.1  joerg 	ux.extu_fraclm = (x >> (64 - EXT_FRACLMBITS));
     74  1.1  joerg 	x <<= EXT_FRACLMBITS;
     75  1.1  joerg #endif
     76  1.1  joerg 	ux.extu_fracl = (x >> (64 - EXT_FRACLBITS));
     77  1.1  joerg 	ux.extu_sign = 0;
     78  1.1  joerg 
     79  1.1  joerg 	return ux.extu_ld;
     80  1.1  joerg }
     81  1.1  joerg #endif /* __HAVE_LONG_DOUBLE */
     82