[gforth] / gforth / extend.fs  

gforth: gforth/extend.fs


1 : anton 1.1 \ EXTEND.FS CORE-EXT Word not fully tested! 12may93jaw
2 :    
3 : anton 1.30 \ Copyright (C) 1995,1998 Free Software Foundation, Inc.
4 : anton 1.12
5 :     \ This file is part of Gforth.
6 :    
7 :     \ Gforth is free software; you can redistribute it and/or
8 :     \ modify it under the terms of the GNU General Public License
9 :     \ as published by the Free Software Foundation; either version 2
10 :     \ of the License, or (at your option) any later version.
11 :    
12 :     \ This program is distributed in the hope that it will be useful,
13 :     \ but WITHOUT ANY WARRANTY; without even the implied warranty of
14 :     \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 :     \ GNU General Public License for more details.
16 :    
17 :     \ You should have received a copy of the GNU General Public License
18 :     \ along with this program; if not, write to the Free Software
19 :     \ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 :    
21 :    
22 : anton 1.1 \ May be cross-compiled
23 :    
24 :     decimal
25 :    
26 :     \ .( 12may93jaw
27 :    
28 : anton 1.41 : .( ( compilation,interpretation "ccc<paren>" -- ) \ core-ext dot-paren
29 :     \G Compilation and interpretation semantics: Parse a string @i{ccc}
30 :     \G delimited by a @code{)} (right parenthesis). Display the
31 :     \G string. This is often used to display progress information during
32 :     \G compilation; see examples below.
33 : crook 1.32 [char] ) parse type ; immediate
34 : anton 1.1
35 :     \ VALUE 2>R 2R> 2R@ 17may93jaw
36 :    
37 : anton 1.3 \ !! 2value
38 : anton 1.1
39 : anton 1.11 : 2Literal ( compilation w1 w2 -- ; run-time -- w1 w2 ) \ double two-literal
40 : crook 1.36 \G Compile appropriate code such that, at run-time, cell pair @i{w1, w2} are
41 : crook 1.32 \G placed on the stack. Interpretation semantics are undefined.
42 : anton 1.11 swap postpone Literal postpone Literal ; immediate restrict
43 : pazsan 1.2
44 : anton 1.16 ' drop alias d>s ( d -- n ) \ double d_to_s
45 :    
46 : anton 1.39 : m*/ ( d1 n2 u3 -- dquot ) \ double m-star-slash
47 : anton 1.40 \G dquot=(d1*n2)/u3, with the intermediate result being triple-precision.
48 :     \G In ANS Forth u3 can only be a positive signed number.
49 : anton 1.11 >r s>d >r abs -rot
50 :     s>d r> xor r> swap >r >r dabs rot tuck um* 2swap um*
51 :     swap >r 0 d+ r> -rot r@ um/mod -rot r> um/mod nip swap
52 :     r> IF dnegate THEN ;
53 : pazsan 1.4
54 : anton 1.1 \ CASE OF ENDOF ENDCASE 17may93jaw
55 :    
56 :     \ just as described in dpANS5
57 :    
58 : anton 1.11 0 CONSTANT case ( compilation -- case-sys ; run-time -- ) \ core-ext
59 :     immediate
60 : anton 1.1
61 : anton 1.11 : of ( compilation -- of-sys ; run-time x1 x2 -- |x1 ) \ core-ext
62 :     \ !! the implementation does not match the stack effect
63 :     1+ >r
64 :     postpone over postpone = postpone if postpone drop
65 :     r> ; immediate
66 :    
67 :     : endof ( compilation case-sys1 of-sys -- case-sys2 ; run-time -- ) \ core-ext end-of
68 :     >r postpone else r> ; immediate
69 :    
70 :     : endcase ( compilation case-sys -- ; run-time x -- ) \ core-ext end-case
71 :     postpone drop
72 :     0 ?do postpone then loop ; immediate
73 : anton 1.1
74 :     \ C" 17may93jaw
75 :    
76 :     : (c") "lit ;
77 :    
78 : anton 1.11 : CLiteral
79 :     postpone (c") here over char+ allot place align ; immediate restrict
80 :    
81 : crook 1.32 : C" ( compilation "ccc<quote>" -- ; run-time -- c-addr ) \ core-ext c-quote
82 : crook 1.36 \G Compilation: parse a string @i{ccc} delimited by a @code{"}
83 :     \G (double quote). At run-time, return @i{c-addr} which
84 :     \G specifies the counted string @i{ccc}. Interpretation
85 : crook 1.33 \G semantics are undefined.
86 : anton 1.11 [char] " parse postpone CLiteral ; immediate restrict
87 : anton 1.1
88 :     \ [COMPILE] 17may93jaw
89 :    
90 : anton 1.11 : [compile] ( compilation "name" -- ; run-time ? -- ? ) \ core-ext bracket-compile
91 : anton 1.37 comp' drop
92 :     dup [ comp' exit drop ] literal = if
93 :     execute \ EXIT has default compilation semantics, perform them
94 :     else
95 :     compile,
96 :     then ; immediate
97 : anton 1.1
98 :     \ CONVERT 17may93jaw
99 :    
100 : anton 1.11 : convert ( ud1 c-addr1 -- ud2 c-addr2 ) \ core-ext
101 : crook 1.34 \G OBSOLESCENT: superseded by @code{>number}.
102 : anton 1.26 char+ true >number drop ;
103 : anton 1.1
104 :     \ ERASE 17may93jaw
105 :    
106 : anton 1.40 : erase ( addr u -- ) \ core-ext
107 :     \G Clear all bits in @i{u} aus starting at @i{addr}.
108 : anton 1.11 \ !! dependence on "1 chars 1 ="
109 :     ( 0 1 chars um/mod nip ) 0 fill ;
110 : crook 1.34 : blank ( c-addr u -- ) \ string
111 : anton 1.40 \G Store the space character into @i{u} chars starting at @i{c-addr}.
112 : anton 1.11 bl fill ;
113 : anton 1.1
114 : pazsan 1.7 \ SEARCH 02sep94py
115 :    
116 : anton 1.28 : search ( c-addr1 u1 c-addr2 u2 -- c-addr3 u3 flag ) \ string
117 : crook 1.36 \G Search the string specified by @i{c-addr1, u1} for the string
118 :     \G specified by @i{c-addr2, u2}. If @i{flag} is true: match was found
119 :     \G at @i{c-addr3} with @i{u3} characters remaining. If @i{flag} is false:
120 :     \G no match was found; @i{c-addr3, u3} are equal to @i{c-addr1, u1}.
121 : anton 1.28 \ not very efficient; but if we want efficiency, we'll do it as primitive
122 :     2>r 2dup
123 :     begin
124 :     dup r@ >=
125 :     while
126 :     over 2r@ swap -text 0= if
127 :     2swap 2drop 2r> 2drop true exit
128 :     endif
129 :     1 /string
130 :     repeat
131 :     2drop 2r> 2drop false ;
132 : pazsan 1.7
133 : anton 1.1 \ SOURCE-ID SAVE-INPUT RESTORE-INPUT 11jun93jaw
134 :    
135 : anton 1.22 : source-id ( -- 0 | -1 | fileid ) \ core-ext,file source-i-d
136 : crook 1.34 \G Return 0 (the input source is the user input device), -1 (the
137 :     \G input source is a string being processed by @code{evaluate}) or
138 : crook 1.36 \G a @i{fileid} (the input source is the file specified by
139 :     \G @i{fileid}).
140 : crook 1.34 loadfile @ dup 0= IF drop sourceline# 0 min THEN ;
141 :    
142 :     : save-input ( -- xn .. x1 n ) \ core-ext
143 : crook 1.36 \G The @i{n} entries @i{xn - x1} describe the current state of the
144 : crook 1.34 \G input source specification, in some platform-dependent way that can
145 :     \G be used by @code{restore-input}.
146 : anton 1.14 >in @
147 :     loadfile @
148 :     if
149 : anton 1.38 loadfile @ file-position throw #TIB @ 1+ 0 d- \ !! bug for CRLF and EOF
150 : anton 1.14 else
151 :     blk @
152 :     linestart @
153 :     then
154 :     sourceline#
155 :     >tib @
156 :     source-id
157 :     6 ;
158 : anton 1.1
159 : crook 1.34 : restore-input ( xn .. x1 n -- flag ) \ core-ext
160 :     \G Attempt to restore the input source specification to the state
161 : crook 1.36 \G described by the @i{n} entries @i{xn - x1}. @i{flag} is
162 : anton 1.35 \G true if the restore fails. In Gforth it fails pretty often
163 :     \G (and sometimes with a @code{throw}).
164 : anton 1.14 6 <> -12 and throw
165 :     source-id <> -12 and throw
166 :     >tib !
167 :     >r ( line# )
168 :     loadfile @ 0<>
169 :     if
170 :     loadfile @ reposition-file throw
171 : anton 1.38 refill 0= -36 and throw \ should never throw
172 : anton 1.14 else
173 :     linestart !
174 :     blk !
175 :     sourceline# r@ <> blk @ 0= and loadfile @ 0= and
176 :     if
177 :     drop rdrop true EXIT
178 :     then
179 :     then
180 :     r> loadline !
181 :     >in !
182 :     false ;
183 :    
184 : anton 1.1 \ This things we don't need, but for being complete... jaw
185 :    
186 :     \ EXPECT SPAN 17may93jaw
187 :    
188 : crook 1.34 variable span ( -- c-addr ) \ core-ext
189 : crook 1.36 \G @code{Variable} -- @i{c-addr} is the address of a cell that stores the
190 :     \G length of the last string received by @code{expect}. OBSOLESCENT.
191 : crook 1.34
192 :     : expect ( c-addr +n -- ) \ core-ext
193 : crook 1.36 \G Receive a string of at most @i{+n} characters, and store it
194 :     \G in memory starting at @i{c-addr}. The string is
195 : crook 1.34 \G displayed. Input terminates when the <return> key is pressed or
196 : crook 1.36 \G @i{+n} characters have been received. The normal Gforth line
197 : crook 1.34 \G editing capabilites are available. The length of the string is
198 :     \G stored in @code{span}; it does not include the <return>
199 :     \G character. OBSOLESCENT: superceeded by @code{accept}.
200 : anton 1.9 0 rot over
201 :     BEGIN ( maxlen span c-addr pos1 )
202 :     key decode ( maxlen span c-addr pos2 flag )
203 :     >r 2over = r> or
204 :     UNTIL
205 : pazsan 1.17 2 pick swap /string type
206 :     nip span ! ;
207 : jwilke 1.27
208 :     \ marker 18dec94py
209 :    
210 :     \ Marker creates a mark that is removed (including everything
211 :     \ defined afterwards) when executing the mark.
212 :    
213 : anton 1.31 : included-files-mark ( -- u )
214 :     included-files 2@ nip
215 :     blk @ 0=
216 :     if \ not input from blocks
217 :     source-id 1 -1 within
218 :     if \ input from file
219 :     1- \ do not include the last file (hopefully this is the
220 :     \ currently included file)
221 :     then
222 :     then ;
223 :    
224 :     \ hmm, most of the saving appears to be pretty unnecessary: we could
225 :     \ derive the wordlists and the words that have to be kept from the
226 :     \ saved value of dp value. - anton
227 :    
228 :     : marker, ( -- mark )
229 :     here
230 :     included-files-mark ,
231 :     dup A, \ here
232 :     voclink @ A, \ vocabulary list start
233 :     \ for all wordlists, remember wordlist-id (the linked list)
234 :     voclink
235 :     BEGIN
236 :     @ dup
237 :     WHILE
238 :     dup 0 wordlist-link - wordlist-id @ A,
239 :     REPEAT
240 :     drop
241 :     \ remember udp
242 :     udp @ , ;
243 : jwilke 1.27
244 :     : marker! ( mark -- )
245 : anton 1.31 \ reset included files count; resize will happen on next add-included-file
246 :     included-files 2@ drop over @ included-files 2! cell+
247 :     \ rest of marker!
248 :     dup @ swap cell+ ( here rest-of-marker )
249 : jwilke 1.27 dup @ voclink ! cell+
250 : anton 1.31 \ restore wordlists to former words
251 : jwilke 1.27 voclink
252 :     BEGIN
253 :     @ dup
254 :     WHILE
255 : anton 1.31 over @ over 0 wordlist-link - wordlist-id !
256 : jwilke 1.27 swap cell+ swap
257 :     REPEAT
258 : anton 1.31 drop
259 :     \ rehash wordlists to remove forgotten words
260 :     \ why don't we do this in a single step? - anton
261 :     voclink
262 : jwilke 1.27 BEGIN
263 :     @ dup
264 :     WHILE
265 :     dup 0 wordlist-link - rehash
266 :     REPEAT
267 :     drop
268 : anton 1.31 \ restore udp and dp
269 : pazsan 1.29 @ udp ! dp !
270 :     \ clean up vocabulary stack
271 :     0 vp @ 0
272 :     ?DO
273 :     vp cell+ I cells + @ dup here >
274 :     IF drop ELSE swap 1+ THEN
275 :     LOOP
276 :     dup 0= or set-order \ -1 set-order if order is empty
277 :     get-current here > IF
278 :     forth-wordlist set-current
279 :     THEN ;
280 : jwilke 1.27
281 : crook 1.32 : marker ( "<spaces> name" -- ) \ core-ext
282 : crook 1.36 \G Create a definition, @i{name} (called a @i{mark}) whose
283 : crook 1.32 \G execution semantics are to remove itself and everything
284 :     \G defined after it.
285 : jwilke 1.27 marker, Create A,
286 :     DOES> ( -- )
287 :     @ marker! ;
288 : anton 1.1

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help