aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChouser <chouser@n01se.net>2015-02-19 18:34:59 -0500
committerChouser <chouser@n01se.net>2015-02-21 13:22:44 -0500
commit6512bd80002eb106a304b035e9592847d90ef23c (patch)
treea6fd47e87c6f0762e556f42364bca7945e74c324
parent224e09ed42325f000ee9a31a500bebe03a1ba97c (diff)
downloadmal-6512bd80002eb106a304b035e9592847d90ef23c.tar.gz
mal-6512bd80002eb106a304b035e9592847d90ef23c.zip
forth: Self-hosted mal passes all tests
-rw-r--r--forth/core.fs8
-rw-r--r--forth/step9_try.fs4
-rw-r--r--forth/stepA_interop.fs392
-rw-r--r--forth/types.fs31
4 files changed, 417 insertions, 18 deletions
diff --git a/forth/core.fs b/forth/core.fs
index 4216574..1a1cc4d 100644
--- a/forth/core.fs
+++ b/forth/core.fs
@@ -202,12 +202,16 @@ defcore apply { argv argc -- val }
more-args MalList/start @ final-argv list0len cells + final-argc list0len - cells cmove
final-argv final-argc argv @ invoke ;;
+defcore throw ( argv argc -- )
+ drop @ to exception-object
+ 1 throw ;;
defcore map? drop @ mal-type @ MalMap = mal-bool ;;
defcore list? drop @ mal-type @ MalList = mal-bool ;;
defcore vector? drop @ mal-type @ MalVector = mal-bool ;;
defcore keyword? drop @ mal-type @ MalKeyword = mal-bool ;;
defcore symbol? drop @ mal-type @ MalSymbol = mal-bool ;;
+defcore atom? drop @ mal-type @ Atom = mal-bool ;;
defcore true? drop @ mal-true = mal-bool ;;
defcore false? drop @ mal-false = mal-bool ;;
defcore nil? drop @ mal-nil = mal-bool ;;
@@ -215,4 +219,6 @@ defcore nil? drop @ mal-nil = mal-bool ;;
defcore sequential? drop @ sequential? ;;
defcore keyword drop @ unpack-str MalKeyword. ;;
-defcore symbol drop @ unpack-str MalSymbol. ;; \ No newline at end of file
+defcore symbol drop @ unpack-str MalSymbol. ;;
+
+defcore time-ms 2drop utime d>s 1000 / MalInt. ;;
diff --git a/forth/step9_try.fs b/forth/step9_try.fs
index 356304a..e7293db 100644
--- a/forth/step9_try.fs
+++ b/forth/step9_try.fs
@@ -272,10 +272,6 @@ defspecial try* { env list -- val }
catch-env catch0 cell+ @ TCO-eval
endif ;;
-defspecial throw ( env list -- )
- MalList/start @ cell+ @ eval to exception-object
- 1 throw ;;
-
MalSymbol
extend mal-eval { env sym -- val }
0 sym env get
diff --git a/forth/stepA_interop.fs b/forth/stepA_interop.fs
new file mode 100644
index 0000000..d25d094
--- /dev/null
+++ b/forth/stepA_interop.fs
@@ -0,0 +1,392 @@
+require reader.fs
+require printer.fs
+require core.fs
+
+core MalEnv. constant repl-env
+
+\ Fully evalutate any Mal object:
+\ def-protocol-method mal-eval ( env ast -- val )
+
+\ Invoke an object, given whole env and unevaluated argument forms:
+\ def-protocol-method eval-invoke ( env list obj -- ... )
+
+\ Invoke a function, given parameter values
+\ def-protocol-method invoke ( argv argc mal-fn -- ... )
+
+99999999 constant TCO-eval
+
+: read read-str ;
+: eval ( env obj )
+ begin
+ \ ." eval-> " dup pr-str safe-type cr
+ mal-eval
+ dup TCO-eval =
+ while
+ drop
+ repeat ;
+: print
+ \ ." Type: " dup mal-type @ type-name safe-type cr
+ pr-str ;
+
+MalDefault extend mal-eval nip ;; drop \ By default, evalutate to yourself
+
+MalKeyword
+ extend eval-invoke { env list kw -- val }
+ 0 kw env list MalList/start @ cell+ @ eval get
+ ?dup 0= if
+ \ compute not-found value
+ list MalList/count @ 1 > if
+ env list MalList/start @ 2 cells + @ TCO-eval
+ else
+ mal-nil
+ endif
+ endif ;;
+ extend invoke { argv argc kw -- val }
+ 0 kw argv @ get
+ ?dup 0= if
+ argc 1 > if
+ argv cell+ @
+ else
+ mal-nil
+ endif
+ endif ;;
+drop
+
+\ eval all but the first item of list
+: eval-rest { env list -- argv argc }
+ list MalList/start @ cell+ { expr-start }
+ list MalList/count @ 1- { argc }
+ argc cells allocate throw { target }
+ argc 0 ?do
+ env expr-start i cells + @ eval
+ target i cells + !
+ loop
+ target argc ;
+
+MalNativeFn
+ extend eval-invoke { env list this -- list }
+ env list eval-rest ( argv argc )
+ this invoke ;;
+ extend invoke ( argv argc this -- val )
+ MalNativeFn/xt @ execute ;;
+drop
+
+SpecialOp
+ extend eval-invoke ( env list this -- list )
+ SpecialOp/xt @ execute ;;
+drop
+
+: install-special ( symbol xt )
+ SpecialOp. repl-env env/set ;
+
+: defspecial
+ parse-allot-name MalSymbol.
+ ['] install-special
+ :noname
+ ;
+
+: is-pair? ( obj -- bool )
+ empty? mal-false = ;
+
+defspecial quote ( env list -- form )
+ nip MalList/start @ cell+ @ ;;
+
+s" concat" MalSymbol. constant concat-sym
+s" cons" MalSymbol. constant cons-sym
+
+defer quasiquote
+: quasiquote0 { ast -- form }
+ ast is-pair? 0= if
+ here quote-sym , ast , here>MalList
+ else
+ ast to-list MalList/start @ { ast-start }
+ ast-start @ { ast[0] }
+ ast[0] unquote-sym m= if
+ ast-start cell+ @
+ else
+ ast[0] is-pair? if
+ ast[0] to-list MalList/start @ { ast[0]-start }
+ ast[0]-start @ splice-unquote-sym m= if
+ here
+ concat-sym ,
+ ast[0]-start cell+ @ ,
+ ast to-list MalList/rest quasiquote ,
+ here>MalList
+ false
+ else true endif
+ else true endif
+ if
+ here
+ cons-sym ,
+ ast[0] quasiquote ,
+ ast to-list MalList/rest quasiquote ,
+ here>MalList
+ endif
+ endif
+ endif ;
+' quasiquote0 is quasiquote
+
+defspecial quasiquote ( env list )
+ MalList/start @ cell+ @ ( ast )
+ quasiquote TCO-eval ;;
+
+defspecial def! { env list -- val }
+ list MalList/start @ cell+ { arg0 }
+ arg0 @ ( key )
+ env arg0 cell+ @ eval dup { val } ( key val )
+ env env/set val ;;
+
+defspecial defmacro! { env list -- val }
+ list MalList/start @ cell+ { arg0 }
+ arg0 @ ( key )
+ env arg0 cell+ @ eval { val }
+ true val MalUserFn/is-macro? !
+ val env env/set
+ val ;;
+
+defspecial let* { old-env list -- val }
+ old-env MalEnv. { env }
+ list MalList/start @ cell+ dup { arg0 }
+ @ to-list
+ dup MalList/start @ { bindings-start } ( list )
+ MalList/count @ 0 +do
+ bindings-start i cells + dup @ swap cell+ @ ( sym expr )
+ env swap eval
+ env env/set
+ 2 +loop
+ env arg0 cell+ @ TCO-eval
+ \ TODO: dec refcount of env
+ ;;
+
+defspecial do { env list -- val }
+ list MalList/start @ { start }
+ list MalList/count @ dup 1- { last } 1 ?do
+ env start i cells + @
+ i last = if
+ TCO-eval
+ else
+ eval drop
+ endif
+ loop ;;
+
+defspecial if { env list -- val }
+ list MalList/start @ cell+ { arg0 }
+ env arg0 @ eval ( test-val )
+ dup mal-false = if
+ drop -1
+ else
+ mal-nil =
+ endif
+ if
+ \ branch to false
+ list MalList/count @ 3 > if
+ env arg0 cell+ cell+ @ TCO-eval
+ else
+ mal-nil
+ endif
+ else
+ \ branch to true
+ env arg0 cell+ @ TCO-eval
+ endif ;;
+
+s" &" MalSymbol. constant &-sym
+
+: new-user-fn-env { argv argc mal-fn -- env }
+ mal-fn MalUserFn/formal-args @ { f-args-list }
+ mal-fn MalUserFn/env @ MalEnv. { env }
+
+ f-args-list MalList/start @ { f-args }
+ f-args-list MalList/count @ ?dup 0= if else
+ \ pass nil for last arg, unless overridden below
+ 1- cells f-args + @ mal-nil env env/set
+ endif
+ argc 0 ?do
+ f-args i cells + @
+ dup &-sym m= if
+ drop
+ argc i - { c }
+ c cells allocate throw { start }
+ argv i cells + start c cells cmove
+ f-args i 1+ cells + @ ( more-args-symbol )
+ start c MalList. env env/set
+ leave
+ endif
+ argv i cells + @
+ env env/set
+ loop
+ env ;
+
+MalUserFn
+ extend eval-invoke { call-env list mal-fn -- list }
+ mal-fn MalUserFn/is-macro? @ if
+ list MalList/start @ cell+ \ argv
+ list MalList/count @ 1- \ argc
+ mal-fn new-user-fn-env { env }
+ env mal-fn MalUserFn/body @ eval
+ call-env swap TCO-eval
+ else
+ call-env list eval-rest
+ mal-fn invoke
+ endif ;;
+
+ extend invoke ( argv argc mal-fn )
+ dup { mal-fn } new-user-fn-env { env }
+ env mal-fn MalUserFn/body @ TCO-eval ;;
+drop
+
+defspecial fn* { env list -- val }
+ list MalList/start @ cell+ { arg0 }
+ MalUserFn new
+ false over MalUserFn/is-macro? !
+ env over MalUserFn/env !
+ arg0 @ to-list over MalUserFn/formal-args !
+ arg0 cell+ @ over MalUserFn/body ! ;;
+
+defspecial macroexpand ( env list[_,form] -- form )
+ MalList/start @ cell+ @ swap over ( form env form )
+ MalList/start @ @ ( form env macro-name-expr )
+ eval { macro-fn } ( form )
+ dup MalList/start @ cell+ swap MalList/count @ 1- macro-fn ( argv argc fn )
+ new-user-fn-env ( env )
+ macro-fn MalUserFn/body @ TCO-eval ;;
+
+5555555555 constant pre-try
+
+defspecial try* { env list -- val }
+ list MalList/start @ cell+ { arg0 }
+ pre-try
+ env arg0 @ ['] eval catch ?dup 0= if
+ nip
+ else { errno }
+ begin pre-try = until
+ errno 1 <> if
+ s" forth-errno" MalKeyword. errno MalInt. MalMap/Empty assoc
+ to exception-object
+ endif
+ arg0 cell+ @ ( list[catch*,sym,form] )
+ MalList/start @ cell+ { catch0 }
+ env MalEnv. { catch-env }
+ catch0 @ exception-object catch-env env/set
+ catch-env catch0 cell+ @ TCO-eval
+ endif ;;
+
+MalSymbol
+ extend mal-eval { env sym -- val }
+ 0 sym env get
+ dup 0= if
+ drop
+ 0 0 s" ' not found" sym as-native s" '" ...throw-str
+ endif ;;
+drop
+
+: eval-ast { env list -- list }
+ here
+ list MalList/start @ { expr-start }
+ list MalList/count @ 0 ?do
+ env expr-start i cells + @ eval ,
+ loop
+ here>MalList ;
+
+MalList
+ extend mal-eval { env list -- val }
+ env list MalList/start @ @ eval
+ env list rot eval-invoke ;;
+drop
+
+MalVector
+ extend mal-eval ( env vector -- vector )
+ MalVector/list @ eval-ast
+ MalVector new swap over MalVector/list ! ;;
+drop
+
+MalMap
+ extend mal-eval ( env map -- map )
+ MalMap/list @ eval-ast
+ MalMap new swap over MalMap/list ! ;;
+drop
+
+defcore eval ( argv argc )
+ drop @ repl-env swap eval ;;
+
+: rep ( str-addr str-len -- val )
+ read
+ repl-env swap eval
+ print ;
+
+: mk-args-list ( -- )
+ here
+ begin
+ next-arg 2dup 0 0 d<> while
+ MalString. ,
+ repeat
+ 2drop here>MalList ;
+
+create buff 128 allot
+77777777777 constant stack-leak-detect
+
+: nop ;
+
+defcore map ( argv argc -- list )
+ drop dup @ swap cell+ @ to-list { fn list }
+ here
+ list MalList/start @ list MalList/count @ cells over + swap +do
+ i 1 fn invoke
+ dup TCO-eval = if drop eval endif
+ ,
+ cell +loop
+ here>MalList ;;
+
+defcore readline ( argv argc -- mal-string )
+ drop @ unpack-str type stdout flush-file drop
+ buff 128 stdin read-line throw
+ if buff swap MalString. else drop mal-nil endif ;;
+
+s\" (def! *host-language* \"forth\")" rep drop
+s\" (def! load-file (fn* (f) (eval (read-string (str \"(do \" (slurp f) \")\")))))" rep drop
+s\" (defmacro! cond (fn* (& xs) (if (> (count xs) 0) (list 'if (first xs) (if (> (count xs) 1) (nth xs 1) (throw \"odd number of forms to cond\")) (cons 'cond (rest (rest xs)))))))" rep drop
+s\" (defmacro! or (fn* (& xs) (if (empty? xs) nil (if (= 1 (count xs)) (first xs) `(let* (or_FIXME ~(first xs)) (if or_FIXME or_FIXME (or ~@(rest xs))))))))" rep drop
+s\" (def! swap! (fn* [a f & args] (reset! a (apply f @a args))))" rep drop
+
+: repl ( -- )
+ s\" (println (str \"Mal [\" *host-language* \"]\"))" rep drop
+ begin
+ ." user> "
+ stack-leak-detect
+ buff 128 stdin read-line throw
+ while ( num-bytes-read )
+ buff swap ( str-addr str-len )
+ ['] rep
+ \ execute ['] nop \ uncomment to see stack traces
+ catch ?dup 0= if
+ safe-type cr
+ stack-leak-detect <> if ." --stack leak--" cr endif
+ else { errno }
+ begin stack-leak-detect = until
+ errno 1 <> if
+ s" forth-errno" MalKeyword. errno MalInt. MalMap/Empty assoc
+ to exception-object
+ endif
+ ." Uncaught mal or forth exception: "
+ exception-object pr-str safe-type cr
+ endif
+ repeat ;
+
+: main ( -- )
+ mk-args-list { args-list }
+ args-list MalList/count @ 0= if
+ s" *ARGV*" MalSymbol. MalList/Empty repl-env env/set
+ repl
+ else
+ args-list MalList/start @ @ { filename }
+ s" *ARGV*" MalSymbol. args-list MalList/rest repl-env env/set
+
+ repl-env
+ here s" load-file" MalSymbol. , filename , here>MalList
+ eval print
+ endif ;
+
+main
+cr
+bye
+
+4 \ No newline at end of file
diff --git a/forth/types.fs b/forth/types.fs
index 1ce74d9..b936603 100644
--- a/forth/types.fs
+++ b/forth/types.fs
@@ -317,21 +317,25 @@ MalList
extend empty? MalList/count @ 0= mal-bool ;;
extend mal-count MalList/count @ MalInt. ;;
extend mal=
- swap to-list dup 0= if
- nip
+ over mal-nil = if
+ 2drop false
else
- 2dup MalList/count @ swap MalList/count @ over = if ( list-a list-b count )
- -rot MalList/start @ swap MalList/start @ { start-b start-a }
- true swap ( return-val count )
- 0 ?do
- start-a i cells + @
- start-b i cells + @
- m= if else
- drop false leave
- endif
- loop
+ swap to-list dup 0= if
+ nip
else
- drop 2drop false
+ 2dup MalList/count @ swap MalList/count @ over = if ( list-a list-b count )
+ -rot MalList/start @ swap MalList/start @ { start-b start-a }
+ true swap ( return-val count )
+ 0 ?do
+ start-a i cells + @
+ start-b i cells + @
+ m= if else
+ drop false leave
+ endif
+ loop
+ else
+ drop 2drop false
+ endif
endif
endif ;;
drop
@@ -434,6 +438,7 @@ MalDefault
extend to-list drop 0 ;;
extend empty? drop mal-true ;;
extend sequential? drop mal-false ;;
+ extend mal= = ;;
drop
MalNil