| \ converts primitives to, e.g., C code |
\ converts primitives to, e.g., C code |
| |
|
| \ Copyright (C) 1995 Free Software Foundation, Inc. |
\ Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc. |
| |
|
| \ This file is part of Gforth. |
\ This file is part of Gforth. |
| |
|
| |
|
| warnings off |
warnings off |
| |
|
| \ require interpretation.fs |
[IFUNDEF] vocabulary \ we are executed just with kernel image |
| require debugging.fs |
\ load the rest that is needed |
| [IFUNDEF] vocabulary include search-order.fs [THEN] |
\ (require fails because this file is needed from a |
| [IFUNDEF] environment? include environ.fs [THEN] |
\ different directory with the wordlibraries) |
| include gray.fs |
include ./search.fs |
| |
include ./extend.fs |
| |
[THEN] |
| |
|
| |
[IFUNDEF] environment? |
| |
include ./environ.fs |
| |
[THEN] |
| |
|
| |
include ./gray.fs |
| |
|
| 100 constant max-effect \ number of things on one side of a stack effect |
100 constant max-effect \ number of things on one side of a stack effect |
| 255 constant maxchar |
255 constant maxchar |
| #tab constant tab-char |
#tab constant tab-char |
| #lf constant nl-char |
#lf constant nl-char |
| |
|
| : read-whole-file ( c-addr1 file-id -- c-addr2 ) |
|
| \ reads the contents of the file file-id puts it into memory at c-addr1 |
|
| \ c-addr2 is the first address after the file block |
|
| >r dup $7fffffff r> read-file throw + ; |
|
| |
|
| variable rawinput \ pointer to next character to be scanned |
variable rawinput \ pointer to next character to be scanned |
| variable endrawinput \ pointer to the end of the input (the char after the last) |
variable endrawinput \ pointer to the end of the input (the char after the last) |
| variable cookedinput \ pointer to the next char to be parsed |
variable cookedinput \ pointer to the next char to be parsed |
| 1 line ! |
1 line ! |
| 2variable filename \ filename of original input file |
2variable filename \ filename of original input file |
| 0 0 filename 2! |
0 0 filename 2! |
| |
2variable f-comment |
| |
0 0 f-comment 2! |
| variable skipsynclines \ are sync lines ("#line ...") invisible to the parser? |
variable skipsynclines \ are sync lines ("#line ...") invisible to the parser? |
| skipsynclines on |
skipsynclines on |
| |
|
| 2variable last-name-filename |
2variable last-name-filename |
| |
|
| variable primitive-number -10 primitive-number ! |
variable primitive-number -10 primitive-number ! |
| |
Variable function-number 0 function-number ! |
| |
|
| \ for several reasons stack items of a word are stored in a wordlist |
\ for several reasons stack items of a word are stored in a wordlist |
| \ since neither forget nor marker are implemented yet, we make a new |
\ since neither forget nor marker are implemented yet, we make a new |
| |
|
| char a char z .. char A char Z .. union char _ singleton union charclass letter |
char a char z .. char A char Z .. union char _ singleton union charclass letter |
| char 0 char 9 .. charclass digit |
char 0 char 9 .. charclass digit |
| bl singleton charclass blank |
bl singleton tab-char over add-member charclass white |
| tab-char singleton charclass tab |
|
| nl-char singleton eof-char over add-member complement charclass nonl |
nl-char singleton eof-char over add-member complement charclass nonl |
| nl-char singleton eof-char over add-member char : over add-member complement charclass nocolonnl |
nl-char singleton eof-char over add-member |
| |
char : over add-member complement charclass nocolonnl |
| |
bl 1+ maxchar .. char \ singleton complement intersection |
| |
charclass nowhitebq |
| bl 1+ maxchar .. charclass nowhite |
bl 1+ maxchar .. charclass nowhite |
| char " singleton eof-char over add-member complement charclass noquote |
char " singleton eof-char over add-member complement charclass noquote |
| nl-char singleton charclass nl |
nl-char singleton charclass nl |
| (( letter (( letter || digit )) ** |
(( letter (( letter || digit )) ** |
| )) <- c-name ( -- ) |
)) <- c-name ( -- ) |
| |
|
| nowhite ++ |
(( nowhitebq nowhite ** )) |
| <- name ( -- ) |
<- name ( -- ) |
| |
|
| (( ` \ nonl ** nl |
Variable forth-flag |
| )) <- comment ( -- ) |
Variable c-flag |
| |
|
| (( {{ effect-in }} (( {{ start }} c-name {{ end 2 pick item-name 2! item-descr + }} blank ** )) ** {{ effect-in-end ! }} |
(( (( ` f || ` F )) {{ start }} nonl ** |
| ` - ` - blank ** |
{{ end forth-flag @ IF type cr ELSE 2drop THEN }} |
| {{ effect-out }} (( {{ start }} c-name {{ end 2 pick item-name 2! item-descr + }} blank ** )) ** {{ effect-out-end ! }} |
)) <- forth-comment ( -- ) |
| |
|
| |
(( (( ` c || ` C )) {{ start }} nonl ** |
| |
{{ end c-flag @ IF type cr ELSE 2drop THEN }} |
| |
)) <- c-comment ( -- ) |
| |
|
| |
(( ` - nonl ** {{ |
| |
forth-flag @ IF ." [ELSE]" cr THEN |
| |
c-flag @ IF ." #else" cr THEN }} |
| |
)) <- else-comment |
| |
|
| |
(( ` + {{ start }} nonl ** {{ end |
| |
dup |
| |
IF c-flag @ |
| |
IF ." #ifdef HAS_" bounds ?DO I c@ toupper emit LOOP cr |
| |
THEN |
| |
forth-flag @ |
| |
IF ." has? " type ." [IF]" cr THEN |
| |
ELSE 2drop |
| |
c-flag @ IF ." #endif" cr THEN |
| |
forth-flag @ IF ." [THEN]" cr THEN |
| |
THEN }} |
| |
)) <- if-comment |
| |
|
| |
(( (( forth-comment || c-comment || else-comment || if-comment )) ?? nonl ** )) <- comment-body |
| |
|
| |
(( ` \ comment-body nl )) <- comment ( -- ) |
| |
|
| |
(( {{ effect-in }} (( {{ start }} c-name {{ end 2 pick item-name 2! item-descr + }} white ** )) ** {{ effect-in-end ! }} |
| |
` - ` - white ** |
| |
{{ effect-out }} (( {{ start }} c-name {{ end 2 pick item-name 2! item-descr + }} white ** )) ** {{ effect-out-end ! }} |
| )) <- stack-effect ( -- ) |
)) <- stack-effect ( -- ) |
| |
|
| (( {{ s" " doc 2! s" " forth-code 2! }} |
(( {{ s" " doc 2! s" " forth-code 2! }} |
| (( comment || nl )) ** |
|
| (( {{ line @ name-line ! filename 2@ name-filename 2! }} |
(( {{ line @ name-line ! filename 2@ name-filename 2! }} |
| {{ start }} name {{ end 2dup forth-name 2! c-name 2! }} tab ++ |
{{ start }} name {{ end 2dup forth-name 2! c-name 2! }} white ++ |
| {{ start }} stack-effect {{ end stack-string 2! }} tab ++ |
` ( white ** {{ start }} stack-effect {{ end stack-string 2! }} ` ) white ** |
| {{ start }} name {{ end wordset 2! }} tab ** |
{{ start }} name {{ end wordset 2! }} white ** |
| (( {{ start }} c-name {{ end c-name 2! }} )) ?? nl |
(( {{ start }} c-name {{ end c-name 2! }} )) ?? nl |
| )) |
)) |
| (( ` " ` " {{ start }} (( noquote ++ ` " )) ++ {{ end 1- doc 2! }} ` " nl )) ?? |
(( ` " ` " {{ start }} (( noquote ++ ` " )) ++ {{ end 1- doc 2! }} ` " nl )) ?? |
| {{ skipsynclines off line @ c-line ! filename 2@ c-filename 2! start }} (( nocolonnl nonl ** nl )) ** {{ end c-code 2! skipsynclines on }} |
{{ skipsynclines off line @ c-line ! filename 2@ c-filename 2! start }} (( nocolonnl nonl ** nl )) ** {{ end c-code 2! skipsynclines on }} |
| (( ` : nl |
(( ` : nl |
| {{ start }} (( nonl ++ nl )) ++ {{ end forth-code 2! }} |
{{ start }} (( nonl ++ nl )) ++ {{ end forth-code 2! }} |
| )) ?? |
)) ?? {{ printprim }} |
| (( nl || eof )) |
(( nl || eof )) |
| )) <- primitive ( -- ) |
)) <- primitive ( -- ) |
| |
|
| (( (( primitive {{ printprim }} )) ** eof )) |
(( (( comment || primitive || nl )) ** eof )) |
| parser primitives2something |
parser primitives2something |
| warnings @ [IF] |
warnings @ [IF] |
| .( parser generated ok ) cr |
.( parser generated ok ) cr |
| \ fileid is for the input file, xt ( -- ) is for the output word |
\ fileid is for the input file, xt ( -- ) is for the output word |
| output ! |
output ! |
| here dup rawinput ! cookedinput ! |
here dup rawinput ! cookedinput ! |
| here swap read-whole-file |
here unused rot read-file throw |
| dup endrawinput ! |
dup here + endrawinput ! |
| here - allot |
allot |
| align |
align |
| checksyncline |
checksyncline |
| \ begin |
\ begin |
| \ true if item has the same offset as the input TOS |
\ true if item has the same offset as the input TOS |
| item-d-offset @ 1+ effect-in-size 2@ drop = ; |
item-d-offset @ 1+ effect-in-size 2@ drop = ; |
| |
|
| |
: is-out-tos? ( item -- f ) |
| |
\ true if item has the same offset as the input TOS |
| |
item-d-offset @ 1+ effect-out-size 2@ drop = ; |
| |
|
| : really-store-single ( item -- ) |
: really-store-single ( item -- ) |
| >r |
>r |
| r@ item-d-offset @ effect-out-size 2@ data-stack-access ." = (Cell)" |
r@ item-d-offset @ effect-out-size 2@ data-stack-access ." = (Cell)" |
| >r |
>r |
| r@ d-same-as-in? |
r@ d-same-as-in? |
| if |
if |
| r@ is-in-tos? |
r@ is-in-tos? r@ is-out-tos? xor |
| if |
if |
| ." IF_TOS(" r@ really-store-single ." );" cr |
." IF_TOS(" r@ really-store-single ." );" cr |
| endif |
endif |
| s" SFloat *" single-type starts-with sf_ |
s" SFloat *" single-type starts-with sf_ |
| s" Xt" single-type starts-with xt |
s" Xt" single-type starts-with xt |
| s" WID" single-type starts-with wid |
s" WID" single-type starts-with wid |
| s" F83Name *" single-type starts-with f83name |
s" struct F83Name *" single-type starts-with f83name |
| |
|
| set-current |
set-current |
| |
|
| cr |
cr |
| ; |
; |
| |
|
| |
: dstack-used? |
| |
effect-in-size 2@ drop |
| |
effect-out-size 2@ drop max 0<> ; |
| |
|
| |
: fstack-used? |
| |
effect-in-size 2@ nip |
| |
effect-out-size 2@ nip max 0<> ; |
| |
|
| |
: output-funclabel ( -- ) |
| |
1 function-number +! |
| |
." &I_" c-name 2@ type ." ," cr ; |
| |
|
| |
: output-forthname ( -- ) |
| |
1 function-number +! |
| |
'" emit forth-name 2@ type '" emit ." ," cr ; |
| |
|
| |
: output-c-func ( -- ) |
| |
\ used for word libraries |
| |
1 function-number +! |
| |
." Cell * I_" c-name 2@ type ." (Cell *SP, Cell **FP) /* " forth-name 2@ type |
| |
." ( " stack-string 2@ type ." ) */" cr |
| |
." /* " doc 2@ type ." */" cr |
| |
." NAME(" [char] " emit forth-name 2@ type [char] " emit ." )" cr |
| |
\ debugging |
| |
." {" cr |
| |
declarations |
| |
compute-offsets \ for everything else |
| |
dstack-used? IF ." Cell *sp=SP;" cr THEN |
| |
fstack-used? IF ." Cell *fp=*FP;" cr THEN |
| |
flush-tos |
| |
fetches |
| |
stack-pointer-updates |
| |
fstack-used? IF ." *FP=fp;" cr THEN |
| |
." {" cr |
| |
." #line " c-line @ . [char] " emit c-filename 2@ type [char] " emit cr |
| |
c-code 2@ type |
| |
." }" cr |
| |
stores |
| |
fill-tos |
| |
." return (sp);" cr |
| |
." }" cr |
| |
cr ; |
| |
|
| : output-label ( -- ) |
: output-label ( -- ) |
| ." &&I_" c-name 2@ type ." ," cr ; |
." (Label)&&I_" c-name 2@ type ." ," cr |
| |
-1 primitive-number +! ; |
| |
|
| : output-alias ( -- ) |
: output-alias ( -- ) |
| primitive-number @ . ." alias " forth-name 2@ type cr |
( primitive-number @ . ." alias " ) ." Primitive " forth-name 2@ type cr |
| -1 primitive-number +! ; |
-1 primitive-number +! ; |
| |
|
| : output-forth ( -- ) |
: output-forth ( -- ) |
| forth-code @ 0= |
forth-code @ 0= |
| IF output-alias |
IF \ output-alias |
| |
\ this is bad for ec: an alias is compiled if tho word does not exist! |
| |
\ JAW |
| ELSE ." : " forth-name 2@ type ." ( " |
ELSE ." : " forth-name 2@ type ." ( " |
| effect-in effect-in-end @ .stack-list ." -- " |
effect-in effect-in-end @ .stack-list ." -- " |
| effect-out effect-out-end @ .stack-list ." )" cr |
effect-out effect-out-end @ .stack-list ." )" cr |
| : process-file ( addr u xt -- ) |
: process-file ( addr u xt -- ) |
| >r |
>r |
| 2dup filename 2! |
2dup filename 2! |
| |
0 function-number ! |
| r/o open-file abort" cannot open file" |
r/o open-file abort" cannot open file" |
| warnings @ if |
warnings @ if |
| ." ------------ CUT HERE -------------" cr endif |
." ------------ CUT HERE -------------" cr endif |
| r> primfilter ; |
r> primfilter ; |
| |
|
| |
: process ( xt -- ) |
| |
bl word count rot |
| |
process-file ; |