mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
+ re-implementation of real->string and string->real conversion routines
based on the Grisu1 algorithm. This corrects several precision issues with the previous code used to perform such conversions (patch by Max Nazhalov, mantis #25241) o adaptation of several tests to deal with the better precision of these routines compared to the previous version Please don't remove the real2str.inc file yet, it's still used by the JVM target for now git-svn-id: trunk@25888 -
This commit is contained in:
parent
7b97752d0b
commit
21eeec9981
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -7904,6 +7904,9 @@ rtl/inc/extres.inc svneol=native#text/plain
|
||||
rtl/inc/fexpand.inc svneol=native#text/plain
|
||||
rtl/inc/file.inc svneol=native#text/plain
|
||||
rtl/inc/filerec.inc svneol=native#text/plain
|
||||
rtl/inc/flt_conv.inc svneol=native#text/plain
|
||||
rtl/inc/flt_core.inc svneol=native#text/plain
|
||||
rtl/inc/flt_pack.inc svneol=native#text/plain
|
||||
rtl/inc/fpextres.pp svneol=native#text/plain
|
||||
rtl/inc/fpintres.pp svneol=native#text/plain
|
||||
rtl/inc/gencurr.inc svneol=native#text/plain
|
||||
|
419
rtl/inc/flt_conv.inc
Normal file
419
rtl/inc/flt_conv.inc
Normal file
@ -0,0 +1,419 @@
|
||||
{
|
||||
Copyright (C) 2013 by Max Nazhalov
|
||||
|
||||
This file, in conjunction with FLT_CORE.INC, implements 2-way conversion
|
||||
among the binary floating-point value and its ASCII representation.
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version with the following modification:
|
||||
|
||||
As a special exception, the copyright holders of this library give you
|
||||
permission to link this library with independent modules to produce an
|
||||
executable, regardless of the license terms of these independent modules,
|
||||
and to copy and distribute the resulting executable under terms of your
|
||||
choice, provided that you also meet, for each linked independent module,
|
||||
the terms and conditions of the license of that module. An independent
|
||||
module is a module which is not derived from or based on this library.
|
||||
If you modify this library, you may extend this exception to your version
|
||||
of the library, but you are not obligated to do so. If you do not wish to
|
||||
do so, delete this exception statement from your version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
See the GNU Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
****************************************************************************
|
||||
}
|
||||
{
|
||||
Algorithm for converting floating-point values to decimal representation
|
||||
implemented here has the formal name "Grisu" (basically, "Grisu1").
|
||||
It was developed by Florian Loitsch and was presented on the PLDI forum
|
||||
in the mid-2010. Detailed algorithm description and rationale can be found
|
||||
in his article, referenced below. [1]
|
||||
|
||||
This implementation is purely based on [1], extrapolating the original
|
||||
algorithm on to floating point types other than the "double": namely
|
||||
"single", "extended" and "float128".
|
||||
|
||||
For self-sufficiency, inverse conversion is also implemented.
|
||||
It uses strightforward approach, with the help of high-precision integer
|
||||
routines and tables used by Grisu. The main goal was to confirm the "internal
|
||||
identity", i.e. conversion path " float -> ASCII -> float " should recover
|
||||
the original floating-point representation so long as there are enough
|
||||
significant digits provided.
|
||||
|
||||
Generally, the algorithm used has two major drawbacks:
|
||||
1. Although "Grisu1" is seems precise in the sense of internal identity, as
|
||||
defined above, it is often produces suboptimal output, i.e., in
|
||||
exponential representation, output could end up with "...00001",
|
||||
"...99998" et al., despite of the fact that in those cases rounding-off
|
||||
the last 1 (or, less often, 2) digits would not break internal identity.
|
||||
Refer to [1] for further explanations.
|
||||
2. Although "Grisu1" is REALLY fast on, e.g. i386, there can be significant
|
||||
performance impact on platforms which have long floating point, but
|
||||
rather "short" integer ALU (e.g., i8086 with i8087). Despite of the fact
|
||||
that an attempt was made to use only "uint32" when converting the
|
||||
"single" back and forth, all other floating-point types unavoidably
|
||||
require and heavily use "uint64" arithmetics.
|
||||
|
||||
---
|
||||
|
||||
Implementation was intentionally split into 3 include files to simplify
|
||||
maintenance and to avoid complex multiple self-includings.
|
||||
|
||||
This file is the root one. It, depending on the selected mode, defines
|
||||
proper conditionals, and then includes FLT_CORE.INC, which implements actual
|
||||
conversions. Basically, there are 2 possible compilation modes:
|
||||
1. If condition "fpc_softfpu_implementation" is defined before including
|
||||
this file, it is assumed to be a part of SoftFPU. In this case, file
|
||||
FLT_CORE.INC is included once per every supported floating point type.
|
||||
Naming conflicts resolved with macros.
|
||||
Supported types are selected with the following pre-defined conditionals:
|
||||
SOFTFLOAT_ASCII_FLOAT32
|
||||
SOFTFLOAT_ASCII_FLOAT64
|
||||
SOFTFLOAT_ASCII_FLOATX80
|
||||
SOFTFLOAT_ASCII_FLOAT128
|
||||
This mode is basically intended to allow testing and debugging various
|
||||
conversion scenarios without having appropriate floating point hardware,
|
||||
using only sandbox provided by the SoftFPU. An implementation example of
|
||||
this mode is shown in the accompanying file SFPU_FORMAT.PP.
|
||||
2. If condition "fpc_softfpu_implementation" is not defined, it is assumed
|
||||
to be a part of the system unit, or something else. In this case, file
|
||||
FLT_CORE.INC is included only once, and the actual floating point type
|
||||
must be defined as "ValReal" before including this file. Also, kind of
|
||||
the "ValReal" must be further specified with the following defines (in
|
||||
order of priority):
|
||||
SUPPORT_FLOAT128
|
||||
SUPPORT_EXTENDED
|
||||
SUPPORT_DOUBLE
|
||||
SUPPORT_SINGLE
|
||||
Overall behavior and definitions mimic the REAL2STR.INC file from the
|
||||
FPC source tree.
|
||||
|
||||
BEWARE: there are two minor differences between the code generated for mode 1
|
||||
and mode 2, which can potentially lead to different results:
|
||||
<i> floating-point value packing and unpacking routines are implemented
|
||||
differently among these modes (see FLT_PACK.INC).
|
||||
<ii> also one internal subroutine involved into conversion to ASCII, namely
|
||||
"k_comp", has separate implementations for mode 1 and mode 2.
|
||||
Certainly, they should behave the same, and they have never been caught yet
|
||||
during testing, but who knows..
|
||||
|
||||
---
|
||||
|
||||
References:
|
||||
|
||||
[1] Florian Loitsch. Printing Floating-Point Numbers Quickly and Accurately
|
||||
with Integers. PLDI'10, June 5-10, 2010, Toronto, Ontario, Canada.
|
||||
http://florian.loitsch.com/publications/dtoa-pldi2010.pdf?attredirects=0
|
||||
|
||||
[2] IEEE 754-2008, Standard for Floating-Point Arithmetic. IEEE, New York,
|
||||
Aug. 29 2008.
|
||||
|
||||
****************************************************************************
|
||||
}
|
||||
{$push}
|
||||
{$Q-,R-,B-}
|
||||
|
||||
{$ifdef DEBUG}
|
||||
{$define grisu1_debug}
|
||||
{$C+}
|
||||
{$else}
|
||||
{$undef grisu1_debug}
|
||||
{$endif}
|
||||
|
||||
(*-------------------------------------------------------
|
||||
| Compatibility settings
|
||||
*-------------------------------------------------------*)
|
||||
|
||||
// FPC defaults to "real indefinite" QNaN value, which is negative.
|
||||
// Undefine to respect the sign provided during ASCII->float conversion.
|
||||
{$define GRISU1_A2F_QNAN_REAL_INDEFINITE}
|
||||
|
||||
// Controls printing of NaN-sign.
|
||||
// Undefine to print NaN sign during float->ASCII conversion.
|
||||
{$define GRISU1_F2A_NAN_SIGNLESS} // IEEE does not interpret the sign of a NaN, so leave it defined.
|
||||
|
||||
// Controls rounding of generated digits when formatting with narrowed
|
||||
// width (either fixed or exponential notation).
|
||||
// Traditionally, FPC and BP7/Delphi use "roundTiesToAway" mode.
|
||||
// Undefine to use "roundTiesToEven" approach.
|
||||
{$define GRISU1_F2A_HALF_ROUNDUP}
|
||||
|
||||
// This one is a hack against Grusu sub-optimality.
|
||||
// It may be used only strictly together with GRISU1_F2A_HALF_ROUNDUP.
|
||||
// It does not violate most general rules due to the fact that it is
|
||||
// applicable only when formatting with narrowed width, where the fine
|
||||
// view is more desirable, and the precision is already lost, so it can
|
||||
// be used in general-purpose applications.
|
||||
// Refer to its implementation.
|
||||
{$define GRISU1_F2A_AGRESSIVE_ROUNDUP} // Defining this fixes several tests.
|
||||
|
||||
// Controls rounding of over-required digits during ASCII->float.
|
||||
// Undefine to use "roundTiesToEven" approach. [Should have no much sense, though]
|
||||
{$undef GRISU1_A2F_HALF_ROUNDUP}
|
||||
|
||||
// Controls which result is returned in case of error during ASCII->float.
|
||||
// FPC initializes result to "0.0".
|
||||
// Undefine to return (s)NAN.
|
||||
{$define GRISU1_A2F_ERROR_RET0} // Leave it defined, otherwise several irrelevant tests will break.
|
||||
|
||||
// Undefine to enable SNaN support.
|
||||
// Note: IEEE [754-2008, page 31] requires (1) to recognize "SNaN" during
|
||||
// ASCII->float, and (2) to generate the "invalid FP operation" exception
|
||||
// either when SNaN is printed as "NaN", or "SNaN" is evaluated to QNaN,
|
||||
// so it would be preferable to undefine these settings,
|
||||
// but the FPC RTL is not ready for this right now..
|
||||
{$define GRISU1_F2A_NO_SNAN}
|
||||
{$define GRISU1_A2F_NO_SNAN}
|
||||
|
||||
// Controls how many digits is printed for "single".
|
||||
// IEEE claims 9 digits is always enough, and it is confirmed by
|
||||
// comprehensive testing.
|
||||
// Define to print 10 digits.
|
||||
// Note: there is no much sense to print 10 digits, except that it fixes
|
||||
// the test "./tests/test/units/sysutils/tfloattostr.pp".
|
||||
// Alternate way would be to print 9 digits, and change the test to
|
||||
// compare against "6e-9" instead of "6e-10".
|
||||
{$define GRISU1_F2A_SINGLE_10DIGITS}
|
||||
|
||||
(*-------------------------------------------------------
|
||||
| These conditional defines are heavily used internally,
|
||||
| so make sure they are not defined around
|
||||
*-------------------------------------------------------*)
|
||||
|
||||
{$ifdef VALREAL_32}
|
||||
{$fatal VALREAL_32 should not be defined here!}
|
||||
{$endif}
|
||||
{$ifdef VALREAL_64}
|
||||
{$fatal VALREAL_64 should not be defined here!}
|
||||
{$endif}
|
||||
{$ifdef VALREAL_80}
|
||||
{$fatal VALREAL_80 should not be defined here!}
|
||||
{$endif}
|
||||
{$ifdef VALREAL_128}
|
||||
{$fatal VALREAL_128 should not be defined here!}
|
||||
{$endif}
|
||||
{$ifdef VALREAL_PACK}
|
||||
{$fatal VALREAL_PACK should not be defined here!}
|
||||
{$endif}
|
||||
|
||||
(*-------------------------------------------------------
|
||||
| Floating point types formatting profile
|
||||
*-------------------------------------------------------*)
|
||||
|
||||
type
|
||||
TReal_Type = (
|
||||
RT_S32REAL, // single
|
||||
RT_S64REAL, // double
|
||||
RT_S80REAL, // extended [80-bit]
|
||||
RT_SC80REAL, // extended ["C-extended"; functionally the same as RT_S80REAL, but may be different in alignment and padding]
|
||||
RT_C64BIT, // comp [legacy; just an int64 passed via float]
|
||||
RT_CURRENCY, // currency [seems never passed to str_real since it has its own dedicated converters after r5866]
|
||||
RT_S128REAL // float128
|
||||
);
|
||||
|
||||
const
|
||||
float_format: array [ TReal_Type ] of record
|
||||
nDig_mantissa, nDig_exp10: integer;
|
||||
end = (
|
||||
{
|
||||
Number of mantissa digits is dictated by [2] "IEEE 754-2008", page 32.
|
||||
N = 1 + ceiling( p * log10(2) ), where p is the number of significant
|
||||
bits, i.e. 24/53/64/113 accordingly (including the implicit one if any)
|
||||
}
|
||||
// RT_S32REAL
|
||||
( nDig_mantissa: {$ifdef GRISU1_F2A_SINGLE_10DIGITS} 10 {$else} 9 {$endif};
|
||||
nDig_exp10: 2;
|
||||
),
|
||||
// RT_S64REAL
|
||||
( nDig_mantissa: 17;
|
||||
nDig_exp10: 3;
|
||||
),
|
||||
// RT_S80REAL
|
||||
( nDig_mantissa: 21;
|
||||
nDig_exp10: 4;
|
||||
),
|
||||
// RT_SC80REAL
|
||||
( nDig_mantissa: 21;
|
||||
nDig_exp10: 4;
|
||||
),
|
||||
// RT_C64BIT
|
||||
( nDig_mantissa: 19; // int64 has 19 digits
|
||||
nDig_exp10: 4; // Delphi prints exponent with 4 digits
|
||||
),
|
||||
// RT_CURRENCY [seems not used after r5866]
|
||||
( nDig_mantissa: 19;
|
||||
nDig_exp10: 2;
|
||||
),
|
||||
// RT_S128REAL
|
||||
( nDig_mantissa: 36;
|
||||
nDig_exp10: 4;
|
||||
)
|
||||
);
|
||||
|
||||
C_STR_INF : string[3] = 'Inf';
|
||||
C_STR_QNAN : string[3] = 'Nan';
|
||||
{$if not ( defined(GRISU1_F2A_NO_SNAN) and defined(GRISU1_A2F_NO_SNAN) )}
|
||||
C_STR_SNAN : string[4] = 'SNan';
|
||||
{$endif GRISU1_*_NO_SNAN}
|
||||
|
||||
{$ifdef fpc_softfpu_implementation}
|
||||
(****************************************************************************
|
||||
*
|
||||
* SoftPFU unit: Multiple instances for all supported floating point types
|
||||
*
|
||||
****************************************************************************)
|
||||
{$inline on}
|
||||
{$macro on}
|
||||
{$define grisu1_inline}
|
||||
|
||||
{$define ValSInt:=integer}
|
||||
|
||||
{$ifdef SOFTFLOAT_ASCII_FLOAT32}
|
||||
{$define VALREAL_32}
|
||||
{$undef VALREAL_64}
|
||||
{$undef VALREAL_80}
|
||||
{$undef VALREAL_128}
|
||||
|
||||
// Name remapping
|
||||
{$define val_real:=ascii_to_float32}
|
||||
{$define ValReal:=float32rec}
|
||||
{$define TDIY_FP:=TDIY_FP32}
|
||||
{$define TDIY_FP_Power_of_10:=TDIY_FP32_Power_of_10}
|
||||
|
||||
// Implementation
|
||||
{$info === float32<->ASCII ===}
|
||||
{$i flt_core.inc}
|
||||
|
||||
{$endif SOFTFLOAT_ASCII_FLOAT32}
|
||||
|
||||
{$ifdef SOFTFLOAT_ASCII_FLOAT64}
|
||||
{$undef VALREAL_32}
|
||||
{$define VALREAL_64}
|
||||
{$undef VALREAL_80}
|
||||
{$undef VALREAL_128}
|
||||
|
||||
// Name remapping
|
||||
{$define val_real:=ascii_to_float64}
|
||||
{$define ValReal:=float64}
|
||||
{$define TDIY_FP:=TDIY_FP64}
|
||||
{$define TDIY_FP_Power_of_10:=TDIY_FP64_Power_of_10}
|
||||
|
||||
// Implementation
|
||||
{$info === float64<->ASCII ===}
|
||||
{$i flt_core.inc}
|
||||
|
||||
{$endif SOFTFLOAT_ASCII_FLOAT64}
|
||||
|
||||
{$ifdef SOFTFLOAT_ASCII_FLOATX80}
|
||||
{$undef VALREAL_32}
|
||||
{$undef VALREAL_64}
|
||||
{$define VALREAL_80}
|
||||
{$undef VALREAL_128}
|
||||
|
||||
// Name remapping
|
||||
{$define val_real:=ascii_to_floatx80}
|
||||
{$define ValReal:=floatx80}
|
||||
{$define TDIY_FP:=TDIY_FP96}
|
||||
{$define TDIY_FP_Power_of_10:=TDIY_FP96_Power_of_10}
|
||||
|
||||
// Implementation
|
||||
{$info === floatx80<->ASCII ===}
|
||||
{$i flt_core.inc}
|
||||
|
||||
{$endif SOFTFLOAT_ASCII_FLOATX80}
|
||||
|
||||
{$ifdef SOFTFLOAT_ASCII_FLOAT128}
|
||||
{$undef VALREAL_32}
|
||||
{$undef VALREAL_64}
|
||||
{$undef VALREAL_80}
|
||||
{$define VALREAL_128}
|
||||
|
||||
// Name remapping
|
||||
{$define val_real:=ascii_to_float128}
|
||||
{$define ValReal:=float128}
|
||||
{$define TDIY_FP:=TDIY_FP128}
|
||||
{$define TDIY_FP_Power_of_10:=TDIY_FP128_Power_of_10}
|
||||
|
||||
// Implementation
|
||||
{$info === float128<->ASCII ===}
|
||||
{$i flt_core.inc}
|
||||
|
||||
{$endif SOFTFLOAT_ASCII_FLOAT128}
|
||||
|
||||
// Clean-up
|
||||
{$undef VALREAL_32}
|
||||
{$undef VALREAL_64}
|
||||
{$undef VALREAL_80}
|
||||
{$undef VALREAL_128}
|
||||
{$undef VALREAL_PACK}
|
||||
{$undef val_real}
|
||||
{$undef ValReal}
|
||||
{$undef ValSInt}
|
||||
{$undef TDIY_FP}
|
||||
{$undef TDIY_FP_Power_of_10}
|
||||
{$undef grisu1_inline}
|
||||
{$info ========================}
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
(****************************************************************************
|
||||
*
|
||||
* System unit: only one native floating point type
|
||||
*
|
||||
****************************************************************************)
|
||||
{$ifdef SYSTEMINLINE}
|
||||
{$define grisu1_inline}
|
||||
{$else}
|
||||
{$undef grisu1_inline}
|
||||
{$endif}
|
||||
|
||||
{$if defined(SUPPORT_FLOAT128)}
|
||||
{$undef VALREAL_32}
|
||||
{$undef VALREAL_64}
|
||||
{$undef VALREAL_80}
|
||||
{$define VALREAL_128}
|
||||
|
||||
{$elseif defined(SUPPORT_EXTENDED)}
|
||||
{$undef VALREAL_32}
|
||||
{$undef VALREAL_64}
|
||||
{$define VALREAL_80}
|
||||
{$undef VALREAL_128}
|
||||
|
||||
{$elseif defined(SUPPORT_DOUBLE)}
|
||||
{$undef VALREAL_32}
|
||||
{$define VALREAL_64}
|
||||
{$undef VALREAL_80}
|
||||
{$undef VALREAL_128}
|
||||
|
||||
{$elseif defined(SUPPORT_SINGLE)}
|
||||
{$define VALREAL_32}
|
||||
{$undef VALREAL_64}
|
||||
{$undef VALREAL_80}
|
||||
{$undef VALREAL_128}
|
||||
|
||||
{$else}
|
||||
{$error Unrecognized ValReal type}
|
||||
{$endif SUPPORT_*}
|
||||
|
||||
// Implementation
|
||||
{$i flt_core.inc}
|
||||
|
||||
// Clean-up
|
||||
{ undef VALREAL_32}
|
||||
{ undef VALREAL_64}
|
||||
{ undef VALREAL_80}
|
||||
{ undef VALREAL_128}
|
||||
{$undef VALREAL_PACK}
|
||||
{$undef grisu1_inline}
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
|
||||
{$pop}
|
2717
rtl/inc/flt_core.inc
Normal file
2717
rtl/inc/flt_core.inc
Normal file
File diff suppressed because it is too large
Load Diff
383
rtl/inc/flt_pack.inc
Normal file
383
rtl/inc/flt_pack.inc
Normal file
@ -0,0 +1,383 @@
|
||||
{
|
||||
This file isolates platform-specific routines which perform packing and
|
||||
unpacking of ValReal FP values during float <-> ASCII conversions.
|
||||
These routines, mostly, were gathered from various places of FPC RTL.
|
||||
|
||||
****************************************************************************
|
||||
}
|
||||
{
|
||||
Note about inlining: since unpack_float is used only once in str_real,
|
||||
it can be safely inlined; however pack_float is used several times in
|
||||
val_real, so its inlining does not seem practical, except of the case
|
||||
when this procedure simply calls the SoftFPU implementation.
|
||||
}
|
||||
// ---------------------------------------------------------------------
|
||||
//
|
||||
// single; format [MSB]: 1 sign bit, 8 bit exponent, 23 bit mantissa
|
||||
//
|
||||
// ---------------------------------------------------------------------
|
||||
{$if defined(VALREAL_32) and not defined(VALREAL_PACK)}
|
||||
{$if defined(fpc_softfpu_implementation)
|
||||
or ( defined(FPC_SYSTEM_HAS_extractFloat32Frac)
|
||||
and defined(FPC_SYSTEM_HAS_extractFloat32Exp)
|
||||
and defined(FPC_SYSTEM_HAS_extractFloat32Sign)
|
||||
)}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
unpack_float.f := extractFloat32Frac( float32( f ) );
|
||||
unpack_float.e := extractFloat32Exp( float32( f ) );
|
||||
minus := ( extractFloat32Sign( float32( f ) ) <> 0 );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
type
|
||||
TSplitFloat = packed record
|
||||
case byte of
|
||||
0: ( f: ValReal );
|
||||
1: ( b: array [ 0 .. 3 ] of byte );
|
||||
2: ( w: array [ 0 .. 1 ] of word );
|
||||
3: ( d: dword );
|
||||
end;
|
||||
var
|
||||
split: TSplitFloat;
|
||||
begin
|
||||
split.f := f;
|
||||
{$ifdef endian_big}
|
||||
minus := ( split.b[0] and $80 <> 0 );
|
||||
unpack_float.e := ( split.w[0] shr 7 ) and $FF;
|
||||
{$else endian_little}
|
||||
minus := ( split.b[3] and $80 <> 0 );
|
||||
unpack_float.e := ( split.w[1] shr 7 ) and $FF;
|
||||
{$endif endian}
|
||||
unpack_float.f := split.d and $007FFFFF;
|
||||
end;
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
{$endif unpack float32}
|
||||
|
||||
{$if defined(VALREAL_32) and defined(VALREAL_PACK)}
|
||||
{$ifdef fpc_softfpu_implementation}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; const m: dword ); {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
f := float32rec( packFloat32( ord(minus), exp, m ) );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; m: dword ); // {$ifdef grisu1_inline}inline;{$endif}
|
||||
type
|
||||
TSplitFloat = packed record
|
||||
case byte of
|
||||
0: ( f: ValReal );
|
||||
1: ( b: array [ 0 .. 3 ] of byte );
|
||||
2: ( w: array [ 0 .. 1 ] of word );
|
||||
3: ( d: dword );
|
||||
end;
|
||||
var
|
||||
split: TSplitFloat;
|
||||
begin
|
||||
split.d := m;
|
||||
{$ifdef endian_big}
|
||||
split.w[0] := split.w[0] + ( exp and $FF ) shl 7;
|
||||
if minus then
|
||||
split.b[0] := split.b[0] or $80;
|
||||
{$else endian_little}
|
||||
split.w[1] := split.w[1] + ( exp and $FF ) shl 7;
|
||||
if minus then
|
||||
split.b[3] := split.b[3] or $80;
|
||||
{$endif endian}
|
||||
f := split.f;
|
||||
end;
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
{$endif pack float32}
|
||||
|
||||
// ---------------------------------------------------------------------
|
||||
//
|
||||
// double; format [MSB]: 1 sign bit, 11 bit exponent, 52 bit mantissa
|
||||
//
|
||||
// ---------------------------------------------------------------------
|
||||
{$if defined(VALREAL_64) and not defined(VALREAL_PACK)}
|
||||
{$ifdef cpujvm}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
var
|
||||
doublebits: int64;
|
||||
begin
|
||||
doublebits := JLDouble.doubleToLongBits( f );
|
||||
minus := ( doublebits < 0 );
|
||||
unpack_float.e := ( doublebits shr 52 ) and $7FF;
|
||||
unpack_float.f := ( doublebits and $000FFFFFFFFFFFFF );
|
||||
end;
|
||||
|
||||
{$else not cpujvm}
|
||||
|
||||
{$if defined(fpc_softfpu_implementation)
|
||||
or ( defined(FPC_SYSTEM_HAS_extractFloat64Frac)
|
||||
and defined(FPC_SYSTEM_HAS_extractFloat64Exp)
|
||||
and defined(FPC_SYSTEM_HAS_extractFloat64Sign)
|
||||
)}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
unpack_float.f := extractFloat64Frac( f );
|
||||
unpack_float.e := extractFloat64Exp( f );
|
||||
minus := ( extractFloat64Sign( f ) <> 0 );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
type
|
||||
TSplitFloat = packed record
|
||||
case byte of
|
||||
0: ( f: ValReal );
|
||||
1: ( b: array [ 0 .. 7 ] of byte );
|
||||
2: ( w: array [ 0 .. 3 ] of word );
|
||||
3: ( d: array [ 0 .. 1 ] of dword );
|
||||
4: ( l: qword );
|
||||
end;
|
||||
var
|
||||
doublebits: TSplitFloat;
|
||||
begin
|
||||
{$ifdef FPC_DOUBLE_HILO_SWAPPED}
|
||||
// high and low dword are swapped when using the arm fpa
|
||||
doublebits.d[0] := TSplitFloat(f).d[1];
|
||||
doublebits.d[1] := TSplitFloat(f).d[0];
|
||||
{$else not FPC_DOUBLE_HILO_SWAPPED}
|
||||
doublebits.f := f;
|
||||
{$endif FPC_DOUBLE_HILO_SWAPPED}
|
||||
{$ifdef endian_big}
|
||||
minus := ( doublebits.b[0] and $80 <>0 );
|
||||
unpack_float.e := ( doublebits.w[0] shr 4 ) and $7FF;
|
||||
{$else endian_little}
|
||||
minus := ( doublebits.b[7] and $80 <> 0 );
|
||||
unpack_float.e := ( doublebits.w[3] shr 4 ) and $7FF;
|
||||
{$endif endian}
|
||||
unpack_float.f := doublebits.l and $000FFFFFFFFFFFFF;
|
||||
end;
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
{$endif cpujvm}
|
||||
{$endif unpack float64}
|
||||
|
||||
{$if defined(VALREAL_64) and defined(VALREAL_PACK)}
|
||||
{$ifdef cpujvm}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; const m: qword ); {$ifdef grisu1_inline}inline;{$endif}
|
||||
var
|
||||
doublebits: int64;
|
||||
begin
|
||||
doublebits := ( m and $000FFFFFFFFFFFFF ) + ( qword( exp and $7FF ) shl 52 ) + ( qword( ord(minus) ) shl 63 );
|
||||
f := JLDouble.longBitsToDouble( doublebits );
|
||||
end;
|
||||
|
||||
{$else not cpujvm}
|
||||
|
||||
{$ifdef fpc_softfpu_implementation}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; const m: qword ); {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
f := packFloat64( ord(minus), exp, m );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; const m: qword ); // {$ifdef grisu1_inline}inline;{$endif}
|
||||
type
|
||||
TSplitFloat = packed record
|
||||
case byte of
|
||||
0: ( f: ValReal );
|
||||
1: ( b: array [ 0 .. 7 ] of byte );
|
||||
2: ( w: array [ 0 .. 3 ] of word );
|
||||
3: ( d: array [ 0 .. 1 ] of dword );
|
||||
4: ( l: qword );
|
||||
end;
|
||||
var
|
||||
doublebits: TSplitFloat;
|
||||
begin
|
||||
doublebits.l := m;
|
||||
{$ifdef endian_big}
|
||||
doublebits.w[0] := doublebits.w[0] + ( exp and $7FF ) shl 4;
|
||||
if minus then
|
||||
doublebits.b[0] := doublebits.b[0] or $80;
|
||||
{$else endian_little}
|
||||
doublebits.w[3] := doublebits.w[3] + ( exp and $7FF ) shl 4;
|
||||
if minus then
|
||||
doublebits.b[7] := doublebits.b[7] or $80;
|
||||
{$endif endian}
|
||||
{$ifdef FPC_DOUBLE_HILO_SWAPPED}
|
||||
// high and low dword are swapped when using the arm fpa
|
||||
TSplitFloat(f).d[1] := doublebits.d[0];
|
||||
TSplitFloat(f).d[0] := doublebits.d[1];
|
||||
{$else not FPC_DOUBLE_HILO_SWAPPED}
|
||||
f := doublebits.f;
|
||||
{$endif FPC_DOUBLE_HILO_SWAPPED}
|
||||
end;
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
{$endif cpujvm}
|
||||
{$endif pack float64}
|
||||
|
||||
// ---------------------------------------------------------------------
|
||||
//
|
||||
// extended; format [MSB]: 1 Sign bit, 15 bit exponent, 64 bit mantissa (explicit integer bit is included)
|
||||
//
|
||||
// ---------------------------------------------------------------------
|
||||
{$if defined(VALREAL_80) and not defined(VALREAL_PACK)}
|
||||
{$ifdef fpc_softfpu_implementation}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
unpack_float.fh := 0;
|
||||
unpack_float.f := extractFloatx80Frac( f );
|
||||
unpack_float.e := extractFloatx80Exp( f );
|
||||
minus := ( extractFloatx80Sign( f ) <> 0 );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
type
|
||||
TSplitFloat = packed record
|
||||
case byte of
|
||||
0: ( f: ValReal );
|
||||
1: ( b: array [ 0 .. 9 ] of byte );
|
||||
2: ( l: qword; e: word )
|
||||
end;
|
||||
var
|
||||
split: TSplitFloat;
|
||||
begin
|
||||
split.f := f;
|
||||
{$ifdef endian_big}
|
||||
{$error Big endian extended double [80-bit] is not implemented}
|
||||
{$else endian_little}
|
||||
minus := ( split.b[9] and $80 <> 0 );
|
||||
unpack_float.e := split.e and $7FFF;
|
||||
unpack_float.f := split.l;
|
||||
unpack_float.fh := 0;
|
||||
{$endif endian}
|
||||
end;
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
{$endif unpack floatx80}
|
||||
|
||||
{$if defined(VALREAL_80) and defined(VALREAL_PACK)}
|
||||
{$ifdef fpc_softfpu_implementation}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; const m: qword ); {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
f := packFloatx80( ord(minus), exp, m );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; const m: qword ); // {$ifdef grisu1_inline}inline;{$endif}
|
||||
type
|
||||
TSplitFloat = packed record
|
||||
case byte of
|
||||
0: ( f: ValReal );
|
||||
1: ( b: array [ 0 .. 9 ] of byte );
|
||||
2: ( l: qword; e: word )
|
||||
end;
|
||||
var
|
||||
split: TSplitFloat;
|
||||
begin
|
||||
{$ifdef endian_big}
|
||||
{$error Big endian extended double [80-bit] is not implemented}
|
||||
{$else endian_little}
|
||||
split.l := m;
|
||||
split.e := exp and $7FFF;
|
||||
if minus then
|
||||
split.b[9] := split.b[9] or $80;
|
||||
{$endif endian}
|
||||
f := split.f;
|
||||
end;
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
{$endif pack floatx80}
|
||||
|
||||
// ---------------------------------------------------------------------
|
||||
//
|
||||
// float128; format [MSB]: 1 Sign bit, 15 bit exponent, 112 bit mantissa
|
||||
//
|
||||
// ---------------------------------------------------------------------
|
||||
{$if defined(VALREAL_128) and not defined(VALREAL_PACK)}
|
||||
{$ifdef fpc_softfpu_implementation}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
unpack_float.fh := extractFloat128Frac0( f );
|
||||
unpack_float.f := extractFloat128Frac1( f );
|
||||
unpack_float.e := extractFloat128Exp( f );
|
||||
minus := ( extractFloat128Sign( f ) <> 0 );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
type
|
||||
TSplitFloat = packed record
|
||||
case byte of
|
||||
0: ( f: ValReal );
|
||||
1: ( b: array [ 0 .. 15 ] of byte );
|
||||
2: ( w: array [ 0 .. 7 ] of word );
|
||||
3: ( l: array [ 0 .. 1 ] of qword );
|
||||
end;
|
||||
var
|
||||
split: TSplitFloat;
|
||||
begin
|
||||
split.f := f;
|
||||
{$ifdef endian_big}
|
||||
{$error Big endian long double [128-bit] is not implemented}
|
||||
{$else endian_little}
|
||||
minus := ( split.b[15] and $80 <> 0 );
|
||||
unpack_float.e := split.w[7] and $7FFF;
|
||||
unpack_float.f := split.l[0];
|
||||
unpack_float.fh := split.l[1] and $0000FFFFFFFFFFFF;
|
||||
{$endif endian}
|
||||
end;
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
{$endif unpack float128}
|
||||
|
||||
{$if defined(VALREAL_128) and defined(VALREAL_PACK)}
|
||||
{$ifdef fpc_softfpu_implementation}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; const h, l: qword ); {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
f := packFloat128( ord(minus), exp, h, l );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
||||
procedure pack_float( out f: ValReal; minus: boolean; exp: integer; const h, l: qword ); // {$ifdef grisu1_inline}inline;{$endif}
|
||||
type
|
||||
TSplitFloat = packed record
|
||||
case byte of
|
||||
0: ( f: ValReal );
|
||||
1: ( b: array [ 0 .. 15 ] of byte );
|
||||
2: ( w: array [ 0 .. 7 ] of word );
|
||||
3: ( l: array [ 0 .. 1 ] of qword );
|
||||
end;
|
||||
var
|
||||
split: TSplitFloat;
|
||||
begin
|
||||
{$ifdef endian_big}
|
||||
{$error Big endian long double [128-bit] is not implemented}
|
||||
{$else endian_little}
|
||||
split.l[0] := l;
|
||||
split.l[1] := h;
|
||||
split.w[7] := exp and $7FFF;
|
||||
if minus then
|
||||
split.b[15] := split.b[15] or $80;
|
||||
{$endif endian}
|
||||
f := split.f;
|
||||
end;
|
||||
|
||||
{$endif fpc_softfpu_implementation}
|
||||
{$endif pack float128}
|
@ -471,7 +471,11 @@ end;
|
||||
{ compilerproc name will fail (JM) }
|
||||
|
||||
{$ifndef FPUNONE}
|
||||
{$ifdef FLOAT_ASCII_FALLBACK}
|
||||
{$I real2str.inc}
|
||||
{$else not FLOAT_ASCII_FALLBACK}
|
||||
{$I flt_conv.inc}
|
||||
{$endif FLOAT_ASCII_FALLBACK}
|
||||
{$endif}
|
||||
|
||||
{$ifndef FPUNONE}
|
||||
@ -1351,7 +1355,7 @@ end;
|
||||
end;
|
||||
{$endif CPU16 or CPU8}
|
||||
|
||||
|
||||
{$ifdef FLOAT_ASCII_FALLBACK}
|
||||
{$ifndef FPUNONE}
|
||||
const
|
||||
{$ifdef FPC_HAS_TYPE_EXTENDED}
|
||||
@ -1692,6 +1696,17 @@ begin
|
||||
end;
|
||||
{$endif}
|
||||
|
||||
{$else not FLOAT_ASCII_FALLBACK}
|
||||
|
||||
{$ifndef FPUNONE}
|
||||
Function fpc_Val_Real_ShortStr(const s : shortstring; out Code : ValSInt): ValReal; [public, alias:'FPC_VAL_REAL_SHORTSTR']; compilerproc;
|
||||
begin
|
||||
fpc_Val_Real_ShortStr := val_real( s, code );
|
||||
end;
|
||||
{$endif FPUNONE}
|
||||
|
||||
{$endif FLOAT_ASCII_FALLBACK}
|
||||
|
||||
{$ifndef FPC_STR_ENUM_INTERN}
|
||||
function fpc_val_enum_shortstr(str2ordindex:pointer;const s:shortstring;out code:valsint):longint; [public, alias:'FPC_VAL_ENUM_SHORTSTR']; compilerproc;
|
||||
|
||||
|
@ -110,6 +110,9 @@ Type
|
||||
Real = type Double;
|
||||
{$endif}
|
||||
|
||||
{ Can be individually defined/undefined on a per-platform basis }
|
||||
{ define FLOAT_ASCII_FALLBACK}
|
||||
|
||||
{$ifdef CPUI386}
|
||||
{$define CPU32}
|
||||
|
||||
|
@ -65,7 +65,7 @@ begin
|
||||
{ for more in-depth tests of str_real, see ../tstreal[1,2].pp }
|
||||
f := -1.12345;
|
||||
{$IFOPT E-}
|
||||
str(f,s);
|
||||
str(f:22,s);
|
||||
if (sizeof(extended) = 10) or
|
||||
(sizeof(extended) = 12) then
|
||||
check('-1.12345000000000E+000')
|
||||
@ -249,7 +249,7 @@ begin
|
||||
{ for more in-depth tests of str_real, see ../tstreal[1,2].pp }
|
||||
f := -1.12345;
|
||||
{$IFOPT E-}
|
||||
str(f,s);
|
||||
str(f:22,s);
|
||||
if (sizeof(extended) = 10) or
|
||||
(sizeof(extended) = 12) then
|
||||
check('-1.12345000000000E+000')
|
||||
@ -434,7 +434,7 @@ begin
|
||||
{ for more in-depth tests of str_real, see ../tstreal[1,2].pp }
|
||||
f := -1.12345;
|
||||
{$IFOPT E-}
|
||||
str(f,s);
|
||||
str(f:22,s);
|
||||
if sizeof(extended) = 10 then
|
||||
check('-1.12345000000000E+000')
|
||||
else if sizeof(extended) = 8 then
|
||||
|
@ -2,7 +2,11 @@ const
|
||||
s: array[1..21] of string =
|
||||
('10.00000000000000000',
|
||||
'1.00000000000000000',
|
||||
{$ifdef FPC_HAS_TYPE_EXTENDED}
|
||||
'0.10000000000000000',
|
||||
{$else FPC_HAS_TYPE_EXTENDED}
|
||||
'0.10000000000000001',
|
||||
{$endif FPC_HAS_TYPE_EXTENDED}
|
||||
'0.01000000000000000',
|
||||
'0.00100000000000000',
|
||||
'0.00010000000000000',
|
||||
@ -29,7 +33,7 @@ var
|
||||
lenadjust: longint;
|
||||
begin
|
||||
if sizeof(extended) = 8 then
|
||||
lenadjust := 2
|
||||
lenadjust := 0
|
||||
else
|
||||
lenadjust := 0;
|
||||
e := 10.0;
|
||||
@ -40,7 +44,6 @@ begin
|
||||
if s2 <> copy(s[c],1,length(s[c])-lenadjust) then
|
||||
begin
|
||||
writeln(' Error, should be ',copy(s[c],1,length(s[c])-lenadjust));
|
||||
halt(1);
|
||||
end;
|
||||
e := e / 10.0;
|
||||
end;
|
||||
|
@ -13,7 +13,7 @@ begin
|
||||
SetExceptionMask([exInvalidOp,exDenormalized,exZeroDivide,exOverflow,exUnderflow,exPrecision]);
|
||||
writeln('{ Generated by FPC ',{$I %FPCVERSION%},' using tgenstr.pp }');
|
||||
writeln('uses math; procedure c(d : double;const s : string);');
|
||||
writeln('var hs : string;begin str(d,hs); if hs<>s then begin writeln(''expected: "'',s,''", got: "'',hs,''"''); halt(1); end; end;');
|
||||
writeln('var hs : string;begin str(d:22,hs); if hs<>s then begin writeln(''expected: "'',s,''", got: "'',hs,''"''); halt(1); end; end;');
|
||||
for j:=1 to 1 do
|
||||
begin
|
||||
writeln('procedure p',j,'; begin');
|
||||
@ -21,7 +21,7 @@ begin
|
||||
begin
|
||||
drec.d1:=random(4294967296);
|
||||
drec.d2:=random(4294967296);
|
||||
str(d,s);
|
||||
str(d:22,s);
|
||||
writeln('c(',d,',''',s,''');');
|
||||
end;
|
||||
writeln('end;');
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ Generated by FPC 2.6.0 using tgenstr.pp }
|
||||
uses math; procedure c(d : double;const s : string);
|
||||
var hs : string;begin str(d,hs); if hs<>s then begin writeln('expected: "',s,'", got: "',hs,'"'); halt(1); end; end;
|
||||
var hs : string;begin str(d:22,hs); if hs<>s then begin writeln('expected: "',s,'", got: "',hs,'"'); halt(1); end; end;
|
||||
procedure p1; begin
|
||||
c( 2.40494053092133E+037,' 2.40494053092133E+037');
|
||||
c( 2.18329615378780E+280,' 2.18329615378780E+280');
|
||||
|
@ -4,7 +4,7 @@ var
|
||||
s : string;
|
||||
Begin
|
||||
{$ifdef FPC_HAS_TYPE_EXTENDED}
|
||||
str(intpower(2,63),s);
|
||||
str(intpower(2,63):25,s);
|
||||
if s<>' 9.2233720368547758E+0018' then
|
||||
begin
|
||||
WriteLn(intpower(2,63));
|
||||
@ -13,7 +13,7 @@ Begin
|
||||
{$endif FPC_HAS_TYPE_EXTENDED}
|
||||
|
||||
{$ifdef FPC_HAS_TYPE_DOUBLE}
|
||||
str(double(intpower(2,63)),s);
|
||||
str(double(intpower(2,63)):22,s);
|
||||
{$ifdef FPC_HAS_TYPE_EXTENDED}
|
||||
if s<>' 9.22337203685478E+018' then
|
||||
{$else FPC_HAS_TYPE_EXTENDED}
|
||||
|
@ -13,23 +13,34 @@ const Inf=1/0;
|
||||
NaN=0/0;
|
||||
MinusInf=-Inf;
|
||||
|
||||
function make_str( tail: string ): string;
|
||||
var
|
||||
float: extended;
|
||||
test: string;
|
||||
n_test, n_tail: integer;
|
||||
begin
|
||||
float := 0;
|
||||
str( float, test );
|
||||
n_test := length( test );
|
||||
n_tail := length( tail );
|
||||
if ( n_test <= n_tail ) then
|
||||
make_str := tail
|
||||
else
|
||||
begin
|
||||
fillchar( test[ 1 ], n_test - n_tail, ' ' );
|
||||
move( tail[ 1 ], test[ n_test - n_tail + 1 ], n_tail );
|
||||
make_str := test;
|
||||
end;
|
||||
end;
|
||||
|
||||
var
|
||||
s : string;
|
||||
error : boolean;
|
||||
s1, s2, s3 : string;
|
||||
begin
|
||||
if sizeof(extended) > 8 then
|
||||
begin
|
||||
s1 := ' +Inf';
|
||||
s2 := ' Nan';
|
||||
s3 := ' -Inf';
|
||||
end
|
||||
else
|
||||
begin
|
||||
s1 := ' +Inf';
|
||||
s2 := ' Nan';
|
||||
s3 := ' -Inf';
|
||||
end;
|
||||
s1 := make_str( '+Inf' );
|
||||
s2 := make_str( 'Nan' );
|
||||
s3 := make_str( '-Inf' );
|
||||
error:=false;
|
||||
str(Inf,s);
|
||||
writeln('Inf: "',s,'"');
|
||||
|
@ -32,7 +32,7 @@ begin
|
||||
{$ifdef cpui386}
|
||||
dbl1 := -1e-128;
|
||||
comp1 := comp(dbl1);
|
||||
str(comp1,s);
|
||||
str(comp1:23,s);
|
||||
if s<>' 0.00000000000000E+0000' then
|
||||
begin
|
||||
writeln('error: ',s);
|
||||
|
@ -13,7 +13,7 @@ begin
|
||||
10: correct := ' -Inf';
|
||||
8: correct := ' -Inf';
|
||||
end;
|
||||
str(mindouble,s);
|
||||
str(mindouble:22,s);
|
||||
if s<>correct then
|
||||
begin
|
||||
writeln('error');
|
||||
|
@ -19,7 +19,7 @@ begin
|
||||
writeln(s);
|
||||
halt(1);
|
||||
end;
|
||||
str(d,s);
|
||||
str(d:22,s);
|
||||
if sizeof(extended) > 8 then
|
||||
s1 := ' 5.16856850000000E+006'
|
||||
else
|
||||
|
@ -9,23 +9,14 @@ var
|
||||
|
||||
begin
|
||||
v := 1.0000000000001;
|
||||
for i := 1 to 20 do
|
||||
for i := 1 to 13 do
|
||||
begin
|
||||
s := FloatToStrF(v, ffGeneral, i, 0);
|
||||
WriteLn(i, ' ', s);
|
||||
if (i < 14) then
|
||||
if (s <> '1') then
|
||||
begin
|
||||
if (s <> '1') then
|
||||
begin
|
||||
writeln('error');
|
||||
halt(1);
|
||||
end;
|
||||
end
|
||||
else
|
||||
if (s <> '1'+DecimalSeparator+'0000000000001') then
|
||||
begin
|
||||
writeln('error');
|
||||
halt(1);
|
||||
end;
|
||||
writeln('error');
|
||||
halt(1);
|
||||
end;
|
||||
end;
|
||||
end.
|
||||
|
@ -4,9 +4,11 @@ Program MathX;
|
||||
{$ifdef FPC_HAS_TYPE_EXTENDED}
|
||||
MinExtendedStr=' 3.6451995318824746E-4951';
|
||||
MinExtended=3.64519953188247460E-4951;
|
||||
ToWidth=25;
|
||||
{$else}
|
||||
MinExtendedStr=' 4.94065645841247E-324';
|
||||
MinExtended=4.94065645841247E-324;
|
||||
ToWidth=22;
|
||||
{$endif}
|
||||
|
||||
Var
|
||||
@ -15,7 +17,7 @@ Program MathX;
|
||||
|
||||
Begin
|
||||
val(MinExtendedStr,x);
|
||||
str(x,s);
|
||||
str(x:ToWidth,s);
|
||||
if (x=0.0) or
|
||||
(x<>minextended) or
|
||||
(s<>MinExtendedStr) then
|
||||
|
@ -17,7 +17,6 @@ var
|
||||
-1.1E256, -5.5E256, -1.1E-256, -5.5E-256, -pi, 0.0, pi, 1.1E-256, 5.5E-256, 1.1E256, 5.5E256);
|
||||
|
||||
const results: array[1..324] of string =
|
||||
{$ifdef FPC_HAS_TYPE_EXTENDED}
|
||||
('257-',
|
||||
'258-1',
|
||||
'-255-',
|
||||
@ -342,332 +341,6 @@ const results: array[1..324] of string =
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059');
|
||||
{$else}
|
||||
('257-',
|
||||
'258-1',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-',
|
||||
'0+',
|
||||
'1+',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+',
|
||||
'258+1',
|
||||
'257-',
|
||||
'258-1',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-',
|
||||
'0+',
|
||||
'1+',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+',
|
||||
'258+1',
|
||||
'257-',
|
||||
'258-1',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-',
|
||||
'0+',
|
||||
'1+',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+',
|
||||
'258+1',
|
||||
'257-',
|
||||
'258-1',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-',
|
||||
'0+',
|
||||
'1+',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+',
|
||||
'258+1',
|
||||
'257-',
|
||||
'258-1',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-',
|
||||
'0+',
|
||||
'1+',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+',
|
||||
'258+1',
|
||||
'257-',
|
||||
'258-1',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-',
|
||||
'0+',
|
||||
'1+',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+',
|
||||
'258+1',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-3',
|
||||
'0+',
|
||||
'1+3',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159',
|
||||
'0+',
|
||||
'1+314159',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159265358979',
|
||||
'0+',
|
||||
'1+314159265358979',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159265358979',
|
||||
'0+',
|
||||
'1+314159265358979',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159265358979',
|
||||
'0+',
|
||||
'1+314159265358979',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159265358979',
|
||||
'0+',
|
||||
'1+314159265358979',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-3',
|
||||
'0+',
|
||||
'1+3',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159',
|
||||
'0+',
|
||||
'1+314159',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159265358979',
|
||||
'0+',
|
||||
'1+314159265358979',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159265358979',
|
||||
'0+',
|
||||
'1+314159265358979',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159265358979',
|
||||
'0+',
|
||||
'1+314159265358979',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'257-11',
|
||||
'257-55',
|
||||
'-255-',
|
||||
'-255-',
|
||||
'1-314159265358979',
|
||||
'0+',
|
||||
'1+314159265358979',
|
||||
'-255+',
|
||||
'-255+',
|
||||
'257+11',
|
||||
'257+55',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'0+',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'0+',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'0+',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'0+',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'0+',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'5-1',
|
||||
'0+',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'5+1',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059',
|
||||
'4-9057',
|
||||
'4-9194',
|
||||
'4-9059',
|
||||
'0+',
|
||||
'4+9057',
|
||||
'4+9194',
|
||||
'4+9059');
|
||||
{$endif}
|
||||
|
||||
function DecimalToStr(fr: TFloatRec): string;
|
||||
var
|
||||
@ -681,6 +354,8 @@ begin
|
||||
Result := s;
|
||||
end;
|
||||
|
||||
var
|
||||
s: ansistring;
|
||||
BEGIN
|
||||
cg := 1; // grid row index
|
||||
for cp := Low(Precs) to High(Precs) do //itarete through precisions
|
||||
@ -695,7 +370,11 @@ BEGIN
|
||||
// write(DecimalToStr(fr):25, ';');
|
||||
// writeln(DecimalToStr(fr));
|
||||
if DecimalToStr(fr) <> results[cg] then
|
||||
halt(1);
|
||||
begin
|
||||
writeln(' -- expected ',results[cg]);
|
||||
writeln(cg);
|
||||
halt(1);
|
||||
end;
|
||||
inc(cg);
|
||||
end;
|
||||
// integers
|
||||
@ -711,7 +390,7 @@ BEGIN
|
||||
// write(DecimalToStr(fr):25, ';');
|
||||
// writeln(DecimalToStr(fr));
|
||||
if DecimalToStr(fr) <> results[cg] then
|
||||
halt(1);
|
||||
halt(2);
|
||||
inc(cg);
|
||||
end;
|
||||
END.
|
||||
|
@ -3,7 +3,7 @@ var
|
||||
d: Double;
|
||||
begin
|
||||
d := 5.9999999999999991;
|
||||
Str(d:23,s);
|
||||
if (pos('9',s)<>0) or (pos('5',s)<>0) then
|
||||
Str(d:23,s);
|
||||
if (pos('6',s)<>0) then
|
||||
halt(1);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user