LongFloat.st
author Stefan Vogel <sv@exept.de>
Tue, 28 Apr 2020 16:22:26 +0200
changeset 25375 b784fc06a5eb
parent 25088 3a9b967a1065
permissions -rw-r--r--
#REFACTORING by stefan class: KeyedCollection class added: #newWithCapacity:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25022
391997c035aa #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 25013
diff changeset
     1
"{ Encoding: utf8 }"
391997c035aa #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 25013
diff changeset
     2
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
     3
"
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
     4
 COPYRIGHT (c) 1999 by eXept Software AG
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	      All Rights Reserved
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 This software is furnished under a license and may be used
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
 hereby transferred.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
5411
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
    14
"{ Package: 'stx:libbasic' }"
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
    15
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
    16
"{ NameSpace: Smalltalk }"
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
    17
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
LimitedPrecisionReal variableByteSubclass:#LongFloat
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:''
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
    20
	classVariableNames:'DefaultPrintFormat DefaultPrintfFormat DefaultPrintPrecision
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
    21
		LongFloatZero LongFloatOne Pi E Epsilon NaN PositiveInfinity
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
    22
		NegativeInfinity Halfpi HalfpiNegative Phi'
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
	poolDictionaries:''
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
	category:'Magnitude-Numbers'
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
!LongFloat primitiveDefinitions!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
%{
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
    29
#include <stdio.h>
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
#include <errno.h>
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
#ifndef __OPTIMIZE__
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
# define __OPTIMIZE__
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
#endif
4253
768802bc61a4 longFloat class falls back to float on systems that do not support them
Claus Gittinger <cg@exept.de>
parents: 4250
diff changeset
    35
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
    36
#define __USE_ISOC9X 1
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
    37
#define __USE_ISOC99 1
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
#include <math.h>
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
/*
19266
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
    41
 * on some systems, errno is a macro ... check for it here
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
 */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
#ifndef errno
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
 extern errno;
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
#endif
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
    47
#if !defined (__win32__)
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
    48
# include <locale.h>
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
    49
#endif
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
    50
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
    51
#include <float.h>
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
    52
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
    53
#if defined(__irix__) || defined(__solaris__) || defined(__sunos__)
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
# include <nan.h>
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
    56
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
    57
#if defined(__osx__)
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
    58
# include <math.h>
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
    59
#endif
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
    60
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
    61
#if defined(__linux__)
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
    62
# ifndef NAN
5822
4e56f8aadda5 Get nan.h from bits/nan.h for Linux
Stefan Vogel <sv@exept.de>
parents: 5645
diff changeset
    63
#  include <bits/nan.h>
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
    64
# endif
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
    66
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
    67
#ifdef __win32__
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
/*
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
 * no finite(x) ?
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
 * no isnan(x) ?
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
 */
7417
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    72
# ifndef isnanl
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    73
#  define isnanl(x)      \
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
    74
	((((unsigned int *)(&x))[0] == 0x00000000) && \
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
    75
	 (((unsigned int *)(&x))[1] == 0xC0000000) && \
25049
Claus Gittinger <cg@exept.de>
parents: 25036
diff changeset
    76
	 (((unsigned short *)(&x))[4] & 0x7FFF == 0x7FFF))
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
# endif
7417
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    78
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
# ifndef isnan
7417
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    80
#  define isnan(x)      \
25049
Claus Gittinger <cg@exept.de>
parents: 25036
diff changeset
    81
	((((unsigned int *)(&x))[1] & 0x7FF80000) == 0x7FF80000)
Claus Gittinger <cg@exept.de>
parents: 25036
diff changeset
    82
// old, invalid definition
Claus Gittinger <cg@exept.de>
parents: 25036
diff changeset
    83
// #  define isnan(x)      \
Claus Gittinger <cg@exept.de>
parents: 25036
diff changeset
    84
//         ((((unsigned int *)(&x))[0] == 0x00000000) && \
Claus Gittinger <cg@exept.de>
parents: 25036
diff changeset
    85
//          (((unsigned int *)(&x))[1] == 0xFFF80000))
7417
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    86
# endif
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    87
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    88
# ifndef isPositiveInfinity
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    89
#  define isPositiveInfinity(x) \
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
    90
	((((unsigned int *)(&x))[0] == 0x00000000) && \
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
    91
	 (((unsigned int *)(&x))[1] == 0x7FF00000))
7417
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    92
# endif
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    93
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    94
# ifndef isNegativeInfinity
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
    95
#  define isNegativeInfinity(x) \
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
    96
	((((unsigned int *)(&x))[0] == 0x00000000) && \
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
    97
	 (((unsigned int *)(&x))[1] == 0xFFF00000))
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
# endif
7417
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
    99
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   100
# ifndef isinf
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   101
#  define isinf(x) \
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
   102
	((((unsigned int *)(&x))[0] == 0x00000000) && \
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
   103
	 ((((unsigned int *)(&x))[1] & 0x7FF00000) == 0x7FF00000))
7417
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   104
# endif
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   105
8981
7c7b2a14c8b3 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   106
# ifndef isfinite
7c7b2a14c8b3 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   107
#  define isfinite(x) (!isinf(x) && !isnan(x))
7417
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   108
# endif
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   109
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   110
# define NO_ASINH
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   111
# define NO_ACOSH
dd08bf7b0aba isnanl for WIN32
Claus Gittinger <cg@exept.de>
parents: 7415
diff changeset
   112
# define NO_ATANH
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
   113
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
   114
# ifdef __MINGW__
22491
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22300
diff changeset
   115
#  ifndef _STRING_H_INCLUDED_
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22300
diff changeset
   116
#   include <string.h>
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22300
diff changeset
   117
#   define _STRING_H_INCLUDED_
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22300
diff changeset
   118
#  endif
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22300
diff changeset
   119
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22300
diff changeset
   120
   // sigh: the default ming setup uses the microsoft printf,
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22300
diff changeset
   121
   // which does not support long doubles
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22300
diff changeset
   122
#  define snprintf  __mingw_snprintf
19356
5ca3989a13f0 bcc fixes
Claus Gittinger <cg@exept.de>
parents: 19329
diff changeset
   123
# endif /* __MINGW__ */
19329
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
   124
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   125
#endif /* __win32__ */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   126
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   127
#ifdef __solaris__
8984
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8982
diff changeset
   128
# ifndef isfinite
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8982
diff changeset
   129
#  define isfinite(f) finite((double)(f))
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8982
diff changeset
   130
# endif
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8982
diff changeset
   131
#endif
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8982
diff changeset
   132
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   133
#ifdef __realIX__
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   134
# ifndef isfinite
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   135
#  define isfinite(x)     1
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
# endif
4253
768802bc61a4 longFloat class falls back to float on systems that do not support them
Claus Gittinger <cg@exept.de>
parents: 4250
diff changeset
   137
#endif /* realIX */
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   139
#if defined(__GNUC__) || defined(__MINGW__) || defined(__win32__)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   140
# ifndef LONGFLOAT_t
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   141
#  define LONGFLOAT_t      long double
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   142
# endif
8706
d48896f0a910 mac stuff
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
   143
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   144
# if defined(__linux__) || defined(__osx__) || defined(__win32__)
7397
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   145
#  define LONG_ceil     ceill
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   146
#  define LONG_floor    floorl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   147
#  define LONG_sqrt     sqrtl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   148
#  define LONG_sin      sinl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   149
#  define LONG_cos      cosl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   150
#  define LONG_tan      tanl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   151
#  define LONG_sinh     sinhl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   152
#  define LONG_cosh     coshl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   153
#  define LONG_tanh     tanhl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   154
#  define LONG_asin     asinl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   155
#  define LONG_acos     acosl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   156
#  define LONG_atan     atanl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   157
#  define LONG_exp      expl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   158
#  define LONG_frexp    frexpl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   159
#  define LONG_log      logl
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   160
#  define LONG_log10    log10l
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
   161
#  define LONG_modf     modfl
19323
299aad6846f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19322
diff changeset
   162
#  define LONG_trunc    truncl
7397
4d2718888bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7396
diff changeset
   163
#  define LONG_pow      powl
17459
701fbb1088ca clang compilability
Claus Gittinger <cg@exept.de>
parents: 17395
diff changeset
   164
#  ifdef __llvm__
701fbb1088ca clang compilability
Claus Gittinger <cg@exept.de>
parents: 17395
diff changeset
   165
#   define LONG_isnan    isnan
701fbb1088ca clang compilability
Claus Gittinger <cg@exept.de>
parents: 17395
diff changeset
   166
#  else
701fbb1088ca clang compilability
Claus Gittinger <cg@exept.de>
parents: 17395
diff changeset
   167
#   define LONG_isnan    isnanl
701fbb1088ca clang compilability
Claus Gittinger <cg@exept.de>
parents: 17395
diff changeset
   168
#  endif
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   169
#  if defined(__osx__)
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   170
#   define LONG_isfinite isfinite
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   171
#  else
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   172
#   define LONG_isfinite isfinitel
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   173
#  endif
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   174
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   175
#  if !defined(__win32__)
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   176
#   define LONG_asinh    asinhl
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   177
#   define LONG_acosh    acoshl
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   178
#   define LONG_atanh    atanhl
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   179
#  endif /* linux */
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   180
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   181
# endif  /* defined(__linux__) || defined(__win32__) */
8706
d48896f0a910 mac stuff
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
   182
8981
7c7b2a14c8b3 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   183
# if !defined(LONG_isnan)
7c7b2a14c8b3 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   184
/* This should be true for ISO C99 systems - even for newer linux systems */
8706
d48896f0a910 mac stuff
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
   185
#  define LONG_isnan    isnan
d48896f0a910 mac stuff
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
   186
#  define LONG_isfinite isfinite
8982
015dc40e3582 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8981
diff changeset
   187
# endif /* !defined(LONG_isnan) */
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
   188
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   189
#endif /* defined(__GNUC__) || defined(__win32__) */
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
%}
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
!LongFloat class methodsFor:'documentation'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   196
copyright
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   197
"
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   198
 COPYRIGHT (c) 1999 by eXept Software AG
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   199
	      All Rights Reserved
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
 This software is furnished under a license and may be used
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   202
 only in accordance with the terms of that license and with the
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   203
 inclusion of the above copyright notice.   This software may not
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   204
 be provided or otherwise made available to, or used by, any
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
 other person.  No title to or ownership of the software is
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
 hereby transferred.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   207
"
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   208
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   209
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   210
documentation
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   211
"
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   212
    LongFloats represent rational numbers with limited precision.
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
   213
    They use the C-compiler's 'long double' format,
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
   214
    which is either mapped to the IEEE extended precision (80bit)
24460
7afdbd0458d1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24438
diff changeset
   215
    or IEEE quadruple precision format (128bit).
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   216
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7375
diff changeset
   217
    In contrast to Floats (which use the C-compilers 64bit 'double' format),
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   218
    LongFloats give you one of 80 bit extended floats, 96 bit extended floats or 128 bit quadruple floats,
24263
9b19f063bb70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24255
diff changeset
   219
    depending on the underlying CPU.
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   220
    Thus, code using longFloats is not guaranteed to be portable from one architecture to another,
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   221
    but faster than software emulations.
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   222
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   223
    NOTE:
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   224
	on systems which do not support 'long doubles', LongFloats are (silently)
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   225
	represented as 'doubles'.
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   226
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7375
diff changeset
   227
    Representation:
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   228
	gcc-x86:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   229
	    80bit extended IEEE floats stored in in 96bits (12bytes);
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   230
	    1 bit integer part,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   231
	    64 bit mantissa,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   232
	    16 bit exponent,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   233
	    19 decimal digits (approx.)
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   234
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   235
	borland-x86 (WIN32):
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   236
	    80bit extended IEEE floats stored in in 80bits (10bytes);
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   237
	    1 bit integer part,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   238
	    64 bit mantissa,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   239
	    16 bit exponent,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   240
	    19 decimal digits (approx.)
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   241
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   242
	gcc-x86_64: (WIN64)
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   243
	    like gcc-x86
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   244
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   245
	gcc-sparc:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   246
	    128bit quadruple IEEE floats (16bytes);
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   247
	    112 bit mantissa,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   248
	    16 bit exponent,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   249
	    34 decimal digits (approx.)
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   250
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7375
diff changeset
   251
    Mixed mode arithmetic:
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   252
	longFloat op longFloat   -> longFloat
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   253
	longFloat op fix         -> longFloat
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   254
	longFloat op fraction    -> longFloat
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   255
	longFloat op integer     -> longFloat
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   256
	longFloat op shortFloat  -> longFloat
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   257
	longFloat op float       -> longFloat
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   258
	longFloat op complex     -> complex
21973
d81790350a50 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21971
diff changeset
   259
d81790350a50 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21971
diff changeset
   260
    Range and precision of storage formats: see LimitedPrecisionReal >> documentation
7405
9b0334a4591b comments
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   261
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
    [author:]
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   263
	Claus Gittinger
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   264
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
    [see also:]
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   266
	Number
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   267
	Float ShortFloat Fraction FixedPoint Integer Complex
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   268
	FloatArray DoubleArray
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   269
	https://en.wikipedia.org/wiki/Extended_precision
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   270
"
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   271
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
!LongFloat class methodsFor:'instance creation'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   275
basicNew
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   276
    "return a new longFloat - here we return 0.0
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   277
     - LongFloats are usually NOT created this way ...
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
     Its implemented here to allow things like binary store & load
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
     of longFloats. (but even this support will go away eventually, its not
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
     a good idea to store the bits of a float - the reader might have a
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   281
     totally different representation - so floats will eventually be
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
     binary stored in a device independent format."
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   283
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
%{  /* NOCONTEXT */
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   285
#ifdef __SCHTEAM__
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   286
    return __c__._RETURN( new STDouble(0.0) );
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   287
#else
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   289
    if (sizeof(LONGFLOAT_t) == sizeof(double)) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
   290
	__qMKFLOAT(newFloat, 0.0);   /* OBJECT ALLOCATION */
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   291
    } else {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
   292
	__qMKLFLOAT(newFloat, 0.0);   /* OBJECT ALLOCATION */
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   293
    }
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
    RETURN (newFloat);
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   295
#endif /* not SCHTEAM */
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   296
%}
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   297
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   298
24973
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   299
fastFromString:aString at:startIndex
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   300
    "return the next LongFloat from the string starting at startIndex.
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   301
     No spaces are skipped.
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   302
     Raises an exception, if the startIndex is not valid.
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   303
     Returns garbage if the argument string is not a valid double float number.
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   304
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   305
     This is a specially tuned entry (using a low-level C-call to strtold).
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   306
     It has been added to allow high speed string decomposition
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   307
     into numbers, especially for mass-data (reading millions of floats)."
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   308
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   309
%{   /* NOCONTEXT */
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   310
     int idx = __intVal(startIndex) - 1;
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   311
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   312
     if (__isStringLike(aString) && __isSmallInteger(startIndex)) {
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   313
	char *cp = (char *)(__stringVal(aString));
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   314
	OBJ newFloat;
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   315
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   316
	if ((unsigned)idx < __stringSize(aString)) {
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   317
#ifndef NO_STRTOLD
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   318
	    long double strtold(const char *, char**);
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   319
	    LONGFLOAT_t val = strtold(cp+idx, NULL);
25088
3a9b967a1065 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 25055
diff changeset
   320
	    __qMKLFLOAT(newFloat, val);
3a9b967a1065 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 25055
diff changeset
   321
	    RETURN (newFloat);
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   322
#else
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   323
# ifndef NO_SSCANF_LONGFLOAT
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   324
	    LONGFLOAT_t val;
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   325
	    sscanf(cp+idx, "%Lf", &val);
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   326
	    __qMKLFLOAT(newFloat, val);
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   327
	    RETURN (newFloat);
24989
98c3a2fa1757 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24985
diff changeset
   328
# endif
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   329
#endif
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   330
	}
24973
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   331
     }
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   332
%}.
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   333
     ^ self readFromString:(startIndex == 1 ifTrue:[aString] ifFalse:[aString from:startIndex])
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   334
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   335
    "
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   336
     LongFloat fastFromString:'123.45' at:1
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   337
     LongFloat fastFromString:'123.45' at:2
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   338
     LongFloat fastFromString:'123.45' at:3
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   339
     LongFloat fastFromString:'123.45' at:4
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   340
     LongFloat fastFromString:'123.45' at:5
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   341
     LongFloat fastFromString:'123.45' at:6
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   342
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   343
     LongFloat fastFromString:'123.45E4' at:1
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   344
     LongFloat fastFromString:'hello123.45E4' at:6
24973
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   345
     LongFloat fastFromString:'12345' at:1
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   346
     LongFloat fastFromString:'12345' at:2
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   347
     LongFloat fastFromString:'12345' at:3
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   348
     LongFloat fastFromString:'12345' at:4
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   349
     LongFloat fastFromString:'12345' at:5
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   350
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   351
     LongFloat fastFromString:'12345' at:6          -> error
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   352
     LongFloat fastFromString:'12345' at:0          -> error
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   353
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   354
     LongFloat fastFromString:'hello123.45E4' at:1  -> 0
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   355
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   356
     LongFloat fastFromString:'1.7976931348623157e+308'
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   357
     LongFloat fastFromString:'Nan'
