From 15c8cb327d542607b6faaa90498cdef29a321110 Mon Sep 17 00:00:00 2001 From: JeffBezanson Date: Sun, 2 Aug 2009 04:06:07 +0000 Subject: [PATCH] finishing initial implementation of keyword arguments fixing up interpreter so it can be used for bootstrapping again removing let/copyenv optimization because it really didn't seem to help much --- femtolisp/compiler.lsp | 133 +++++++++++++++++++++++++++-------------- femtolisp/flisp.boot | 2 +- femtolisp/flisp.c | 107 +++++++++++++++++---------------- femtolisp/flisp.h | 2 +- femtolisp/mkboot0.lsp | 4 +- femtolisp/opcodes.h | 13 ++-- femtolisp/unittest.lsp | 11 ++++ 7 files changed, 162 insertions(+), 110 deletions(-) diff --git a/femtolisp/compiler.lsp b/femtolisp/compiler.lsp index ad221d8..ec4357c 100644 --- a/femtolisp/compiler.lsp +++ b/femtolisp/compiler.lsp @@ -22,11 +22,11 @@ setg setg.l seta seta.l setc setc.l - closure argc vargc trycatch copyenv let for tapply + closure argc vargc trycatch for tapply add2 sub2 neg largc lvargc loada0 loada1 loadc00 loadc01 call.l tcall.l brne brne.l cadr brnn brnn.l brn brn.l - optargs brbound + optargs brbound keyargs dummy_t dummy_f dummy_nil])) (for 0 (1- (length keys)) @@ -101,15 +101,18 @@ (let ((lasti (if (pair? (aref e 0)) (car (aref e 0)) ())) (bc (aref e 0))) - (cond ((and (eq? inst 'brf) (eq? lasti 'not) - (eq? (cadr bc) 'null?)) - (aset! e 0 (cons (car args) (cons 'brn (cddr bc))))) - ((and (eq? inst 'brf) (eq? lasti 'not)) - (aset! e 0 (cons (car args) (cons 'brt (cdr bc))))) - ((and (eq? inst 'brf) (eq? lasti 'eq?)) - (aset! e 0 (cons (car args) (cons 'brne (cdr bc))))) - ((and (eq? inst 'brf) (eq? lasti 'null?)) - (aset! e 0 (cons (car args) (cons 'brnn (cdr bc))))) + (cond ((and + (eq? inst 'brf) + (cond ((and (eq? lasti 'not) + (eq? (cadr bc) 'null?)) + (aset! e 0 (cons (car args) (cons 'brn (cddr bc))))) + ((eq? lasti 'not) + (aset! e 0 (cons (car args) (cons 'brt (cdr bc))))) + ((eq? lasti 'eq?) + (aset! e 0 (cons (car args) (cons 'brne (cdr bc))))) + ((eq? lasti 'null?) + (aset! e 0 (cons (car args) (cons 'brnn (cdr bc))))) + (else #f)))) ((and (eq? inst 'brt) (eq? lasti 'null?)) (aset! e 0 (cons (car args) (cons 'brn (cdr bc))))) (else @@ -182,11 +185,14 @@ (io.write bcode (uint8 (aref v i))) (set! i (+ i 1))) - ((loadc.l setc.l optargs) ; 2 int32 args + ((loadc.l setc.l optargs keyargs) ; 2 int32 args (io.write bcode (int32 nxt)) (set! i (+ i 1)) (io.write bcode (int32 (aref v i))) - (set! i (+ i 1))) + (set! i (+ i 1)) + (if (eq? vi 'keyargs) + (begin (io.write bcode (int32 (aref v i))) + (set! i (+ i 1))))) (else ; other number arguments are always uint8 @@ -343,26 +349,7 @@ " arguments."))) (define (compile-app g env tail? x) - (let ((head (car x))) - (if (and (pair? head) - (eq? (car head) 'lambda) - (list? (cadr head)) - (every symbol? (cadr head)) - (not (length> (cadr head) 255))) - (compile-let g env tail? x) - (compile-call g env tail? x)))) - -(define (compile-let g env tail? x) - (let ((head (car x)) - (args (cdr x))) - (unless (length= args (length (cadr head))) - (error "apply: incorrect number of arguments to " head)) - (receive (the-f dept) (compile-f- env head #t) - (emit g 'loadv the-f) - (bcode:cdepth g dept)) - (let ((nargs (compile-arglist g env args))) - (emit g 'copyenv) - (emit g (if tail? 'tcall 'call) (+ 1 nargs))))) + (compile-call g env tail? x)) (define builtin->instruction (let ((b2i (table number? 'number? cons 'cons @@ -485,9 +472,9 @@ (emit g 'trycatch)) (else (compile-app g env tail? x)))))) -(define (compile-f env f . let?) +(define (compile-f env f) (receive (ff ignore) - (apply compile-f- env f let?) + (compile-f- env f) ff)) (define get-defined-vars @@ -507,6 +494,13 @@ (else ()))))) (lambda (expr) (delete-duplicates (get-defined-vars- expr))))) +(define (keyword-arg? x) (and (pair? x) (keyword? (car x)))) +(define (keyword->symbol k) + (if (keyword? k) + (symbol (let ((s (string k))) + (string.sub s 0 (string.dec s (length s))))) + k)) + (define (lambda-vars l) (define (check-formals l o) (or @@ -517,7 +511,12 @@ (and (pair? (car l)) (or (every pair? (cdr l)) (error "compile error: invalid argument list " - o ". optional arguments must come last."))) + o ". optional arguments must come after required.")) + (if (keyword? (caar l)) + (or (every keyword-arg? (cdr l)) + (error "compile error: invalid argument list " + o ". keyword arguments must come last.")) + #t)) (error "compile error: invalid formal argument " (car l) " in list " o)) (check-formals (cdr l) o)) @@ -525,8 +524,8 @@ (error "compile error: invalid argument list " o) (error "compile error: invalid formal argument " l " in list " o)))) (check-formals l l) - (map (lambda (s) (if (pair? s) (car s) s)) - (to-proper l))) + (map! (lambda (s) (if (pair? s) (keyword->symbol (car s)) s)) + (to-proper l))) (define (emit-optional-arg-inits g env opta vars i) ; i is the lexical var index of the opt arg to process next @@ -547,7 +546,7 @@ (lambda (expr) (compile `(lambda () ,expr . ,*defines-processed-token*)))) - (lambda (env f . let?) + (lambda (env f) ; convert lambda to one body expression and process internal defines (define (lambda-body e) (let ((B (if (pair? (cddr e)) @@ -570,15 +569,25 @@ 'lambda (lastcdr f)))) (let* ((nargs (if (atom? args) 0 (length args))) - (nreq (- nargs (length opta)))) + (nreq (- nargs (length opta))) + (kwa (filter keyword-arg? opta))) ; emit argument checking prologue (if (not (null? opta)) - (begin (emit g 'optargs nreq (if (null? atail) nargs (- nargs))) - (emit-optional-arg-inits g env opta vars nreq))) + (begin + (if (null? kwa) + (emit g 'optargs nreq + (if (null? atail) nargs (- nargs))) + (begin + (bcode:indexfor g (make-perfect-hash-table + (map cons + (map car kwa) + (iota (length kwa))))) + (emit g 'keyargs nreq (length kwa) + (if (null? atail) nargs (- nargs))))) + (emit-optional-arg-inits g env opta vars nreq))) - (cond ((not (null? let?)) (emit g 'let)) - ((> nargs 255) (emit g (if (null? atail) + (cond ((> nargs 255) (emit g (if (null? atail) 'largc 'lvargc) nargs)) ((not (null? atail)) (emit g 'vargc nargs)) @@ -661,11 +670,16 @@ (princ (number->string (aref code i))) (set! i (+ i 1))) - ((loadc.l setc.l optargs) + ((loadc.l setc.l optargs keyargs) (princ (number->string (ref-int32-LE code i)) " ") (set! i (+ i 4)) (princ (number->string (ref-int32-LE code i))) - (set! i (+ i 4))) + (set! i (+ i 4)) + (if (eq? inst 'keyargs) + (begin + (princ " ") + (princ (number->string (ref-int32-LE code i)) " ") + (set! i (+ i 4))))) ((brbound) (princ (number->string (ref-int32-LE code i)) " ") @@ -683,4 +697,31 @@ (else #f))))))) +; From SRFI 89 by Marc Feeley (http://srfi.schemers.org/srfi-89/srfi-89.html) +; Copyright (C) Marc Feeley 2006. All Rights Reserved. +; +; "alist" is a list of pairs of the form "(keyword . value)" +; The result is a perfect hash-table represented as a vector of +; length 2*N, where N is the hash modulus. If the keyword K is in +; the hash-table it is at index +; +; X = (* 2 ($hash-keyword K N)) +; +; and the associated value is at index X+1. +(define (make-perfect-hash-table alist) + (define ($hash-keyword key n) (mod0 (abs (hash key)) n)) + (let loop1 ((n (length alist))) + (let ((v (vector.alloc (* 2 n) #f))) + (let loop2 ((lst alist)) + (if (pair? lst) + (let ((key (caar lst))) + (let ((x (* 2 ($hash-keyword key n)))) + (if (aref v x) + (loop1 (+ n 1)) + (begin + (aset! v x key) + (aset! v (+ x 1) (cdar lst)) + (loop2 (cdr lst)))))) + v))))) + #t diff --git a/femtolisp/flisp.boot b/femtolisp/flisp.boot index 8966af4..83b9b76 100644 --- a/femtolisp/flisp.boot +++ b/femtolisp/flisp.boot @@ -1 +1 @@ -(*banner* "; _\n; |_ _ _ |_ _ | . _ _\n; | (-||||_(_)|__|_)|_)\n;-------------------|----------------------------------------------------------\n\n" *syntax-environment* #table(assert #function("<000r1c0~]c1c2c3~L2L2L2L4;" [if raise quote assert-failed]) letrec #function("?000s1e0e0c1L1e2c3~32L1e2c4~32e5\x7f3134L1e2c6~3242;" [nconc lambda map #.car #function("9000r1e0c1L1e2~3142;" [nconc set! copy-list]) copy-list #function("6000r1^;" [])]) backquote #function("7000r1e0~41;" [bq-process]) label #function(":000r2c0~L1c1~\x7fL3L3^L2;" [lambda set!]) do #function("A000s2c0e130\x7fMe2c3~32e2e4~32e2c5~32u46;" [#function("B000vc0~c1g2c2\x7fe3c4L1e5\x81N3132e3c4L1e5i0231e3~L1g432L133L4L3L2L1e3~L1g332L3;" [letrec lambda if nconc begin copy-list]) gensym map #.car cadr #function("7000r1e0~31F680e1~41;~M;" [cddr caddr])]) when #function("<000s1c0~c1\x7fK^L4;" [if begin]) unwind-protect #function("9000r2c0e130e130u43;" [#function("@000vc0\x7fc1_\x81L3L2L1c2c3\x80c1~L1c4\x7fL1c5~L2L3L3L3\x7fL1L3L3;" [let lambda prog1 trycatch begin raise]) gensym]) dotimes #function("<000s1c0~M~\x86u43;" [#function("=000vc0`c1\x7faL3e2c3L1~L1L1e4\x813133L4;" [for - nconc lambda copy-list])]) define-macro #function("?000s1c0c1~ML2e2c3L1~NL1e4\x7f3133L3;" [set-syntax! quote nconc lambda copy-list]) receive #function("@000s2c0c1_\x7fL3e2c1L1~L1e3g23133L3;" [call-with-values lambda nconc copy-list]) unless #function("=000s1c0~^c1\x7fKL4;" [if begin]) let #function(";000s1c0^u42;" [#function("<000v\x80C6D0\x80m02\x81Mo002\x81No01530^2c0e1c2L1e3c4\x8032L1e5\x813133e3c6\x8032u43;" [#function("8000v\x806;0c0\x80~L3530~\x7fK;" [label]) nconc lambda map #function("6000r1~F650~M;~;" []) copy-list #function("6000r1~F650~\x86;^;" [])])]) cond #function(":000s0c0^u42;" [#function("7000vc0qm02~\x8041;" [#function("8000r1~?640^;c0~Mu42;" [#function(";000v~Mc0<17702~M]<6@0~N\x8750~M;c1~NK;~N\x87@0c2~Mi10\x80N31L3;c3~Mc1~NKi10\x80N31L4;" [else begin or if])] cond-clauses->if)])]) throw #function(":000r2c0c1c2c3L2~\x7fL4L2;" [raise list quote thrown-value]) time #function("8000r1c0e130u42;" [#function(">000vc0~c1L1L2L1c2\x80c3c4c5c1L1~L3c6L4L3L3;" [let time.now prog1 princ "Elapsed time: " - " seconds\n"]) gensym]) let* #function("A000s1~?6E0e0c1L1_L1e2\x7f3133L1;e0c1L1e3~31L1L1e2~NF6H0e0c4L1~NL1e2\x7f3133L1530\x7f3133e5~31L2;" [nconc lambda copy-list caar let* cadar]) case #function(";000s1c0^u42;" [#function("8000vc0m02c1e230u42;" [#function(";000r2\x7fc0\x8450c0;\x7f\x8740^;\x7fC6=0c1~e2\x7f31L3;\x7f?6=0c3~e2\x7f31L3;\x7fN\x87>0c3~e2\x7fM31L3;e4c5\x7f326=0c6~c7\x7fL2L3;c8~c7\x7fL2L3;" [else eq? quote-value eqv? every #.symbol? memq quote memv] vals->cond) #function("<000vc0~i10L2L1e1c2L1e3c4qi113232L3;" [let nconc cond map #function("8000r1i10\x80~M32~NK;" [])]) gensym])]) catch #function("8000r2c0e130u42;" [#function("@000vc0\x81c1~L1c2c3c4~L2c5c6~L2c7c8L2L3c5c9~L2\x80L3L4c:~L2c;~L2L4L3L3;" [trycatch lambda if and pair? eq car quote thrown-value cadr caddr raise]) gensym])) *whitespace* "\t\n\v\f\r \u0085  ᠎           \u2028\u2029   " /= #function("7000r2~\x7fW@;" [] /=) 1+ #function("7000r1~ay;" [] 1+) 1- #function("7000r1~az;" [] 1-) 1arg-lambda? #function("8000r1~F16T02~Mc0<16J02~NF16B02~\x86F16:02e1~\x86a42;" [lambda length=] 1arg-lambda?) <= #function("7000r2~\x7fX17602~\x7fW;" [] <=) > #function("7000r2\x7f~X;" [] >) >= #function("7000r2\x7f~X17602~\x7fW;" [] >=) Instructions #table(not 16 vargc 67 load1 49 = 39 setc.l 64 sub2 74 brne.l 85 largc 76 brnn 87 loadc.l 58 loadi8 50 < 40 nop 0 set-cdr! 32 loada 55 bound? 21 / 37 neg 75 brn.l 90 lvargc 77 brt 7 trycatch 68 null? 17 load0 48 jmp.l 8 loadv 51 seta 61 * 36 function? 26 builtin? 23 aref 43 optargs 91 vector? 24 loadt 45 brf 6 symbol? 19 cdr 30 for 71 loadc00 80 pop 2 pair? 22 cadr 86 closure 65 loadf 46 compare 41 loadv.l 52 setg.l 60 brn 89 eqv? 13 aset! 44 eq? 12 atom? 15 boolean? 18 brt.l 10 tapply 72 dummy_nil 95 loada0 78 brbound 92 list 28 dup 1 apply 33 loadc 57 loadc01 81 dummy_t 93 setg 59 loada1 79 tcall.l 83 jmp 5 fixnum? 25 cons 27 loadg.l 54 tcall 4 call 3 - 35 brf.l 9 + 34 dummy_f 94 add2 73 seta.l 62 loadnil 47 brnn.l 88 setc 63 set-car! 31 vector 42 loadg 53 loada.l 56 argc 66 div0 38 ret 11 number? 20 equal? 14 car 29 let 70 call.l 82 copyenv 69 brne 84) __init_globals #function("7000r0c0c1<17B02c0c2<17802c0c3<6>0c4k52c6k75;0c8k52c9k72e:k;2ek?;" [linux win32 win64 windows "\\" *directory-separator* "\r\n" *linefeed* "/" "\n" *stdout* *output-stream* *stdin* *input-stream* *stderr* *error-stream*] __init_globals) __script #function("7000r1c0qc1t;" [#function("7000r0e0\x8041;" [load]) #function("7000r1e0~312e1a41;" [print-exception exit])] __script) __start #function("8000r1e0302~NF6@0~Nk12e2~\x86315A0~k12e3e4312e5302e6`41;" [__init_globals *argv* __script princ *banner* repl exit] __start) abs #function("7000r1~`X650~{;~;" [] abs) any #function("8000r2\x7fF16D02~\x7fM3117:02e0~\x7fN42;" [any] any) arg-counts #table(#.not 1 #.atom? 1 #.number? 1 #.cons 2 #.set-cdr! 2 #.equal? 2 #.fixnum? 1 #.bound? 1 #.eq? 2 #.symbol? 1 #.builtin? 1 #.< 2 #.aset! 3 #.div0 2 #.cdr 1 #.null? 1 #.eqv? 2 #.compare 2 #.aref 2 #.car 1 #.set-car! 2 #.pair? 1 #.= 2 #.vector? 1 #.boolean? 1) argc-error #function("<000r2e0c1~c2\x7f\x7faW670c3540c445;" [error "compile error: " " expects " " argument." " arguments."] argc-error) array? #function("8000r1~H17=02c0e1~31u42;" [#function("7000v~F16802~Mc0<;" [array]) typeof] array?) assoc #function("8000r2\x7f?640^;e0\x7f31~>650\x7fM;e1~\x7fN42;" [caar assoc] assoc) assv #function("8000r2\x7f?640^;e0\x7f31~=650\x7fM;e1~\x7fN42;" [caar assv] assv) bcode:cdepth #function(":000r2~b3e0~b3[\x7f32\\;" [min] bcode:cdepth) bcode:code #function("7000r1~`[;" [] bcode:code) bcode:ctable #function("7000r1~a[;" [] bcode:ctable) bcode:indexfor #function("9000r2c0e1~31e2~31u43;" [#function(":000ve0~\x8132690e1~\x8142;e2~\x81\x7f332\x7f\x80b2\x7fay\\2;" [has? get put!]) bcode:ctable bcode:nconst] bcode:indexfor) bcode:nconst #function("7000r1~b2[;" [] bcode:nconst) bq-bracket #function("8000r1~?6<0c0e1~31L2;~Mc2\x8490c0~\x86L2;~Mc3\x8490c4~\x86L2;~Mc5\x8450~\x86;c0e1~31L2;" [#.list bq-process *comma* *comma-at* copy-list *comma-dot*] bq-bracket) bq-process #function("9000r1c0^^u43;" [#function("<000vc0m02c1m12e2\x80316H0\x80H6A0c3e4e5\x803131u42;\x80;\x80?680c6\x80L2;\x80Mc7\x84=0e4e4\x80\x863141;\x80Mc8\x8450\x80\x86;e9~\x80327C0c:e;\x8031e<\x7f\x8032u43;c=\x80_u43;" [#function("7000r1~F16B02~Mc0<17802~Mc1<17702~c2<;" [*comma-at* *comma-dot* *comma*] splice-form?) #function("7000r1~F16802~Mc0<650~\x86;e1~41;" [*comma* bq-process] bq-bracket1) self-evaluating? #function("8000v~Mc0\x8480c1~NK;c2c1~L3;" [list #.vector #.apply]) bq-process vector->list quote backquote *comma* any #function("8000v~\x8770c0\x7fK;e1c2\x7fKe3~31L142;" [list nconc list* bq-process]) lastcdr map #function(":000v^~F16902~Mc0<@6E02e1~M31\x7fKm12~Nm05\x0f/2c2~F6>0e3\x7f~\x86L1325J0~\x87:0e4\x7f315>0e3\x7fe5~31L132u42;" [*comma* bq-bracket #function("7000v~N\x8750~M;c0~K;" [nconc]) nreconc reverse! bq-process])])] bq-process) builtin->instruction #function("9000r1e0\x80~^43;" [get] [#table(#.number? number? #.cons cons #.fixnum? fixnum? #.equal? equal? #.eq? eq? #.symbol? symbol? #.div0 div0 #.builtin? builtin? #.aset! aset! #.- - #.boolean? boolean? #.not not #.apply apply #.atom? atom? #.set-cdr! set-cdr! #./ / #.function? function? #.vector vector #.list list #.bound? bound? #.< < #.* * #.cdr cdr #.null? null? #.+ + #.eqv? eqv? #.compare compare #.aref aref #.set-car! set-car! #.car car #.pair? pair? #.= = #.vector? vector?) ()]) caaar #function("6000r1~MMM;" [] caaar) caadr #function("6000r1~\x86M;" [] caadr) caar #function("6000r1~MM;" [] caar) cadar #function("6000r1~M\x86;" [] cadar) cadddr #function("6000r1~NN\x86;" [] cadddr) caddr #function("6000r1~N\x86;" [] caddr) cadr #function("6000r1~\x86;" [] cadr) call-with-values #function("8000r2c0~30u42;" [#function("7000v~F16902i10~M<680\x81~Nx2;\x81~41;" [])] #4=[(*values*) ()]) cdaar #function("6000r1~MMN;" [] cdaar) cdadr #function("6000r1~\x86N;" [] cdadr) cdar #function("6000r1~MN;" [] cdar) cddar #function("6000r1~MNN;" [] cddar) cdddr #function("6000r1~NNN;" [] cdddr) cddr #function("6000r1~NN;" [] cddr) char? #function("7000r1e0~31c1<;" [typeof wchar] char?) closure? #function("7000r1~J16602~G@;" [] closure?) compile #function("8000r1e0_~42;" [compile-f] compile) compile-and #function("<000r4e0~\x7fg2g3]c146;" [compile-short-circuit brf] compile-and) compile-app #function("8000r4c0g3Mu42;" [#function(":000v~F16^02~Mc0<16T02e1~\x863116I02e2c3~\x863216<02e4~\x86c532@6?0e6\x80\x81i02i0344;e7\x80\x81i02i0344;" [lambda list? every #.symbol? length> 255 compile-let compile-call])] compile-app) compile-arglist #function("8000r3e0c1qg2322e2g241;" [for-each #function(":000r1e0\x80\x81^~44;" [compile-in]) length] compile-arglist) compile-begin #function(":000r4g3?6<0e0~\x7fg2^44;g3N?6>0e0~\x7fg2g3M44;e0~\x7f^g3M342e1~c2322e3~\x7fg2g3N44;" [compile-in emit pop compile-begin] compile-begin) compile-builtin-call #function(":000r7c0e1e2g5^33u42;" [#function("9000v~16=02e0i03N~32@6=0e1i04~32530^2c2i05u42;" [length= argc-error #function("N000v~c0\x84R0i16`W6<0e1i10c242;e1i10i15i1643;~c3\x84e0i16`W6<0e1i10c442;i16b2W6<0e1i10c542;e1i10i15i1643;~c6\x84v0i16`W6;0e7i14a42;i16aW6<0e1i10c842;i16b2W6<0e1i10c942;e1i10i15i1643;~c:\x84R0i16`W6<0e1i10c;42;e1i10i15i1643;~c<\x84Q0i16`W6;0e7i14a42;e1i10i15i1643;~c=\x84T0i16`W6>0e1i10c>c?43;e1i10i15i1643;~c@\x84]0i16b2X6<0e7i14b242;e1i10i12670cA540c@i1643;e1i10i1542;" [list emit loadnil + load0 add2 - argc-error neg sub2 * load1 / vector loadv [] apply tapply])]) get arg-counts] compile-builtin-call) compile-call #function("8000r4c0g3Mu42;" [#function("9000vc0~C16V02e1~\x8132@16J02~E16C02e2~3116902e3~31G6:0e3~31530~u42;" [#function(":000ve0i13Nc1326S0e2i10i11^~342c3e4i10i11i13N33u42;c5~G16802e6~31u42;" [length> 255 compile-in #function(":000ve0i20i22670c1540c2~43;" [emit tcall.l call.l]) compile-arglist #function(";000v\x80c0<16X02e1\x80i2132@16J02e2c031e0>16<02e3i23b2326L0e4i20i21^i23\x86342e5i20c042;~7A0e4i20i21^\x8034530^2c6e7i20i21i23N33u42;" [cadr in-env? top-level-value length= compile-in emit #function("=000v\x806H0e0i30i31i32i33i10\x80~47;e1i30i32670c2540c3~43;" [compile-builtin-call emit tcall call]) compile-arglist]) builtin->instruction]) in-env? constant? top-level-value])] compile-call) compile-f #function("<000s2e0c1qc242;" [call-with-values #function("9000r0e0\x80\x81i02x4;" [compile-f-]) #function("6000r2~;" [])] compile-f) compile-f- #function("<000s2c0^u42;" [#function("=000vc0qm02c1e230\x81\x86e3\x81\x8631e4\x81\x8631e5c6\x81\x8632e3\x8131i10\x8470c7570e3\x8131u47;" [#function(":000r1c0e1~31F6N0e2~31F6=0c3e1~31K570e4~31530^u42;" [#function("8000vc0e1~31u42;" [#function(";000v~\x8740\x80;e0c1~\x80i4034e2c3~32K;" [list* lambda map #function("6000r1^;" [])]) get-defined-vars]) cddr cdddr begin caddr] lambda-body) #function("9000vc0\x7f?660`570e1\x7f31u42;" [#function("9000vc0~e1i0431zu42;" [#function("E000vi14\x89]0e0i10c1~i12\x8760\x80540\x80{342e2i10i30i14i13~35530^2i32\x89>0e0i10c3325{0e4\x80c5326J0e0i10i12\x8770c6540c7\x80335Y0i12\x89?0e0i10c8\x80335F0i14\x87?0e0i10c9\x8033530^2e:i10i13i30K]e;i3131i40\x84<0ee?e@eAi103131eBi1031i1533i10b3[42;" [emit optargs emit-optional-arg-inits let > 255 largc lvargc vargc argc compile-in lastcdr caddr ret values function encode-byte-code bcode:code const-to-idx-vec]) length]) length]) make-code-emitter lastcdr lambda-vars filter #.pair? lambda])] #0=[#:g602 ()]) compile-for #function(":000r5e0g4316X0e1~\x7f^g2342e1~\x7f^g3342e1~\x7f^g4342e2~c342;e4c541;" [1arg-lambda? compile-in emit for error "for: third form must be a 1-argument lambda"] compile-for) compile-if #function("=000r4c0e1~31e1~31g3\x86e2g331e3g331F6;0e4g331530^u46;" [#function("=000vg2]\x84>0e0\x80\x81i02g344;g2^\x84>0e0\x80\x81i02g444;e0\x80\x81^g2342e1\x80c2~332e0\x80\x81i02g3342i026<0e1\x80c3325:0e1\x80c4\x7f332e5\x80~322e0\x80\x81i02g4342e5\x80\x7f42;" [compile-in emit brf ret jmp mark-label]) make-label caddr cdddr cadddr] compile-if) compile-in #function(":000r4g3C6=0e0~\x7fg3c144;g3?6\x950g3`\x84:0e2~c342;g3a\x84:0e2~c442;g3]\x84:0e2~c542;g3^\x84:0e2~c642;g3_\x84:0e2~c742;e8g3316<0e2~c9g343;e2~c:g343;c;g3Mu42;" [compile-sym [loada loadc loadg] emit load0 load1 loadt loadf loadnil fits-i8 loadi8 loadv #function("S000v~c0\x84>0e1\x80c2i03\x8643;~c3\x84?0e4\x80\x81i02i0344;~c5\x84@0e6\x80\x81i02i03N44;~c7\x84<0e8\x80\x81i0343;~c9\x84=0e:c;qc\x80\x81i02i03N44;~c?\x84@0e@\x80\x81i02i03N44;~cA\x84G0eB\x80\x81i03\x86c5eCi0331K44;~cD\x84K0eE\x80\x81i03\x86eFi0331eGi033145;~cH\x84F0eI\x80\x81]i03\x86342e1\x80cJ42;~cK\x84N0eI\x80\x81^eFi0331342eL\x80\x81i03\x86cM44;~cN\x84K0eI\x80\x81i02eOi03\x86eCi03313244;~cP\x84s0eI\x80\x81^c9_i03\x86L3342eQeFi033131660^580eRcS312eI\x80\x81^eFi0331342e1\x80cP42;eT\x80\x81i02i0344;" [quote emit loadv if compile-if begin compile-begin prog1 compile-prog1 lambda call-with-values #function("8000r0e0i11i1342;" [compile-f-]) #function("9000r2e0i10c1~332e2i10\x7f322\x7fe3i1131X6<0e0i10c442;^;" [emit loadv bcode:cdepth nnn closure]) and compile-and or compile-or while compile-while cddr for compile-for caddr cadddr return compile-in ret set! compile-sym [seta setc setg] define expand-define trycatch 1arg-lambda? error "trycatch: second form must be a 1-argument lambda" compile-app])] compile-in) compile-let #function("9000r4c0g3Mg3Nu43;" [#function(";000ve0\x7fe1~\x863132660^590e2c3~322e4c5qc6q322c7e8\x80\x81\x7f33u42;" [length= length error "apply: incorrect number of arguments to " call-with-values #function("9000r0e0i11\x80]43;" [compile-f-]) #function("9000r2e0i10c1~332e2i10\x7f42;" [emit loadv bcode:cdepth]) #function(";000ve0i10c1322e0i10i12670c2540c3a~y43;" [emit copyenv tcall call]) compile-arglist])] compile-let) compile-or #function("<000r4e0~\x7fg2g3^c146;" [compile-short-circuit brt] compile-or) compile-prog1 #function(";000r3e0~\x7f^g2\x86342e1g231F6H0e2~\x7f^e1g231342e3~c442;^;" [compile-in cddr compile-begin emit pop] compile-prog1) compile-short-circuit #function(":000r6g3?6=0e0~\x7fg2g444;g3N?6>0e0~\x7fg2g3M44;c1e2~31u42;" [compile-in #function("<000ve0\x80\x81^i03M342e1\x80c2322e1\x80i05~332e1\x80c3322e4\x80\x81i02i03Ni04i05362e5\x80~42;" [compile-in emit dup pop compile-short-circuit mark-label]) make-label] compile-short-circuit) compile-sym #function(";000r4c0e1g2\x7f`]34u42;" [#function("8000vc0~Mu42;" [#function(">000v~c0\x84A0e1i10i13`[\x80\x8643;~c2\x84[0e1i10i13a[\x80\x86e3\x8031342e4i10e5i11N31a\x80\x86S342;e6i123116>02e7e8i1231316C0e1i10c9e8i123143;e1i10i13b2[i1243;" [arg emit closed caddr bcode:cdepth nnn constant? printable? top-level-value loadv])]) lookup-sym] compile-sym) compile-thunk #function(";000r1e0e1c2L1_L1~L1\x803441;" [compile nconc lambda] #0#) compile-while #function("9000r4c0e1~31e1~31u43;" [#function(":000ve0\x80\x81^^342e1\x80~322e0\x80\x81^i02342e2\x80c3\x7f332e2\x80c4322e0\x80\x81^i03342e2\x80c5~332e1\x80\x7f42;" [compile-in mark-label emit brf pop jmp]) make-label] compile-while) const-to-idx-vec #function("9000r1c0e1e2~3131u42;" [#function("9000ve0c1qe2\x8031322~;" [table.foreach #function("8000r2\x80\x7f~\\;" []) bcode:ctable]) vector.alloc bcode:nconst] const-to-idx-vec) copy-tree #function("8000r1~?640~;e0~M31e0~N31K;" [copy-tree] copy-tree) count #function("8000r2c0^u42;" [#function("9000vc0qm02~\x80\x81`43;" [#function("9000r3\x7f\x8750g2;\x80~\x7fN~\x7fM31690g2ay540g243;" [] count-)])] count) delete-duplicates #function("9000r1~?640~;c0~M~Nu43;" [#function("8000ve0~\x7f32680e1\x7f41;~e1\x7f31K;" [member delete-duplicates])] delete-duplicates) disassemble #function(">000s1\x7f\x87C0e0~`322e1302];530^2c2\x7fMe3~31e4~31u44;" [disassemble newline #function("8000vc0^u42;" [#function(":000vc0qm02`\x80azc1w2e2c3e4\x81`32c5332c6b4e7\x8131u43;" [#function("9000r1~J16602~G@6D0e0c1312e2~i10ay42;e3~41;" [princ "\n" disassemble print] print-val) #function("7000r1e0c141;" [princ "\t"]) princ "maxstack " ref-int32-LE "\n" #function(":000v^~\x7fX6E02c0e1c2q^e333u325\x19/;" [#function(";000ve0\x80b432690e130530^2`i20azc2w2e3e4\x80b4z31c5e6~31c7342\x80ayo002c8~u42;" [> newline #function("7000r1e0c141;" [princ "\t"]) princ hex5 ": " string "\t" #function("=000ve0~c1326P0i20i32e2i31i1032[312i10b4yo10;e0~c3326L0i20i32i31i10[[312i10ayo10;e0~c4326K0e5e6i31i10[31312i10ayo10;e0~c7326O0e5e6e2i31i103231312i10b4yo10;e0~c8326f0e5e6i31i10[31c9322i10ayo102e5e6i31i10[31312i10ayo10;e0~c:326n0e5e6e2i31i103231c9322i10b4yo102e5e6e2i31i103231312i10b4yo10;~c;=6w0e5e6e2i31i103231c9322i10b4yo102e5c326X0e5cstring (loada.l seta.l largc lvargc call.l tcall.l) (loadc setc) " " (loadc.l setc.l optargs) brbound "@" hex5 (jmp brf brt brne brnn brn) ref-int16-LE (jmp.l brf.l brt.l brne.l brnn.l brn.l)])]) table.foldl #function("8000r3g217@02\x7fi21\x80[<16402~;" []) Instructions]) length])]) function:code function:vals] disassemble) display #function("7000r1e0~312];" [princ] display) div #function("8000r2~\x7fV~`X16C02\x7f`X16402a17502b/17402`y;" [] div) emit #function("I000s2g2\x87b0\x7fc0<16C02~`[F16:02~`[Mc1<6;0~`[c2O5:0~`\x7f~`[K\\5\xe20e3\x7fc4326A0e5~g2M32L1m2530^2c6e7\x7fc832u322c9e7\x7fc:32u322\x7fc;\x84\\0g2c<>6=0c=m12_m25F0g2c>>6=0c?m12_m2530^530^2\x7fc@\x84\\0g2cA>6=0cBm12_m25F0g2cC>6=0cDm12_m2530^530^2cE~`[F690~`[M530_~`[u332~;" [car cdr cadr memq (loadv loadg setg) bcode:indexfor #function("8000v~16=02e0i02Mc132680~\x86o01;^;" [> 255]) assq ((loadv loadv.l) (loadg loadg.l) (setg setg.l) (loada loada.l) (seta seta.l)) #function("8000v~16L02e0i02Mc13217=02e0i02\x86c132680~\x86o01;^;" [> 255]) ((loadc loadc.l) (setc setc.l)) loada (0) loada0 (1) loada1 loadc (0 0) loadc00 (0 1) loadc01 #function(";000v\x81c0<16A02~c1<16802\x7f\x86c2<6C0\x80`i02Mc3e4\x7f31KK\\;\x81c0<16702~c1<6@0\x80`i02Mc5\x7fNKK\\;\x81c0<16702~c6<6@0\x80`i02Mc7\x7fNKK\\;\x81c0<16702~c2<6@0\x80`i02Mc8\x7fNKK\\;\x81c5<16702~c2<6@0\x80`i02Mc3\x7fNKK\\;\x80`e9\x81i02K\x7f32\\;" [brf not null? brn cddr brt eq? brne brnn nreconc])] emit) emit-optional-arg-inits #function("8000r5g2F6=0c0e1~31u42;^;" [#function("<000ve0\x80c1i04~342e2\x80e3i03i0432\x81K^e4i0231342e0\x80c5i04332e0\x80c6322e7\x80~322e8\x80\x81i02Ni03i04ay45;" [emit brbound compile-in list-head cadar seta pop mark-label emit-optional-arg-inits]) make-label] emit-optional-arg-inits) encode-byte-code #function("8000r1c0e1~31u42;" [#function("8000vc0e1~31u42;" [#function(";000vc0e1e2~31b3e2~31b2VT2yc332u42;" [#function(">000vc0e1\x8031`e230e230e330^^u48;" [#function("B000ve0g4c1322^\x7f~X6#02i10\x7f[m52g5c2\x84O0e3g2i10\x7fay[e4g431332\x7fb2ym15\xf30e0g4e5e6e7\x806<0c8g5u32540g53231322\x7faym12\x7f~X6:0i10\x7f[530^m62e9g5c:326^0e3g3e4g431g6332e0g4\x80670e;540e<`31322\x7faym15\x830g5c=\x84k0e0g4e;g631322\x7faym12e3g3e4g431i10\x7f[332e0g4e;`31322\x7faym15C0g6D6<0c>g5u32530^5;/2e?c@qg3322eAg441;" [io.write #int32(0) label put! sizeof byte get Instructions #function("9000v~c0\x8450c1;~c2\x8450c3;~c4\x8450c5;~c6\x8450c7;~c8\x8450c9;~c:\x8450c;;i05;" [jmp jmp.l brt brt.l brf brf.l brne brne.l brnn brnn.l brn brn.l]) memq (jmp brf brt brne brnn brn) int32 int16 brbound #function(":000ve0~c1326H0e2i04e3i0631322\x81ayo01;e0~c4326`0e2i04e5i0631322\x81ayo012e2i04e5i20\x81[31322\x81ayo01;e0~c6326`0e2i04e3i0631322\x81ayo012e2i04e3i20\x81[31322\x81ayo01;e2i04e5i0631322\x81ayo01;" [memq (loadv.l loadg.l setg.l loada.l seta.l largc lvargc call.l tcall.l) io.write int32 (loadc setc) uint8 (loadc.l setc.l optargs)]) table.foreach #function("<000r2e0i04~322e1i04i10670e2540e3e4i02\x7f32~z3142;" [io.seek io.write int32 int16 get]) io.tostring!]) length table buffer]) >= length 65536]) list->vector]) reverse!] encode-byte-code) error #function(":000s0e0c1~K41;" [raise error] error) eval #function("8000r1e0e1~313140;" [compile-thunk expand] eval) even? #function("8000r1e0~a32`W;" [logand] even?) every #function("8000r2\x7f?17D02~\x7fM3116:02e0~\x7fN42;" [every] every) expand #function("7000r1e0~41;" [macroexpand] expand) expand-define #function("<000r2~C6:0c0~\x7fML3;c0~Me1c2L1~NL1e3\x7f31~M34L3;" [set! nconc lambda copy-list] expand-define) filter #function("8000r2c0^u42;" [#function("9000vc0qm02~\x80\x81_L143;" [#function("9000r3g2^\x7fF6S02i10\x7fM316?0g2\x7fM_KPNm2530^2\x7fNm15\f/2N;" [] filter-)])] filter) fits-i8 #function("8000r1~I16F02e0~b\xb03216:02e1~b\xaf42;" [>= <=] fits-i8) foldl #function(";000r3g2\x8740\x7f;e0~~g2M\x7f32g2N43;" [foldl] foldl) foldr #function("<000r3g2\x8740\x7f;~g2Me0~\x7fg2N3342;" [foldr] foldr) for-each #function("8000r2\x7fF6@0~\x7fM312e0~\x7fN42;];" [for-each] for-each) get-defined-vars #function("8000r1e0\x80~3141;" [delete-duplicates] #1=[#function(":000r1~?640_;~Mc0<16602~NF6d0~\x86C16702~\x86L117S02~\x86F16E02e1~31C16:02e1~31L117402_;~Mc2\x84>0e3e4\x80~N32x2;_;" [define caadr begin append map] #1#) ()]) hex5 #function("9000r1e0e1~b@32b5c243;" [string.lpad number->string #\0] hex5) identity #function("6000r1~;" [] identity) in-env? #function("8000r2e0c1q\x7f42;" [any #function("8000r1e0\x80~42;" [memq])] in-env?) index-of #function(";000r3\x7f\x8740^;~\x7fM\x8450g2;e0~\x7fNg2ay43;" [index-of] index-of) io.readline #function("8000r1e0~c142;" [io.readuntil #\x000a] io.readline) io.readlines #function("8000r1e0e1~42;" [read-all-of io.readline] io.readlines) iota #function("8000r1e0e1~42;" [map-int identity] iota) lambda-vars #function("8000r1c0^u42;" [#function("9000vc0qm02~\x80\x80322e1c2e3\x803142;" [#function(":000r2~A17\x9e02~C17\x9702~F16t02~MC17a02~MF16I02e0c1~N3217<02e2c3\x7fc43317>02e2c5~Mc6\x7f3416902\x80~N\x7f3217J02~\x7f\x84:0e2c3\x7f42;e2c5~c6\x7f44;" [every #.pair? error "compile error: invalid argument list " ". optional arguments must come last." "compile error: invalid formal argument " " in list "] check-formals) map #function("6000r1~F650~M;~;" []) to-proper])] lambda-vars) last-pair #function("7000r1~N?640~;e0~N41;" [last-pair] last-pair) lastcdr #function("7000r1~?640~;e0~31N;" [last-pair] lastcdr) length= #function("9000r2\x7f`X640^;\x7f`W650~?;~?660\x7f`W;e0~N\x7faz42;" [length=] length=) length> #function("9000r2\x7f`X640~;\x7f`W6;0~F16402~;~?660\x7f`X;e0~N\x7faz42;" [length>] length>) list->vector #function("7000r1c0~x2;" [#.vector] list->vector) list-head #function(":000r2e0\x7f`32640_;~Me1~N\x7faz32K;" [<= list-head] list-head) list-ref #function("8000r2e0~\x7f32M;" [list-tail] list-ref) list-tail #function("9000r2e0\x7f`32640~;e1~N\x7faz42;" [<= list-tail] list-tail) list? #function("7000r1~A17@02~F16902e0~N41;" [list?] list?) load #function("9000r1c0e1~c232u42;" [#function("7000vc0qc1qt;" [#function("9000r0c0^u32^^^43;" [#function("6000vc0qm0;" [#function(":000r3e0i10317C0\x80e1i1031~e2\x7f3143;e3i10312e2\x7f41;" [io.eof? read load-process io.close])])]) #function("9000r1e0\x80312e1c2i10~L341;" [io.close raise load-error])]) file :read] load) load-process #function("7000r1e0~41;" [eval] load-process) lookup-sym #function("8000r4\x7f\x8750c0;c1\x7fMu42;" [(global) #function(":000vc0e1\x80~`33u42;" [#function(";000v~6G0i13680c0~L2;c1i12~L3;e2i10i11Ni1317502\x80A680i12570i12ay^44;" [arg closed lookup-sym]) index-of])] lookup-sym) macrocall? #function("9000r1~MC16<02e0e1~M^43;" [get *syntax-environment*] macrocall?) macroexpand #function("8000r1c0^u42;" [#function("8000vc0qm02~\x80_42;" [#function("9000r2~?640~;c0e1~M\x7f32u42;" [#function("9000v~6C0i10~\x86\x80NQ2e0~3142;c1e2\x8031u42;" [caddr #function("C000v~6B0i20~i10NQ2i1142;i10Mc0\x8460i10;i10Mc1\x84V0e2c1L1i10\x86L1e3c4qe5i103132e6i103144;i10Mc7\x84O0e2c7L1i10\x86L1e3c8qe5i10313243;i10Mc9\x84T0c:i10\x86e2c1L1_L1e;e5i10313133L1u43;e3c000ve0i10e1e2c3~e2e4~3233Q2322e5i10e642;" [io.print nconc map #.list top-level-value io.write *linefeed*]) filter #function("9000r1~E16w02e0~31@16l02e1~31G@17C02e2~31e2e1~3131>@16K02e3~i1132@16=02e4e1~3131@;" [constant? top-level-value string memq iostream?]) simple-sort environment]) #function("7000r1\x80302e0~41;" [raise])]) #function("7000r0e0\x80312i02k1;" [io.close *print-pretty*])]) file :write :create :truncate (*linefeed* *directory-separator* *argv* that *print-pretty* *print-width* *print-readably*) *print-pretty*] make-system-image) map #function("=000s2c0^^u43;" [#function("9000vc0m02c1qm12i02\x87;0~\x80\x81_L143;\x7f\x80\x81i02K42;" [#function("9000r3g2^\x7fF6H02g2~\x7fM31_KPNm22\x7fNm15\x17/2N;" [] map1) #function("=000r2\x7fM\x8740_;~\x80c0\x7f_L133Q2\x81~\x80c1\x7f_L13332K;" [#.car #.cdr] mapn)])] map) map! #function("9000r2\x7f^\x7fF6B02\x7f~\x7fM31O2\x7fNm15\x1d/2;" [] map!) map-int #function("9000r2e0\x7f`32640_;c1~`31_K_u43;" [<= #function(":000v~m12a\x81azc0qw2~;" [#function("8000r1\x81i10~31_KP2\x81No01;" [])])] map-int) mark-label #function("9000r2e0~c1\x7f43;" [emit label] mark-label) max #function("=000s1\x7f\x8740~;e0c1~\x7f43;" [foldl #function("7000r2~\x7fX640\x7f;~;" [])] max) member #function("8000r2\x7f?640^;\x7fM~>640\x7f;e0~\x7fN42;" [member] member) memv #function("8000r2\x7f?640^;\x7fM~=640\x7f;e0~\x7fN42;" [memv] memv) min #function("=000s1\x7f\x8740~;e0c1~\x7f43;" [foldl #function("7000r2~\x7fX640~;\x7f;" [])] min) mod #function("9000r2~e0~\x7f32\x7fT2z;" [div] mod) mod0 #2=#function("8000r2~~\x7fV\x7fT2z;" [] mod0) negative? #function("7000r1~`X;" [] negative?) nestlist #function(";000r3e0g2`32640_;\x7fe1~~\x7f31g2az33K;" [<= nestlist] nestlist) newline #function("7000r0e0e1312];" [princ *linefeed*] newline) nnn #function("8000r1e0c1~42;" [count #function("6000r1~A@;" [])] nnn) nreconc #function("8000r2e0e1~31\x7f42;" [nconc reverse!] nreconc) odd? #function("7000r1e0~31@;" [even?] odd?) positive? #function("8000r1e0~`42;" [>] positive?) princ #function(":000s0e0e1~x3;" [io.princ *output-stream*] princ) print #function(":000s0e0e1~x3;" [io.print *output-stream*] print) print-exception #function("9000r1c0^^u43;" [#function("<000vc0m02c1m12\x80F16D02\x80Mc2<16:02e3\x80b4326N0~c4\x80\x86c5e6\x8031c7352\x7fe8\x8031315\xc90\x80F16@02\x80Mc9<16602\x80NF6>0~c:\x80\x86c;335\xa60\x80F16802\x80Mc<<6@0~c=312~\x80NQ25\x890\x80F16802\x80Mc><6F0e?e6\x8031312~c@\x80\x86325f0eA\x803116:02e3\x80b2326H0\x7f\x80M312~cB312cC\x80\x86u325<0~cD312\x7f\x80312~eE41;" [#function(":000s0e0e1~x3;" [io.princ *error-stream*] eprinc) #function(":000s0e0e1~x3;" [io.print *error-stream*] eprint) type-error length= "type-error: " ": expected " caddr ", got " cadddr unbound-error "unbound-error: eval: variable " " has no value" error "error: " load-error print-exception "in file " list? ": " #function("8000ve0~3117502~C660\x80530\x81~41;" [string?]) "*** Unhandled exception: " *linefeed*])] print-exception) print-stack-trace #function("9000r1c0^^u43;" [#function("<000vc0qm02c1qm12c2e3e4\x80b53231e5e6e7c8e9303232`u44;" [#function("8000r3c0e1~31g2Ku42;" [#function(":000ve0\x8031e0\x8131\x84>0e1c2c3~L341;c4e5\x8031u42;" [function:code raise thrown-value ffound #function(":000v`e0e1~3131c2qw;" [1- length #function("9000r1e0\x80~[316A0i30\x80~[i21i1043;^;" [closure?])]) function:vals]) function:name] find-in-f) #function("8000r2c0c1qc2tu42;" [#function(";000v~6H0e0e1e2e3e4~3132c53241;c6;" [symbol string.join map string reverse! "/" lambda]) #function("8000r0e0c1q\x81322^;" [for-each #function("9000r1i10~\x80_43;" [])]) #function("7000r1~F16B02~Mc0<16802~\x86c1<680e2~41;e3~41;" [thrown-value ffound caddr raise])] fn-name) #function("8000ve0c1q~42;" [for-each #function("9000r1e0c1i02c2332e3i11~`[\x8132e4~31NK312e5302i02ayo02;" [princ "#" " " print vector->list newline])]) reverse! list-tail filter closure? map #function("7000r1~E16802e0~41;" [top-level-value]) environment])] print-stack-trace) print-to-string #function("8000r1c0e130u42;" [#function("8000ve0~\x80322e1~41;" [io.print io.tostring!]) buffer] print-to-string) printable? #function("7000r1e0~31@;" [iostream?] printable?) println #function("9000s0e0~Q2e1302;" [print newline] println) quote-value #function("7000r1e0~31640~;c1~L2;" [self-evaluating? quote] quote-value) quotient #.div0 random #function("8000r1e0~316<0e1e230~42;e330~T2;" [integer? mod rand rand.double] random) read-all #function("8000r1e0e1~42;" [read-all-of read] read-all) read-all-of #function("9000r2c0^u32_~\x7f3142;" [#function("6000vc0qm0;" [#function("9000r2e0i1131680e1~41;\x80\x7f~Ki10i113142;" [io.eof? reverse!])])] read-all-of) ref-int16-LE #function(";000r2e0e1~\x7f`y[`32e1~\x7fay[b832y41;" [int16 ash] ref-int16-LE) ref-int32-LE #function("=000r2e0e1~\x7f`y[`32e1~\x7fay[b832e1~\x7fb2y[b@32e1~\x7fb3y[bH32R441;" [int32 ash] ref-int32-LE) remainder #2# repl #function("9000r0c0^^u43;" [#function("6000vc0m02c1qm12\x7f302e240;" [#function("8000r0e0c1312e2e3312c4c5c6tu42;" [princ "> " io.flush *output-stream* #function("8000ve0e131@16=02c2e3~31u42;" [io.eof? *input-stream* #function("7000ve0~312~k12];" [print that]) load-process]) #function("6000r0e040;" [read]) #function("7000r1e0e1312e2~41;" [io.discardbuffer *input-stream* raise])] prompt) #function("7000r0c0qc1t6;0e2302\x8140;^;" [#function("7000r0\x803016702e040;" [newline]) #function("7000r1e0~312e1e230312];" [print-exception print-stack-trace stacktrace]) newline] reploop) newline])] repl) revappend #function("8000r2e0e1~31\x7f42;" [nconc reverse] revappend) reverse #function("9000r1e0c1_~43;" [foldl #.cons] reverse) reverse! #function("8000r1c0_u42;" [#function("9000v^\x80F6C02\x80N\x80~\x80m02P2o005\x1c/2~;" [])] reverse!) self-evaluating? #function("8000r1~?16602~C@17K02e0~3116A02~C16:02~e1~31<;" [constant? top-level-value] self-evaluating?) separate #function(":000r2\x80~\x7f__44;" [] #3=[#function("6000r4\x7f\x8780g2g3K;~\x7fM316@0\x80~\x7fN\x7fMg2Kg344;\x80~\x7fNg2\x7fMg3K44;" [] #3#) ()]) set-syntax! #function("9000r2e0e1~\x7f43;" [put! *syntax-environment*] set-syntax!) simple-sort #function("8000r1~A17602~NA640~;c0~Mu42;" [#function("9000vc0e1c2q\x80N32u42;" [#function(":000ve0e1~M31\x80L1e1~N3143;" [nconc simple-sort]) separate #function("7000r1~\x80X;" [])])] simple-sort) string.join #function("8000r2~\x8750c0;c1e230u42;" ["" #function("8000ve0~\x80M322e1c2q\x80N322e3~41;" [io.write for-each #function("8000r1e0\x80i11322e0\x80~42;" [io.write]) io.tostring!]) buffer] string.join) string.lpad #function(";000r3e0e1g2\x7fe2~31z32~42;" [string string.rep string.count] string.lpad) string.map #function("9000r2c0e130e2\x7f31u43;" [#function("8000vc0`u322e1~41;" [#function(";000v^~\x81X6S02e0\x80i10e1i11~3231322e2i11~32m05\x0b/;" [io.putc string.char string.inc]) io.tostring!]) buffer length] string.map) string.rep #function(";000r2\x7fb4X6`0e0\x7f`32650c1;\x7faW680e2~41;\x7fb2W690e2~~42;e2~~~43;e3\x7f316@0e2~e4~\x7faz3242;e4e2~~32\x7fb2U242;" [<= "" string odd? string.rep] string.rep) string.rpad #function("<000r3e0~e1g2\x7fe2~31z3242;" [string string.rep string.count] string.rpad) string.tail #function(";000r2e0~e1~`\x7f3342;" [string.sub string.inc] string.tail) string.trim #function("9000r3c0^^u43;" [#function("8000vc0qm02c1qm12c2e3\x8031u42;" [#function(";000r4g2g3X16?02e0\x7fe1~g232326A0\x80~\x7fe2~g232g344;g2;" [string.find string.char string.inc] trim-start) #function("<000r3e0g2`3216D02e1\x7fe2~e3~g23232326?0\x81~\x7fe3~g23243;g2;" [> string.find string.char string.dec] trim-end) #function("<000ve0i10\x80i10i11`~34\x81i10i12~3343;" [string.sub]) length])] string.trim) symbol-syntax #function("9000r1e0e1~^43;" [get *syntax-environment*] symbol-syntax) table.clone #function("8000r1c0e130u42;" [#function("9000ve0c1q_\x80332~;" [table.foldl #function("9000r3e0\x80~\x7f43;" [put!])]) table] table.clone) table.foreach #function("9000r2e0c1q_\x7f43;" [table.foldl #function("8000r3\x80~\x7f322];" [])] table.foreach) table.invert #function("8000r1c0e130u42;" [#function("9000ve0c1q_\x80332~;" [table.foldl #function("9000r3e0\x80\x7f~43;" [put!])]) table] table.invert) table.keys #function("9000r1e0c1_~43;" [table.foldl #function("7000r3~g2K;" [])] table.keys) table.pairs #function("9000r1e0c1_~43;" [table.foldl #function("7000r3~\x7fKg2K;" [])] table.pairs) table.values #function("9000r1e0c1_~43;" [table.foldl #function("7000r3\x7fg2K;" [])] table.values) to-proper #function("9000r1~\x8740~;~?660~L1;~Me0~N31K;" [to-proper] to-proper) trace #function("8000r1c0e1~31u322c2;" [#function("8000vc0e130u42;" [#function("?000ve0\x80317a0e1i10e2c3~c4c5c6c7i10L2~L3L2c8c7\x80L2~L3L3L33142;^;" [traced? set-top-level-value! eval lambda begin println cons quote apply]) gensym]) top-level-value ok] trace) traced? #function("8000r1e0~31e0\x8031>;" [function:code] [#function(":000s0e0c1~K312c2~x2;" [println x #.apply]) ()]) untrace #function("8000r1c0e1~31u42;" [#function("9000ve0~316@0e1\x80e2~31b2[42;^;" [traced? set-top-level-value! function:vals]) top-level-value] untrace) values #function("9000s0~F16602~NA650~M;\x80~K;" [] #4#) vector->list #function("9000r1c0e1~31_u43;" [#function(":000va~c0qw2\x7f;" [#function("8000r1i10\x80~z[\x81Ko01;" [])]) length] vector->list) vector.map #function("8000r2c0e1\x7f31u42;" [#function("8000vc0e1~31u42;" [#function(":000v`\x80azc0qw2~;" [#function(":000r1\x80~i20i21~[31\\;" [])]) vector.alloc]) length] vector.map) zero? #function("7000r1~`W;" [] zero?)) +(*banner* "; _\n; |_ _ _ |_ _ | . _ _\n; | (-||||_(_)|__|_)|_)\n;-------------------|----------------------------------------------------------\n\n" *syntax-environment* #table(assert #function("<000r1c0|]c1c2c3|L2L2L2L4;" [if raise quote assert-failed]) letrec #function("?000s1e0e0c1L1e2c3|32L1e2c4|32e5}3134L1e2c6|3242;" [nconc lambda map #.car #function("9000r1e0c1L1e2|3142;" [nconc set! copy-list]) copy-list #function("6000r1^;" [])]) backquote #function("7000r1e0|41;" [bq-process]) label #function(":000r2c0|L1c1|}L3L3^L2;" [lambda set!]) do #function("A000s2c0qe130}Me2c3|32e2e4|32e2c5|3245;" [#function("B000r5c0|c1g2c2}e3c4L1e5\x7fN3132e3c4L1e5i0231e3|L1g432L133L4L3L2L1e3|L1g332L3;" [letrec lambda if nconc begin copy-list]) gensym map #.car cadr #function("7000r1e0|31F680e1|41;|M;" [cddr caddr])]) when #function("<000s1c0|c1}K^L4;" [if begin]) unwind-protect #function("8000r2c0qe130e13042;" [#function("@000r2c0}c1_\x7fL3L2L1c2c3~c1|L1c4}L1c5|L2L3L3L3}L1L3L3;" [let lambda prog1 trycatch begin raise]) gensym]) dotimes #function(";000s1c0q|M|\x8442;" [#function("=000r2c0`c1}aL3e2c3L1|L1L1e4\x7f3133L4;" [for - nconc lambda copy-list])]) define-macro #function("?000s1c0c1|ML2e2c3L1|NL1e4}3133L3;" [set-syntax! quote nconc lambda copy-list]) receive #function("@000s2c0c1_}L3e2c1L1|L1e3g23133L3;" [call-with-values lambda nconc copy-list]) unless #function("=000s1c0|^c1}KL4;" [if begin]) let #function(":000s1c0q^41;" [#function("<000r1~C6D0~m02\x7fMo002\x7fNo01530^2c0qe1c2L1e3c4~32L1e5\x7f3133e3c6~3242;" [#function("8000r2~6;0c0~|L3530|}K;" [label]) nconc lambda map #function("6000r1|F650|M;|;" []) copy-list #function("6000r1|F650|\x84;^;" [])])]) cond #function("9000s0c0q^41;" [#function("7000r1c0qm02|~41;" [#function("7000r1|?640^;c0q|M41;" [#function(";000r1|Mc0<17702|M]<6@0|N\x8550|M;c1|NK;|N\x85@0c2|Mi10~N31L3;c3|Mc1|NKi10~N31L4;" [else begin or if])] cond-clauses->if)])]) throw #function(":000r2c0c1c2c3L2|}L4L2;" [raise list quote thrown-value]) time #function("7000r1c0qe13041;" [#function(">000r1c0|c1L1L2L1c2~c3c4c5c1L1|L3c6L4L3L3;" [let time.now prog1 princ "Elapsed time: " - " seconds\n"]) gensym]) let* #function("A000s1|?6E0e0c1L1_L1e2}3133L1;e0c1L1e3|31L1L1e2|NF6H0e0c4L1|NL1e2}3133L1530}3133e5|31L2;" [nconc lambda copy-list caar let* cadar]) case #function(":000s1c0q^41;" [#function("7000r1c0m02c1qe23041;" [#function(";000r2}c0\x8250c0;}\x8540^;}C6=0c1|e2}31L3;}?6=0c3|e2}31L3;}N\x85>0c3|e2}M31L3;e4c5}326=0c6|c7}L2L3;c8|c7}L2L3;" [else eq? quote-value eqv? every #.symbol? memq quote memv] vals->cond) #function("<000r1c0|i10L2L1e1c2L1e3c4qi113232L3;" [let nconc cond map #function("8000r1i10~|M32|NK;" [])]) gensym])]) catch #function("7000r2c0qe13041;" [#function("@000r1c0\x7fc1|L1c2c3c4|L2c5c6|L2c7c8L2L3c5c9|L2~L3L4c:|L2c;|L2L4L3L3;" [trycatch lambda if and pair? eq car quote thrown-value cadr caddr raise]) gensym])) *whitespace* "\t\n\v\f\r \u0085  ᠎           \u2028\u2029   " /= #function("7000r2|}W@;" [] /=) 1+ #function("7000r1|aw;" [] 1+) 1- #function("7000r1|ax;" [] 1-) 1arg-lambda? #function("8000r1|F16T02|Mc0<16J02|NF16B02|\x84F16:02e1|\x84a42;" [lambda length=] 1arg-lambda?) <= #function("7000r2|}X17602|}W;" [] <=) > #function("7000r2}|X;" [] >) >= #function("7000r2}|X17602|}W;" [] >=) Instructions #table(not 16 vargc 67 load1 49 = 39 setc.l 64 sub2 72 brne.l 83 largc 74 brnn 85 loadc.l 58 loadi8 50 < 40 nop 0 set-cdr! 32 loada 55 bound? 21 / 37 neg 73 brn.l 88 lvargc 75 brt 7 trycatch 68 null? 17 load0 48 jmp.l 8 loadv 51 seta 61 keyargs 91 * 36 function? 26 builtin? 23 aref 43 optargs 89 vector? 24 loadt 45 brf 6 symbol? 19 cdr 30 for 69 loadc00 78 pop 2 pair? 22 cadr 84 closure 65 loadf 46 compare 41 loadv.l 52 setg.l 60 brn 87 eqv? 13 aset! 44 eq? 12 atom? 15 boolean? 18 brt.l 10 tapply 70 dummy_nil 94 loada0 76 brbound 90 list 28 dup 1 apply 33 loadc 57 loadc01 79 dummy_t 92 setg 59 loada1 77 tcall.l 81 jmp 5 fixnum? 25 cons 27 loadg.l 54 tcall 4 call 3 - 35 brf.l 9 + 34 dummy_f 93 add2 71 seta.l 62 loadnil 47 brnn.l 86 setc 63 set-car! 31 vector 42 loadg 53 loada.l 56 argc 66 div0 38 ret 11 number? 20 equal? 14 car 29 call.l 80 brne 82) __init_globals #function("7000r0c0c1<17B02c0c2<17802c0c3<6>0c4k52c6k75;0c8k52c9k72e:k;2ek?;" [linux win32 win64 windows "\\" *directory-separator* "\r\n" *linefeed* "/" "\n" *stdout* *output-stream* *stdin* *input-stream* *stderr* *error-stream*] __init_globals) __script #function("7000r1c0qc1t;" [#function("7000r0e0~41;" [load]) #function("7000r1e0|312e1a41;" [print-exception exit])] __script) __start #function("8000r1e0302|NF6@0|Nk12e2|\x84315A0|k12e3e4312e5302e6`41;" [__init_globals *argv* __script princ *banner* repl exit] __start) abs #function("7000r1|`X650|y;|;" [] abs) any #function("8000r2}F16D02|}M3117:02e0|}N42;" [any] any) arg-counts #table(#.not 1 #.atom? 1 #.number? 1 #.cons 2 #.set-cdr! 2 #.equal? 2 #.fixnum? 1 #.bound? 1 #.eq? 2 #.symbol? 1 #.builtin? 1 #.< 2 #.aset! 3 #.div0 2 #.cdr 1 #.null? 1 #.eqv? 2 #.compare 2 #.aref 2 #.car 1 #.set-car! 2 #.pair? 1 #.= 2 #.vector? 1 #.boolean? 1) argc-error #function("<000r2e0c1|c2}}aW670c3540c445;" [error "compile error: " " expects " " argument." " arguments."] argc-error) array? #function("8000r1|H17<02c0e1|3141;" [#function("7000r1|F16802|Mc0<;" [array]) typeof] array?) assoc #function("8000r2}?640^;e0}31|>650}M;e1|}N42;" [caar assoc] assoc) assv #function("8000r2}?640^;e0}31|=650}M;e1|}N42;" [caar assv] assv) bcode:cdepth #function(":000r2|b3e0|b3[}32\\;" [min] bcode:cdepth) bcode:code #function("7000r1|`[;" [] bcode:code) bcode:ctable #function("7000r1|a[;" [] bcode:ctable) bcode:indexfor #function("9000r2c0qe1|31e2|3142;" [#function(":000r2e0|\x7f32690e1|\x7f42;e2|\x7f}332}~b2}aw\\2;" [has? get put!]) bcode:ctable bcode:nconst] bcode:indexfor) bcode:nconst #function("7000r1|b2[;" [] bcode:nconst) bq-bracket #function("8000r1|?6<0c0e1|31L2;|Mc2\x8290c0|\x84L2;|Mc3\x8290c4|\x84L2;|Mc5\x8250|\x84;c0e1|31L2;" [#.list bq-process *comma* *comma-at* copy-list *comma-dot*] bq-bracket) bq-process #function("8000r1c0q^^42;" [#function("<000r2c0m02c1m12e2~316G0~H6@0c3e4e5~313141;~;~?680c6~L2;~Mc7\x82=0e4e4~\x843141;~Mc8\x8250~\x84;e9|~327B0c:e;~31e<}~3242;c=~_42;" [#function("7000r1|F16B02|Mc0<17802|Mc1<17702|c2<;" [*comma-at* *comma-dot* *comma*] splice-form?) #function("7000r1|F16802|Mc0<650|\x84;e1|41;" [*comma* bq-process] bq-bracket1) self-evaluating? #function("8000r1|Mc0\x8280c1|NK;c2c1|L3;" [list #.vector #.apply]) bq-process vector->list quote backquote *comma* any #function("8000r2|\x8570c0}K;e1c2}Ke3|31L142;" [list nconc list* bq-process]) lastcdr map #function(":000r2^|F16902|Mc0<@6E02e1|M31}Km12|Nm05\x0f/2c2|F6>0e3}|\x84L1325J0|\x85:0e4}315>0e3}e5|31L13241;" [*comma* bq-bracket #function("7000r1|N\x8550|M;c0|K;" [nconc]) nreconc reverse! bq-process])])] bq-process) builtin->instruction #function("9000r1e0~|^43;" [get] [#table(#.number? number? #.cons cons #.fixnum? fixnum? #.equal? equal? #.eq? eq? #.symbol? symbol? #.div0 div0 #.builtin? builtin? #.aset! aset! #.- - #.boolean? boolean? #.not not #.apply apply #.atom? atom? #.set-cdr! set-cdr! #./ / #.function? function? #.vector vector #.list list #.bound? bound? #.< < #.* * #.cdr cdr #.null? null? #.+ + #.eqv? eqv? #.compare compare #.aref aref #.set-car! set-car! #.car car #.pair? pair? #.= = #.vector? vector?) ()]) caaar #function("6000r1|MMM;" [] caaar) caadr #function("6000r1|\x84M;" [] caadr) caar #function("6000r1|MM;" [] caar) cadar #function("6000r1|M\x84;" [] cadar) cadddr #function("6000r1|NN\x84;" [] cadddr) caddr #function("6000r1|N\x84;" [] caddr) cadr #function("6000r1|\x84;" [] cadr) call-with-values #function("7000r2c0q|3041;" [#function("7000r1|F16902i10|M<680\x7f|Nv2;\x7f|41;" [])] #4=[(*values*) ()]) cdaar #function("6000r1|MMN;" [] cdaar) cdadr #function("6000r1|\x84N;" [] cdadr) cdar #function("6000r1|MN;" [] cdar) cddar #function("6000r1|MNN;" [] cddar) cdddr #function("6000r1|NNN;" [] cdddr) cddr #function("6000r1|NN;" [] cddr) char? #function("7000r1e0|31c1<;" [typeof wchar] char?) closure? #function("7000r1|J16602|G@;" [] closure?) compile #function("8000r1e0_|42;" [compile-f] compile) compile-and #function("<000r4e0|}g2g3]c146;" [compile-short-circuit brf] compile-and) compile-app #function(":000r4e0|}g2g344;" [compile-call] compile-app) compile-arglist #function("8000r3e0c1qg2322e2g241;" [for-each #function(":000r1e0~\x7f^|44;" [compile-in]) length] compile-arglist) compile-begin #function(":000r4g3?6<0e0|}g2^44;g3N?6>0e0|}g2g3M44;e0|}^g3M342e1|c2322e3|}g2g3N44;" [compile-in emit pop compile-begin] compile-begin) compile-builtin-call #function(":000r7c0qe1e2g5^3341;" [#function("8000r1|16=02e0i03N|32@6=0e1i04|32530^2c2qi0541;" [length= argc-error #function("O000r1|c0\x82R0i16`W6<0e1i10c242;e1i10i15i1643;|c3\x82e0i16`W6<0e1i10c442;i16b2W6<0e1i10c542;e1i10i15i1643;|c6\x82v0i16`W6;0e7i14a42;i16aW6<0e1i10c842;i16b2W6<0e1i10c942;e1i10i15i1643;|c:\x82R0i16`W6<0e1i10c;42;e1i10i15i1643;|c<\x82Q0i16`W6;0e7i14a42;e1i10i15i1643;|c=\x82T0i16`W6>0e1i10c>c?43;e1i10i15i1643;|c@\x82]0i16b2X6<0e7i14b242;e1i10i12670cA540c@i1643;e1i10i1542;" [list emit loadnil + load0 add2 - argc-error neg sub2 * load1 / vector loadv [] apply tapply])]) get arg-counts] compile-builtin-call) compile-call #function("7000r4c0qg3M41;" [#function("9000r1c0q|C16V02e1|\x7f32@16J02|E16C02e2|3116902e3|31G6:0e3|31530|41;" [#function(":000r1e0i13Nc1326S0e2i10i11^|342c3qe4i10i11i13N3341;c5q|G16802e6|3141;" [length> 255 compile-in #function(":000r1e0i20i22670c1540c2|43;" [emit tcall.l call.l]) compile-arglist #function(";000r1~c0<16X02e1~i2132@16J02e2c031e0>16<02e3i23b2326L0e4i20i21^i23\x84342e5i20c042;|7A0e4i20i21^~34530^2c6qe7i20i21i23N3341;" [cadr in-env? top-level-value length= compile-in emit #function("=000r1~6H0e0i30i31i32i33i10~|47;e1i30i32670c2540c3|43;" [compile-builtin-call emit tcall call]) compile-arglist]) builtin->instruction]) in-env? constant? top-level-value])] compile-call) compile-f #function("8000r2e0c1qc242;" [call-with-values #function("8000r0e0~\x7f42;" [compile-f-]) #function("6000r2|;" [])] compile-f) compile-f- #function("7000r2c0q^41;" [#function("=000r1c0qm02c1qe230\x7f\x84e3\x7f\x8431e4\x7f\x8431e5c6\x7f\x8432e3\x7f31i10\x8270c7570e3\x7f3146;" [#function("9000r1c0qe1|31F6N0e2|31F6=0c3e1|31K570e4|31530^41;" [#function("8000r1c0qe1|3141;" [#function(";000r1|\x8540~;e0c1|~i4034e2c3|32K;" [list* lambda map #function("6000r1^;" [])]) get-defined-vars]) cddr cdddr begin caddr] lambda-body) #function("9000r6c0q}?660`570e1}3141;" [#function("9000r1c0q|e1i0431x41;" [#function("9000r1c0qe1e2i143241;" [#function("F000r1i24\x87\xa90|\x85O0e0i20c1~i22\x8580i10560i10y345s0e2i20e3e4c5e4c6|32e7e8|31313331322e0i20c9~e8|31i22\x8580i10560i10y352e:i20i40i24i23~35530^2e;i10c<326L0e0i20i22\x8570c=540c>i10335]0i22\x87A0e0i20c?i10335H0i24\x85A0e0i20c@i1033530^2eAi20i23i40K]eBi4131i50\x82<0eCi41315:0i30i4131342e0i20cD322eEeFeGeHi203131eIi2031i2533i20b3[42;" [emit optargs bcode:indexfor make-perfect-hash-table map #.cons #.car iota length keyargs emit-optional-arg-inits > 255 largc lvargc vargc argc compile-in lastcdr caddr ret values function encode-byte-code bcode:code const-to-idx-vec]) filter keyword-arg?]) length]) length]) make-code-emitter lastcdr lambda-vars filter #.pair? lambda])] #0=[#:g601 ()]) compile-for #function(":000r5e0g4316X0e1|}^g2342e1|}^g3342e1|}^g4342e2|c342;e4c541;" [1arg-lambda? compile-in emit for error "for: third form must be a 1-argument lambda"] compile-for) compile-if #function("<000r4c0qe1|31e1|31g3\x84e2g331e3g331F6;0e4g331530^45;" [#function("=000r5g2]\x82>0e0~\x7fi02g344;g2^\x82>0e0~\x7fi02g444;e0~\x7f^g2342e1~c2|332e0~\x7fi02g3342i026<0e1~c3325:0e1~c4}332e5~|322e0~\x7fi02g4342e5~}42;" [compile-in emit brf ret jmp mark-label]) make-label caddr cdddr cadddr] compile-if) compile-in #function(":000r4g3C6=0e0|}g3c144;g3?6\x950g3`\x82:0e2|c342;g3a\x82:0e2|c442;g3]\x82:0e2|c542;g3^\x82:0e2|c642;g3_\x82:0e2|c742;e8g3316<0e2|c9g343;e2|c:g343;c;qg3M41;" [compile-sym [loada loadc loadg] emit load0 load1 loadt loadf loadnil fits-i8 loadi8 loadv #function("S000r1|c0\x82>0e1~c2i03\x8443;|c3\x82?0e4~\x7fi02i0344;|c5\x82@0e6~\x7fi02i03N44;|c7\x82<0e8~\x7fi0343;|c9\x82=0e:c;qc~\x7fi02i03N44;|c?\x82@0e@~\x7fi02i03N44;|cA\x82G0eB~\x7fi03\x84c5eCi0331K44;|cD\x82K0eE~\x7fi03\x84eFi0331eGi033145;|cH\x82F0eI~\x7f]i03\x84342e1~cJ42;|cK\x82N0eI~\x7f^eFi0331342eL~\x7fi03\x84cM44;|cN\x82K0eI~\x7fi02eOi03\x84eCi03313244;|cP\x82s0eI~\x7f^c9_i03\x84L3342eQeFi033131660^580eRcS312eI~\x7f^eFi0331342e1~cP42;eT~\x7fi02i0344;" [quote emit loadv if compile-if begin compile-begin prog1 compile-prog1 lambda call-with-values #function("8000r0e0i11i1342;" [compile-f-]) #function("9000r2e0i10c1|332e2i10}322}e3i1131X6<0e0i10c442;^;" [emit loadv bcode:cdepth nnn closure]) and compile-and or compile-or while compile-while cddr for compile-for caddr cadddr return compile-in ret set! compile-sym [seta setc setg] define expand-define trycatch 1arg-lambda? error "trycatch: second form must be a 1-argument lambda" compile-app])] compile-in) compile-or #function("<000r4e0|}g2g3^c146;" [compile-short-circuit brt] compile-or) compile-prog1 #function(";000r3e0|}^g2\x84342e1g231F6H0e2|}^e1g231342e3|c442;^;" [compile-in cddr compile-begin emit pop] compile-prog1) compile-short-circuit #function(":000r6g3?6=0e0|}g2g444;g3N?6>0e0|}g2g3M44;c1qe2|3141;" [compile-in #function("<000r1e0~\x7f^i03M342e1~c2322e1~i05|332e1~c3322e4~\x7fi02i03Ni04i05362e5~|42;" [compile-in emit dup pop compile-short-circuit mark-label]) make-label] compile-short-circuit) compile-sym #function(";000r4c0qe1g2}`]3441;" [#function("7000r1c0q|M41;" [#function(">000r1|c0\x82A0e1i10i13`[~\x8443;|c2\x82[0e1i10i13a[~\x84e3~31342e4i10e5i11N31a~\x84S342;e6i123116>02e7e8i1231316C0e1i10c9e8i123143;e1i10i13b2[i1243;" [arg emit closed caddr bcode:cdepth nnn constant? printable? top-level-value loadv])]) lookup-sym] compile-sym) compile-thunk #function(";000r1e0e1c2L1_L1|L1~3441;" [compile nconc lambda] #0#) compile-while #function("9000r4c0qe1|31e1|3142;" [#function(":000r2e0~\x7f^^342e1~|322e0~\x7f^i02342e2~c3}332e2~c4322e0~\x7f^i03342e2~c5|332e1~}42;" [compile-in mark-label emit brf pop jmp]) make-label] compile-while) const-to-idx-vec #function("9000r1c0qe1e2|313141;" [#function("9000r1e0c1qe2~31322|;" [table.foreach #function("8000r2~}|\\;" []) bcode:ctable]) vector.alloc bcode:nconst] const-to-idx-vec) copy-tree #function("8000r1|?640|;e0|M31e0|N31K;" [copy-tree] copy-tree) count #function("7000r2c0q^41;" [#function("9000r1c0qm02|~\x7f`43;" [#function("9000r3}\x8550g2;~|}N|}M31690g2aw540g243;" [] count-)])] count) delete-duplicates #function("8000r1|?640|;c0|M|N42;" [#function("8000r2e0|}32680e1}41;|e1}31K;" [member delete-duplicates])] delete-duplicates) disassemble #function(">000s1}\x85C0e0|`322e1302];530^2c2}Me3|31e4|3143;" [disassemble newline #function("7000r3c0q^41;" [#function(":000r1c0qm02`~axc1u2e2c3e4\x7f`32c5332c6qb4e7\x7f3142;" [#function("9000r1|J16602|G@6D0e0c1312e2|i10aw42;e3|41;" [princ "\n" disassemble print] print-val) #function("7000r1e0c141;" [princ "\t"]) princ "maxstack " ref-int32-LE "\n" #function(":000r2^|}X6E02c0qe1c2q^e333315\x19/;" [#function(";000r1e0~b432690e130530^2`i20axc2u2e3e4~b4x31c5e6|31c7342~awo002c8q|41;" [> newline #function("7000r1e0c141;" [princ "\t"]) princ hex5 ": " string "\t" #function(">000r1e0|c1326P0i20i32e2i31i1032[312i10b4wo10;e0|c3326L0i20i32i31i10[[312i10awo10;e0|c4326K0e5e6i31i10[31312i10awo10;e0|c7326O0e5e6e2i31i103231312i10b4wo10;e0|c8326f0e5e6i31i10[31c9322i10awo102e5e6i31i10[31312i10awo10;e0|c:326\x9c0e5e6e2i31i103231c9322i10b4wo102e5e6e2i31i103231312i10b4wo102~c;\x82X0e5c9312e5e6e2i31i103231c9322i10b4wo10;^;|c<=6w0e5e6e2i31i103231c9322i10b4wo102e5c=e>i10b,e2i31i1032R331322i10b4wo10;e0|c?326X0e5c=e>i10b,e@i31i1032R331322i10b2wo10;e0|cA326X0e5c=e>i10b,e2i31i1032R331322i10b4wo10;^;" [memq (loadv.l loadg.l setg.l) ref-int32-LE (loadv loadg setg) (loada seta call tcall list + - * / vector argc vargc loadi8 apply tapply) princ number->string (loada.l seta.l largc lvargc call.l tcall.l) (loadc setc) " " (loadc.l setc.l optargs keyargs) keyargs brbound "@" hex5 (jmp brf brt brne brnn brn) ref-int16-LE (jmp.l brf.l brt.l brne.l brnn.l brn.l)])]) table.foldl #function("8000r3g217@02}i21~[<16402|;" []) Instructions]) length])]) function:code function:vals] disassemble) display #function("7000r1e0|312];" [princ] display) div #function("8000r2|}V|`X16C02}`X16402a17502b/17402`w;" [] div) emit #function("I000s2g2\x85b0}c0<16C02|`[F16:02|`[Mc1<6;0|`[c2O5:0|`}|`[K\\5\xe20e3}c4326A0e5|g2M32L1m2530^2c6qe7}c832312c9qe7}c:32312}c;\x82\\0g2c<>6=0c=m12_m25F0g2c>>6=0c?m12_m2530^530^2}c@\x82\\0g2cA>6=0cBm12_m25F0g2cC>6=0cDm12_m2530^530^2cEq|`[F690|`[M530_|`[322|;" [car cdr cadr memq (loadv loadg setg) bcode:indexfor #function("8000r1|16=02e0i02Mc132680|\x84o01;^;" [> 255]) assq ((loadv loadv.l) (loadg loadg.l) (setg setg.l) (loada loada.l) (seta seta.l)) #function("8000r1|16L02e0i02Mc13217=02e0i02\x84c132680|\x84o01;^;" [> 255]) ((loadc loadc.l) (setc setc.l)) loada (0) loada0 (1) loada1 loadc (0 0) loadc00 (0 1) loadc01 #function("D000r2\x7fc0<16\x9a02|c1<16802}\x84c2<6E0~`i02Mc3e4}31KK\\5u0|c1\x82B0~`i02Mc5}NKK\\5_0|c6\x82B0~`i02Mc7}NKK\\5I0|c2\x82B0~`i02Mc8}NKK\\530^17^02\x7fc5<16702|c2<6@0~`i02Mc3}NKK\\;~`e9\x7fi02K}32\\;" [brf not null? brn cddr brt eq? brne brnn nreconc])] emit) emit-optional-arg-inits #function("8000r5g2F6=0c0qe1|3141;^;" [#function("<000r1e0~c1i04|342e2~e3i03i0432\x7fK^e4i0231342e0~c5i04332e0~c6322e7~|322e8~\x7fi02Ni03i04aw45;" [emit brbound compile-in list-head cadar seta pop mark-label emit-optional-arg-inits]) make-label] emit-optional-arg-inits) encode-byte-code #function("8000r1c0e1|3141;" [#function("8000r1c0e1|3141;" [#function(";000r1c0qe1e2|31b3e2|31b2VT2wc33241;" [#function("=000r1c0qe1~31`e230e230e330^^47;" [#function("B000r7e0g4c1322^}|X6#02i10}[m52g5c2\x82O0e3g2i10}aw[e4g431332}b2wm15\xf30e0g4e5e6e7~6<0c8qg531540g53231322}awm12}|X6:0i10}[530^m62e9g5c:326^0e3g3e4g431g6332e0g4~670e;540e<`31322}awm15\x830g5c=\x82k0e0g4e;g631322}awm12e3g3e4g431i10}[332e0g4e;`31322}awm15C0g6D6<0c>qg531530^5;/2e?c@qg3322eAg441;" [io.write #int32(0) label put! sizeof byte get Instructions #function("9000r1|c0\x8250c1;|c2\x8250c3;|c4\x8250c5;|c6\x8250c7;|c8\x8250c9;|c:\x8250c;;i05;" [jmp jmp.l brt brt.l brf brf.l brne brne.l brnn brnn.l brn brn.l]) memq (jmp brf brt brne brnn brn) int32 int16 brbound #function("<000r1e0|c1326H0e2i04e3i0631322\x7fawo01;e0|c4326`0e2i04e5i0631322\x7fawo012e2i04e5i20\x7f[31322\x7fawo01;e0|c6326\x820e2i04e3i0631322\x7fawo012e2i04e3i20\x7f[31322\x7fawo012i05c7\x82J0e2i04e3i20\x7f[31322\x7fawo01;^;e2i04e5i0631322\x7fawo01;" [memq (loadv.l loadg.l setg.l loada.l seta.l largc lvargc call.l tcall.l) io.write int32 (loadc setc) uint8 (loadc.l setc.l optargs keyargs) keyargs]) table.foreach #function("<000r2e0i04|322e1i04i10670e2540e3e4i02}32|x3142;" [io.seek io.write int32 int16 get]) io.tostring!]) length table buffer]) >= length 65536]) list->vector]) reverse!] encode-byte-code) error #function(":000s0e0c1|K41;" [raise error] error) eval #function("8000r1e0e1|313140;" [compile-thunk expand] eval) even? #function("8000r1e0|a32`W;" [logand] even?) every #function("8000r2}?17D02|}M3116:02e0|}N42;" [every] every) expand #function("7000r1e0|41;" [macroexpand] expand) expand-define #function("<000r2|C6:0c0|}ML3;c0|Me1c2L1|NL1e3}31|M34L3;" [set! nconc lambda copy-list] expand-define) filter #function("7000r2c0q^41;" [#function("9000r1c0qm02|~\x7f_L143;" [#function("9000r3g2^}F6S02i10}M316?0g2}M_KPNm2530^2}Nm15\f/2N;" [] filter-)])] filter) fits-i8 #function("8000r1|I16F02e0|b\xb03216:02e1|b\xaf42;" [>= <=] fits-i8) foldl #function(";000r3g2\x8540};e0||g2M}32g2N43;" [foldl] foldl) foldr #function("<000r3g2\x8540};|g2Me0|}g2N3342;" [foldr] foldr) for-each #function("8000r2}F6@0|}M312e0|}N42;];" [for-each] for-each) get-defined-vars #function("8000r1e0~|3141;" [delete-duplicates] #1=[#function(":000r1|?640_;|Mc0<16602|NF6d0|\x84C16702|\x84L117S02|\x84F16E02e1|31C16:02e1|31L117402_;|Mc2\x82>0e3e4~|N32v2;_;" [define caadr begin append map] #1#) ()]) hex5 #function("9000r1e0e1|b@32b5c243;" [string.lpad number->string #\0] hex5) identity #function("6000r1|;" [] identity) in-env? #function("8000r2e0c1q}42;" [any #function("8000r1e0~|42;" [memq])] in-env?) index-of #function(";000r3}\x8540^;|}M\x8250g2;e0|}Ng2aw43;" [index-of] index-of) io.readline #function("8000r1e0|c142;" [io.readuntil #\x000a] io.readline) io.readlines #function("8000r1e0e1|42;" [read-all-of io.readline] io.readlines) iota #function("8000r1e0e1|42;" [map-int identity] iota) keyword->symbol #function("9000r1e0|316@0e1c2e3|313141;|;" [keyword? symbol #function("<000r1e0|`e1|e2|313243;" [string.sub string.dec length]) string] keyword->symbol) keyword-arg? #function("7000r1|F16902e0|M41;" [keyword?] keyword-arg?) lambda-vars #function("7000r1c0q^41;" [#function("9000r1c0qm02|~~322e1c2e3~3142;" [#function(";000r2|A17\xc902|C17\xc202|F16\x9f02|MC17\x8c02|MF16t02e0c1|N3217<02e2c3}c43316Y02e5e6|31316K0e0e7|N3217<02e2c3}c833530]17>02e2c9|Mc:}3416902~|N}3217J02|}\x82:0e2c3}42;e2c9|c:}44;" [every #.pair? error "compile error: invalid argument list " ". optional arguments must come after required." keyword? caar keyword-arg? ". keyword arguments must come last." "compile error: invalid formal argument " " in list "] check-formals) map! #function("7000r1|F690e0|M41;|;" [keyword->symbol]) to-proper])] lambda-vars) last-pair #function("7000r1|N?640|;e0|N41;" [last-pair] last-pair) lastcdr #function("7000r1|?640|;e0|31N;" [last-pair] lastcdr) length= #function("9000r2}`X640^;}`W650|?;|?660}`W;e0|N}ax42;" [length=] length=) length> #function("9000r2}`X640|;}`W6;0|F16402|;|?660}`X;e0|N}ax42;" [length>] length>) list->vector #function("7000r1c0|v2;" [#.vector] list->vector) list-head #function(":000r2e0}`32640_;|Me1|N}ax32K;" [<= list-head] list-head) list-ref #function("8000r2e0|}32M;" [list-tail] list-ref) list-tail #function("9000r2e0}`32640|;e1|N}ax42;" [<= list-tail] list-tail) list? #function("7000r1|A17@02|F16902e0|N41;" [list?] list?) load #function("9000r1c0qe1|c23241;" [#function("7000r1c0qc1qt;" [#function("9000r0c0q^31^^^43;" [#function("6000r1c0qm0;" [#function(":000r3e0i10317C0~e1i1031|e2}3143;e3i10312e2}41;" [io.eof? read load-process io.close])])]) #function("9000r1e0~312e1c2i10|L341;" [io.close raise load-error])]) file :read] load) load-process #function("7000r1e0|41;" [eval] load-process) lookup-sym #function("7000r4}\x8550c0;c1q}M41;" [(global) #function(":000r1c0qe1~|`3341;" [#function(";000r1|6G0i13680c0|L2;c1i12|L3;e2i10i11Ni1317502~A680i12570i12aw^44;" [arg closed lookup-sym]) index-of])] lookup-sym) macrocall? #function("9000r1|MC16<02e0e1|M^43;" [get *syntax-environment*] macrocall?) macroexpand #function("7000r1c0q^41;" [#function("8000r1c0qm02|~_42;" [#function("9000r2|?640|;c0qe1|M}3241;" [#function("9000r1|6C0i10|\x84~NQ2e0|3142;c1qe2~3141;" [caddr #function("C000r1|6B0i20|i10NQ2i1142;i10Mc0\x8260i10;i10Mc1\x82V0e2c1L1i10\x84L1e3c4qe5i103132e6i103144;i10Mc7\x82O0e2c7L1i10\x84L1e3c8qe5i10313243;i10Mc9\x82T0c:qi10\x84e2c1L1_L1e;e5i10313133L142;e3c000r1e0i10e1e2c3|e2e4|3233Q2322e5i10e642;" [io.print nconc map #.list top-level-value io.write *linefeed*]) filter #function("9000r1|E16w02e0|31@16l02e1|31G@17C02e2|31e2e1|3131>@16K02e3|i1132@16=02e4e1|3131@;" [constant? top-level-value string memq iostream?]) simple-sort environment]) #function("7000r1~302e0|41;" [raise])]) #function("7000r0e0~312i02k1;" [io.close *print-pretty*])]) file :write :create :truncate (*linefeed* *directory-separator* *argv* that *print-pretty* *print-width* *print-readably*) *print-pretty*] make-system-image) map #function("<000s2c0q^^42;" [#function("9000r2c0m02c1qm12i02\x85;0|~\x7f_L143;}~\x7fi02K42;" [#function("9000r3g2^}F6H02g2|}M31_KPNm22}Nm15\x17/2N;" [] map1) #function("=000r2}M\x8540_;|~c0}_L133Q2\x7f|~c1}_L13332K;" [#.car #.cdr] mapn)])] map) map! #function("9000r2}^}F6B02}|}M31O2}Nm15\x1d/2;" [] map!) map-int #function("8000r2e0}`32640_;c1q|`31_K_42;" [<= #function(":000r2|m12a\x7faxc0qu2|;" [#function("8000r1\x7fi10|31_KP2\x7fNo01;" [])])] map-int) mark-label #function("9000r2e0|c1}43;" [emit label] mark-label) max #function("=000s1}\x8540|;e0c1|}43;" [foldl #function("7000r2|}X640};|;" [])] max) member #function("8000r2}?640^;}M|>640};e0|}N42;" [member] member) memv #function("8000r2}?640^;}M|=640};e0|}N42;" [memv] memv) min #function("=000s1}\x8540|;e0c1|}43;" [foldl #function("7000r2|}X640|;};" [])] min) mod #function("9000r2|e0|}32}T2x;" [div] mod) mod0 #2=#function("8000r2||}V}T2x;" [] mod0) negative? #function("7000r1|`X;" [] negative?) nestlist #function(";000r3e0g2`32640_;}e1||}31g2ax33K;" [<= nestlist] nestlist) newline #function("7000r0e0e1312];" [princ *linefeed*] newline) nnn #function("8000r1e0c1|42;" [count #function("6000r1|A@;" [])] nnn) nreconc #function("8000r2e0e1|31}42;" [nconc reverse!] nreconc) odd? #function("7000r1e0|31@;" [even?] odd?) positive? #function("8000r1e0|`42;" [>] positive?) princ #function(":000s0e0e1|v3;" [io.princ *output-stream*] princ) print #function(":000s0e0e1|v3;" [io.print *output-stream*] print) print-exception #function("8000r1c0q^^42;" [#function("<000r2c0m02c1m12~F16D02~Mc2<16:02e3~b4326N0|c4~\x84c5e6~31c7352}e8~31315\xc90~F16@02~Mc9<16602~NF6>0|c:~\x84c;335\xa60~F16802~Mc<<6@0|c=312|~NQ25\x890~F16802~Mc><6F0e?e6~31312|c@~\x84325f0eA~3116:02e3~b2326H0}~M312|cB312cCq~\x84315<0|cD312}~312|eE41;" [#function(":000s0e0e1|v3;" [io.princ *error-stream*] eprinc) #function(":000s0e0e1|v3;" [io.print *error-stream*] eprint) type-error length= "type-error: " ": expected " caddr ", got " cadddr unbound-error "unbound-error: eval: variable " " has no value" error "error: " load-error print-exception "in file " list? ": " #function("8000r1e0|3117502|C660~530\x7f|41;" [string?]) "*** Unhandled exception: " *linefeed*])] print-exception) print-stack-trace #function("8000r1c0q^^42;" [#function("<000r2c0qm02c1qm12c2qe3e4~b53231e5e6e7c8e9303232`43;" [#function("8000r3c0qe1|31g2K41;" [#function(":000r1e0~31e0\x7f31\x82>0e1c2c3|L341;c4qe5~3141;" [function:code raise thrown-value ffound #function(":000r1`e0e1|3131c2qu;" [1- length #function("9000r1e0~|[316A0i30~|[i21i1043;^;" [closure?])]) function:vals]) function:name] find-in-f) #function("8000r2c0c1qc2t41;" [#function(";000r1|6H0e0e1e2e3e4|3132c53241;c6;" [symbol string.join map string reverse! "/" lambda]) #function("8000r0e0c1q\x7f322^;" [for-each #function("9000r1i10|~_43;" [])]) #function("7000r1|F16B02|Mc0<16802|\x84c1<680e2|41;e3|41;" [thrown-value ffound caddr raise])] fn-name) #function("8000r3e0c1q|42;" [for-each #function("9000r1e0c1i02c2332e3i11|`[\x7f32e4|31NK312e5302i02awo02;" [princ "#" " " print vector->list newline])]) reverse! list-tail filter closure? map #function("7000r1|E16802e0|41;" [top-level-value]) environment])] print-stack-trace) print-to-string #function("7000r1c0qe13041;" [#function("8000r1e0|~322e1|41;" [io.print io.tostring!]) buffer] print-to-string) printable? #function("7000r1e0|31@;" [iostream?] printable?) println #function("9000s0e0|Q2e1302;" [print newline] println) quote-value #function("7000r1e0|31640|;c1|L2;" [self-evaluating? quote] quote-value) quotient #.div0 random #function("8000r1e0|316<0e1e230|42;e330|T2;" [integer? mod rand rand.double] random) read-all #function("8000r1e0e1|42;" [read-all-of read] read-all) read-all-of #function("9000r2c0q^31_|}3142;" [#function("6000r1c0qm0;" [#function("9000r2e0i1131680e1|41;~}|Ki10i113142;" [io.eof? reverse!])])] read-all-of) ref-int16-LE #function(";000r2e0e1|}`w[`32e1|}aw[b832w41;" [int16 ash] ref-int16-LE) ref-int32-LE #function("=000r2e0e1|}`w[`32e1|}aw[b832e1|}b2w[b@32e1|}b3w[bH32R441;" [int32 ash] ref-int32-LE) remainder #2# repl #function("8000r0c0^^42;" [#function("6000r2c0m02c1qm12}302e240;" [#function("8000r0e0c1312e2e3312c4c5c6t41;" [princ "> " io.flush *output-stream* #function("8000r1e0e131@16<02c2e3|3141;" [io.eof? *input-stream* #function("7000r1e0|312|k12];" [print that]) load-process]) #function("6000r0e040;" [read]) #function("7000r1e0e1312e2|41;" [io.discardbuffer *input-stream* raise])] prompt) #function("7000r0c0qc1t6;0e2302\x7f40;^;" [#function("7000r0~3016702e040;" [newline]) #function("7000r1e0|312e1e230312];" [print-exception print-stack-trace stacktrace]) newline] reploop) newline])] repl) revappend #function("8000r2e0e1|31}42;" [nconc reverse] revappend) reverse #function("9000r1e0c1_|43;" [foldl #.cons] reverse) reverse! #function("7000r1c0q_41;" [#function("9000r1^~F6C02~N~|~m02P2o005\x1c/2|;" [])] reverse!) self-evaluating? #function("8000r1|?16602|C@17K02e0|3116A02|C16:02|e1|31<;" [constant? top-level-value] self-evaluating?) separate #function(":000r2~|}__44;" [] #3=[#function("6000r4}\x8580g2g3K;|}M316@0~|}N}Mg2Kg344;~|}Ng2}Mg3K44;" [] #3#) ()]) set-syntax! #function("9000r2e0e1|}43;" [put! *syntax-environment*] set-syntax!) simple-sort #function("7000r1|A17602|NA640|;c0q|M41;" [#function("9000r1c0qe1c2q~N3241;" [#function(":000r1e0e1|M31~L1e1|N3143;" [nconc simple-sort]) separate #function("7000r1|~X;" [])])] simple-sort) string.join #function("7000r2|\x8550c0;c1qe23041;" ["" #function("8000r1e0|~M322e1c2q~N322e3|41;" [io.write for-each #function("8000r1e0~i11322e0~|42;" [io.write]) io.tostring!]) buffer] string.join) string.lpad #function(";000r3e0e1g2}e2|31x32|42;" [string string.rep string.count] string.lpad) string.map #function("9000r2c0qe130e2}3142;" [#function("7000r2c0q`312e1|41;" [#function(";000r1^|\x7fX6S02e0~i10e1i11|3231322e2i11|32m05\v/;" [io.putc string.char string.inc]) io.tostring!]) buffer length] string.map) string.rep #function(";000r2}b4X6`0e0}`32650c1;}aW680e2|41;}b2W690e2||42;e2|||43;e3}316@0e2|e4|}ax3242;e4e2||32}b2U242;" [<= "" string odd? string.rep] string.rep) string.rpad #function("<000r3e0|e1g2}e2|31x3242;" [string string.rep string.count] string.rpad) string.tail #function(";000r2e0|e1|`}3342;" [string.sub string.inc] string.tail) string.trim #function("8000r3c0q^^42;" [#function("8000r2c0qm02c1qm12c2qe3~3141;" [#function(";000r4g2g3X16?02e0}e1|g232326A0~|}e2|g232g344;g2;" [string.find string.char string.inc] trim-start) #function("<000r3e0g2`3216D02e1}e2|e3|g23232326?0\x7f|}e3|g23243;g2;" [> string.find string.char string.dec] trim-end) #function("<000r1e0i10~i10i11`|34\x7fi10i12|3343;" [string.sub]) length])] string.trim) symbol-syntax #function("9000r1e0e1|^43;" [get *syntax-environment*] symbol-syntax) table.clone #function("7000r1c0qe13041;" [#function("9000r1e0c1q_~332|;" [table.foldl #function("9000r3e0~|}43;" [put!])]) table] table.clone) table.foreach #function("9000r2e0c1q_}43;" [table.foldl #function("8000r3~|}322];" [])] table.foreach) table.invert #function("7000r1c0qe13041;" [#function("9000r1e0c1q_~332|;" [table.foldl #function("9000r3e0~}|43;" [put!])]) table] table.invert) table.keys #function("9000r1e0c1_|43;" [table.foldl #function("7000r3|g2K;" [])] table.keys) table.pairs #function("9000r1e0c1_|43;" [table.foldl #function("7000r3|}Kg2K;" [])] table.pairs) table.values #function("9000r1e0c1_|43;" [table.foldl #function("7000r3}g2K;" [])] table.values) to-proper #function("9000r1|\x8540|;|?660|L1;|Me0|N31K;" [to-proper] to-proper) trace #function("8000r1c0qe1|31312c2;" [#function("7000r1c0qe13041;" [#function("?000r1e0~317a0e1i10e2c3|c4c5c6c7i10L2|L3L2c8c7~L2|L3L3L33142;^;" [traced? set-top-level-value! eval lambda begin println cons quote apply]) gensym]) top-level-value ok] trace) traced? #function("8000r1e0|31e0~31>;" [function:code] [#function(":000s0e0c1|K312c2|v2;" [println x #.apply]) ()]) untrace #function("8000r1c0qe1|3141;" [#function("9000r1e0|316@0e1~e2|31b2[42;^;" [traced? set-top-level-value! function:vals]) top-level-value] untrace) values #function("9000s0|F16602|NA650|M;~|K;" [] #4#) vector->list #function("8000r1c0qe1|31_42;" [#function(":000r2a|c0qu2};" [#function("8000r1i10~|x[\x7fKo01;" [])]) length] vector->list) vector.map #function("8000r2c0qe1}3141;" [#function("8000r1c0qe1|3141;" [#function(":000r1`~axc0qu2|;" [#function(":000r1~|i20i21|[31\\;" [])]) vector.alloc]) length] vector.map) zero? #function("7000r1|`W;" [] zero?)) diff --git a/femtolisp/flisp.c b/femtolisp/flisp.c index 005bffb..5d5468d 100644 --- a/femtolisp/flisp.c +++ b/femtolisp/flisp.c @@ -391,7 +391,7 @@ void fl_gc_handle(value_t *pv) GCHandleStack[N_GCHND++] = pv; } -void fl_free_gc_handles(int n) +void fl_free_gc_handles(uint32_t n) { assert(N_GCHND >= n); N_GCHND -= n; @@ -826,11 +826,11 @@ static uint32_t process_keys(value_t kwtable, lerrorf(ArgError, "keyword %s requires an argument", symbol_name(v)); value_t hv = fixnum(((symbol_t*)ptr(v))->hash); - uint32_t x = 2*(numval(hv) % n); + uint32_t x = 2*(abs(numval(hv)) % n); if (vector_elt(kwtable, x) == v) { uint32_t idx = numval(vector_elt(kwtable, x+1)); assert(idx < nkw); - idx += (nreq+nopt); + idx += nopt; if (args[idx] == UNBOUND) { // if duplicate key, keep first value args[idx] = Stack[bp+i]; @@ -995,40 +995,6 @@ static value_t apply_cl(uint32_t nargs) OP(OP_LVARGC) i = GET_INT32(ip); ip+=4; goto do_vargc; - OP(OP_LET) - // last arg is closure environment to use - nargs--; - Stack[SP-5] = Stack[SP-4]; - Stack[SP-4] = nargs; - POPN(1); - Stack[SP-1] = 0; - curr_frame = SP; - NEXT_OP; - OP(OP_OPTARGS) - i = GET_INT32(ip); ip+=4; - n = GET_INT32(ip); ip+=4; - if (nargs < i) - lerror(ArgError, "apply: too few arguments"); - if ((int32_t)n > 0) { - if (nargs > n) - lerror(ArgError, "apply: too many arguments"); - } - else n = -n; - if (n > nargs) { - n -= nargs; - SP += n; - Stack[SP-1] = Stack[SP-n-1]; - Stack[SP-2] = Stack[SP-n-2]; - Stack[SP-3] = nargs+n; - Stack[SP-4] = Stack[SP-n-4]; - Stack[SP-5] = Stack[SP-n-5]; - curr_frame = SP; - for(i=0; i < n; i++) { - Stack[bp+nargs+i] = UNBOUND; - } - nargs += n; - } - NEXT_OP; OP(OP_BRBOUND) i = GET_INT32(ip); ip+=4; if (captured) @@ -1038,7 +1004,6 @@ static value_t apply_cl(uint32_t nargs) if (v != UNBOUND) ip += (ptrint_t)GET_INT32(ip); else ip += 4; NEXT_OP; - OP(OP_NOP) NEXT_OP; OP(OP_DUP) SP++; Stack[SP-1] = Stack[SP-2]; NEXT_OP; OP(OP_POP) POPN(1); NEXT_OP; OP(OP_TCALL) @@ -1716,7 +1681,6 @@ static value_t apply_cl(uint32_t nargs) NEXT_OP; OP(OP_CLOSURE) - OP(OP_COPYENV) // build a closure (lambda args body . env) if (nargs > 0 && !captured) { // save temporary environment to the heap @@ -1737,17 +1701,15 @@ static value_t apply_cl(uint32_t nargs) else { PUSH(Stack[bp]); // env has already been captured; share } - if (ip[-1] == OP_CLOSURE) { - pv = alloc_words(4); - e = Stack[SP-2]; // closure to copy - assert(isfunction(e)); - pv[0] = ((value_t*)ptr(e))[0]; - pv[1] = ((value_t*)ptr(e))[1]; - pv[2] = Stack[SP-1]; // env - pv[3] = ((value_t*)ptr(e))[3]; - POPN(1); - Stack[SP-1] = tagptr(pv, TAG_FUNCTION); - } + pv = alloc_words(4); + e = Stack[SP-2]; // closure to copy + assert(isfunction(e)); + pv[0] = ((value_t*)ptr(e))[0]; + pv[1] = ((value_t*)ptr(e))[1]; + pv[2] = Stack[SP-1]; // env + pv[3] = ((value_t*)ptr(e))[3]; + POPN(1); + Stack[SP-1] = tagptr(pv, TAG_FUNCTION); NEXT_OP; OP(OP_TRYCATCH) @@ -1756,6 +1718,40 @@ static value_t apply_cl(uint32_t nargs) Stack[SP-1] = v; NEXT_OP; + OP(OP_OPTARGS) + i = GET_INT32(ip); ip+=4; + n = GET_INT32(ip); ip+=4; + if (nargs < i) + lerror(ArgError, "apply: too few arguments"); + if ((int32_t)n > 0) { + if (nargs > n) + lerror(ArgError, "apply: too many arguments"); + } + else n = -n; + if (n > nargs) { + n -= nargs; + SP += n; + Stack[SP-1] = Stack[SP-n-1]; + Stack[SP-2] = Stack[SP-n-2]; + Stack[SP-3] = nargs+n; + Stack[SP-4] = Stack[SP-n-4]; + Stack[SP-5] = Stack[SP-n-5]; + curr_frame = SP; + for(i=0; i < n; i++) { + Stack[bp+nargs+i] = UNBOUND; + } + nargs += n; + } + NEXT_OP; + OP(OP_KEYARGS) + v = fn_vals(Stack[bp-1]); + v = vector_elt(v, 0); + i = GET_INT32(ip); ip+=4; + n = GET_INT32(ip); ip+=4; + s = GET_INT32(ip); ip+=4; + nargs = process_keys(v, i, n, abs(s)-(i+n), bp, nargs, s<0); + NEXT_OP; + #ifndef USE_COMPUTED_GOTO default: goto dispatch; @@ -1794,10 +1790,15 @@ static uint32_t compute_maxstack(uint8_t *code, size_t len) n = GET_INT32(ip); ip+=4; sp += (n+2); break; - case OP_LET: break; case OP_OPTARGS: - i = abs(GET_INT32(ip)); ip+=4; + i = GET_INT32(ip); ip+=4; + n = abs(GET_INT32(ip)); ip+=4; + sp += (n-i); + break; + case OP_KEYARGS: + i = GET_INT32(ip); ip+=4; n = GET_INT32(ip); ip+=4; + n = abs(GET_INT32(ip)); ip+=4; sp += (n-i); break; case OP_BRBOUND: @@ -1854,7 +1855,7 @@ static uint32_t compute_maxstack(uint8_t *code, size_t len) case OP_LOADT: case OP_LOADF: case OP_LOADNIL: case OP_LOAD0: case OP_LOAD1: case OP_LOADA0: case OP_LOADA1: case OP_LOADC00: - case OP_LOADC01: case OP_COPYENV: case OP_DUP: + case OP_LOADC01: case OP_DUP: sp++; break; diff --git a/femtolisp/flisp.h b/femtolisp/flisp.h index 6238983..1e6ea78 100644 --- a/femtolisp/flisp.h +++ b/femtolisp/flisp.h @@ -101,7 +101,7 @@ typedef struct _symbol_t { #define iscbuiltin(x) (iscvalue(x) && (cv_class((cvalue_t*)ptr(x))==builtintype)) void fl_gc_handle(value_t *pv); -void fl_free_gc_handles(int n); +void fl_free_gc_handles(uint32_t n); #include "opcodes.h" diff --git a/femtolisp/mkboot0.lsp b/femtolisp/mkboot0.lsp index 3105718..5de4128 100644 --- a/femtolisp/mkboot0.lsp +++ b/femtolisp/mkboot0.lsp @@ -1,7 +1,7 @@ ; -*- scheme -*- -;(if (not (bound? 'top-level-value)) (set! top-level-value %eval)) -;(if (not (bound? 'set-top-level-value!)) (set! set-top-level-value! set)) +(if (not (bound? 'top-level-value)) (set! top-level-value %eval)) +(if (not (bound? 'set-top-level-value!)) (set! set-top-level-value! set)) ;(load "compiler.lsp") diff --git a/femtolisp/opcodes.h b/femtolisp/opcodes.h index 0eecf8c..b50db59 100644 --- a/femtolisp/opcodes.h +++ b/femtolisp/opcodes.h @@ -23,11 +23,11 @@ enum { OP_SETG, OP_SETGL, OP_SETA, OP_SETAL, OP_SETC, OP_SETCL, - OP_CLOSURE, OP_ARGC, OP_VARGC, OP_TRYCATCH, OP_COPYENV, OP_LET, OP_FOR, + OP_CLOSURE, OP_ARGC, OP_VARGC, OP_TRYCATCH, OP_FOR, OP_TAPPLY, OP_ADD2, OP_SUB2, OP_NEG, OP_LARGC, OP_LVARGC, OP_LOADA0, OP_LOADA1, OP_LOADC00, OP_LOADC01, OP_CALLL, OP_TCALLL, OP_BRNE, OP_BRNEL, OP_CADR, OP_BRNN, OP_BRNNL, OP_BRN, OP_BRNL, - OP_OPTARGS, OP_BRBOUND, + OP_OPTARGS, OP_BRBOUND, OP_KEYARGS, OP_BOOL_CONST_T, OP_BOOL_CONST_F, OP_THE_EMPTY_LIST, @@ -37,7 +37,7 @@ enum { #ifdef USE_COMPUTED_GOTO #define VM_LABELS \ static void *vm_labels[] = { \ -&&L_OP_NOP, &&L_OP_DUP, &&L_OP_POP, &&L_OP_CALL, &&L_OP_TCALL, &&L_OP_JMP, \ +NULL, &&L_OP_DUP, &&L_OP_POP, &&L_OP_CALL, &&L_OP_TCALL, &&L_OP_JMP, \ &&L_OP_BRF, &&L_OP_BRT, \ &&L_OP_JMPL, &&L_OP_BRFL, &&L_OP_BRTL, &&L_OP_RET, \ \ @@ -64,19 +64,18 @@ enum { &&L_OP_SETA, &&L_OP_SETAL, &&L_OP_SETC, &&L_OP_SETCL, \ \ &&L_OP_CLOSURE, &&L_OP_ARGC, &&L_OP_VARGC, &&L_OP_TRYCATCH, \ - &&L_OP_COPYENV, \ - &&L_OP_LET, &&L_OP_FOR, \ + &&L_OP_FOR, \ &&L_OP_TAPPLY, &&L_OP_ADD2, &&L_OP_SUB2, &&L_OP_NEG, &&L_OP_LARGC, \ &&L_OP_LVARGC, \ &&L_OP_LOADA0, &&L_OP_LOADA1, &&L_OP_LOADC00, &&L_OP_LOADC01, \ &&L_OP_CALLL, &&L_OP_TCALLL, &&L_OP_BRNE, &&L_OP_BRNEL, &&L_OP_CADR,\ &&L_OP_BRNN, &&L_OP_BRNNL, &&L_OP_BRN, &&L_OP_BRNL, \ - &&L_OP_OPTARGS, &&L_OP_BRBOUND \ + &&L_OP_OPTARGS, &&L_OP_BRBOUND, &&L_OP_KEYARGS \ } #define VM_APPLY_LABELS \ static void *vm_apply_labels[] = { \ -&&L_OP_NOP, &&L_OP_DUP, &&L_OP_POP, &&L_OP_CALL, &&L_OP_TCALL, &&L_OP_JMP, \ +NULL, &&L_OP_DUP, &&L_OP_POP, &&L_OP_CALL, &&L_OP_TCALL, &&L_OP_JMP, \ &&L_OP_BRF, &&L_OP_BRT, \ &&L_OP_JMPL, &&L_OP_BRFL, &&L_OP_BRTL, &&L_OP_RET, \ \ diff --git a/femtolisp/unittest.lsp b/femtolisp/unittest.lsp index cde0001..e2e0df0 100644 --- a/femtolisp/unittest.lsp +++ b/femtolisp/unittest.lsp @@ -126,6 +126,17 @@ (assert (equal? ((lambda ((x 0) . r) (list x r))) '(0 ()))) (assert (equal? ((lambda ((x 0) . r) (list x r)) 1 2 3) '(1 (2 3)))) +; keyword arguments +(assert (equal? ((lambda (x (a 2) (b: a) . r) (list x a b r)) 1 0 8 4 5) + '(1 0 0 (8 4 5)))) +(assert (equal? ((lambda (x (a 2) (b: a) . r) (list x a b r)) 0 b: 3 1) + '(0 2 3 (1)))) +(define (keys4 (a: 8) (b: 3) (c: 7) (d: 6)) (list a b c d)) +(assert (equal? (keys4 a: 10) '(10 3 7 6))) +(assert (equal? (keys4 b: 10) '(8 10 7 6))) +(assert (equal? (keys4 c: 10) '(8 3 10 6))) +(assert (equal? (keys4 d: 10) '(8 3 7 10))) + ; ok, a couple end-to-end tests as well (define (fib n) (if (< n 2) n (+ (fib (- n 1)) (fib (- n 2))))) (assert (equal? (fib 20) 6765))