Changes in / [db6e419:45058baa] in mainline


Ignore:
Location:
uspace
Files:
59 deleted
32 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    rdb6e419 r45058baa  
    173173        lib/usbdev \
    174174        lib/usbhid \
    175         lib/usbvirt \
    176         lib/posix
     175        lib/usbvirt
    177176
    178177LIBC_BUILD = $(addsuffix .build,$(LIBC))
  • uspace/Makefile.common

    rdb6e419 r45058baa  
    4444#   EXTRA_CLEAN        additional cleanup targets
    4545#
    46 #   POSIX_COMPAT       set to 'y' to use POSIX compatibility layer
    47 #
    4846# Optionally, for a binary:
    4947#   STATIC_NEEDED      set to 'y' for init binaries, will build statically
     
    106104LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint
    107105
    108 LIBPOSIX_PREFIX = $(LIB_PREFIX)/posix
    109 
    110106LIBBLOCK_PREFIX = $(LIB_PREFIX)/block
    111107LIBFS_PREFIX = $(LIB_PREFIX)/fs
     
    218214JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py
    219215
    220 ifeq ($(POSIX_COMPAT),y)
    221         CFLAGS = -I$(LIBPOSIX_PREFIX)
    222         LIBS += $(LIBPOSIX_PREFIX)/libposix.a
    223 endif
    224 
    225216ifeq ($(COMPILER),gcc_cross)
    226         CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS)
     217        CFLAGS = $(GCC_CFLAGS) $(EXTRA_CFLAGS)
    227218        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    228219endif
    229220
    230221ifeq ($(COMPILER),gcc_native)
    231         CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS)
     222        CFLAGS = $(GCC_CFLAGS) $(EXTRA_CFLAGS)
    232223        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    233224endif
    234225
    235226ifeq ($(COMPILER),icc)
    236         CFLAGS += $(ICC_CFLAGS) $(EXTRA_CFLAGS)
     227        CFLAGS = $(ICC_CFLAGS) $(EXTRA_CFLAGS)
    237228        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    238229endif
    239230
    240231ifeq ($(COMPILER),clang)
    241         CFLAGS += $(CLANG_CFLAGS) $(EXTRA_CFLAGS)
     232        CFLAGS = $(CLANG_CFLAGS) $(EXTRA_CFLAGS)
    242233        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    243234endif
  • uspace/lib/softfloat/arch/abs32le/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2010 Martin Decky
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    4746#define float64_to_longlong(X) float64_to_int64(X);
    4847
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int32(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5348#define float32_to_uint(X) float32_to_uint32(X);
    5449#define float32_to_ulong(X) float32_to_uint32(X);
     
    5853#define float64_to_ulong(X) float64_to_uint32(X);
    5954#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint32(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6455
    6556#define int_to_float32(X) int32_to_float32(X);
     
    7162#define longlong_to_float64(X) int64_to_float64(X);
    7263
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int32_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7764#define uint_to_float32(X) uint32_to_float32(X);
    7865#define ulong_to_float32(X) uint32_to_float32(X);
     
    8370#define ulonglong_to_float64(X) uint64_to_float64(X);
    8471
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint32_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
    88 
    8972#endif
    9073
  • uspace/lib/softfloat/arch/amd64/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    4746#define float64_to_longlong(X) float64_to_int64(X);
    4847
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int64(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5348#define float32_to_uint(X) float32_to_uint32(X);
    5449#define float32_to_ulong(X) float32_to_uint64(X);
     
    5853#define float64_to_ulong(X) float64_to_uint64(X);
    5954#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint64(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6455
    6556#define int_to_float32(X) int32_to_float32(X);
     
    7162#define longlong_to_float64(X) int64_to_float64(X);
    7263
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int64_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7764#define uint_to_float32(X) uint32_to_float32(X);
    7865#define ulong_to_float32(X) uint64_to_float32(X);
     
    8370#define ulonglong_to_float64(X) uint64_to_float64(X);
    8471
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint64_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
     72#endif
    8873
    89 #endif
    9074
    9175/** @}
    9276 */
     77
  • uspace/lib/softfloat/arch/arm32/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3433 */
    3534/** @file
     35 *  @brief Softfloat architecture dependent definitions.
    3636 */
    3737
     
    4747#define float64_to_longlong(X) float64_to_int64(X);
    4848
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int32(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5349#define float32_to_uint(X) float32_to_uint32(X);
    5450#define float32_to_ulong(X) float32_to_uint32(X);
     
    5854#define float64_to_ulong(X) float64_to_uint32(X);
    5955#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint32(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6456
    6557#define int_to_float32(X) int32_to_float32(X);
     
    7163#define longlong_to_float64(X) int64_to_float64(X);
    7264
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int32_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7765#define uint_to_float32(X) uint32_to_float32(X);
    7866#define ulong_to_float32(X) uint32_to_float32(X);
     
    8371#define ulonglong_to_float64(X) uint64_to_float64(X);
    8472
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint32_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
    88 
    8973#endif
    9074
  • uspace/lib/softfloat/arch/ia32/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    4746#define float64_to_longlong(X) float64_to_int64(X);
    4847
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int32(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5348#define float32_to_uint(X) float32_to_uint32(X);
    5449#define float32_to_ulong(X) float32_to_uint32(X);
     
    5853#define float64_to_ulong(X) float64_to_uint32(X);
    5954#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint32(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6455
    6556#define int_to_float32(X) int32_to_float32(X);
     
    7162#define longlong_to_float64(X) int64_to_float64(X);
    7263
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int32_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7764#define uint_to_float32(X) uint32_to_float32(X);
    7865#define ulong_to_float32(X) uint32_to_float32(X);
     
    8370#define ulonglong_to_float64(X) uint64_to_float64(X);
    8471
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint32_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
    88 
    8972#endif
    9073
  • uspace/lib/softfloat/arch/ia64/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    4746#define float64_to_longlong(X) float64_to_int64(X);
    4847
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int64(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5348#define float32_to_uint(X) float32_to_uint32(X);
    5449#define float32_to_ulong(X) float32_to_uint64(X);
     
    5853#define float64_to_ulong(X) float64_to_uint64(X);
    5954#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint64(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6455
    6556#define int_to_float32(X) int32_to_float32(X);
     
    7162#define longlong_to_float64(X) int64_to_float64(X);
    7263
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int64_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7764#define uint_to_float32(X) uint32_to_float32(X);
    7865#define ulong_to_float32(X) uint64_to_float32(X);
     
    8370#define ulonglong_to_float64(X) uint64_to_float64(X);
    8471
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint64_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
     72#endif
    8873
    89 #endif
    9074
    9175 /** @}
    9276 */
     77
  • uspace/lib/softfloat/arch/mips32/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    4746#define float64_to_longlong(X) float64_to_int64(X);
    4847
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int32(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5348#define float32_to_uint(X) float32_to_uint32(X);
    5449#define float32_to_ulong(X) float32_to_uint32(X);
     
    5853#define float64_to_ulong(X) float64_to_uint32(X);
    5954#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint32(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6455
    6556#define int_to_float32(X) int32_to_float32(X);
     
    7162#define longlong_to_float64(X) int64_to_float64(X);
    7263
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int32_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7764#define uint_to_float32(X) uint32_to_float32(X);
    7865#define ulong_to_float32(X) uint32_to_float32(X);
     
    8370#define ulonglong_to_float64(X) uint64_to_float64(X);
    8471
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint32_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
    88 
    8972#endif
    9073
  • uspace/lib/softfloat/arch/mips32eb/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    4746#define float64_to_longlong(X) float64_to_int64(X);
    4847
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int32(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5348#define float32_to_uint(X) float32_to_uint32(X);
    5449#define float32_to_ulong(X) float32_to_uint32(X);
     
    5853#define float64_to_ulong(X) float64_to_uint32(X);
    5954#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint32(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6455
    6556#define int_to_float32(X) int32_to_float32(X);
     
    7162#define longlong_to_float64(X) int64_to_float64(X);
    7263
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int32_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7764#define uint_to_float32(X) uint32_to_float32(X);
    7865#define ulong_to_float32(X) uint32_to_float32(X);
     
    8370#define ulonglong_to_float64(X) uint64_to_float64(X);
    8471
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint32_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
     72#endif
    8873
    89 #endif
    9074
    9175 /** @}
    9276 */
     77
  • uspace/lib/softfloat/arch/mips64/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    4746#define float64_to_longlong(X) float64_to_int64(X);
    4847
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int64(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5348#define float32_to_uint(X) float32_to_uint32(X);
    5449#define float32_to_ulong(X) float32_to_uint64(X);
     
    5853#define float64_to_ulong(X) float64_to_uint64(X);
    5954#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint64(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6455
    6556#define int_to_float32(X) int32_to_float32(X);
     
    7162#define longlong_to_float64(X) int64_to_float64(X);
    7263
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int64_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7764#define uint_to_float32(X) uint32_to_float32(X);
    7865#define ulong_to_float32(X) uint64_to_float32(X);
     
    8370#define ulonglong_to_float64(X) uint64_to_float64(X);
    8471
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint64_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
    88 
    8972#endif
    9073
  • uspace/lib/softfloat/arch/ppc32/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    4746#define float64_to_longlong(X) float64_to_int64(X);
    4847
    49 #define float128_to_int(X) float128_to_int32(X);
    50 #define float128_to_long(X) float128_to_int32(X);
    51 #define float128_to_longlong(X) float128_to_int64(X);
    52 
    5348#define float32_to_uint(X) float32_to_uint32(X);
    5449#define float32_to_ulong(X) float32_to_uint32(X);
     
    5853#define float64_to_ulong(X) float64_to_uint32(X);
    5954#define float64_to_ulonglong(X) float64_to_uint64(X);
    60 
    61 #define float128_to_uint(X) float128_to_uint32(X);
    62 #define float128_to_ulong(X) float128_to_uint32(X);
    63 #define float128_to_ulonglong(X) float128_to_uint64(X);
    6455
    6556#define int_to_float32(X) int32_to_float32(X);
     
    7162#define longlong_to_float64(X) int64_to_float64(X);
    7263
    73 #define int_to_float128(X) int32_to_float128(X);
    74 #define long_to_float128(X) int32_to_float128(X);
    75 #define longlong_to_float128(X) int64_to_float128(X);
    76 
    7764#define uint_to_float32(X) uint32_to_float32(X);
    7865#define ulong_to_float32(X) uint32_to_float32(X);
     
    8370#define ulonglong_to_float64(X) uint64_to_float64(X);
    8471
    85 #define uint_to_float128(X) uint32_to_float128(X);
    86 #define ulong_to_float128(X) uint32_to_float128(X);
    87 #define ulonglong_to_float128(X) uint64_to_float128(X);
     72#endif
    8873
    89 #endif
    9074
    9175 /** @}
    9276 */
     77
  • uspace/lib/softfloat/arch/sparc64/include/functions.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2006 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3938#define __SOFTFLOAT_FUNCTIONS_H__
    4039
    41 #define SPARC_SOFTFLOAT
    42 
    4340#define float32_to_int(X) float32_to_int32(X);
    4441#define float32_to_long(X) float32_to_int64(X);
     
    4845#define float64_to_long(X) float64_to_int64(X);
    4946#define float64_to_longlong(X) float64_to_int64(X);
    50 
    51 #define float128_to_int(X) float128_to_int32(X);
    52 #define float128_to_long(X) float128_to_int64(X);
    53 #define float128_to_longlong(X) float128_to_int64(X);
    5447
    5548#define float32_to_uint(X) float32_to_uint32(X);
     
    6154#define float64_to_ulonglong(X) float64_to_uint64(X);
    6255
    63 #define float128_to_uint(X) float128_to_uint32(X);
    64 #define float128_to_ulong(X) float128_to_uint64(X);
    65 #define float128_to_ulonglong(X) float128_to_uint64(X);
    66 
    6756#define int_to_float32(X) int32_to_float32(X);
    6857#define long_to_float32(X) int64_to_float32(X);
     
    7261#define long_to_float64(X) int64_to_float64(X);
    7362#define longlong_to_float64(X) int64_to_float64(X);
    74 
    75 #define int_to_float128(X) int32_to_float128(X);
    76 #define long_to_float128(X) int64_to_float128(X);
    77 #define longlong_to_float128(X) int64_to_float128(X);
    7863
    7964#define uint_to_float32(X) uint32_to_float32(X);
     
    8570#define ulonglong_to_float64(X) uint64_to_float64(X);
    8671
    87 #define uint_to_float128(X) uint32_to_float128(X);
    88 #define ulong_to_float128(X) uint64_to_float128(X);
    89 #define ulonglong_to_float128(X) uint64_to_float128(X);
     72#endif
    9073
    91 #endif
    9274
    9375 /** @}
    9476 */
     77
  • uspace/lib/softfloat/generic/add.c

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Addition functions.
     32/** @file
    3433 */
    3534
     
    3736#include <add.h>
    3837#include <comparison.h>
    39 #include <common.h>
    40 
    41 /**
    42  * Add two single-precision floats with the same signs.
    43  *
    44  * @param a First input operand.
    45  * @param b Second input operand.
    46  * @return Result of addition.
     38
     39/** Add two Float32 numbers with same signs
    4740 */
    4841float32 addFloat32(float32 a, float32 b)
    4942{
    5043        int expdiff;
    51         uint32_t exp1, exp2, frac1, frac2;
     44        uint32_t exp1, exp2,frac1, frac2;
    5245       
    5346        expdiff = a.parts.exp - b.parts.exp;
     
    5649                        /* TODO: fix SigNaN */
    5750                        if (isFloat32SigNaN(b)) {
    58                         }
    59 
    60                         return b;
    61                 }
     51                        };
     52
     53                        return b;
     54                };
    6255               
    6356                if (b.parts.exp == FLOAT32_MAX_EXPONENT) {
     
    7467                        /* TODO: fix SigNaN */
    7568                        if (isFloat32SigNaN(a) || isFloat32SigNaN(b)) {
    76                         }
    77                         return (isFloat32NaN(a) ? a : b);
    78                 }
     69                        };
     70                        return (isFloat32NaN(a)?a:b);
     71                };
    7972               
    8073                if (a.parts.exp == FLOAT32_MAX_EXPONENT) {
     
    8679                frac2 = b.parts.fraction;
    8780                exp2 = b.parts.exp;
    88         }
     81        };
    8982       
    9083        if (exp1 == 0) {
     
    9487                        /* result is not denormalized */
    9588                        a.parts.exp = 1;
    96                 }
     89                };
    9790                a.parts.fraction = frac1;
    9891                return a;
    99         }
     92        };
    10093       
    10194        frac1 |= FLOAT32_HIDDEN_BIT_MASK; /* add hidden bit */
     
    107100                /* add hidden bit to second operand */
    108101                frac2 |= FLOAT32_HIDDEN_BIT_MASK;
    109         }
     102        };
    110103       
    111104        /* create some space for rounding */
     
    125118                ++exp1;
    126119                frac1 >>= 1;
    127         }
     120        };
    128121       
    129122        /* rounding - if first bit after fraction is set then round up */
     
    134127                ++exp1;
    135128                frac1 >>= 1;
    136         }
     129        };
     130       
    137131       
    138132        if ((exp1 == FLOAT32_MAX_EXPONENT ) || (exp2 > exp1)) {
    139                 /* overflow - set infinity as result */
    140                 a.parts.exp = FLOAT32_MAX_EXPONENT;
    141                 a.parts.fraction = 0;
    142                 return a;
    143         }
     133                        /* overflow - set infinity as result */
     134                        a.parts.exp = FLOAT32_MAX_EXPONENT;
     135                        a.parts.fraction = 0;
     136                        return a;
     137                        }
    144138       
    145139        a.parts.exp = exp1;
    146140       
    147141        /* Clear hidden bit and shift */
    148         a.parts.fraction = ((frac1 >> 6) & (~FLOAT32_HIDDEN_BIT_MASK));
     142        a.parts.fraction = ((frac1 >> 6) & (~FLOAT32_HIDDEN_BIT_MASK)) ;
    149143        return a;
    150144}
    151145
    152 /**
    153  * Add two double-precision floats with the same signs.
    154  *
    155  * @param a First input operand.
    156  * @param b Second input operand.
    157  * @return Result of addition.
     146/** Add two Float64 numbers with same signs
    158147 */
    159148float64 addFloat64(float64 a, float64 b)
     
    163152        uint64_t frac1, frac2;
    164153       
    165         expdiff = ((int) a.parts.exp) - b.parts.exp;
     154        expdiff = ((int )a.parts.exp) - b.parts.exp;
    166155        if (expdiff < 0) {
    167156                if (isFloat64NaN(b)) {
    168157                        /* TODO: fix SigNaN */
    169158                        if (isFloat64SigNaN(b)) {
    170                         }
    171 
    172                         return b;
    173                 }
     159                        };
     160
     161                        return b;
     162                };
    174163               
    175164                /* b is infinity and a not */   
    176                 if (b.parts.exp == FLOAT64_MAX_EXPONENT) {
     165                if (b.parts.exp == FLOAT64_MAX_EXPONENT ) {
    177166                        return b;
    178167                }
     
    187176                        /* TODO: fix SigNaN */
    188177                        if (isFloat64SigNaN(a) || isFloat64SigNaN(b)) {
    189                         }
    190                         return a;
    191                 }
     178                        };
     179                        return a;
     180                };
    192181               
    193182                /* a is infinity and b not */
    194                 if (a.parts.exp == FLOAT64_MAX_EXPONENT) {
     183                if (a.parts.exp == FLOAT64_MAX_EXPONENT ) {
    195184                        return a;
    196185                }
     
    200189                frac2 = b.parts.fraction;
    201190                exp2 = b.parts.exp;
    202         }
     191        };
    203192       
    204193        if (exp1 == 0) {
     
    208197                        /* result is not denormalized */
    209198                        a.parts.exp = 1;
    210                 }
     199                };
    211200                a.parts.fraction = frac1;
    212201                return a;
    213         }
     202        };
    214203       
    215204        /* add hidden bit - frac1 is sure not denormalized */
     
    223212                /* is not denormalized */
    224213                frac2 |= FLOAT64_HIDDEN_BIT_MASK;
    225         }
     214        };
    226215       
    227216        /* create some space for rounding */
     
    229218        frac2 <<= 6;
    230219       
    231         if (expdiff < (FLOAT64_FRACTION_SIZE + 2)) {
     220        if (expdiff < (FLOAT64_FRACTION_SIZE + 2) ) {
    232221                frac2 >>= expdiff;
    233222                frac1 += frac2;
     
    238227        }
    239228       
    240         if (frac1 & (FLOAT64_HIDDEN_BIT_MASK << 7)) {
    241                 ++exp1;
    242                 frac1 >>= 1;
    243         }
     229        if (frac1 & (FLOAT64_HIDDEN_BIT_MASK << 7) ) {
     230                ++exp1;
     231                frac1 >>= 1;
     232        };
    244233       
    245234        /* rounding - if first bit after fraction is set then round up */
     
    250239                ++exp1;
    251240                frac1 >>= 1;
    252         }
     241        };
    253242       
    254243        if ((exp1 == FLOAT64_MAX_EXPONENT ) || (exp2 > exp1)) {
    255                 /* overflow - set infinity as result */
    256                 a.parts.exp = FLOAT64_MAX_EXPONENT;
    257                 a.parts.fraction = 0;
    258                 return a;
    259         }
     244                        /* overflow - set infinity as result */
     245                        a.parts.exp = FLOAT64_MAX_EXPONENT;
     246                        a.parts.fraction = 0;
     247                        return a;
     248                        }
    260249       
    261250        a.parts.exp = exp1;
    262251        /* Clear hidden bit and shift */
    263         a.parts.fraction = ((frac1 >> 6 ) & (~FLOAT64_HIDDEN_BIT_MASK));
     252        a.parts.fraction = ( (frac1 >> 6 ) & (~FLOAT64_HIDDEN_BIT_MASK));
     253       
    264254        return a;
    265255}
    266256
    267 /**
    268  * Add two quadruple-precision floats with the same signs.
    269  *
    270  * @param a First input operand.
    271  * @param b Second input operand.
    272  * @return Result of addition.
    273  */
    274 float128 addFloat128(float128 a, float128 b)
    275 {
    276         int expdiff;
    277         uint32_t exp1, exp2;
    278         uint64_t frac1_hi, frac1_lo, frac2_hi, frac2_lo, tmp_hi, tmp_lo;
    279 
    280         expdiff = ((int) a.parts.exp) - b.parts.exp;
    281         if (expdiff < 0) {
    282                 if (isFloat128NaN(b)) {
    283                         /* TODO: fix SigNaN */
    284                         if (isFloat128SigNaN(b)) {
    285                         }
    286 
    287                         return b;
    288                 }
    289 
    290                 /* b is infinity and a not */
    291                 if (b.parts.exp == FLOAT128_MAX_EXPONENT) {
    292                         return b;
    293                 }
    294 
    295                 frac1_hi = b.parts.frac_hi;
    296                 frac1_lo = b.parts.frac_lo;
    297                 exp1 = b.parts.exp;
    298                 frac2_hi = a.parts.frac_hi;
    299                 frac2_lo = a.parts.frac_lo;
    300                 exp2 = a.parts.exp;
    301                 expdiff *= -1;
    302         } else {
    303                 if (isFloat128NaN(a)) {
    304                         /* TODO: fix SigNaN */
    305                         if (isFloat128SigNaN(a) || isFloat128SigNaN(b)) {
    306                         }
    307                         return a;
    308                 }
    309 
    310                 /* a is infinity and b not */
    311                 if (a.parts.exp == FLOAT128_MAX_EXPONENT) {
    312                         return a;
    313                 }
    314 
    315                 frac1_hi = a.parts.frac_hi;
    316                 frac1_lo = a.parts.frac_lo;
    317                 exp1 = a.parts.exp;
    318                 frac2_hi = b.parts.frac_hi;
    319                 frac2_lo = b.parts.frac_lo;
    320                 exp2 = b.parts.exp;
    321         }
    322 
    323         if (exp1 == 0) {
    324                 /* both are denormalized */
    325                 add128(frac1_hi, frac1_lo, frac2_hi, frac2_lo, &frac1_hi, &frac1_lo);
    326 
    327                 and128(frac1_hi, frac1_lo,
    328                     FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    329                     &tmp_hi, &tmp_lo);
    330                 if (lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    331                         /* result is not denormalized */
    332                         a.parts.exp = 1;
    333                 }
    334 
    335                 a.parts.frac_hi = frac1_hi;
    336                 a.parts.frac_lo = frac1_lo;
    337                 return a;
    338         }
    339 
    340         /* add hidden bit - frac1 is sure not denormalized */
    341         or128(frac1_hi, frac1_lo,
    342             FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    343             &frac1_hi, &frac1_lo);
    344 
    345         /* second operand ... */
    346         if (exp2 == 0) {
    347                 /* ... is denormalized */
    348                 --expdiff;
    349         } else {
    350                 /* is not denormalized */
    351                 or128(frac2_hi, frac2_lo,
    352                     FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    353                     &frac2_hi, &frac2_lo);
    354         }
    355 
    356         /* create some space for rounding */
    357         lshift128(frac1_hi, frac1_lo, 6, &frac1_hi, &frac1_lo);
    358         lshift128(frac2_hi, frac2_lo, 6, &frac2_hi, &frac2_lo);
    359 
    360         if (expdiff < (FLOAT128_FRACTION_SIZE + 2)) {
    361                 rshift128(frac2_hi, frac2_lo, expdiff, &frac2_hi, &frac2_lo);
    362                 add128(frac1_hi, frac1_lo, frac2_hi, frac2_lo, &frac1_hi, &frac1_lo);
    363         } else {
    364                 a.parts.exp = exp1;
    365 
    366                 rshift128(frac1_hi, frac1_lo, 6, &frac1_hi, &frac1_lo);
    367                 not128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    368                     &tmp_hi, &tmp_lo);
    369                 and128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    370 
    371                 a.parts.frac_hi = tmp_hi;
    372                 a.parts.frac_lo = tmp_lo;
    373                 return a;
    374         }
    375 
    376         lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO, 7,
    377             &tmp_hi, &tmp_lo);
    378         and128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    379         if (lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    380                 ++exp1;
    381                 rshift128(frac1_hi, frac1_lo, 1, &frac1_hi, &frac1_lo);
    382         }
    383 
    384         /* rounding - if first bit after fraction is set then round up */
    385         add128(frac1_hi, frac1_lo, 0x0ll, 0x1ll << 5, &frac1_hi, &frac1_lo);
    386 
    387         lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO, 7,
    388            &tmp_hi, &tmp_lo);
    389         and128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    390         if (lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    391                 /* rounding overflow */
    392                 ++exp1;
    393                 rshift128(frac1_hi, frac1_lo, 1, &frac1_hi, &frac1_lo);
    394         }
    395 
    396         if ((exp1 == FLOAT128_MAX_EXPONENT ) || (exp2 > exp1)) {
    397                 /* overflow - set infinity as result */
    398                 a.parts.exp = FLOAT64_MAX_EXPONENT;
    399                 a.parts.frac_hi = 0;
    400                 a.parts.frac_lo = 0;
    401                 return a;
    402         }
    403 
    404         a.parts.exp = exp1;
    405        
    406         /* Clear hidden bit and shift */
    407         rshift128(frac1_hi, frac1_lo, 6, &frac1_hi, &frac1_lo);
    408         not128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    409             &tmp_hi, &tmp_lo);
    410         and128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    411 
    412         a.parts.frac_hi = tmp_hi;
    413         a.parts.frac_lo = tmp_lo;
    414 
    415         return a;
    416 }
    417 
    418257/** @}
    419258 */
  • uspace/lib/softfloat/generic/common.c

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Common helper operations.
     32/** @file
    3433 */
    3534
     
    3736#include <common.h>
    3837
    39 /* Table for fast leading zeroes counting. */
     38/* Table for fast leading zeroes counting */
    4039char zeroTable[256] = {
    4140        8, 7, 7, 6, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, \
     
    5756};
    5857
    59 /**
    60  * Take fraction shifted by 10 bits to the left, round it, normalize it
    61  * and detect exceptions
    62  *
    63  * @param cexp Exponent with bias.
    64  * @param cfrac Fraction shifted 10 bits to the left with added hidden bit.
    65  * @param sign Resulting sign.
    66  * @return Finished double-precision float.
     58
     59
     60/** Take fraction shifted by 10 bits to left, round it, normalize it and detect exceptions
     61 * @param cexp exponent with bias
     62 * @param cfrac fraction shifted 10 places left with added hidden bit
     63 * @param sign
     64 * @return valied float64
    6765 */
    6866float64 finishFloat64(int32_t cexp, uint64_t cfrac, char sign)
     
    7371
    7472        /* find first nonzero digit and shift result and detect possibly underflow */
    75         while ((cexp > 0) && (cfrac) &&
    76             (!(cfrac & (FLOAT64_HIDDEN_BIT_MASK << (64 - FLOAT64_FRACTION_SIZE - 1))))) {
     73        while ((cexp > 0) && (cfrac) && (!(cfrac & (FLOAT64_HIDDEN_BIT_MASK << (64 - FLOAT64_FRACTION_SIZE - 1 ) )))) {
    7774                cexp--;
    7875                cfrac <<= 1;
    79                 /* TODO: fix underflow */
    80         }
    81        
    82         if ((cexp < 0) || (cexp == 0 &&
    83             (!(cfrac & (FLOAT64_HIDDEN_BIT_MASK << (64 - FLOAT64_FRACTION_SIZE - 1)))))) {
     76                        /* TODO: fix underflow */
     77        };
     78       
     79        if ((cexp < 0) || ( cexp == 0 && (!(cfrac & (FLOAT64_HIDDEN_BIT_MASK << (64 - FLOAT64_FRACTION_SIZE - 1)))))) {
    8480                /* FIXME: underflow */
    8581                result.parts.exp = 0;
     
    9793               
    9894                if (!(cfrac & (FLOAT64_HIDDEN_BIT_MASK << (64 - FLOAT64_FRACTION_SIZE - 1)))) {
    99                         result.parts.fraction =
    100                             ((cfrac >> (64 - FLOAT64_FRACTION_SIZE - 2)) & (~FLOAT64_HIDDEN_BIT_MASK));
     95                       
     96                        result.parts.fraction = ((cfrac >>(64 - FLOAT64_FRACTION_SIZE - 2) ) & (~FLOAT64_HIDDEN_BIT_MASK));
    10197                        return result;
    10298                }       
     
    107103        ++cexp;
    108104
    109         if (cfrac & (FLOAT64_HIDDEN_BIT_MASK << (64 - FLOAT64_FRACTION_SIZE - 1))) {
     105        if (cfrac & (FLOAT64_HIDDEN_BIT_MASK << (64 - FLOAT64_FRACTION_SIZE - 1 ))) {
    110106                ++cexp;
    111107                cfrac >>= 1;
     
    113109
    114110        /* check overflow */
    115         if (cexp >= FLOAT64_MAX_EXPONENT) {
     111        if (cexp >= FLOAT64_MAX_EXPONENT ) {
    116112                /* FIXME: overflow, return infinity */
    117113                result.parts.exp = FLOAT64_MAX_EXPONENT;
     
    120116        }
    121117
    122         result.parts.exp = (uint32_t) cexp;
    123        
    124         result.parts.fraction =
    125             ((cfrac >> (64 - FLOAT64_FRACTION_SIZE - 2)) & (~FLOAT64_HIDDEN_BIT_MASK));
     118        result.parts.exp = (uint32_t)cexp;
     119       
     120        result.parts.fraction = ((cfrac >>(64 - FLOAT64_FRACTION_SIZE - 2 ) ) & (~FLOAT64_HIDDEN_BIT_MASK));
    126121       
    127122        return result; 
    128123}
    129124
    130 /**
    131  * Take fraction, round it, normalize it and detect exceptions
    132  *
    133  * @param cexp Exponent with bias.
    134  * @param cfrac_hi High part of the fraction shifted 14 bits to the left
    135  *     with added hidden bit.
    136  * @param cfrac_lo Low part of the fraction shifted 14 bits to the left
    137  *     with added hidden bit.
    138  * @param sign Resulting sign.
    139  * @param shift_out Bits right-shifted out from fraction by the caller.
    140  * @return Finished quadruple-precision float.
    141  */
    142 float128 finishFloat128(int32_t cexp, uint64_t cfrac_hi, uint64_t cfrac_lo,
    143     char sign, uint64_t shift_out)
    144 {
    145         float128 result;
    146         uint64_t tmp_hi, tmp_lo;
    147 
    148         result.parts.sign = sign;
    149 
    150         /* find first nonzero digit and shift result and detect possibly underflow */
    151         lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    152             1, &tmp_hi, &tmp_lo);
    153         and128(cfrac_hi, cfrac_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    154         while ((cexp > 0) && (lt128(0x0ll, 0x0ll, cfrac_hi, cfrac_lo)) &&
    155             (!lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo))) {
    156                 cexp--;
    157                 lshift128(cfrac_hi, cfrac_lo, 1, &cfrac_hi, &cfrac_lo);
    158                 /* TODO: fix underflow */
    159 
    160                 lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    161                     1, &tmp_hi, &tmp_lo);
    162                 and128(cfrac_hi, cfrac_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    163         }
    164 
    165         lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    166             1, &tmp_hi, &tmp_lo);
    167         and128(cfrac_hi, cfrac_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    168         if ((cexp < 0) || (cexp == 0 &&
    169             (!lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)))) {
    170                 /* FIXME: underflow */
    171                 result.parts.exp = 0;
    172                 if ((cexp + FLOAT128_FRACTION_SIZE + 1) < 0) { /* +1 is place for rounding */
    173                         result.parts.frac_hi = 0x0ll;
    174                         result.parts.frac_lo = 0x0ll;
    175                         return result;
    176                 }
    177 
    178                 while (cexp < 0) {
    179                         cexp++;
    180                         rshift128(cfrac_hi, cfrac_lo, 1, &cfrac_hi, &cfrac_lo);
    181                 }
    182 
    183                 if (shift_out & (0x1ull < 64)) {
    184                         add128(cfrac_hi, cfrac_lo, 0x0ll, 0x1ll, &cfrac_hi, &cfrac_lo);
    185                 }
    186 
    187                 lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    188                     1, &tmp_hi, &tmp_lo);
    189                 and128(cfrac_hi, cfrac_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    190                 if (!lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    191                         not128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    192                             &tmp_hi, &tmp_lo);
    193                         and128(cfrac_hi, cfrac_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    194                         result.parts.frac_hi = tmp_hi;
    195                         result.parts.frac_lo = tmp_lo;
    196                         return result;
    197                 }
    198         } else {
    199                 if (shift_out & (0x1ull < 64)) {
    200                         add128(cfrac_hi, cfrac_lo, 0x0ll, 0x1ll, &cfrac_hi, &cfrac_lo);
    201                 }
    202         }
    203 
    204         ++cexp;
    205 
    206         lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    207             1, &tmp_hi, &tmp_lo);
    208         and128(cfrac_hi, cfrac_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    209         if (lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    210                 ++cexp;
    211                 rshift128(cfrac_hi, cfrac_lo, 1, &cfrac_hi, &cfrac_lo);
    212         }
    213 
    214         /* check overflow */
    215         if (cexp >= FLOAT128_MAX_EXPONENT) {
    216                 /* FIXME: overflow, return infinity */
    217                 result.parts.exp = FLOAT128_MAX_EXPONENT;
    218                 result.parts.frac_hi = 0x0ll;
    219                 result.parts.frac_lo = 0x0ll;
    220                 return result;
    221         }
    222 
    223         result.parts.exp = (uint32_t) cexp;
    224 
    225         not128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    226             &tmp_hi, &tmp_lo);
    227         and128(cfrac_hi, cfrac_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    228         result.parts.frac_hi = tmp_hi;
    229         result.parts.frac_lo = tmp_lo;
    230 
    231         return result; 
    232 }
    233 
    234 /**
    235  * Counts leading zeroes in byte.
    236  *
    237  * @param i Byte for which to count leading zeroes.
    238  * @return Number of detected leading zeroes.
     125/** Counts leading zeroes in 64bit unsigned integer
     126 * @param i
     127 */
     128int countZeroes64(uint64_t i)
     129{
     130        int j;
     131        for (j =0; j < 64; j += 8) {
     132                if ( i & (0xFFll << (56 - j))) {
     133                        return (j + countZeroes8(i >> (56 - j)));
     134                }
     135        }
     136
     137        return 64;
     138}
     139
     140/** Counts leading zeroes in 32bit unsigned integer
     141 * @param i
     142 */
     143int countZeroes32(uint32_t i)
     144{
     145        int j;
     146        for (j =0; j < 32; j += 8) {
     147                if ( i & (0xFF << (24 - j))) {
     148                        return (j + countZeroes8(i >> (24 - j)));
     149                }
     150        }
     151
     152        return 32;
     153}
     154
     155/** Counts leading zeroes in byte
     156 * @param i
    239157 */
    240158int countZeroes8(uint8_t i)
     
    243161}
    244162
    245 /**
    246  * Counts leading zeroes in 32bit unsigned integer.
    247  *
    248  * @param i Integer for which to count leading zeroes.
    249  * @return Number of detected leading zeroes.
    250  */
    251 int countZeroes32(uint32_t i)
    252 {
    253         int j;
    254         for (j = 0; j < 32; j += 8) {
    255                 if (i & (0xFF << (24 - j))) {
    256                         return (j + countZeroes8(i >> (24 - j)));
    257                 }
    258         }
    259 
    260         return 32;
    261 }
    262 
    263 /**
    264  * Counts leading zeroes in 64bit unsigned integer.
    265  *
    266  * @param i Integer for which to count leading zeroes.
    267  * @return Number of detected leading zeroes.
    268  */
    269 int countZeroes64(uint64_t i)
    270 {
    271         int j;
    272         for (j = 0; j < 64; j += 8) {
    273                 if (i & (0xFFll << (56 - j))) {
    274                         return (j + countZeroes8(i >> (56 - j)));
    275                 }
    276         }
    277 
    278         return 64;
    279 }
    280 
    281 /**
    282  * Round and normalize number expressed by exponent and fraction with
    283  * first bit (equal to hidden bit) at 30th bit.
    284  *
    285  * @param exp Exponent part.
    286  * @param fraction Fraction with hidden bit shifted to 30th bit.
     163/** Round and normalize number expressed by exponent and fraction with first bit (equal to hidden bit) at 30. bit
     164 * @param exp exponent
     165 * @param fraction part with hidden bit shifted to 30. bit
    287166 */
    288167void roundFloat32(int32_t *exp, uint32_t *fraction)
    289168{
    290169        /* rounding - if first bit after fraction is set then round up */
    291         (*fraction) += (0x1 << (32 - FLOAT32_FRACTION_SIZE - 3));
    292        
    293         if ((*fraction) &
    294             (FLOAT32_HIDDEN_BIT_MASK << (32 - FLOAT32_FRACTION_SIZE - 1))) {
     170        (*fraction) += (0x1 << 6);
     171       
     172        if ((*fraction) & (FLOAT32_HIDDEN_BIT_MASK << 8)) {
    295173                /* rounding overflow */
    296174                ++(*exp);
    297175                (*fraction) >>= 1;
    298         }
    299        
    300         if (((*exp) >= FLOAT32_MAX_EXPONENT) || ((*exp) < 0)) {
     176        };
     177       
     178        if (((*exp) >= FLOAT32_MAX_EXPONENT ) || ((*exp) < 0)) {
    301179                /* overflow - set infinity as result */
    302180                (*exp) = FLOAT32_MAX_EXPONENT;
    303181                (*fraction) = 0;
    304         }
    305 }
    306 
    307 /**
    308  * Round and normalize number expressed by exponent and fraction with
    309  * first bit (equal to hidden bit) at 62nd bit.
    310  *
    311  * @param exp Exponent part.
    312  * @param fraction Fraction with hidden bit shifted to 62nd bit.
     182                return;
     183        }
     184
     185        return;
     186}
     187
     188/** Round and normalize number expressed by exponent and fraction with first bit (equal to hidden bit) at 62. bit
     189 * @param exp exponent
     190 * @param fraction part with hidden bit shifted to 62. bit
    313191 */
    314192void roundFloat64(int32_t *exp, uint64_t *fraction)
    315193{
    316194        /* rounding - if first bit after fraction is set then round up */
    317         (*fraction) += (0x1 << (64 - FLOAT64_FRACTION_SIZE - 3));
    318        
    319         if ((*fraction) &
    320             (FLOAT64_HIDDEN_BIT_MASK << (64 - FLOAT64_FRACTION_SIZE - 3))) {
     195        (*fraction) += (0x1 << 9);
     196       
     197        if ((*fraction) & (FLOAT64_HIDDEN_BIT_MASK << 11)) {
    321198                /* rounding overflow */
    322199                ++(*exp);
    323200                (*fraction) >>= 1;
    324         }
    325        
    326         if (((*exp) >= FLOAT64_MAX_EXPONENT) || ((*exp) < 0)) {
     201        };
     202       
     203        if (((*exp) >= FLOAT64_MAX_EXPONENT ) || ((*exp) < 0)) {
    327204                /* overflow - set infinity as result */
    328205                (*exp) = FLOAT64_MAX_EXPONENT;
    329206                (*fraction) = 0;
    330         }
    331 }
    332 
    333 /**
    334  * Round and normalize number expressed by exponent and fraction with
    335  * first bit (equal to hidden bit) at 126th bit.
    336  *
    337  * @param exp Exponent part.
    338  * @param frac_hi High part of fraction part with hidden bit shifted to 126th bit.
    339  * @param frac_lo Low part of fraction part with hidden bit shifted to 126th bit.
    340  */
    341 void roundFloat128(int32_t *exp, uint64_t *frac_hi, uint64_t *frac_lo)
    342 {
    343         uint64_t tmp_hi, tmp_lo;
    344 
    345         /* rounding - if first bit after fraction is set then round up */
    346         lshift128(0x0ll, 0x1ll, (128 - FLOAT128_FRACTION_SIZE - 3), &tmp_hi, &tmp_lo);
    347         add128(*frac_hi, *frac_lo, tmp_hi, tmp_lo, frac_hi, frac_lo);
    348 
    349         lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    350             (128 - FLOAT128_FRACTION_SIZE - 3), &tmp_hi, &tmp_lo);
    351         and128(*frac_hi, *frac_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    352         if (lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    353                 /* rounding overflow */
    354                 ++(*exp);
    355                 rshift128(*frac_hi, *frac_lo, 1, frac_hi, frac_lo);
    356         }
    357 
    358         if (((*exp) >= FLOAT128_MAX_EXPONENT) || ((*exp) < 0)) {
    359                 /* overflow - set infinity as result */
    360                 (*exp) = FLOAT128_MAX_EXPONENT;
    361                 (*frac_hi) = 0;
    362                 (*frac_lo) = 0;
    363         }
    364 }
    365 
    366 /**
    367  * Logical shift left on the 128-bit operand.
    368  *
    369  * @param a_hi High part of the input operand.
    370  * @param a_lo Low part of the input operand.
    371  * @param shift Number of bits by witch to shift.
    372  * @param r_hi Address to store high part of the result.
    373  * @param r_lo Address to store low part of the result.
    374  */
    375 void lshift128(
    376     uint64_t a_hi, uint64_t a_lo, int shift,
    377     uint64_t *r_hi, uint64_t *r_lo)
    378 {
    379         if (shift <= 0) {
    380                 /* do nothing */
    381         } else if (shift >= 128) {
    382                 a_hi = 0;
    383                 a_lo = 0;
    384         } else if (shift >= 64) {
    385                 a_hi = a_lo << (shift - 64);
    386                 a_lo = 0;
    387         } else {
    388                 a_hi <<= shift;
    389                 a_hi |= a_lo >> (64 - shift);
    390                 a_lo <<= shift;
    391         }
    392 
    393         *r_hi = a_hi;
    394         *r_lo = a_lo;
    395 }
    396 
    397 /**
    398  * Logical shift right on the 128-bit operand.
    399  *
    400  * @param a_hi High part of the input operand.
    401  * @param a_lo Low part of the input operand.
    402  * @param shift Number of bits by witch to shift.
    403  * @param r_hi Address to store high part of the result.
    404  * @param r_lo Address to store low part of the result.
    405  */
    406 void rshift128(
    407     uint64_t a_hi, uint64_t a_lo, int shift,
    408     uint64_t *r_hi, uint64_t *r_lo)
    409 {
    410         if (shift <= 0) {
    411                 /* do nothing */
    412         } else  if (shift >= 128) {
    413                 a_hi = 0;
    414                 a_lo = 0;
    415         } else if (shift >= 64) {
    416                 a_lo = a_hi >> (shift - 64);
    417                 a_hi = 0;
    418         } else {
    419                 a_lo >>= shift;
    420                 a_lo |= a_hi << (64 - shift);
    421                 a_hi >>= shift;
    422         }
    423 
    424         *r_hi = a_hi;
    425         *r_lo = a_lo;
    426 }
    427 
    428 /**
    429  * Bitwise AND on 128-bit operands.
    430  *
    431  * @param a_hi High part of the first input operand.
    432  * @param a_lo Low part of the first input operand.
    433  * @param b_hi High part of the second input operand.
    434  * @param b_lo Low part of the second input operand.
    435  * @param r_hi Address to store high part of the result.
    436  * @param r_lo Address to store low part of the result.
    437  */
    438 void and128(
    439     uint64_t a_hi, uint64_t a_lo,
    440     uint64_t b_hi, uint64_t b_lo,
    441     uint64_t *r_hi, uint64_t *r_lo)
    442 {
    443         *r_hi = a_hi & b_hi;
    444         *r_lo = a_lo & b_lo;
    445 }
    446 
    447 /**
    448  * Bitwise inclusive OR on 128-bit operands.
    449  *
    450  * @param a_hi High part of the first input operand.
    451  * @param a_lo Low part of the first input operand.
    452  * @param b_hi High part of the second input operand.
    453  * @param b_lo Low part of the second input operand.
    454  * @param r_hi Address to store high part of the result.
    455  * @param r_lo Address to store low part of the result.
    456  */
    457 void or128(
    458     uint64_t a_hi, uint64_t a_lo,
    459     uint64_t b_hi, uint64_t b_lo,
    460     uint64_t *r_hi, uint64_t *r_lo)
    461 {
    462         *r_hi = a_hi | b_hi;
    463         *r_lo = a_lo | b_lo;
    464 }
    465 
    466 /**
    467  * Bitwise exclusive OR on 128-bit operands.
    468  *
    469  * @param a_hi High part of the first input operand.
    470  * @param a_lo Low part of the first input operand.
    471  * @param b_hi High part of the second input operand.
    472  * @param b_lo Low part of the second input operand.
    473  * @param r_hi Address to store high part of the result.
    474  * @param r_lo Address to store low part of the result.
    475  */
    476 void xor128(
    477     uint64_t a_hi, uint64_t a_lo,
    478     uint64_t b_hi, uint64_t b_lo,
    479     uint64_t *r_hi, uint64_t *r_lo)
    480 {
    481         *r_hi = a_hi ^ b_hi;
    482         *r_lo = a_lo ^ b_lo;
    483 }
    484 
    485 /**
    486  * Bitwise NOT on the 128-bit operand.
    487  *
    488  * @param a_hi High part of the input operand.
    489  * @param a_lo Low part of the input operand.
    490  * @param r_hi Address to store high part of the result.
    491  * @param r_lo Address to store low part of the result.
    492  */
    493 void not128(
    494     uint64_t a_hi, uint64_t a_lo,
    495         uint64_t *r_hi, uint64_t *r_lo)
    496 {
    497         *r_hi = ~a_hi;
    498         *r_lo = ~a_lo;
    499 }
    500 
    501 /**
    502  * Equality comparison of 128-bit operands.
    503  *
    504  * @param a_hi High part of the first input operand.
    505  * @param a_lo Low part of the first input operand.
    506  * @param b_hi High part of the second input operand.
    507  * @param b_lo Low part of the second input operand.
    508  * @return 1 if operands are equal, 0 otherwise.
    509  */
    510 int eq128(uint64_t a_hi, uint64_t a_lo, uint64_t b_hi, uint64_t b_lo)
    511 {
    512         return (a_hi == b_hi) && (a_lo == b_lo);
    513 }
    514 
    515 /**
    516  * Lower-or-equal comparison of 128-bit operands.
    517  *
    518  * @param a_hi High part of the first input operand.
    519  * @param a_lo Low part of the first input operand.
    520  * @param b_hi High part of the second input operand.
    521  * @param b_lo Low part of the second input operand.
    522  * @return 1 if a is lower or equal to b, 0 otherwise.
    523  */
    524 int le128(uint64_t a_hi, uint64_t a_lo, uint64_t b_hi, uint64_t b_lo)
    525 {
    526         return (a_hi < b_hi) || ((a_hi == b_hi) && (a_lo <= b_lo));
    527 }
    528 
    529 /**
    530  * Lower-than comparison of 128-bit operands.
    531  *
    532  * @param a_hi High part of the first input operand.
    533  * @param a_lo Low part of the first input operand.
    534  * @param b_hi High part of the second input operand.
    535  * @param b_lo Low part of the second input operand.
    536  * @return 1 if a is lower than b, 0 otherwise.
    537  */
    538 int lt128(uint64_t a_hi, uint64_t a_lo, uint64_t b_hi, uint64_t b_lo)
    539 {
    540         return (a_hi < b_hi) || ((a_hi == b_hi) && (a_lo < b_lo));
    541 }
    542 
    543 /**
    544  * Addition of two 128-bit unsigned integers.
    545  *
    546  * @param a_hi High part of the first input operand.
    547  * @param a_lo Low part of the first input operand.
    548  * @param b_hi High part of the second input operand.
    549  * @param b_lo Low part of the second input operand.
    550  * @param r_hi Address to store high part of the result.
    551  * @param r_lo Address to store low part of the result.
    552  */
    553 void add128(uint64_t a_hi, uint64_t a_lo,
    554     uint64_t b_hi, uint64_t b_lo,
    555     uint64_t *r_hi, uint64_t *r_lo)
    556 {
    557         uint64_t low = a_lo + b_lo;
    558         *r_lo = low;
    559         /* detect overflow to add a carry */
    560         *r_hi = a_hi + b_hi + (low < a_lo);
    561 }
    562 
    563 /**
    564  * Substraction of two 128-bit unsigned integers.
    565  *
    566  * @param a_hi High part of the first input operand.
    567  * @param a_lo Low part of the first input operand.
    568  * @param b_hi High part of the second input operand.
    569  * @param b_lo Low part of the second input operand.
    570  * @param r_hi Address to store high part of the result.
    571  * @param r_lo Address to store low part of the result.
    572  */
    573 void sub128(uint64_t a_hi, uint64_t a_lo,
    574     uint64_t b_hi, uint64_t b_lo,
    575     uint64_t *r_hi, uint64_t *r_lo)
    576 {
    577         *r_lo = a_lo - b_lo;
    578         /* detect underflow to substract a carry */
    579         *r_hi = a_hi - b_hi - (a_lo < b_lo);
    580 }
    581 
    582 /**
    583  * Multiplication of two 64-bit unsigned integers.
    584  *
    585  * @param a First input operand.
    586  * @param b Second input operand.
    587  * @param r_hi Address to store high part of the result.
    588  * @param r_lo Address to store low part of the result.
    589  */
    590 void mul64(uint64_t a, uint64_t b, uint64_t *r_hi, uint64_t *r_lo)
    591 {
    592         uint64_t low, high, middle1, middle2;
    593         uint32_t alow, blow;
    594 
    595         alow = a & 0xFFFFFFFF;
    596         blow = b & 0xFFFFFFFF;
    597 
    598         a >>= 32;
    599         b >>= 32;
    600 
    601         low = ((uint64_t) alow) * blow;
    602         middle1 = a * blow;
    603         middle2 = alow * b;
    604         high = a * b;
    605 
    606         middle1 += middle2;
    607         high += (((uint64_t) (middle1 < middle2)) << 32) + (middle1 >> 32);
    608         middle1 <<= 32;
    609         low += middle1;
    610         high += (low < middle1);
    611         *r_lo = low;
    612         *r_hi = high;
    613 }
    614 
    615 /**
    616  * Multiplication of two 128-bit unsigned integers.
    617  *
    618  * @param a_hi High part of the first input operand.
    619  * @param a_lo Low part of the first input operand.
    620  * @param b_hi High part of the second input operand.
    621  * @param b_lo Low part of the second input operand.
    622  * @param r_hihi Address to store first (highest) quarter of the result.
    623  * @param r_hilo Address to store second quarter of the result.
    624  * @param r_lohi Address to store third quarter of the result.
    625  * @param r_lolo Address to store fourth (lowest) quarter of the result.
    626  */
    627 void mul128(uint64_t a_hi, uint64_t a_lo, uint64_t b_hi, uint64_t b_lo,
    628     uint64_t *r_hihi, uint64_t *r_hilo, uint64_t *r_lohi, uint64_t *r_lolo)
    629 {
    630         uint64_t hihi, hilo, lohi, lolo;
    631         uint64_t tmp1, tmp2;
    632 
    633         mul64(a_lo, b_lo, &lohi, &lolo);
    634         mul64(a_lo, b_hi, &hilo, &tmp2);
    635         add128(hilo, tmp2, 0x0ll, lohi, &hilo, &lohi);
    636         mul64(a_hi, b_hi, &hihi, &tmp1);
    637         add128(hihi, tmp1, 0x0ll, hilo, &hihi, &hilo);
    638         mul64(a_hi, b_lo, &tmp1, &tmp2);
    639         add128(tmp1, tmp2, 0x0ll, lohi, &tmp1, &lohi);
    640         add128(hihi, hilo, 0x0ll, tmp1, &hihi, &hilo);
    641 
    642         *r_hihi = hihi;
    643         *r_hilo = hilo;
    644         *r_lohi = lohi;
    645         *r_lolo = lolo;
    646 }
    647 
    648 /**
    649  * Estimate the quotient of 128-bit unsigned divident and 64-bit unsigned
    650  * divisor.
    651  *
    652  * @param a_hi High part of the divident.
    653  * @param a_lo Low part of the divident.
    654  * @param b Divisor.
    655  * @return Quotient approximation.
    656  */
    657 uint64_t div128est(uint64_t a_hi, uint64_t a_lo, uint64_t b)
    658 {
    659         uint64_t b_hi, b_lo;
    660         uint64_t rem_hi, rem_lo;
    661         uint64_t tmp_hi, tmp_lo;
    662         uint64_t result;
    663 
    664         if (b <= a_hi) {
    665                 return 0xFFFFFFFFFFFFFFFFull;
    666         }
    667 
    668         b_hi = b >> 32;
    669         result = ((b_hi << 32) <= a_hi) ? (0xFFFFFFFFull << 32) : (a_hi / b_hi) << 32;
    670         mul64(b, result, &tmp_hi, &tmp_lo);
    671         sub128(a_hi, a_lo, tmp_hi, tmp_lo, &rem_hi, &rem_lo);
    672        
    673         while ((int64_t) rem_hi < 0) {
    674                 result -= 0x1ll << 32;
    675                 b_lo = b << 32;
    676                 add128(rem_hi, rem_lo, b_hi, b_lo, &rem_hi, &rem_lo);
    677         }
    678 
    679         rem_hi = (rem_hi << 32) | (rem_lo >> 32);
    680         if ((b_hi << 32) <= rem_hi) {
    681                 result |= 0xFFFFFFFF;
    682         } else {
    683                 result |= rem_hi / b_hi;
    684         }
    685 
    686         return result;
     207                return;
     208        }
     209
     210        return;
    687211}
    688212
  • uspace/lib/softfloat/generic/comparison.c

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Comparison functions.
     32/** @file
    3433 */
    3534
    3635#include <sftypes.h>
    3736#include <comparison.h>
    38 #include <common.h>
    3937
    40 /**
    41  * Determines whether the given float represents NaN (either signalling NaN or
    42  * quiet NaN).
    43  *
    44  * @param f Single-precision float.
    45  * @return 1 if float is NaN, 0 otherwise.
    46  */
     38/* NaN : exp = 0xff and nonzero fraction */
    4739int isFloat32NaN(float32 f)
    4840{
    49         /* NaN : exp = 0xff and nonzero fraction */
    5041        return ((f.parts.exp == 0xFF) && (f.parts.fraction));
    5142}
    5243
    53 /**
    54  * Determines whether the given float represents NaN (either signalling NaN or
    55  * quiet NaN).
    56  *
    57  * @param d Double-precision float.
    58  * @return 1 if float is NaN, 0 otherwise.
    59  */
     44/* NaN : exp = 0x7ff and nonzero fraction */
    6045int isFloat64NaN(float64 d)
    6146{
    62         /* NaN : exp = 0x7ff and nonzero fraction */
    6347        return ((d.parts.exp == 0x7FF) && (d.parts.fraction));
    6448}
    6549
    66 /**
    67  * Determines whether the given float represents NaN (either signalling NaN or
    68  * quiet NaN).
    69  *
    70  * @param ld Quadruple-precision float.
    71  * @return 1 if float is NaN, 0 otherwise.
    72  */
    73 int isFloat128NaN(float128 ld)
     50/* SigNaN : exp = 0xff fraction = 0xxxxx..x (binary), where at least one x is nonzero */
     51int isFloat32SigNaN(float32 f)
    7452{
    75         /* NaN : exp = 0x7fff and nonzero fraction */
    76         return ((ld.parts.exp == 0x7FF) &&
    77             !eq128(ld.parts.frac_hi, ld.parts.frac_lo, 0x0ll, 0x0ll));
     53        return ((f.parts.exp == 0xFF) && (f.parts.fraction < 0x400000) && (f.parts.fraction));
    7854}
    7955
    80 /**
    81  * Determines whether the given float represents signalling NaN.
    82  *
    83  * @param f Single-precision float.
    84  * @return 1 if float is signalling NaN, 0 otherwise.
    85  */
    86 int isFloat32SigNaN(float32 f)
     56/* SigNaN : exp = 0x7ff fraction = 0xxxxx..x (binary), where at least one x is nonzero */
     57int isFloat64SigNaN(float64 d)
    8758{
    88         /* SigNaN : exp = 0xff and fraction = 0xxxxx..x (binary),
    89          * where at least one x is nonzero */
    90         return ((f.parts.exp == 0xFF) &&
    91             (f.parts.fraction < 0x400000) && (f.parts.fraction));
     59        return ((d.parts.exp == 0x7FF) && (d.parts.fraction) && (d.parts.fraction < 0x8000000000000ll));
    9260}
    9361
    94 /**
    95  * Determines whether the given float represents signalling NaN.
    96  *
    97  * @param d Double-precision float.
    98  * @return 1 if float is signalling NaN, 0 otherwise.
    99  */
    100 int isFloat64SigNaN(float64 d)
    101 {
    102         /* SigNaN : exp = 0x7ff and fraction = 0xxxxx..x (binary),
    103          * where at least one x is nonzero */
    104         return ((d.parts.exp == 0x7FF) &&
    105             (d.parts.fraction) && (d.parts.fraction < 0x8000000000000ll));
    106 }
    107 
    108 /**
    109  * Determines whether the given float represents signalling NaN.
    110  *
    111  * @param ld Quadruple-precision float.
    112  * @return 1 if float is signalling NaN, 0 otherwise.
    113  */
    114 int isFloat128SigNaN(float128 ld)
    115 {
    116         /* SigNaN : exp = 0x7fff and fraction = 0xxxxx..x (binary),
    117          * where at least one x is nonzero */
    118         return ((ld.parts.exp == 0x7FFF) &&
    119             (ld.parts.frac_hi || ld.parts.frac_lo) &&
    120             lt128(ld.parts.frac_hi, ld.parts.frac_lo, 0x800000000000ll, 0x0ll));
    121 
    122 }
    123 
    124 /**
    125  * Determines whether the given float represents positive or negative infinity.
    126  *
    127  * @param f Single-precision float.
    128  * @return 1 if float is infinite, 0 otherwise.
    129  */
    13062int isFloat32Infinity(float32 f)
    13163{
    132         /* NaN : exp = 0x7ff and zero fraction */
    13364        return ((f.parts.exp == 0xFF) && (f.parts.fraction == 0x0));
    13465}
    13566
    136 /**
    137  * Determines whether the given float represents positive or negative infinity.
    138  *
    139  * @param d Double-precision float.
    140  * @return 1 if float is infinite, 0 otherwise.
    141  */
    14267int isFloat64Infinity(float64 d)
    14368{
    144         /* NaN : exp = 0x7ff and zero fraction */
    14569        return ((d.parts.exp == 0x7FF) && (d.parts.fraction == 0x0));
    14670}
    14771
    148 /**
    149  * Determines whether the given float represents positive or negative infinity.
    150  *
    151  * @param ld Quadruple-precision float.
    152  * @return 1 if float is infinite, 0 otherwise.
    153  */
    154 int isFloat128Infinity(float128 ld)
    155 {
    156         /* NaN : exp = 0x7fff and zero fraction */
    157         return ((ld.parts.exp == 0x7FFF) &&
    158             eq128(ld.parts.frac_hi, ld.parts.frac_lo, 0x0ll, 0x0ll));
    159 }
    160 
    161 /**
    162  * Determines whether the given float represents positive or negative zero.
    163  *
    164  * @param f Single-precision float.
    165  * @return 1 if float is zero, 0 otherwise.
    166  */
    16772int isFloat32Zero(float32 f)
    16873{
     
    17075}
    17176
    172 /**
    173  * Determines whether the given float represents positive or negative zero.
    174  *
    175  * @param d Double-precision float.
    176  * @return 1 if float is zero, 0 otherwise.
    177  */
    17877int isFloat64Zero(float64 d)
    17978{
     
    18281
    18382/**
    184  * Determines whether the given float represents positive or negative zero.
    185  *
    186  * @param ld Quadruple-precision float.
    187  * @return 1 if float is zero, 0 otherwise.
    188  */
    189 int isFloat128Zero(float128 ld)
    190 {
    191         uint64_t tmp_hi;
    192         uint64_t tmp_lo;
    193 
    194         and128(ld.binary.hi, ld.binary.lo,
    195             0x7FFFFFFFFFFFFFFFll, 0xFFFFFFFFFFFFFFFFll, &tmp_hi, &tmp_lo);
    196 
    197         return eq128(tmp_hi, tmp_lo, 0x0ll, 0x0ll);
    198 }
    199 
    200 /**
    201  * Determine whether two floats are equal. NaNs are not recognized.
    202  *
    203  * @a First single-precision operand.
    204  * @b Second single-precision operand.
    205  * @return 1 if both floats are equal, 0 otherwise.
     83 * @return 1 if both floats are equal - but NaNs are not recognized
    20684 */
    20785int isFloat32eq(float32 a, float32 b)
    20886{
    20987        /* a equals to b or both are zeros (with any sign) */
    210         return ((a.binary == b.binary) ||
    211             (((a.binary | b.binary) & 0x7FFFFFFF) == 0));
     88        return ((a.binary==b.binary) || (((a.binary | b.binary) & 0x7FFFFFFF) == 0));
    21289}
    21390
    21491/**
    215  * Determine whether two floats are equal. NaNs are not recognized.
    216  *
    217  * @a First double-precision operand.
    218  * @b Second double-precision operand.
    219  * @return 1 if both floats are equal, 0 otherwise.
    220  */
    221 int isFloat64eq(float64 a, float64 b)
    222 {
    223         /* a equals to b or both are zeros (with any sign) */
    224         return ((a.binary == b.binary) ||
    225             (((a.binary | b.binary) & 0x7FFFFFFFFFFFFFFFll) == 0));
    226 }
    227 
    228 /**
    229  * Determine whether two floats are equal. NaNs are not recognized.
    230  *
    231  * @a First quadruple-precision operand.
    232  * @b Second quadruple-precision operand.
    233  * @return 1 if both floats are equal, 0 otherwise.
    234  */
    235 int isFloat128eq(float128 a, float128 b)
    236 {
    237         uint64_t tmp_hi;
    238         uint64_t tmp_lo;
    239 
    240         /* both are zeros (with any sign) */
    241         or128(a.binary.hi, a.binary.lo,
    242             b.binary.hi, b.binary.lo, &tmp_hi, &tmp_lo);
    243         and128(tmp_hi, tmp_lo,
    244             0x7FFFFFFFFFFFFFFFll, 0xFFFFFFFFFFFFFFFFll, &tmp_hi, &tmp_lo);
    245         int both_zero = eq128(tmp_hi, tmp_lo, 0x0ll, 0x0ll);
    246        
    247         /* a equals to b */
    248         int are_equal = eq128(a.binary.hi, a.binary.lo, b.binary.hi, b.binary.lo);
    249 
    250         return are_equal || both_zero;
    251 }
    252 
    253 /**
    254  * Lower-than comparison between two floats. NaNs are not recognized.
    255  *
    256  * @a First single-precision operand.
    257  * @b Second single-precision operand.
    258  * @return 1 if a is lower than b, 0 otherwise.
     92 * @return 1 if a < b - but NaNs are not recognized
    25993 */
    26094int isFloat32lt(float32 a, float32 b)
    26195{
    262         if (((a.binary | b.binary) & 0x7FFFFFFF) == 0) {
     96        if (((a.binary | b.binary) & 0x7FFFFFFF) == 0)
    26397                return 0; /* +- zeroes */
    264         }
    26598       
    266         if ((a.parts.sign) && (b.parts.sign)) {
     99        if ((a.parts.sign) && (b.parts.sign))
    267100                /* if both are negative, smaller is that with greater binary value */
    268101                return (a.binary > b.binary);
    269         }
    270102       
    271         /* lets negate signs - now will be positive numbers allways bigger than
    272          * negative (first bit will be set for unsigned integer comparison) */
     103        /* lets negate signs - now will be positive numbers allways bigger than negative (first bit will be set for unsigned integer comparison) */
    273104        a.parts.sign = !a.parts.sign;
    274105        b.parts.sign = !b.parts.sign;
     
    277108
    278109/**
    279  * Lower-than comparison between two floats. NaNs are not recognized.
    280  *
    281  * @a First double-precision operand.
    282  * @b Second double-precision operand.
    283  * @return 1 if a is lower than b, 0 otherwise.
    284  */
    285 int isFloat64lt(float64 a, float64 b)
    286 {
    287         if (((a.binary | b.binary) & 0x7FFFFFFFFFFFFFFFll) == 0) {
    288                 return 0; /* +- zeroes */
    289         }
    290 
    291         if ((a.parts.sign) && (b.parts.sign)) {
    292                 /* if both are negative, smaller is that with greater binary value */
    293                 return (a.binary > b.binary);
    294         }
    295 
    296         /* lets negate signs - now will be positive numbers allways bigger than
    297          * negative (first bit will be set for unsigned integer comparison) */
    298         a.parts.sign = !a.parts.sign;
    299         b.parts.sign = !b.parts.sign;
    300         return (a.binary < b.binary);
    301 }
    302 
    303 /**
    304  * Lower-than comparison between two floats. NaNs are not recognized.
    305  *
    306  * @a First quadruple-precision operand.
    307  * @b Second quadruple-precision operand.
    308  * @return 1 if a is lower than b, 0 otherwise.
    309  */
    310 int isFloat128lt(float128 a, float128 b)
    311 {
    312         uint64_t tmp_hi;
    313         uint64_t tmp_lo;
    314 
    315         or128(a.binary.hi, a.binary.lo,
    316             b.binary.hi, b.binary.lo, &tmp_hi, &tmp_lo);
    317         and128(tmp_hi, tmp_lo,
    318             0x7FFFFFFFFFFFFFFFll, 0xFFFFFFFFFFFFFFFFll, &tmp_hi, &tmp_lo);
    319         if (eq128(tmp_hi, tmp_lo, 0x0ll, 0x0ll)) {
    320                 return 0; /* +- zeroes */
    321         }
    322 
    323         if ((a.parts.sign) && (b.parts.sign)) {
    324                 /* if both are negative, smaller is that with greater binary value */
    325                 return lt128(b.binary.hi, b.binary.lo, a.binary.hi, a.binary.lo);
    326         }
    327 
    328         /* lets negate signs - now will be positive numbers allways bigger than
    329          * negative (first bit will be set for unsigned integer comparison) */
    330         a.parts.sign = !a.parts.sign;
    331         b.parts.sign = !b.parts.sign;
    332         return lt128(a.binary.hi, a.binary.lo, b.binary.hi, b.binary.lo);
    333 }
    334 
    335 /**
    336  * Greater-than comparison between two floats. NaNs are not recognized.
    337  *
    338  * @a First single-precision operand.
    339  * @b Second single-precision operand.
    340  * @return 1 if a is greater than b, 0 otherwise.
     110 * @return 1 if a > b - but NaNs are not recognized
    341111 */
    342112int isFloat32gt(float32 a, float32 b)
    343113{
    344         if (((a.binary | b.binary) & 0x7FFFFFFF) == 0) {
     114        if (((a.binary | b.binary) & 0x7FFFFFFF) == 0)
    345115                return 0; /* zeroes are equal with any sign */
    346         }
    347116       
    348         if ((a.parts.sign) && (b.parts.sign)) {
     117        if ((a.parts.sign) && (b.parts.sign))
    349118                /* if both are negative, greater is that with smaller binary value */
    350119                return (a.binary < b.binary);
    351         }
    352120       
    353         /* lets negate signs - now will be positive numbers allways bigger than
    354          *  negative (first bit will be set for unsigned integer comparison) */
     121        /* lets negate signs - now will be positive numbers allways bigger than negative (first bit will be set for unsigned integer comparison) */
    355122        a.parts.sign = !a.parts.sign;
    356123        b.parts.sign = !b.parts.sign;
     
    358125}
    359126
    360 /**
    361  * Greater-than comparison between two floats. NaNs are not recognized.
    362  *
    363  * @a First double-precision operand.
    364  * @b Second double-precision operand.
    365  * @return 1 if a is greater than b, 0 otherwise.
    366  */
    367 int isFloat64gt(float64 a, float64 b)
    368 {
    369         if (((a.binary | b.binary) & 0x7FFFFFFFFFFFFFFFll) == 0) {
    370                 return 0; /* zeroes are equal with any sign */
    371         }
    372 
    373         if ((a.parts.sign) && (b.parts.sign)) {
    374                 /* if both are negative, greater is that with smaller binary value */
    375                 return (a.binary < b.binary);
    376         }
    377 
    378         /* lets negate signs - now will be positive numbers allways bigger than
    379          *  negative (first bit will be set for unsigned integer comparison) */
    380         a.parts.sign = !a.parts.sign;
    381         b.parts.sign = !b.parts.sign;
    382         return (a.binary > b.binary);
    383 }
    384 
    385 /**
    386  * Greater-than comparison between two floats. NaNs are not recognized.
    387  *
    388  * @a First quadruple-precision operand.
    389  * @b Second quadruple-precision operand.
    390  * @return 1 if a is greater than b, 0 otherwise.
    391  */
    392 int isFloat128gt(float128 a, float128 b)
    393 {
    394         uint64_t tmp_hi;
    395         uint64_t tmp_lo;
    396 
    397         or128(a.binary.hi, a.binary.lo,
    398             b.binary.hi, b.binary.lo, &tmp_hi, &tmp_lo);
    399         and128(tmp_hi, tmp_lo,
    400             0x7FFFFFFFFFFFFFFFll, 0xFFFFFFFFFFFFFFFFll, &tmp_hi, &tmp_lo);
    401         if (eq128(tmp_hi, tmp_lo, 0x0ll, 0x0ll)) {
    402                 return 0; /* zeroes are equal with any sign */
    403         }
    404 
    405         if ((a.parts.sign) && (b.parts.sign)) {
    406                 /* if both are negative, greater is that with smaller binary value */
    407                 return lt128(a.binary.hi, a.binary.lo, b.binary.hi, b.binary.lo);
    408         }
    409 
    410         /* lets negate signs - now will be positive numbers allways bigger than
    411          *  negative (first bit will be set for unsigned integer comparison) */
    412         a.parts.sign = !a.parts.sign;
    413         b.parts.sign = !b.parts.sign;
    414         return lt128(b.binary.hi, b.binary.lo, a.binary.hi, a.binary.lo);
    415 }
    416 
    417127/** @}
    418128 */
  • uspace/lib/softfloat/generic/conversion.c

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Conversion of precision and conversion between integers and floats.
    34  */
    35 
    36 #include <sftypes.h>
    37 #include <conversion.h>
    38 #include <comparison.h>
    39 #include <common.h>
     32/** @file
     33 */
     34
     35#include "sftypes.h"
     36#include "conversion.h"
     37#include "comparison.h"
     38#include "common.h"
    4039
    4140float64 convertFloat32ToFloat64(float32 a)
     
    4948       
    5049        if ((isFloat32Infinity(a)) || (isFloat32NaN(a))) {
    51                 result.parts.exp = FLOAT64_MAX_EXPONENT;
     50                result.parts.exp = 0x7FF;
    5251                /* TODO; check if its correct for SigNaNs*/
    5352                return result;
    54         }
     53        };
    5554       
    5655        result.parts.exp = a.parts.exp + ((int) FLOAT64_BIAS - FLOAT32_BIAS);
     
    5857                /* normalize denormalized numbers */
    5958
    60                 if (result.parts.fraction == 0) { /* fix zero */
    61                         result.parts.exp = 0;
     59                if (result.parts.fraction == 0ll) { /* fix zero */
     60                        result.parts.exp = 0ll;
    6261                        return result;
    6362                }
     
    6564                frac = result.parts.fraction;
    6665               
    67                 while (!(frac & FLOAT64_HIDDEN_BIT_MASK)) {
     66                while (!(frac & (0x10000000000000ll))) {
    6867                        frac <<= 1;
    6968                        --result.parts.exp;
    70                 }
     69                };
    7170               
    7271                ++result.parts.exp;
    7372                result.parts.fraction = frac;
    74         }
     73        };
    7574       
    7675        return result;
    77 }
    78 
    79 float128 convertFloat32ToFloat128(float32 a)
    80 {
    81         float128 result;
    82         uint64_t frac_hi, frac_lo;
    83         uint64_t tmp_hi, tmp_lo;
    84 
    85         result.parts.sign = a.parts.sign;
    86         result.parts.frac_hi = 0;
    87         result.parts.frac_lo = a.parts.fraction;
    88         lshift128(result.parts.frac_hi, result.parts.frac_lo,
    89             (FLOAT128_FRACTION_SIZE - FLOAT32_FRACTION_SIZE),
    90             &frac_hi, &frac_lo);
    91         result.parts.frac_hi = frac_hi;
    92         result.parts.frac_lo = frac_lo;
    93 
    94         if ((isFloat32Infinity(a)) || (isFloat32NaN(a))) {
    95                 result.parts.exp = FLOAT128_MAX_EXPONENT;
    96                 /* TODO; check if its correct for SigNaNs*/
    97                 return result;
    98         }
    99 
    100         result.parts.exp = a.parts.exp + ((int) FLOAT128_BIAS - FLOAT32_BIAS);
    101         if (a.parts.exp == 0) {
    102                 /* normalize denormalized numbers */
    103 
    104                 if (eq128(result.parts.frac_hi,
    105                     result.parts.frac_lo, 0x0ll, 0x0ll)) { /* fix zero */
    106                         result.parts.exp = 0;
    107                         return result;
    108                 }
    109 
    110                 frac_hi = result.parts.frac_hi;
    111                 frac_lo = result.parts.frac_lo;
    112 
    113                 and128(frac_hi, frac_lo,
    114                     FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    115                     &tmp_hi, &tmp_lo);
    116                 while (!lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    117                         lshift128(frac_hi, frac_lo, 1, &frac_hi, &frac_lo);
    118                         --result.parts.exp;
    119                 }
    120 
    121                 ++result.parts.exp;
    122                 result.parts.frac_hi = frac_hi;
    123                 result.parts.frac_lo = frac_lo;
    124         }
    125 
    126         return result;
    127 }
    128 
    129 float128 convertFloat64ToFloat128(float64 a)
    130 {
    131         float128 result;
    132         uint64_t frac_hi, frac_lo;
    133         uint64_t tmp_hi, tmp_lo;
    134 
    135         result.parts.sign = a.parts.sign;
    136         result.parts.frac_hi = 0;
    137         result.parts.frac_lo = a.parts.fraction;
    138         lshift128(result.parts.frac_hi, result.parts.frac_lo,
    139             (FLOAT128_FRACTION_SIZE - FLOAT64_FRACTION_SIZE),
    140             &frac_hi, &frac_lo);
    141         result.parts.frac_hi = frac_hi;
    142         result.parts.frac_lo = frac_lo;
    143 
    144         if ((isFloat64Infinity(a)) || (isFloat64NaN(a))) {
    145                 result.parts.exp = FLOAT128_MAX_EXPONENT;
    146                 /* TODO; check if its correct for SigNaNs*/
    147                 return result;
    148         }
    149 
    150         result.parts.exp = a.parts.exp + ((int) FLOAT128_BIAS - FLOAT64_BIAS);
    151         if (a.parts.exp == 0) {
    152                 /* normalize denormalized numbers */
    153 
    154                 if (eq128(result.parts.frac_hi,
    155                     result.parts.frac_lo, 0x0ll, 0x0ll)) { /* fix zero */
    156                         result.parts.exp = 0;
    157                         return result;
    158                 }
    159 
    160                 frac_hi = result.parts.frac_hi;
    161                 frac_lo = result.parts.frac_lo;
    162 
    163                 and128(frac_hi, frac_lo,
    164                     FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    165                     &tmp_hi, &tmp_lo);
    166                 while (!lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    167                         lshift128(frac_hi, frac_lo, 1, &frac_hi, &frac_lo);
    168                         --result.parts.exp;
    169                 }
    170 
    171                 ++result.parts.exp;
    172                 result.parts.frac_hi = frac_hi;
    173                 result.parts.frac_lo = frac_lo;
    174         }
    175 
    176         return result;
     76       
    17777}
    17878
     
    18686       
    18787        if (isFloat64NaN(a)) {
    188                 result.parts.exp = FLOAT32_MAX_EXPONENT;
     88               
     89                result.parts.exp = 0xFF;
    18990               
    19091                if (isFloat64SigNaN(a)) {
    191                         /* set first bit of fraction nonzero */
    192                         result.parts.fraction = FLOAT32_HIDDEN_BIT_MASK >> 1;
     92                        result.parts.fraction = 0x400000; /* set first bit of fraction nonzero */
    19393                        return result;
    19494                }
    195 
    196                 /* fraction nonzero but its first bit is zero */
    197                 result.parts.fraction = 0x1;
    198                 return result;
    199         }
     95       
     96                result.parts.fraction = 0x1; /* fraction nonzero but its first bit is zero */
     97                return result;
     98        };
    20099
    201100        if (isFloat64Infinity(a)) {
    202101                result.parts.fraction = 0;
    203                 result.parts.exp = FLOAT32_MAX_EXPONENT;
    204                 return result;
    205         }
    206 
    207         exp = (int) a.parts.exp - FLOAT64_BIAS + FLOAT32_BIAS;
    208        
    209         if (exp >= FLOAT32_MAX_EXPONENT) {
    210                 /* FIXME: overflow */
     102                result.parts.exp = 0xFF;
     103                return result;
     104        };
     105
     106        exp = (int)a.parts.exp - FLOAT64_BIAS + FLOAT32_BIAS;
     107       
     108        if (exp >= 0xFF) {
     109                /*FIXME: overflow*/
    211110                result.parts.fraction = 0;
    212                 result.parts.exp = FLOAT32_MAX_EXPONENT;
    213                 return result;
    214         } else if (exp <= 0) {
     111                result.parts.exp = 0xFF;
     112                return result;
     113               
     114        } else if (exp <= 0 ) {
     115               
    215116                /* underflow or denormalized */
    216117               
     
    218119               
    219120                exp *= -1;     
    220                 if (exp > FLOAT32_FRACTION_SIZE) {
     121                if (exp > FLOAT32_FRACTION_SIZE ) {
    221122                        /* FIXME: underflow */
    222123                        result.parts.fraction = 0;
    223124                        return result;
    224                 }
     125                };
    225126               
    226127                /* denormalized */
    227128               
    228129                frac = a.parts.fraction;
    229                 frac |= FLOAT64_HIDDEN_BIT_MASK; /* denormalize and set hidden bit */
     130                frac |= 0x10000000000000ll; /* denormalize and set hidden bit */
    230131               
    231132                frac >>= (FLOAT64_FRACTION_SIZE - FLOAT32_FRACTION_SIZE + 1);
     
    234135                        --exp;
    235136                        frac >>= 1;
    236                 }
     137                };
    237138                result.parts.fraction = frac;
    238139               
    239140                return result;
    240         }
     141        };
    241142
    242143        result.parts.exp = exp;
    243         result.parts.fraction =
    244             a.parts.fraction >> (FLOAT64_FRACTION_SIZE - FLOAT32_FRACTION_SIZE);
     144        result.parts.fraction = a.parts.fraction >> (FLOAT64_FRACTION_SIZE - FLOAT32_FRACTION_SIZE);
    245145        return result;
    246146}
    247147
    248 float32 convertFloat128ToFloat32(float128 a)
    249 {
    250         float32 result;
    251         int32_t exp;
    252         uint64_t frac_hi, frac_lo;
    253 
    254         result.parts.sign = a.parts.sign;
    255 
    256         if (isFloat128NaN(a)) {
    257                 result.parts.exp = FLOAT32_MAX_EXPONENT;
    258 
    259                 if (isFloat128SigNaN(a)) {
    260                         /* set first bit of fraction nonzero */
    261                         result.parts.fraction = FLOAT32_HIDDEN_BIT_MASK >> 1;
    262                         return result;
    263                 }
    264 
    265                 /* fraction nonzero but its first bit is zero */
    266                 result.parts.fraction = 0x1;
    267                 return result;
    268         }
    269 
    270         if (isFloat128Infinity(a)) {
    271                 result.parts.fraction = 0;
    272                 result.parts.exp = FLOAT32_MAX_EXPONENT;
    273                 return result;
    274         }
    275 
    276         exp = (int) a.parts.exp - FLOAT128_BIAS + FLOAT32_BIAS;
    277 
    278         if (exp >= FLOAT32_MAX_EXPONENT) {
    279                 /* FIXME: overflow */
    280                 result.parts.fraction = 0;
    281                 result.parts.exp = FLOAT32_MAX_EXPONENT;
    282                 return result;
    283         } else if (exp <= 0) {
    284                 /* underflow or denormalized */
    285 
    286                 result.parts.exp = 0;
    287 
    288                 exp *= -1;
    289                 if (exp > FLOAT32_FRACTION_SIZE) {
    290                         /* FIXME: underflow */
    291                         result.parts.fraction = 0;
    292                         return result;
    293                 }
    294 
    295                 /* denormalized */
    296 
    297                 frac_hi = a.parts.frac_hi;
    298                 frac_lo = a.parts.frac_lo;
    299 
    300                 /* denormalize and set hidden bit */
    301                 frac_hi |= FLOAT128_HIDDEN_BIT_MASK_HI;
    302 
    303                 rshift128(frac_hi, frac_lo,
    304                     (FLOAT128_FRACTION_SIZE - FLOAT32_FRACTION_SIZE + 1),
    305                     &frac_hi, &frac_lo);
    306 
    307                 while (exp > 0) {
    308                         --exp;
    309                         rshift128(frac_hi, frac_lo, 1, &frac_hi, &frac_lo);
    310                 }
    311                 result.parts.fraction = frac_lo;
    312 
    313                 return result;
    314         }
    315 
    316         result.parts.exp = exp;
    317         frac_hi = a.parts.frac_hi;
    318         frac_lo = a.parts.frac_lo;
    319         rshift128(frac_hi, frac_lo,
    320             (FLOAT128_FRACTION_SIZE - FLOAT32_FRACTION_SIZE + 1),
    321             &frac_hi, &frac_lo);
    322         result.parts.fraction = frac_lo;
    323         return result;
    324 }
    325 
    326 float64 convertFloat128ToFloat64(float128 a)
    327 {
    328         float64 result;
    329         int32_t exp;
    330         uint64_t frac_hi, frac_lo;
    331 
    332         result.parts.sign = a.parts.sign;
    333 
    334         if (isFloat128NaN(a)) {
    335                 result.parts.exp = FLOAT64_MAX_EXPONENT;
    336 
    337                 if (isFloat128SigNaN(a)) {
    338                         /* set first bit of fraction nonzero */
    339                         result.parts.fraction = FLOAT64_HIDDEN_BIT_MASK >> 1;
    340                         return result;
    341                 }
    342 
    343                 /* fraction nonzero but its first bit is zero */
    344                 result.parts.fraction = 0x1;
    345                 return result;
    346         }
    347 
    348         if (isFloat128Infinity(a)) {
    349                 result.parts.fraction = 0;
    350                 result.parts.exp = FLOAT64_MAX_EXPONENT;
    351                 return result;
    352         }
    353 
    354         exp = (int) a.parts.exp - FLOAT128_BIAS + FLOAT64_BIAS;
    355 
    356         if (exp >= FLOAT64_MAX_EXPONENT) {
    357                 /* FIXME: overflow */
    358                 result.parts.fraction = 0;
    359                 result.parts.exp = FLOAT64_MAX_EXPONENT;
    360                 return result;
    361         } else if (exp <= 0) {
    362                 /* underflow or denormalized */
    363 
    364                 result.parts.exp = 0;
    365 
    366                 exp *= -1;
    367                 if (exp > FLOAT64_FRACTION_SIZE) {
    368                         /* FIXME: underflow */
    369                         result.parts.fraction = 0;
    370                         return result;
    371                 }
    372 
    373                 /* denormalized */
    374 
    375                 frac_hi = a.parts.frac_hi;
    376                 frac_lo = a.parts.frac_lo;
    377 
    378                 /* denormalize and set hidden bit */
    379                 frac_hi |= FLOAT128_HIDDEN_BIT_MASK_HI;
    380 
    381                 rshift128(frac_hi, frac_lo,
    382                     (FLOAT128_FRACTION_SIZE - FLOAT64_FRACTION_SIZE + 1),
    383                     &frac_hi, &frac_lo);
    384 
    385                 while (exp > 0) {
    386                         --exp;
    387                         rshift128(frac_hi, frac_lo, 1, &frac_hi, &frac_lo);
    388                 }
    389                 result.parts.fraction = frac_lo;
    390 
    391                 return result;
    392         }
    393 
    394         result.parts.exp = exp;
    395         frac_hi = a.parts.frac_hi;
    396         frac_lo = a.parts.frac_lo;
    397         rshift128(frac_hi, frac_lo,
    398             (FLOAT128_FRACTION_SIZE - FLOAT64_FRACTION_SIZE + 1),
    399             &frac_hi, &frac_lo);
    400         result.parts.fraction = frac_lo;
    401         return result;
    402 }
    403 
    404 
    405 /**
    406  * Helping procedure for converting float32 to uint32.
    407  *
    408  * @param a Floating point number in normalized form
    409  *     (NaNs or Inf are not checked).
    410  * @return Converted unsigned integer.
     148
     149/** Helping procedure for converting float32 to uint32
     150 * @param a floating point number in normalized form (no NaNs or Inf are checked )
     151 * @return unsigned integer
    411152 */
    412153static uint32_t _float32_to_uint32_helper(float32 a)
     
    415156       
    416157        if (a.parts.exp < FLOAT32_BIAS) {
    417                 /* TODO: rounding */
     158                /*TODO: rounding*/
    418159                return 0;
    419160        }
     
    434175}
    435176
    436 /*
     177/* Convert float to unsigned int32
    437178 * FIXME: Im not sure what to return if overflow/underflow happens
    438179 *      - now its the biggest or the smallest int
     
    453194}
    454195
    455 /*
     196/* Convert float to signed int32
    456197 * FIXME: Im not sure what to return if overflow/underflow happens
    457198 *      - now its the biggest or the smallest int
     
    473214
    474215
    475 /**
    476  * Helping procedure for converting float32 to uint64.
    477  *
    478  * @param a Floating point number in normalized form
    479  *     (NaNs or Inf are not checked).
    480  * @return Converted unsigned integer.
     216/** Helping procedure for converting float64 to uint64
     217 * @param a floating point number in normalized form (no NaNs or Inf are checked )
     218 * @return unsigned integer
     219 */
     220static uint64_t _float64_to_uint64_helper(float64 a)
     221{
     222        uint64_t frac;
     223       
     224        if (a.parts.exp < FLOAT64_BIAS) {
     225                /*TODO: rounding*/
     226                return 0;
     227        }
     228       
     229        frac = a.parts.fraction;
     230       
     231        frac |= FLOAT64_HIDDEN_BIT_MASK;
     232        /* shift fraction to left so hidden bit will be the most significant bit */
     233        frac <<= 64 - FLOAT64_FRACTION_SIZE - 1;
     234
     235        frac >>= 64 - (a.parts.exp - FLOAT64_BIAS) - 1;
     236        if ((a.parts.sign == 1) && (frac != 0)) {
     237                frac = ~frac;
     238                ++frac;
     239        }
     240       
     241        return frac;
     242}
     243
     244/* Convert float to unsigned int64
     245 * FIXME: Im not sure what to return if overflow/underflow happens
     246 *      - now its the biggest or the smallest int
     247 */
     248uint64_t float64_to_uint64(float64 a)
     249{
     250        if (isFloat64NaN(a))
     251                return UINT64_MAX;
     252       
     253       
     254        if (isFloat64Infinity(a) || (a.parts.exp >= (64 + FLOAT64_BIAS))) {
     255                if (a.parts.sign)
     256                        return UINT64_MIN;
     257               
     258                return UINT64_MAX;
     259        }
     260       
     261        return _float64_to_uint64_helper(a);
     262}
     263
     264/* Convert float to signed int64
     265 * FIXME: Im not sure what to return if overflow/underflow happens
     266 *      - now its the biggest or the smallest int
     267 */
     268int64_t float64_to_int64(float64 a)
     269{
     270        if (isFloat64NaN(a))
     271                return INT64_MAX;
     272       
     273       
     274        if (isFloat64Infinity(a) || (a.parts.exp >= (64 + FLOAT64_BIAS))) {
     275                if (a.parts.sign)
     276                        return INT64_MIN;
     277               
     278                return INT64_MAX;
     279        }
     280       
     281        return _float64_to_uint64_helper(a);
     282}
     283
     284
     285
     286
     287
     288/** Helping procedure for converting float32 to uint64
     289 * @param a floating point number in normalized form (no NaNs or Inf are checked )
     290 * @return unsigned integer
    481291 */
    482292static uint64_t _float32_to_uint64_helper(float32 a)
    483293{
    484294        uint64_t frac;
    485 
     295       
    486296        if (a.parts.exp < FLOAT32_BIAS) {
    487297                /*TODO: rounding*/
    488298                return 0;
    489299        }
    490 
     300       
    491301        frac = a.parts.fraction;
    492 
     302       
    493303        frac |= FLOAT32_HIDDEN_BIT_MASK;
    494304        /* shift fraction to left so hidden bit will be the most significant bit */
    495         frac <<= 64 - FLOAT32_FRACTION_SIZE - 1;
     305        frac <<= 64 - FLOAT32_FRACTION_SIZE - 1; 
    496306
    497307        frac >>= 64 - (a.parts.exp - FLOAT32_BIAS) - 1;
     
    500310                ++frac;
    501311        }
    502 
     312       
    503313        return frac;
    504314}
    505315
    506 /*
    507  * FIXME: Im not sure what to return if overflow/underflow happens
    508  *      - now its the biggest or the smallest int
    509  */
     316/* Convert float to unsigned int64
     317 * FIXME: Im not sure what to return if overflow/underflow happens 
     318 *      - now its the biggest or the smallest int
     319 */ 
    510320uint64_t float32_to_uint64(float32 a)
    511321{
    512322        if (isFloat32NaN(a))
    513323                return UINT64_MAX;
    514 
    515 
     324       
     325       
    516326        if (isFloat32Infinity(a) || (a.parts.exp >= (64 + FLOAT32_BIAS))) {
    517327                if (a.parts.sign)
    518328                        return UINT64_MIN;
    519 
     329               
    520330                return UINT64_MAX;
    521331        }
    522 
     332       
    523333        return _float32_to_uint64_helper(a);
    524334}
    525335
    526 /*
    527  * FIXME: Im not sure what to return if overflow/underflow happens
    528  *      - now its the biggest or the smallest int
    529  */
     336/* Convert float to signed int64
     337 * FIXME: Im not sure what to return if overflow/underflow happens 
     338 *      - now its the biggest or the smallest int
     339 */ 
    530340int64_t float32_to_int64(float32 a)
    531341{
    532342        if (isFloat32NaN(a))
    533343                return INT64_MAX;
    534 
     344       
    535345        if (isFloat32Infinity(a) || (a.parts.exp >= (64 + FLOAT32_BIAS))) {
    536346                if (a.parts.sign)
    537347                        return INT64_MIN;
    538 
     348               
    539349                return INT64_MAX;
    540350        }
    541 
     351       
    542352        return _float32_to_uint64_helper(a);
    543353}
    544354
    545355
    546 /**
    547  * Helping procedure for converting float64 to uint64.
    548  *
    549  * @param a Floating point number in normalized form
    550  *     (NaNs or Inf are not checked).
    551  * @return Converted unsigned integer.
    552  */
    553 static uint64_t _float64_to_uint64_helper(float64 a)
    554 {
    555         uint64_t frac;
    556 
    557         if (a.parts.exp < FLOAT64_BIAS) {
    558                 /*TODO: rounding*/
    559                 return 0;
    560         }
    561 
    562         frac = a.parts.fraction;
    563 
    564         frac |= FLOAT64_HIDDEN_BIT_MASK;
    565         /* shift fraction to left so hidden bit will be the most significant bit */
    566         frac <<= 64 - FLOAT64_FRACTION_SIZE - 1;
    567 
    568         frac >>= 64 - (a.parts.exp - FLOAT64_BIAS) - 1;
    569         if ((a.parts.sign == 1) && (frac != 0)) {
    570                 frac = ~frac;
    571                 ++frac;
    572         }
    573 
    574         return frac;
    575 }
    576 
    577 /*
    578  * FIXME: Im not sure what to return if overflow/underflow happens
    579  *      - now its the biggest or the smallest int
    580  */
     356/* Convert float64 to unsigned int32
     357 * FIXME: Im not sure what to return if overflow/underflow happens
     358 *      - now its the biggest or the smallest int
     359 */
    581360uint32_t float64_to_uint32(float64 a)
    582361{
    583362        if (isFloat64NaN(a))
    584363                return UINT32_MAX;
    585 
     364       
     365       
    586366        if (isFloat64Infinity(a) || (a.parts.exp >= (32 + FLOAT64_BIAS))) {
    587367                if (a.parts.sign)
    588368                        return UINT32_MIN;
    589 
     369               
    590370                return UINT32_MAX;
    591371        }
    592 
     372       
    593373        return (uint32_t) _float64_to_uint64_helper(a);
    594374}
    595375
    596 /*
    597  * FIXME: Im not sure what to return if overflow/underflow happens
    598  *      - now its the biggest or the smallest int
    599  */
     376/* Convert float64 to signed int32
     377 * FIXME: Im not sure what to return if overflow/underflow happens 
     378 *      - now its the biggest or the smallest int
     379 */ 
    600380int32_t float64_to_int32(float64 a)
    601381{
    602382        if (isFloat64NaN(a))
    603383                return INT32_MAX;
    604 
     384       
     385       
    605386        if (isFloat64Infinity(a) || (a.parts.exp >= (32 + FLOAT64_BIAS))) {
    606387                if (a.parts.sign)
    607388                        return INT32_MIN;
    608 
     389               
    609390                return INT32_MAX;
    610391        }
    611 
     392       
    612393        return (int32_t) _float64_to_uint64_helper(a);
    613394}
    614395
    615 
    616 /*
    617  * FIXME: Im not sure what to return if overflow/underflow happens
    618  *      - now its the biggest or the smallest int
    619  */
    620 uint64_t float64_to_uint64(float64 a)
    621 {
    622         if (isFloat64NaN(a))
    623                 return UINT64_MAX;
    624        
    625         if (isFloat64Infinity(a) || (a.parts.exp >= (64 + FLOAT64_BIAS))) {
    626                 if (a.parts.sign)
    627                         return UINT64_MIN;
    628                
    629                 return UINT64_MAX;
    630         }
    631        
    632         return _float64_to_uint64_helper(a);
    633 }
    634 
    635 /*
    636  * FIXME: Im not sure what to return if overflow/underflow happens
    637  *      - now its the biggest or the smallest int
    638  */
    639 int64_t float64_to_int64(float64 a)
    640 {
    641         if (isFloat64NaN(a))
    642                 return INT64_MAX;
    643        
    644         if (isFloat64Infinity(a) || (a.parts.exp >= (64 + FLOAT64_BIAS))) {
    645                 if (a.parts.sign)
    646                         return INT64_MIN;
    647                
    648                 return INT64_MAX;
    649         }
    650        
    651         return _float64_to_uint64_helper(a);
    652 }
    653 
    654 
    655 /**
    656  * Helping procedure for converting float128 to uint64.
    657  *
    658  * @param a Floating point number in normalized form
    659  *     (NaNs or Inf are not checked).
    660  * @return Converted unsigned integer.
    661  */
    662 static uint64_t _float128_to_uint64_helper(float128 a)
    663 {
    664         uint64_t frac_hi, frac_lo;
    665 
    666         if (a.parts.exp < FLOAT128_BIAS) {
    667                 /*TODO: rounding*/
    668                 return 0;
    669         }
    670 
    671         frac_hi = a.parts.frac_hi;
    672         frac_lo = a.parts.frac_lo;
    673 
    674         frac_hi |= FLOAT128_HIDDEN_BIT_MASK_HI;
    675         /* shift fraction to left so hidden bit will be the most significant bit */
    676         lshift128(frac_hi, frac_lo,
    677             (128 - FLOAT128_FRACTION_SIZE - 1), &frac_hi, &frac_lo);
    678 
    679         rshift128(frac_hi, frac_lo,
    680             (128 - (a.parts.exp - FLOAT128_BIAS) - 1), &frac_hi, &frac_lo);
    681         if ((a.parts.sign == 1) && !eq128(frac_hi, frac_lo, 0x0ll, 0x0ll)) {
    682                 not128(frac_hi, frac_lo, &frac_hi, &frac_lo);
    683                 add128(frac_hi, frac_lo, 0x0ll, 0x1ll, &frac_hi, &frac_lo);
    684         }
    685 
    686         return frac_lo;
    687 }
    688 
    689 /*
    690  * FIXME: Im not sure what to return if overflow/underflow happens
    691  *      - now its the biggest or the smallest int
    692  */
    693 uint32_t float128_to_uint32(float128 a)
    694 {
    695         if (isFloat128NaN(a))
    696                 return UINT32_MAX;
    697 
    698         if (isFloat128Infinity(a) || (a.parts.exp >= (32 + FLOAT128_BIAS))) {
    699                 if (a.parts.sign)
    700                         return UINT32_MIN;
    701 
    702                 return UINT32_MAX;
    703         }
    704 
    705         return (uint32_t) _float128_to_uint64_helper(a);
    706 }
    707 
    708 /*
    709  * FIXME: Im not sure what to return if overflow/underflow happens
    710  *      - now its the biggest or the smallest int
    711  */
    712 int32_t float128_to_int32(float128 a)
    713 {
    714         if (isFloat128NaN(a))
    715                 return INT32_MAX;
    716 
    717         if (isFloat128Infinity(a) || (a.parts.exp >= (32 + FLOAT128_BIAS))) {
    718                 if (a.parts.sign)
    719                         return INT32_MIN;
    720 
    721                 return INT32_MAX;
    722         }
    723 
    724         return (int32_t) _float128_to_uint64_helper(a);
    725 }
    726 
    727 
    728 /*
    729  * FIXME: Im not sure what to return if overflow/underflow happens
    730  *      - now its the biggest or the smallest int
    731  */
    732 uint64_t float128_to_uint64(float128 a)
    733 {
    734         if (isFloat128NaN(a))
    735                 return UINT64_MAX;
    736 
    737         if (isFloat128Infinity(a) || (a.parts.exp >= (64 + FLOAT128_BIAS))) {
    738                 if (a.parts.sign)
    739                         return UINT64_MIN;
    740 
    741                 return UINT64_MAX;
    742         }
    743 
    744         return _float128_to_uint64_helper(a);
    745 }
    746 
    747 /*
    748  * FIXME: Im not sure what to return if overflow/underflow happens
    749  *      - now its the biggest or the smallest int
    750  */
    751 int64_t float128_to_int64(float128 a)
    752 {
    753         if (isFloat128NaN(a))
    754                 return INT64_MAX;
    755 
    756         if (isFloat128Infinity(a) || (a.parts.exp >= (64 + FLOAT128_BIAS))) {
    757                 if (a.parts.sign)
    758                         return INT64_MIN;
    759 
    760                 return INT64_MAX;
    761         }
    762 
    763         return _float128_to_uint64_helper(a);
    764 }
    765 
    766 
     396/** Convert unsigned integer to float32
     397 *
     398 *
     399 */
    767400float32 uint32_to_float32(uint32_t i)
    768401{
     
    791424        roundFloat32(&exp, &i);
    792425
    793         result.parts.fraction = i >> (32 - FLOAT32_FRACTION_SIZE - 2);
     426        result.parts.fraction = i >> 7;
    794427        result.parts.exp = exp;
    795428
     
    802435
    803436        if (i < 0) {
    804                 result = uint32_to_float32((uint32_t) (-i));
    805         } else {
    806                 result = uint32_to_float32((uint32_t) i);
     437                result = uint32_to_float32((uint32_t)(-i));
     438        } else {
     439                result = uint32_to_float32((uint32_t)i);
    807440        }
    808441       
     
    832465        }
    833466       
    834         /* Shift all to the first 31 bits (31st will be hidden 1) */
     467        /* Shift all to the first 31 bits (31. will be hidden 1)*/
    835468        if (counter > 33) {
    836469                i <<= counter - 1 - 32;
     
    839472        }
    840473       
    841         j = (uint32_t) i;
     474        j = (uint32_t)i;
    842475        roundFloat32(&exp, &j);
    843476
    844         result.parts.fraction = j >> (32 - FLOAT32_FRACTION_SIZE - 2);
     477        result.parts.fraction = j >> 7;
    845478        result.parts.exp = exp;
    846479        return result;
     
    852485
    853486        if (i < 0) {
    854                 result = uint64_to_float32((uint64_t) (-i));
    855         } else {
    856                 result = uint64_to_float32((uint64_t) i);
     487                result = uint64_to_float32((uint64_t)(-i));
     488        } else {
     489                result = uint64_to_float32((uint64_t)i);
    857490        }
    858491       
     
    862495}
    863496
     497/** Convert unsigned integer to float64
     498 *
     499 *
     500 */
    864501float64 uint32_to_float64(uint32_t i)
    865502{
     
    886523        roundFloat64(&exp, &frac);
    887524
    888         result.parts.fraction = frac >> (64 - FLOAT64_FRACTION_SIZE - 2);
     525        result.parts.fraction = frac >> 10;
    889526        result.parts.exp = exp;
    890527
     
    897534
    898535        if (i < 0) {
    899                 result = uint32_to_float64((uint32_t) (-i));
    900         } else {
    901                 result = uint32_to_float64((uint32_t) i);
     536                result = uint32_to_float64((uint32_t)(-i));
     537        } else {
     538                result = uint32_to_float64((uint32_t)i);
    902539        }
    903540       
     
    934571        roundFloat64(&exp, &i);
    935572
    936         result.parts.fraction = i >> (64 - FLOAT64_FRACTION_SIZE - 2);
     573        result.parts.fraction = i >> 10;
    937574        result.parts.exp = exp;
    938575        return result;
     
    944581
    945582        if (i < 0) {
    946                 result = uint64_to_float64((uint64_t) (-i));
    947         } else {
    948                 result = uint64_to_float64((uint64_t) i);
     583                result = uint64_to_float64((uint64_t)(-i));
     584        } else {
     585                result = uint64_to_float64((uint64_t)i);
    949586        }
    950587       
     
    954591}
    955592
    956 
    957 float128 uint32_to_float128(uint32_t i)
    958 {
    959         int counter;
    960         int32_t exp;
    961         float128 result;
    962         uint64_t frac_hi, frac_lo;
    963 
    964         result.parts.sign = 0;
    965         result.parts.frac_hi = 0;
    966         result.parts.frac_lo = 0;
    967 
    968         counter = countZeroes32(i);
    969 
    970         exp = FLOAT128_BIAS + 32 - counter - 1;
    971 
    972         if (counter == 32) {
    973                 result.binary.hi = 0;
    974                 result.binary.lo = 0;
    975                 return result;
    976         }
    977 
    978         frac_hi = 0;
    979         frac_lo = i;
    980         lshift128(frac_hi, frac_lo, (counter + 96 - 1), &frac_hi, &frac_lo);
    981 
    982         roundFloat128(&exp, &frac_hi, &frac_lo);
    983 
    984         rshift128(frac_hi, frac_lo,
    985             (128 - FLOAT128_FRACTION_SIZE - 2), &frac_hi, &frac_lo);
    986         result.parts.frac_hi = frac_hi;
    987         result.parts.frac_lo = frac_lo;
    988         result.parts.exp = exp;
    989 
    990         return result;
    991 }
    992 
    993 float128 int32_to_float128(int32_t i)
    994 {
    995         float128 result;
    996 
    997         if (i < 0) {
    998                 result = uint32_to_float128((uint32_t) (-i));
    999         } else {
    1000                 result = uint32_to_float128((uint32_t) i);
    1001         }
    1002 
    1003         result.parts.sign = i < 0;
    1004 
    1005         return result;
    1006 }
    1007 
    1008 
    1009 float128 uint64_to_float128(uint64_t i)
    1010 {
    1011         int counter;
    1012         int32_t exp;
    1013         float128 result;
    1014         uint64_t frac_hi, frac_lo;
    1015 
    1016         result.parts.sign = 0;
    1017         result.parts.frac_hi = 0;
    1018         result.parts.frac_lo = 0;
    1019 
    1020         counter = countZeroes64(i);
    1021 
    1022         exp = FLOAT128_BIAS + 64 - counter - 1;
    1023 
    1024         if (counter == 64) {
    1025                 result.binary.hi = 0;
    1026                 result.binary.lo = 0;
    1027                 return result;
    1028         }
    1029 
    1030         frac_hi = 0;
    1031         frac_lo = i;
    1032         lshift128(frac_hi, frac_lo, (counter + 64 - 1), &frac_hi, &frac_lo);
    1033 
    1034         roundFloat128(&exp, &frac_hi, &frac_lo);
    1035 
    1036         rshift128(frac_hi, frac_lo,
    1037             (128 - FLOAT128_FRACTION_SIZE - 2), &frac_hi, &frac_lo);
    1038         result.parts.frac_hi = frac_hi;
    1039         result.parts.frac_lo = frac_lo;
    1040         result.parts.exp = exp;
    1041 
    1042         return result;
    1043 }
    1044 
    1045 float128 int64_to_float128(int64_t i)
    1046 {
    1047         float128 result;
    1048 
    1049         if (i < 0) {
    1050                 result = uint64_to_float128((uint64_t) (-i));
    1051         } else {
    1052                 result = uint64_to_float128((uint64_t) i);
    1053         }
    1054 
    1055         result.parts.sign = i < 0;
    1056 
    1057         return result;
    1058 }
    1059 
    1060593/** @}
    1061594 */
  • uspace/lib/softfloat/generic/div.c

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Division functions.
     32/** @file
    3433 */
    3534
     
    4140#include <common.h>
    4241
    43 /**
    44  * Divide two single-precision floats.
    45  *
    46  * @param a Nominator.
    47  * @param b Denominator.
    48  * @return Result of division.
    49  */
    5042float32 divFloat32(float32 a, float32 b)
    5143{
     
    108100                return result;
    109101        }
     102
    110103       
    111104        afrac = a.parts.fraction;
     
    117110        if (aexp == 0) {
    118111                if (afrac == 0) {
    119                         result.parts.exp = 0;
    120                         result.parts.fraction = 0;
    121                         return result;
    122                 }
    123 
     112                result.parts.exp = 0;
     113                result.parts.fraction = 0;
     114                return result;
     115                }
    124116                /* normalize it*/
     117               
    125118                afrac <<= 1;
    126                 /* afrac is nonzero => it must stop */ 
    127                 while (!(afrac & FLOAT32_HIDDEN_BIT_MASK)) {
     119                        /* afrac is nonzero => it must stop */ 
     120                while (! (afrac & FLOAT32_HIDDEN_BIT_MASK) ) {
    128121                        afrac <<= 1;
    129122                        aexp--;
     
    133126        if (bexp == 0) {
    134127                bfrac <<= 1;
    135                 /* bfrac is nonzero => it must stop */ 
    136                 while (!(bfrac & FLOAT32_HIDDEN_BIT_MASK)) {
     128                        /* bfrac is nonzero => it must stop */ 
     129                while (! (bfrac & FLOAT32_HIDDEN_BIT_MASK) ) {
    137130                        bfrac <<= 1;
    138131                        bexp--;
     
    140133        }
    141134
    142         afrac = (afrac | FLOAT32_HIDDEN_BIT_MASK) << (32 - FLOAT32_FRACTION_SIZE - 1);
    143         bfrac = (bfrac | FLOAT32_HIDDEN_BIT_MASK) << (32 - FLOAT32_FRACTION_SIZE);
    144 
    145         if (bfrac <= (afrac << 1)) {
     135        afrac = (afrac | FLOAT32_HIDDEN_BIT_MASK ) << (32 - FLOAT32_FRACTION_SIZE - 1 );
     136        bfrac = (bfrac | FLOAT32_HIDDEN_BIT_MASK ) << (32 - FLOAT32_FRACTION_SIZE );
     137
     138        if ( bfrac <= (afrac << 1) ) {
    146139                afrac >>= 1;
    147140                aexp++;
     
    151144       
    152145        cfrac = (afrac << 32) / bfrac;
    153         if ((cfrac & 0x3F) == 0) {
    154                 cfrac |= (bfrac * cfrac != afrac << 32);
     146        if ((  cfrac & 0x3F ) == 0) {
     147                cfrac |= ( bfrac * cfrac != afrac << 32 );
    155148        }
    156149       
     
    158151       
    159152        /* find first nonzero digit and shift result and detect possibly underflow */
    160         while ((cexp > 0) && (cfrac) && (!(cfrac & (FLOAT32_HIDDEN_BIT_MASK << 7)))) {
     153        while ((cexp > 0) && (cfrac) && (!(cfrac & (FLOAT32_HIDDEN_BIT_MASK << 7 )))) {
    161154                cexp--;
    162155                cfrac <<= 1;
    163                 /* TODO: fix underflow */
    164         }
     156                        /* TODO: fix underflow */
     157        };
    165158       
    166159        cfrac += (0x1 << 6); /* FIXME: 7 is not sure*/
     
    169162                ++cexp;
    170163                cfrac >>= 1;
    171         }       
     164                }       
    172165
    173166        /* check overflow */
    174         if (cexp >= FLOAT32_MAX_EXPONENT) {
     167        if (cexp >= FLOAT32_MAX_EXPONENT ) {
    175168                /* FIXME: overflow, return infinity */
    176169                result.parts.exp = FLOAT32_MAX_EXPONENT;
     
    188181                cfrac >>= 1;
    189182                while (cexp < 0) {
    190                         cexp++;
     183                        cexp ++;
    191184                        cfrac >>= 1;
    192                 }       
     185                }
     186               
    193187        } else {
    194                 result.parts.exp = (uint32_t) cexp;
     188                result.parts.exp = (uint32_t)cexp;
    195189        }
    196190       
     
    200194}
    201195
    202 /**
    203  * Divide two double-precision floats.
    204  *
    205  * @param a Nominator.
    206  * @param b Denominator.
    207  * @return Result of division.
    208  */
    209196float64 divFloat64(float64 a, float64 b)
    210197{
     
    213200        uint64_t afrac, bfrac, cfrac;
    214201        uint64_t remlo, remhi;
    215         uint64_t tmplo, tmphi;
    216202       
    217203        result.parts.sign = a.parts.sign ^ b.parts.sign;
    218204       
    219205        if (isFloat64NaN(a)) {
     206               
    220207                if (isFloat64SigNaN(b)) {
    221208                        /*FIXME: SigNaN*/
     
    275262        }
    276263
     264       
    277265        afrac = a.parts.fraction;
    278266        aexp = a.parts.exp;
     
    287275                        return result;
    288276                }
    289 
    290277                /* normalize it*/
     278               
    291279                aexp++;
    292                 /* afrac is nonzero => it must stop */ 
    293                 while (!(afrac & FLOAT64_HIDDEN_BIT_MASK)) {
     280                        /* afrac is nonzero => it must stop */ 
     281                while (! (afrac & FLOAT64_HIDDEN_BIT_MASK) ) {
    294282                        afrac <<= 1;
    295283                        aexp--;
     
    299287        if (bexp == 0) {
    300288                bexp++;
    301                 /* bfrac is nonzero => it must stop */ 
    302                 while (!(bfrac & FLOAT64_HIDDEN_BIT_MASK)) {
     289                        /* bfrac is nonzero => it must stop */ 
     290                while (! (bfrac & FLOAT64_HIDDEN_BIT_MASK) ) {
    303291                        bfrac <<= 1;
    304292                        bexp--;
     
    306294        }
    307295
    308         afrac = (afrac | FLOAT64_HIDDEN_BIT_MASK) << (64 - FLOAT64_FRACTION_SIZE - 2);
    309         bfrac = (bfrac | FLOAT64_HIDDEN_BIT_MASK) << (64 - FLOAT64_FRACTION_SIZE - 1);
    310 
    311         if (bfrac <= (afrac << 1)) {
     296        afrac = (afrac | FLOAT64_HIDDEN_BIT_MASK ) << (64 - FLOAT64_FRACTION_SIZE - 2 );
     297        bfrac = (bfrac | FLOAT64_HIDDEN_BIT_MASK ) << (64 - FLOAT64_FRACTION_SIZE - 1);
     298
     299        if ( bfrac <= (afrac << 1) ) {
    312300                afrac >>= 1;
    313301                aexp++;
     
    316304        cexp = aexp - bexp + FLOAT64_BIAS - 2;
    317305       
    318         cfrac = div128est(afrac, 0x0ll, bfrac);
    319        
    320         if ((cfrac & 0x1FF) <= 2) {
    321                 mul64(bfrac, cfrac, &tmphi, &tmplo);
    322                 sub128(afrac, 0x0ll, tmphi, tmplo, &remhi, &remlo);
     306        cfrac = divFloat64estim(afrac, bfrac);
     307       
     308        if ((  cfrac & 0x1FF ) <= 2) { /*FIXME:?? */
     309                mul64integers( bfrac, cfrac, &remlo, &remhi);
     310                /* (__u128)afrac << 64 - ( ((__u128)remhi<<64) + (__u128)remlo )*/     
     311                remhi = afrac - remhi - ( remlo > 0);
     312                remlo = - remlo;
    323313               
    324314                while ((int64_t) remhi < 0) {
    325315                        cfrac--;
    326                         add128(remhi, remlo, 0x0ll, bfrac, &remhi, &remlo);
    327                 }
    328                 cfrac |= (remlo != 0);
     316                        remlo += bfrac;
     317                        remhi += ( remlo < bfrac );
     318                }
     319                cfrac |= ( remlo != 0 );
    329320        }
    330321       
     
    332323        result = finishFloat64(cexp, cfrac, result.parts.sign);
    333324        return result;
     325
    334326}
    335327
    336 /**
    337  * Divide two quadruple-precision floats.
    338  *
    339  * @param a Nominator.
    340  * @param b Denominator.
    341  * @return Result of division.
    342  */
    343 float128 divFloat128(float128 a, float128 b)
     328uint64_t divFloat64estim(uint64_t a, uint64_t b)
    344329{
    345         float128 result;
    346         int64_t aexp, bexp, cexp;
    347         uint64_t afrac_hi, afrac_lo, bfrac_hi, bfrac_lo, cfrac_hi, cfrac_lo;
    348         uint64_t shift_out;
    349         uint64_t rem_hihi, rem_hilo, rem_lohi, rem_lolo;
    350         uint64_t tmp_hihi, tmp_hilo, tmp_lohi, tmp_lolo;
    351 
    352         result.parts.sign = a.parts.sign ^ b.parts.sign;
    353 
    354         if (isFloat128NaN(a)) {
    355                 if (isFloat128SigNaN(b)) {
    356                         /*FIXME: SigNaN*/
    357                         return b;
    358                 }
    359 
    360                 if (isFloat128SigNaN(a)) {
    361                         /*FIXME: SigNaN*/
    362                 }
    363                 /*NaN*/
    364                 return a;
    365         }
    366 
    367         if (isFloat128NaN(b)) {
    368                 if (isFloat128SigNaN(b)) {
    369                         /*FIXME: SigNaN*/
    370                 }
    371                 /*NaN*/
    372                 return b;
    373         }
    374 
    375         if (isFloat128Infinity(a)) {
    376                 if (isFloat128Infinity(b) || isFloat128Zero(b)) {
    377                         /*FIXME: inf / inf */
    378                         result.binary.hi = FLOAT128_NAN_HI;
    379                         result.binary.lo = FLOAT128_NAN_LO;
    380                         return result;
    381                 }
    382                 /* inf / num */
    383                 result.parts.exp = a.parts.exp;
    384                 result.parts.frac_hi = a.parts.frac_hi;
    385                 result.parts.frac_lo = a.parts.frac_lo;
    386                 return result;
    387         }
    388 
    389         if (isFloat128Infinity(b)) {
    390                 if (isFloat128Zero(a)) {
    391                         /* FIXME 0 / inf */
    392                         result.parts.exp = 0;
    393                         result.parts.frac_hi = 0;
    394                         result.parts.frac_lo = 0;
    395                         return result;
    396                 }
    397                 /* FIXME: num / inf*/
    398                 result.parts.exp = 0;
    399                 result.parts.frac_hi = 0;
    400                 result.parts.frac_lo = 0;
    401                 return result;
    402         }
    403 
    404         if (isFloat128Zero(b)) {
    405                 if (isFloat128Zero(a)) {
    406                         /*FIXME: 0 / 0*/
    407                         result.binary.hi = FLOAT128_NAN_HI;
    408                         result.binary.lo = FLOAT128_NAN_LO;
    409                         return result;
    410                 }
    411                 /* FIXME: division by zero */
    412                 result.parts.exp = 0;
    413                 result.parts.frac_hi = 0;
    414                 result.parts.frac_lo = 0;
    415                 return result;
    416         }
    417 
    418         afrac_hi = a.parts.frac_hi;
    419         afrac_lo = a.parts.frac_lo;
    420         aexp = a.parts.exp;
    421         bfrac_hi = b.parts.frac_hi;
    422         bfrac_lo = b.parts.frac_lo;
    423         bexp = b.parts.exp;
    424 
    425         /* denormalized numbers */
    426         if (aexp == 0) {
    427                 if (eq128(afrac_hi, afrac_lo, 0x0ll, 0x0ll)) {
    428                         result.parts.exp = 0;
    429                         result.parts.frac_hi = 0;
    430                         result.parts.frac_lo = 0;
    431                         return result;
    432                 }
    433 
    434                 /* normalize it*/
    435                 aexp++;
    436                 /* afrac is nonzero => it must stop */
    437                 and128(afrac_hi, afrac_lo,
    438                     FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    439                     &tmp_hihi, &tmp_lolo);
    440                 while (!lt128(0x0ll, 0x0ll, tmp_hihi, tmp_lolo)) {
    441                         lshift128(afrac_hi, afrac_lo, 1, &afrac_hi, &afrac_lo);
    442                         aexp--;
    443                 }
    444         }
    445 
    446         if (bexp == 0) {
    447                 bexp++;
    448                 /* bfrac is nonzero => it must stop */
    449                 and128(bfrac_hi, bfrac_lo,
    450                     FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    451                     &tmp_hihi, &tmp_lolo);
    452                 while (!lt128(0x0ll, 0x0ll, tmp_hihi, tmp_lolo)) {
    453                         lshift128(bfrac_hi, bfrac_lo, 1, &bfrac_hi, &bfrac_lo);
    454                         bexp--;
    455                 }
    456         }
    457 
    458         or128(afrac_hi, afrac_lo,
    459             FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    460             &afrac_hi, &afrac_lo);
    461         lshift128(afrac_hi, afrac_lo,
    462             (128 - FLOAT128_FRACTION_SIZE - 1), &afrac_hi, &afrac_lo);
    463         or128(bfrac_hi, bfrac_lo,
    464             FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    465             &bfrac_hi, &bfrac_lo);
    466         lshift128(bfrac_hi, bfrac_lo,
    467             (128 - FLOAT128_FRACTION_SIZE - 1), &bfrac_hi, &bfrac_lo);
    468 
    469         if (le128(bfrac_hi, bfrac_lo, afrac_hi, afrac_lo)) {
    470                 rshift128(afrac_hi, afrac_lo, 1, &afrac_hi, &afrac_lo);
    471                 aexp++;
    472         }
    473 
    474         cexp = aexp - bexp + FLOAT128_BIAS - 2;
    475 
    476         cfrac_hi = div128est(afrac_hi, afrac_lo, bfrac_hi);
    477 
    478         mul128(bfrac_hi, bfrac_lo, 0x0ll, cfrac_hi,
    479             &tmp_lolo /* dummy */, &tmp_hihi, &tmp_hilo, &tmp_lohi);
    480 
    481         /* sub192(afrac_hi, afrac_lo, 0,
    482          *     tmp_hihi, tmp_hilo, tmp_lohi
    483          *     &rem_hihi, &rem_hilo, &rem_lohi); */
    484         sub128(afrac_hi, afrac_lo, tmp_hihi, tmp_hilo, &rem_hihi, &rem_hilo);
    485         if (tmp_lohi > 0) {
    486                 sub128(rem_hihi, rem_hilo, 0x0ll, 0x1ll, &rem_hihi, &rem_hilo);
    487         }
    488         rem_lohi = -tmp_lohi;
    489 
    490         while ((int64_t) rem_hihi < 0) {
    491                 --cfrac_hi;
    492                 /* add192(rem_hihi, rem_hilo, rem_lohi,
    493                  *     0, bfrac_hi, bfrac_lo,
    494                  *     &rem_hihi, &rem_hilo, &rem_lohi); */
    495                 add128(rem_hilo, rem_lohi, bfrac_hi, bfrac_lo, &rem_hilo, &rem_lohi);
    496                 if (lt128(rem_hilo, rem_lohi, bfrac_hi, bfrac_lo)) {
    497                         ++rem_hihi;
    498                 }
    499         }
    500 
    501         cfrac_lo = div128est(rem_hilo, rem_lohi, bfrac_lo);
    502 
    503         if ((cfrac_lo & 0x3FFF) <= 4) {
    504                 mul128(bfrac_hi, bfrac_lo, 0x0ll, cfrac_lo,
    505                 &tmp_hihi /* dummy */, &tmp_hilo, &tmp_lohi, &tmp_lolo);
    506 
    507                 /* sub192(rem_hilo, rem_lohi, 0,
    508                  *     tmp_hilo, tmp_lohi, tmp_lolo,
    509                  *     &rem_hilo, &rem_lohi, &rem_lolo); */
    510                 sub128(rem_hilo, rem_lohi, tmp_hilo, tmp_lohi, &rem_hilo, &rem_lohi);
    511                 if (tmp_lolo > 0) {
    512                         sub128(rem_hilo, rem_lohi, 0x0ll, 0x1ll, &rem_hilo, &rem_lohi);
    513                 }
    514                 rem_lolo = -tmp_lolo;
    515 
    516                 while ((int64_t) rem_hilo < 0) {
    517                         --cfrac_lo;
    518                         /* add192(rem_hilo, rem_lohi, rem_lolo,
    519                          *     0, bfrac_hi, bfrac_lo,
    520                          *     &rem_hilo, &rem_lohi, &rem_lolo); */
    521                         add128(rem_lohi, rem_lolo, bfrac_hi, bfrac_lo, &rem_lohi, &rem_lolo);
    522                         if (lt128(rem_lohi, rem_lolo, bfrac_hi, bfrac_lo)) {
    523                                 ++rem_hilo;
    524                         }
    525                 }
    526 
    527                 cfrac_lo |= ((rem_hilo | rem_lohi | rem_lolo) != 0 );
    528         }
    529 
    530         shift_out = cfrac_lo << (64 - (128 - FLOAT128_FRACTION_SIZE - 1));
    531         rshift128(cfrac_hi, cfrac_lo, (128 - FLOAT128_FRACTION_SIZE - 1),
    532             &cfrac_hi, &cfrac_lo);
    533 
    534         result = finishFloat128(cexp, cfrac_hi, cfrac_lo, result.parts.sign, shift_out);
     330        uint64_t bhi;
     331        uint64_t remhi, remlo;
     332        uint64_t result;
     333       
     334        if ( b <= a ) {
     335                return 0xFFFFFFFFFFFFFFFFull;
     336        }
     337       
     338        bhi = b >> 32;
     339        result = ((bhi << 32) <= a) ?( 0xFFFFFFFFull << 32) : ( a / bhi) << 32;
     340        mul64integers(b, result, &remlo, &remhi);
     341       
     342        remhi = a - remhi - (remlo > 0);
     343        remlo = - remlo;
     344
     345        b <<= 32;
     346        while ( (int64_t) remhi < 0 ) {
     347                        result -= 0x1ll << 32; 
     348                        remlo += b;
     349                        remhi += bhi + ( remlo < b );
     350                }
     351        remhi = (remhi << 32) | (remlo >> 32);
     352        if (( bhi << 32) <= remhi) {
     353                result |= 0xFFFFFFFF;
     354        } else {
     355                result |= remhi / bhi;
     356        }
     357       
     358       
    535359        return result;
    536360}
  • uspace/lib/softfloat/generic/mul.c

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Multiplication functions.
     32/** @file
    3433 */
    3534
     
    3938#include <common.h>
    4039
    41 /**
    42  * Multiply two single-precision floats.
    43  *
    44  * @param a First input operand.
    45  * @param b Second input operand.
    46  * @return Result of multiplication.
     40/** Multiply two 32 bit float numbers
     41 *
    4742 */
    4843float32 mulFloat32(float32 a, float32 b)
     
    5449        result.parts.sign = a.parts.sign ^ b.parts.sign;
    5550       
    56         if (isFloat32NaN(a) || isFloat32NaN(b)) {
     51        if (isFloat32NaN(a) || isFloat32NaN(b) ) {
    5752                /* TODO: fix SigNaNs */
    5853                if (isFloat32SigNaN(a)) {
     
    6055                        result.parts.exp = a.parts.exp;
    6156                        return result;
    62                 }
     57                };
    6358                if (isFloat32SigNaN(b)) { /* TODO: fix SigNaN */
    6459                        result.parts.fraction = b.parts.fraction;
    6560                        result.parts.exp = b.parts.exp;
    6661                        return result;
    67                 }
     62                };
    6863                /* set NaN as result */
    6964                result.binary = FLOAT32_NAN;
    7065                return result;
    71         }
     66        };
    7267               
    7368        if (isFloat32Infinity(a)) {
     
    10398                result.parts.sign = a.parts.sign ^ b.parts.sign;
    10499                return result;
    105         }
     100        };
    106101       
    107102        if (exp < 0) {
     
    111106                result.parts.exp = 0x0;
    112107                return result;
    113         }
     108        };
    114109       
    115110        frac1 = a.parts.fraction;
     
    118113        } else {
    119114                ++exp;
    120         }
     115        };
    121116       
    122117        frac2 = b.parts.fraction;
     
    126121        } else {
    127122                ++exp;
    128         }
     123        };
    129124
    130125        frac1 <<= 1; /* one bit space for rounding */
    131126
    132127        frac1 = frac1 * frac2;
    133 
    134         /* round and return */
    135         while ((exp < FLOAT32_MAX_EXPONENT) && (frac1 >= (1 << (FLOAT32_FRACTION_SIZE + 2)))) {
    136                 /* 23 bits of fraction + one more for hidden bit (all shifted 1 bit left) */
     128/* round and return */
     129       
     130        while ((exp < FLOAT32_MAX_EXPONENT) && (frac1 >= ( 1 << (FLOAT32_FRACTION_SIZE + 2)))) {
     131                /* 23 bits of fraction + one more for hidden bit (all shifted 1 bit left)*/
    137132                ++exp;
    138133                frac1 >>= 1;
    139         }
     134        };
    140135
    141136        /* rounding */
     
    146141                ++exp;
    147142                frac1 >>= 1;
    148         }
    149 
    150         if (exp >= FLOAT32_MAX_EXPONENT) {     
     143        };
     144
     145        if (exp >= FLOAT32_MAX_EXPONENT ) {     
    151146                /* TODO: fix overflow */
    152147                /* return infinity*/
     
    164159                        frac1 >>= 1;
    165160                        ++exp;
    166                 }
     161                };
    167162                if (frac1 == 0) {
    168163                        /* FIXME : underflow */
    169                         result.parts.exp = 0;
    170                         result.parts.fraction = 0;
    171                         return result;
    172                 }
    173         }
     164                result.parts.exp = 0;
     165                result.parts.fraction = 0;
     166                return result;
     167                };
     168        };
    174169        result.parts.exp = exp;
    175         result.parts.fraction = frac1 & ((1 << FLOAT32_FRACTION_SIZE) - 1);
     170        result.parts.fraction = frac1 & ( (1 << FLOAT32_FRACTION_SIZE) - 1);
    176171       
    177172        return result; 
     173       
    178174}
    179175
    180 /**
    181  * Multiply two double-precision floats.
    182  *
    183  * @param a First input operand.
    184  * @param b Second input operand.
    185  * @return Result of multiplication.
     176/** Multiply two 64 bit float numbers
     177 *
    186178 */
    187179float64 mulFloat64(float64 a, float64 b)
     
    193185        result.parts.sign = a.parts.sign ^ b.parts.sign;
    194186       
    195         if (isFloat64NaN(a) || isFloat64NaN(b)) {
     187        if (isFloat64NaN(a) || isFloat64NaN(b) ) {
    196188                /* TODO: fix SigNaNs */
    197189                if (isFloat64SigNaN(a)) {
     
    199191                        result.parts.exp = a.parts.exp;
    200192                        return result;
    201                 }
     193                };
    202194                if (isFloat64SigNaN(b)) { /* TODO: fix SigNaN */
    203195                        result.parts.fraction = b.parts.fraction;
    204196                        result.parts.exp = b.parts.exp;
    205197                        return result;
    206                 }
     198                };
    207199                /* set NaN as result */
    208200                result.binary = FLOAT64_NAN;
    209201                return result;
    210         }
     202        };
    211203               
    212204        if (isFloat64Infinity(a)) {
     
    241233        } else {
    242234                ++exp;
    243         }
     235        };
    244236       
    245237        frac2 = b.parts.fraction;
     
    249241        } else {
    250242                ++exp;
    251         }
     243        };
    252244
    253245        frac1 <<= (64 - FLOAT64_FRACTION_SIZE - 1);
    254246        frac2 <<= (64 - FLOAT64_FRACTION_SIZE - 2);
    255247
    256         mul64(frac1, frac2, &frac1, &frac2);
    257 
    258         frac1 |= (frac2 != 0);
    259         if (frac1 & (0x1ll << 62)) {
    260                 frac1 <<= 1;
     248        mul64integers(frac1, frac2, &frac1, &frac2);
     249
     250        frac2 |= (frac1 != 0);
     251        if (frac2 & (0x1ll << 62)) {
     252                frac2 <<= 1;
    261253                exp--;
    262254        }
    263255
    264         result = finishFloat64(exp, frac1, result.parts.sign);
     256        result = finishFloat64(exp, frac2, result.parts.sign);
    265257        return result;
    266258}
    267259
    268 /**
    269  * Multiply two quadruple-precision floats.
    270  *
    271  * @param a First input operand.
    272  * @param b Second input operand.
    273  * @return Result of multiplication.
    274  */
    275 float128 mulFloat128(float128 a, float128 b)
     260/** Multiply two 64 bit numbers and return result in two parts
     261 * @param a first operand
     262 * @param b second operand
     263 * @param lo lower part from result
     264 * @param hi higher part of result
     265 */
     266void mul64integers(uint64_t a,uint64_t b, uint64_t *lo, uint64_t *hi)
    276267{
    277         float128 result;
    278         uint64_t frac1_hi, frac1_lo, frac2_hi, frac2_lo, tmp_hi, tmp_lo;
    279         int32_t exp;
    280 
    281         result.parts.sign = a.parts.sign ^ b.parts.sign;
    282 
    283         if (isFloat128NaN(a) || isFloat128NaN(b)) {
    284                 /* TODO: fix SigNaNs */
    285                 if (isFloat128SigNaN(a)) {
    286                         result.parts.frac_hi = a.parts.frac_hi;
    287                         result.parts.frac_lo = a.parts.frac_lo;
    288                         result.parts.exp = a.parts.exp;
    289                         return result;
    290                 }
    291                 if (isFloat128SigNaN(b)) { /* TODO: fix SigNaN */
    292                         result.parts.frac_hi = b.parts.frac_hi;
    293                         result.parts.frac_lo = b.parts.frac_lo;
    294                         result.parts.exp = b.parts.exp;
    295                         return result;
    296                 }
    297                 /* set NaN as result */
    298                 result.binary.hi = FLOAT128_NAN_HI;
    299                 result.binary.lo = FLOAT128_NAN_LO;
    300                 return result;
    301         }
    302 
    303         if (isFloat128Infinity(a)) {
    304                 if (isFloat128Zero(b)) {
    305                         /* FIXME: zero * infinity */
    306                         result.binary.hi = FLOAT128_NAN_HI;
    307                         result.binary.lo = FLOAT128_NAN_LO;
    308                         return result;
    309                 }
    310                 result.parts.frac_hi = a.parts.frac_hi;
    311                 result.parts.frac_lo = a.parts.frac_lo;
    312                 result.parts.exp = a.parts.exp;
    313                 return result;
    314         }
    315 
    316         if (isFloat128Infinity(b)) {
    317                 if (isFloat128Zero(a)) {
    318                         /* FIXME: zero * infinity */
    319                         result.binary.hi = FLOAT128_NAN_HI;
    320                         result.binary.lo = FLOAT128_NAN_LO;
    321                         return result;
    322                 }
    323                 result.parts.frac_hi = b.parts.frac_hi;
    324                 result.parts.frac_lo = b.parts.frac_lo;
    325                 result.parts.exp = b.parts.exp;
    326                 return result;
    327         }
    328 
    329         /* exp is signed so we can easy detect underflow */
    330         exp = a.parts.exp + b.parts.exp - FLOAT128_BIAS - 1;
    331 
    332         frac1_hi = a.parts.frac_hi;
    333         frac1_lo = a.parts.frac_lo;
    334 
    335         if (a.parts.exp > 0) {
    336                 or128(frac1_hi, frac1_lo,
    337                 FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    338                 &frac1_hi, &frac1_lo);
    339         } else {
    340                 ++exp;
    341         }
    342 
    343         frac2_hi = b.parts.frac_hi;
    344         frac2_lo = b.parts.frac_lo;
    345 
    346         if (b.parts.exp > 0) {
    347                 or128(frac2_hi, frac2_lo,
    348                     FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    349                     &frac2_hi, &frac2_lo);
    350         } else {
    351                 ++exp;
    352         }
    353 
    354         lshift128(frac2_hi, frac2_lo,
    355             128 - FLOAT128_FRACTION_SIZE, &frac2_hi, &frac2_lo);
    356 
    357         tmp_hi = frac1_hi;
    358         tmp_lo = frac1_lo;
    359         mul128(frac1_hi, frac1_lo, frac2_hi, frac2_lo,
    360             &frac1_hi, &frac1_lo, &frac2_hi, &frac2_lo);
    361         add128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &frac1_hi, &frac1_lo);
    362         frac2_hi |= (frac2_lo != 0x0ll);
    363 
    364         if ((FLOAT128_HIDDEN_BIT_MASK_HI << 1) <= frac1_hi) {
    365                 frac2_hi >>= 1;
    366                 if (frac1_lo & 0x1ll) {
    367                         frac2_hi |= (0x1ull < 64);
    368                 }
    369                 rshift128(frac1_hi, frac1_lo, 1, &frac1_hi, &frac1_lo);
    370                 ++exp;
    371         }
    372 
    373         result = finishFloat128(exp, frac1_hi, frac1_lo, result.parts.sign, frac2_hi);
    374         return result;
     268        uint64_t low, high, middle1, middle2;
     269        uint32_t alow, blow;
     270
     271        alow = a & 0xFFFFFFFF;
     272        blow = b & 0xFFFFFFFF;
     273       
     274        a >>= 32;
     275        b >>= 32;
     276       
     277        low = ((uint64_t)alow) * blow;
     278        middle1 = a * blow;
     279        middle2 = alow * b;
     280        high = a * b;
     281
     282        middle1 += middle2;
     283        high += (((uint64_t)(middle1 < middle2)) << 32) + (middle1 >> 32);
     284        middle1 <<= 32;
     285        low += middle1;
     286        high += (low < middle1);
     287        *lo = low;
     288        *hi = high;
     289       
     290        return;
    375291}
    376292
  • uspace/lib/softfloat/generic/other.c

    rdb6e419 r45058baa  
    3030 * @{
    3131 */
    32 /** @file Other functions (power, complex).
     32/** @file
    3333 */
    3434
  • uspace/lib/softfloat/generic/softfloat.c

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3332 * @{
    3433 */
    35 /** @file Softfloat API.
     34/** @file
    3635 */
    3736
     
    8281        }
    8382        return addFloat64(da, db).d;
    84 }
    85 
    86 long double __addtf3(long double a, long double b)
    87 {
    88         float128 ta, tb;
    89         ta.ld = a;
    90         tb.ld = b;
    91         if (ta.parts.sign != tb.parts.sign) {
    92                 if (ta.parts.sign) {
    93                         ta.parts.sign = 0;
    94                         return subFloat128(tb, ta).ld;
    95                 };
    96                 tb.parts.sign = 0;
    97                 return subFloat128(ta, tb).ld;
    98         }
    99         return addFloat128(ta, tb).ld;
    10083}
    10184
     
    124107}
    125108
    126 long double __subtf3(long double a, long double b)
    127 {
    128         float128 ta, tb;
    129         ta.ld = a;
    130         tb.ld = b;
    131         if (ta.parts.sign != tb.parts.sign) {
    132                 tb.parts.sign = !tb.parts.sign;
    133                 return addFloat128(ta, tb).ld;
    134         }
    135         return subFloat128(ta, tb).ld;
    136 }
    137 
    138109float __mulsf3(float a, float b)
    139110{
     
    152123}
    153124
    154 long double __multf3(long double a, long double b)
    155 {
    156         float128 ta, tb;
    157         ta.ld = a;
    158         tb.ld = b;
    159         return  mulFloat128(ta, tb).ld;
    160 }
    161 
    162125float __divsf3(float a, float b)
    163126{
     
    176139}
    177140
    178 long double __divtf3(long double a, long double b)
    179 {
    180         float128 ta, tb;
    181         ta.ld = a;
    182         tb.ld = b;
    183         return  divFloat128(ta, tb).ld;
    184 }
    185 
    186141float __negsf2(float a)
    187142{
     
    194149double __negdf2(double a)
    195150{
    196         float64 da;
    197         da.d = a;
    198         da.parts.sign = !da.parts.sign;
    199         return da.d;
    200 }
    201 
    202 long double __negtf2(long double a)
    203 {
    204         float128 ta;
    205         ta.ld = a;
    206         ta.parts.sign = !ta.parts.sign;
    207         return ta.ld;
     151        float64 fa;
     152        fa.d = a;
     153        fa.parts.sign = !fa.parts.sign;
     154        return fa.d;
    208155}
    209156
     
    217164}
    218165
    219 long double __extendsftf2(float a)
    220 {
    221         float32 fa;
    222         fa.f = a;
    223         return convertFloat32ToFloat128(fa).ld;
    224 }
    225 
    226 long double __extenddftf2(double a)
    227 {
    228         float64 da;
    229         da.d = a;
    230         return convertFloat64ToFloat128(da).ld;
    231 }
    232 
    233166float __truncdfsf2(double a)
    234167{
     
    238171}
    239172
    240 float __trunctfsf2(long double a)
    241 {
    242         float128 ta;
    243         ta.ld = a;
    244         return convertFloat128ToFloat32(ta).f;
    245 }
    246 
    247 double __trunctfdf2(long double a)
    248 {
    249         float128 ta;
    250         ta.ld = a;
    251         return convertFloat128ToFloat64(ta).d;
    252 }
    253 
    254173int __fixsfsi(float a)
    255174{
     
    259178        return float32_to_int(fa);
    260179}
    261 
    262180int __fixdfsi(double a)
    263181{
     
    267185        return float64_to_int(da);
    268186}
    269 
    270 int __fixtfsi(long double a)
    271 {
    272         float128 ta;
    273         ta.ld = a;
    274 
    275         return float128_to_int(ta);
    276 }
    277187 
    278188long __fixsfdi(float a)
     
    283193        return float32_to_long(fa);
    284194}
    285 
    286195long __fixdfdi(double a)
    287196{
     
    291200        return float64_to_long(da);
    292201}
    293 
    294 long __fixtfdi(long double a)
    295 {
    296         float128 ta;
    297         ta.ld = a;
    298 
    299         return float128_to_long(ta);
    300 }
    301202 
    302203long long __fixsfti(float a)
     
    307208        return float32_to_longlong(fa);
    308209}
    309 
    310210long long __fixdfti(double a)
    311211{
     
    316216}
    317217
    318 long long __fixtfti(long double a)
    319 {
    320         float128 ta;
    321         ta.ld = a;
    322 
    323         return float128_to_longlong(ta);
    324 }
    325 
    326218unsigned int __fixunssfsi(float a)
    327219{
     
    331223        return float32_to_uint(fa);
    332224}
    333 
    334225unsigned int __fixunsdfsi(double a)
    335226{
     
    339230        return float64_to_uint(da);
    340231}
    341 
    342 unsigned int __fixunstfsi(long double a)
    343 {
    344         float128 ta;
    345         ta.ld = a;
    346 
    347         return float128_to_uint(ta);
    348 }
    349232 
    350233unsigned long __fixunssfdi(float a)
     
    355238        return float32_to_ulong(fa);
    356239}
    357 
    358240unsigned long __fixunsdfdi(double a)
    359241{
     
    363245        return float64_to_ulong(da);
    364246}
    365 
    366 unsigned long __fixunstfdi(long double a)
    367 {
    368         float128 ta;
    369         ta.ld = a;
    370 
    371         return float128_to_ulong(ta);
    372 }
    373247 
    374248unsigned long long __fixunssfti(float a)
     
    379253        return float32_to_ulonglong(fa);
    380254}
    381 
    382255unsigned long long __fixunsdfti(double a)
    383256{
     
    387260        return float64_to_ulonglong(da);
    388261}
    389 
    390 unsigned long long __fixunstfti(long double a)
    391 {
    392         float128 ta;
    393         ta.ld = a;
    394 
    395         return float128_to_ulonglong(ta);
    396 }
    397262 
    398263float __floatsisf(int i)
     
    403268        return fa.f;
    404269}
    405 
    406270double __floatsidf(int i)
    407271{
     
    411275        return da.d;
    412276}
    413 
    414 long double __floatsitf(int i)
    415 {
    416         float128 ta;
    417 
    418         ta = int_to_float128(i);
    419         return ta.ld;
    420 }
    421277 
    422278float __floatdisf(long i)
     
    427283        return fa.f;
    428284}
    429 
    430285double __floatdidf(long i)
    431286{
     
    435290        return da.d;
    436291}
    437 
    438 long double __floatditf(long i)
    439 {
    440         float128 ta;
    441 
    442         ta = long_to_float128(i);
    443         return ta.ld;
    444 }
    445292 
    446293float __floattisf(long long i)
     
    451298        return fa.f;
    452299}
    453 
    454300double __floattidf(long long i)
    455301{
     
    460306}
    461307
    462 long double __floattitf(long long i)
    463 {
    464         float128 ta;
    465 
    466         ta = longlong_to_float128(i);
    467         return ta.ld;
    468 }
    469 
    470308float __floatunsisf(unsigned int i)
    471309{
     
    475313        return fa.f;
    476314}
    477 
    478315double __floatunsidf(unsigned int i)
    479316{
     
    483320        return da.d;
    484321}
    485 
    486 long double __floatunsitf(unsigned int i)
    487 {
    488         float128 ta;
    489 
    490         ta = uint_to_float128(i);
    491         return ta.ld;
    492 }
    493322 
    494323float __floatundisf(unsigned long i)
     
    499328        return fa.f;
    500329}
    501 
    502330double __floatundidf(unsigned long i)
    503331{
     
    507335        return da.d;
    508336}
    509 
    510 long double __floatunditf(unsigned long i)
    511 {
    512         float128 ta;
    513 
    514         ta = ulong_to_float128(i);
    515         return ta.ld;
    516 }
    517337 
    518338float __floatuntisf(unsigned long long i)
     
    523343        return fa.f;
    524344}
    525 
    526345double __floatuntidf(unsigned long long i)
    527346{
     
    532351}
    533352
    534 long double __floatuntitf(unsigned long long i)
    535 {
    536         float128 ta;
    537 
    538         ta = ulonglong_to_float128(i);
    539         return ta.ld;
    540 }
    541 
    542353/* Comparison functions */
     354/* Comparison functions */
     355
     356/* a<b .. -1
     357 * a=b ..  0
     358 * a>b ..  1
     359 * */
    543360
    544361int __cmpsf2(float a, float b)
     
    547364        fa.f = a;
    548365        fb.f = b;
    549 
    550         if ((isFloat32NaN(fa)) || (isFloat32NaN(fb))) {
     366        if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
    551367                return 1; /* no special constant for unordered - maybe signaled? */
    552         }
     368        };
     369
    553370       
    554371        if (isFloat32eq(fa, fb)) {
    555372                return 0;
    556         }
     373        };
    557374       
    558375        if (isFloat32lt(fa, fb)) {
    559376                return -1;
    560         }
    561 
     377                };
    562378        return 1;
    563379}
    564380
    565 int __cmpdf2(double a, double b)
    566 {
    567         float64 da, db;
    568         da.d = a;
    569         db.d = b;
    570 
    571         if ((isFloat64NaN(da)) || (isFloat64NaN(db))) {
    572                 return 1; /* no special constant for unordered - maybe signaled? */
    573         }
    574 
    575         if (isFloat64eq(da, db)) {
    576                 return 0;
    577         }
    578 
    579         if (isFloat64lt(da, db)) {
     381int __unordsf2(float a, float b)
     382{
     383        float32 fa, fb;
     384        fa.f = a;
     385        fb.f = b;
     386        return ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) );
     387}
     388
     389/**
     390 * @return zero, if neither argument is a NaN and are equal
     391 * */
     392int __eqsf2(float a, float b)
     393{
     394        float32 fa, fb;
     395        fa.f = a;
     396        fb.f = b;
     397        if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
     398                /* TODO: sigNaNs*/
     399                return 1;
     400                };
     401        return isFloat32eq(fa, fb) - 1;
     402}
     403
     404/* strange behavior, but it was in gcc documentation */
     405int __nesf2(float a, float b)
     406{
     407        return __eqsf2(a, b);
     408}
     409
     410/* return value >= 0 if a>=b and neither is NaN */
     411int __gesf2(float a, float b)
     412{
     413        float32 fa, fb;
     414        fa.f = a;
     415        fb.f = b;
     416        if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
     417                /* TODO: sigNaNs*/
    580418                return -1;
    581         }
    582 
    583         return 1;
    584 }
    585 
    586 int __cmptf2(long double a, long double b)
    587 {
    588         float128 ta, tb;
    589         ta.ld = a;
    590         tb.ld = b;
    591 
    592         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    593                 return 1; /* no special constant for unordered - maybe signaled? */
    594         }
    595 
    596         if (isFloat128eq(ta, tb)) {
    597                 return 0;
    598         }
    599 
    600         if (isFloat128lt(ta, tb)) {
    601                 return -1;
    602         }
    603 
    604         return 1;
    605 }
    606 
    607 int __unordsf2(float a, float b)
    608 {
    609         float32 fa, fb;
    610         fa.f = a;
    611         fb.f = b;
    612         return ((isFloat32NaN(fa)) || (isFloat32NaN(fb)));
    613 }
    614 
    615 int __unorddf2(double a, double b)
    616 {
    617         float64 da, db;
    618         da.d = a;
    619         db.d = b;
    620         return ((isFloat64NaN(da)) || (isFloat64NaN(db)));
    621 }
    622 
    623 int __unordtf2(long double a, long double b)
    624 {
    625         float128 ta, tb;
    626         ta.ld = a;
    627         tb.ld = b;
    628         return ((isFloat128NaN(ta)) || (isFloat128NaN(tb)));
    629 }
    630 
    631 int __eqsf2(float a, float b)
    632 {
    633         float32 fa, fb;
    634         fa.f = a;
    635         fb.f = b;
    636         if ((isFloat32NaN(fa)) || (isFloat32NaN(fb))) {
    637                 /* TODO: sigNaNs */
    638                 return 1;
    639         }
    640         return isFloat32eq(fa, fb) - 1;
    641 }
    642 
    643 int __eqdf2(double a, double b)
    644 {
    645         float64 da, db;
    646         da.d = a;
    647         db.d = b;
    648         if ((isFloat64NaN(da)) || (isFloat64NaN(db))) {
    649                 /* TODO: sigNaNs */
    650                 return 1;
    651         }
    652         return isFloat64eq(da, db) - 1;
    653 }
    654 
    655 int __eqtf2(long double a, long double b)
    656 {
    657         float128 ta, tb;
    658         ta.ld = a;
    659         tb.ld = b;
    660         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    661                 /* TODO: sigNaNs */
    662                 return 1;
    663         }
    664         return isFloat128eq(ta, tb) - 1;
    665 }
    666 
    667 int __nesf2(float a, float b)
    668 {
    669         /* strange behavior, but it was in gcc documentation */
    670         return __eqsf2(a, b);
    671 }
    672 
    673 int __nedf2(double a, double b)
    674 {
    675         /* strange behavior, but it was in gcc documentation */
    676         return __eqdf2(a, b);
    677 }
    678 
    679 int __netf2(long double a, long double b)
    680 {
    681         /* strange behavior, but it was in gcc documentation */
    682         return __eqtf2(a, b);
    683 }
    684 
    685 int __gesf2(float a, float b)
    686 {
    687         float32 fa, fb;
    688         fa.f = a;
    689         fb.f = b;
    690 
    691         if ((isFloat32NaN(fa)) || (isFloat32NaN(fb))) {
    692                 /* TODO: sigNaNs */
    693                 return -1;
    694         }
     419                };
    695420       
    696421        if (isFloat32eq(fa, fb)) {
    697422                return 0;
    698         }
     423        };
    699424       
    700425        if (isFloat32gt(fa, fb)) {
    701426                return 1;
    702         }
     427                };
    703428       
    704429        return -1;
    705430}
    706431
    707 int __gedf2(double a, double b)
    708 {
    709         float64 da, db;
    710         da.d = a;
    711         db.d = b;
    712 
    713         if ((isFloat64NaN(da)) || (isFloat64NaN(db))) {
    714                 /* TODO: sigNaNs */
    715                 return -1;
    716         }
    717 
    718         if (isFloat64eq(da, db)) {
    719                 return 0;
    720         }
    721 
    722         if (isFloat64gt(da, db)) {
     432/** Return negative value, if a<b and neither is NaN*/
     433int __ltsf2(float a, float b)
     434{
     435        float32 fa, fb;
     436        fa.f = a;
     437        fb.f = b;
     438        if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
     439                /* TODO: sigNaNs*/
    723440                return 1;
    724         }
    725 
    726         return -1;
    727 }
    728 
    729 int __getf2(long double a, long double b)
    730 {
    731         float128 ta, tb;
    732         ta.ld = a;
    733         tb.ld = b;
    734 
    735         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    736                 /* TODO: sigNaNs */
    737                 return -1;
    738         }
    739 
    740         if (isFloat128eq(ta, tb)) {
    741                 return 0;
    742         }
    743 
    744         if (isFloat128gt(ta, tb)) {
    745                 return 1;
    746         }
    747 
    748         return -1;
    749 }
    750 
    751 int __ltsf2(float a, float b)
    752 {
    753         float32 fa, fb;
    754         fa.f = a;
    755         fb.f = b;
    756 
    757         if ((isFloat32NaN(fa)) || (isFloat32NaN(fb))) {
    758                 /* TODO: sigNaNs */
    759                 return 1;
    760         }
    761 
     441                };
    762442        if (isFloat32lt(fa, fb)) {
    763443                return -1;
    764         }
    765 
     444                };
    766445        return 0;
    767446}
    768447
    769 int __ltdf2(double a, double b)
    770 {
    771         float64 da, db;
    772         da.d = a;
    773         db.d = b;
    774 
    775         if ((isFloat64NaN(da)) || (isFloat64NaN(db))) {
    776                 /* TODO: sigNaNs */
     448/* return value <= 0 if a<=b and neither is NaN */
     449int __lesf2(float a, float b)
     450{
     451        float32 fa, fb;
     452        fa.f = a;
     453        fb.f = b;
     454        if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
     455                /* TODO: sigNaNs*/
    777456                return 1;
    778         }
    779 
    780         if (isFloat64lt(da, db)) {
    781                 return -1;
    782         }
    783 
    784         return 0;
    785 }
    786 
    787 int __lttf2(long double a, long double b)
    788 {
    789         float128 ta, tb;
    790         ta.ld = a;
    791         tb.ld = b;
    792 
    793         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    794                 /* TODO: sigNaNs */
    795                 return 1;
    796         }
    797 
    798         if (isFloat128lt(ta, tb)) {
    799                 return -1;
    800         }
    801 
    802         return 0;
    803 }
    804 
    805 int __lesf2(float a, float b)
    806 {
    807         float32 fa, fb;
    808         fa.f = a;
    809         fb.f = b;
    810 
    811         if ((isFloat32NaN(fa)) || (isFloat32NaN(fb))) {
    812                 /* TODO: sigNaNs */
    813                 return 1;
    814         }
     457                };
    815458       
    816459        if (isFloat32eq(fa, fb)) {
    817460                return 0;
    818         }
     461        };
    819462       
    820463        if (isFloat32lt(fa, fb)) {
    821464                return -1;
    822         }
     465                };
    823466       
    824467        return 1;
    825468}
    826469
    827 int __ledf2(double a, double b)
    828 {
    829         float64 da, db;
    830         da.d = a;
    831         db.d = b;
    832 
    833         if ((isFloat64NaN(da)) || (isFloat64NaN(db))) {
    834                 /* TODO: sigNaNs */
    835                 return 1;
    836         }
    837 
    838         if (isFloat64eq(da, db)) {
    839                 return 0;
    840         }
    841 
    842         if (isFloat64lt(da, db)) {
     470/** Return positive value, if a>b and neither is NaN*/
     471int __gtsf2(float a, float b)
     472{
     473        float32 fa, fb;
     474        fa.f = a;
     475        fb.f = b;
     476        if ( (isFloat32NaN(fa)) || (isFloat32NaN(fb)) ) {
     477                /* TODO: sigNaNs*/
    843478                return -1;
    844         }
    845 
    846         return 1;
    847 }
    848 
    849 int __letf2(long double a, long double b)
    850 {
    851         float128 ta, tb;
    852         ta.ld = a;
    853         tb.ld = b;
    854 
    855         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    856                 /* TODO: sigNaNs */
    857                 return 1;
    858         }
    859 
    860         if (isFloat128eq(ta, tb)) {
    861                 return 0;
    862         }
    863 
    864         if (isFloat128lt(ta, tb)) {
    865                 return -1;
    866         }
    867 
    868         return 1;
    869 }
    870 
    871 int __gtsf2(float a, float b)
    872 {
    873         float32 fa, fb;
    874         fa.f = a;
    875         fb.f = b;
    876 
    877         if ((isFloat32NaN(fa)) || (isFloat32NaN(fb))) {
    878                 /* TODO: sigNaNs */
    879                 return -1;
    880         }
    881 
     479                };
    882480        if (isFloat32gt(fa, fb)) {
    883481                return 1;
    884         }
    885 
     482                };
    886483        return 0;
    887484}
    888485
    889 int __gtdf2(double a, double b)
    890 {
    891         float64 da, db;
    892         da.d = a;
    893         db.d = b;
    894 
    895         if ((isFloat64NaN(da)) || (isFloat64NaN(db))) {
    896                 /* TODO: sigNaNs */
    897                 return -1;
    898         }
    899 
    900         if (isFloat64gt(da, db)) {
    901                 return 1;
    902         }
    903 
    904         return 0;
    905 }
    906 
    907 int __gttf2(long double a, long double b)
    908 {
    909         float128 ta, tb;
    910         ta.ld = a;
    911         tb.ld = b;
    912 
    913         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    914                 /* TODO: sigNaNs */
    915                 return -1;
    916         }
    917 
    918         if (isFloat128gt(ta, tb)) {
    919                 return 1;
    920         }
    921 
    922         return 0;
    923 }
    924 
    925 
    926 
    927 #ifdef SPARC_SOFTFLOAT
    928 
    929 /* SPARC quadruple-precision wrappers */
    930 
    931 void _Qp_add(long double *c, long double *a, long double *b)
    932 {
    933         *c = __addtf3(*a, *b);
    934 }
    935 
    936 void _Qp_sub(long double *c, long double *a, long double *b)
    937 {
    938         *c = __subtf3(*a, *b);
    939 }
    940 
    941 void _Qp_mul(long double *c, long double *a, long double *b)
    942 {
    943         *c = __multf3(*a, *b);
    944 }
    945 
    946 void _Qp_div(long double *c, long double *a, long double *b)
    947 {
    948         *c = __divtf3(*a, *b);
    949 }
    950 
    951 void _Qp_neg(long double *c, long double *a)
    952 {
    953         *c = __negtf2(*a);
    954 }
    955 
    956 void _Qp_stoq(long double *c, float a)
    957 {
    958         *c = __extendsftf2(a);
    959 }
    960 
    961 void _Qp_dtoq(long double *c, double a)
    962 {
    963         *c = __extenddftf2(a);
    964 }
    965 
    966 float _Qp_qtos(long double *a)
    967 {
    968         return __trunctfsf2(*a);
    969 }
    970 
    971 double _Qp_qtod(long double *a)
    972 {
    973         return __trunctfdf2(*a);
    974 }
    975 
    976 int _Qp_qtoi(long double *a)
    977 {
    978         return __fixtfsi(*a);
    979 }
    980 
    981 unsigned int _Qp_qtoui(long double *a)
    982 {
    983         return __fixunstfsi(*a);
    984 }
    985 
    986 long _Qp_qtox(long double *a)
    987 {
    988         return __fixtfdi(*a);
    989 }
    990 
    991 unsigned long _Qp_qtoux(long double *a)
    992 {
    993         return __fixunstfdi(*a);
    994 }
    995 
    996 void _Qp_itoq(long double *c, int a)
    997 {
    998         *c = __floatsitf(a);
    999 }
    1000 
    1001 void _Qp_uitoq(long double *c, unsigned int a)
    1002 {
    1003         *c = __floatunsitf(a);
    1004 }
    1005 
    1006 void _Qp_xtoq(long double *c, long a)
    1007 {
    1008         *c = __floatditf(a);
    1009 }
    1010 
    1011 void _Qp_uxtoq(long double *c, unsigned long a)
    1012 {
    1013         *c = __floatunditf(a);
    1014 }
    1015 
    1016 int _Qp_cmp(long double *a, long double *b)
    1017 {
    1018         float128 ta, tb;
    1019         ta.ld = *a;
    1020         tb.ld = *b;
    1021 
    1022         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    1023                 return 3;
    1024         }
    1025 
    1026         if (isFloat128eq(ta, tb)) {
    1027                 return 0;
    1028         }
    1029 
    1030         if (isFloat128lt(ta, tb)) {
    1031                 return 1;
    1032         }
    1033 
    1034         return 2;
    1035 }
    1036 
    1037 int _Qp_cmpe(long double *a, long double *b)
    1038 {
    1039         /* strange, but is defined this way in SPARC Compliance Definition */
    1040         return _Qp_cmp(a, b);
    1041 }
    1042 
    1043 int _Qp_feq(long double *a, long double *b)
    1044 {
    1045         float128 ta, tb;
    1046         ta.ld = *a;
    1047         tb.ld = *b;
    1048 
    1049         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    1050                 return 0;
    1051         }
    1052 
    1053         return isFloat128eq(ta, tb);
    1054 }
    1055 
    1056 int _Qp_fge(long double *a, long double *b)
    1057 {
    1058         float128 ta, tb;
    1059         ta.ld = *a;
    1060         tb.ld = *b;
    1061 
    1062         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    1063                 return 0;
    1064         }
    1065 
    1066         return isFloat128eq(ta, tb) || isFloat128gt(ta, tb);
    1067 }
    1068 
    1069 int _Qp_fgt(long double *a, long double *b)
    1070 {
    1071         float128 ta, tb;
    1072         ta.ld = *a;
    1073         tb.ld = *b;
    1074 
    1075         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    1076                 return 0;
    1077         }
    1078 
    1079         return isFloat128gt(ta, tb);
    1080 }
    1081 
    1082 int _Qp_fle(long double*a, long double *b)
    1083 {
    1084         float128 ta, tb;
    1085         ta.ld = *a;
    1086         tb.ld = *b;
    1087 
    1088         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    1089                 return 0;
    1090         }
    1091 
    1092         return isFloat128eq(ta, tb) || isFloat128lt(ta, tb);
    1093 }
    1094 
    1095 int _Qp_flt(long double *a, long double *b)
    1096 {
    1097         float128 ta, tb;
    1098         ta.ld = *a;
    1099         tb.ld = *b;
    1100 
    1101         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    1102                 return 0;
    1103         }
    1104 
    1105         return isFloat128lt(ta, tb);
    1106 }
    1107 
    1108 int _Qp_fne(long double *a, long double *b)
    1109 {
    1110         float128 ta, tb;
    1111         ta.ld = *a;
    1112         tb.ld = *b;
    1113 
    1114         if ((isFloat128NaN(ta)) || (isFloat128NaN(tb))) {
    1115                 return 1;
    1116         }
    1117 
    1118         return !isFloat128eq(ta, tb);
    1119 }
    1120 
    1121 #endif
     486/* Other functions */
     487
     488float __powisf2(float a, int b)
     489{
     490/* TODO: */
     491        float32 fa;
     492        fa.binary = FLOAT32_NAN;
     493        return fa.f;
     494}
    1122495
    1123496/** @}
  • uspace/lib/softfloat/generic/sub.c

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Substraction functions.
     32/** @file
    3433 */
    3534
     
    3736#include <sub.h>
    3837#include <comparison.h>
    39 #include <common.h>
    40 
    41 /**
    42  * Subtract two single-precision floats with the same signs.
    43  *
    44  * @param a First input operand.
    45  * @param b Second input operand.
    46  * @return Result of substraction.
     38
     39/** Subtract two float32 numbers with same signs
    4740 */
    4841float32 subFloat32(float32 a, float32 b)
     
    5952                        /* TODO: fix SigNaN */
    6053                        if (isFloat32SigNaN(b)) {
    61                         }
    62                         return b;
    63                 }
     54                        };
     55                        return b;
     56                };
    6457               
    6558                if (b.parts.exp == FLOAT32_MAX_EXPONENT) {
     
    7972                        /* TODO: fix SigNaN */
    8073                        if (isFloat32SigNaN(a) || isFloat32SigNaN(b)) {
    81                         }
    82                         return a;
    83                 }
     74                        };
     75                        return a;
     76                };
    8477               
    8578                if (a.parts.exp == FLOAT32_MAX_EXPONENT) {
     
    8982                                result.binary = FLOAT32_NAN;
    9083                                return result;
    91                         }
     84                        };
    9285                        return a;
    9386                }
     
    9992                frac2 = b.parts.fraction;
    10093                exp2 = b.parts.exp;     
    101         }
     94        };
     95       
     96        if (exp1 == 0) {
     97                /* both are denormalized */
     98                result.parts.fraction = frac1-frac2;
     99                if (result.parts.fraction > frac1) {
     100                        /* TODO: underflow exception */
     101                        return result;
     102                };
     103                result.parts.exp = 0;
     104                return result;
     105        };
     106
     107        /* add hidden bit */
     108        frac1 |= FLOAT32_HIDDEN_BIT_MASK;
     109       
     110        if (exp2 == 0) {
     111                /* denormalized */
     112                --expdiff;     
     113        } else {
     114                /* normalized */
     115                frac2 |= FLOAT32_HIDDEN_BIT_MASK;
     116        };
     117       
     118        /* create some space for rounding */
     119        frac1 <<= 6;
     120        frac2 <<= 6;
     121       
     122        if (expdiff > FLOAT32_FRACTION_SIZE + 1) {
     123             goto done;
     124             };
     125       
     126        frac1 = frac1 - (frac2 >> expdiff);
     127done:
     128        /* TODO: find first nonzero digit and shift result and detect possibly underflow */
     129        while ((exp1 > 0) && (!(frac1 & (FLOAT32_HIDDEN_BIT_MASK << 6 )))) {
     130                --exp1;
     131                frac1 <<= 1;
     132                        /* TODO: fix underflow - frac1 == 0 does not necessary means underflow... */
     133        };
     134       
     135        /* rounding - if first bit after fraction is set then round up */
     136        frac1 += 0x20;
     137
     138        if (frac1 & (FLOAT32_HIDDEN_BIT_MASK << 7)) {
     139                ++exp1;
     140                frac1 >>= 1;
     141        };
     142       
     143        /*Clear hidden bit and shift */
     144        result.parts.fraction = ((frac1 >> 6) & (~FLOAT32_HIDDEN_BIT_MASK));
     145        result.parts.exp = exp1;
     146       
     147        return result;
     148}
     149
     150/** Subtract two float64 numbers with same signs
     151 */
     152float64 subFloat64(float64 a, float64 b)
     153{
     154        int expdiff;
     155        uint32_t exp1, exp2;
     156        uint64_t frac1, frac2;
     157        float64 result;
     158
     159        result.d = 0;
     160       
     161        expdiff = a.parts.exp - b.parts.exp;
     162        if ((expdiff < 0 ) || ((expdiff == 0) && (a.parts.fraction < b.parts.fraction))) {
     163                if (isFloat64NaN(b)) {
     164                        /* TODO: fix SigNaN */
     165                        if (isFloat64SigNaN(b)) {
     166                        };
     167                        return b;
     168                };
     169               
     170                if (b.parts.exp == FLOAT64_MAX_EXPONENT) {
     171                        b.parts.sign = !b.parts.sign; /* num -(+-inf) = -+inf */
     172                        return b;
     173                }
     174               
     175                result.parts.sign = !a.parts.sign;
     176               
     177                frac1 = b.parts.fraction;
     178                exp1 = b.parts.exp;
     179                frac2 = a.parts.fraction;
     180                exp2 = a.parts.exp;
     181                expdiff *= -1;
     182        } else {
     183                if (isFloat64NaN(a)) {
     184                        /* TODO: fix SigNaN */
     185                        if (isFloat64SigNaN(a) || isFloat64SigNaN(b)) {
     186                        };
     187                        return a;
     188                };
     189               
     190                if (a.parts.exp == FLOAT64_MAX_EXPONENT) {
     191                        if (b.parts.exp == FLOAT64_MAX_EXPONENT) {
     192                                /* inf - inf => nan */
     193                                /* TODO: fix exception */
     194                                result.binary = FLOAT64_NAN;
     195                                return result;
     196                        };
     197                        return a;
     198                }
     199               
     200                result.parts.sign = a.parts.sign;
     201               
     202                frac1 = a.parts.fraction;
     203                exp1 = a.parts.exp;
     204                frac2 = b.parts.fraction;
     205                exp2 = b.parts.exp;     
     206        };
    102207       
    103208        if (exp1 == 0) {
     
    107212                        /* TODO: underflow exception */
    108213                        return result;
    109                 }
     214                };
    110215                result.parts.exp = 0;
    111216                return result;
    112         }
     217        };
    113218
    114219        /* add hidden bit */
    115         frac1 |= FLOAT32_HIDDEN_BIT_MASK;
     220        frac1 |= FLOAT64_HIDDEN_BIT_MASK;
    116221       
    117222        if (exp2 == 0) {
     
    120225        } else {
    121226                /* normalized */
    122                 frac2 |= FLOAT32_HIDDEN_BIT_MASK;
    123         }
     227                frac2 |= FLOAT64_HIDDEN_BIT_MASK;
     228        };
    124229       
    125230        /* create some space for rounding */
     
    127232        frac2 <<= 6;
    128233       
    129         if (expdiff > FLOAT32_FRACTION_SIZE + 1) {
    130                 goto done;
    131         }
     234        if (expdiff > FLOAT64_FRACTION_SIZE + 1) {
     235             goto done;
     236             };
    132237       
    133238        frac1 = frac1 - (frac2 >> expdiff);
    134 
    135 done:
    136         /* TODO: find first nonzero digit and shift result and detect possibly underflow */
    137         while ((exp1 > 0) && (!(frac1 & (FLOAT32_HIDDEN_BIT_MASK << 6 )))) {
    138                 --exp1;
    139                 frac1 <<= 1;
    140                 /* TODO: fix underflow - frac1 == 0 does not necessary means underflow... */
    141         }
    142        
    143         /* rounding - if first bit after fraction is set then round up */
    144         frac1 += 0x20;
    145 
    146         if (frac1 & (FLOAT32_HIDDEN_BIT_MASK << 7)) {
    147                 ++exp1;
    148                 frac1 >>= 1;
    149         }
    150        
    151         /* Clear hidden bit and shift */
    152         result.parts.fraction = ((frac1 >> 6) & (~FLOAT32_HIDDEN_BIT_MASK));
    153         result.parts.exp = exp1;
    154        
    155         return result;
    156 }
    157 
    158 /**
    159  * Subtract two double-precision floats with the same signs.
    160  *
    161  * @param a First input operand.
    162  * @param b Second input operand.
    163  * @return Result of substraction.
    164  */
    165 float64 subFloat64(float64 a, float64 b)
    166 {
    167         int expdiff;
    168         uint32_t exp1, exp2;
    169         uint64_t frac1, frac2;
    170         float64 result;
    171 
    172         result.d = 0;
    173        
    174         expdiff = a.parts.exp - b.parts.exp;
    175         if ((expdiff < 0 ) || ((expdiff == 0) && (a.parts.fraction < b.parts.fraction))) {
    176                 if (isFloat64NaN(b)) {
    177                         /* TODO: fix SigNaN */
    178                         if (isFloat64SigNaN(b)) {
    179                         }
    180                         return b;
    181                 }
    182                
    183                 if (b.parts.exp == FLOAT64_MAX_EXPONENT) {
    184                         b.parts.sign = !b.parts.sign; /* num -(+-inf) = -+inf */
    185                         return b;
    186                 }
    187                
    188                 result.parts.sign = !a.parts.sign;
    189                
    190                 frac1 = b.parts.fraction;
    191                 exp1 = b.parts.exp;
    192                 frac2 = a.parts.fraction;
    193                 exp2 = a.parts.exp;
    194                 expdiff *= -1;
    195         } else {
    196                 if (isFloat64NaN(a)) {
    197                         /* TODO: fix SigNaN */
    198                         if (isFloat64SigNaN(a) || isFloat64SigNaN(b)) {
    199                         }
    200                         return a;
    201                 }
    202                
    203                 if (a.parts.exp == FLOAT64_MAX_EXPONENT) {
    204                         if (b.parts.exp == FLOAT64_MAX_EXPONENT) {
    205                                 /* inf - inf => nan */
    206                                 /* TODO: fix exception */
    207                                 result.binary = FLOAT64_NAN;
    208                                 return result;
    209                         }
    210                         return a;
    211                 }
    212                
    213                 result.parts.sign = a.parts.sign;
    214                
    215                 frac1 = a.parts.fraction;
    216                 exp1 = a.parts.exp;
    217                 frac2 = b.parts.fraction;
    218                 exp2 = b.parts.exp;     
    219         }
    220        
    221         if (exp1 == 0) {
    222                 /* both are denormalized */
    223                 result.parts.fraction = frac1 - frac2;
    224                 if (result.parts.fraction > frac1) {
    225                         /* TODO: underflow exception */
    226                         return result;
    227                 }
    228                 result.parts.exp = 0;
    229                 return result;
    230         }
    231 
    232         /* add hidden bit */
    233         frac1 |= FLOAT64_HIDDEN_BIT_MASK;
    234        
    235         if (exp2 == 0) {
    236                 /* denormalized */
    237                 --expdiff;     
    238         } else {
    239                 /* normalized */
    240                 frac2 |= FLOAT64_HIDDEN_BIT_MASK;
    241         }
    242        
    243         /* create some space for rounding */
    244         frac1 <<= 6;
    245         frac2 <<= 6;
    246        
    247         if (expdiff > FLOAT64_FRACTION_SIZE + 1) {
    248                 goto done;
    249         }
    250        
    251         frac1 = frac1 - (frac2 >> expdiff);
    252 
    253239done:
    254240        /* TODO: find first nonzero digit and shift result and detect possibly underflow */
     
    256242                --exp1;
    257243                frac1 <<= 1;
    258                 /* TODO: fix underflow - frac1 == 0 does not necessary means underflow... */
    259         }
     244                        /* TODO: fix underflow - frac1 == 0 does not necessary means underflow... */
     245        };
    260246       
    261247        /* rounding - if first bit after fraction is set then round up */
     
    265251                ++exp1;
    266252                frac1 >>= 1;
    267         }
    268        
    269         /* Clear hidden bit and shift */
     253        };
     254       
     255        /*Clear hidden bit and shift */
    270256        result.parts.fraction = ((frac1 >> 6) & (~FLOAT64_HIDDEN_BIT_MASK));
    271257        result.parts.exp = exp1;
     
    274260}
    275261
    276 /**
    277  * Subtract two quadruple-precision floats with the same signs.
    278  *
    279  * @param a First input operand.
    280  * @param b Second input operand.
    281  * @return Result of substraction.
    282  */
    283 float128 subFloat128(float128 a, float128 b)
    284 {
    285         int expdiff;
    286         uint32_t exp1, exp2;
    287         uint64_t frac1_hi, frac1_lo, frac2_hi, frac2_lo, tmp_hi, tmp_lo;
    288         float128 result;
    289 
    290         result.binary.hi = 0;
    291         result.binary.lo = 0;
    292 
    293         expdiff = a.parts.exp - b.parts.exp;
    294         if ((expdiff < 0 ) || ((expdiff == 0) &&
    295             lt128(a.parts.frac_hi, a.parts.frac_lo, b.parts.frac_hi, b.parts.frac_lo))) {
    296                 if (isFloat128NaN(b)) {
    297                         /* TODO: fix SigNaN */
    298                         if (isFloat128SigNaN(b)) {
    299                         }
    300                         return b;
    301                 }
    302 
    303                 if (b.parts.exp == FLOAT128_MAX_EXPONENT) {
    304                         b.parts.sign = !b.parts.sign; /* num -(+-inf) = -+inf */
    305                         return b;
    306                 }
    307 
    308                 result.parts.sign = !a.parts.sign;
    309 
    310                 frac1_hi = b.parts.frac_hi;
    311                 frac1_lo = b.parts.frac_lo;
    312                 exp1 = b.parts.exp;
    313                 frac2_hi = a.parts.frac_hi;
    314                 frac2_lo = a.parts.frac_lo;
    315                 exp2 = a.parts.exp;
    316                 expdiff *= -1;
    317         } else {
    318                 if (isFloat128NaN(a)) {
    319                         /* TODO: fix SigNaN */
    320                         if (isFloat128SigNaN(a) || isFloat128SigNaN(b)) {
    321                         }
    322                         return a;
    323                 }
    324 
    325                 if (a.parts.exp == FLOAT128_MAX_EXPONENT) {
    326                         if (b.parts.exp == FLOAT128_MAX_EXPONENT) {
    327                                 /* inf - inf => nan */
    328                                 /* TODO: fix exception */
    329                                 result.binary.hi = FLOAT128_NAN_HI;
    330                                 result.binary.lo = FLOAT128_NAN_LO;
    331                                 return result;
    332                         }
    333                         return a;
    334                 }
    335 
    336                 result.parts.sign = a.parts.sign;
    337 
    338                 frac1_hi = a.parts.frac_hi;
    339                 frac1_lo = a.parts.frac_lo;
    340                 exp1 = a.parts.exp;
    341                 frac2_hi = b.parts.frac_hi;
    342                 frac2_lo = b.parts.frac_lo;
    343                 exp2 = b.parts.exp;
    344         }
    345 
    346         if (exp1 == 0) {
    347                 /* both are denormalized */
    348                 sub128(frac1_hi, frac1_lo, frac2_hi, frac2_lo, &tmp_hi, &tmp_lo);
    349                 result.parts.frac_hi = tmp_hi;
    350                 result.parts.frac_lo = tmp_lo;
    351                 if (lt128(frac1_hi, frac1_lo, result.parts.frac_hi, result.parts.frac_lo)) {
    352                         /* TODO: underflow exception */
    353                         return result;
    354                 }
    355                 result.parts.exp = 0;
    356                 return result;
    357         }
    358 
    359         /* add hidden bit */
    360         or128(frac1_hi, frac1_lo,
    361             FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    362             &frac1_hi, &frac1_lo);
    363 
    364         if (exp2 == 0) {
    365                 /* denormalized */
    366                 --expdiff;
    367         } else {
    368                 /* normalized */
    369                 or128(frac2_hi, frac2_lo,
    370                     FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    371                     &frac2_hi, &frac2_lo);
    372         }
    373 
    374         /* create some space for rounding */
    375         lshift128(frac1_hi, frac1_lo, 6, &frac1_hi, &frac1_lo);
    376         lshift128(frac2_hi, frac2_lo, 6, &frac2_hi, &frac2_lo);
    377 
    378         if (expdiff > FLOAT128_FRACTION_SIZE + 1) {
    379                 goto done;
    380         }
    381 
    382         rshift128(frac2_hi, frac2_lo, expdiff, &tmp_hi, &tmp_lo);
    383         sub128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &frac1_hi, &frac1_lo);
    384 
    385 done:
    386         /* TODO: find first nonzero digit and shift result and detect possibly underflow */
    387         lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO, 6,
    388             &tmp_hi, &tmp_lo);
    389         and128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    390         while ((exp1 > 0) && (!lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo))) {
    391                 --exp1;
    392                 lshift128(frac1_hi, frac1_lo, 1, &frac1_hi, &frac1_lo);
    393                 /* TODO: fix underflow - frac1 == 0 does not necessary means underflow... */
    394 
    395                 lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO, 6,
    396                     &tmp_hi, &tmp_lo);
    397                 and128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    398         }
    399 
    400         /* rounding - if first bit after fraction is set then round up */
    401         add128(frac1_hi, frac1_lo, 0x0ll, 0x20ll, &frac1_hi, &frac1_lo);
    402 
    403         lshift128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO, 7,
    404            &tmp_hi, &tmp_lo);
    405         and128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    406         if (lt128(0x0ll, 0x0ll, tmp_hi, tmp_lo)) {
    407                 ++exp1;
    408                 rshift128(frac1_hi, frac1_lo, 1, &frac1_hi, &frac1_lo);
    409         }
    410 
    411         /* Clear hidden bit and shift */
    412         rshift128(frac1_hi, frac1_lo, 6, &frac1_hi, &frac1_lo);
    413         not128(FLOAT128_HIDDEN_BIT_MASK_HI, FLOAT128_HIDDEN_BIT_MASK_LO,
    414             &tmp_hi, &tmp_lo);
    415         and128(frac1_hi, frac1_lo, tmp_hi, tmp_lo, &tmp_hi, &tmp_lo);
    416         result.parts.frac_hi = tmp_hi;
    417         result.parts.frac_lo = tmp_lo;
    418 
    419         result.parts.exp = exp1;
    420 
    421         return result;
    422 }
    423 
    424262/** @}
    425263 */
  • uspace/lib/softfloat/include/add.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Addition functions.
     32/** @file
    3433 */
    3534
     
    3938extern float32 addFloat32(float32, float32);
    4039extern float64 addFloat64(float64, float64);
    41 extern float128 addFloat128(float128, float128);
    4240
    4341#endif
  • uspace/lib/softfloat/include/common.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Common helper operations.
     32/** @file
    3433 */
    3534
     
    4039
    4140extern float64 finishFloat64(int32_t, uint64_t, char);
    42 extern float128 finishFloat128(int32_t, uint64_t, uint64_t, char, uint64_t);
    4341
     42extern int countZeroes64(uint64_t);
     43extern int countZeroes32(uint32_t);
    4444extern int countZeroes8(uint8_t);
    45 extern int countZeroes32(uint32_t);
    46 extern int countZeroes64(uint64_t);
    4745
    4846extern void roundFloat32(int32_t *, uint32_t *);
    4947extern void roundFloat64(int32_t *, uint64_t *);
    50 extern void roundFloat128(int32_t *, uint64_t *, uint64_t *);
    51 
    52 extern void lshift128(uint64_t, uint64_t, int, uint64_t *, uint64_t *);
    53 extern void rshift128(uint64_t, uint64_t, int, uint64_t *, uint64_t *);
    54 
    55 extern void and128(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t *, uint64_t *);
    56 extern void or128(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t *, uint64_t *);
    57 extern void xor128(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t *, uint64_t *);
    58 extern void not128(uint64_t, uint64_t, uint64_t *, uint64_t *);
    59 
    60 extern int eq128(uint64_t, uint64_t, uint64_t, uint64_t);
    61 extern int le128(uint64_t, uint64_t, uint64_t, uint64_t);
    62 extern int lt128(uint64_t, uint64_t, uint64_t, uint64_t);
    63 
    64 extern void add128(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t *, uint64_t *);
    65 extern void sub128(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t *, uint64_t *);
    66 
    67 extern void mul64(uint64_t, uint64_t, uint64_t *, uint64_t *);
    68 extern void mul128(uint64_t, uint64_t, uint64_t, uint64_t,
    69     uint64_t *, uint64_t *, uint64_t *, uint64_t *);
    70 
    71 extern uint64_t div128est(uint64_t, uint64_t, uint64_t);
    7248
    7349#endif
  • uspace/lib/softfloat/include/comparison.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Comparison functions.
     32/** @file
    3433 */
    3534
     
    4342extern int isFloat32Zero(float32);
    4443
    45 extern int isFloat32eq(float32, float32);
    46 extern int isFloat32lt(float32, float32);
    47 extern int isFloat32gt(float32, float32);
    48 
    4944extern int isFloat64NaN(float64);
    5045extern int isFloat64SigNaN(float64);
     
    5348extern int isFloat64Zero(float64);
    5449
    55 extern int isFloat64eq(float64, float64);
    56 extern int isFloat64lt(float64, float64);
    57 extern int isFloat64gt(float64, float64);
    58 
    59 extern int isFloat128NaN(float128);
    60 extern int isFloat128SigNaN(float128);
    61 
    62 extern int isFloat128Infinity(float128);
    63 extern int isFloat128Zero(float128);
    64 
    65 extern int isFloat128eq(float128, float128);
    66 extern int isFloat128lt(float128, float128);
    67 extern int isFloat128gt(float128, float128);
     50extern int isFloat32eq(float32, float32);
     51extern int isFloat32lt(float32, float32);
     52extern int isFloat32gt(float32, float32);
    6853
    6954#endif
  • uspace/lib/softfloat/include/conversion.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Conversion of precision and conversion between integers and floats.
     32/** @file
    3433 */
    3534
     
    3837
    3938extern float64 convertFloat32ToFloat64(float32);
    40 extern float128 convertFloat32ToFloat128(float32);
    41 extern float128 convertFloat64ToFloat128(float64);
    42 
    43 
    4439extern float32 convertFloat64ToFloat32(float64);
    45 extern float32 convertFloat128ToFloat32(float128);
    46 extern float64 convertFloat128ToFloat64(float128);
    47 
    4840
    4941extern uint32_t float32_to_uint32(float32);
     
    5345extern int64_t float32_to_int64(float32);
    5446
    55 extern uint32_t float64_to_uint32(float64);
    56 extern int32_t float64_to_int32(float64);
    57 
    5847extern uint64_t float64_to_uint64(float64);
    5948extern int64_t float64_to_int64(float64);
    6049
    61 extern uint32_t float128_to_uint32(float128);
    62 extern int32_t float128_to_int32(float128);
    63 
    64 extern uint64_t float128_to_uint64(float128);
    65 extern int64_t float128_to_int64(float128);
    66 
     50extern uint32_t float64_to_uint32(float64);
     51extern int32_t float64_to_int32(float64);
    6752
    6853extern float32 uint32_to_float32(uint32_t);
     
    7863extern float64 int64_to_float64(int64_t);
    7964
    80 extern float128 uint32_to_float128(uint32_t);
    81 extern float128 int32_to_float128(int32_t);
    82 
    83 extern float128 uint64_to_float128(uint64_t);
    84 extern float128 int64_to_float128(int64_t);
    85 
    8665#endif
    8766
  • uspace/lib/softfloat/include/div.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Division functions.
     32/** @file
    3433 */
    3534
     
    3938extern float32 divFloat32(float32, float32);
    4039extern float64 divFloat64(float64, float64);
    41 extern float128 divFloat128(float128, float128);
     40
     41extern uint64_t divFloat64estim(uint64_t, uint64_t);
    4242
    4343#endif
  • uspace/lib/softfloat/include/mul.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Multiplication functions.
     32/** @file
    3433 */
    3534
     
    3938extern float32 mulFloat32(float32, float32);
    4039extern float64 mulFloat64(float64, float64);
    41 extern float128 mulFloat128(float128, float128);
     40
     41extern void mul64integers(uint64_t, uint64_t, uint64_t *, uint64_t *);
    4242
    4343#endif
  • uspace/lib/softfloat/include/other.h

    rdb6e419 r45058baa  
    3030 * @{
    3131 */
    32 /** @file Other functions (power, complex).
     32/** @file
    3333 */
    3434
  • uspace/lib/softfloat/include/sftypes.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Floating point types and constants.
     32/** @file
    3433 */
    3534
     
    7877} float64;
    7978
    80 typedef union {
    81         long double ld;
    82         struct {
    83 #if defined(__BE__)
    84                 uint64_t hi;
    85                 uint64_t lo;
    86 #elif defined(__LE__)
    87                 uint64_t lo;
    88                 uint64_t hi;
    89 #else
    90         #error Unknown endianess
    91 #endif
    92         } binary;
    93 
    94         struct {
    95 #if defined(__BE__)
    96                 uint64_t sign : 1;
    97                 uint64_t exp : 15;
    98                 uint64_t frac_hi : 48;
    99                 uint64_t frac_lo : 64;
    100 #elif defined(__LE__)
    101                 uint64_t frac_lo : 64;
    102                 uint64_t frac_hi : 48;
    103                 uint64_t exp : 15;
    104                 uint64_t sign : 1;
    105 #else
    106         #error Unknown endianess
    107 #endif
    108         } parts __attribute__ ((packed));
    109 } float128;
     79#define FLOAT32_MAX  0x7f800000
     80#define FLOAT32_MIN  0xff800000
     81#define FLOAT64_MAX
     82#define FLOAT64_MIN
    11083
    11184/*
    112  * For recognizing NaNs or infinity use specialized comparison functions,
     85 * For recognizing NaNs or infinity use isFloat32NaN and is Float32Inf,
    11386 * comparing with these constants is not sufficient.
    11487 */
     
    12295#define FLOAT64_INF     0x7FF0000000000000ll
    12396
    124 #define FLOAT128_NAN_HI     0x7FFF800000000000ll
    125 #define FLOAT128_NAN_LO     0x0000000000000001ll
    126 #define FLOAT128_SIGNAN_HI  0x7FFF000000000000ll
    127 #define FLOAT128_SIGNAN_LO  0x0000000000000001ll
    128 #define FLOAT128_INF_HI     0x7FFF000000000000ll
    129 #define FLOAT128_INF_LO     0x0000000000000000ll
     97#define FLOAT32_FRACTION_SIZE  23
     98#define FLOAT64_FRACTION_SIZE  52
    13099
    131 #define FLOAT32_FRACTION_SIZE   23
    132 #define FLOAT64_FRACTION_SIZE   52
    133 #define FLOAT128_FRACTION_SIZE 112
    134 #define FLOAT128_FRAC_HI_SIZE   48
    135 #define FLOAT128_FRAC_LO_SIZE   64
    136 
    137 #define FLOAT32_HIDDEN_BIT_MASK      0x800000
    138 #define FLOAT64_HIDDEN_BIT_MASK      0x10000000000000ll
    139 #define FLOAT128_HIDDEN_BIT_MASK_HI  0x1000000000000ll
    140 #define FLOAT128_HIDDEN_BIT_MASK_LO  0x0000000000000000ll
     100#define FLOAT32_HIDDEN_BIT_MASK  0x800000
     101#define FLOAT64_HIDDEN_BIT_MASK  0x10000000000000ll
    141102
    142103#define FLOAT32_MAX_EXPONENT  0xFF
    143104#define FLOAT64_MAX_EXPONENT  0x7FF
    144 #define FLOAT128_MAX_EXPONENT 0x7FFF
    145105
    146106#define FLOAT32_BIAS  0x7F
    147107#define FLOAT64_BIAS  0x3FF
    148108#define FLOAT80_BIAS  0x3FFF
    149 #define FLOAT128_BIAS 0x3FFF
    150109
    151110#endif
  • uspace/lib/softfloat/include/softfloat.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Softfloat API.
     32/** @file
    3433 */
    3534
     
    157156extern int __ltdf2(double, double);
    158157extern int __lttf2(long double, long double);
    159 
    160158extern int __lesf2(float, float);
    161159extern int __ledf2(double, double);
     
    168166/* Not implemented yet */
    169167extern float __powisf2(float, int);
    170 extern double __powidf2 (double, int);
    171 extern long double __powitf2 (long double, int);
    172 extern long double __powixf2 (long double, int);
    173 
    174 
    175 
    176 /* SPARC quadruple-precision wrappers */
    177 
    178 extern void _Qp_add(long double *, long double *, long double *);
    179 extern void _Qp_sub(long double *, long double *, long double *);
    180 extern void _Qp_mul(long double *, long double *, long double *);
    181 extern void _Qp_div(long double *, long double *, long double *);
    182 extern void _Qp_neg(long double *, long double *);
    183 
    184 extern void _Qp_stoq(long double *, float);
    185 extern void _Qp_dtoq(long double *, double);
    186 extern float _Qp_qtos(long double *);
    187 extern double _Qp_qtod(long double *);
    188 
    189 extern int _Qp_qtoi(long double *);
    190 extern unsigned int _Qp_qtoui(long double *);
    191 extern long _Qp_qtox(long double *);
    192 extern unsigned long _Qp_qtoux(long double *);
    193 
    194 extern void _Qp_itoq(long double *, int);
    195 extern void _Qp_uitoq(long double *, unsigned int);
    196 extern void _Qp_xtoq(long double *, long);
    197 extern void _Qp_uxtoq(long double *, unsigned long);
    198 
    199 extern int _Qp_cmp(long double *, long double *);
    200 extern int _Qp_cmpe(long double *, long double *);
    201 extern int _Qp_feq(long double *, long double *);
    202 extern int _Qp_fge(long double *, long double *);
    203 extern int _Qp_fgt(long double *, long double *);
    204 extern int _Qp_fle(long double*, long double *);
    205 extern int _Qp_flt(long double *, long double *);
    206 extern int _Qp_fne(long double *, long double *);
    207 
    208 /* Not implemented yet */
    209 extern void _Qp_sqrt(long double *, long double *);
    210168
    211169#endif
  • uspace/lib/softfloat/include/sub.h

    rdb6e419 r45058baa  
    11/*
    22 * Copyright (c) 2005 Josef Cejka
    3  * Copyright (c) 2011 Petr Koupy
    43 * All rights reserved.
    54 *
     
    3130 * @{
    3231 */
    33 /** @file Substraction functions.
     32/** @file
    3433 */
    3534
     
    3938extern float32 subFloat32(float32, float32);
    4039extern float64 subFloat64(float64, float64);
    41 extern float128 subFloat128(float128, float128);
    4240
    4341#endif
  • uspace/lib/softint/Makefile

    rdb6e419 r45058baa  
    3535
    3636SOURCES = \
    37         generic/comparison.c \
    3837        generic/division.c \
    39         generic/multiplication.c \
    40         generic/shift.c
     38        generic/multiplication.c
    4139
    4240include $(USPACE_PREFIX)/Makefile.common
Note: See TracChangeset for help on using the changeset viewer.