24973
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   358
     LongFloat fastFromString:'+Inf'
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   359
     LongFloat fastFromString:'-Inf'
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   360
    "
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   361
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   362
    "
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   363
     Time millisecondsToRun:[
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   364
	1000000 timesRepeat:[
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   365
	    LongFloat readFrom:'123.45'
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   366
	]
24973
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   367
     ]
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   368
    "
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   369
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   370
    "
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   371
     Time millisecondsToRun:[
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   372
	1000000 timesRepeat:[
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   373
	    LongFloat fastFromString:'123.45' at:1
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   374
	]
24973
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   375
     ]
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   376
    "
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   377
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   378
    "Modified (comment): / 21-06-2017 / 09:24:32 / cg"
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   379
    "Modified (comment): / 20-03-2019 / 13:45:12 / Claus Gittinger"
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   380
!
514048473232 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24965
diff changeset
   381
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   382
fromFloat:aFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   383
    "return a new longFloat, given a float value"
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   384
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   385
%{  /* NOCONTEXT */
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   386
#ifdef __SCHTEAM__
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   387
    if (aFloat.isDouble()) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   388
	return __c__._RETURN(aFloat);
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   389
    }
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   390
    if (aFloat.isFloat()) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   391
	return __c__._RETURN( new STDouble(aFloat.floatValue()) );
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   392
    }
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   393
#else
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   394
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   395
    LONGFLOAT_t f;
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   396
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   397
    if (sizeof(LONGFLOAT_t) == sizeof(double)) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
   398
	RETURN (aFloat);
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   399
    }
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   400
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   401
    if (__isFloatLike(aFloat)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   402
	f = (LONGFLOAT_t)(__floatVal(aFloat));
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
   403
	__qMKLFLOAT(newFloat, f);   /* OBJECT ALLOCATION */
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
   404
	RETURN (newFloat);
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   405
    }
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   406
#endif
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   407
%}.
24275
1de47e7b0e9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24267
diff changeset
   408
    ArgumenError raise
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   409
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   410
    "
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   411
     LongFloat fromFloat:123.0
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   412
     123.0 asLongFloat
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   413
     123 asLongFloat
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   414
    "
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   415
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   416
17219
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   417
fromIEEE32Bit: anInteger
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   418
    "creates a long float, given the four native float bytes as an integer"
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   419
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   420
%{  /* NOCONTEXT */
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   421
    OBJ newFloat;
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   422
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   423
    REGISTER union {
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   424
	unsigned int    i;
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   425
	float           f;
17219
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   426
    } r;
24989
98c3a2fa1757 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24985
diff changeset
   427
    LONGFLOAT_t f;
17219
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   428
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   429
    r.i = __unsignedLongIntVal( anInteger );
24989
98c3a2fa1757 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24985
diff changeset
   430
    f = (LONGFLOAT_t)r.f;
98c3a2fa1757 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24985
diff changeset
   431
    __qMKLFLOAT(newFloat, f);
17219
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   432
    RETURN( newFloat );
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   433
%}.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   434
    ^ Float fromIEEE32Bit: anInteger
17219
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   435
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   436
    "
21874
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   437
     LongFloat fromIEEE32Bit:((ShortFloat pi digitBytesMSB:true) asIntegerMSB:true)
17584
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   438
    "
21874
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   439
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   440
    "Modified: / 21-06-2017 / 09:35:58 / cg"
17584
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   441
!
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   442
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   443
fromIEEE64Bit: anInteger
21874
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   444
    "creates a long double, given the eight native double bytes as an integer"
17584
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   445
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   446
%{  /* NOCONTEXT */
19268
6711c095d091 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19267
diff changeset
   447
    extern int __unsignedLong64IntVal(OBJ o, __uint64__ *pI);
17584
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   448
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   449
    REGISTER union {
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   450
	__uint64__  u64;
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   451
	double      d;
17584
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   452
    } r;
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   453
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   454
    if (__unsignedLong64IntVal(anInteger, &r.u64))  {
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   455
	OBJ newFloat;
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   456
	LONGFLOAT_t f = (LONGFLOAT_t)r.d;
24989
98c3a2fa1757 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24985
diff changeset
   457
98c3a2fa1757 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24985
diff changeset
   458
	__qMKLFLOAT(newFloat, f);
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   459
	RETURN( newFloat );
17584
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   460
    }
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   461
%}.
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   462
    ^ Float fromIEEE32Bit: anInteger
17584
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   463
797b3233c6ef class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17459
diff changeset
   464
    "
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   465
	LongFloat fromIEEE64Bit:((Float pi digitBytesMSB:true) asIntegerMSB:true)
17219
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   466
    "
21874
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   467
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   468
    "Modified (comment): / 21-06-2017 / 09:36:34 / cg"
17219
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   469
!
38228cd1e2a2 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17129
diff changeset
   470
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   471
fromInteger:anInteger
19360
5b112fdb68be #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19356
diff changeset
   472
    "return a new longFloat, given an integer value"
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   473
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   474
%{  /* NOCONTEXT */
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   475
#ifdef __SCHTEAM__
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   476
    if (anInteger.isSmallInteger()) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19360
diff changeset
   477
	return __c__._RETURN( STDouble._new( (double)(anInteger.longValue()) ));
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   478
    }
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   479
#else
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   480
    OBJ newFloat;
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   481
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   482
    if (__isSmallInteger(anInteger)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   483
	LONGFLOAT_t f = (LONGFLOAT_t)__smallIntegerVal(anInteger);
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19360
diff changeset
   484
	__qMKLFLOAT(newFloat, f);   /* OBJECT ALLOCATION */
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19360
diff changeset
   485
	RETURN (newFloat);
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   486
    }
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   487
#endif /* not SCHTEAM */
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   488
%}.
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   489
    ^ super fromInteger:anInteger
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   490
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   491
    "
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   492
     LongFloat fromInteger:123
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   493
     LongFloat fromInteger:(100 factorial)
19360
5b112fdb68be #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19356
diff changeset
   494
     (100 factorial) asLongFloat
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   495
    "
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   496
!
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   497
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   498
fromShortFloat:aFloat
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   499
    "return a new longFloat, given a shortFloat value"
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   500
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   501
%{  /* NOCONTEXT */
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   502
#ifdef __SCHTEAM__
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   503
    if (aFloat.isFloat()) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   504
	return __c__._RETURN( new STDouble(aFloat.floatValue()) );
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   505
    }
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   506
    if (aFloat.isDouble()) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   507
	return __c__._RETURN( aFloat );
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   508
    }
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   509
#else
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   510
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   511
    LONGFLOAT_t f;
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   512
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   513
    if (__isShortFloat(aFloat)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   514
	f = (LONGFLOAT_t)(__shortFloatVal(aFloat));
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
   515
	__qMKLFLOAT(newFloat, f);   /* OBJECT ALLOCATION */
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
   516
	RETURN (newFloat);
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   517
    }
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
   518
#endif /* not SCHTEAM */
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   519
%}.
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   520
    self error:'invalid argumnet'
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   521
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   522
    "
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   523
     LongFloat fromShortFloat:(123.0 asShortFloat)
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   524
     LongFloat fromShortFloat:122
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   525
    "
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   526
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   527
12914
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   528
!LongFloat class methodsFor:'accessing'!
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   529
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   530
defaultPrintFormat
24952
79fc76e963a3 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24948
diff changeset
   531
    "/ by default, I will print 19 digits
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   532
    "/  ShortFloat pi   -> 3.141593
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   533
    "/  Float pi        -> 3.14159265358979
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   534
    "/  LongFloat pi    -> 3.141592653589793239
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   535
    "/  QuadFloat pi    -> 3.141592653589793239
24952
79fc76e963a3 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24948
diff changeset
   536
12914
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   537
    ^ DefaultPrintFormat
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   538
!
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   539
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   540
defaultPrintFormat:something
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   541
    DefaultPrintFormat := something.
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   542
! !
802070da5c65 #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12476
diff changeset
   543
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   544
!LongFloat class methodsFor:'class initialization'!
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   545
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   546
initialize
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19360
diff changeset
   547
    DefaultPrintFormat := '.19'.  "/ 19 valid digits
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21857
diff changeset
   548
    DefaultPrintfFormat := '%19f'.
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   549
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   550
    "
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   551
     self initialize
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   552
    "
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   553
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   554
    "
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   555
     DefaultPrintFormat := '.19'.
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   556
     LongFloat pi printString.
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   557
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   558
     DefaultPrintFormat := '.9'.
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   559
     LongFloat pi printString.
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   560
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   561
     DefaultPrintFormat := '.6'.
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   562
     LongFloat pi printString.
7448
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   563
    "
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   564
! !
d1aaa52b463e double dispatching, printing NaN and INF
Claus Gittinger <cg@exept.de>
parents: 7417
diff changeset
   565
21874
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   566
!LongFloat class methodsFor:'coercing & converting'!
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   567
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   568
coerce:aNumber
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   569
    "convert the argument aNumber into an instance of the receiver (class) and return it."
21874
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   570
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   571
    ^ aNumber asLongFloat.
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   572
! !
6edca189ad56 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   573
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   574
!LongFloat class methodsFor:'constants'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   575
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   576
NaN
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   577
    "return a longFloat which represents not-a-Number (i.e. an invalid number)"
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   578
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   579
    NaN isNil ifTrue:[
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21857
diff changeset
   580
	NaN := super NaN
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   581
    ].
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   582
    ^ NaN
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   583
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   584
    "
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   585
     LongFloat NaN
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   586
    "
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   587
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   588
    "Created: / 20-06-2017 / 13:52:58 / cg"
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   589
!
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   590
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   591
e
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   592
    "return the constant e as LongFloat"
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   593
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19360
diff changeset
   594
    E isNil ifTrue:[
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   595
	"/ eDigits has enough digits for 128bit IEEE quads
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   596
	"/ do not use as a literal constant here - we cannot depend on the underlying C-compiler here...
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   597
	E  := self readFrom:(Number eDigits)
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19360
diff changeset
   598
    ].
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   599
    ^ E
24263
9b19f063bb70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24255
diff changeset
   600
9b19f063bb70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24255
diff changeset
   601
    "Modified (format): / 06-06-2019 / 17:02:27 / Claus Gittinger"
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   602
!
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   603
22724
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   604
halfpi
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   605
    "return the constant pi/2 as LongFloat"
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   606
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   607
    Halfpi isNil ifTrue:[
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   608
	"/ enough digits for 128bit IEEE quads
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   609
	"/ do not write as a literal constant here - we cannot depend on the underlying C-compiler here...
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   610
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   611
	Halfpi := (self readFrom:'1.570796326794896619231321691639751442098584699687552910').
22724
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   612
    ].
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   613
    ^ Halfpi
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   614
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   615
    "
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   616
     self halfpi
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   617
    "
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   618
!
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   619
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   620
halfpiNegative
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   621
    "return the constant -pi/2 as LongFloat"
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   622
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   623
    HalfpiNegative isNil ifTrue:[
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
   624
	HalfpiNegative := (self readFrom:'-1.570796326794896619231321691639751442098584699687552910')
22724
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   625
    ].
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   626
    ^ HalfpiNegative
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   627
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   628
    "
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   629
     self halfpiNegative
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   630
    "
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   631
!
ccdb7155bb8a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
   632
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   633
infinity
24305
3666b6373fb9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24292
diff changeset
   634
    "return a longFloat which represents positive infinity (for my instances).
3666b6373fb9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24292
diff changeset
   635
     Warning: do not compare equal against infinities;
3666b6373fb9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24292
diff changeset
   636
     instead, check using isFinite or isInfinite"
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   637
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   638
    PositiveInfinity isNil ifTrue:[
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
   639
	PositiveInfinity := Float infinity asLongFloat
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   640
    ].
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   641
    ^ PositiveInfinity
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   642
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   643
    "
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   644
     LongFloat infinity
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   645
    "
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   646
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   647
    "Created: / 20-06-2017 / 13:53:45 / cg"
24305
3666b6373fb9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24292
diff changeset
   648
    "Modified (comment): / 09-06-2019 / 12:52:58 / Claus Gittinger"
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   649
!
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   650
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   651
negativeInfinity
24305
3666b6373fb9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24292
diff changeset
   652
    "return a longFloat which represents positive infinity (for my instances).
3666b6373fb9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24292
diff changeset
   653
     Warning: do not compare equal against infinities;
3666b6373fb9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24292
diff changeset
   654
     instead, check using isFinite or isInfinite"
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   655
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   656
    NegativeInfinity isNil ifTrue:[
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
   657
	NegativeInfinity := Float negativeInfinity asLongFloat
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   658
    ].
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   659
    ^ NegativeInfinity
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   660
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   661
    "
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   662
     LongFloat negativeInfinity
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   663
    "
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   664
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   665
    "Created: / 20-06-2017 / 13:54:19 / cg"
24305
3666b6373fb9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24292
diff changeset
   666
    "Modified (comment): / 09-06-2019 / 12:53:25 / Claus Gittinger"
21857
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   667
!
76798ae913d1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21851
diff changeset
   668
24932
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   669
phi
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   670
    "return the constant phi as LongFloat"
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   671
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   672
    Phi isNil ifTrue:[
24985
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   673
	"/ phiDigits has enough digits for 128bit IEEE quads
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   674
	"/ do not use as a literal constant here - we cannot depend on the underlying C-compiler here...
25eacb3088ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24973
diff changeset
   675
	Phi := self readFrom:(Number phiDigits)
24932
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   676
    ].
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   677
    ^ Phi
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   678
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   679
    "Modified (format): / 06-06-2019 / 17:10:22 / Claus Gittinger"
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   680
!
606ca39a5e38 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24818
diff changeset
   681
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   682
pi
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   683
    "return the constant pi as LongFloat"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   684
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19360
diff changeset
   685
    Pi isNil ifTrue:[
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   686
	"/ piDigits has enough digits for 128bit IEEE quads
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   687
	"/ do not use as a literal constant here - we cannot depend on the underlying C-compiler here...
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   688
	Pi := self readFrom:(Number piDigits)
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19360
diff changeset
   689
    ].
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   690
    ^ Pi
24263
9b19f063bb70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24255
diff changeset
   691
9b19f063bb70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24255
diff changeset
   692
    "Modified (format): / 06-06-2019 / 17:10:22 / Claus Gittinger"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   693
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   695
unity
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   696
    "return the neutral element for multiplication (1.0) as LongFloat"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   697
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   698
    LongFloatOne isNil ifTrue:[
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
   699
	LongFloatOne := 1.0 asLongFloat.
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   700
    ].
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   701
    ^ LongFloatOne
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   702
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   703
    "Modified: 23.4.1996 / 09:26:51 / cg"
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   704
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   705
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   706
zero
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   707
    "return the neutral element for addition (0.0) as LongFloat"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   708
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   709
    LongFloatZero isNil ifTrue:[
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
   710
	LongFloatZero := 0.0 asLongFloat
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   711
    ].
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   712
    ^ LongFloatZero
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   713
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   714
    "Modified: 23.4.1996 / 09:26:45 / cg"
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   715
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   717
!LongFloat class methodsFor:'queries'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   718
21826
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   719
defaultPrintPrecision
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   720
    "return the number of decimal digits printed by default"
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   721
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   722
    ^ DefaultPrintPrecision ? 8
21826
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   723
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   724
    "
24292
0c0ef0b76a74 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24285
diff changeset
   725
     LongFloat defaultPrintPrecision
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21857
diff changeset
   726
     ShortFloat defaultPrintPrecision
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21857
diff changeset
   727
     Float defaultPrintPrecision
21826
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   728
    "
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   729
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   730
    "Created: / 17-06-2017 / 02:58:42 / cg"
24292
0c0ef0b76a74 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24285
diff changeset
   731
    "Modified (comment): / 08-06-2019 / 14:33:50 / Claus Gittinger"
21826
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   732
!
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   733
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   734
emax
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   735
    "The largest exponent value allowed by instances of this class."
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   736
25022
391997c035aa #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 25013
diff changeset
   737
    ^ 16383
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   738
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   739
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   740
     1.0 asLongFloat fmax  -> 1.189731495357231765E+4932
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   741
     1.0 asLongFloat fmin  -> 3.362103143112093506E-4932
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   742
     1.0 asLongFloat emin  -> -16382
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   743
     1.0 asLongFloat emax  -> 16383
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   744
     1.0 asLongFloat eBias -> 16383
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   745
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   746
!
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   747
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   748
emin
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   749
    "The smallest exponent value allowed by instances of this class."
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   750
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   751
    ^ -16382
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   752
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   753
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   754
     1.0 asLongFloat fmax  -> 1.189731495357231765E+4932
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   755
     1.0 asLongFloat fmin  -> 3.362103143112093506E-4932
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   756
     1.0 asLongFloat emin  -> -16382
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   757
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   758
!
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   759
24321
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   760
epsilon
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   761
    "return the maximum relative spacing of instances of mySelf
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   762
     (i.e. the value-delta of the least significant bit)"
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   763
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   764
    Epsilon isNil ifTrue:[
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   765
	Epsilon := self computeEpsilon.
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   766
    ].
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   767
    ^ Epsilon
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   768
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   769
    "Modified (comment): / 21-06-2017 / 13:57:03 / cg"
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   770
    "Modified (comment): / 10-05-2018 / 01:09:07 / stefan"
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   771
!
c1488d3bdbdc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24305
diff changeset
   772
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   773
exponentCharacter
24325
ecf41f481591 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24321
diff changeset
   774
    "return the character used to print between mantissa an exponent.
