ShortFloat.st
author Stefan Vogel <sv@exept.de>
Fri, 19 Jan 2018 10:40:24 +0100
changeset 22453 5935c74b8ca0
parent 22303 a6cd53d4a5fe
child 22491 e3e465028518
permissions -rw-r--r--
add class: CharacterEncoderImplementations::VariableBytesEncoder
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1996 by Claus Gittinger
3158
8e6bec40f6b0 added #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3147
diff changeset
     3
	      All Rights Reserved
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
5411
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
    12
"{ Package: 'stx:libbasic' }"
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
    13
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
    14
"{ NameSpace: Smalltalk }"
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
    15
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
LimitedPrecisionReal variableByteSubclass:#ShortFloat
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
21872
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
    18
	classVariableNames:'DefaultPrintFormat DefaultPrintfFormat Pi E Epsilon Ln10 NaN
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
    19
		PositiveInfinity NegativeInfinity'
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	poolDictionaries:''
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	category:'Magnitude-Numbers'
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
2394
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    24
!ShortFloat primitiveDefinitions!
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    25
%{
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    26
14744
24c92caccacf class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14741
diff changeset
    27
#include <stdio.h>
3471
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    28
#include <errno.h>
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    29
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    30
#ifndef __OPTIMIZE__
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    31
# define __OPTIMIZE__
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    32
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4637
diff changeset
    33
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4637
diff changeset
    34
#define __USE_ISOC9X 1
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
    35
#define __USE_ISOC99 1
3471
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    36
#include <math.h>
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    37
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
    38
#ifndef INT32
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
    39
# define INT32 int
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
    40
#endif
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
    41
3471
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    42
/*
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    43
 * on some systems errno is a macro ... check for it here
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    44
 */
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    45
#ifndef errno
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    46
 extern errno;
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    47
#endif
91bad1642e2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
    48
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
    49
#if !defined (__win32__)
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
    50
# include <locale.h>
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
    51
#endif
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
    52
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
    53
#if defined (__aix__)
2394
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    54
# include <float.h>
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    55
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4637
diff changeset
    56
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
    57
#if defined(__irix__)
2395
e83076fa0a3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2394
diff changeset
    58
# include <nan.h>
e83076fa0a3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2394
diff changeset
    59
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4637
diff changeset
    60
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
    61
#if defined(__linux__)
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4637
diff changeset
    62
# ifndef NAN
5822
4e56f8aadda5 Get nan.h from bits/nan.h for Linux
Stefan Vogel <sv@exept.de>
parents: 5718
diff changeset
    63
#  include <bits/nan.h>
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4637
diff changeset
    64
# endif
2397
dd6979979e67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
    65
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4637
diff changeset
    66
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
    67
#if defined(__solaris__) || defined(__sunos__)
2398
652c9f2a13fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2397
diff changeset
    68
# include <nan.h>
652c9f2a13fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2397
diff changeset
    69
#endif
2394
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    70
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
    71
#ifdef __win32__
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
    72
/*
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
    73
 * no finite(x) ?
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
    74
 * no isnan(x) ?
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
    75
 */
7419
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    76
# ifndef isnan
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    77
#  define isnan(x)      \
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
    78
	((((unsigned int *)(&x))[0] == 0x00000000) && \
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
    79
	 (((unsigned int *)(&x))[1] == 0xFFF80000))
7419
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    80
# endif
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    81
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    82
# ifndef isPositiveInfinity
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    83
#  define isPositiveInfinity(x) \
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
    84
	((((unsigned int *)(&x))[0] == 0x00000000) && \
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
    85
	 (((unsigned int *)(&x))[1] == 0x7FF00000))
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
    86
# endif
7419
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    87
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    88
# ifndef isNegativeInfinity
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
    89
#  define isNegativeInfinity(x) \
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
    90
	((((unsigned int *)(&x))[0] == 0x00000000) && \
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
    91
	 (((unsigned int *)(&x))[1] == 0xFFF00000))
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
    92
# endif
7419
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    93
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    94
# ifndef isinf
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    95
#  define isinf(x) \
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
    96
	((((unsigned int *)(&x))[0] == 0x00000000) && \
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
    97
	 ((((unsigned int *)(&x))[1] & 0x7FF00000) == 0x7FF00000))
7419
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    98
# endif
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
    99
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   100
# ifndef isfinite
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   101
#  define isfinite(x) (!isinf(x) && !isnan(x))
7419
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
   102
# endif
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
   103
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   104
# ifndef isnanf
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   105
#  define isnanf(x)      \
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   106
	(((unsigned int *)(&x))[0] == 0xFFC00000)
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   107
# endif
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   108
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   109
# ifndef isPositiveInfinityf
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   110
#  define isPositiveInfinityf(x)      \
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   111
	(((unsigned int *)(&x))[0] == 0x7F800000)
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   112
# endif
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   113
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   114
# ifndef isNegativeInfinityf
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   115
#  define isNegativeInfinityf(x)      \
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   116
	(((unsigned int *)(&x))[0] == 0xFF800000)
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   117
# endif
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   118
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   119
# ifndef isinff
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   120
#  define isinff(x)      \
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   121
	((((unsigned int *)(&x))[0] & 0x7FFFFFFF) == 0x7F800000)
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   122
# endif
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   123
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   124
# ifndef isfinitef
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   125
#  define isfinitef(x) (!isinff(x) && !isnanf(x))
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   126
# endif
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   127
7419
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
   128
# define NO_ASINH
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
   129
# define NO_ACOSH
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
   130
# define NO_ATANH
14727
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
   131
# ifdef __BORLANDC__
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
   132
#  define NO_FMODF
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
   133
#  define NO_MODFF
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
   134
#  define NO_LOG10F
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
   135
#  define NO_LOGF
14727
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
   136
# endif
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   137
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   138
# ifdef __MINGW__
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   139
#  include <string.h>
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   140
# endif
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   141
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
   142
#endif /* __win32__ */
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   143
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
   144
#ifdef __solaris__
8984
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   145
# ifndef isfinite
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   146
#  define isfinite(f) finite((double)(f))
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   147
# endif
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   148
#endif
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   149
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
   150
#ifdef __realIX__
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   151
# ifndef isfinite
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   152
#  define isfinite(x)     1
3414
d9aefd18c10d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3198
diff changeset
   153
# endif
8706
d48896f0a910 mac stuff
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
   154
#endif /* realIX */
d48896f0a910 mac stuff
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
   155
9896
307c7296064e Fix syntax warning in #ifdef
Stefan Vogel <sv@exept.de>
parents: 9636
diff changeset
   156
#ifndef isfinitef
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   157
# define isfinitef(x) isfinite(x)
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   158
#endif
9896
307c7296064e Fix syntax warning in #ifdef
Stefan Vogel <sv@exept.de>
parents: 9636
diff changeset
   159
#ifndef isnanf
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   160
# define isnanf(x) isnan(x)
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   161
#endif
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
   162
2394
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
   163
%}
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
   164
! !
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
   165
1880
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   166
!ShortFloat class methodsFor:'documentation'!
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
copyright
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
 COPYRIGHT (c) 1996 by Claus Gittinger
3158
8e6bec40f6b0 added #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3147
diff changeset
   171
	      All Rights Reserved
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
 This software is furnished under a license and may be used
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
 only in accordance with the terms of that license and with the
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
 inclusion of the above copyright notice.   This software may not
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
 be provided or otherwise made available to, or used by, any
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
 other person.  No title to or ownership of the software is
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
 hereby transferred.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
documentation
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
"
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   186
    ShortFloats represent rational numbers with limited precision.
17220
614c3a1d3c73 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16670
diff changeset
   187
    They use the C-compilers 'float' format, which is usually the IEEE single float format.
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7356
diff changeset
   188
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7356
diff changeset
   189
    In contrast to Floats (which use the C-compilers 64bit 'double' format),
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7356
diff changeset
   190
    ShortFloats give you 32 bit floats.
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
    Notice, that ST/X Floats are what Doubles are in ST-80 and ShortFloats are
14719
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
   193
    ST-80's Floats respectively. The reason was to make ST/X's floats compatible
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
   194
    to bothe visualWorks and other smalltalks, which use C-doubles for the Float class.
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
   195
    Thus, STX's Float precision is not worse than that of other ST's.
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
   196
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
    WARNING:
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   198
	The layout of shortFloat instances is known by the runtime system and the compiler;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   199
	you may not add instance variables here.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   200
	Also, subclassing is complicated by the fact, that the VM creates floats/shortFloats,
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   201
	and does some of its float-checks by an identity compare with the ShortFloat-class.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   202
	(i.e. your subclasses instances may not be recognized as float-like objects,
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   203
	 thus mixed mode arithmetic will always coerce them, effectively slowing things down).
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   204
	This may be changed, to use a flag bit in the class.
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7356
diff changeset
   206
    Mixed mode arithmetic:
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   207
	shortFloat op shortFloat   -> shortFloat
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   208
	shortFloat op fix         -> shortFloat
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   209
	shortFloat op fraction    -> shortFloat
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   210
	shortFloat op integer     -> shortFloat
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   211
	shortFloat op longFloat   -> longFloat
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   212
	shortFloat op float       -> float
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   213
	shortFloat op complex     -> complex
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   214
7405
9b0334a4591b comments
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   215
    Representation:
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   216
	    32bit single precision IEEE floats
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   217
	    23 bit mantissa,
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   218
	    8 bit exponent,
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   219
	    6 decimal digits (approx)
7405
9b0334a4591b comments
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   220
9b0334a4591b comments
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   221
    Range and Precision of Storage Formats: see LimitedPrecisionReal >> documentation
9b0334a4591b comments
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   222
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   223
    [author:]
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   224
	Claus Gittinger
1556
134d96466f5a commentary
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   225
134d96466f5a commentary
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   226
    [see also:]
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   227
	Number
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   228
	Float LongFloat Fraction FixedPoint Integer Complex
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   229
	FloatArray DoubleArray
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
! !
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
1880
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   233
!ShortFloat class methodsFor:'instance creation'!
1207
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   234
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   235
basicNew
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   236
    "return a new shortFloat - here we return 0.0
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   237
     - shortFloats are usually NOT created this way ...
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   238
     Its implemented here to allow things like binary store & load
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   239
     of shortFloats. (but even this support will go away eventually, its not
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   240
     a good idea to store the bits of a float - the reader might have a
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   241
     totally different representation - so floats will eventually be
1207
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   242
     binary stored in a device independent format."
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   243
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   244
%{  /* NOCONTEXT */
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   245
    OBJ newFloat;
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   246
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1670
diff changeset
   247
    __qMKSFLOAT(newFloat, 0.0);
1207
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   248
    RETURN (newFloat);
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   249
%}
3158
8e6bec40f6b0 added #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3147
diff changeset
   250
!
8e6bec40f6b0 added #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3147
diff changeset
   251
4297
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   252
fastFromString:aString at:startIndex
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   253
    "return the next ShortFloat from the string starting at startIndex.
4297
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   254
     No spaces are skipped.
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   255
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   256
     This is a specially tuned entry (using a low-level C-call), which
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   257
     returns garbage if the argument string is not a valid float number.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   258
     It has been added to allow higher speed string decomposition into numbers,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   259
     especially for mass-data."
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   260
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   261
%{   /* NOCONTEXT */
12486
f1ef886832f1 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11945
diff changeset
   262
     if (__isStringLike(aString) && __isSmallInteger(startIndex)) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   263
	char *cp = (char *)(__stringVal(aString));
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   264
	int idx = __intVal(startIndex) - 1;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   265
	double atof();
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   266
	double val;
4297
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   267
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   268
	if ((unsigned)idx < __stringSize(aString)) {
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   269
	    val = atof(cp + idx);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   270
	    RETURN (__MKSFLOAT(val));
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   271
	}
4297
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   272
     }
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   273
%}.
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   274
     self primitiveFailed.
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   275
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   276
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   277
     ShortFloat fastFromString:'123.45' at:1
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   278
     ShortFloat fastFromString:'123.45' at:2
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   279
     ShortFloat fastFromString:'123.45E4' at:1
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   280
     ShortFloat fastFromString:'hello123.45E4' at:6
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   281
     ShortFloat fastFromString:'12345' at:1
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   282
     ShortFloat fastFromString:'12345' at:2
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   283
     ShortFloat fastFromString:'12345' at:3
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   284
     ShortFloat fastFromString:'12345' at:4
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   285
     ShortFloat fastFromString:'12345' at:5
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   286
     ShortFloat fastFromString:'12345' at:6
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   287
     ShortFloat fastFromString:'12345' at:0
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   288
     ShortFloat fastFromString:'hello123.45E4' at:1
