\ recognizer-based interpreter 05oct2011py
\ Recognizer are words that take a string and try to figure out
\ what to do with it. I want to separate the parse action from
\ the interpret/compile/postpone action, so that recognizers
\ are more general than just be used for the interpreter.
\ The "design pattern" used here is the *factory*, even though
\ the recognizer does not return a full-blown object.
\ A recognizer has the stack effect
\ ( addr u -- token table true | addr u false )
\ where the token is the result of the parsing action (can be more than
\ one stack or live on other stacks, e.g. on the FP stack)
\ and the table contains for actions (as array of four xts:
\ interpret it, compile interpretation semantics
\ compile it, compile it as literal.
: recognizer: ( xt1 xt2 xt3 -- ) Create rot , swap , , ;
(field) r>int ( r-addr -- addr ) 0 cells ,
(field) r>comp ( r-addr -- ) 1 cells ,
(field) r>lit ( r-addr -- ) 2 cells ,
:noname ( ... nt -- ) name>int execute ;
:noname ( ... nt -- ) name>comp execute ;
:noname ( ... nt -- ) postpone Literal ;
Create r:interpreter rot A, swap A, A,
: int-recognizer ( addr u -- nt int-table true | addr u false )
2dup find-name [ [IFDEF] prelude-mask ] run-prelude [ [THEN] ] dup
IF
nip nip r:interpreter true EXIT
THEN ;
' noop
:noname postpone Literal ;
dup
Create r:number rot A, swap A, A,
' noop
:noname postpone 2Literal ;
dup
Create r:2number rot A, swap A, A,
\ snumber? should be implemented as recognizer stack
: num-recognizer ( addr u -- n/d int-table true | addr u false )
2dup 2>r snumber? dup
IF
2rdrop 0> IF r:2number ELSE r:number THEN true EXIT
THEN
drop 2r> false ;
' no.extensions dup dup Create r:fail A, A, A,
\ recognizer stack
$10 Constant max-rec#
: get-recognizers ( rec-addr -- xt1 .. xtn n )
dup swap @ dup >r cells bounds swap ?DO
I @
cell -LOOP r> ;
: set-recognizers ( xt1 .. xtn n rec-addr -- )
over max-rec# u>= abort" Too many recognizers"
2dup ! cell+ swap cells bounds ?DO
I !
cell +LOOP ;
Variable forth-recognizer
' int-recognizer A, ' num-recognizer A, max-rec# 2 - cells allot
2 forth-recognizer !
\ ' num-recognizer ' int-recognizer 2 forth-recognizer set-recognizers
\ recognizer loop
: do-recognizer ( addr u rec-addr -- token table )
dup cell+ swap @ cells bounds ?DO
I perform IF UNLOOP EXIT THEN
cell +LOOP
r:fail ;
\ nested recognizer helper
: r:table>flag ( table -- table true | false )
dup r:fail <> dup 0= IF nip THEN ;
\ : nest-recognizer ( addr u -- token table true | addr u false )
\ xxx-recognizer do-recognizer r:table>flag ;
: interpreter-r ( addr u -- ... xt )
forth-recognizer do-recognizer r>int @ ;
' interpreter-r IS parser1
: compiler-r ( addr u -- ... xt )
forth-recognizer do-recognizer r>comp @ ;
: [ ( -- ) \ core left-bracket
\G Enter interpretation state. Immediate word.
['] interpreter-r IS parser1 state off ; immediate
: ] ( -- ) \ core right-bracket
\G Enter compilation state.
['] compiler-r IS parser1 state on ;
: >postpone ( token table -- )
dup r:fail = IF no.extensions THEN
>r r@ r>lit perform r> r>comp @ compile, ;
: postpone ( "name" -- ) \ core
\g Compiles the compilation semantics of @i{name}.
parse-name forth-recognizer do-recognizer >postpone ; immediate
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>