ecf41f481591 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24321
diff changeset
   775
     Also used by the scanner when reading numbers."
ecf41f481591 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24321
diff changeset
   776
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   777
    ^ $q
24325
ecf41f481591 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24321
diff changeset
   778
ecf41f481591 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24321
diff changeset
   779
    "Modified (comment): / 10-06-2019 / 21:27:49 / Claus Gittinger"
6898
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
   780
!
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
   781
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   782
fmax
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   783
    "The largest value allowed by instances of this class."
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   784
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   785
%{  /* NOCONTEXT */
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   786
#if defined(LDBL_MAX) && !defined(__BORLANDC__)
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   787
    {
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   788
	OBJ newFloat;
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   789
	__qMKLFLOAT(newFloat, LDBL_MAX);
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   790
	RETURN(newFloat);
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   791
    }
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   792
#endif
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   793
%}.
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   794
    ^ super fmax
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   795
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   796
    "
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   797
     1.0 asLongFloat fmax  -> 1.189731495357231765E+4932
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   798
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   799
!
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   800
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   801
fmin
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   802
    "The smallest non-zero value allowed by instances of this class."
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   803
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   804
%{  /* NOCONTEXT */
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   805
#if defined(LDBL_MIN) && !defined(__BORLANDC__)
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   806
    {
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   807
	OBJ newFloat;
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   808
	__qMKLFLOAT(newFloat, LDBL_MIN);
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   809
	RETURN(newFloat);
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   810
    }
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   811
#endif
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   812
%}.
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   813
    ^ super fmin
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   814
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   815
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   816
     1.0 asLongFloat fmax  -> 1.189731495357231765E+4932
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   817
     1.0 asLongFloat fmin  -> 3.362103143112093506E-4932
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   818
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   819
!
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   820
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   821
isBuiltInClass
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   822
    "return true if this class is known by the run-time-system.
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   823
     Here, true is returned for myself, false for subclasses."
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   824
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   825
    ^ self == LongFloat
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   826
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   827
    "Modified: 23.4.1996 / 16:00:23 / cg"
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   828
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   829
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   830
numBitsInExponent
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   831
    "answer the number of bits in the exponent
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   832
     i386: This is an 80bit longfloat stored in 96 bits (upper 16 bits are unused),
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   833
	   where 15 bits are available in the exponent (i bit is ignored):
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   834
	00000000 00000000 seeeeeee eeeeeeee immmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm
15327
0615616bb8da class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 15313
diff changeset
   835
     x86_64: This is an 80bit longfloat stored in 128 bits (upper 48 bits are unused),
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   836
	   where 15 bits are available in the exponent:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   837
	00000000 00000000 seeeeeee eeeeeeee immmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   838
     sparc & others: This is an 128bit longfloat,
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   839
	   where 15 bits are available in the exponent:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   840
	seeeeeee eeeeeeee mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm...
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   841
    "
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   842
%{  /* NOCONTEXT */
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   843
#if defined(__x86__) || defined(__x86_64__)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   844
    if (sizeof(LONGFLOAT_t) == 10) {      /* x86 - WIN32: 80bit floats */
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   845
	RETURN (__mkSmallInteger(15));
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   846
    }
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   847
    if (sizeof(LONGFLOAT_t) == 12) {      /* x86 - some unixes: 96bit floats */
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   848
	RETURN (__mkSmallInteger(15));
7413
9c78545361b3 more LongFloat definitions for Win32
Claus Gittinger <cg@exept.de>
parents: 7405
diff changeset
   849
    }
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   850
    if (sizeof(LONGFLOAT_t) == 16) {      /* amd64, x86_64 */
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   851
	RETURN (__mkSmallInteger(15));
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   852
    }
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   853
#else
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   854
    if (sizeof(LONGFLOAT_t) == 16) {
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   855
	RETURN (__mkSmallInteger(15));  /* sparc */
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   856
    }
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   857
#endif
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   858
%}.
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   859
    "systems without longFloat support use doubles instead"
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   860
    self basicNew basicSize == Float basicNew basicSize ifTrue:[
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   861
	^ Float numBitsInExponent
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   862
    ].
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   863
    self error:'missing definition'  "ifdef missing in above primitive code for this architecture"
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   864
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   865
    "
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   866
     1.0 asLongFloat numBitsInExponent -> 15
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   867
    "
24205
72fcabd537db #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24190
diff changeset
   868
72fcabd537db #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24190
diff changeset
   869
    "Modified (comment): / 28-05-2019 / 09:02:06 / Claus Gittinger"
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   870
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   871
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   872
numBitsInIntegerPart
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   873
    "answer the number of bits in the integer part of the mantissa.
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   874
     This will return 0 or 1; 1 if there is no hidden bit, 0 if there is.
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   875
     See https://en.wikipedia.org/wiki/Extended_precision.
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   876
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   877
     i386: This is an 80bit longfloat stored in 96 bits (upper 16 bits are unused),
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   878
	   where 1 bit is used for the integer part in the mantissa:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   879
	00000000 00000000 seeeeeee eeeeeeee immmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm
15327
0615616bb8da class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 15313
diff changeset
   880
     x86_64: This is an 80bit longfloat stored in 128 bits (upper 48 bits are unused),
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   881
	   where 1+63 bits are available in the mantissa:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   882
	00000000 00000000 seeeeeee eeeeeeee immmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   883
     sparc & others: This is an 128bit longfloat,
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   884
	   where 112 bits are available in the mantissa:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   885
	seeeeeee eeeeeeee mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm...
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   886
    "
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   887
%{  /* NOCONTEXT */
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   888
#if defined(__x86__) || defined(__x86_64__)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   889
    if (sizeof(LONGFLOAT_t) == 10) {      /* x86 - WIN32: 80bit floats */
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   890
	RETURN (__mkSmallInteger(1));
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   891
    }
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   892
    if (sizeof(LONGFLOAT_t) == 12) {      /* x86 - some other unixes: 96bit floats*/
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   893
	RETURN (__mkSmallInteger(1));
7413
9c78545361b3 more LongFloat definitions for Win32
Claus Gittinger <cg@exept.de>
parents: 7405
diff changeset
   894
    }
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   895
    if (sizeof(LONGFLOAT_t) == 16) {
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   896
	RETURN (__mkSmallInteger(1));   /* amd64, x86_64 */
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   897
    }
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   898
#else
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   899
    if (sizeof(LONGFLOAT_t) == 16) {
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   900
	RETURN (__mkSmallInteger(0));   /* sparc */
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   901
    }
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   902
#endif
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   903
%}.
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   904
    "systems without longFloat support use doubles instead"
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   905
    self basicNew basicSize == Float basicNew basicSize ifTrue:[
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   906
	^ Float numBitsInIntegerPart
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   907
    ].
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   908
    self error:'missing definition'  "ifdef missing in above primitive code for this architecture"
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   909
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   910
    "
16659
6205a731485a class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 16445
diff changeset
   911
     self numBitsInIntegerPart
24205
72fcabd537db #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24190
diff changeset
   912
     1.0 asLongFloat numBitsInIntegerPart
72fcabd537db #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24190
diff changeset
   913
     1.0 asFloat numBitsInIntegerPart
72fcabd537db #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24190
diff changeset
   914
     1.0 asShortFloat numBitsInIntegerPart
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   915
    "
24205
72fcabd537db #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24190
diff changeset
   916
24470
b562735ecadc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24460
diff changeset
   917
    "Modified: / 24-07-2019 / 10:33:11 / Claus Gittinger"
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   918
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   919
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   920
numBitsInMantissa
25027
d552e6a21c22 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25022
diff changeset
   921
    "answer the number of bits in the mantissa (the significant)
24190
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
   922
     the hidden bit is not counted here:
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
   923
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   924
     i386: This is an 80bit longfloat stored in 96 bits (upper 16 bits are unused),
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   925
	   where 1+63 bits are available in the mantissa:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   926
	00000000 00000000 seeeeeee eeeeeeee immmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm
15327
0615616bb8da class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 15313
diff changeset
   927
     x86_64: This is an 80bit longfloat stored in 128 bits (upper 48 bits are unused),
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   928
	   where 1+63 bits are available in the mantissa:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   929
	00000000 00000000 seeeeeee eeeeeeee immmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
   930
     sparc: This is an 128bit longfloat,
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   931
	   where 112 bits are available in the mantissa:
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   932
	seeeeeee eeeeeeee mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm...
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   933
    "
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   934
%{  /* NOCONTEXT */
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   935
#if defined(__x86__) || defined(__x86_64__)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   936
    if (sizeof(LONGFLOAT_t) == 10) {      /* x86 - WIN32: 80bit */
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   937
	RETURN (__mkSmallInteger(64));
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   938
    }
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   939
    if (sizeof(LONGFLOAT_t) == 12) {      /* x86 some unixes: 96bit */
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   940
	RETURN (__mkSmallInteger(64));
7413
9c78545361b3 more LongFloat definitions for Win32
Claus Gittinger <cg@exept.de>
parents: 7405
diff changeset
   941
    }
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   942
    if (sizeof(LONGFLOAT_t) == 16) {
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   943
	RETURN (__mkSmallInteger(64));  /* amd64, x86_64 */
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   944
    }
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   945
#else
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   946
    if (sizeof(LONGFLOAT_t) == 16) {
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   947
	RETURN (__mkSmallInteger(112)); /* sparc */
16780
f5458df271ed class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 16662
diff changeset
   948
    }
15263
06bf31b1a170 osx fixes
Claus Gittinger <cg@exept.de>
parents: 15021
diff changeset
   949
#endif
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   950
%}.
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   951
    "systems without longFloat support use doubles instead"
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   952
    self basicNew basicSize == Float basicNew basicSize ifTrue:[
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   953
	^ Float numBitsInMantissa
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   954
    ].
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   955
    self error:'missing definition'  "ifdef missing in above primitive code for this architecture"
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   956
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   957
    "
19329
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
   958
     1.0 class numBitsInMantissa
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
   959
     1.0 asShortFloat class numBitsInMantissa
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
   960
     1.0 asLongFloat class numBitsInMantissa
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   961
    "
24190
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
   962
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   963
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   964
     1.0 asLongFloat numBitsInExponent 15
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   965
     1.0 asLongFloat numBitsInMantissa 64
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   966
     1.0 asLongFloat precision         64
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   967
     1.0 asLongFloat decimalPrecision  19
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   968
     1.0 asLongFloat eBias             16383
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   969
     1.0 asLongFloat emin              -16382
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   970
     1.0 asLongFloat emax              16383
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
   971
     1.0 asLongFloat fmin
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   972
     1.0 asLongFloat fmax              1.189731495357231765E+4932
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   973
    "
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
   974
24190
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
   975
    "Modified: / 27-05-2019 / 15:28:04 / Claus Gittinger"
24205
72fcabd537db #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24190
diff changeset
   976
    "Modified (comment): / 28-05-2019 / 09:02:36 / Claus Gittinger"
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   977
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   978
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   979
radix
24438
dfad57d7c9ad #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24329
diff changeset
   980
   "answer the radix of a LongFloat's exponent
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   981
    This is an IEEE float, which is represented as binary"
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   982
8635
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8422
diff changeset
   983
    ^ 2 "must be careful here, whenever ST/X is used on VAX or a 370"
24438
dfad57d7c9ad #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24329
diff changeset
   984
dfad57d7c9ad #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24329
diff changeset
   985
    "Modified (comment): / 19-07-2019 / 17:28:16 / Claus Gittinger"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   986
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   987
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   988
!LongFloat methodsFor:'arithmetic'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   989
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
   990
* aNumber
11729
7be800aefa39 comment
Claus Gittinger <cg@exept.de>
parents: 11719
diff changeset
   991
    "return the product of the receiver and the argument."
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   992
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   993
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   994
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   995
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   996
    LONGFLOAT_t result, val;
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   997
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   998
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
   999
	val = (LONGFLOAT_t)(__intVal(aNumber));
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1000
doMul:
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1001
	result = __longFloatVal(self) * val;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1002
	__qMKLFLOAT(newFloat, result);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1003
	RETURN ( newFloat );
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1004
    }
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1005
    if (aNumber != nil) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1006
	if (__qIsLongFloat(aNumber)) {
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1007
	    val = __longFloatVal(aNumber);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1008
	    goto doMul;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1009
	}
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1010
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1011
	    val = (LONGFLOAT_t)(__floatVal(aNumber));
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1012
	    goto doMul;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1013
	}
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1014
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1015
	    val = (LONGFLOAT_t)(__shortFloatVal(aNumber));
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1016
	    goto doMul;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1017
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1018
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1019
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1020
    ^ aNumber productFromLongFloat:self
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1021
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1022
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1023
+ aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1024
    "return the sum of the receiver and the argument, aNumber"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1025
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1026
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1027
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1028
    LONGFLOAT_t result, val;
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1029
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1030
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1031
	val = (LONGFLOAT_t)(__intVal(aNumber));
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1032
doAdd:
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1033
	result = __longFloatVal(self) + val;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1034
	__qMKLFLOAT(newFloat, result);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1035
	RETURN ( newFloat );
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1036
    }
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1037
    if (aNumber != nil) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1038
	if (__qIsLongFloat(aNumber)) {
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1039
	    val = __longFloatVal(aNumber);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1040
	    goto doAdd;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1041
	}
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1042
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1043
	    val = (LONGFLOAT_t)(__floatVal(aNumber));
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1044
	    goto doAdd;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1045
	}
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1046
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1047
	    val = (LONGFLOAT_t)(__shortFloatVal(aNumber));
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1048
	    goto doAdd;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1049
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1050
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1051
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1052
    ^ aNumber sumFromLongFloat:self
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1053
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1054
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1055
- aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1056
    "return the difference of the receiver and the argument, aNumber"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1057
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1058
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1059
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1060
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1061
    LONGFLOAT_t result, val;
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1062
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1063
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1064
	val = (LONGFLOAT_t)(__intVal(aNumber));
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1065
doSub:
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1066
	result = __longFloatVal(self) - val;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1067
	__qMKLFLOAT(newFloat, result);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1068
	RETURN ( newFloat );
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1069
    }
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1070
    if (aNumber != nil) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1071
	if (__qIsLongFloat(aNumber)) {
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1072
	    val = __longFloatVal(aNumber);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1073
	    goto doSub;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1074
	}
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1075
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1076
	    val = (LONGFLOAT_t)(__floatVal(aNumber));
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1077
	    goto doSub;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1078
	}
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1079
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1080
	    val = (LONGFLOAT_t)(__shortFloatVal(aNumber));
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1081
	    goto doSub;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1082
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1083
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1084
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1085
    ^ aNumber differenceFromLongFloat:self
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1086
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1087
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1088
/ aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1089
    "return the quotient of the receiver and the argument, aNumber"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1090
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1091
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1092
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1093
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1094
    LONGFLOAT_t result, val;
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1095
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1096
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1097
	val = (LONGFLOAT_t)(__intVal(aNumber));
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1098
doDiv:
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1099
	if (val == 0.0) goto badArg;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1100
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1101
	result = __longFloatVal(self) / val;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1102
	__qMKLFLOAT(newFloat, result);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1103
	RETURN ( newFloat );
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1104
    }
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1105
    if (aNumber != nil) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1106
	if (__qIsLongFloat(aNumber)) {
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1107
	    val = __longFloatVal(aNumber);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1108
	    goto doDiv;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1109
	}
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1110
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1111
	    val = (LONGFLOAT_t)(__floatVal(aNumber));
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1112
	    goto doDiv;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1113
	}
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1114
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1115
	    val = (LONGFLOAT_t)(__shortFloatVal(aNumber));
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1116
	    goto doDiv;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1117
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1118
    }
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1119
badArg: ;
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1120
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1121
    ((aNumber == 0) or:[aNumber = 0.0]) ifTrue:[
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1122
	"
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1123
	 No, you shalt not divide by zero
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1124
	"
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  1125
	^ ZeroDivide raiseRequestWith:thisContext.
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1126
    ].
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1127
    ^ aNumber quotientFromLongFloat:self
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1128
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1129
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1130
abs
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1131
    "return the absolute value of the receiver
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1132
     reimplemented here for speed"
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1133
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1134
%{  /* NOCONTEXT */
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1135
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1136
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1137
    LONGFLOAT_t val = __longFloatVal(self);
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1138
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1139
    if (val < (LONGFLOAT_t)0.0) {
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1140
	__qMKLFLOAT(newFloat, -val);
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1141
	RETURN ( newFloat );
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1142
    }
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1143
    RETURN (self);
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1144
%}.
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1145
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1146
    "
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1147
     3.0 asLongFloat abs
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1148
     -3.0 asLongFloat abs
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1149
    "
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1150
!
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1151
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1152
negated
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1153
    "return myself negated"
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1154
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1155
%{  /* NOCONTEXT */
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1156
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1157
    LONGFLOAT_t rslt = - __longFloatVal(self);
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1158
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1159
    __qMKLFLOAT(newFloat, rslt);
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1160
    RETURN ( newFloat );
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1161
%}.
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1162
!
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  1163
14691
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1164
rem: aNumber
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1165
    "return the floating point remainder of the receiver and the argument, aNumber"
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1166
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1167
%{  /* NOCONTEXT */
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1168
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1169
    /*
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1170
     * notice:
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1171
     * the following inline code handles some common cases,
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1172
     * and exists as an optimization, to speed up those cases.
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1173
     *
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1174
     * Conceptionally, (and for most other argument types),
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1175
     * mixed arithmetic is implemented by double dispatching
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1176
     * (see the message send at the bottom)
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1177
     */
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1178
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1179
    LONGFLOAT_t result, val;
14691
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1180
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1181
    if (__isSmallInteger(aNumber)) {
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1182
	if (aNumber != __mkSmallInteger(0)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1183
	    val = (LONGFLOAT_t)__intVal(aNumber);
14691
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1184
	    if (val == 0.0) goto badArg;
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1185
computeResult:
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1186
	    result = fmodl(__longFloatVal(self), val) ;
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1187
	    __qMKLFLOAT(newFloat, result);
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1188
	    RETURN ( newFloat );
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1189
	}
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1190
    } else if (__isFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1191
	val = (LONGFLOAT_t)__floatVal(aNumber);
14691
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1192
	goto computeResult;
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1193
    } else if (__isShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1194
	val = (LONGFLOAT_t)__shortFloatVal(aNumber);
14691
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1195
	goto computeResult;
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1196
    } else if (__isLongFloat(aNumber)) {
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1197
	val = __longFloatVal(aNumber);
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1198
	goto computeResult;
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1199
    }
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1200
badArg: ;
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1201
%}.
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1202
    ((aNumber == 0) or:[aNumber = 0.0]) ifTrue:[
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1203
	"
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1204
	 No, you shalt not divide by zero
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1205
	"
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1206
	^ ZeroDivide raiseRequestWith:thisContext.
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1207
    ].
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1208
    ^ aNumber remainderFromLongFloat:self
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1209
!
ba94000e28b2 added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
  1210
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1211
uncheckedDivide:aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1212
    "return the quotient of the receiver and the argument, aNumber.
