[gforth] / gforth / prims2x.fs  

gforth: gforth/prims2x.fs


1 : anton 1.16 \ converts primitives to, e.g., C code
2 :    
3 : anton 1.47 \ Copyright (C) 1995,1996,1997,1998,2000 Free Software Foundation, Inc.
4 : anton 1.16
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 : anton 1.48 \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
20 : anton 1.16
21 :    
22 : anton 1.1 \ This is not very nice (hard limits, no checking, assumes 1 chars = 1)
23 :    
24 :     \ Optimizations:
25 :     \ superfluous stores are removed. GCC removes the superfluous loads by itself
26 :     \ TOS and FTOS can be kept in register( variable)s.
27 :     \
28 :     \ Problems:
29 :     \ The TOS optimization is somewhat hairy. The problems by example:
30 :     \ 1) dup ( w -- w w ): w=TOS; sp-=1; sp[1]=w; TOS=w;
31 :     \ The store is not superfluous although the earlier opt. would think so
32 :     \ Alternatively: sp[0]=TOS; w=TOS; sp-=1; TOS=w;
33 :     \ 2) ( -- .. ): sp[0] = TOS; ... /* This additional store is necessary */
34 :     \ 3) ( .. -- ): ... TOS = sp[0]; /* as well as this load */
35 :     \ 4) ( -- ): /* but here they are unnecessary */
36 :     \ 5) Words that call NEXT themselves have to be done very carefully.
37 :     \
38 :     \ To do:
39 : pazsan 1.8 \ add the store optimization for doubles
40 : anton 1.1 \ regarding problem 1 above: It would be better (for over) to implement
41 :     \ the alternative
42 :    
43 : pazsan 1.3 warnings off
44 :    
45 : jwilke 1.39 [IFUNDEF] vocabulary \ we are executed just with kernel image
46 :     \ load the rest that is needed
47 :     \ (require fails because this file is needed from a
48 :     \ different directory with the wordlibraries)
49 :     include ./search.fs
50 :     include ./extend.fs
51 : anton 1.40 [THEN]
52 :    
53 :     [IFUNDEF] environment?
54 : jwilke 1.39 include ./environ.fs
55 :     [THEN]
56 : pazsan 1.25
57 : anton 1.49 : struct% struct ; \ struct is redefined in gray
58 :    
59 : jwilke 1.39 include ./gray.fs
60 : anton 1.1
61 :     100 constant max-effect \ number of things on one side of a stack effect
62 :     255 constant maxchar
63 :     maxchar 1+ constant eof-char
64 : anton 1.17 #tab constant tab-char
65 :     #lf constant nl-char
66 : anton 1.1
67 : anton 1.18 variable rawinput \ pointer to next character to be scanned
68 :     variable endrawinput \ pointer to the end of the input (the char after the last)
69 :     variable cookedinput \ pointer to the next char to be parsed
70 : anton 1.17 variable line \ line number of char pointed to by input
71 :     1 line !
72 :     2variable filename \ filename of original input file
73 :     0 0 filename 2!
74 : pazsan 1.25 2variable f-comment
75 :     0 0 f-comment 2!
76 : anton 1.17 variable skipsynclines \ are sync lines ("#line ...") invisible to the parser?
77 :     skipsynclines on
78 : anton 1.1
79 :     : start ( -- addr )
80 : anton 1.18 cookedinput @ ;
81 : anton 1.1
82 :     : end ( addr -- addr u )
83 : anton 1.18 cookedinput @ over - ;
84 : anton 1.1
85 :     variable output \ xt ( -- ) of output word
86 :    
87 :     : printprim ( -- )
88 :     output @ execute ;
89 :    
90 : anton 1.49 struct%
91 :     cell% 2* field stack-pointer \ stackpointer name
92 :     cell% 2* field stack-cast \ cast string for assignments to stack elements
93 : anton 1.53 cell% field stack-in-index-xt \ ( in-size item -- in-index )
94 : anton 1.49 cell% field stack-in \ number of stack items in effect in
95 :     cell% field stack-out \ number of stack items in effect out
96 :     end-struct stack%
97 :    
98 : anton 1.53 struct%
99 :     cell% 2* field item-name \ name, excluding stack prefixes
100 :     cell% field item-stack \ descriptor for the stack used, 0 is default
101 :     cell% field item-type \ descriptor for the item type
102 :     cell% field item-offset \ offset in stack items, 0 for the deepest element
103 :     end-struct item%
104 :    
105 :     struct%
106 :     cell% 2* field type-c-name
107 :     cell% field type-stack \ default stack
108 :     cell% field type-size \ size of type in stack items
109 :     cell% field type-fetch \ xt of fetch code generator ( item -- )
110 :     cell% field type-store \ xt of store code generator ( item -- )
111 :     end-struct type%
112 :    
113 :     : stack-in-index ( in-size item -- in-index )
114 :     item-offset @ - 1- ;
115 :    
116 :     : inst-in-index ( in-size item -- in-index )
117 :     nip dup item-offset @ swap item-type @ type-size @ + 1- ;
118 :    
119 : anton 1.49 : make-stack ( addr-ptr u1 addr-cast u2 "stack-name" -- )
120 :     create stack% %allot >r
121 :     save-mem r@ stack-cast 2!
122 : anton 1.53 save-mem r@ stack-pointer 2!
123 :     ['] stack-in-index r> stack-in-index-xt ! ;
124 : anton 1.49
125 :     s" sp" save-mem s" (Cell)" make-stack data-stack
126 :     s" fp" save-mem s" " make-stack fp-stack
127 : anton 1.51 s" rp" save-mem s" (Cell)" make-stack return-stack
128 : anton 1.53 s" ip" save-mem s" error don't use # on results" make-stack inst-stream
129 :     ' inst-in-index inst-stream stack-in-index-xt !
130 : anton 1.49 \ !! initialize stack-in and stack-out
131 :    
132 :     \ stack items
133 :    
134 :     : init-item ( addr u addr1 -- )
135 :     \ initialize item at addr1 with name addr u
136 :     \ !! remove stack prefix
137 :     dup item% %size erase
138 :     item-name 2! ;
139 :    
140 :     \ various variables for storing stuff of one primitive
141 : anton 1.1
142 :     2variable forth-name
143 :     2variable wordset
144 :     2variable c-name
145 :     2variable doc
146 :     2variable c-code
147 :     2variable forth-code
148 :     2variable stack-string
149 : anton 1.49 create effect-in max-effect item% %size * allot
150 :     create effect-out max-effect item% %size * allot
151 : anton 1.1 variable effect-in-end ( pointer )
152 :     variable effect-out-end ( pointer )
153 : anton 1.17 variable c-line
154 :     2variable c-filename
155 :     variable name-line
156 :     2variable name-filename
157 :     2variable last-name-filename
158 : anton 1.1
159 : pazsan 1.14 variable primitive-number -10 primitive-number !
160 : pazsan 1.30 Variable function-number 0 function-number !
161 : anton 1.1
162 :     \ for several reasons stack items of a word are stored in a wordlist
163 :     \ since neither forget nor marker are implemented yet, we make a new
164 :     \ wordlist for every word and store it in the variable items
165 :     variable items
166 :    
167 :     \ a few more set ops
168 :    
169 :     : bit-equivalent ( w1 w2 -- w3 )
170 :     xor invert ;
171 :    
172 :     : complement ( set1 -- set2 )
173 :     empty ['] bit-equivalent binary-set-operation ;
174 :    
175 :     \ the parser
176 :    
177 :     eof-char max-member \ the whole character set + EOF
178 :    
179 :     : getinput ( -- n )
180 : anton 1.18 rawinput @ endrawinput @ =
181 : anton 1.1 if
182 : anton 1.18 eof-char
183 : anton 1.1 else
184 : anton 1.18 cookedinput @ c@
185 : anton 1.1 endif ;
186 :    
187 :     :noname ( n -- )
188 :     dup bl > if
189 :     emit space
190 :     else
191 :     .
192 :     endif ;
193 :     print-token !
194 :    
195 :     : testchar? ( set -- f )
196 :     getinput member? ;
197 :     ' testchar? test-vector !
198 :    
199 : anton 1.17 : checksyncline ( -- )
200 :     \ when input points to a newline, check if the next line is a
201 :     \ sync line. If it is, perform the appropriate actions.
202 : anton 1.18 rawinput @ >r
203 : anton 1.17 s" #line " r@ over compare 0<> if
204 :     rdrop 1 line +! EXIT
205 :     endif
206 :     0. r> 6 chars + 20 >number drop >r drop line ! r> ( c-addr )
207 :     dup c@ bl = if
208 :     char+ dup c@ [char] " <> abort" sync line syntax"
209 : anton 1.24 char+ dup 100 [char] " scan drop swap 2dup - save-mem filename 2!
210 : anton 1.17 char+
211 :     endif
212 :     dup c@ nl-char <> abort" sync line syntax"
213 :     skipsynclines @ if
214 : anton 1.18 dup char+ rawinput !
215 :     rawinput @ c@ cookedinput @ c!
216 : anton 1.17 endif
217 :     drop ;
218 :    
219 : anton 1.1 : ?nextchar ( f -- )
220 : anton 1.17 ?not? if
221 : anton 1.18 filename 2@ type ." :" line @ 0 .r ." : syntax error, wrong char:"
222 : anton 1.17 getinput . cr
223 : anton 1.18 rawinput @ endrawinput @ over - 100 min type cr
224 : anton 1.17 abort
225 :     endif
226 : anton 1.18 rawinput @ endrawinput @ <> if
227 :     rawinput @ c@
228 :     1 chars rawinput +!
229 :     1 chars cookedinput +!
230 : anton 1.17 nl-char = if
231 :     checksyncline
232 :     endif
233 : anton 1.18 rawinput @ c@ cookedinput @ c!
234 : anton 1.17 endif ;
235 : anton 1.1
236 :     : charclass ( set "name" -- )
237 :     ['] ?nextchar terminal ;
238 :    
239 :     : .. ( c1 c2 -- set )
240 :     ( creates a set that includes the characters c, c1<=c<=c2 )
241 :     empty copy-set
242 :     swap 1+ rot do
243 :     i over add-member
244 :     loop ;
245 :    
246 :     : ` ( -- terminal ) ( use: ` c )
247 :     ( creates anonymous terminal for the character c )
248 : anton 1.21 char singleton ['] ?nextchar make-terminal ;
249 : anton 1.1
250 :     char a char z .. char A char Z .. union char _ singleton union charclass letter
251 :     char 0 char 9 .. charclass digit
252 : anton 1.45 bl singleton tab-char over add-member charclass white
253 : anton 1.1 nl-char singleton eof-char over add-member complement charclass nonl
254 : pazsan 1.46 nl-char singleton eof-char over add-member
255 :     char : over add-member complement charclass nocolonnl
256 :     bl 1+ maxchar .. char \ singleton complement intersection
257 :     charclass nowhitebq
258 :     bl 1+ maxchar .. charclass nowhite
259 : anton 1.1 char " singleton eof-char over add-member complement charclass noquote
260 :     nl-char singleton charclass nl
261 :     eof-char singleton charclass eof
262 :    
263 :    
264 :     (( letter (( letter || digit )) **
265 : anton 1.51 )) <- c-ident ( -- )
266 :    
267 :     (( ` # ?? (( letter || digit || ` : )) **
268 :     )) <- stack-ident ( -- )
269 : anton 1.1
270 : pazsan 1.46 (( nowhitebq nowhite ** ))
271 : anton 1.51 <- forth-ident ( -- )
272 : anton 1.1
273 : jwilke 1.42 Variable forth-flag
274 :     Variable c-flag
275 :    
276 : anton 1.54 (( (( ` e || ` E )) {{ start }} nonl **
277 :     {{ end evaluate }}
278 :     )) <- eval-comment ( ... -- ... )
279 :    
280 : jwilke 1.42 (( (( ` f || ` F )) {{ start }} nonl **
281 :     {{ end forth-flag @ IF type cr ELSE 2drop THEN }}
282 :     )) <- forth-comment ( -- )
283 :    
284 :     (( (( ` c || ` C )) {{ start }} nonl **
285 :     {{ end c-flag @ IF type cr ELSE 2drop THEN }}
286 :     )) <- c-comment ( -- )
287 :    
288 : jwilke 1.43 (( ` - nonl ** {{
289 :     forth-flag @ IF ." [ELSE]" cr THEN
290 :     c-flag @ IF ." #else" cr THEN }}
291 :     )) <- else-comment
292 :    
293 :     (( ` + {{ start }} nonl ** {{ end
294 :     dup
295 :     IF c-flag @
296 :     IF ." #ifdef HAS_" bounds ?DO I c@ toupper emit LOOP cr
297 :     THEN
298 :     forth-flag @
299 :     IF ." has? " type ." [IF]" cr THEN
300 :     ELSE 2drop
301 : pazsan 1.46 c-flag @ IF ." #endif" cr THEN
302 :     forth-flag @ IF ." [THEN]" cr THEN
303 : jwilke 1.43 THEN }}
304 :     )) <- if-comment
305 :    
306 : anton 1.54 (( (( eval-comment || forth-comment || c-comment || else-comment || if-comment )) ?? nonl ** )) <- comment-body
307 : jwilke 1.42
308 : jwilke 1.43 (( ` \ comment-body nl )) <- comment ( -- )
309 : anton 1.1
310 : anton 1.51 (( {{ start }} stack-ident {{ end 2 pick init-item item% %size + }} white ** )) **
311 :     <- stack-items
312 :    
313 :     (( {{ effect-in }} stack-items {{ effect-in-end ! }}
314 : anton 1.45 ` - ` - white **
315 : anton 1.51 {{ effect-out }} stack-items {{ effect-out-end ! }}
316 : anton 1.1 )) <- stack-effect ( -- )
317 :    
318 :     (( {{ s" " doc 2! s" " forth-code 2! }}
319 : anton 1.17 (( {{ line @ name-line ! filename 2@ name-filename 2! }}
320 : anton 1.51 {{ start }} forth-ident {{ end 2dup forth-name 2! c-name 2! }} white ++
321 : anton 1.45 ` ( white ** {{ start }} stack-effect {{ end stack-string 2! }} ` ) white **
322 : anton 1.51 {{ start }} forth-ident {{ end wordset 2! }} white **
323 :     (( {{ start }} c-ident {{ end c-name 2! }} )) ?? nl
324 : anton 1.1 ))
325 :     (( ` " ` " {{ start }} (( noquote ++ ` " )) ++ {{ end 1- doc 2! }} ` " nl )) ??
326 : anton 1.18 {{ skipsynclines off line @ c-line ! filename 2@ c-filename 2! start }} (( nocolonnl nonl ** nl )) ** {{ end c-code 2! skipsynclines on }}
327 : anton 1.1 (( ` : nl
328 :     {{ start }} (( nonl ++ nl )) ++ {{ end forth-code 2! }}
329 : pazsan 1.46 )) ?? {{ printprim }}
330 : anton 1.1 (( nl || eof ))
331 :     )) <- primitive ( -- )
332 :    
333 : pazsan 1.46 (( (( comment || primitive || nl )) ** eof ))
334 : anton 1.1 parser primitives2something
335 : pazsan 1.3 warnings @ [IF]
336 : anton 1.1 .( parser generated ok ) cr
337 : pazsan 1.3 [THEN]
338 : anton 1.1
339 :     : primfilter ( file-id xt -- )
340 :     \ fileid is for the input file, xt ( -- ) is for the output word
341 :     output !
342 : anton 1.18 here dup rawinput ! cookedinput !
343 : anton 1.41 here unused rot read-file throw
344 :     dup here + endrawinput !
345 :     allot
346 : pazsan 1.2 align
347 : anton 1.17 checksyncline
348 : anton 1.18 \ begin
349 :     \ getinput dup eof-char = ?EXIT emit true ?nextchar
350 :     \ again ;
351 : anton 1.1 primitives2something ;
352 :    
353 :     \ types
354 :    
355 : anton 1.49 : stack-access ( n stack -- )
356 :     \ print a stack access at index n of stack
357 :     stack-pointer 2@ type
358 :     dup
359 :     if
360 :     ." [" 0 .r ." ]"
361 :     else
362 :     drop ." TOS"
363 :     endif ;
364 : anton 1.1
365 : anton 1.53 : item-in-index { item -- n }
366 : anton 1.49 \ n is the index of item (in the in-effect)
367 : anton 1.53 item item-stack @ dup >r stack-in @ ( in-size r:stack )
368 :     item r> stack-in-index-xt @ execute ;
369 : anton 1.1
370 :     : fetch-single ( item -- )
371 : anton 1.49 \ fetch a single stack item from its stack
372 : anton 1.1 >r
373 : pazsan 1.8 r@ item-name 2@ type
374 :     ." = ("
375 : anton 1.1 r@ item-type @ type-c-name 2@ type ." ) "
376 : anton 1.49 r@ item-in-index r@ item-stack @ stack-access
377 :     ." ;" cr
378 : anton 1.1 rdrop ;
379 :    
380 :     : fetch-double ( item -- )
381 : anton 1.49 \ fetch a double stack item from its stack
382 : anton 1.1 >r
383 : anton 1.20 ." FETCH_DCELL("
384 :     r@ item-name 2@ type ." , "
385 : anton 1.49 r@ item-in-index r@ item-stack @ 2dup stack-access
386 :     ." , " -1 under+ stack-access
387 : anton 1.20 ." );" cr
388 : anton 1.1 rdrop ;
389 :    
390 : anton 1.49 : same-as-in? ( item -- f )
391 :     \ f is true iff the offset and stack of item is the same as on input
392 : anton 1.1 >r
393 :     r@ item-name 2@ items @ search-wordlist 0=
394 : pazsan 1.8 abort" bug"
395 : anton 1.1 execute @
396 :     dup r@ =
397 :     if \ item first appeared in output
398 :     drop false
399 :     else
400 : anton 1.49 dup item-stack @ r@ item-stack @ =
401 :     swap item-offset @ r@ item-offset @ = and
402 : anton 1.1 endif
403 :     rdrop ;
404 :    
405 : anton 1.49 : item-out-index ( item -- n )
406 :     \ n is the index of item (in the in-effect)
407 :     >r r@ item-stack @ stack-out @ r> item-offset @ - 1- ;
408 : pazsan 1.31
409 : anton 1.1 : really-store-single ( item -- )
410 :     >r
411 : anton 1.49 r@ item-out-index r@ item-stack @ stack-access ." = "
412 :     r@ item-stack @ stack-cast 2@ type
413 : anton 1.1 r@ item-name 2@ type ." ;"
414 :     rdrop ;
415 :    
416 :     : store-single ( item -- )
417 :     >r
418 : anton 1.49 r@ same-as-in?
419 : anton 1.1 if
420 : anton 1.49 r@ item-in-index 0= r@ item-out-index 0= xor
421 : anton 1.1 if
422 : anton 1.49 ." IF_" r@ item-stack @ stack-pointer 2@ type
423 :     ." TOS(" r@ really-store-single ." );" cr
424 : anton 1.1 endif
425 :     else
426 :     r@ really-store-single cr
427 :     endif
428 :     rdrop ;
429 :    
430 :     : store-double ( item -- )
431 :     \ !! store optimization is not performed, because it is not yet needed
432 :     >r
433 : anton 1.20 ." STORE_DCELL(" r@ item-name 2@ type ." , "
434 : anton 1.49 r@ item-out-index r@ item-stack @ 2dup stack-access
435 :     ." , " -1 under+ stack-access
436 : anton 1.20 ." );" cr
437 : anton 1.1 rdrop ;
438 :    
439 : anton 1.54 : single ( -- xt1 xt2 n )
440 :     ['] fetch-single ['] store-single 1 ;
441 : anton 1.1
442 : anton 1.54 : double ( -- xt1 xt2 n )
443 :     ['] fetch-double ['] store-double 2 ;
444 : anton 1.1
445 :     : s, ( addr u -- )
446 :     \ allocate a string
447 :     here swap dup allot move ;
448 :    
449 : anton 1.50 wordlist constant prefixes
450 :    
451 :     : declare ( addr "name" -- )
452 :     \ remember that there is a stack item at addr called name
453 :     create , ;
454 :    
455 :     : !default ( w addr -- )
456 :     dup @ if
457 :     2drop \ leave nonzero alone
458 :     else
459 :     !
460 :     endif ;
461 :    
462 :     : create-type { addr u xt1 xt2 n stack -- } ( "prefix" -- )
463 : anton 1.49 \ describes a type
464 :     \ addr u specifies the C type name
465 :     \ stack effect entries of the type start with prefix
466 :     create type% %allot >r
467 :     addr u save-mem r@ type-c-name 2!
468 :     xt1 r@ type-fetch !
469 :     xt2 r@ type-store !
470 :     n r@ type-size !
471 :     stack r@ type-stack !
472 :     rdrop ;
473 : anton 1.1
474 : anton 1.54 : type-prefix ( xt1 xt2 n stack "prefix" -- )
475 : anton 1.50 create-type
476 :     does> ( item -- )
477 :     \ initialize item
478 :     { item typ }
479 :     typ item item-type !
480 :     typ type-stack @ item item-stack !default
481 :     item item-name 2@ items @ search-wordlist 0= if \ new name
482 :     item item-name 2@ 2dup nextname item declare
483 :     typ type-c-name 2@ type space type ." ;" cr
484 :     else
485 :     drop
486 :     endif ;
487 :    
488 :     : execute-prefix ( item addr1 u1 -- )
489 :     \ execute the word ( item -- ) associated with the longest prefix
490 :     \ of addr1 u1
491 :     0 swap ?do
492 :     dup i prefixes search-wordlist
493 :     if \ ok, we have the type ( item addr1 xt )
494 :     nip execute
495 :     UNLOOP EXIT
496 :     endif
497 :     -1 s+loop
498 :     \ we did not find a type, abort
499 :     true abort" unknown prefix" ;
500 : anton 1.1
501 :     : declaration ( item -- )
502 : anton 1.50 dup item-name 2@ execute-prefix ;
503 : anton 1.1
504 : anton 1.51 : stack-prefix ( stack "prefix" -- )
505 :     name tuck nextname create ( stack length ) 2,
506 :     does> ( item -- )
507 :     2@ { item stack prefix-length }
508 :     item item-name 2@ prefix-length /string item item-name 2!
509 :     stack item item-stack !
510 :     item declaration ;
511 :    
512 : anton 1.1 : declaration-list ( addr1 addr2 -- )
513 :     swap ?do
514 :     i declaration
515 : anton 1.49 item% %size +loop ;
516 : pazsan 1.8
517 : anton 1.1 : declarations ( -- )
518 :     wordlist dup items ! set-current
519 :     effect-in effect-in-end @ declaration-list
520 :     effect-out effect-out-end @ declaration-list ;
521 :    
522 :     \ offset computation
523 :     \ the leftmost (i.e. deepest) item has offset 0
524 :     \ the rightmost item has the highest offset
525 :    
526 : anton 1.49 : compute-offset { item xt -- }
527 :     \ xt specifies in/out; update stack-in/out and set item-offset
528 :     item item-type @ type-size @
529 :     item item-stack @ xt execute dup @ >r +!
530 :     r> item item-offset ! ;
531 :    
532 :     : compute-list ( addr1 addr2 xt -- )
533 :     { xt }
534 :     swap u+do
535 :     i xt compute-offset
536 :     item% %size +loop ;
537 :    
538 :     : clear-stack { -- }
539 :     dup stack-in off stack-out off ;
540 : anton 1.1
541 :     : compute-offsets ( -- )
542 : anton 1.51 data-stack clear-stack fp-stack clear-stack return-stack clear-stack
543 : anton 1.53 inst-stream clear-stack
544 : anton 1.49 effect-in effect-in-end @ ['] stack-in compute-list
545 : anton 1.53 effect-out effect-out-end @ ['] stack-out compute-list
546 :     inst-stream stack-out @ 0<> abort" # can only be on the input side" ;
547 : anton 1.49
548 :     : flush-a-tos { stack -- }
549 :     stack stack-out @ 0<> stack stack-in @ 0= and
550 :     if
551 :     ." IF_" stack stack-pointer 2@ 2dup type ." TOS("
552 :     2dup type ." [0] = " type ." TOS);" cr
553 :     endif ;
554 : anton 1.1
555 :     : flush-tos ( -- )
556 : anton 1.51 data-stack flush-a-tos
557 :     fp-stack flush-a-tos
558 :     return-stack flush-a-tos ;
559 : anton 1.49
560 :     : fill-a-tos { stack -- }
561 :     stack stack-out @ 0= stack stack-in @ 0<> and
562 :     if
563 :     ." IF_" stack stack-pointer 2@ 2dup type ." TOS("
564 :     2dup type ." TOS = " type ." [0]);" cr
565 :     endif ;
566 : anton 1.1
567 :     : fill-tos ( -- )
568 : anton 1.53 \ !! inst-stream for prefetching?
569 : anton 1.51 fp-stack fill-a-tos
570 :     data-stack fill-a-tos
571 :     return-stack fill-a-tos ;
572 : anton 1.49
573 :     : fetch ( addr -- )
574 :     dup item-type @ type-fetch @ execute ;
575 : anton 1.1
576 :     : fetches ( -- )
577 :     effect-in-end @ effect-in ?do
578 :     i fetch
579 : anton 1.49 item% %size +loop ;
580 :    
581 :     : stack-pointer-update { stack -- }
582 :     \ stack grow downwards
583 :     stack stack-in @ stack stack-out @ -
584 :     ?dup-if \ this check is not necessary, gcc would do this for us
585 :     stack stack-pointer 2@ type ." += " 0 .r ." ;" cr
586 :     endif ;
587 : anton 1.1
588 : anton 1.55 : inst-pointer-update ( -- )
589 :     inst-stream stack-in @ ?dup-if
590 :     ." INC_IP(" 0 .r ." );" cr
591 :     endif ;
592 :    
593 : anton 1.1 : stack-pointer-updates ( -- )
594 : anton 1.55 inst-pointer-update
595 : anton 1.51 data-stack stack-pointer-update
596 :     fp-stack stack-pointer-update
597 :     return-stack stack-pointer-update ;
598 : anton 1.1
599 :     : store ( item -- )
600 :     \ f is true if the item should be stored
601 :     \ f is false if the store is probably not necessary
602 : anton 1.49 dup item-type @ type-store @ execute ;
603 : anton 1.1
604 :     : stores ( -- )
605 :     effect-out-end @ effect-out ?do
606 :     i store
607 : anton 1.49 item% %size +loop ;
608 : pazsan 1.8
609 : anton 1.52 : output-c-tail ( -- )
610 :     \ the final part of the generated C code
611 :     ." NEXT_P1;" cr
612 :     stores
613 :     fill-tos
614 :     ." NEXT_P2;" cr ;
615 :    
616 :     : type-c ( c-addr u -- )
617 :     \ like TYPE, but replaces "TAIL;" with tail code
618 :     begin ( c-addr1 u1 )
619 :     2dup s" TAIL;" search
620 :     while ( c-addr1 u1 c-addr3 u3 )
621 :     2dup 2>r drop nip over - type
622 :     output-c-tail
623 :     2r> 5 /string
624 :     \ !! resync #line missing
625 :     repeat
626 :     2drop type ;
627 :    
628 : jwilke 1.43 : output-c ( -- )
629 : anton 1.45 ." I_" c-name 2@ type ." : /* " forth-name 2@ type ." ( " stack-string 2@ type ." ) */" cr
630 : anton 1.1 ." /* " doc 2@ type ." */" cr
631 : anton 1.13 ." NAME(" [char] " emit forth-name 2@ type [char] " emit ." )" cr \ debugging
632 : anton 1.1 ." {" cr
633 :     ." DEF_CA" cr
634 :     declarations
635 :     compute-offsets \ for everything else
636 : anton 1.13 ." NEXT_P0;" cr
637 :     flush-tos
638 : anton 1.1 fetches
639 : anton 1.13 stack-pointer-updates
640 : anton 1.1 ." {" cr
641 : anton 1.17 ." #line " c-line @ . [char] " emit c-filename 2@ type [char] " emit cr
642 : anton 1.52 c-code 2@ type-c
643 : anton 1.1 ." }" cr
644 : anton 1.52 output-c-tail
645 : anton 1.1 ." }" cr
646 :     cr
647 :     ;
648 :    
649 : anton 1.56 : print-type-prefix ( type -- )
650 :     body> >head .name ;
651 :    
652 :     : disasm-arg { item -- }
653 :     item item-stack @ inst-stream = if
654 :     ." printarg_" item item-type @ print-type-prefix
655 :     ." (ip[" item item-offset @ 1+ 0 .r ." ]);" cr
656 :     endif ;
657 :    
658 :     : disasm-args ( -- )
659 :     effect-in-end @ effect-in ?do
660 :     i disasm-arg
661 :     item% %size +loop ;
662 :    
663 :     : output-disasm ( -- )
664 :     \ generate code for disassembling VM instructions
665 :     ." if (ip[0] == prim[" function-number @ 0 .r ." ]) {" cr
666 :     ." fputs(" [char] " emit forth-name 2@ type [char] " emit ." ,stdout);" cr
667 :     ." /* " declarations ." */" cr
668 :     compute-offsets
669 :     disasm-args
670 :     ." ip += " inst-stream stack-in @ 1+ 0 .r ." ;" cr
671 :     ." } else "
672 :     1 function-number +! ;
673 :    
674 : anton 1.49 : stack-used? { stack -- f }
675 :     stack stack-in @ stack stack-out @ or 0<> ;
676 : jwilke 1.44
677 : pazsan 1.30 : output-funclabel ( -- )
678 :     1 function-number +!
679 :     ." &I_" c-name 2@ type ." ," cr ;
680 :    
681 :     : output-forthname ( -- )
682 :     1 function-number +!
683 :     '" emit forth-name 2@ type '" emit ." ," cr ;
684 :    
685 :     : output-c-func ( -- )
686 : jwilke 1.44 \ used for word libraries
687 : pazsan 1.30 1 function-number +!
688 : jwilke 1.44 ." Cell * I_" c-name 2@ type ." (Cell *SP, Cell **FP) /* " forth-name 2@ type
689 : pazsan 1.30 ." ( " stack-string 2@ type ." ) */" cr
690 :     ." /* " doc 2@ type ." */" cr
691 :     ." NAME(" [char] " emit forth-name 2@ type [char] " emit ." )" cr
692 :     \ debugging
693 :     ." {" cr
694 :     declarations
695 :     compute-offsets \ for everything else
696 : anton 1.53 inst-stream stack-used? IF ." Cell *ip=IP;" cr THEN
697 : anton 1.51 data-stack stack-used? IF ." Cell *sp=SP;" cr THEN
698 :     fp-stack stack-used? IF ." Cell *fp=*FP;" cr THEN
699 :     return-stack stack-used? IF ." Cell *rp=*RP;" cr THEN
700 : pazsan 1.30 flush-tos
701 :     fetches
702 :     stack-pointer-updates
703 : anton 1.49 fp-stack stack-used? IF ." *FP=fp;" cr THEN
704 : pazsan 1.30 ." {" cr
705 :     ." #line " c-line @ . [char] " emit c-filename 2@ type [char] " emit cr
706 :     c-code 2@ type
707 :     ." }" cr
708 :     stores
709 :     fill-tos
710 : jwilke 1.44 ." return (sp);" cr
711 : pazsan 1.30 ." }" cr
712 :     cr ;
713 :    
714 : jwilke 1.43 : output-label ( -- )
715 : pazsan 1.34 ." (Label)&&I_" c-name 2@ type ." ," cr
716 :     -1 primitive-number +! ;
717 : anton 1.1
718 : jwilke 1.43 : output-alias ( -- )
719 : pazsan 1.38 ( primitive-number @ . ." alias " ) ." Primitive " forth-name 2@ type cr
720 : pazsan 1.34 -1 primitive-number +! ;
721 : anton 1.1
722 : jwilke 1.43 : output-forth ( -- )
723 : pazsan 1.30 forth-code @ 0=
724 :     IF \ output-alias
725 : jwilke 1.28 \ this is bad for ec: an alias is compiled if tho word does not exist!
726 :     \ JAW
727 : pazsan 1.30 ELSE ." : " forth-name 2@ type ." ( "
728 : anton 1.49 stack-string 2@ type ." )" cr
729 : pazsan 1.30 forth-code 2@ type cr
730 :     -1 primitive-number +!
731 :     THEN ;
732 : anton 1.10
733 : anton 1.17 : output-tag-file ( -- )
734 :     name-filename 2@ last-name-filename 2@ compare if
735 :     name-filename 2@ last-name-filename 2!
736 :     #ff emit cr
737 :     name-filename 2@ type
738 :     ." ,0" cr
739 :     endif ;
740 :    
741 :     : output-tag ( -- )
742 :     output-tag-file
743 :     forth-name 2@ 1+ type
744 :     127 emit
745 :     space forth-name 2@ type space
746 :     1 emit
747 :     name-line @ 0 .r
748 :     ." ,0" cr ;
749 :    
750 : anton 1.10 [IFDEF] documentation
751 :     : register-doc ( -- )
752 :     get-current documentation set-current
753 :     forth-name 2@ nextname create
754 :     forth-name 2@ 2,
755 : anton 1.15 stack-string 2@ condition-stack-effect 2,
756 : anton 1.10 wordset 2@ 2,
757 : anton 1.15 c-name 2@ condition-pronounciation 2,
758 : anton 1.10 doc 2@ 2,
759 :     set-current ;
760 :     [THEN]
761 : pazsan 1.8
762 : anton 1.1 : process-file ( addr u xt -- )
763 : anton 1.17 >r
764 :     2dup filename 2!
765 : pazsan 1.30 0 function-number !
766 : anton 1.17 r/o open-file abort" cannot open file"
767 :     warnings @ if
768 :     ." ------------ CUT HERE -------------" cr endif
769 :     r> primfilter ;
770 : pazsan 1.30
771 :     : process ( xt -- )
772 :     bl word count rot
773 :     process-file ;

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help