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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
|
\ fsl-utilg.fth An auxiliary file for the Forth Scientific Library
\ For GForth
\
\ contains commonly needed definitions.
\ Revisions:
\ 2003-11-16 Fixed bug in }}, added }}FCOPY KM
\ 2004-02-12 Applied fixes to } and }} given by Marcel Hendrix
\
\ dxor, dor, dand double xor, or, and
\ sd* single * double = double_product
\ v: defines use( & For defining and settting execution vectors
\ % Parse next token as a FLOAT
\ S>F F>S Conversion between (single) integer and float
\ F, Store FLOAT at (aligned) HERE
\ F= Test for floating point equality
\ -FROT Reverse the effect of FROT
\ F2* F2/ Multiply and divide float by two
\ F2DUP FDUP two floats
\ F2DROP FDROP two floats
\ INTEGER, DOUBLE, FLOAT For setting up ARRAY types
\ ARRAY DARRAY For declaring static and dynamic arrays
\ } For getting an ARRAY or DARRAY element address
\ &! For storing ARRAY aliases in a DARRAY
\ PRINT-WIDTH The number of elements per line for printing arrays
\ }FPRINT Print out a given array
\ Matrix For declaring a 2-D array
\ }} gets a Matrix element address
\ Public: Private: Reset_Search_Order controls the visibility of words
\ frame unframe sets up/removes a local variable frame
\ a b c d e f g h local FVARIABLE values
\ &a &b &c &d &e &f &g &h local FVARIABLE addresses
\ This code conforms with ANS requiring:
\ 1. The Floating-Point word set
\ 2. The words umd* umd/mod and d* are implemented
\ for ThisForth in the file umd.fo
\ This code is released to the public domain Everett Carter July 1994
\ CR .( FSL-UTILG.FTH $Revision: 1.2 $ $Date: 2008/06/01 12:18:23 $ EFC )
CR .( FSL-UTIL V1.17c 12 February 2004 EFC, KM )
\ ================= compilation control ==============================
\ for control of conditional compilation of test code
FALSE VALUE TEST-CODE?
FALSE VALUE ?TEST-CODE \ obsolete, for backward compatibility
\ for control of conditional compilation of Dynamic memory
TRUE CONSTANT HAS-MEMORY-WORDS?
\ ====================================================================
\ FSL NonANS words
[UNDEFINED] S>F [IF] : S>F S>D D>F ; [THEN]
\ Words to control nested includes. Use as follows:
\ C" filename" ~INCLUDED [IF]
\ FILE: filename
\ ......the file contents...
\ [THEN]
TRUE VALUE verbose_file? \ true to echo comment string on load
WORDLIST CONSTANT <file-list>
\ file name in <file-list>
: FILE: <file-list> SET-CURRENT CREATE FORTH DEFINITIONS
[CHAR] ) WORD
verbose_file? IF COUNT DUP IF CR TYPE ELSE 2DROP THEN
ELSE DROP THEN
;
\ check for included file name
: ~INCLUDED COUNT <file-list> SEARCH-WORDLIST
IF DROP FALSE ELSE TRUE THEN
;
WORDLIST CONSTANT hidden-wordlist
: Reset-Search-Order
FORTH-WORDLIST 1 SET-ORDER
FORTH-WORDLIST SET-CURRENT
;
: Public:
FORTH-WORDLIST hidden-wordlist 2 SET-ORDER
FORTH-WORDLIST SET-CURRENT
;
: Private:
FORTH-WORDLIST hidden-wordlist 2 SET-ORDER
hidden-wordlist SET-CURRENT
;
: Reset_Search_Order Reset-Search-Order ; \ these are
\ : reset-search-order Reset-Search-Order ; \ for backward compatibility
CREATE fsl-pad 84 CHARS ( or more ) ALLOT
: dxor ( d1 d2 -- d ) \ double xor
ROT XOR >R XOR R>
;
: dor ( d1 d2 -- d ) \ double or
ROT OR >R OR R>
;
: dand ( d1 d2 -- d ) \ double and
ROT AND >R AND R>
;
\ : >= < 0= ; \ greater than or equal to
\ : <= > 0= ; \ less than or equal to
\ single * double = double
: sd* ( multiplicand multiplier_double -- product_double )
2 PICK * >R UM* R> +
;
: CELL- [ 1 CELLS ] LITERAL - ; \ backup one cell
0 VALUE TYPE-ID \ for building structures
FALSE VALUE STRUCT-ARRAY?
\ for dynamically allocating a structure or array
TRUE VALUE is-static? \ TRUE for statically allocated structs and arrays
: dynamic ( -- ) FALSE TO is-static? ;
\ size of a regular integer
1 CELLS CONSTANT INTEGER
\ size of a double integer
2 CELLS CONSTANT DOUBLE
\ size of a regular float
\ 1 FLOATS CONSTANT FLOAT
\ size of a pointer (for readability)
1 CELLS CONSTANT POINTER
: % BL WORD COUNT >FLOAT 0= ABORT" NAN"
STATE @ IF POSTPONE FLITERAL THEN ; IMMEDIATE
\ 3.1415926536E0 FCONSTANT PI
1.0E0 FCONSTANT F1.0
\ 1-D array definition
\ -----------------------------
\ | cell_size | data area |
\ -----------------------------
: MARRAY ( n cell_size -- | -- addr ) \ monotype array
CREATE
DUP , * ALLOT
DOES> CELL+
;
\ -----------------------------
\ | id | cell_size | data area |
\ -----------------------------
: SARRAY ( n cell_size -- | -- id addr ) \ structure array
CREATE
TYPE-ID ,
DUP , * ALLOT
DOES> DUP @ SWAP [ 2 CELLS ] LITERAL +
;
: ARRAY
STRUCT-ARRAY? IF SARRAY FALSE TO STRUCT-ARRAY?
ELSE MARRAY
THEN
;
\ : Array ARRAY ;
\ word for creation of a dynamic array (no memory allocated)
\ Monotype
\ ------------------------
\ | data_ptr | cell_size |
\ ------------------------
: DMARRAY ( cell_size -- ) CREATE 0 , ,
DOES>
@ CELL+
;
\ Structures
\ ----------------------------
\ | data_ptr | cell_size | id |
\ ----------------------------
: DSARRAY ( cell_size -- ) CREATE 0 , , TYPE-ID ,
DOES>
DUP [ 2 CELLS ] LITERAL + @ SWAP
@ CELL+
;
: DARRAY ( cell_size -- )
STRUCT-ARRAY? IF DSARRAY FALSE TO STRUCT-ARRAY?
ELSE DMARRAY
THEN
;
\ word for aliasing arrays,
\ typical usage: a{ & b{ &! sets b{ to point to a{'s data
: &! ( addr_a &b -- )
SWAP CELL- SWAP >BODY !
;
: } ( addr n -- addr[n]) \ word that fetches 1-D array addresses
OVER CELL- @
* SWAP + ( ALIGNED FALIGNED )
\ ^^^^^^ commented out per bug fix of Marcel Hendrix 2/12/04
;
VARIABLE print-width 6 print-width !
: }fprint ( n addr -- ) \ print n elements of a float array
SWAP 0 DO I print-width @ MOD 0= I AND IF CR THEN
DUP I } F@ F. LOOP
DROP
;
: }iprint ( n addr -- ) \ print n elements of an integer array
SWAP 0 DO I print-width @ MOD 0= I AND IF CR THEN
DUP I } @ . LOOP
DROP
;
: }fcopy ( 'src 'dest n -- ) \ copy one array into another
0 DO
OVER I } F@
DUP I } F!
LOOP
2DROP
;
\ 2-D array definition,
\ Monotype
\ ------------------------------
\ | m | cell_size | data area |
\ ------------------------------
: MMATRIX ( n m size -- ) \ defining word for a 2-d matrix
CREATE
OVER , DUP ,
* * ALLOT
DOES> [ 2 CELLS ] LITERAL +
;
\ Structures
\ -----------------------------------
\ | id | m | cell_size | data area |
\ -----------------------------------
: SMATRIX ( n m size -- ) \ defining word for a 2-d matrix
CREATE TYPE-ID ,
OVER , DUP ,
* * ALLOT
DOES> DUP @ TO TYPE-ID
[ 3 CELLS ] LITERAL +
;
: MATRIX ( n m size -- ) \ defining word for a 2-d matrix
STRUCT-ARRAY? IF SMATRIX FALSE TO STRUCT-ARRAY?
ELSE MMATRIX
THEN
;
: DMATRIX ( size -- ) DARRAY ;
: }} ( addr i j -- addr[i][j] ) \ word to fetch 2-D array addresses
\ 2>R \ indices to return stack temporarily
\ ^^^ above is bug in v1.17; replaced with line below KM
>R >R
DUP CELL- CELL- 2@ \ &a[0][0] size m
R> * R> + *
+
( ALIGNED FALIGNED ) \ <-- MH bug fix 2/12/04
;
: }}fprint ( n m addr -- ) \ print nXm elements of a float 2-D array
ROT ROT SWAP 0 DO
DUP 0 DO
OVER J I }} F@ F.
LOOP
CR
LOOP
2DROP
;
: }}fcopy ( 'src 'dest n m -- ) \ copy n�m elements of 2-D array src to dest
SWAP 0 DO
DUP 0 DO
2 PICK J I }} F@
OVER J I }} F!
LOOP
LOOP
DROP 2DROP
;
\ function vector definition
\ : noop ;
: v: CREATE ['] noop , DOES> @ EXECUTE ;
: defines ' >BODY STATE @ IF POSTPONE LITERAL POSTPONE !
ELSE ! THEN ; IMMEDIATE
: use( STATE @ IF POSTPONE ['] ELSE ' THEN ; IMMEDIATE
: & POSTPONE use( ; IMMEDIATE
(
CODE for local fvariables, loosely based upon Wil Baden's idea presented
at FORML 1992.
The idea is TO have a fixed number OF variables with fixed names.
I believe the CODE shown HERE will work with any, CASE insensitive,
ANS Forth.
i/tForth users are advised TO use FLOCALS| instead.
example: : test 2e 3e FRAME| a b | a F. b F. |FRAME ;
test <cr> 3.0000 2.0000 ok
PS: Don't FORGET TO use |FRAME before an EXIT .
)
8 CONSTANT /flocals
: (frame) ( n -- ) FLOATS ALLOT ;
: FRAME|
0 >R
BEGIN BL WORD COUNT 1 =
SWAP C@ [CHAR] | =
AND 0=
WHILE POSTPONE F, R> 1+ >R
REPEAT
/FLOCALS R> - DUP 0< ABORT" too many flocals"
POSTPONE LITERAL POSTPONE (frame) ; IMMEDIATE
: |FRAME ( -- ) [ /FLOCALS NEGATE ] LITERAL (FRAME) ;
: &h HERE [ 1 FLOATS ] LITERAL - ;
: &g HERE [ 2 FLOATS ] LITERAL - ;
: &f HERE [ 3 FLOATS ] LITERAL - ;
: &e HERE [ 4 FLOATS ] LITERAL - ;
: &d HERE [ 5 FLOATS ] LITERAL - ;
: &c HERE [ 6 FLOATS ] LITERAL - ;
: &b HERE [ 7 FLOATS ] LITERAL - ;
: &a HERE [ 8 FLOATS ] LITERAL - ;
: a &a F@ ;
: b &b F@ ;
: c &c F@ ;
: d &d F@ ;
: e &e F@ ;
: f &f F@ ;
: g &g F@ ;
: h &h F@ ;
\ stuff from jvn-util.fo
: FINIT ;
|