7471
c5d4bd612d9f comments
Claus Gittinger <cg@exept.de>
parents: 7448
diff changeset
  1213
     Do not check for divide by zero (return NaN or Infinity).
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1214
     This operation is provided for emulators of other languages/semantics,
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1215
     where no exception is raised for these results (i.e. Java).
18842
c57fb2395d74 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18833
diff changeset
  1216
     It is only defined if the argument's type is the same as the receiver's."
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1217
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1218
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1219
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1220
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1221
    LONGFLOAT_t result, val;
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1222
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1223
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1224
	val = (LONGFLOAT_t)(__intVal(aNumber));
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1225
doDiv:
19266
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1226
	result = __longFloatVal(self) / val;
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1227
	__qMKLFLOAT(newFloat, result);
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1228
	RETURN ( newFloat );
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1229
    }
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1230
    if (aNumber != nil) {
19266
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1231
	if (__qIsLongFloat(aNumber)) {
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1232
	    val = __longFloatVal(aNumber);
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1233
	    goto doDiv;
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1234
	}
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1235
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1236
	    val = (LONGFLOAT_t)(__shortFloatVal(aNumber));
19266
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1237
	    goto doDiv;
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1238
	}
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1239
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1240
	    val = (LONGFLOAT_t)(__floatVal(aNumber));
19266
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1241
	    goto doDiv;
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1242
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1243
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1244
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1245
    ^ aNumber quotientFromLongFloat:self
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1246
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1247
    "
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1248
      0.0 asLongFloat uncheckedDivide:0
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1249
      1.0 asLongFloat uncheckedDivide:0.0
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1250
      -1.0 asLongFloat uncheckedDivide:0.0
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1251
    "
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1252
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1253
5257
a90fd9cb3c18 category rename
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1254
!LongFloat methodsFor:'coercing & converting'!
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1255
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1256
asFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1257
    "return a Float with same value as the receiver.
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1258
     Raises an error if the receiver exceeds the float range."
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1259
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1260
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1261
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1262
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1263
    LONGFLOAT_t lVal = __longFloatVal(self);
24255
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1264
    double dVal = (double)lVal;
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1265
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1266
    if (isfinite(dVal) || !isfinite(lVal)) {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1267
	__qMKFLOAT(newFloat, dVal);
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1268
	RETURN ( newFloat );
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1269
    }
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1270
%}.
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1271
    "
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1272
     value out of range
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1273
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1274
    "
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1275
    ^ self class
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1276
	raise:#infiniteResultSignal
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1277
	receiver:self
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1278
	selector:#asFloat
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1279
	arguments:#()
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1280
	errorString:'receiver is out of the double-precision float range'
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1281
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1282
    "
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1283
     1.0 asLongFloat
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1284
    "
24292
0c0ef0b76a74 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24285
diff changeset
  1285