4297
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   289
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   290
     Time millisecondsToRun:[
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   291
	100000 timesRepeat:[
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   292
	    ShortFloat readFrom:'123.45'
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   293
	]
4297
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   294
     ]
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   295
    "
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   296
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   297
    "
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   298
     Time millisecondsToRun:[
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   299
	100000 timesRepeat:[
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   300
	    ShortFloat fastFromString:'123.45' at:1
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
   301
	]
4297
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   302
     ]
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   303
    "
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   304
!
302e80e0b14a added #fastFromString:
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   305
15015
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   306
fromIEEE32Bit: anInteger
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   307
    "creates a float, given the four native float bytes as an integer"
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   308
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   309
%{  /* NOCONTEXT */
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   310
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   311
    REGISTER union {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   312
	unsigned int    i;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   313
	float           f;
15015
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   314
    } r;
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   315
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   316
    r.i = __unsignedLongIntVal( anInteger );
15019
63c17b702b7c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 15018
diff changeset
   317
    RETURN( __MKSFLOAT(r.f) );
15015
b86b7390d9ed class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15014
diff changeset
   318
%}
17220
614c3a1d3c73 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16670
diff changeset
   319
614c3a1d3c73 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16670
diff changeset
   320
    "
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   321
	ShortFloat fromIEEE32Bit:(#[64 73 15 219] asInteger)
17220
614c3a1d3c73 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16670
diff changeset
   322
    "
1207
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   323
! !
8c3d75503dd2 need basicNew
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   324
12915
d80685e8f20e #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12629
diff changeset
   325
!ShortFloat class methodsFor:'accessing'!
d80685e8f20e #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12629
diff changeset
   326
d80685e8f20e #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12629
diff changeset
   327
defaultPrintFormat
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   328
    ^ DefaultPrintFormat
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   329
!
12915
d80685e8f20e #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12629
diff changeset
   330
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   331
defaultPrintFormat:aString
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   332
    DefaultPrintFormat := aString.
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   333
!
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   334
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   335
epsilon
21799
e512db43c3d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21149
diff changeset
   336
    "return the maximum relative spacing of instances of mySelf
e512db43c3d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21149
diff changeset
   337
     (i.e. the value-delta of the least significant bit)"
e512db43c3d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21149
diff changeset
   338
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   339
    Epsilon isNil ifTrue:[
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
   340
	Epsilon := self computeEpsilon.
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   341
    ].
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   342
    ^ Epsilon
21799
e512db43c3d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21149
diff changeset
   343
21891
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   344
    "
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   345
     Float epsilon       -> 2.22044604925031E-16
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   346
     ShortFloat epsilon  -> 1.19209289550781E-07
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   347
     LongFloat epsilon   -> 1.0842021724855E-19
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   348
     QDouble epsilon     -> 1.21543267145725E-63
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   349
    "
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   350
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   351
    "Modified (comment): / 21-06-2017 / 13:56:47 / cg"
12915
d80685e8f20e #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12629
diff changeset
   352
! !
d80685e8f20e #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12629
diff changeset
   353
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   354
!ShortFloat class methodsFor:'binary storage'!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   355
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   356
readBinaryIEEESingleFrom:aStream
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   357
    "read a float value from the binary stream, aStream,
14924
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   358
     interpreting the next bytes as an IEEE formatted 4-byte float.
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   359
     The bytes are read in the native byte order (i.e.lsb on intel)"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   360
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   361
    |f|
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   362
21878
316b3400a392 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21872
diff changeset
   363
    f := self basicNew.
15012
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   364
    self readBinaryIEEESingleFrom:aStream into:f MSB:(UninterpretedBytes isBigEndian).
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   365
    ^ f
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   366
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   367
    "not part of libboss, as this is also used by others (TIFFReader)"
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   368
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   369
    "Created: / 16-04-1996 / 21:00:35 / cg"
21878
316b3400a392 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21872
diff changeset
   370
    "Modified: / 21-06-2017 / 10:38:31 / cg"
15012
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   371
!
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   372
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   373
readBinaryIEEESingleFrom:aStream MSB:msbFirst
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   374
    "read a float value from the binary stream, aStream,
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   375
     interpreting the next bytes as an IEEE formatted 4-byte float.
15014
f3fb1faff91f class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15012
diff changeset
   376
     The bytes are read in the soecified byte order"
15012
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   377
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   378
    |f|
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   379
21878
316b3400a392 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21872
diff changeset
   380
    f := self basicNew.
15012
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   381
    self readBinaryIEEESingleFrom:aStream into:f MSB:msbFirst.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   382
    ^ f
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   383
9636
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   384
    "not part of libboss, as this is also used by others (TIFFReader)"
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   385
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   386
    "Created: / 16-04-1996 / 21:00:35 / cg"
21878
316b3400a392 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21872
diff changeset
   387
    "Modified: / 21-06-2017 / 10:38:35 / cg"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   388
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   389
19617
9ba857aed07d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   390
readBinaryIEEESingleFrom:aStream into:aBasicNewShortFloat
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   391
    "read a float value from the binary stream, aStream,
14922
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   392
     interpreting the next bytes as an IEEE formatted 4-byte float.
14924
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   393
     The bytes are read in the native byte order (i.e.lsb on intel)"
14922
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   394
19617
9ba857aed07d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   395
    ^ self readBinaryIEEESingleFrom:aStream into:aBasicNewShortFloat MSB:(UninterpretedBytes isBigEndian)
14922
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   396
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   397
    "Modified: / 23-08-2006 / 16:01:52 / cg"
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   398
!
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   399
19617
9ba857aed07d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   400
readBinaryIEEESingleFrom:aStream into:aBasicNewShortFloat MSB:msb
14922
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   401
    "read a float value from the binary stream, aStream,
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   402
     interpreting the next bytes as an IEEE formatted 4-byte float.
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   403
     If msb is true, the stream bytes are most-significant-first."
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   404
21878
316b3400a392 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21872
diff changeset
   405
    aBasicNewShortFloat class == self ifFalse:[self error:'not a ShortFloat'].
6574
788f5a36dcb1 Define #precision, #radix
Stefan Vogel <sv@exept.de>
parents: 6063
diff changeset
   406
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   407
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   408
     this implementation is wrong: does not work on non-IEEE machines
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   409
     (to date all machines where ST/X is running on use
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   410
      IEEE float format. Need more here, when porting ST/X to 370's)
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   411
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   412
    self isIEEEFormat ifFalse:[self error:'unsupported operation'].
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   413
14922
30546dbb18c6 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14920
diff changeset
   414
    (UninterpretedBytes isBigEndian == msb) ifFalse:[
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
   415
	"swap the bytes"
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
   416
	4 to:1 by:-1 do:[:i |
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
   417
	    aBasicNewShortFloat basicAt:i put:(aStream next)
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
   418
	].
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
   419
	^ self
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   420
    ].
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   421
    1 to:4 do:[:i |
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
   422
	aBasicNewShortFloat basicAt:i put:aStream next
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   423
    ]
9636
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   424
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   425
    "not part of libboss, as this is also used by others (TIFFReader)"
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   426
21878
316b3400a392 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21872
diff changeset
   427
    "Modified: / 21-06-2017 / 10:36:28 / cg"
6574
788f5a36dcb1 Define #precision, #radix
Stefan Vogel <sv@exept.de>
parents: 6063
diff changeset
   428
!
788f5a36dcb1 Define #precision, #radix
Stefan Vogel <sv@exept.de>
parents: 6063
diff changeset
   429
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   430
storeBinaryIEEESingle:aFloat on:aStream
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   431
    "store aFloat as an IEEE formatted 4-byte float
14924
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   432
     onto the binary stream, aStream.
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   433
     The bytes are written in the native byte order (i.e.lsb on intel)"
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   434
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   435
    self storeBinaryIEEESingle:aFloat on:aStream MSB:(UninterpretedBytes isBigEndian).
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   436
!
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   437
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   438
storeBinaryIEEESingle:aFloat on:aStream MSB:msb
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   439
    "store aFloat as an IEEE formatted 4-byte float
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   440
     onto the binary stream, aStream.
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   441
     If msb is true, the stream bytes are written most-significant-first."
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   442
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
   443
    |float|
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
   444
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
   445
    float := aFloat asShortFloat.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   446
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   447
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   448
     this implementation is wrong: does not work on non-IEEE machines
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   449
     (to date all machines where ST/X is running on use
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   450
      IEEE float format. Need more here, when porting ST/X to 370's)
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   451
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   452
    self isIEEEFormat ifFalse:[self error:'unsupported operation'].
6574
788f5a36dcb1 Define #precision, #radix
Stefan Vogel <sv@exept.de>
parents: 6063
diff changeset
   453
14924
7115c6830ed8 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14922
diff changeset
   454
    (UninterpretedBytes isBigEndian == msb) ifFalse:[
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   455
	"swap the bytes"
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   456
	4 to:1 by:-1 do:[:i |
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   457
	    aStream nextPut:(float basicAt:i).
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   458
	].
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   459
	^ self
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   460
    ].
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   461
    1 to:4 do:[:i |
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14924
diff changeset
   462
	aStream nextPut:(float basicAt:i).
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   463
    ]
9636
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   464
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   465
    "not part of libboss, as this is also used by others (TIFFReader)"
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   466
c6b63e749626 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9149
diff changeset
   467
    "Modified: / 23-08-2006 / 16:01:55 / cg"
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   468
! !
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   469
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   470
!ShortFloat class methodsFor:'class initialization'!
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   471
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   472
initialize
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   473
    DefaultPrintFormat := '.7'.  "/ print 7 valid digits
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
   474
    DefaultPrintfFormat := '%7f'.
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   475
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   476
    "
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   477
     self initialize
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   478
    "
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   479
! !
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
   480
21872
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   481
!ShortFloat class methodsFor:'coercing & converting'!
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   482
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   483
coerce:aNumber
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   484
    "convert the argument aNumber into an instance of the receiver's class and return it."
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   485
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   486
    ^ aNumber asShortFloat.
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   487
! !
873afa36c013 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   488
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   489
!ShortFloat class methodsFor:'constants'!
6574
788f5a36dcb1 Define #precision, #radix
Stefan Vogel <sv@exept.de>
parents: 6063
diff changeset
   490
21858
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   491
NaN
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   492
    "return a shortFloat which represents not-a-Number (i.e. an invalid number)"
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   493
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   494
    NaN isNil ifTrue:[
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
   495
	NaN := super NaN
21858
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   496
    ].
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   497
    ^ NaN
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   498
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   499
    "Created: / 20-06-2017 / 13:44:12 / cg"
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   500
!
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   501
7392
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   502
e
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   503
    "return the constant e as ShortFloat"
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   504
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   505
    E isNil ifTrue:[
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   506
	E := Float e asShortFloat
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   507
    ].
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   508
    ^ E
7392
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   509
!
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   510
18128
ceba88f4f3f7 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18126
diff changeset
   511
emax
ceba88f4f3f7 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18126
diff changeset
   512
    "Answer the maximum exponent for this representation."
ceba88f4f3f7 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18126
diff changeset
   513
ceba88f4f3f7 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18126
diff changeset
   514
    ^127
ceba88f4f3f7 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18126
diff changeset
   515
!
ceba88f4f3f7 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18126
diff changeset
   516
18130
c014af8129f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18128
diff changeset
   517
emin
c014af8129f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18128
diff changeset
   518
    "Answer the minimum exponent for this representation."
c014af8129f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18128
diff changeset
   519
c014af8129f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18128
diff changeset
   520
    ^-126
c014af8129f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18128
diff changeset
   521
!
c014af8129f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18128
diff changeset
   522
21858
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   523
infinity
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   524
    "return a shortFloat which represents positive infinity"
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   525
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   526
    PositiveInfinity isNil ifTrue:[
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
   527
	PositiveInfinity := Float infinity asShortFloat
21858
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   528
    ].
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   529
    ^ PositiveInfinity
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   530
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   531
    "Created: / 20-06-2017 / 13:44:45 / cg"
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   532
!
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   533
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   534
ln10
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   535
    "return the natural logarithm of 10 as a shortFloat"
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   536
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   537
    Ln10 isNil ifTrue:[
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
   538
	Ln10 := Float ln10 asShortFloat
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   539
    ].
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   540
    ^ Ln10
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   541
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   542
    "
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   543
     self ln10
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   544
    "
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   545
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   546
    "Created: / 16-06-2017 / 11:09:37 / cg"
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   547
!
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   548
21858
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   549
negativeInfinity
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   550
    "return a shortFloat which represents negative infinity"
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   551
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   552
    NegativeInfinity isNil ifTrue:[
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
   553
	NegativeInfinity := Float negativeInfinity asShortFloat
21858
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   554
    ].
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   555
    ^ NegativeInfinity
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   556
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   557
    "Created: / 20-06-2017 / 13:45:08 / cg"
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   558
!
5ae229caf43e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21850
diff changeset
   559
7392
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   560
pi
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   561
    "return the constant pi as ShortFloat"
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   562
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   563
    Pi isNil ifTrue:[
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   564
	Pi := Float pi asShortFloat
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   565
    ].
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   566
    ^ Pi
7392
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   567
!
8084c9ca941d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7387
diff changeset
   568
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   569
unity
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1207
diff changeset
   570
    "return the neutral element for multiplication (1.0) as ShortFloat"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   571
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   572
    ^ 1.0 asShortFloat
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   573
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1207
diff changeset
   574
    "Modified: 23.4.1996 / 09:26:51 / cg"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   575
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   576
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   577
zero
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1207
diff changeset
   578
    "return the neutral element for addition (0.0) as ShortFloat"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   579
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   580
    ^ 0.0 asShortFloat
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   581
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1207
diff changeset
   582
    "Modified: 23.4.1996 / 09:26:45 / cg"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   583
! !
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   584
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   585
!ShortFloat class methodsFor:'queries'!
21149
b8ceb5aff633 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20706
diff changeset
   586
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   587
defaultPrintPrecision
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   588
    "return the number of decimal digits printed by default"
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   589
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   590
    ^ 5
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   591
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   592
    "
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
   593
     ShortFloat defaultPrintPrecision
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
   594
     Float defaultPrintPrecision
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
   595
     LongFloat defaultPrintPrecision
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   596
    "
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   597
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   598
    "Created: / 17-06-2017 / 02:59:31 / cg"
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
   599
!
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   600
6898
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6890
diff changeset
   601
exponentCharacter
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6890
diff changeset
   602
    ^ $e
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6890
diff changeset
   603
!
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6890
diff changeset
   604
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   605
isBuiltInClass
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1260
diff changeset
   606
    "return true if this class is known by the run-time-system.
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1260
diff changeset
   607
     Here, true is returned for myself, false for subclasses."
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   608
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   609
    ^ self == ShortFloat
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   610
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1260
diff changeset
   611
    "Modified: 23.4.1996 / 16:00:23 / cg"
3427
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   612
!
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   613
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   614
numBitsInExponent
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   615
    "answer the number of bits in the exponent
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   616
     This is an IEEE float, where 8 bits are available:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   617
	seeeeeee emmmmmmm mmmmmmmm mmmmmmmm
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   618
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   619
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   620
    ^ 8
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   621
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   622
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   623
numBitsInMantissa
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   624
    "answer the number of bits in the mantissa.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   625
     This is an IEEE float, where 23 bits (the hidden one is not counted here) are available:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   626
	seeeeeee emmmmmmm mmmmmmmm mmmmmmmm
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   627
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   628
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   629
    ^ 23
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   630
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   631
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   632
precision
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   633
    "answer the precision of a ShortFloat (in bits)
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   634
     This is an IEEE float, where only the fraction from the normalized mantissa is stored
9149
3fb15c4d83d8 comment
Claus Gittinger <cg@exept.de>
parents: 9121
diff changeset
   635
     and so there is a hidden bit and the mantissa is actually represented by 24 binary digits
3fb15c4d83d8 comment
Claus Gittinger <cg@exept.de>
parents: 9121
diff changeset
   636
     (although only 23 are needed in the binary representation)"
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   637
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   638
    ^  24
19325
a7285364ffb1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18852
diff changeset
   639
a7285364ffb1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18852
diff changeset
   640
    "
a7285364ffb1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18852
diff changeset
   641
     self numBitsInMantissa + 1
a7285364ffb1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18852
diff changeset
   642
     self precision
a7285364ffb1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18852
diff changeset
   643
    "
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   644
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   645
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   646
radix
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   647
    "answer the radix of a ShortFloats exponent
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   648
     This is an IEEE float, which is represented as binary"
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   649
9149
3fb15c4d83d8 comment
Claus Gittinger <cg@exept.de>
parents: 9121
diff changeset
   650
    ^ 2 "must be careful here, whenever ST/X is used on a VAX or a 370"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   651
! !
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   652
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   653
!ShortFloat methodsFor:'arithmetic'!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   654
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   655
* aNumber
11730
eabe6364c89b comment
Claus Gittinger <cg@exept.de>
parents: 11720
diff changeset
   656
    "return the product of the receiver and the argument."
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   657
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   658
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   659
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   660
    OBJ newFloat;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   661
    float result;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   662
    double dResult;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   663
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   664
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   665
	result = __shortFloatVal(self) * (float)(__intVal(aNumber));
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   666
retResult:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   667
	__qMKSFLOAT(newFloat, result);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   668
	RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   669
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   670
    if (__isShortFloat(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   671
	result = __shortFloatVal(self) * __shortFloatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   672
	goto retResult;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   673
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   674
    if (__isFloatLike(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   675
	dResult = (double) __shortFloatVal(self)* __floatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   676
	__qMKFLOAT(newFloat, dResult);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   677
	RETURN ( newFloat );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   678
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   679
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   680
    ^ aNumber productFromShortFloat:self
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   681
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   682
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   683
+ aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   684
    "return the sum of the receiver and the argument, aNumber"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   685
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   686
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   687
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   688
    OBJ newFloat;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   689
    float result;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   690
    double dResult;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   691
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   692
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   693
	result = __shortFloatVal(self) + (float)(__intVal(aNumber));
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
retResult:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   695
	__qMKSFLOAT(newFloat, result);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   696
	RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   697
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   698
    if (__isShortFloat(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   699
	result = __shortFloatVal(self) + __shortFloatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   700
	goto retResult;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   701
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   702
    if (__isFloatLike(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   703
	dResult = (double) __shortFloatVal(self) + __floatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   704
	__qMKFLOAT(newFloat, dResult);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   705
	RETURN ( newFloat );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   706
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   707
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   708
    ^ aNumber sumFromShortFloat:self
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   709
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   710
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   711
- aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   712
    "return the difference of the receiver and the argument, aNumber"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   713
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   714
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   715
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
    OBJ newFloat;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   717
    float result;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   718
    double dResult;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   719
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   720
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   721
	result = __shortFloatVal(self) - (float)(__intVal(aNumber));
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   722
retResult:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   723
	__qMKSFLOAT(newFloat, result);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   724
	RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   725
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   726
    if (__isShortFloat(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   727
	result = __shortFloatVal(self) - __shortFloatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   728
	goto retResult;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   729
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   730
    if (__isFloatLike(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   731
	dResult = (double) __shortFloatVal(self) - __floatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   732
	__qMKFLOAT(newFloat, dResult);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   733
	RETURN ( newFloat );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   734
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   735
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   736
    ^ aNumber differenceFromShortFloat:self
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   737
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   738
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   739
/ aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   740
    "return the quotient of the receiver and the argument, aNumber"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   742
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   743
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
    OBJ newFloat;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
    float result, val;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   746
    double dResult, dVal;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   748
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   749
	if (aNumber != __mkSmallInteger(0)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   750
	    result = __shortFloatVal(self) / (float)(__intVal(aNumber));
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
retResult:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   752
	    __qMKSFLOAT(newFloat, result);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   753
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   754
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   755
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   756
    if (__isShortFloat(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   757
	val = __shortFloatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   758
	if (val != 0.0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   759
	    result = __shortFloatVal(self) / val;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   760
	    goto retResult;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   761
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   762
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   763
    if (__isFloatLike(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   764
	dVal = __floatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   765
	if (dVal != 0.0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   766
	    dResult = (double) __shortFloatVal(self) / dVal;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   767
	    __qMKFLOAT(newFloat, dResult);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   768
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   769
	}
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   770
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   771
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   772
    ((aNumber == 0) or:[aNumber = 0.0]) ifTrue:[
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   773
	"
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   774
	 No, you shalt not divide by zero
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   775
	"
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   776
	^ ZeroDivide raiseRequestWith:thisContext.
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   777
    ].
4166
5730ad6b744b oops - from coercion in quotient / uncheckedQuotient
Claus Gittinger <cg@exept.de>
parents: 4100
diff changeset
   778
    ^ aNumber quotientFromShortFloat:self
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   779
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   780
14710
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   781
abs
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   782
    "return the absolute value of the receiver
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   783
     reimplemented here for speed"
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   784
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   785
%{  /* NOCONTEXT */
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   786
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   787
    OBJ newFloat;
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   788
    float val = __shortFloatVal(self);
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   789
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   790
    if (val < 0.0) {
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   791
	__qMKSFLOAT(newFloat, -val);
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   792
	RETURN ( newFloat );
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   793
    }
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   794
    RETURN (self);
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   795
%}.
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   796
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   797
    "
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   798
     3.0 asShortFloat abs
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   799
     -3.0 asShortFloat abs
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   800
    "
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   801
!
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   802
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   803
negated
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   804
    "return myself negated"
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   805
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   806
%{  /* NOCONTEXT */
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   807
    OBJ newFloat;
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   808
    float rslt = - __shortFloatVal(self);
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   809
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   810
    __qMKSFLOAT(newFloat, rslt);
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   811
    RETURN ( newFloat );
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   812
%}.
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   813
    ^ 0.0 - self
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   814
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   815
!
db1edb5f0b67 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14709
diff changeset
   816
14690
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   817
rem: aNumber
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   818
    "return the floating point remainder of the receiver and the argument, aNumber"
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   819
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   820
%{  /* NOCONTEXT */
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   821
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   822
    /*
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   823
     * notice:
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   824
     * the following inline code handles some common cases,
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   825
     * and exists as an optimization, to speed up those cases.
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   826
     *
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   827
     * Conceptionally, (and for most other argument types),
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   828
     * mixed arithmetic is implemented by double dispatching
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   829
     * (see the message send at the bottom)
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   830
     */
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   831
    OBJ newFloat;
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   832
    float result, val;
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   833
    double dResult, dVal;
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   834
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   835
    if (__isSmallInteger(aNumber)) {
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   836
	if (aNumber != __mkSmallInteger(0)) {
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   837
	    val = (float)__intVal(aNumber);
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   838
computeResult:
14709
9ba9a2c9e132 ouch: fmodf is not avail with borland
Claus Gittinger <cg@exept.de>
parents: 14690
diff changeset
   839
#ifdef NO_FMODF
9ba9a2c9e132 ouch: fmodf is not avail with borland
Claus Gittinger <cg@exept.de>
parents: 14690
diff changeset
   840
	    dResult = fmod((double)__shortFloatVal(self), (double)val) ;
9ba9a2c9e132 ouch: fmodf is not avail with borland
Claus Gittinger <cg@exept.de>
parents: 14690
diff changeset
   841
	    result = (float)dResult;
9ba9a2c9e132 ouch: fmodf is not avail with borland
Claus Gittinger <cg@exept.de>
parents: 14690
diff changeset
   842
#else
14690
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   843
	    result = fmodf(__shortFloatVal(self), val) ;
14709
9ba9a2c9e132 ouch: fmodf is not avail with borland
Claus Gittinger <cg@exept.de>
parents: 14690
diff changeset
   844
#endif
14690
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   845
	    __qMKSFLOAT(newFloat, result);
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   846
	    RETURN ( newFloat );
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   847
	}
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   848
    } else if (__isFloatLike(aNumber)) {
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   849
	dVal = __floatVal(aNumber);
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   850
	if (dVal != 0.0) {
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   851
	    dResult = fmod((double)(__shortFloatVal(self)), dVal) ;
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   852
	    __qMKFLOAT(newFloat, dResult);
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   853
	    RETURN ( newFloat );
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   854
	}
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   855
    } else if (__isShortFloat(aNumber)) {
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   856
	val = __shortFloatVal(aNumber);
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   857
	if (val != 0.0) {
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   858
	    goto computeResult;
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   859
	}
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   860
    }
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   861
%}.
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   862
    ((aNumber == 0) or:[aNumber = 0.0]) ifTrue:[
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   863
	"
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   864
	 No, you shalt not divide by zero
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   865
	"
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   866
	^ ZeroDivide raiseRequestWith:thisContext.
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   867
    ].
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   868
    ^ aNumber remainderFromShortFloat:self
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   869
!
5934219d333a added rem:
Claus Gittinger <cg@exept.de>
parents: 14673
diff changeset
   870
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   871
uncheckedDivide:aNumber
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   872
    "return the quotient of the receiver and the argument, aNumber.
7471
c5d4bd612d9f comments
Claus Gittinger <cg@exept.de>
parents: 7437
diff changeset
   873
     Do not check for divide by zero (return NaN or Infinity).
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   874
     This operation is provided for emulators of other languages/semantics,
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   875
     where no exception is raised for these results (i.e. Java).
18841
0578521d1cea #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18139
diff changeset
   876
     It is only defined if the argument's type is the same as the receiver's."
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   877
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   878
%{  /* NOCONTEXT */
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   879
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   880
    OBJ newFloat;
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   881
    float result, val;
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   882
    double dResult, dVal;
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   883
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   884
    if (__isSmallInteger(aNumber)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   885
	result = __shortFloatVal(self) / (float)(__intVal(aNumber));
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   886
retResult:
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   887
	__qMKSFLOAT(newFloat, result);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   888
	RETURN ( newFloat );
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   889
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   890
    if (__isShortFloat(aNumber)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   891
	val = __shortFloatVal(aNumber);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   892
	result = __shortFloatVal(self) / val;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   893
	goto retResult;
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   894
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   895
    if (__isFloatLike(aNumber)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   896
	dVal = __floatVal(aNumber);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   897
	dResult = (double) __shortFloatVal(self) / dVal;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   898
	__qMKFLOAT(newFloat, dResult);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
   899
	RETURN ( newFloat );
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   900
    }
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   901
%}.
4166
5730ad6b744b oops - from coercion in quotient / uncheckedQuotient
Claus Gittinger <cg@exept.de>
parents: 4100
diff changeset
   902
    ^ aNumber quotientFromShortFloat:self
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   903
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   904
    "
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   905
      0.0 asShortFloat uncheckedDivide:0
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   906
      1.0 asShortFloat uncheckedDivide:0.0
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
   907
    "
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   908
! !
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   909
5257
a90fd9cb3c18 category rename
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
   910
!ShortFloat methodsFor:'coercing & converting'!
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   911
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   912
asFloat
11238
f321de80643a comment
Claus Gittinger <cg@exept.de>
parents: 9896
diff changeset
   913
    "return a Float with same value as the receiver.
f321de80643a comment
Claus Gittinger <cg@exept.de>
parents: 9896
diff changeset
   914
     Redefined for performance (machine can do it faster)"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   915
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   916
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   917
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   918
    OBJ newFloat;
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   919
    double dVal = (double)__shortFloatVal(self);
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   920
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1670
diff changeset
   921
    __qMKFLOAT(newFloat, dVal);
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   922
    RETURN ( newFloat );
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   923
%}
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   924
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   925
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   926
     1.0 asShortFloat asFloat
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   927
    "
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   928
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   929
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   930
asInteger
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   931
    "return an integer with same value - might truncate"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   932
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   933
%{  /* NOCONTEXT */
1670
55cde0b3ee8e slightly faster asInteger
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   934
    float fVal;
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   935
1670
55cde0b3ee8e slightly faster asInteger
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   936
    fVal = __shortFloatVal(self);
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19617
diff changeset
   937
#ifdef __win32__
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   938
    if (! isnanf(fVal))
7419
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
   939
#endif
44b2f66791f1 isnanf for Win32
Claus Gittinger <cg@exept.de>
parents: 7408
diff changeset
   940
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   941
	if ((fVal >= (float)_MIN_INT) && (fVal <= (float)_MAX_INT)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   942
	    RETURN ( __mkSmallInteger( (INT)fVal) );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   943
	}
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   944
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   945
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   946
    ^ super asInteger
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   947
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   948
    "
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   949
     12345.0 asShortFloat asInteger
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   950
     1e15 asShortFloat asInteger
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   951
    "
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   952
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   953
7437
834ea4d6cdbc oops - printString of NaN/INF where wrong;
Claus Gittinger <cg@exept.de>
parents: 7419
diff changeset
   954
asLongFloat
21891
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   955
    "return a LongFloat with same value as the receiver"
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   956
7437
834ea4d6cdbc oops - printString of NaN/INF where wrong;
Claus Gittinger <cg@exept.de>
parents: 7419
diff changeset
   957
    ^ LongFloat fromShortFloat:self
21891
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   958
e697cc4bbc7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21878
diff changeset
   959
    "Modified (comment): / 21-06-2017 / 13:59:41 / cg"
7437
834ea4d6cdbc oops - printString of NaN/INF where wrong;
Claus Gittinger <cg@exept.de>
parents: 7419
diff changeset
   960
!
834ea4d6cdbc oops - printString of NaN/INF where wrong;
Claus Gittinger <cg@exept.de>
parents: 7419
diff changeset
   961
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   962
asShortFloat
15022
4db3a134deb9 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 15019
diff changeset
   963
    "return a ShortFloat with same value as the receiver - that's me"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   964
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   965
    ^ self
1200
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
   966
!
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
   967
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   968
coerce:aNumber
18841
0578521d1cea #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18139
diff changeset
   969
    "convert the argument aNumber into an instance of the receiver's class and return it."
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   970
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   971
    ^ aNumber asShortFloat
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   972
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   973
1200
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
   974
generality
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
   975
    "return the generality value - see ArithmeticValue>>retry:coercing:"
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
   976
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
   977
    ^ 70
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
   978
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
   979
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   980
! !
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   981
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   982
!ShortFloat methodsFor:'comparing'!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   983
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   984
< aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   985
    "return true, if the argument is greater"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   986
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   987
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   988
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   989
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   990
	RETURN ( (__shortFloatVal(self) < (float)(__intVal(aNumber))) ? true : false );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   991
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
   992
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   993
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   994
	    RETURN ( (double)(__shortFloatVal(self) < __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   995
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   996
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   997
	    RETURN ( (__shortFloatVal(self) < __shortFloatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
   998
	}
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   999
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1000
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1001
    ^ aNumber lessFromShortFloat:self
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1002
1200
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  1003
    "
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  1004
     1.0 asShortFloat > (1/3)
cc16f7a00b52 limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  1005
    "
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1006
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1007
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1008
<= aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1009
    "return true, if the argument is greater or equal"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1010
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1011
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1012
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1013
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1014
	RETURN ( (__shortFloatVal(self) <= (float)(__intVal(aNumber))) ? true : false );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1015
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1016
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1017
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1018
	    RETURN ( (double)(__shortFloatVal(self) <= __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1019
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1020
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1021
	    RETURN ( (__shortFloatVal(self) <= __shortFloatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1022
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1023
    }
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1024
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1025
    ^ self retry:#<= coercing:aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1026
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1027
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1028
= aNumber
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1029
    "return true, if the argument represents the same numeric value
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1030
     as the receiver, false otherwise"
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1031
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1032
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1033
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1034
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1035
	RETURN ( (__shortFloatVal(self) == (float)(__intVal(aNumber))) ? true : false );
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1036
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1037
    if (aNumber == nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1038
	RETURN (false);
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1039
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1040
    if (__qIsFloatLike(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1041
	RETURN ( (double)(__shortFloatVal(self) == __floatVal(aNumber)) ? true : false );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1042
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1043
    if (__qIsShortFloat(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1044
	RETURN ( (__shortFloatVal(self) == __shortFloatVal(aNumber)) ? true : false );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1045
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1046
%}.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1047
    ^ aNumber equalFromShortFloat:self
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1048
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1049
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1050
> aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1051
    "return true, if the argument is less"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1052
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1053
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1054
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1055
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1056
	RETURN ( (__shortFloatVal(self) > (float)(__intVal(aNumber))) ? true : false );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1057
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1058
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1059
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1060
	    RETURN ( (double)(__shortFloatVal(self) > __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1061
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1062
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1063
	    RETURN ( (__shortFloatVal(self) > __shortFloatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1064
	}
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1065
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1066
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1067
    ^ self retry:#> coercing:aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1068
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1069
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1070
>= aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1071
    "return true, if the argument is less or equal"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1072
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1073
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1074
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1075
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1076
	RETURN ( (__shortFloatVal(self) >= (float)(__intVal(aNumber))) ? true : false );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1077
    }
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1078
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1079
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1080
	    RETURN ( (double)(__shortFloatVal(self) >= __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1081
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1082
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1083
	    RETURN ( (__shortFloatVal(self) >= __shortFloatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1084
	}
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1085
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1086
%}.
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1087
    ^ self retry:#>= coercing:aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1088
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1089
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1090
hash
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1091
    "return a number for hashing; redefined, since floats compare
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1092
     by numeric value (i.e. 3.0 = 3), therefore 3.0 hash must be the same
4594
eb09f567a3bc float, shortFloat and fraction all hash alike
Claus Gittinger <cg@exept.de>
parents: 4593
diff changeset
  1093
     as 3 hash."
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1094
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1095
    |i|
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1096
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1097
    (self >= SmallInteger minVal and:[self <= SmallInteger maxVal]) ifTrue:[
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  1098
	i := self asInteger.
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  1099
	self = i ifTrue:[
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  1100
	    ^ i hash
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  1101
	].
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1102
    ].
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1103
4594
eb09f567a3bc float, shortFloat and fraction all hash alike
Claus Gittinger <cg@exept.de>
parents: 4593
diff changeset
  1104
    ^ self asFloat hash
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1105
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1106
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1107
     1.2345 hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1108
     1.2345 asShortFloat hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1109
     1.0 hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1110
     1.0 asShortFloat hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1111
     0.5 asShortFloat hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1112
     0.25 asShortFloat hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1113
     0.5 hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1114
     0.25 hash
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1115
    "
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1116
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1117
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1118
isAlmostEqualTo:aNumber nEpsilon:nE
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1119
    "return true, if the argument, aNumber represents almost the same numeric value
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1120
     as the receiver, false otherwise.
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1121
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1122
     nE is the number of minimal float distances, that the numbers may differ and
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1123
     still be considered equal.
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1124
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1125
     For background information why floats need this
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1126
     read: http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1127
    "
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1128
21149
b8ceb5aff633 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20706
diff changeset
  1129
    Epsilon isNil ifTrue:[
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1130
	Epsilon := self class computeEpsilon.
21149
b8ceb5aff633 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20706
diff changeset
  1131
    ].
b8ceb5aff633 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20706
diff changeset
  1132
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1133
%{  /* NOCONTEXT */
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1134
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1135
    /*
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1136
     * notice:
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1137
     * the following inline code handles some common cases,
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1138
     * and exists as an optimization, to speed up those cases.
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1139
     *
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1140
     * Conceptionally, (and for most other argument types),
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1141
     * mixed arithmetic is implemented by double dispatching
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1142
     * (see the message send at the bottom)
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1143
     */
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1144
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1145
    INT32 ulpDiff;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1146
    union {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1147
	float f;
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1148
	INT32 i;
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1149
    } myself, otherFloat;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1150
    int nEpsilon;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1151
    float scaledEpsilon;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1152
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1153
    if (!__isSmallInteger(nE)) {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1154
	goto tryHarder;
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1155
    }
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1156
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1157
    nEpsilon =  __intVal(nE);
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1158
    scaledEpsilon = nEpsilon *__shortFloatVal(@global(Epsilon));
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1159
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1160
    if (__isSmallInteger(aNumber)) {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1161
	otherFloat.f = (float)(__intVal(aNumber));
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1162
    } else if (aNumber == nil) {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1163
	RETURN(false)
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1164
    } else if (__qIsFloatLike(aNumber)) {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1165
	otherFloat.f = (float)(__floatVal(aNumber));
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1166
    } else if (__qIsShortFloat(aNumber)) {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1167
	otherFloat.f = (double)(__shortFloatVal(aNumber));
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1168
    } else {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1169
	goto tryHarder;
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1170
    }
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1171
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1172
    myself.f = __shortFloatVal(self);
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1173
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1174
    // Check if the numbers are really close -- needed
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1175
    // when comparing numbers near zero (ULP method below fails for numbers near 0!).
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1176
    if (fabs(myself.f - otherFloat.f) <= scaledEpsilon) {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1177
	RETURN(true);
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1178
    }
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1179
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1180
    // if the signs differ, the numbers are different
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1181
    if ((myself.f >= 0) != (otherFloat.f >= 0)) {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1182
	RETURN(false);
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1183
    }
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1184
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1185
    // compute the difference of the 'units in the last place" ULP
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1186
    // (if ulpDiff == 1, two floats are adjecant)
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1187
    ulpDiff = myself.i - otherFloat.i;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1188
    if (ulpDiff < 0) ulpDiff = -ulpDiff;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1189
    if (ulpDiff <= nEpsilon) {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1190
	RETURN(true);
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1191
    } else {
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1192
	RETURN(false)
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1193
    }
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1194
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1195
tryHarder:;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1196
%}.
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1197
    ^ aNumber isAlmostEqualToFromShortFloat:self nEpsilon:nE
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1198
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1199
    "
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1200
	67329.234 asShortFloat isAlmostEqualTo:67329.23400000001 nEpsilon:1
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1201
	1.0 asShortFloat isAlmostEqualTo:1.0001 nEpsilon:1
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1202
	1.0 asShortFloat isAlmostEqualTo:-1.0 nEpsilon:1
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1203
	1.0 asShortFloat isAlmostEqualTo:1 nEpsilon:1
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1204
    "
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1205
!
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1206
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1207
~= aNumber
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
    "return true, if the arguments value are not equal"
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1210
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1211
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1212
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1213
	if (__isSmallInteger(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1214
	    RETURN ( (__shortFloatVal(self) != (float)(__intVal(aNumber))) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1215
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1216
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1217
	    RETURN ( (double)(__shortFloatVal(self) !=  __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1218
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1219
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1220
	    RETURN ( (__shortFloatVal(self) !=  __shortFloatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1221
	}
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1222
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1223
	RETURN ( true );
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1224
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1225
%}.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1226
    ^ super ~= aNumber
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1227
! !
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1228
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1229
!ShortFloat methodsFor:'mathematical functions'!
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1230
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1231
fastInverseSqrt
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1232
    "return a rough but fast approximation of (1 / self sqrt).
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1233
     The error is some 1%, which is ok for many 3D computations or physics simulations.
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1234
     Do not use this for now: it is non-portable and probably not speeding things up
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1235
     much, unless inlined into the sender code.
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1236
     The code is here as a reminder and might be later used as a hint for the inliner
13360
1aac241c9981 comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13359
diff changeset
  1237
     (to speed up 3D computations, for example).
1aac241c9981 comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13359
diff changeset
  1238
     see: http://betterexplained.com/articles/understanding-quakes-fast-inverse-square-root/"
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1239
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1240
%{  /* NOCONTEXT */
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1241
    float x, rslt;
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1242
    OBJ newFloat;
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1243
13361
Michael Beyl <mb@exept.de>
parents: 13360
diff changeset
  1244
    if (sizeof(float) == 4) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1245
	x = __shortFloatVal(self);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1246
	{
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1247
	    float xhalf = 0.5f * x;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1248
	    int i = *(int*)&x; // store floating-point bits in integer
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1249
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1250
	    i = 0x5f3759d5 - (i >> 1); // initial guess for Newton's method
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1251
	    x = *(float*)&i; // convert new bits into float
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1252
	    x = x*(1.5f - xhalf*x*x); // One round of Newton's method
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1253
	    __qMKSFLOAT(newFloat, x);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1254
	    RETURN ( newFloat );
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1255
	}
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1256
    }
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1257
%}.
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1258
    ^ 1 / self sqrt
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1259
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1260
    "
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1261
     10.0 asShortFloat fastInverseSqrt
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1262
     (1 / 10.0 asShortFloat sqrt)
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1263
    "
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1264
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1265
    "
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1266
     |a b t0 t1 t2|
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1267
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1268
     a := 345 asShortFloat.
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1269
     t0 := Time millisecondsToRun:[
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1270
	1000000 timesRepeat:[
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1271
	]
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1272
     ].
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1273
     t1 := Time millisecondsToRun:[
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1274
	1000000 timesRepeat:[
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1275
	    a fastInverseSqrt
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1276
	]
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1277
     ].
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1278
     t2 := Time millisecondsToRun:[
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1279
	1000000 timesRepeat:[
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1280
	    (1 / a sqrt)
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1281
	]
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1282
     ].
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1283
     Transcript show:'empty: '; showCR:t0.
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1284
     Transcript show:'fast: '; showCR:t1.
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1285
     Transcript show:'regular: '; showCR:t2.
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1286
    "
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1287
!
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1288
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1289
ln
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1290
    "return the natural logarithm of the receiver.
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1291
     Raises an exception, if the receiver is less or equal to zero."
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1292
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1293
%{  /* NOCONTEXT */
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1294
#ifndef __SCHTEAM__
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1295
    float val, rslt;
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1296
    OBJ newFloat;
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1297
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1298
    val = __shortFloatVal(self);
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1299
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1300
    /*
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1301
     * to suppress the warnBox opened by win32
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1302
     * to avoid returning -INF from some unix math libs (__osx__)
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1303
     */
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1304
    if (val > 0.0) {
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1305
	__threadErrno = 0;
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1306
# ifdef NO_LOGF
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1307
	{
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1308
	    double dRslt = log((double)val);
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1309
	    rslt = (float)dRslt;
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1310
	}
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1311
# else
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1312
	rslt = logf(val);
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1313
# endif
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1314
	if (! isnanf(rslt))  /* Currently all our systems support isnan() */
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1315
	{
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1316
	    if (__threadErrno == 0) {
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1317
		__qMKSFLOAT(newFloat, rslt);
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1318
		RETURN ( newFloat );
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1319
	    }
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1320
	}
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1321
    }
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1322
#endif
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1323
%}.
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1324
    "
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1325
     an invalid value for logarithm
21972
846097bcc0c9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21965
diff changeset
  1326
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1327
    "
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1328
    ^ self class
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1329
	raise:(self = 0 ifTrue:[#infiniteResultSignal] ifFalse:[#domainErrorSignal])
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1330
	receiver:self
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1331
	selector:#ln
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1332
	arguments:#()
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1333
	errorString:'bad receiver in log10 (not strictly positive)'
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1334
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1335
    "
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1336
     0 asFloat ln
21965
ace6435a0903 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21956
diff changeset
  1337
     Number trapInfinity:[ 0 asFloat ln ]
ace6435a0903 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21956
diff changeset
  1338
21956
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1339
     10 asFloat ln       2.30258509299405
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1340
     10 asShortFloat ln  2.302585
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1341
     10 asLongFloat ln   2.302585092994045684
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1342
     10 asQDouble ln     2.30258509299404568402
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1343
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1344
     50 asFloat ln       3.91202300542815
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1345
     50 asShortFloat ln  3.912023
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1346
     50 asLongFloat ln   3.912023005428146059
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1347
     50 asQDouble ln     3.91202300542814605862
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1348
    "
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1349
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1350
    "Created: / 03-07-2017 / 15:20:07 / cg"
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1351
!
7a51828d5c96 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21955
diff changeset
  1352
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1353
log10
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1354
    "return the base-10 logarithm of the receiver.
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1355
     Raises an exception, if the receiver is less or equal to zero."
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1356
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1357
%{  /* NOCONTEXT */
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1358
#ifndef __SCHTEAM__
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1359
    float val, rslt;
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1360
    OBJ newFloat;
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1361
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1362
    val = __shortFloatVal(self);
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1363
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1364
    /*
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1365
     * to suppress the warnBox opened by win32
21955
c6b82cbb4b6a #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21950
diff changeset
  1366
     * to avoid returning -INF from some unix math libs (__osx__)
c6b82cbb4b6a #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21950
diff changeset
  1367
     */
c6b82cbb4b6a #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21950
diff changeset
  1368
    if (val > 0.0) {
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1369
	__threadErrno = 0;
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1370
# ifdef NO_LOG10F
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1371
	{
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1372
	    double dRslt = log10((double)val);
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1373
	    rslt = (float)dRslt;
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1374
	}
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1375
# else
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1376
	rslt = log10f(val);
21834
1fe471f18a2e oops - no log10f under win32
Claus Gittinger <cg@exept.de>
parents: 21829
diff changeset
  1377
# endif
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1378
	if (! isnanf(rslt))  /* Currently all our systems support isnan() */
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1379
	{
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1380
	    if (__threadErrno == 0) {
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1381
		__qMKSFLOAT(newFloat, rslt);
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1382
		RETURN ( newFloat );
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1383
	    }
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1384
	}
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1385
    }
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1386
#endif
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1387
%}.
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1388
    "
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1389
     an invalid value for logarithm
21972
846097bcc0c9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21965
diff changeset
  1390
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1391
    "
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1392
    ^ self class
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1393
	raise:(self = 0 ifTrue:[#infiniteResultSignal] ifFalse:[#domainErrorSignal])
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1394
	receiver:self
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1395
	selector:#log10
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1396
	arguments:#()
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1397
	errorString:'bad receiver in log10 (not strictly positive)'
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1398
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1399
    "
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1400
     0 asShortFloat log10
21965
ace6435a0903 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21956
diff changeset
  1401
     Number trapInfinity:[ 0 asShortFloat log10 ]
ace6435a0903 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21956
diff changeset
  1402
21829
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1403
     10 asFloat log10       1.0
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1404
     10 asShortFloat log10  1.0
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1405
     10 asLongFloat log10   1.0
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1406
     10 asQDouble log10     1.00000000000000000000000000000000000000000
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1407
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1408
     50 asFloat log10       1.69897000433602
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1409
     50 asShortFloat log10  1.69897
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1410
     50 asLongFloat log10   1.698970004336018805
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1411
     50 asQDouble log10     1.69897000433601880478626110527550697323181
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1412
    "
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1413
ecd8892d2de5 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 21799
diff changeset
  1414
    "Created: / 16-06-2017 / 10:47:53 / cg"
21972
846097bcc0c9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21965
diff changeset
  1415
    "Modified (comment): / 03-07-2017 / 15:59:05 / cg"
13359
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1416
! !
17228556cabd comment/format in: #fastInverseSqrt
Claus Gittinger <cg@exept.de>
parents: 13358
diff changeset
  1417
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1418
!ShortFloat methodsFor:'printing & storing'!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1419
22303
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1420
printOn:aStream
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1421
    "append a printed representation of the receiver to
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1422
     the argument, aStream.
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1423
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1424
     I use #printString instead of #printOn: as basic print mechanism."
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1425
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1426
    aStream nextPutAll:self printString
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1427
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1428
    "Created: / 10-10-2017 / 14:05:28 / cg"
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1429
!
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1430
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1431
printString
3194
16073834a825 Add comment about #printOn: and #printString
Stefan Vogel <sv@exept.de>
parents: 3158
diff changeset
  1432
    "return a printed representation of the receiver
16073834a825 Add comment about #printOn: and #printString
Stefan Vogel <sv@exept.de>
parents: 3158
diff changeset
  1433
     LimitedPrecisonReal and its subclasses use #printString instead of
16073834a825 Add comment about #printOn: and #printString
Stefan Vogel <sv@exept.de>
parents: 3158
diff changeset
  1434
     #printOn: as basic print mechanism."
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1435
18139
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1436
    ^ self printStringWithFormat:DefaultPrintFormat
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1437
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1438
    "
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1439
	1.234 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1440
	1.0 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1441
	1e10 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1442
	1.2e3 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1443
	1.2e30 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1444
	(1.0 uncheckedDivide:0) asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1445
	(0.0 uncheckedDivide:0) asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1446
	self pi printString.
18139
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1447
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1448
	self pi printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1449
	DefaultPrintFormat := '.3'.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1450
	self pi printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1451
	DefaultPrintFormat := '.7'.
18139
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1452
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1453
	DecimalPointCharacterForPrinting := $,.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1454
	1.234 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1455
	1.0 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1456
	1e10 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1457
	1.2e3 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1458
	1.2e30 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1459
	(1.0 uncheckedDivide:0) asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1460
	(0.0 uncheckedDivide:0) asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1461
	DecimalPointCharacterForPrinting := $.
18139
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1462
    "
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1463
!
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1464
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1465
printStringWithFormat:format
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1466
    "return a printed representation of the receiver;
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1467
     fmt must be of the form: .nn, where nn is the number of digits.
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1468
     To print 6 valid digits, use printStringWithFormat:'.6'
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1469
     For Floats, the default used in printString, is 15 (because its a double);
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1470
     for ShortFloats, it is 6 (because it is a float)"
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1471
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1472
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1473
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1474
    char buffer[64];
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1475
    REGISTER char *cp;
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1476
    int len;
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1477
    OBJ s;
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1478
    char *fmt;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1479
    char fmtBuffer[20];
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1480
18139
b001bda4f8f5 class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
  1481
    if (__isStringLike(format)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1482
	fmt = (char *) __stringVal(format);
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1483
    } else {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1484
	/*
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1485
	 * in case we get called with garbage...
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1486
	 */
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1487
	fmt = ".7";
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1488
    }
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1489
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1490
    /*
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1491
     * build a printf format string
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1492
     */
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1493
    fmtBuffer[0] = '%';
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1494
    strncpy(fmtBuffer+1, fmt, 10);
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1495
    strcat(fmtBuffer, "g");
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1496
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1497
    /*
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1498
     * actually only needed on sparc: since thisContext is
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1499
     * in a global register, which gets destroyed by printf,
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1500
     * manually save it here - very stupid ...
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1501
     */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1502
    __BEGIN_PROTECT_REGISTERS__
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1503
    len = snprintf(buffer, sizeof(buffer), fmtBuffer, (float)__shortFloatVal(self));
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1504
    __END_PROTECT_REGISTERS__
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1505
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1506
    if (len >= 0 && len <= sizeof(buffer)-3) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1507
	/*
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1508
	 * kludge to make integral float f prints as "f.0" (not as "f" as printf does)
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1509
	 * (i.e. look if string contains '.' or 'e' and append '.0' if not)
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1510
	 */
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1511
	for (cp = buffer; *cp; cp++) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1512
	    if ((*cp == '.') || (*cp == ',') || (*cp == 'E') || (*cp == 'e')) break;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1513
	}
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1514
	if (!*cp && (cp[-1] >= '0') && (cp[-1] <= '9')) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1515
	    if (__isCharacter(@global(DecimalPointCharacterForPrinting))) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1516
		*cp++ = __intVal(__characterVal(@global(DecimalPointCharacterForPrinting)));
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1517
	    } else {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1518
		*cp++ = '.';
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1519
	    }
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1520
	    *cp++ = '0';
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1521
	    *cp = '\0';
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1522
	} else {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1523
	    if (cp && (*cp == '.')) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1524
		if (__isCharacter(@global(DecimalPointCharacterForPrinting))) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1525
		    *cp = __intVal(__characterVal(@global(DecimalPointCharacterForPrinting)));
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1526
		}
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1527
	    }
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1528
	}
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1529
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1530
	s = __MKSTRING(buffer);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1531
	if (s != nil) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1532
	    RETURN (s);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1533
	}
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1534
    }
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1535
%}.
5432
c71559a881e2 migration support
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1536
    ^ self asFloat printString
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1537
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1538
    "
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1539
	1.234 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1540
	ShortFloat pi printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1541
	1.0 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1542
	1e10 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1543
	1.2e3 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1544
	1.2e30 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1545
	(1.0 uncheckedDivide:0) asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1546
	(0.0 uncheckedDivide:0) asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1547
	self pi printString.
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  1548
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1549
	self pi printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1550
	DefaultPrintFormat := '.3'.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1551
	self pi printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1552
	DefaultPrintFormat := '.7'.
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1553
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1554
	DecimalPointCharacterForPrinting := $,.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1555
	1.234 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1556
	1.0 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1557
	1e10 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1558
	1.2e3 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1559
	1.2e30 asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1560
	(1.0 uncheckedDivide:0) asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1561
	(0.0 uncheckedDivide:0) asShortFloat printString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1562
	DecimalPointCharacterForPrinting := $.
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1563
    "
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1564
!
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1565
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1566
printfPrintString:formatString
7746
4a4208ef7699 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7725
diff changeset
  1567
    "non-standard: return a printed representation of the receiver
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1568
     as specified by formatString, which is defined by printf.
21950
f5852ca02a75 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21906
diff changeset
  1569
f5852ca02a75 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21906
diff changeset
  1570
     If you use this, be aware, that the format string must be correct and something like %f.
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1571
     Also, the resulting string may not be longer than 255 bytes -
20433
29c784535d3b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20008
diff changeset
  1572
     since that's the (static) size of the buffer.
21906
f070c75710f1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21891
diff changeset
  1573
11924
db93de0d761d changed #printfPrintString:
Claus Gittinger <cg@exept.de>
parents: 11730
diff changeset
  1574
     This method is NONSTANDARD and may be removed without notice.
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1575
     WARNNG: this goes directly to the C-printf function and may therefore me inherently unsafe.
11924
db93de0d761d changed #printfPrintString:
Claus Gittinger <cg@exept.de>
parents: 11730
diff changeset
  1576
     Please use the printf: method, which is safe as it is completely implemented in Smalltalk."
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1577
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1578
%{  /* STACK: 400 */
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1579
    char buffer[256];
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1580
    OBJ s;
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1581
    int len;
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1582
12486
f1ef886832f1 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11945
diff changeset
  1583
    if (__isStringLike(formatString)) {
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1584
	/*
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1585
	 * actually only needed on sparc: since thisContext is
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1586
	 * in a global register, which gets destroyed by printf,
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1587
	 * manually save it here - very stupid ...
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1588
	 */
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1589
	__BEGIN_PROTECT_REGISTERS__
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1590
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1591
	len = snprintf(buffer, sizeof(buffer), __stringVal(formatString), __shortFloatVal(self));
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1592
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1593
	__END_PROTECT_REGISTERS__
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1594
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1595
	if (len < 0) goto fail;
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1596
	if (len >= sizeof(buffer)) goto fail;
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1597
21976
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1598
	s = __MKSTRING_L(buffer, len);
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1599
	if (s != nil) {
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1600
	    RETURN (s);
a57d00890b72 no logf in borland
Claus Gittinger <cg@exept.de>
parents: 21972
diff changeset
  1601
	}
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1602
    }
8418
37ccc74bbf9e Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 7746
diff changeset
  1603
fail: ;
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1604
%}.
21906
f070c75710f1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21891
diff changeset
  1605
    ^ super printfPrintString:formatString
5718
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1606
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1607
    "ShortFloat pi printfPrintString:'%%lg -> %lg'"
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1608
    "ShortFloat pi printfPrintString:'%%lf -> %lf'"
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1609
    "ShortFloat pi printfPrintString:'%%7.5lg -> %7.5lg'"
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1610
    "ShortFloat pi printfPrintString:'%%G -> %G'"
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1611
    "ShortFloat pi printfPrintString:'%%F -> %F'"
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1612
    "ShortFloat pi printfPrintString:'%%7.5G -> %7.5G'"
dfb94d8e4ad1 added #printfPrintString
Claus Gittinger <cg@exept.de>
parents: 5552
diff changeset
  1613
    "ShortFloat pi printfPrintString:'%%7.5F -> %7.5F'"
21906
f070c75710f1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21891
diff changeset
  1614
21950
f5852ca02a75 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21906
diff changeset
  1615
    "Modified (comment): / 03-07-2017 / 15:12:20 / cg"
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1616
!
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1617
22303
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1618
storeOn:aStream
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1619
    "append a printed representation of the receiver to
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1620
     the argument, aStream.
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1621
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1622
     I use #storeString instead of #storeOn: as basic store mechanism."
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1623
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1624
    aStream nextPutAll:self storeString
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1625
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1626
    "Created: / 10-10-2017 / 14:06:52 / cg"
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1627
!
a6cd53d4a5fe #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22259
diff changeset
  1628
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1629
storeString
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1630
    "return a printed representation of the receiver;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1631
     all valid digits are printed.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1632
     LimitedPrecisonReal and its subclasses use #storeString instead of
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1633
     #storeOn: as basic print mechanism."
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1634
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1635
%{  /* NOCONTEXT */
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1636
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1637
    char buffer[64];
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1638
    REGISTER char *cp;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1639
    OBJ s;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1640
    int len;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1641
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1642
    /*
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1643
     * build a printf format string
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1644
     */
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1645
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1646
    __BEGIN_PROTECT_REGISTERS__
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1647
    len = snprintf(buffer, sizeof(buffer), "%.8g", (float)__shortFloatVal(self));
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1648
    __END_PROTECT_REGISTERS__
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1649
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1650
    if (len >= 0 && len < sizeof(buffer)-3) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1651
	/*
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1652
	 * kludge to make integral float f prints as "f.0" (not as "f" as printf does)
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1653
	 * (i.e. look if string contains '.' or 'e' and append '.0' if not)
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1654
	 */
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1655
	for (cp = buffer; *cp; cp++) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1656
	    if ((*cp == '.') || (*cp == ',') || (*cp == 'E') || (*cp == 'e')) break;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1657
	}
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1658
	if (!*cp && (cp[-1] >= '0') && (cp[-1] <= '9')) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1659
	    *cp++ = '.';
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1660
	    *cp++ = '0';
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1661
	    *cp = '\0';
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1662
	}
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1663
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1664
	s = __MKSTRING(buffer);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1665
	if (s != nil) {
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1666
	    RETURN (s);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1667
	}
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1668
    }
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1669
%}.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1670
    "
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1671
     memory allocation (for the new string) failed.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1672
     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: 8418
diff changeset
  1673
     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: 8418
diff changeset
  1674
     OS, which was not kind enough to give it.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1675
     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: 8418
diff changeset
  1676
    "
20706
009b8269bd08 we have class based exceptions - use them
Claus Gittinger <cg@exept.de>
parents: 20433
diff changeset
  1677
    ^ AllocationFailure raise.
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1678
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1679
    "
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1680
	0.1 asShortFloat storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1681
	((Array new:10 withAll:0.1 asShortFloat) inject:0 into:[:v :sumSoFar| sumSoFar + v]) storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1682
	1.0 asShortFloat storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1683
	1.234 asShortFloat storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1684
	1e10 asShortFloat storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1685
	1.2e3 asShortFloat storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1686
	1.2e30 asShortFloat storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1687
	Float pi asShortFloat storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1688
	(1.0 uncheckedDivide:0) asShortFloat storeString
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1689
	(0.0 uncheckedDivide:0) asShortFloat storeString
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1690
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  1691
     notice that the storeString is NOT affected by DecimalPointCharacterForPrinting:
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  1692
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1693
	DecimalPointCharacterForPrinting := $,.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1694
	1.234 asShortFloat storeString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1695
	1.0 asShortFloat storeString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1696
	1e10 asShortFloat storeString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1697
	1.2e3 asShortFloat storeString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1698
	1.2e30 asShortFloat storeString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1699
	(1.0 uncheckedDivide:0) asShortFloat storeString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1700
	(0.0 uncheckedDivide:0) asShortFloat storeString.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1701
	DecimalPointCharacterForPrinting := $.
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8418
diff changeset
  1702
    "
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1703
! !
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
12628
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1705
!ShortFloat methodsFor:'private accessing'!
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1706
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1707
basicAt:index
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1708
    "return an internal byte of the float.
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1709
     The value returned here depends on byte order, float representation etc.
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1710
     Therefore, this method should be used strictly private.
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1711
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1712
     Notice:
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1713
	the need to redefine this method here is due to the
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1714
	inability of many machines to store floats in non-double aligned memory.
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1715
	Therefore, on some machines, the first 4 bytes of a float are left unused,
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1716
	and the actual float is stored at index 5 .. 12.
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1717
	To hide this at one place, this method knows about that, and returns
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1718
	values as if this filler wasnt present."
12628
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1719
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1720
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1721
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1722
    register int indx;
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1723
    unsigned char *cp;
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1724
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1725
    /*
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1726
     * notice the missing test for self being a nonNilObject -
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1727
     * this can be done since basicAt: is defined both in UndefinedObject
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1728
     * and SmallInteger
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1729
     */
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1730
    if (__isSmallInteger(index)) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1731
	indx = __intVal(index) - 1;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1732
	if (((unsigned)(indx)) < sizeof(float)) {
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1733
	    cp = (unsigned char *)(& (__ShortFloatInstPtr(self)->f_floatvalue));
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1734
	    RETURN ( __mkSmallInteger(cp[indx] & 0xFF) );
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1735
	}
12628
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1736
    }
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1737
%}.
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1738
    ^ self indexNotIntegerOrOutOfBounds:index
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1739
!
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1740
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1741
basicAt:index put:value
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1742
    "set an internal byte of the float.
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1743
     The value to be stored here depends on byte order, float representation etc.
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1744
     Therefore, this method should be used strictly private.
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1745
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1746
     Notice:
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1747
	the need to redefine this method here is due to the
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1748
	inability of many machines to store floats in non-double aligned memory.
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1749
	Therefore, on some machines, the first 4 bytes of a float are left unused,
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1750
	and the actual float is stored at index 5 .. 12.
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1751
	To hide this at one place, this method knows about that, and returns
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1752
	values as if this filler wasnt present."
12628
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1753
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1754
%{  /* NOCONTEXT */
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1755
    register int indx, val;
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1756
    unsigned char *cp;
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1757
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1758
    /*
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1759
     * notice the missing test for self being a nonNilObject -
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1760
     * this can be done since basicAt: is defined both in UndefinedObject
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1761
     * and SmallInteger
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1762
     */
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1763
    if (__bothSmallInteger(index, value)) {
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1764
	val = __intVal(value);
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1765
	if ((val & ~0xFF) == 0 /* i.e. (val >= 0) && (val <= 255) */) {
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1766
	    indx = __intVal(index) - 1;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1767
	    if (((unsigned)(indx)) < sizeof(float)) {
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1768
		cp = (unsigned char *)(& (__ShortFloatInstPtr(self)->f_floatvalue));
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1769
		cp[indx] = val;
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1770
		RETURN ( value );
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1771
	    }
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1772
	}
12628
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1773
    }
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1774
%}.
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1775
    value isInteger ifFalse:[
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1776
	"
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1777
	 the object to store should be an integer number
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1778
	"
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1779
	^ self elementNotInteger
12628
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1780
    ].
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1781
    (value between:0 and:255) ifFalse:[
14673
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1782
	"
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1783
	 the object to store must be a bytes value
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1784
	"
d3c91be01e96 setlocale only once and for all in stxmain
Claus Gittinger <cg@exept.de>
parents: 14601
diff changeset
  1785
	^ self elementBoundsError:value
12628
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1786
    ].
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1787
    ^ self indexNotIntegerOrOutOfBounds:index
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1788
! !
Claus Gittinger <cg@exept.de>
parents: 12486
diff changeset
  1789
22259
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1790
!ShortFloat methodsFor:'private-accessing'!
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1791
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1792
byteAt:index
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1793
    ^ self basicAt:index
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1794
!
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1795
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1796
byteAt:index put:newByte
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1797
    self shouldNotImplement
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1798
! !
60b47f522c85 #BUGFIX by sr
sr
parents: 21976
diff changeset
  1799
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1800
!ShortFloat methodsFor:'queries'!
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1801
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1802
nextFloat:count
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1803
    "answer the next float count places after (or before if count is negative) myself"
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1804
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1805
%{
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1806
    union u {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1807
	float d;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1808
	INT32 i;
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1809
    } this;
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1810
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1811
    if (__isSmallInteger(count)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1812
	this.d = __shortFloatVal(self);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1813
	if (isfinite(this.d))
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1814
	    this.i += __intVal(count);
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1815
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1816
	RETURN(__MKSFLOAT(this.d));
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1817
    }
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1818
%}.
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1819
    self primitiveFailed:#badArgument
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1820
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1821
  "
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1822
     (1.0 asShortFloat nextFloat:2) storeString
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1823
     (67329.234 asShortFloat nextFloat:1) storeString
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1824
     ShortFloat NaN nextFloat:100000
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1825
     ShortFloat infinity nextFloat:100000
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1826
  "
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1827
! !
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  1828
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1829
!ShortFloat methodsFor:'special access'!
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1830
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1831
exponent
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1832
    "extract a normalized float's exponent.
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1833
     The returned value depends on the float-representation of
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1834
     the underlying machine and is therefore highly unportable.
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1835
     This is not for general use.
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1836
     This assumes that the mantissa is normalized to
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1837
     0.5 .. 1.0 and the float's value is mantissa * 2^exp"
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1838
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1839
%{  /* NOCONTEXT */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1840
    int exp;
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1841
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  1842
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1843
    frexpf( __shortFloatVal(self), &exp);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1844
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1845
    frexp( (double)(__shortFloatVal(self)), &exp);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1846
#endif
14744
24c92caccacf class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14741
diff changeset
  1847
    RETURN (__mkSmallInteger(exp));
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1848
%}.
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1849
    ^ super exponent
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1850
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1851
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1852
     4.0 asShortFloat exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1853
     2.0 asShortFloat exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1854
     1.0 asShortFloat exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1855
     0.5 asShortFloat exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1856
     0.25 asShortFloat exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1857
     0.00000011111 asShortFloat exponent
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1858
    "
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1859
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1860
    "Modified: / 20-06-2017 / 11:33:41 / cg"
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1861
!
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1862
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1863
mantissa
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1864
    "extract a normalized floats mantissa.
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1865
     The returned value depends on the float-representation of
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1866
     the underlying machine and is therefore highly unportable.
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1867
     This is not for general use.
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1868
     This assumes that the mantissa is normalized to
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1869
     0.5 .. 1.0 and the floats value is mantissa * 2^exp"
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1870
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1871
%{  /* NOCONTEXT */
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1872
    float myVal;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1873
    int exp;
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1874
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1875
    myVal = __shortFloatVal(self);
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1876
    // ouch: math libs seem to not care for NaN here;
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1877
#if 1
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1878
    // should we?
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
  1879
    if (!isnanf(myVal) && isfinitef(myVal))
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1880
#endif
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1881
    {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  1882
#if defined(__i386__) && defined(__GNUC__)
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
  1883
	float frac = frexpf(myVal, &exp);
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
  1884
	RETURN (__MKSFLOAT(frac));
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1885
#else
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
  1886
	double frac = frexp( (double)(myVal), &exp);
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21858
diff changeset
  1887
	RETURN (__MKFLOAT(frac));
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1888
#endif
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1889
    }
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1890
%}.
20008
21d2247d8dd8 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20000
diff changeset
  1891
    ^ super mantissa
20706
009b8269bd08 we have class based exceptions - use them
Claus Gittinger <cg@exept.de>
parents: 20433
diff changeset
  1892
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1893
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1894
     1.0 asShortFloat exponent
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1895
     1.0 asShortFloat mantissa
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1896
     1e1000 asShortFloat mantissa
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1897
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1898
     0.5 asShortFloat exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1899
     0.5 asShortFloat mantissa
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1900
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1901
     0.25 asShortFloat exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1902
     0.25 asShortFloat mantissa
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1903
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1904
     0.00000011111 asShortFloat exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1905
     0.00000011111 asShortFloat mantissa
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1906
    "
21850
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1907
30b47dffc27c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21836
diff changeset
  1908
    "Modified: / 20-06-2017 / 11:41:11 / cg"
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1909
! !
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  1910
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1911
!ShortFloat methodsFor:'testing'!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1912
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1913
isFinite
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1914
    "return true, if the receiver is a finite float
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1915
     i.e. not NaN and not infinite."
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1916
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1917
%{  /* NOCONTEXT */
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  1918
    float fV = __shortFloatVal(self);
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1919
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  1920
    /*
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  1921
     * notice: on machines which do not provide
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1922
     * a isfinite() macro or function (WIN32),
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1923
     * this may always ret true here ...
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  1924
     */
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  1925
    if (isfinitef(fV)) { RETURN (true); }
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1926
%}.
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  1927
    ^ false
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1928
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1929
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1930
	1.0 asShortFloat isFinite
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1931
	(0.0 asShortFloat uncheckedDivide: 0.0) isFinite
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1932
	(1.0 asShortFloat uncheckedDivide: 0.0) isFinite
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1933
    "
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1934
!
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1935
2387
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1936
isNaN
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1937
    "return true, if the receiver is an invalid float (NaN - not a number).
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1938
     These are not created by ST/X float operations (they raise an exception);
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1939
     however, inline C-code could produce them ..."
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1940
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1941
%{  /* NOCONTEXT */
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  1942
    float sV = __shortFloatVal(self);
3139
ca
parents: 3014
diff changeset
  1943
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  1944
    /*
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  1945
     * notice: on machines which do not provide
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1946
     * a isnan() macro or function (WIN32),
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1947
     * this may always ret false here ...
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  1948
     */
9121
561e28aa22f9 fixed: isNaN and isFinite (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  1949
    if (isnanf(sV)) { RETURN (true); }
2392
cd44ad5cf015 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2391
diff changeset
  1950
%}.
cd44ad5cf015 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2391
diff changeset
  1951
    ^ false
2387
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1952
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1953
    "
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  1954
     1.0 asShortFloat isNaN
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1955
     (0.0 asShortFloat uncheckedDivide: 0.0) isNaN
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1956
     (0.0 asShortFloat uncheckedDivide: 0.0 asShortFloat) isNaN
3147
60396c4b82eb New #finite, fix #isNaN.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1957
    "
2387
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1958
!
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  1959
6890
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1960
isNegativeZero
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1961
    "many systems have two float.Pnt zeros"
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1962
17396
b587ca0a385f class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17394
diff changeset
  1963
%{ /* NOCONTEXT */
17394
5adc10f7b7a5 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17391
diff changeset
  1964
#if defined(__BORLANDC__)
5adc10f7b7a5 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17391
diff changeset
  1965
    union { float f; int i; } __u;
5adc10f7b7a5 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17391
diff changeset
  1966
   __u.f = __shortFloatVal(self);
5adc10f7b7a5 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17391
diff changeset
  1967
    RETURN ( (__u.f == 0.0 && __u.i < 0) ? true : false );
17391
a3b12aec97ac class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17382
diff changeset
  1968
#else
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  1969
    RETURN ( (__shortFloatVal(self) == 0.0 && signbit(__shortFloatVal(self)) != 0) ? true : false );
17391
a3b12aec97ac class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17382
diff changeset
  1970
#endif
6890
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1971
%}.
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1972
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1973
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1974
     0.0 asShortFloat isNegativeZero
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  1975
     -0.0 asShortFloat isNegativeZero
6890
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1976
    "
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1977
!
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
  1978
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1979
negative
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  1980
    "return true if the receiver is less than zero.
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  1981
     -0.0 is positive for now."
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1982
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1983
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1984
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  1985
    RETURN ( __shortFloatVal(self) < 0.0  ? true : false );
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  1986
    // RETURN ( signbit(__shortFloatVal(self)) != 0  ? true : false );
5411
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  1987
%}.
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  1988
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  1989
    "
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1990
	0.0 asShortFloat negative
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1991
	-0.0 asShortFloat negative
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1992
	1.0 asShortFloat negative
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1993
	-1.0 asShortFloat negative
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1994
	(1.0 uncheckedDivide: 0.0) asShortFloat negative
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  1995
	(-1.0 uncheckedDivide: 0.0) asShortFloat negative
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  1996
    "
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1997
!
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1998
5357
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  1999
numberOfBits
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2000
    "return the size (in bits) of the real;
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2001
     typically, 32 is returned here,
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2002
     but who knows ..."
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2003
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2004
%{  /* NOCONTEXT */
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2005
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2006
    RETURN (__mkSmallInteger (sizeof(float) * 8));
5357
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2007
%}
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2008
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2009
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2010
     1.2 numberOfBits
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2011
     1.2 asShortFloat numberOfBits
5357
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2012
    "
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2013
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2014
!
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2015
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2016
positive
18852
49601a7aefd8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18841
diff changeset
  2017
    "return true if the receiver is greater or equal to zero (not negative)
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  2018
     0.0 and -0.0 are positive for now."
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2019
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2020
%{  /* NOCONTEXT */
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2021
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  2022
    RETURN ( __shortFloatVal(self) >= 0.0 ? true : false );
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  2023
//    RETURN ( (signbit(__shortFloatVal(self)) == 0 ? true : false ) );
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  2024
%}.
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  2025
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  2026
    "
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  2027
	0.0 asShortFloat positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  2028
	-0.0 asShortFloat positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  2029
	1.0 asShortFloat positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  2030
	-1.0 asShortFloat positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  2031
	(1.0 uncheckedDivide: 0.0) asShortFloat positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19325
diff changeset
  2032
	(-1.0 uncheckedDivide: 0.0) asShortFloat positive
17382
1181f2c99686 class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 17220
diff changeset
  2033
    "
1880
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2034
!
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2035
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2036
strictlyPositive
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2037
    "return true if the receiver is greater than zero"
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2038
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2039
%{  /* NOCONTEXT */
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2040
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2041
    RETURN ( (__shortFloatVal(self) > 0.0) ? true : false );
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2042
%}
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2043
! !
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2044
5552
31b5cc144476 category changes
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
  2045
!ShortFloat methodsFor:'truncation & rounding'!
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2046
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2047
ceiling
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2048
    "return the smallest integer which is greater or equal to the receiver."
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2049
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2050
    |val|
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2051
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2052
%{
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2053
    float fVal;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2054
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2055
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2056
    fVal = ceilf(__shortFloatVal(self));
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2057
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2058
    fVal = (float)(ceil((double)__shortFloatVal(self)));
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2059
#endif
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2060
    /*
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2061
     * ST-80 (and X3J20) returns integer.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2062
     */
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2063
    if ((fVal >= (float)_MIN_INT) && (fVal <= (float)_MAX_INT)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2064
	RETURN ( __mkSmallInteger( (INT) fVal ) );
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2065
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2066
    __qMKSFLOAT(val, fVal);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2067
%}.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2068
    ^ val asInteger
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2069
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2070
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2071
     0.5 asShortFloat ceiling
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2072
     -0.5 asShortFloat ceiling
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2073
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2074
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2075
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2076
ceilingAsFloat
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2077
    "return the smallest integer-valued float greater or equal to the receiver.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2078
     This is much like #ceiling, but avoids a (possibly expensive) conversion
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2079
     of the result to an integer.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2080
     It may be useful, if the result is to be further used in another float-operation."
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2081
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2082
%{  /* NOCONTEXT */
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2083
    float fVal;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2084
    OBJ v;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2085
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2086
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2087
    fVal = ceilf(__shortFloatVal(self));
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2088
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2089
    fVal = (float) ceil((double)__shortFloatVal(self));
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2090
#endif
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2091
    __qMKSFLOAT(v, fVal);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2092
    RETURN (v);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2093
%}
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2094
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2095
     0.5 asShortFloat ceilingAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2096
     -0.5 asShortFloat ceilingAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2097
     -1.5 asShortFloat ceilingAsFloat
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2098
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2099
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2100
4100
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2101
floor
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2102
    "return the integer nearest the receiver towards negative infinity."
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2103
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2104
    |val|
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2105
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2106
%{
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2107
    float fVal;
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2108
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2109
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2110
    fVal = floorf(__shortFloatVal(self));
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2111
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2112
    fVal = (float)(floor((double)__shortFloatVal(self)));
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2113
#endif
4100
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2114
    /*
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2115
     * ST-80 (and X3J20) returns integer.
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2116
     */
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2117
    if ((fVal >= (float)_MIN_INT) && (fVal <= (float)_MAX_INT)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2118
	RETURN ( __mkSmallInteger( (INT) fVal ) );
4100
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2119
    }
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2120
    __qMKSFLOAT(val, fVal);
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2121
%}.
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2122
    ^ val asInteger
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2123
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2124
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2125
     0.5 asShortFloat floor
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2126
     -0.5 asShortFloat floor
4100
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2127
    "
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2128
!
4100
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2129
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2130
floorAsFloat
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2131
    "return the float which represents the next lower
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2132
     integer nearest the receiver towards negative infinity.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2133
     Much like floor, but returns a float result - useful if the result
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2134
     will be used in another float operation, to avoid costy int-conversion."
4100
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2135
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2136
%{  /* NOCONTEXT */
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2137
    float fVal;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2138
    OBJ v;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2139
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2140
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2141
    fVal = floorf(__shortFloatVal(self));
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2142
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2143
    fVal = (float)(floor((double)__shortFloatVal(self)));
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2144
#endif
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2145
    __qMKSFLOAT(v, fVal);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2146
    RETURN ( v );
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2147
%}
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2148
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2149
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2150
     0.5 asShortFloat floorAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2151
     -0.5 asShortFloat floorAsFloat
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2152
    "
4100
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2153
!
a605c54bf9a9 fixed floor (endless recursion)
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  2154
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2155
fractionPart
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2156
    "extract the after-decimal fraction part.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2157
     such that (self truncated + self fractionPart) = self"
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2158
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2159
%{  /* NOCONTEXT */
14727
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2160
#ifdef NO_MODFF
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2161
    double dFrac, dTrunc;
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2162
#else
14741
4a898f7517d5 hack for visualc
Claus Gittinger <cg@exept.de>
parents: 14727
diff changeset
  2163
# ifndef __VISUALC__
14727
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2164
    float modff(float, float *);
14741
4a898f7517d5 hack for visualc
Claus Gittinger <cg@exept.de>
parents: 14727
diff changeset
  2165
# endif
14727
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2166
#endif
14718
01835f8e7bab class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14710
diff changeset
  2167
    float frac, trunc;
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2168
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  2169
    __threadErrno = 0;
14727
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2170
#ifdef NO_MODFF
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2171
	dFrac = modf((double)__shortFloatVal(self), &dTrunc) ;
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2172
	frac = (float)dFrac;
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2173
#else
14718
01835f8e7bab class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14710
diff changeset
  2174
    frac = modff(__shortFloatVal(self), &trunc);
14727
10825e6940d3 no modff, no fmodf with bcc
Claus Gittinger <cg@exept.de>
parents: 14719
diff changeset
  2175
#endif
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2176
    if (! isnan(frac)) {
14719
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
  2177
	if (__threadErrno == 0) {
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
  2178
	    RETURN (__MKSFLOAT(frac));
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
  2179
	}
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2180
    }
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2181
%}.
7403
857702a5a921 signals vs. errors
Claus Gittinger <cg@exept.de>
parents: 7392
diff changeset
  2182
    ^ self class
14719
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
  2183
	raise:#domainErrorSignal
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
  2184
	receiver:self
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
  2185
	selector:#fractionPart
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
  2186
	arguments:#()
a354c1ef4a56 comment
Claus Gittinger <cg@exept.de>
parents: 14718
diff changeset
  2187
	errorString:'bad receiver in fractionPart'
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2188
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2189
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2190
     1.6 asShortFloat fractionPart + 1.6 asShortFloat truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2191
     -1.6 asShortFloat fractionPart + -1.6 asShortFloat truncated
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2192
14718
01835f8e7bab class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14710
diff changeset
  2193
     1.0 asShortFloat fractionPart
01835f8e7bab class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14710
diff changeset
  2194
     0.5 asShortFloat fractionPart
01835f8e7bab class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14710
diff changeset
  2195
     0.25 asShortFloat fractionPart
01835f8e7bab class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14710
diff changeset
  2196
     3.14159 asShortFloat fractionPart
01835f8e7bab class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14710
diff changeset
  2197
     12345673.14159 asShortFloat fractionPart
01835f8e7bab class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 14710
diff changeset
  2198
     123456731231231231.14159 asShortFloat fractionPart
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2199
    "
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2200
!
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2201
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2202
rounded
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2203
    "return the receiver rounded to the nearest integer"
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2204
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2205
    |val|
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2206
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2207
%{
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2208
    float fVal;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2209
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2210
    fVal = __shortFloatVal(self);
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2211
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2212
    if (fVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2213
	fVal = ceilf(fVal - (float)0.5);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2214
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2215
	fVal = floorf(fVal + (float)0.5);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2216
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2217
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2218
    if (fVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2219
	fVal = (float)ceil((double)fVal - 0.5);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2220
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2221
	fVal = (float)floor((double)fVal + 0.5);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2222
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2223
#endif
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2224
    /*
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2225
     * ST-80 (and X3J20) returns integer.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2226
     */
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2227
    if ((fVal >= (float)_MIN_INT) && (fVal <= (float)_MAX_INT)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2228
	RETURN ( __mkSmallInteger( (INT) fVal ) );
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2229
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2230
    __qMKSFLOAT(val, fVal);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2231
%}.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2232
    ^ val asInteger
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2233
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2234
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2235
     0.4 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2236
     0.5 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2237
     0.6 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2238
     -0.4 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2239
     -0.5 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2240
     -0.6 asShortFloat rounded
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2241
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2242
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2243
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2244
roundedAsFloat
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2245
    "return the receiver rounded to the nearest integer as a float.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2246
     This is much like #rounded, but avoids a (possibly expensive) conversion
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2247
     of the result to an integer.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2248
     It may be useful, if the result is to be further used in another float-operation."
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2249
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2250
%{  /* NOCONTEXT */
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2251
    float fVal;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2252
    OBJ v;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2253
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2254
    fVal = __shortFloatVal(self);
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2255
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2256
    if (fVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2257
	fVal = ceilf(fVal - (float)0.5);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2258
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2259
	fVal = floorf(fVal + (float)0.5);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2260
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2261
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2262
    if (fVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2263
	fVal = (float)ceil((double)fVal - 0.5);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2264
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2265
	fVal = (float)floor((double)fVal + 0.5);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2266
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2267
#endif
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2268
    __qMKSFLOAT(v, fVal);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2269
    RETURN (v);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2270
%}
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2271
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2272
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2273
     0.4 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2274
     0.5 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2275
     0.6 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2276
     -0.4 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2277
     -0.5 asShortFloat rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2278
     -0.6 asShortFloat rounded
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2279
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2280
     0.4 asShortFloat roundedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2281
     0.5 asShortFloat roundedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2282
     0.6 asShortFloat roundedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2283
     -0.4 asShortFloat roundedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2284
     -0.5 asShortFloat roundedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2285
     -0.6 asShortFloat roundedAsFloat
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2286
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2287
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2288
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2289
truncated
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2290
    "return the receiver truncated towards zero as an integer"
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2291
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2292
    |val|
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2293
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2294
%{
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2295
    float fVal;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2296
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2297
    fVal = __shortFloatVal(self);
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2298
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2299
    if (fVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2300
	fVal = ceilf(fVal);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2301
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2302
	fVal = floorf(fVal);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2303
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2304
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2305
    if (fVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2306
	fVal = (float)ceil((double)fVal);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2307
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2308
	fVal = (float)floor((double)fVal);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2309
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2310
#endif
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2311
    /*
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2312
     * ST-80 (and X3J20) returns integer.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2313
     */
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2314
    if ((fVal >= (float)_MIN_INT) && (fVal <= (float)_MAX_INT)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2315
	RETURN ( __mkSmallInteger( (INT) fVal ) );
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2316
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2317
    __qMKSFLOAT(val, fVal);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2318
%}.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2319
    ^ val asInteger
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2320
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2321
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2322
     0.5 asShortFloat truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2323
     -0.5 asShortFloat truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2324
     0.5 asShortFloat truncatedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2325
     -0.5 asShortFloat truncatedAsFloat
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2326
    "
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2327
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2328
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2329
truncatedAsFloat
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2330
    "return the receiver truncated towards zero as a float.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2331
     This is much like #truncated, but avoids a (possibly expensive) conversion
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2332
     of the result to an integer.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2333
     It may be useful, if the result is to be further used in another
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2334
     float-operation."
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2335
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2336
%{  /* NOCONTEXT */
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2337
    float fVal;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2338
    OBJ v;
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2339
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2340
    fVal = __shortFloatVal(self);
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8706
diff changeset
  2341
#if defined(__i386__) && defined(__GNUC__)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2342
    if (fVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2343
	fVal = ceilf(fVal);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2344
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2345
	fVal = floorf(fVal);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2346
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2347
#else
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2348
    if (fVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2349
	fVal = (float)ceil((double)fVal);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2350
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2351
	fVal = (float)floor((double)fVal);
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2352
    }
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2353
#endif
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2354
    __qMKSFLOAT(v, fVal);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2355
    RETURN (v);
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2356
%}
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2357
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2358
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2359
     0.5 asShortFloat truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2360
     -0.5 asShortFloat truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2361
     0.5 asShortFloat truncatedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11924
diff changeset
  2362
     -0.5 asShortFloat truncatedAsFloat
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2363
    "
3897
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2364
! !
b50a14f9083e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
  2365
1880
64341225f439 added strictlyPositive
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2366
!ShortFloat class methodsFor:'documentation'!
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2367
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2368
version
18841
0578521d1cea #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18139
diff changeset
  2369
    ^ '$Header$'
12486
f1ef886832f1 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11945
diff changeset
  2370
!
f1ef886832f1 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11945
diff changeset
  2371
f1ef886832f1 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 11945
diff changeset
  2372
version_CVS
18841
0578521d1cea #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18139
diff changeset
  2373
    ^ '$Header$'
1197
2b37cf664b81 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2374
! !
15012
3361a2f2993e class: ShortFloat
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
  2375
16670
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  2376
b81b77ec431d class: ShortFloat
Stefan Vogel <sv@exept.de>
parents: 16633
diff changeset
  2377
ShortFloat initialize!