File:  [gforth] / gforth / float.fs
Revision 1.4: download - view: text, annotated - select for diffs
Wed Jun 1 10:02:22 1994 UTC (29 years, 9 months ago) by pazsan
Branches: MAIN
CVS tags: HEAD
factored out NaN and infinity handling

    1: \ High level floating point                            14jan94py
    2: 
    3: : faligned ( addr -- f-addr )
    4:   [ 1 floats 1- ] Literal + [ -1 floats ] Literal and ;
    5: 
    6: : falign ( -- )
    7:   here dup faligned swap
    8:   ?DO  bl c,  LOOP ;
    9: 
   10: : f, ( f -- )  here 1 floats allot f! ;
   11: 
   12: \ !! have create produce faligned pfas
   13: : fconstant  ( r -- )
   14:   falign here f,  Create A,
   15:   DOES>  @ f@ ;
   16: 
   17: : fvariable
   18:   falign here 0. d>f f, AConstant ;
   19: 
   20: : fdepth  ( -- n )  f0 @ fp@ - [ 1 floats ] Literal / ;
   21: 
   22: : FLit ( -- r )  r> faligned dup f@ float+ >r ;
   23: : FLiteral ( r -- )  postpone FLit  falign f, ;  immediate
   24: 
   25: &16 Value precision
   26: : set-precision  to precision ;
   27: 
   28: : scratch ( r -- addr len )
   29:   pad precision - precision ;
   30: 
   31: : zeros ( n -- )   0 max 0 ?DO  '0 emit  LOOP ;
   32: 
   33: : -zeros ( addr u -- addr' u' )
   34:   BEGIN  dup  WHILE  1- 2dup + c@ '0 <>  UNTIL  1+  THEN ;
   35: 
   36: : f$ ( f -- n )  scratch represent 0=
   37:   IF  2drop  scratch 3 min type  rdrop  EXIT  THEN
   38:   IF  '- emit  THEN ;
   39: 
   40: : f.  ( r -- )  f$ dup >r 0<
   41:   IF    '0 emit
   42:   ELSE  scratch r@ min type  r@ precision - zeros  THEN
   43:   '. emit r@ negate zeros
   44:   scratch r> 0 max /string 0 max -zeros type space ;
   45: \ I'm afraid this does not really implement ansi semantics wrt precision.
   46: \ Shouldn't precision indicate the number of places shown after the point?
   47: 
   48: : fe. ( r -- )  f$ 1- s>d 3 fm/mod 3 * >r 1+ >r
   49:   scratch r@ min type '. emit  scratch r> /string type
   50:   'E emit r> . ;
   51: 
   52: : fs. ( r -- )  f$ 1-
   53:   scratch over c@ emit '. emit 1 /string type
   54:   'E emit . ;
   55: 
   56: : fnumber ( string -- r / )
   57:   ?dup IF  dup count >float 0=
   58:            IF    defers notfound
   59: 	   ELSE  drop state @
   60: 	         IF  postpone FLiteral  THEN  THEN  THEN ;
   61: 
   62: ' fnumber IS notfound
   63: 
   64: 1e0 fasin 2e0 f* fconstant pi

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>