184 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			184 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2008 James Cash
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
USING: kernel peg sequences arrays strings 
 | 
						|
namespaces combinators math locals locals.private locals.backend accessors
 | 
						|
vectors syntax lisp.parser assocs parser words
 | 
						|
quotations fry lists summary combinators.short-circuit continuations multiline ;
 | 
						|
IN: lisp
 | 
						|
 | 
						|
DEFER: convert-form
 | 
						|
DEFER: funcall
 | 
						|
DEFER: lookup-var
 | 
						|
DEFER: lookup-macro
 | 
						|
DEFER: lisp-macro?
 | 
						|
DEFER: lisp-var?
 | 
						|
DEFER: define-lisp-macro
 | 
						|
 | 
						|
! Functions to convert s-exps to quotations
 | 
						|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 | 
						|
: convert-body ( cons -- quot )
 | 
						|
    [ ] [ convert-form compose ] foldl ; inline
 | 
						|
 | 
						|
: convert-cond ( cons -- quot )
 | 
						|
    cdr [ 2car [ convert-form ] bi@ 2array ]
 | 
						|
    { } lmap-as '[ _ cond ] ;
 | 
						|
 | 
						|
: convert-general-form ( cons -- quot )
 | 
						|
    uncons [ convert-body ] [ convert-form ] bi* '[ _ @ funcall ] ;
 | 
						|
 | 
						|
! words for convert-lambda
 | 
						|
<PRIVATE
 | 
						|
