2008-01-03 04:42:10 -05:00
|
|
|
#!/usr/bin/env ikarus --r6rs-script
|
|
|
|
;;; Ikarus Scheme -- A compiler for R6RS Scheme.
|
2008-01-29 00:34:34 -05:00
|
|
|
;;; Copyright (C) 2006,2007,2008 Abdulaziz Ghuloum
|
2008-01-03 04:42:10 -05:00
|
|
|
;;;
|
|
|
|
;;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;;; it under the terms of the GNU General Public License version 3 as
|
|
|
|
;;; published by the Free Software Foundation.
|
|
|
|
;;;
|
|
|
|
;;; This program is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
;;; General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;; vim:syntax=scheme
|
|
|
|
(import
|
|
|
|
(ikarus compiler)
|
2008-01-03 23:03:22 -05:00
|
|
|
(match)
|
2008-01-03 04:42:10 -05:00
|
|
|
(except (ikarus) assembler-output))
|
|
|
|
|
|
|
|
(define (compile1 x)
|
2008-01-04 02:50:45 -05:00
|
|
|
(let ([p (open-file-output-port "test64.fasl" (file-options no-fail))])
|
2008-01-03 04:42:10 -05:00
|
|
|
(parameterize ([assembler-output #t])
|
|
|
|
(compile-core-expr-to-port x p))
|
|
|
|
(close-output-port p)))
|
|
|
|
|
|
|
|
(define (compile-and-run x)
|
|
|
|
(compile1 x)
|
2008-01-04 02:50:45 -05:00
|
|
|
(let ([rs (system "../src/ikarus -b test64.fasl > test64.out")])
|
2008-01-03 04:42:10 -05:00
|
|
|
(unless (= rs 0) (error 'run1 "died"))
|
2008-01-03 23:03:22 -05:00
|
|
|
(with-input-from-file "test64.out"
|
|
|
|
(lambda () (get-string-all (current-input-port))))))
|
2008-01-03 04:42:10 -05:00
|
|
|
|
|
|
|
(define (compile-test-and-run expr expected)
|
2008-01-04 05:54:35 -05:00
|
|
|
(printf "Compiling:\n")
|
|
|
|
(pretty-print expr)
|
|
|
|
(let ([val (compile-and-run (fixup expr))])
|
2008-01-03 04:42:10 -05:00
|
|
|
(unless (equal? val expected)
|
|
|
|
(error 'compile-test-and-run "failed:got:expected" val expected))))
|
|
|
|
|
2008-01-03 23:03:22 -05:00
|
|
|
(define (test-all)
|
|
|
|
(for-each
|
|
|
|
(lambda (x)
|
|
|
|
(compile-test-and-run (car x) (cadr x)))
|
|
|
|
all-tests))
|
|
|
|
|
2008-01-03 04:42:10 -05:00
|
|
|
(define all-tests
|
2008-01-03 23:03:22 -05:00
|
|
|
'([(quote 42) "42\n"]
|
|
|
|
[(quote #f) "#f\n"]
|
|
|
|
[(quote ()) "()\n"]))
|
|
|
|
|
2008-01-04 02:50:45 -05:00
|
|
|
(define (self-evaluating? x)
|
|
|
|
(or (number? x) (char? x) (boolean? x) (null? x) (string? x)))
|
|
|
|
|
2008-01-04 04:41:20 -05:00
|
|
|
(define prims-alist
|
|
|
|
'([$fxadd1 $fxadd1]
|
|
|
|
[$fxsub1 $fxsub1]
|
|
|
|
[$fixnum->char $fixnum->char]
|
|
|
|
[$char->fixnum $char->fixnum]
|
|
|
|
[fixnum? fixnum?]
|
|
|
|
[$fxzero? $fxzero?]
|
|
|
|
[null? null?]
|
|
|
|
[boolean? boolean?]
|
|
|
|
[char? char?]
|
|
|
|
[not not]
|
|
|
|
[$fxlognot $fxlognot]
|
|
|
|
[fx+ $fx+]
|
|
|
|
[fx- $fx-]
|
|
|
|
[fx* $fx*]
|
|
|
|
[fxlogor $fxlogor]
|
|
|
|
[fxlogand $fxlogand]
|
|
|
|
[fxlognot $fxlognot]
|
|
|
|
[fx= $fx=]
|
|
|
|
[fx< $fx<]
|
|
|
|
[fx<= $fx<=]
|
|
|
|
[fx> $fx>]
|
|
|
|
[fx>= $fx>=]
|
|
|
|
))
|
|
|
|
|
2008-01-04 03:49:27 -05:00
|
|
|
|
2008-01-03 23:03:22 -05:00
|
|
|
(define (fixup x)
|
2008-01-04 05:47:18 -05:00
|
|
|
(define (Expr x env)
|
|
|
|
(match x
|
|
|
|
[,n (guard (self-evaluating? n)) `(quote ,n)]
|
|
|
|
[,var (guard (symbol? var))
|
|
|
|
(cond
|
|
|
|
[(assq var env) => cdr]
|
|
|
|
[else (error 'fixup "unbound var" var)])]
|
|
|
|
[(,rator ,[rand*] ...)
|
|
|
|
(guard (assq rator env))
|
|
|
|
`(,(Expr rator env) ,rand* ...)]
|
2008-01-04 05:54:35 -05:00
|
|
|
[(quote ,x) `(quote ,x)]
|
2008-01-04 05:47:18 -05:00
|
|
|
[(,prim ,[args] ...)
|
|
|
|
(guard (assq prim prims-alist))
|
|
|
|
`((primitive ,(cadr (assq prim prims-alist))) ,args ...)]
|
|
|
|
[(if ,[e0] ,[e1] ,[e2])
|
|
|
|
`(if ,e0 ,e1 ,e2)]
|
|
|
|
[(let ([,lhs* ,[rhs*]] ...) ,body)
|
|
|
|
(let ([nlhs* (map gensym lhs*)])
|
|
|
|
(let ([env (append (map cons lhs* nlhs*) env)])
|
|
|
|
`((case-lambda
|
|
|
|
[,nlhs* ,(Expr body env)])
|
|
|
|
,rhs* ...)))]
|
|
|
|
[,_ (error 'fixup "invalid expression" _)]))
|
|
|
|
(Expr x '()))
|
2008-01-03 04:42:10 -05:00
|
|
|
|
2008-01-03 23:03:22 -05:00
|
|
|
(define-syntax add-tests-with-string-output
|
2008-01-03 04:42:10 -05:00
|
|
|
(lambda (x)
|
2008-01-03 23:03:22 -05:00
|
|
|
(syntax-case x (=>)
|
|
|
|
[(_ name [test => string] ...)
|
|
|
|
#'(set! all-tests
|
2008-01-04 05:54:35 -05:00
|
|
|
(append all-tests
|
|
|
|
'([test string] ...)))])))
|
2008-01-03 04:42:10 -05:00
|
|
|
|
2008-01-04 05:54:35 -05:00
|
|
|
(include "tests/tests-1.1-req.scm")
|
|
|
|
(include "tests/tests-1.2-req.scm")
|
|
|
|
(include "tests/tests-1.3-req.scm")
|
|
|
|
(include "tests/tests-1.4-req.scm")
|
|
|
|
(include "tests/tests-1.5-req.scm")
|
2008-01-04 05:47:18 -05:00
|
|
|
(include "tests/tests-1.6-req.scm")
|
2008-01-03 04:42:10 -05:00
|
|
|
|
2008-01-03 23:03:22 -05:00
|
|
|
(test-all)
|
|
|
|
(printf "Passed ~s tests\n" (length all-tests))
|
2008-01-03 04:42:10 -05:00
|
|
|
(printf "Happy Happy Joy Joy\n")
|
|
|
|
|