0c0ef0b76a74 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24285
diff changeset
  1286
    "Modified: / 08-06-2019 / 14:33:10 / Claus Gittinger"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1287
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1288
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1289
asInteger
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1290
    "return an integer with same value - might truncate"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1291
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1292
%{  /* NOCONTEXT */
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1293
    LONGFLOAT_t fVal;
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1294
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1295
    fVal = __longFloatVal(self);
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1296
    if (!LONG_isnan(fVal) && (fVal >= (LONGFLOAT_t)_MIN_INT) && (fVal <= (LONGFLOAT_t)_MAX_INT)) {
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1297
	RETURN ( __mkSmallInteger( (INT)fVal) );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1298
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1299
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1300
    ^ super asInteger
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1301
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1302
    "
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1303
     12345.0 asLongFloat asInteger
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
     1e15 asLongFloat asInteger
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1305
    "
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1306
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1307
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1308
asLongFloat
15021
e0ca9bd75f0f class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
  1309
    "return a LongFloat with same value as the receiver - that's me"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1310
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1311
    ^ self
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1312
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1313
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1314
asShortFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1315
    "return a ShortFloat with same value as the receiver.
24292
0c0ef0b76a74 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24285
diff changeset
  1316
     Raises an error if the receiver exceeds the short float range."
4455
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1317
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1318
%{  /* NOCONTEXT */
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1319
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1320
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1321
    LONGFLOAT_t lVal = __longFloatVal(self);
24255
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1322
    float fVal = (float)lVal;
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1323
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1324
    if (isfinite(fVal) || !isfinite(lVal)) {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1325
	__qMKSFLOAT(newFloat, fVal);
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1326
	RETURN ( newFloat );
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1327
    }
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1328
%}.
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1329
    "
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1330
     value out of range
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1331
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1332
    "
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1333
    ^ self class
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1334
	raise:#infiniteResultSignal
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1335
	receiver:self
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1336
	selector:#asShortFloat
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1337
	arguments:#()
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1338
	errorString:'receiver is out of the single-precision float range'
4455
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1339
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1340
    "
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1341
     1.0 asLongFloat asShortFloat
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1342
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1343
     out of range:
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1344
	3.5028234664e+38 asShortFloat
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  1345
	-3.5028234664e+38 asShortFloat
4455
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1346
    "
24292
0c0ef0b76a74 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24285
diff changeset
  1347
0c0ef0b76a74 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24285
diff changeset
  1348
    "Modified: / 08-06-2019 / 14:33:23 / Claus Gittinger"
4455
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1349
!
2d31d0d986be Raise DivisionByZeroSignal proceedable (as in ST-80)!
Stefan Vogel <sv@exept.de>
parents: 4305
diff changeset
  1350
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1351
coerce:aNumber
18833
60ea69618028 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18363
diff changeset
  1352
    "convert the argument aNumber into an instance of the receiver's class and return it."
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1353
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1354
    ^ aNumber asLongFloat
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1355
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1356
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1357
generality
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1358
    "return the generality value - see ArithmeticValue>>retry:coercing:"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1359
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1360
    ^ 90
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1361
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1362
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1363
!LongFloat methodsFor:'comparing'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1364
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1365
< aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1366
    "return true, if the argument is greater"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1367
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1368
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1369
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1370
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1371
	RETURN ( (__longFloatVal(self) < (LONGFLOAT_t)(__intVal(aNumber))) ? true : false );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1372
    }
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1373
    if (aNumber != nil) {
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1374
	if (__qIsLongFloat(aNumber)) {
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1375
	    RETURN ( (__longFloatVal(self) < __longFloatVal(aNumber)) ? true : false );
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1376
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1377
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1378
	    RETURN ( (__longFloatVal(self) < (LONGFLOAT_t)(__floatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1379
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1380
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1381
	    RETURN ( (__longFloatVal(self) < (LONGFLOAT_t)(__shortFloatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1382
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1383
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1384
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1385
    ^ aNumber lessFromLongFloat:self
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1386
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1387
    "
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1388
     1.0 asLongFloat > (1/3)
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1389
     1.0 asLongFloat > (1/3) asLongFloat
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1390
    "
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1391
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1392
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1393
<= aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1394
    "return true, if the argument is greater or equal"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1395
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1396
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1397
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1398
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1399
	RETURN ( (__longFloatVal(self) <= (LONGFLOAT_t)(__intVal(aNumber))) ? true : false );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1400
    }
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1401
    if (aNumber != nil) {
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1402
	if (__qIsLongFloat(aNumber)) {
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1403
	    RETURN ( (__longFloatVal(self) <= __longFloatVal(aNumber)) ? true : false );
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1404
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1405
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1406
	    RETURN ( (__longFloatVal(self) <= (LONGFLOAT_t)(__floatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1407
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1408
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1409
	    RETURN ( (__longFloatVal(self) <= (LONGFLOAT_t)(__shortFloatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1410
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1411
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1412
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1413
    ^ self retry:#<= coercing:aNumber
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1414
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1415
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1416
= aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1417
    "return true, if the argument represents the same numeric value
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1418
     as the receiver, false otherwise"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1419
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1420
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1421
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1422
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1423
	RETURN ( (__longFloatVal(self) == (LONGFLOAT_t)(__intVal(aNumber))) ? true : false );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1424
    }
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1425
    if (aNumber != nil) {
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1426
	if (__qIsLongFloat(aNumber)) {
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1427
	    RETURN ( (__longFloatVal(self) == __longFloatVal(aNumber)) ? true : false );
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1428
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1429
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1430
	    RETURN ( (__longFloatVal(self) == (LONGFLOAT_t)(__floatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1431
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1432
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1433
	    RETURN ( (__longFloatVal(self) == (LONGFLOAT_t)(__shortFloatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1434
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1435
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1436
%}.
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1437
    ^ aNumber equalFromLongFloat:self
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1438
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1439
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1440
> aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1441
    "return true, if the argument is less"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1442
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1443
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1444
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1445
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1446
	RETURN ( (__longFloatVal(self) > (LONGFLOAT_t)(__intVal(aNumber))) ? true : false );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1447
    }
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1448
    if (aNumber != nil) {
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1449
	if (__qIsLongFloat(aNumber)) {
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1450
	    RETURN ( (__longFloatVal(self) > __longFloatVal(aNumber)) ? true : false );
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1451
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1452
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1453
	    RETURN ( (__longFloatVal(self) > (LONGFLOAT_t)(__floatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1454
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1455
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1456
	    RETURN ( (__longFloatVal(self) > (LONGFLOAT_t)(__shortFloatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1457
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1459
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1460
    ^ self retry:#> coercing:aNumber
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1461
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1463
>= aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1464
    "return true, if the argument is less or equal"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1465
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1466
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1467
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1468
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1469
	RETURN ( (__longFloatVal(self) >= (LONGFLOAT_t)(__intVal(aNumber))) ? true : false );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
    }
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1471
    if (aNumber != nil) {
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1472
	if (__qIsLongFloat(aNumber)) {
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1473
	    RETURN ( (__longFloatVal(self) >= __longFloatVal(aNumber)) ? true : false );
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1474
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1475
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1476
	    RETURN ( (__longFloatVal(self) >= (LONGFLOAT_t)(__floatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1477
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1478
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1479
	    RETURN ( (__longFloatVal(self) >= (LONGFLOAT_t)(__shortFloatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1480
	}
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1481
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
%}.
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1483
    ^ self retry:#>= coercing:aNumber
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1484
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1485
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1486
hash
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1487
    "return a number for hashing; redefined, since floats compare
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1488
     by numeric value (i.e. 3.0 = 3), therefore 3.0 hash must be the same
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1489
     as 3 hash."
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1490
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1491
    |i|
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1492
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1493
    (self >= SmallInteger minVal and:[self <= SmallInteger maxVal]) ifTrue:[
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1494
	i := self asInteger.
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1495
	self = i ifTrue:[
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1496
	    ^ i hash
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1497
	].
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1498
    ].
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1499
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1500
    ^ self asFloat hash
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1501
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1502
    "
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1503
     1.2345 hash
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1504
     1.2345 asLongFloat hash
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1505
     1 hash
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1506
     1.0 hash
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1507
     1.0 asLongFloat hash
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1508
    "
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1509
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1510
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1511
isAlmostEqualTo:aNumber nEpsilon:nE
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1512
    "return true, if the argument, aNumber represents almost the same numeric value
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1513
     as the receiver, false otherwise.
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1514
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1515
     nE is the number of minimal float distances, that the numbers may differ and
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1516
     still be considered equal.
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1517
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1518
     For background information why floats need this
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1519
     read: http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1520
    "
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1521
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1522
    Epsilon isNil ifTrue:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1523
	Epsilon := self class computeEpsilon.
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1524
    ].
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1525
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1526
%{  /* NOCONTEXT */
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1527
#ifdef INT128
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1528
    /*
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1529
     * notice:
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1530
     * the following inline code handles some common cases,
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1531
     * and exists as an optimization, to speed up those cases.
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1532
     *
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1533
     * Conceptionally, (and for most other argument types),
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1534
     * mixed arithmetic is implemented by double dispatching
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1535
     * (see the message send at the bottom)
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1536
     */
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1537
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1538
    INT128 ulpDiff;
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1539
    union {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1540
	LONGFLOAT_t f;
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1541
	INT128 i;
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1542
    } myself, otherFloat;
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1543
    int nEpsilon;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1544
    LONGFLOAT_t scaledEpsilon;
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1545
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1546
    if (!__isSmallInteger(nE)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1547
	goto tryHarder;
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1548
    }
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1549
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1550
    nEpsilon =  __intVal(nE);
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1551
    scaledEpsilon = nEpsilon *__longFloatVal(@global(Epsilon));
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1552
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1553
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1554
	otherFloat.f = (LONGFLOAT_t)(__intVal(aNumber));
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1555
    } else if (aNumber == nil) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1556
	RETURN(false)
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1557
    } else if (__qIsLongFloat(aNumber)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1558
	otherFloat.f = __longFloatVal(aNumber);
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1559
    } else if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1560
	otherFloat.f = (LONGFLOAT_t)(__floatVal(aNumber));
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1561
    } else if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1562
	otherFloat.f = (LONGFLOAT_t)(__shortFloatVal(aNumber));
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1563
    } else {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1564
	goto tryHarder;
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1565
    }
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1566
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1567
    myself.f = __longFloatVal(self);
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1568
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1569
    // Check if the numbers are really close -- needed
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1570
    // when comparing numbers near zero (ULP method below fails for numbers near 0!).
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1571
    if (fabsl(myself.f - otherFloat.f) <= scaledEpsilon) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1572
	RETURN(true);
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1573
    }
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1574
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1575
    // if the signs differ, the numbers are different
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1576
    if ((myself.f >= 0) != (otherFloat.f >= 0)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1577
	RETURN(false);
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1578
    }
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1579
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1580
    // compute the difference of the 'units in the last place" ULP
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1581
    // (if ulpDiff == 1, two floats are adjecant)
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1582
    ulpDiff = myself.i - otherFloat.i;
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1583
    if (ulpDiff < 0) ulpDiff = -ulpDiff;
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1584
    if (ulpDiff <= nEpsilon) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1585
	RETURN(true);
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1586
    } else {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1587
	RETURN(false)
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1588
    }
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1589
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1590
tryHarder:;
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1591
#endif // INT128
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1592
%}.
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1593
    ^ super isAlmostEqualTo:aNumber nEpsilon:nE.
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1594
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1595
    "
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1596
	67329.234q isAlmostEqualTo:67329.234q + self epsilon nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1597
	1.0 asLongFloat isAlmostEqualTo:1.0001 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1598
	1.0 asLongFloat isAlmostEqualTo:-1.0 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1599
	1.0 asLongFloat isAlmostEqualTo:1 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1600
	0.0 asLongFloat isAlmostEqualTo:0 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24205
diff changeset
  1601
	0.0 asLongFloat isAlmostEqualTo:self epsilon nEpsilon:1
22855
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1602
    "
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1603
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1604
    "Created: / 09-05-2018 / 23:31:18 / stefan"
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1605
    "Modified: / 10-05-2018 / 01:03:24 / stefan"
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1606
!
84bb9781eee1 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 22790
diff changeset
  1607
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1608
~= aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1609
    "return true, if the arguments value are not equal."
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1610
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1611
%{  /* NOCONTEXT */
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1612
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1613
    if (__isSmallInteger(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1614
	RETURN ( (__longFloatVal(self) != (LONGFLOAT_t)(__intVal(aNumber))) ? true : false );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1615
    }
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1616
    if (aNumber != nil) {
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1617
	if (__isLongFloat(aNumber)) {
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1618
	    RETURN ( (__longFloatVal(self) != __longFloatVal(aNumber)) ? true : false );
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1619
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1620
	if (__qIsFloatLike(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1621
	    RETURN ( (__longFloatVal(self) != (LONGFLOAT_t)(__floatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1622
	}
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1623
	if (__qIsShortFloat(aNumber)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1624
	    RETURN ( (__longFloatVal(self) != (LONGFLOAT_t)(__shortFloatVal(aNumber))) ? true : false );
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1625
	}
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1626
    } else {
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1627
	RETURN ( true );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1628
    }
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1629
%}.
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1630
    ^ super ~= aNumber
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1631
! !
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1632
24190
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1633
!LongFloat methodsFor:'copying'!
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1634
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1635
deepCopy
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1636
    "return a deep copy of myself
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1637
     - because storing into floats is not recommended/allowed, its ok to return the receiver"
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1638
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1639
    ^ self
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1640
!
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1641
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1642
deepCopyUsing:aDictionary postCopySelector:postCopySelector
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1643
    "return a deep copy of myself
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1644
     - because storing into floats is not recommended/allowed, its ok to return the receiver"
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1645
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1646
    ^ self
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1647
!
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1648
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1649
shallowCopy
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1650
    "return a shallow copy of the receiver"
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1651
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1652
    ^ self
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1653
!
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1654
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1655
simpleDeepCopy
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1656
    "return a deep copy of the receiver
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1657
     - because storing into floats is not recommended/allowed, its ok to return the receiver"
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1658
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1659
    ^ self
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1660
! !
80408f7663d1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24151
diff changeset
  1661
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1662
!LongFloat methodsFor:'double dispatching'!
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1663
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1664
productFromInteger:anInteger
24276
f748df283009 documentation
Claus Gittinger <cg@exept.de>
parents: 24275
diff changeset
  1665
    "sent when an integer does not know how to multiply the receiver, self"
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1666
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1667
%{  /* NOCONTEXT */
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1668
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1669
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1670
    LONGFLOAT_t result;
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1671
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1672
    if (__isSmallInteger(anInteger)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1673
	result = __longFloatVal(self) * (LONGFLOAT_t)(__intVal(anInteger));
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1674
retResult:
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1675
	__qMKLFLOAT(newFloat, result);
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1676
	RETURN ( newFloat );
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1677
    }
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1678
%}.
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1679
    ^ super productFromInteger:anInteger
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1680
!
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1681
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1682
sumFromInteger:anInteger
24276
f748df283009 documentation
Claus Gittinger <cg@exept.de>
parents: 24275
diff changeset
  1683
    "sent when an integer does not know how to add the receiver, self"
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1684
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1685
%{  /* NOCONTEXT */
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1686
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1687
    OBJ newFloat;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1688
    LONGFLOAT_t result;
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1689
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1690
    if (__isSmallInteger(anInteger)) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1691
	result = __longFloatVal(self) + (LONGFLOAT_t)(__intVal(anInteger));
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1692
retResult:
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1693
	__qMKLFLOAT(newFloat, result);
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1694
	RETURN ( newFloat );
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1695
    }
10319
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1696
%}.
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1697
    ^ super sumFromInteger:anInteger
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1698
! !
d89f3a159d73 double dispatching
Claus Gittinger <cg@exept.de>
parents: 10314
diff changeset
  1699
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1700
!LongFloat methodsFor:'mathematical functions'!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1701
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1702
exp
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1703
    "return e raised to the power of the receiver"
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1704
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1705
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1706
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1707
%{
7374
f3bc94a9a373 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7372
diff changeset
  1708
#if defined(LONG_exp)
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1709
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1710
    LONGFLOAT_t rslt;
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1711
    OBJ newFloat;
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1712
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1713
    __threadErrno = 0;
7374
f3bc94a9a373 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7372
diff changeset
  1714
    rslt = LONG_exp(__longFloatVal(self));
7383
0219aa6bd824 hyperbolic functions
Claus Gittinger <cg@exept.de>
parents: 7382
diff changeset
  1715
# ifdef LONG_isnan
0219aa6bd824 hyperbolic functions
Claus Gittinger <cg@exept.de>
parents: 7382
diff changeset
  1716
    if (! LONG_isnan(rslt))
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1717
# endif
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1718
    if (__threadErrno == 0) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1719
	__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1720
	RETURN ( newFloat );
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1721
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1722
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  1723
    useFallBack = true;
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1724
#endif
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1725
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1726
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1727
	^ super exp
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1728
    ].
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1729
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1730
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1731
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1732
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1733
	selector:#exp
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1734
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1735
	errorString:'bad receiver in exp'
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1736
!
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1737
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1738
ln
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1739
    "return the natural logarithm of myself.
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1740
     Raises an exception, if the receiver is less or equal to zero."
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1741
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1742
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1743
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1744
%{
7374
f3bc94a9a373 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7372
diff changeset
  1745
#if defined(LONG_log)
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1746
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1747
    LONGFLOAT_t val, rslt;
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1748
    OBJ newFloat;
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1749
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1750
    val = __longFloatVal(self);
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1751
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1752
    /*
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1753
     * to suppress the warnBox opened by win32
21951
067f8ab0f3f5 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21914
diff changeset
  1754
     * to avoid returning -INF from some unix math libs (__osx__)
067f8ab0f3f5 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21914
diff changeset
  1755
     */
067f8ab0f3f5 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21914
diff changeset
  1756
    if (val > 0.0) {
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1757
	__threadErrno = 0;
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1758
	rslt = LONG_log(val);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1759
# ifdef LONG_isnan
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1760
	if (! LONG_isnan(rslt))
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1761
# endif
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1762
	{
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1763
	    if (__threadErrno == 0) {
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1764
		__qMKLFLOAT(newFloat, rslt);
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1765
		RETURN ( newFloat );
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1766
	    }
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1767
	}
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1768
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1769
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  1770
    useFallBack = true;
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1771
#endif
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1772
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1773
    useFallBack notNil ifTrue:[
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1774
	^ super ln
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1775
    ].
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1776
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1777
    "
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1778
     an invalid value for logarithm
21971
9e7d9bb12714 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21969
diff changeset
  1779
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1780
    "
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1781
    ^ self class
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1782
	raise:(self = 0 ifTrue:[#infiniteResultSignal] ifFalse:[#domainErrorSignal])
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1783
	receiver:self
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1784
	selector:#ln
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1785
	arguments:#()
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1786
	errorString:'bad receiver in ln (not strictly positive)'
21951
067f8ab0f3f5 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21914
diff changeset
  1787
21971
9e7d9bb12714 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21969
diff changeset
  1788
    "Modified (comment): / 03-07-2017 / 15:57:57 / cg"
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1789
!
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1790
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1791
log10
21826
feedd7dc695d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
  1792
    "return the base-10 logarithm of the receiver.
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1793
     Raises an exception, if the receiver is less or equal to zero."
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1794
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1795
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1796
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1797
%{
7374
f3bc94a9a373 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7372
diff changeset
  1798
#if defined(LONG_log10)
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1799
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1800
    LONGFLOAT_t val, rslt;
7372
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1801
    OBJ newFloat;
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1802
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1803
    val = __longFloatVal(self);
e31df0bf0c05 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7357
diff changeset
  1804
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1805
    /*
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1806
     * to suppress the warnBox opened by win32
21954
22f39512bde3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21951
diff changeset
  1807
     * to avoid returning -INF from some unix math libs (__osx__)
22f39512bde3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21951
diff changeset
  1808
     */
22f39512bde3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21951
diff changeset
  1809
    if (val > 0.0) {
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1810
	__threadErrno = 0;
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1811
	rslt = LONG_log10(val);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1812
# ifdef LONG_isnan
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1813
	if (! LONG_isnan(rslt))
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1814
# endif
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1815
	{
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1816
	    if (__threadErrno == 0) {
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1817
		__qMKLFLOAT(newFloat, rslt);
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1818
		RETURN ( newFloat );
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1819
	    }
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1820
	}
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1821
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1822
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  1823
    useFallBack = true;
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1824
#endif
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1825
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1826
    useFallBack notNil ifTrue:[
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1827
	^ super log10
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1828
    ].
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1829
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1830
    "
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1831
     an invalid value for logarithm
21971
9e7d9bb12714 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21969
diff changeset
  1832
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1833
    "
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1834
    ^ self class
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1835
	raise:(self = 0 ifTrue:[#infiniteResultSignal] ifFalse:[#domainErrorSignal])
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1836
	receiver:self
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1837
	selector:#log10
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1838
	arguments:#()
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1839
	errorString:'bad receiver in log10 (not strictly positive)'
21954
22f39512bde3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21951
diff changeset
  1840
21971
9e7d9bb12714 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21969
diff changeset
  1841
    "Modified (comment): / 03-07-2017 / 15:58:06 / cg"
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1842
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1843
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1844
raisedTo:aNumber
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1845
    "return self raised to the power of aNumber"
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1846
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1847
    |n useFallBack|
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1848
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1849
    n := aNumber asFloat.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1850
%{
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1851
#if defined(LONG_pow)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1852
    LONGFLOAT_t rslt;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1853
    OBJ newFloat;
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1854
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1855
    if (__isFloatLike(n)) {
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1856
	__threadErrno = 0;
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1857
	rslt = LONG_pow(__longFloatVal(self), __floatVal(n));
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1858
# ifdef LONG_isnan
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1859
	if (! LONG_isnan(rslt))
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1860
# endif
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1861
	{
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1862
	    if (__threadErrno == 0) {
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1863
		__qMKLFLOAT(newFloat, rslt);
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1864
		RETURN ( newFloat );
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1865
	    }
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1866
	}
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1867
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1868
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  1869
    useFallBack = true;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1870
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1871
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1872
    useFallBack notNil ifTrue:[
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1873
	^ super raisedTo:aNumber
19090
c044866c92eb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18853
diff changeset
  1874
    ].
c044866c92eb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18853
diff changeset
  1875
21914
d607355aa373 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21907
diff changeset
  1876
    "/ the c-library pow function, has a bug:
19266
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  1877
    "/ it does not deal correctly with negative numbers.
19090
c044866c92eb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18853
diff changeset
  1878
    "/ I.e. it raises an error on -8^(1/3) instead of returning a negative -2
c044866c92eb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18853
diff changeset
  1879
    "/ work around with a kludge:
c044866c92eb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18853
diff changeset
  1880
    self < 0 ifTrue:[
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1881
	^ (self negated raisedTo:n) negated
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1882
    ].
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1883
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1884
    "
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1885
     an invalid argument (not convertable to float ?)
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1886
    "
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1887
    ^ self class
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1888
	raise:#domainErrorSignal
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1889
	receiver:self
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1890
	selector:#raisedTo:
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1891
	arguments:(Array with:aNumber)
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  1892
	errorString:'bad receiver/arg in raisedTo:'
21914
d607355aa373 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21907
diff changeset
  1893
d607355aa373 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21907
diff changeset
  1894
    "Modified: / 22-06-2017 / 15:54:59 / cg"
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1895
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1896
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1897
sqrt
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1898
    "return the square root of myself.
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1899
     Raises an exception, if the receiver is less than zero."
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1900
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1901
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1902
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  1903
%{
7374
f3bc94a9a373 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7372
diff changeset
  1904
#if defined(LONG_sqrt)
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1905
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  1906
    LONGFLOAT_t val, rslt;
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1907
    OBJ newFloat;
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1908
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1909
    val = __longFloatVal(self);
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1910
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
  1911
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1912
    if (val >= 0.0)
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1913
# endif
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1914
    {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1915
	__threadErrno = 0;
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1916
	rslt = LONG_sqrt(val);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1917
# ifdef LONG_isnan
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1918
	if (! LONG_isnan(rslt))
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1919
# endif
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1920
	{
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1921
	    if (__threadErrno == 0) {
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1922
		__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1923
		RETURN ( newFloat );
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1924
	    }
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1925
	}
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1926
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1927
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  1928
    useFallBack = true;
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1929
#endif
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1930
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1931
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1932
	^ super sqrt
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1933
    ].
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  1934
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1935
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1936
	raise:#imaginaryResultSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1937
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1938
	selector:#sqrt
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1939
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  1940
	errorString:'bad (negative) receiver in sqrt'
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1941
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1942
    "
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1943
     10 asLongFloat sqrt
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1944
     -10 asLongFloat sqrt
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1945
    "
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1946
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1947
    "Modified: / 16.11.2001 / 14:14:43 / cg"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1948
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1949
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1950
!LongFloat methodsFor:'printing & storing'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1951
22300
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1952
printOn:aStream
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1953
    "append a printed representation of the receiver to
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1954
     the argument, aStream.
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1955
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1956
     I use #printString instead of #printOn: as basic print mechanism."
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1957
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1958
    aStream nextPutAll:self printString
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1959
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1960
    "Created: / 10-10-2017 / 14:05:22 / cg"
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1961
!
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  1962
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1963
printString
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1964
    "return a printed representation of the receiver
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1965
     LimitedPrecisonReal and its subclasses use #printString instead of
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1966
     #printOn: as basic print mechanism."
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  1967
18137
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1968
    ^ self printStringWithFormat:DefaultPrintFormat
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1969
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1970
    "
24818
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1971
     LongFloat pi printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1972
     1.234 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1973
     1.0 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1974
     1e10 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1975
     1.2e3 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1976
     1.2e30 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1977
     (1.0 uncheckedDivide:0) asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1978
     (0.0 uncheckedDivide:0) asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1979
     self pi printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1980
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1981
     DecimalPointCharacterForPrinting := $,.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1982
     1.234 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1983
     1.0 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1984
     1e10 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1985
     1.2e3 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1986
     1.2e30 asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1987
     (1.0 uncheckedDivide:0) asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1988
     (0.0 uncheckedDivide:0) asLongFloat printString.
fb24167bfb3d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24704
diff changeset
  1989
     DecimalPointCharacterForPrinting := $.
18137
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1990
    "
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1991
!
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1992
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1993
printStringWithFormat:format
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1994
    "return a printed representation of the receiver;
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1995
     fmt must be of the form: .nn, where nn is the number of digits.
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1996
     To print 6 valid digits, use printStringWithFormat:'.6'
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1997
     For Floats, the default used in printString, is 15 (because its a double);
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1998
     for ShortFloats, it is 6 (because it is a float)"
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  1999
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2000
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2001
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2002
    char buffer[64];
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2003
    char fmtBuffer[20];
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2004
    char *fmt;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2005
    REGISTER char *cp;
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2006
    OBJ s;
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2007
    int len ;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2008
18137
ee16eb999143 class: LongFloat
Claus Gittinger <cg@exept.de>
parents: 18132
diff changeset
  2009
    if (__isStringLike(format)) {
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2010
	fmt = (char *) __stringVal(format);
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2011
    } else {
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2012
	fmt = ".19";
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2013
    }
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2014
    /*
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2015
     * build a printf format string
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2016
     */
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2017
    fmtBuffer[0] = '%';
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2018
    strncpy(fmtBuffer+1, fmt, 10);
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2019
    if (sizeof(LONGFLOAT_t) == sizeof(double)) {
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2020
#ifdef SYSV
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2021
	strcat(fmtBuffer, "lg");
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2022
#else
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2023
	strcat(fmtBuffer, "G");
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2024
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2025
    } else {
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2026
	strcat(fmtBuffer, "LG");
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2027
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2028
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2029
    /*
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2030
     * actually only needed on sparc: since thisContext is
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2031
     * in a global register, which gets destroyed by printf,
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2032
     * manually save it here - very stupid ...
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2033
     */
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2034
    __BEGIN_PROTECT_REGISTERS__
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2035
    len = snprintf(buffer, sizeof(buffer), fmtBuffer, __longFloatVal(self));
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2036
    __END_PROTECT_REGISTERS__
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2037
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2038
    if (len >= 0 && len < sizeof(buffer)-3) {
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2039
	/*
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2040
	 * kludge to make integral float f prints as "f.0" (not as "f" as printf does)
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2041
	 * (i.e. look if string contains '.' or 'e' and append '.0' if not)
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2042
	 */
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2043
	for (cp = buffer; *cp; cp++) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2044
	    if ((*cp == '.') || (*cp == ',') || (*cp == 'E') || (*cp == 'e')) break;
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2045
	}
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2046
	if (!*cp && (cp[-1] >= '0') && (cp[-1] <= '9')) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2047
	    if (__isCharacter(@global(DecimalPointCharacterForPrinting))) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2048
		*cp++ = __intVal(__characterVal(@global(DecimalPointCharacterForPrinting)));
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2049
	    } else {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2050
		*cp++ = '.';
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2051
	    }
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2052
	    *cp++ = '0';
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2053
	    *cp = '\0';
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2054
	} else {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2055
	    if (cp && (*cp == '.')) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2056
		if (__isCharacter(@global(DecimalPointCharacterForPrinting))) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2057
		    *cp = __intVal(__characterVal(@global(DecimalPointCharacterForPrinting)));
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2058
		}
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2059
	    }
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2060
	}
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2061
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2062
	s = __MKSTRING(buffer);
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2063
	if (s != nil) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2064
	    RETURN (s);
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2065
	}
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2066
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2067
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2068
    "
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2069
     memory allocation (for the new string) failed.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2070
     When we arrive here, there was no memory, even after a garbage collect.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2071
     This means, that the VM wanted to get some more memory from the
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2072
     OS, which was not kind enough to give it.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2073
     Bad luck - you should increase the swap space on your machine.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2074
    "
20706
009b8269bd08 we have class based exceptions - use them
Claus Gittinger <cg@exept.de>
parents: 20419
diff changeset
  2075
    ^ AllocationFailure raise.
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2076
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2077
    "
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2078
	1.234 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2079
	1.0 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2080
	1e10 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2081
	1.2e3 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2082
	1.2e30 asLongFloat printString.
19329
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
  2083
	(1.0 uncheckedDivide:0)  isInfinite.
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
  2084
	(0.0 uncheckedDivide:0)  isNaN.
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
  2085
	(1.0 uncheckedDivide:0) asLongFloat isInfinite.
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
  2086
	(0.0 uncheckedDivide:0) asLongFloat isNaN.
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2087
	(1.0 uncheckedDivide:0) asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2088
	(0.0 uncheckedDivide:0) asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2089
	self pi printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2090
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2091
	DecimalPointCharacterForPrinting := $,.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2092
	1.234 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2093
	1.0 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2094
	1e10 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2095
	1.2e3 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2096
	1.2e30 asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2097
	(1.0 uncheckedDivide:0) asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2098
	(0.0 uncheckedDivide:0) asLongFloat printString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2099
	DecimalPointCharacterForPrinting := $.
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2100
    "
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2101
!
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2102
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2103
printfPrintString:formatString
24691
df00d245c465 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24470
diff changeset
  2104
    <unsave>
df00d245c465 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24470
diff changeset
  2105
7746
4a4208ef7699 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7731
diff changeset
  2106
    "non-standard: return a printed representation of the receiver
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2107
     as specified by formatString, which is defined by printf.
21951
067f8ab0f3f5 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21914
diff changeset
  2108
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2109
     If you use this, be aware, that specifying long doubles differs on
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2110
     systems; on Linux/gnuc machines you have to give something like %LF/%LG.
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2111
     Also, the resulting string may not be longer than 255 bytes -
20419
a37b99ec87a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19860
diff changeset
  2112
     since that's the (static) size of the buffer.
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  2113
11925
6c93ef7cb9ff changed #printfPrintString:
Claus Gittinger <cg@exept.de>
parents: 11729
diff changeset
  2114
     This method is NONSTANDARD and may be removed without notice.
24691
df00d245c465 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24470
diff changeset
  2115
df00d245c465 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24470
diff changeset
  2116
     WARNING: this goes directly to the C-printf function and may therefore me inherently unsafe.
11925
6c93ef7cb9ff changed #printfPrintString:
Claus Gittinger <cg@exept.de>
parents: 11729
diff changeset
  2117
     Please use the printf: method, which is safe as it is completely implemented in Smalltalk."
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2118
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
  2119
%{  /* STACK: 16000 */
24691
df00d245c465 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24470
diff changeset
  2120
#ifndef __SCHTEAM__
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
  2121
    char buffer[1024];
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2122
    OBJ s;
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2123
    int len;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2124
12476
66b5104cedc9 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11925
diff changeset
  2125
    if (__isStringLike(formatString)) {
25036
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2126
	/*
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2127
	 * actually only needed on sparc: since thisContext is
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2128
	 * in a global register, which gets destroyed by printf,
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2129
	 * manually save it here - very stupid ...
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2130
	 */
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2131
	__BEGIN_PROTECT_REGISTERS__
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2132
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2133
	len = snprintf(buffer, sizeof(buffer), __stringVal(formatString), __longFloatVal(self));
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2134
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2135
	__END_PROTECT_REGISTERS__
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2136
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2137
	if (len < 0) goto fail;
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2138
	if (len >= sizeof(buffer)) goto fail;
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2139
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2140
	s = __MKSTRING_L(buffer, len);
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2141
	if (s != nil) {
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2142
	    RETURN (s);
a92213ab83ac borland fix
Claus Gittinger <cg@exept.de>
parents: 25027
diff changeset
  2143
	}
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2144
    }
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7831
diff changeset
  2145
fail: ;
24691
df00d245c465 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24470
diff changeset
  2146
#endif /* not __SCHTEAM__ */
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2147
%}.
21907
d0143f6eef88 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21889
diff changeset
  2148
    ^ super printfPrintString:formatString
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2149
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2150
    "
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2151
     Float pi asLongFloat printfPrintString:'%%LG -> %LG'
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2152
     Float pi asLongFloat printfPrintString:'%%LF -> %LF'
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2153
     Float pi asLongFloat printfPrintString:'%%7.15LG -> %7.15LG'
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2154
     Float pi asLongFloat printfPrintString:'%%7.15LF -> %7.15LF'
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2155
    "
21907
d0143f6eef88 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21889
diff changeset
  2156
21951
067f8ab0f3f5 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21914
diff changeset
  2157
    "Modified (comment): / 03-07-2017 / 15:11:48 / cg"
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2158
!
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2159
22300
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2160
storeOn:aStream
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2161
    "append a printed representation of the receiver to
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2162
     the argument, aStream.
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2163
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2164
     I use #storeString instead of #storeOn: as basic store mechanism."
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2165
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2166
    aStream nextPutAll:self storeString
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2167
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2168
    "Created: / 10-10-2017 / 14:06:46 / cg"
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2169
!
8ba20eef917f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22258
diff changeset
  2170
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2171
storeString
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2172
    "return a printed representation of the receiver;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2173
     all valid digits are printed.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2174
     LimitedPrecisonReal and its subclasses use #storeString instead of
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2175
     #storeOn: as basic print mechanism."
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2176
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2177
%{  /* NOCONTEXT */
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2178
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2179
    char buffer[64];
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2180
    REGISTER char *cp;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2181
    OBJ s;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2182
    int len;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2183
    char *fmtBuffer;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2184
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2185
    /*
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2186
     * build a printf format string
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2187
     */
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2188
    if (sizeof(LONGFLOAT_t) == sizeof(double)) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  2189
#ifdef SYSV
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2190
	fmtBuffer = "%.17lg";
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  2191
#else
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2192
	fmtBuffer = "%.17G";
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  2193
#endif
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  2194
    } else {
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2195
	fmtBuffer = "%.20LG";
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14600
diff changeset
  2196
    }
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2197
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2198
    __BEGIN_PROTECT_REGISTERS__
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2199
    len = snprintf(buffer, sizeof(buffer), fmtBuffer, __longFloatVal(self));
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2200
    __END_PROTECT_REGISTERS__
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2201
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2202
    if (len >= 0 && len < sizeof(buffer)-3) {
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2203
	/*
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2204
	 * kludge to make integral float f prints as "f.0" (not as "f" as printf does)
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2205
	 * (i.e. look if string contains '.' or 'e' and append '.0' if not)
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2206
	 */
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2207
	for (cp = buffer; *cp; cp++) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2208
	    if ((*cp == '.') || (*cp == ',') || (*cp == 'E') || (*cp == 'e')) break;
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2209
	}
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2210
	if (!*cp && (cp[-1] >= '0') && (cp[-1] <= '9')) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2211
	    *cp++ = '.';
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2212
	    *cp++ = '0';
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2213
	    *cp = '\0';
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2214
	}
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2215
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2216
	s = __MKSTRING(buffer);
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2217
	if (s != nil) {
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2218
	    RETURN (s);
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2219
	}
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2220
    }
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2221
%}.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2222
    "
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2223
     memory allocation (for the new string) failed.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2224
     When we arrive here, there was no memory, even after a garbage collect.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2225
     This means, that the VM wanted to get some more memory from the
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2226
     OS, which was not kind enough to give it.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2227
     Bad luck - you should increase the swap space on your machine.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2228
    "
20706
009b8269bd08 we have class based exceptions - use them
Claus Gittinger <cg@exept.de>
parents: 20419
diff changeset
  2229
    ^ AllocationFailure raise.
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2230
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2231
    "
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2232
	1.0 asLongFloat storeString
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2233
	1.234 asLongFloat storeString
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2234
	1e10 asLongFloat storeString
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2235
	1.2e3 asLongFloat storeString
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2236
	1.2e30 asLongFloat storeString
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2237
	LongFloat pi asLongFloat storeString
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2238
	(1.0 uncheckedDivide:0) asLongFloat storeString
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2239
	(0.0 uncheckedDivide:0) asLongFloat storeString
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2240
9122
858a4118a135 comment; decimalPoint classVars renamed
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  2241
     notice that the storeString is NOT affected by DecimalPointCharacterForPrinting:
858a4118a135 comment; decimalPoint classVars renamed
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  2242
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2243
	DecimalPointCharacterForPrinting := $,.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2244
	1.234 asLongFloat storeString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2245
	1.0 asLongFloat storeString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2246
	1e10 asLongFloat storeString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2247
	1.2e3 asLongFloat storeString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2248
	1.2e30 asLongFloat storeString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2249
	(1.0 uncheckedDivide:0) asLongFloat storeString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2250
	(0.0 uncheckedDivide:0) asLongFloat storeString.
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2251
	DecimalPointCharacterForPrinting := $.
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2252
    "
5885
91ff479e693b added #defaultNumberOfDigits
Claus Gittinger <cg@exept.de>
parents: 5822
diff changeset
  2253
! !
91ff479e693b added #defaultNumberOfDigits
Claus Gittinger <cg@exept.de>
parents: 5822
diff changeset
  2254
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2255
!LongFloat methodsFor:'private-accessing'!
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2256
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2257
basicAt:index
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2258
    "return an internal byte of the float.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2259
     The value returned here depends on byte order, float representation etc.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2260
     Therefore, this method should be used strictly private.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2261
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2262
     Notice:
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2263
	the need to redefine this method here is due to the
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2264
	inability of many machines to store floats in non-double aligned memory.
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2265
	Therefore, on some machines, the first <nPad> bytes of a float are left unused,
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2266
	and the actual float is stored at index <nPad>+1 ...
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2267
	To hide this at one place, this method knows about that, and returns
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2268
	values as if this filler wasnt present."
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2269
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2270
%{  /* NOCONTEXT */
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2271
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2272
    register int indx;
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2273
    unsigned char *cp;
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2274
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2275
    /*
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2276
     * notice the missing test for self being a nonNilObject -
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2277
     * this can be done since basicAt: is defined both in UndefinedObject
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2278
     * and SmallInteger
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2279
     */
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2280
    if (__isSmallInteger(index)) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2281
	indx = __intVal(index) - 1;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2282
	if (((unsigned)(indx)) < sizeof(LONGFLOAT_t)) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2283
	    cp = (unsigned char *)(& (__LongFloatInstPtr(self)->f_longfloatvalue));
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2284
	    RETURN ( __mkSmallInteger(cp[indx] & 0xFF) );
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2285
	}
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2286
    }
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2287
%}.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2288
    ^ self indexNotIntegerOrOutOfBounds:index
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2289
!
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2290
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2291
basicAt:index put:value
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2292
    "set an internal byte of the float.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2293
     The value to be stored here depends on byte order, float representation etc.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2294
     Therefore, this method should be used strictly private.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2295
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2296
     Notice:
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2297
	the need to redefine this method here is due to the
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2298
	inability of many machines to store floats in non-double aligned memory.
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2299
	Therefore, on some machines, the first <nPad> bytes of a float are left unused,
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2300
	and the actual float is stored at index <nPad>+1 .. .
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2301
	To hide this at one place, this method knows about that, and returns
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2302
	values as if this filler wasnt present."
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2303
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2304
%{  /* NOCONTEXT */
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2305
    register int indx, val;
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2306
    unsigned char *cp;
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2307
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2308
    /*
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2309
     * notice the missing test for self being a nonNilObject -
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2310
     * this can be done since basicAt: is defined both in UndefinedObject
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2311
     * and SmallInteger
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2312
     */
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2313
    if (__bothSmallInteger(index, value)) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2314
	val = __intVal(value);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2315
	if ((val & ~0xFF) == 0 /* i.e. (val >= 0) && (val <= 255) */) {
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2316
	    indx = __intVal(index) - 1;
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2317
	    if (((unsigned)(indx)) < sizeof(LONGFLOAT_t)) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2318
		cp = (unsigned char *)(& (__LongFloatInstPtr(self)->f_longfloatvalue));
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2319
		cp[indx] = val;
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2320
		RETURN ( value );
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2321
	    }
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2322
	}
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2323
    }
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2324
%}.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2325
    value isInteger ifFalse:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2326
	"
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2327
	 the object to store should be an integer number
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2328
	"
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2329
	^ self elementNotInteger
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2330
    ].
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2331
    (value between:0 and:255) ifFalse:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2332
	"
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2333
	 the object to store must be a bytes value
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2334
	"
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2335
	^ self elementBoundsError:value
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2336
    ].
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2337
    ^ self indexNotIntegerOrOutOfBounds:index
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2338
!
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2339
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2340
basicSize
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2341
    "return the size in bytes of the float.
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2342
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2343
     Notice:
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2344
	the need to redefine this method here is due to the
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2345
	inability of many machines to store floats in non-double aligned memory.
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2346
	Therefore, on some machines, the first <nPad> bytes of a float are left unused,
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2347
	and the actual float is stored at index <nPad>+1 ...
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2348
	To hide this at one place, this method knows about that, and returns
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2349
	values as if this filler wasnt present."
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2350
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2351
%{  /* NOCONTEXT */
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2352
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2353
    RETURN (__mkSmallInteger(sizeof(LONGFLOAT_t)));
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2354
%}.
22258
4f711d284370 #BUGFIX by sr
sr
parents: 22100
diff changeset
  2355
!
4f711d284370 #BUGFIX by sr
sr
parents: 22100
diff changeset
  2356
4f711d284370 #BUGFIX by sr
sr
parents: 22100
diff changeset
  2357
byteAt:index
4f711d284370 #BUGFIX by sr
sr
parents: 22100
diff changeset
  2358
    ^ self basicAt:index
4f711d284370 #BUGFIX by sr
sr
parents: 22100
diff changeset
  2359
!
4f711d284370 #BUGFIX by sr
sr
parents: 22100
diff changeset
  2360
4f711d284370 #BUGFIX by sr
sr
parents: 22100
diff changeset
  2361
byteAt:index put:newByte
4f711d284370 #BUGFIX by sr
sr
parents: 22100
diff changeset
  2362
    self shouldNotImplement
7415
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2363
! !
eac306452d5a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7414
diff changeset
  2364
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2365
!LongFloat methodsFor:'special access'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2366
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2367
exponent
24965
9de698b84956 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24952
diff changeset
  2368
    "extract a normalized float's (unbiased) exponent.
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2369
     The returned value depends on the float-representation of
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2370
     the underlying machine and is therefore highly unportable.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2371
     This is not for general use.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2372
     This assumes that the mantissa is normalized to
21851
64aecf11c224 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21826
diff changeset
  2373
     0.5 .. 1.0 and the float's value is mantissa * 2^exp"
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2374
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2375
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2376
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2377
#if defined(LONG_frexp)
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2378
    int exp;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2379
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2380
    LONG_frexp( __longFloatVal(self), &exp);
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2381
    RETURN (__mkSmallInteger(exp));
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2382
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2383
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2384
    ^ super exponent
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2385
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2386
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2387
     4.0q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2388
     2.0q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2389
     1.0q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2390
     0.5q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2391
     0.25q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2392
     0.00000011111q exponent
21851
64aecf11c224 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21826
diff changeset
  2393
     1.0q1000 exponent
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2394
    "
21851
64aecf11c224 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21826
diff changeset
  2395
64aecf11c224 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21826
diff changeset
  2396
    "Modified (comment): / 20-06-2017 / 11:20:40 / cg"
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2397
!
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2398
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2399
mantissa
24151
9105660f5693 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 22855
diff changeset
  2400
    "extract a normalized float's mantissa.
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2401
     The returned value depends on the float-representation of
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2402
     the underlying machine and is therefore highly unportable.
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2403
     This is not for general use.
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2404
     This assumes that the mantissa is normalized to
24151
9105660f5693 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 22855
diff changeset
  2405
     0.5 .. 1.0 and the float's value is mantissa * 2^exp"
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2406
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2407
%{  /* NOCONTEXT */
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2408
#if defined(LONG_frexp)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2409
    LONGFLOAT_t frac;
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2410
    int exp;
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2411
    OBJ v;
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2412
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2413
    frac = LONG_frexp( __longFloatVal(self), &exp);
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2414
    __qMKLFLOAT(v, frac);
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2415
    RETURN (v);
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2416
#endif
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2417
%}.
21851
64aecf11c224 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21826
diff changeset
  2418
    ^ super mantissa
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2419
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2420
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2421
     1.0q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2422
     1.0q asLongFloat mantissa
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2423
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2424
     0.5q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2425
     0.5q  mantissa
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2426
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2427
     0.25q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2428
     0.25q mantissa
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2429
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2430
     0.00000011111q exponent
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  2431
     0.00000011111q mantissa
25013
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
  2432
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
  2433
     self assert:(1.0 asLongFloat mantissa * (2 raisedTo:1.0 asLongFloat exponent)) = 1.0 asLongFloat.
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
  2434
     self assert:(100.0 asLongFloat mantissa * (2 raisedTo:100.0 asLongFloat exponent)) = 100.0 asLongFloat.
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
  2435
     self assert:(10e15 asLongFloat mantissa * (2 raisedTo:10e15 asLongFloat exponent)) = 10e15 asLongFloat.
eb9cf7e9d6b5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24989
diff changeset
  2436
     self assert:(10e-15 asLongFloat mantissa * (2 raisedTo:10e-15 asLongFloat exponent)) = 10e-15 asLongFloat.
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  2437
    "
21851
64aecf11c224 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21826
diff changeset
  2438
64aecf11c224 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21826
diff changeset
  2439
    "Modified: / 20-06-2017 / 11:33:24 / cg"
24151
9105660f5693 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 22855
diff changeset
  2440
    "Modified (comment): / 26-05-2019 / 03:13:08 / Claus Gittinger"
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2441
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2442
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2443
!LongFloat methodsFor:'testing'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2444
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2445
isFinite
24704
807430cfebdb #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24691
diff changeset
  2446
    "return true, if the receiver is a finite float (not NaN and not +/-INF)"
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2447
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2448
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2449
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2450
#ifdef LONG_finite
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2451
    LONGFLOAT_t lV = __longFloatVal(self);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2452
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2453
    if (LONG_finite(lV)) {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2454
	RETURN (true);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2455
    } else {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2456
	RETURN (false);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2457
    }
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2458
#else
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2459
    double dV = (double) __longFloatVal(self);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2460
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2461
    if (isfinite(dV)) {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2462
	RETURN (true);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2463
    } else {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2464
	RETURN (false);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2465
    }
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2466
#endif
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2467
%}
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2468
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2469
    "
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2470
	1.0 asLongFloat isFinite
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2471
	(0.0 asLongFloat uncheckedDivide: 0.0) isFinite
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2472
	(1.0 asLongFloat uncheckedDivide: 0.0) isFinite
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2473
	(-1.0 asLongFloat uncheckedDivide: 0.0) isFinite
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2474
    "
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2475
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2476
22100
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2477
isInfinite
24704
807430cfebdb #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24691
diff changeset
  2478
    "return true, if the receiver is an infinite float (+Inf or -Inf).
22100
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2479
     These are not created by ST/X float operations (they raise an exception);
24704
807430cfebdb #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24691
diff changeset
  2480
     however, inline C-code could produce them."
22100
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2481
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2482
%{  /* NOCONTEXT */
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2483
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2484
#ifdef LONG_infinite
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2485
    LONGFLOAT_t lV = __longFloatVal(self);
22100
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2486
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2487
    if (LONG_infinite(lV)) { RETURN (true); }
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2488
    RETURN (false);
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2489
#else
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2490
# if defined(LONG_finite) && defined(LONG_isnan)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2491
    LONGFLOAT_t lV = __longFloatVal(self);
22100
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2492
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2493
    if (!LONG_finite(lV) && !LONG_isnan(lV) ) { RETURN (true); }
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2494
    RETURN (false);
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2495
# endif
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2496
#endif
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2497
%}.
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2498
    ^ self isFinite not and:[self isNaN not]
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2499
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2500
    "
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2501
	1.0 asLongFloat isFinite -> true
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2502
	1.0 asLongFloat isInfinite -> false
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2503
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2504
	(0.0 asLongFloat uncheckedDivide: 0.0) isFinite -> false
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2505
	(0.0 asLongFloat uncheckedDivide: 0.0) isInfinite -> false
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2506
	(0.0 asLongFloat uncheckedDivide: 0.0) isNaN -> true
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2507
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2508
	(1.0 asLongFloat uncheckedDivide: 0.0) isFinite -> false
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2509
	(1.0 asLongFloat uncheckedDivide: 0.0) isInfinite -> true
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2510
	(1.0 asLongFloat uncheckedDivide: 0.0) isNaN -> false
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2511
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2512
	(-1.0 asLongFloat uncheckedDivide: 0.0) isFinite -> false
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2513
	(-1.0 asLongFloat uncheckedDivide: 0.0) isInfinite -> true
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2514
	(-1.0 asLongFloat uncheckedDivide: 0.0) isNaN -> false
22100
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2515
    "
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2516
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2517
    "Created: / 25-07-2017 / 17:04:04 / cg"
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2518
!
c9b9cf3e0527 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21973
diff changeset
  2519
24946
3f0576d4b793 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24932
diff changeset
  2520
isLongFloat
3f0576d4b793 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24932
diff changeset
  2521
    "return true, if the receiver is some kind of long floating point number (iee extended precision)"
3f0576d4b793 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24932
diff changeset
  2522
3f0576d4b793 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24932
diff changeset
  2523
    ^ true
3f0576d4b793 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24932
diff changeset
  2524
3f0576d4b793 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24932
diff changeset
  2525
3f0576d4b793 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24932
diff changeset
  2526
!
3f0576d4b793 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24932
diff changeset
  2527
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2528
isNaN
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2529
    "return true, if the receiver is an invalid float (NaN - not a number).
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2530
     These are not created by ST/X float operations (they raise an exception);
24704
807430cfebdb #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24691
diff changeset
  2531
     however, inline C-code could produce them."
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2532
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2533
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2534
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2535
#ifdef LONG_isnan
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2536
    LONGFLOAT_t lV = __longFloatVal(self);
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2537
    if (LONG_isnan(lV)) {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2538
	RETURN (true);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2539
    } else {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2540
	RETURN (false);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2541
    }
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2542
#else
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2543
    double dV = (double)(__longFloatVal(self));
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2544
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2545
    if (isnan(dV)) {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2546
	RETURN (true);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2547
    } else {
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2548
	RETURN (false);
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2549
    }
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2550
#endif
7396
e6bda581f000 isNan & isFinite for sparc
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
  2551
%}
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2552
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2553
    "
24948
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2554
	1.0 asLongFloat isNaN
28079fece2a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24946
diff changeset
  2555
	(0.0 asLongFloat uncheckedDivide: 0.0) isNaN
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2556
    "
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2557
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2558
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2559
isNegativeZero
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2560
    "many systems have two float.Pnt zeros"
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2561
17395
82852eb0d440 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17393
diff changeset
  2562
%{ /* NOCONTEXT */
17393
2c963130e1da class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17390
diff changeset
  2563
#if defined(__BORLANDC__)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2564
    union { LONGFLOAT_t ld; int i[3]; } __u;
17393
2c963130e1da class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17390
diff changeset
  2565
   __u.ld = __longFloatVal(self);
2c963130e1da class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17390
diff changeset
  2566
    RETURN ( (__u.ld == 0.0 && (__u.i[2] & 0x8000)) ? true : false );
17390
7fa2a6b7869f class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17381
diff changeset
  2567
#else
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2568
    RETURN ( (__longFloatVal(self) == 0.0 && signbit(__longFloatVal(self)) != 0) ? true : false );
17390
7fa2a6b7869f class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17381
diff changeset
  2569
#endif
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2570
%}.
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2571
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2572
    "
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2573
     0.0 asLongFloat isNegativeZero
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2574
     -0.0 asLongFloat isNegativeZero
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2575
    "
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2576
!
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2577
24329
a430bb32eed2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24325
diff changeset
  2578
isZero
a430bb32eed2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24325
diff changeset
  2579
    "return true, if the receiver is zero"
a430bb32eed2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24325
diff changeset
  2580
a430bb32eed2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24325
diff changeset
  2581
    ^ self = 0.0
a430bb32eed2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24325
diff changeset
  2582
a430bb32eed2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24325
diff changeset
  2583
    "Created: / 10-06-2019 / 22:00:23 / Claus Gittinger"
a430bb32eed2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24325
diff changeset
  2584
!
a430bb32eed2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24325
diff changeset
  2585
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2586
negative
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2587
    "return true if the receiver is less than zero.
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2588
     -0.0 is positive for now."
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2589
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2590
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2591
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2592
    RETURN ( __longFloatVal(self) < 0.0  ? true : false );
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2593
    // RETURN ( signbit(__longFloatVal(self)) != 0  ? true : false );
5411
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  2594
%}.
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2595
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2596
    "
18363
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2597
	0.0 asLongFloat negative
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2598
	-0.0 asLongFloat negative
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2599
	1.0 asLongFloat negative
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2600
	-1.0 asLongFloat negative
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2601
	(1.0 uncheckedDivide: 0.0) asLongFloat negative
ec65c9912329 comments only
Claus Gittinger <cg@exept.de>
parents: 18137
diff changeset
  2602
	(-1.0 uncheckedDivide: 0.0) asLongFloat negative
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2603
    "
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2604
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2605
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2606
numberOfBits
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2607
    "return the size (in bits) of the real;
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2608
     typically, 80 or 96 is returned here,
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2609
     but who knows ..."
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2610
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2611
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2612
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2613
    RETURN (__mkSmallInteger (sizeof(LONGFLOAT_t) * 8));
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2614
%}
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2615
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2616
    "
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2617
     LongFloat basicNew numberOfBits
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2618
     1.2 asLongFloat numberOfBits
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2619
     1.2 asShortFloat numberOfBits
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2620
     1.2 numberOfBits
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2621
    "
5357
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2622
!
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2623
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2624
positive
18853
60f1dbecace6 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18842
diff changeset
  2625
    "return true if the receiver is greater or equal to zero (not negative)
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2626
     0.0 and -0.0 are positive for now."
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2627
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2628
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2629
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2630
    RETURN ( __longFloatVal(self) >= 0.0 ? true : false );
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2631
//    RETURN ( (signbit(__longFloatVal(self)) == 0 ? true : false ) );
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2632
%}.
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2633
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2634
    "
19266
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  2635
	0.0 asLongFloat positive
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  2636
	-0.0 asLongFloat positive
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  2637
	1.0 asLongFloat positive
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  2638
	-1.0 asLongFloat positive
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  2639
	(1.0 uncheckedDivide: 0.0) asLongFloat positive
b88783bebd62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 19090
diff changeset
  2640
	(-1.0 uncheckedDivide: 0.0) asLongFloat positive
17381
0dc059600e6e class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 17219
diff changeset
  2641
    "
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2642
!
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2643
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2644
strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2645
    "return true if the receiver is greater than zero"
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2646
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2647
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2648
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  2649
    RETURN ( (__longFloatVal(self) > 0.0) ? true : false );
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2650
%}
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2651
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2652
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2653
!LongFloat methodsFor:'trigonometric'!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2654
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2655
arcCos
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2656
    "return the arccosine of the receiver (as radians).
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2657
     Raises an exception, if the receiver is not in -1..1"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2658
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2659
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2660
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2661
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2662
#if defined(LONG_acos)
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2663
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2664
    LONGFLOAT_t val, rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2665
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2666
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2667
    val = __longFloatVal(self);
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2668
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
  2669
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2670
    if ((val >= -1.0) && (val <= 1.0))
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2671
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2672
    {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2673
	__threadErrno = 0;
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2674
	rslt = LONG_acos(val);
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2675
# ifdef LONG_isnan
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2676
	if (! LONG_isnan(rslt))
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2677
# endif
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2678
	{
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2679
	    if (__threadErrno == 0) {
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2680
		__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2681
		RETURN ( newFloat );
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2682
	    }
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2683
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2684
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2685
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  2686
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2687
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2688
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2689
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2690
	^ super arcCos
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2691
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2692
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2693
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2694
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2695
	selector:#arcCos
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2696
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2697
	errorString:'bad receiver in arcCos'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2698
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2699
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2700
     -10 asLongFloat arcCos
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2701
     1 asLongFloat arcCos
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2702
     0.5 asLongFloat arcCos
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2703
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2704
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2705
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2706
arcCosh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2707
    "return the hyperbolic arccosine of the receiver."
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2708
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2709
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2710
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2711
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2712
#if defined(LONG_acosh)
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2713
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2714
    LONGFLOAT_t val, rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2715
    OBJ newFloat;
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2716
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2717
    val = __longFloatVal(self);
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2718
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
  2719
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2720
    if (val >= 1.0)
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2721
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2722
    {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2723
	__threadErrno = 0;
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2724
	rslt = LONG_acosh(val);
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2725
# ifdef LONG_isnan
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2726
	if (! LONG_isnan(rslt))
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2727
# endif
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2728
	{
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2729
	    if (__threadErrno == 0) {
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2730
		__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2731
		RETURN ( newFloat );
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2732
	    }
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2733
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2734
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2735
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  2736
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2737
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2738
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2739
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2740
	^ super arcCosh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2741
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2742
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2743
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2744
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2745
	selector:#arcCosh
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2746
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2747
	errorString:'bad receiver in arcCosh'
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2748
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2749
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2750
     -10 asLongFloat arcCosh
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2751
     1 asLongFloat arcCosh
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2752
     0.5 asLongFloat arcCosh
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2753
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2754
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2755
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2756
arcSin
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2757
    "return the arcsine of the receiver (as radians).
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2758
     Raises an exception, if the receiver is not in -1..1"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2759
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2760
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2761
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2762
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2763
#if defined(LONG_asin)
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2764
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2765
    LONGFLOAT_t val, rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2766
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2767
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2768
    val = __longFloatVal(self);
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2769
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
  2770
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2771
    if ((val >= -1.0) && (val <= 1.0))
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2772
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2773
    {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2774
	__threadErrno = 0;
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2775
	rslt = LONG_asin(val);
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2776
# ifdef LONG_isnan
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2777
	if (! LONG_isnan(rslt))
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2778
# endif
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2779
	{
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2780
	    if (__threadErrno == 0) {
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2781
		__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2782
		RETURN ( newFloat );
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2783
	    }
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2784
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2785
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2786
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  2787
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2788
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2789
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2790
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2791
	^ super arcSin
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2792
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2793
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2794
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2795
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2796
	selector:#arcSin
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2797
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2798
	errorString:'bad receiver in arcSin'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2799
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2800
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2801
     -10 asLongFloat arcSin
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2802
     1 asLongFloat arcSin
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2803
     0.5 asLongFloat arcSin
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2804
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2805
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2806
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2807
arcSinh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2808
    "return the hyperbolic arcsine of the receiver."
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2809
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2810
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2811
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2812
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2813
#if defined(LONG_asinh)
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2814
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2815
    LONGFLOAT_t val, rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2816
    OBJ newFloat;
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2817
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2818
    val = __longFloatVal(self);
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2819
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
  2820
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2821
    if (val >= 1.0)
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2822
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2823
    {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2824
	__threadErrno = 0;
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2825
	rslt = LONG_asinh(val);
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2826
# ifdef LONG_isnan
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2827
	if (! LONG_isnan(rslt))
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2828
# endif
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2829
	{
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2830
	    if (__threadErrno == 0) {
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2831
		__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2832
		RETURN ( newFloat );
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2833
	    }
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2834
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2835
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2836
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  2837
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2838
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2839
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2840
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2841
	^ super arcSinh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2842
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2843
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2844
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2845
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2846
	selector:#arcSinh
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2847
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2848
	errorString:'bad receiver in arcSinh'
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2849
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2850
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2851
     -10 asLongFloat arcSinh
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2852
     1 asLongFloat arcSinh
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2853
     0.5 asLongFloat arcSinh
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2854
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2855
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2856
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2857
arcTan
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2858
    "return the arctangent of the receiver (as radians)"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2859
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2860
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2861
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2862
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2863
#if defined(LONG_atan)
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2864
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2865
    LONGFLOAT_t rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2866
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2867
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2868
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2869
    rslt = LONG_atan(__longFloatVal(self));
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2870
# ifdef LONG_isnan
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2871
    if (! LONG_isnan(rslt))
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2872
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2873
    {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2874
	if (__threadErrno == 0) {
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2875
	    __qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2876
	    RETURN ( newFloat );
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2877
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2878
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2879
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  2880
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2881
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2882
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2883
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2884
	^ super arcTan
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2885
    ].
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2886
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2887
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2888
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2889
	selector:#arcTan
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2890
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2891
	errorString:'bad receiver in arcTan'
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2892
!
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2893
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2894
arcTanh
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2895
    "return the hyperbolic arctangent of the receiver."
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2896
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2897
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2898
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2899
%{
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2900
#if defined(LONG_atanh)
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2901
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2902
    LONGFLOAT_t val, rslt;
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2903
    OBJ newFloat;
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2904
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2905
    val = __longFloatVal(self);
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2906
    __threadErrno = 0;
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
  2907
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2908
    if ((val >= -1.0) && (val <= 1.0))
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2909
# endif
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2910
    {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2911
	rslt = LONG_atanh(val);
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2912
# ifdef LONG_isnan
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2913
	if (! LONG_isnan(rslt))
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2914
# endif
22790
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  2915
# if defined( __osx__ )
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  2916
	if (LONG_isfinite(rslt))
5791073e4907 atanh fix
Claus Gittinger <cg@exept.de>
parents: 22724
diff changeset
  2917
# endif
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2918
	{
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2919
	    if (__threadErrno == 0) {
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2920
		__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2921
		RETURN ( newFloat );
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2922
	    }
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2923
	}
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2924
    }
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2925
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  2926
    useFallBack = true;
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2927
#endif
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2928
%}.
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2929
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2930
	^ super arcTanh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2931
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2932
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2933
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2934
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2935
	selector:#arcTanh
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2936
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2937
	errorString:'bad receiver in arcTanh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2938
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2939
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2940
cos
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2941
    "return the cosine of the receiver (interpreted as radians)"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2942
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2943
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2944
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2945
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2946
#if defined(LONG_cos)
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2947
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2948
    LONGFLOAT_t rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2949
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2950
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2951
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2952
    rslt = LONG_cos(__longFloatVal(self));
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2953
# ifdef LONG_isnan
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2954
    if (! LONG_isnan(rslt))
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2955
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2956
    if (__threadErrno == 0) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2957
	__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2958
	RETURN ( newFloat );
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2959
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2960
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  2961
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2962
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2963
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2964
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2965
	^ super cos
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2966
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2967
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2968
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2969
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2970
	selector:#cos
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2971
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2972
	errorString:'bad receiver in cos'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2973
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2974
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2975
cosh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2976
    "return the hyperbolic cosine of the receiver"
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2977
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2978
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2979
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2980
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2981
#if defined(LONG_cosh)
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2982
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  2983
    LONGFLOAT_t rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2984
    OBJ newFloat;
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  2985
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2986
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2987
    rslt = LONG_cosh(__longFloatVal(self));
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2988
# ifdef LONG_isnan
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2989
    if (! LONG_isnan(rslt))
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2990
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2991
    if (__threadErrno == 0) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2992
	__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  2993
	RETURN ( newFloat );
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2994
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2995
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  2996
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2997
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  2998
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2999
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3000
	^ super cosh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3001
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3002
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3003
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3004
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3005
	selector:#cosh
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3006
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3007
	errorString:'bad receiver in cosh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3008
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3009
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3010
sin
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3011
    "return the sine of the receiver (interpreted as radians)"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3012
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3013
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3014
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3015
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3016
#if defined(LONG_sin)
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3017
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3018
    LONGFLOAT_t rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3019
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3020
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3021
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3022
    rslt = LONG_sin(__longFloatVal(self));
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3023
# ifdef LONG_isnan
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3024
    if (! LONG_isnan(rslt))
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3025
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3026
    if (__threadErrno == 0) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3027
	__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3028
	RETURN ( newFloat );
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3029
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3030
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  3031
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3032
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3033
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3034
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3035
	^ super sin
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3036
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3037
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3038
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3039
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3040
	selector:#sin
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3041
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3042
	errorString:'bad receiver in sin'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3043
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3044
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3045
sinh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3046
    "return the hyperbolic sine of the receiver"
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3047
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3048
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3049
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3050
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3051
#if defined(LONG_sinh)
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3052
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3053
    LONGFLOAT_t rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3054
    OBJ newFloat;
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3055
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3056
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3057
    rslt = LONG_sinh(__longFloatVal(self));
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3058
# ifdef LONG_isnan
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3059
    if (! LONG_isnan(rslt))
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3060
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3061
    if (__threadErrno == 0) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3062
	__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3063
	RETURN ( newFloat );
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3064
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3065
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  3066
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3067
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3068
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3069
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3070
	^ super sinh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3071
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3072
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3073
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3074
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3075
	selector:#sinh
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3076
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3077
	errorString:'bad receiver in sinh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3078
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3079
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3080
tan
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3081
    "return the tangens of the receiver (interpreted as radians)"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3082
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3083
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3084
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3085
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3086
#if defined(LONG_tan)
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3087
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3088
    LONGFLOAT_t rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3089
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3090
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3091
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3092
    rslt = LONG_tan(__longFloatVal(self));
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3093
# ifdef LONG_isnan
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3094
    if (! LONG_isnan(rslt))
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3095
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3096
    if (__threadErrno == 0) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3097
	__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3098
	RETURN ( newFloat );
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3099
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3100
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  3101
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3102
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3103
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3104
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3105
	^ super tan
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3106
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3107
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3108
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3109
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3110
	selector:#tan
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3111
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3112
	errorString:'bad receiver in tan'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3113
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3114
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3115
tanh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3116
    "return the hyperbolic tangens of the receiver"
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3117
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3118
    |useFallBack|
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3119
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3120
%{
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3121
#if defined(LONG_tanh)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3122
    LONGFLOAT_t rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3123
    OBJ newFloat;
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3124
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3125
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3126
    rslt = LONG_tanh(__longFloatVal(self));
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3127
# ifdef LONG_isnan
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3128
    if (! LONG_isnan(rslt))
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3129
# endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3130
    if (__threadErrno == 0) {
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3131
	__qMKLFLOAT(newFloat, rslt);
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3132
	RETURN ( newFloat );
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3133
    }
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3134
#else
7395
14525c2a9410 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  3135
    useFallBack = true;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3136
#endif
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3137
%}.
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3138
    useFallBack notNil ifTrue:[
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3139
	^ super tanh
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3140
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3141
    ^ self class
7731
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3142
	raise:#domainErrorSignal
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3143
	receiver:self
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3144
	selector:#tanh
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3145
	arguments:#()
abbf80b3913b Enable C library functions for windows
Stefan Vogel <sv@exept.de>
parents: 7728
diff changeset
  3146
	errorString:'bad receiver in tanh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3147
! !
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7383
diff changeset
  3148
5552
31b5cc144476 category changes
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  3149
!LongFloat methodsFor:'truncation & rounding'!
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3150
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3151
ceiling
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3152
    "return the smallest integer which is greater or equal to the receiver."
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3153
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3154
    |val|
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3155
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3156
%{
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3157
#if defined(LONG_ceil)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3158
    LONGFLOAT_t lVal;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3159
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3160
    lVal = LONG_ceil(__longFloatVal(self));
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3161
    if ((lVal >= (LONGFLOAT_t)_MIN_INT) && (lVal <= (LONGFLOAT_t)_MAX_INT)) {
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3162
	RETURN ( __mkSmallInteger( (INT) lVal ) );
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3163
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3164
    __qMKLFLOAT(val, lVal);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3165
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3166
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3167
    val notNil ifTrue:[
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3168
	^ val asInteger
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3169
    ].
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3170
    ^ super ceiling.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3171
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3172
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3173
     0.5q ceiling
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3174
     -0.5q ceiling
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3175
    "
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3176
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3177
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3178
ceilingAsFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3179
    "return the smallest integer-valued float greater or equal to the receiver.
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3180
     This is much like #ceiling, but avoids a (possibly expensive) conversion
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3181
     of the result to an integer.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3182
     It may be useful, if the result is to be further used in another float-operation."
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3183
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3184
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3185
#if defined(LONG_ceil)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3186
    LONGFLOAT_t lVal;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3187
    OBJ v;
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3188
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3189
    lVal = LONG_ceil(__longFloatVal(self));
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3190
    __qMKLFLOAT(v, lVal);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3191
    RETURN (v);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3192
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3193
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3194
    ^ super ceilingAsFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3195
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3196
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3197
     0.5q ceilingAsFloat
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3198
     -0.5q ceilingAsFloat
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3199
     -1.5q ceilingAsFloat
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3200
    "
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3201
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3202
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3203
floor
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3204
    "return the integer nearest the receiver towards negative infinity."
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3205
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3206
    |val|
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3207
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3208
%{
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3209
#if defined(LONG_floor)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3210
    LONGFLOAT_t lVal;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3211
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3212
    lVal = LONG_floor(__longFloatVal(self));
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3213
    if ((lVal >= (LONGFLOAT_t)_MIN_INT) && (lVal <= (LONGFLOAT_t)_MAX_INT)) {
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3214
	RETURN ( __mkSmallInteger( (INT) lVal ) );
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3215
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3216
    __qMKLFLOAT(val, lVal);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3217
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3218
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3219
    val notNil ifTrue:[
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3220
	^ val asInteger
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3221
    ].
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3222
    ^ super floor.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3223
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3224
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3225
     0.5q floor
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3226
     -0.5q floor
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3227
    "
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3228
!
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3229
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3230
floorAsFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3231
    "return the float which represents the next lower
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3232
     integer nearest the receiver towards negative infinity.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3233
     Much like floor, but returns a float result - useful if the result
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3234
     will be used in another float operation, to avoid costy int-conversion."
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3235
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3236
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3237
#if defined(LONG_floor)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3238
    LONGFLOAT_t lVal;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3239
    OBJ v;
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3240
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3241
    lVal = LONG_floor(__longFloatVal(self));
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3242
    __qMKLFLOAT(v, lVal);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3243
    RETURN (v);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3244
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3245
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3246
    ^ super floorAsFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3247
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3248
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3249
     0.5q floorAsFloat
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3250
     -0.5q floorAsFloat
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3251
     -1.5q floorAsFloat
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3252
    "
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3253
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3254
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3255
fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3256
    "extract the after-decimal fraction part.
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3257
     such that (self truncated + self fractionPart) = self"
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3258
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3259
%{  /* NOCONTEXT */
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3260
#if defined(LONG_modf)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3261
    LONGFLOAT_t frac, trunc;
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3262
    OBJ v;
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3263
19322
Claus Gittinger <cg@exept.de>
parents: 19268
diff changeset
  3264
    // mingw64 runtime modfl has a bug, triggering a SEGV
Claus Gittinger <cg@exept.de>
parents: 19268
diff changeset
  3265
    // see https://sourceforge.net/p/mingw-w64/bugs/478/
Claus Gittinger <cg@exept.de>
parents: 19268
diff changeset
  3266
# if defined(MINGW_MODFL_BUG)
Claus Gittinger <cg@exept.de>
parents: 19268
diff changeset
  3267
    {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3268
	LONGFLOAT_t value = __longFloatVal(self);
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3269
	LONGFLOAT_t int_part = LONG_trunc(value);
19329
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
  3270
	frac = (isinf (value) ?  0.0L : value - int_part);
19322
Claus Gittinger <cg@exept.de>
parents: 19268
diff changeset
  3271
    }
Claus Gittinger <cg@exept.de>
parents: 19268
diff changeset
  3272
# else
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3273
    frac = LONG_modf(__longFloatVal(self), &trunc);
19329
52f5c0de20b4 LongFloat printing under mingw was broken (wrong printf called)
Claus Gittinger <cg@exept.de>
parents: 19324
diff changeset
  3274
# endif
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3275
    __qMKLFLOAT(v, frac);
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3276
    RETURN (v);
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3277
#endif
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3278
%}.
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3279
    ^ super fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3280
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3281
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3282
     1.6q fractionPart + 1.6q truncated
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3283
     -1.6q fractionPart + -1.6q truncated
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3284
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3285
     1.0q fractionPart
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3286
     2.0q fractionPart
14743
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3287
     3.0 asLongFloat fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3288
     4.0 asLongFloat fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3289
     0.5 asLongFloat fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3290
     0.25 asLongFloat fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3291
     3.14159 asLongFloat fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3292
     12345673.14159 asLongFloat fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3293
     123456731231231231.14159 asLongFloat fractionPart
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3294
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3295
     3.14159 asLongFloat fractionPart + 3.14159 asLongFloat truncated
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3296
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3297
     12345673.14159 asLongFloat fractionPart + 12345673.14159 asLongFloat truncated
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3298
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3299
     123456731231231231.14159 asLongFloat fractionPart + 123456731231231231.14159 asLongFloat truncated
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3300
    "
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3301
!
2850b939debd class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14691
diff changeset
  3302
25053
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3303
integerAndFractionParts
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3304
    "return the integer and the fraction part of the receiver as a pair
25055
0c8fdbe05d9e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 25053
diff changeset
  3305
     of floats (i.e. the result of the modf function)
0c8fdbe05d9e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 25053
diff changeset
  3306
     Adding the parts gives the original value"
25053
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3307
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3308
    |integerPart fractionPart|
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3309
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3310
%{
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3311
#ifdef __SCHTEAM__
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3312
    ERROR("unimplemented");
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3313
#else
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3314
    LONGFLOAT_t lVal, iPart, fPart;
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3315
    OBJ i, f;
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3316
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3317
    lVal = __longFloatVal(self);
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3318
    fPart = modfl(lVal, &iPart);
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3319
    __qMKLFLOAT(i, iPart);
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3320
    __qMKLFLOAT(f, fPart);
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3321
    integerPart = i;
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3322
    fractionPart = f;
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3323
#endif
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3324
%}.
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3325
    integerPart isNil ifTrue:[^ super integerAndFractionParts].
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3326
    ^ { integerPart . fractionPart }
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3327
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3328
    "
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3329
     0.5 asLongFloat integerAndFractionParts  
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3330
     -0.5 asLongFloat integerAndFractionParts
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3331
     12345.6789 asLongFloat integerAndFractionParts 
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3332
     -12345.6789 asLongFloat integerAndFractionParts
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3333
    "
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3334
!
e19e11facb6d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 25049
diff changeset
  3335
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3336
rounded
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3337
    "return the receiver rounded to the nearest integer"
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3338
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3339
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3340
#if defined(LONG_ceil) && defined(LONG_floor)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3341
    LONGFLOAT_t lVal;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3342
    OBJ v;
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3343
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3344
    lVal = __longFloatVal(self);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3345
    if (lVal < 0.0) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3346
	lVal = LONG_ceil(lVal - (LONGFLOAT_t)0.5);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3347
    } else {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3348
	lVal = LONG_floor(lVal + (LONGFLOAT_t)0.5);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3349
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3350
    /*
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3351
     * ST-80 (and X3J20) returns integer.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3352
     */
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3353
    if ((lVal >= (LONGFLOAT_t)_MIN_INT) && (lVal <= (LONGFLOAT_t)_MAX_INT)) {
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3354
	RETURN ( __mkSmallInteger( (INT) lVal ) );
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3355
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3356
    __qMKLFLOAT(v, lVal);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3357
    RETURN (v);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3358
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3359
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3360
    ^ super rounded
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3361
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3362
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3363
     0.4q rounded
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3364
     0.5q rounded
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3365
     0.6qqrounded
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3366
     -0.4q rounded
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3367
     -0.5q rounded
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3368
     -0.6q rounded
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3369
    "
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3370
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3371
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3372
roundedAsFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3373
    "return the receiver rounded to the nearest integer as a float.
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3374
     This is much like #rounded, but avoids a (possibly expensive) conversion
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3375
     of the result to an integer.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3376
     It may be useful, if the result is to be further used in another float-operation."
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3377
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3378
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3379
#if defined(LONG_ceil) && defined(LONG_floor)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3380
    LONGFLOAT_t lVal;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3381
    OBJ v;
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3383
    lVal = __longFloatVal(self);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3384
    if (lVal < 0.0) {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3385
	lVal = LONG_ceil(lVal - (LONGFLOAT_t)0.5);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3386
    } else {
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3387
	lVal = LONG_floor(lVal + (LONGFLOAT_t)0.5);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3388
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3389
    __qMKLFLOAT(v, lVal);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3390
    RETURN (v);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3391
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3392
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3393
    ^ super roundedAsFloat
7357
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3394
!
cde54b45c469 full float functionality available (on linux)
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  3395
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3396
truncated
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3397
    "return the receiver truncated towards zero as an integer"
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3398
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3399
    |val|
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3400
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3401
%{
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3402
#if defined(LONG_ceil) && defined(LONG_floor)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3403
    LONGFLOAT_t lVal;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3404
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3405
    lVal = __longFloatVal(self);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3406
    if (lVal < 0.0) {
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3407
	lVal = LONG_ceil(lVal);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3408
    } else {
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3409
	lVal = LONG_floor(lVal);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3410
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3411
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3412
    /*
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3413
     * ST-80 (and X3J20) returns integer.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3414
     */
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3415
    if ((lVal >= (LONGFLOAT_t)_MIN_INT) && (lVal <= (LONGFLOAT_t)_MAX_INT)) {
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3416
	RETURN ( __mkSmallInteger( (INT) lVal ) );
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3417
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3418
    __qMKLFLOAT(val, lVal);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3419
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3420
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3421
    val notNil ifTrue:[
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3422
	^ val asInteger
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3423
    ].
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3424
    ^ super truncated
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3425
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3426
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3427
     0.5q truncated
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3428
     -0.5q truncated
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3429
     0.5q truncatedAsFloat
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3430
     -0.5q truncatedAsFloat
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3431
    "
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3432
!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3433
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3434
truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3435
    "return the receiver truncated towards zero as a float.
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3436
     This is much like #truncated, but avoids a (possibly expensive) conversion
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3437
     of the result to an integer.
10333
e441b017d3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10319
diff changeset
  3438
     It may be useful, if the result is to be further used in another
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3439
     float-operation."
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3440
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3441
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3442
#if defined(LONG_ceil) && defined(LONG_floor)
24267
3055b5e1373f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 24263
diff changeset
  3443
    LONGFLOAT_t lVal;
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3444
    OBJ v;
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3445
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3446
    lVal = __longFloatVal(self);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3447
    if (lVal < 0.0) {
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3448
	lVal = LONG_ceil(lVal);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3449
    } else {
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14921
diff changeset
  3450
	lVal = LONG_floor(lVal);
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3451
    }
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3452
    __qMKLFLOAT(v, lVal);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3453
    RETURN (v);
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3454
#endif
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3455
%}.
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3456
    ^ super truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3457
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3458
    "
14745
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3459
     0.5q truncated
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3460
     -0.5q truncated
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3461
     0.5q truncatedAsFloat
2bad9feb8593 class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14743
diff changeset
  3462
     -0.5q truncatedAsFloat
7382
Claus Gittinger <cg@exept.de>
parents: 7380
diff changeset
  3463
    "
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3464
! !
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3465
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3466
!LongFloat class methodsFor:'documentation'!
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3467
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3468
version
18833
60ea69618028 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18363
diff changeset
  3469
    ^ '$Header$'
12476
66b5104cedc9 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11925
diff changeset
  3470
!
66b5104cedc9 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11925
diff changeset
  3471
66b5104cedc9 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11925
diff changeset
  3472
version_CVS
18833
60ea69618028 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18363
diff changeset
  3473
    ^ '$Header$'
4165
6d83608a7584 initial - not yet tested/released
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3474
! !
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3475
14600
c7cabeb9c3bc class: LongFloat
Stefan Vogel <sv@exept.de>
parents: 14369
diff changeset
  3476
7389
4fd487ca919a longFloat precision constants;
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3477
LongFloat initialize!