: localize-body ( assoc body -- newbody )
 | 
						|
    {
 | 
						|
      { [ dup list? ] [ [ lisp-symbol? ] rot '[ [ name>> _ at ] [ ] bi or ] traverse ] }
 | 
						|
      { [ dup lisp-symbol? ] [ name>> swap at ] }
 | 
						|
     [ nip ]
 | 
						|
    } cond ;
 | 
						|
 | 
						|
: localize-lambda ( body vars -- newvars newbody )
 | 
						|
    swap [ make-locals dup push-locals ] dip
 | 
						|
    dupd [ localize-body convert-form ] with lmap>array
 | 
						|
    >quotation swap pop-locals ;
 | 
						|
 | 
						|
: split-lambda ( cons -- body-cons vars-seq )
 | 
						|
    cdr uncons [ name>> ] lmap>array ; inline
 | 
						|
 | 
						|
: rest-lambda ( body vars -- quot )
 | 
						|
    "&rest" swap [ remove ] [ index ] 2bi
 | 
						|
    [ localize-lambda <lambda> lambda-rewrite call ] dip
 | 
						|
    swap '[ _ cut '[ @ _ seq>list ] call _ call call ] 1quotation ;
 | 
						|
 | 
						|
: normal-lambda ( body vars -- quot )
 | 
						|
    localize-lambda <lambda> lambda-rewrite '[ @ compose call call ] 1quotation ;
 | 
						|
PRIVATE>
 | 
						|
 | 
						|
: convert-lambda ( cons -- quot )
 | 
						|
    split-lambda "&rest" over member? [ rest-lambda ] [ normal-lambda ] if ;
 | 
						|
 | 
						|
: convert-quoted ( cons -- quot )
 | 
						|
    cadr 1quotation ;
 | 
						|
 | 
						|
: convert-defmacro ( cons -- quot )
 | 
						|
    cdr [ convert-lambda ] [ car name>> ] bi define-lisp-macro [ ] ;
 | 
						|
 | 
						|
: macro-expand ( cons -- quot )
 | 
						|
    uncons [ list>seq >quotation ] [ lookup-macro ] bi* call call ;
 | 
						|
 | 
						|
<PRIVATE
 | 
						|
: (expand-macros) ( cons -- cons )
 | 
						|
    [ dup list? [ (expand-macros) dup car lisp-macro? [ macro-expand ] when ] when ] lmap ;
 | 
						|
PRIVATE>
 | 
						|
 | 
						|
: expand-macros ( cons -- cons )
 | 
						|
    dup list? [ (expand-macros) dup car lisp-macro? [ macro-expand ] when ] when ;
 | 
						|
 | 
						|
: convert-begin ( cons -- quot )
 | 
						|
    cdr [ convert-form ] [ ] lmap-as [ 1 tail* ] [ but-last ] bi
 | 
						|
    [ '[ { } _ with-datastack drop ] ] map prepend '[ _ [ call ] each ] ;
 | 
						|
 | 
						|
: form-dispatch ( cons lisp-symbol -- quot )
 | 
						|
    name>>
 | 
						|
    { { "lambda" [ convert-lambda ] }
 | 
						|
      { "defmacro" [ convert-defmacro ] }
 | 
						|
      { "quote" [ convert-quoted ] }
 | 
						|
      { "cond" [ convert-cond ] }
 | 
						|
      { "begin" [ convert-begin ] }
 | 
						|
     [ drop convert-general-form ]
 | 
						|
    } case ;
 | 
						|
 | 
						|
: convert-list-form ( cons -- quot )
 | 
						|
    dup car
 | 
						|
    {
 | 
						|
      { [ dup lisp-symbol? ] [ form-dispatch ] }
 | 
						|
     [ drop convert-general-form ]
 | 
						|
    } cond ;
 | 
						|
 | 
						|
: convert-form ( lisp-form -- quot )
 | 
						|
    {
 | 
						|
      { [ dup cons? ] [ convert-list-form ] }
 | 
						|
      { [ dup lisp-var? ] [ lookup-var 1quotation ] }
 | 
						|
      { [ dup lisp-symbol? ] [ '[ _ lookup-var ] ] }
 | 
						|
     [ 1quotation ]
 | 
						|
    } cond ;
 | 
						|
 | 
						|
: lisp-string>factor ( str -- quot )
 | 
						|
    lisp-expr expand-macros convert-form ;
 | 
						|
 | 
						|
: lisp-eval ( str -- * )
 | 
						|
    lisp-string>factor call ;
 | 
						|
 | 
						|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 | 
						|
 | 
						|
SYMBOL: lisp-env
 | 
						|
SYMBOL: macro-env
 | 
						|
 | 
						|
ERROR: no-such-var variable-name ;
 | 
						|
M: no-such-var summary drop "No such variable" ;
 | 
						|
 | 
						|
: init-env ( -- )
 | 
						|
    H{ } clone lisp-env set
 | 
						|
    H{ } clone macro-env set ;
 | 
						|
 | 
						|
: lisp-define ( quot name -- )
 | 
						|
    lisp-env get set-at ;
 | 
						|
    
 | 
						|
: define-lisp-var ( lisp-symbol body --  )
 | 
						|
    swap name>> lisp-define ;
 | 
						|
 | 
						|
: lisp-get ( name -- word )
 | 
						|
    lisp-env get at ;
 | 
						|
 | 
						|
: lookup-var ( lisp-symbol -- quot )
 | 
						|
    [ name>> ] [ lisp-var? ] bi [ lisp-get ] [ no-such-var ] if ;
 | 
						|
 | 
						|
: lisp-var? ( lisp-symbol -- ? )
 | 
						|
    dup lisp-symbol? [ name>> lisp-env get key? ] [ drop f ] if ;
 | 
						|
 | 
						|
: funcall ( quot sym -- * )
 | 
						|
    [ 1array [ call ] with-datastack >quotation ] dip curry call ; inline
 | 
						|
 | 
						|
: define-primitive ( name vocab word -- )
 | 
						|
    swap lookup 1quotation '[ _ compose call ] swap lisp-define ;
 | 
						|
 | 
						|
: lookup-macro ( lisp-symbol -- lambda )
 | 
						|
    name>> macro-env get at ;
 | 
						|
 | 
						|
: define-lisp-macro ( quot name -- )
 | 
						|
    macro-env get set-at ;
 | 
						|
 | 
						|
: lisp-macro? ( car -- ? )
 | 
						|
    dup lisp-symbol? [ name>> macro-env get key? ] [ drop f ] if ;
 | 
						|
 | 
						|
: define-lisp-builtins ( -- )
 | 
						|
   init-env
 | 
						|
 | 
						|
   f "#f" lisp-define
 | 
						|
   t "#t" lisp-define
 | 
						|
 | 
						|
   "+" "math" "+" define-primitive
 | 
						|
   "-" "math" "-" define-primitive
 | 
						|
   "<" "math" "<" define-primitive
 | 
						|
   ">" "math" ">" define-primitive
 | 
						|
 | 
						|
   "cons" "lists" "cons" define-primitive
 | 
						|
   "car" "lists" "car" define-primitive
 | 
						|
   "cdr" "lists" "cdr" define-primitive
 | 
						|
   "append" "lists" "lappend" define-primitive
 | 
						|
   "nil" "lists" "nil" define-primitive
 | 
						|
   "nil?" "lists" "nil?" define-primitive
 | 
						|
 | 
						|
   "set" "lisp" "define-lisp-var" define-primitive
 | 
						|
    
 | 
						|
   "(lambda (&rest xs) xs)" lisp-string>factor first "list" lisp-define
 | 
						|
   "(defmacro setq (var val) (list (quote set) (list (quote quote) var) val))" lisp-eval
 | 
						|
    
 | 
						|
   <" (defmacro defun (name vars &rest body)
 | 
						|
        (list (quote setq) name (list (quote lambda) vars body))) "> lisp-eval
 | 
						|
    
 | 
						|
   "(defmacro if (pred tr fl) (list (quote cond) (list pred tr) (list (quote #t) fl)))" lisp-eval
 | 
						|
   ;
 | 
						|
 | 
						|
: <LISP 
 | 
						|
    "LISP>" parse-multiline-string define-lisp-builtins
 | 
						|
    lisp-string>factor parsed \ call parsed ; parsing
 |