summaryrefslogtreecommitdiff
path: root/rtl/inc/ufloatx80.pp
blob: 7927bca19dcbbefa2326eef14b1ab41e6671e011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
    This file is part of the Free Pascal run time library.
    Copyright (c) 2007 by the FPC development time

    Implements overloaded operators and misc. functions to
    provide a floatx80 type

    See the file COPYING.FPC, included in this distribution,
    for details about the copyright.

    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.

 **********************************************************************}
{$inline on}
unit ufloatx80;

  interface

    uses
      sfpux80;

    type
      floatx80 = sfpux80.floatx80;

    operator+ (const f1,f2 : floatx80) result : floatx80;inline;
    operator* (const f1,f2 : floatx80) result : floatx80;inline;
    operator- (const f1,f2 : floatx80) result : floatx80;inline;
    operator/ (const f1,f2 : floatx80) result : floatx80;inline;

    operator :=(const source : double) dest : floatx80;inline;

    operator :=(const source : floatx80) dest : double;inline;

    procedure DumpFloatx80(const f : floatx80);

  implementation

    procedure DumpFloatx80(const f : floatx80);
      type
        ta = packed array[0..SizeOf(floatx80)-1] of byte;
      var
        i : longint;
      begin
        for i:=SizeOf(floatx80)-1 downto 0 do
          begin
            write(hexstr(ta(f)[i],2));
            if i<15 then
              write(' ');
          end;
      end;


    operator+ (const f1,f2 : floatx80) result : floatx80;inline;
      begin
        result:=floatx80_add(f1,f2);
      end;


    operator* (const f1,f2 : floatx80) result : floatx80;inline;
      begin
        result:=floatx80_mul(f1,f2);
      end;


    operator- (const f1,f2 : floatx80) result : floatx80;inline;
      begin
        result:=floatx80_sub(f1,f2);
      end;


    operator/ (const f1,f2 : floatx80) result : floatx80;inline;
      begin
        result:=floatx80_div(f1,f2);
      end;


    operator :=(const source : double) dest : floatx80;inline;
      begin
        dest:=float64_to_floatx80(float64(source));
      end;


    operator :=(const source : floatx80) dest : double;inline;
      begin
        dest:=double(floatx80_to_float64(source));
      end;


end.