mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 04:40:29 +02:00
* module/language/bytecode/Makefile.am: * module/language/bytecode/spec.scm: Add another language to the stack, bytecode. Bytecode is the u8vector form of object code.. * configure.in: * module/language/Makefile.am: * module/language/assembly/Makefile.am: * test-suite/tests/asm-to-bytecode.test: * module/language/assembly/spec.scm: * module/language/assembly/compile-bytecode.scm: Update to include the new pass.
83 lines
3.2 KiB
Scheme
83 lines
3.2 KiB
Scheme
;;;; test assembly to bytecode compilation -*- scheme -*-
|
|
;;;;
|
|
;;;; This library is free software; you can redistribute it and/or
|
|
;;;; modify it under the terms of the GNU Lesser General Public
|
|
;;;; License as published by the Free Software Foundation; either
|
|
;;;; version 2.1 of the License, or (at your option) any later version.
|
|
;;;;
|
|
;;;; This library 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
|
|
;;;; Lesser General Public License for more details.
|
|
;;;;
|
|
;;;; You should have received a copy of the GNU Lesser General Public
|
|
;;;; License along with this library; if not, write to the Free Software
|
|
;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
(define-module (test-suite tests asm-to-bytecode)
|
|
#:use-module (test-suite lib)
|
|
#:use-module (system vm instruction)
|
|
#:use-module (language assembly compile-bytecode))
|
|
|
|
(define (munge-bytecode v)
|
|
(let ((newv (make-u8vector (vector-length v))))
|
|
(let lp ((i 0))
|
|
(if (= i (vector-length v))
|
|
newv
|
|
(let ((x (vector-ref v i)))
|
|
(u8vector-set! newv i (if (symbol? x)
|
|
(instruction->opcode x)
|
|
x))
|
|
(lp (1+ i)))))))
|
|
|
|
(define (comp-test x y)
|
|
(let* ((y (munge-bytecode y))
|
|
(len (u8vector-length y))
|
|
(v (make-u8vector len))
|
|
(i 0))
|
|
(define (write-byte b) (u8vector-set! v i b) (set! i (1+ i)))
|
|
(define (get-addr) i)
|
|
(run-test `(length ,x) #t
|
|
(lambda ()
|
|
(write-bytecode x write-byte get-addr '())
|
|
(= i len)))
|
|
(run-test `(compile-equal? ,x ,y) #t
|
|
(lambda ()
|
|
(equal? v y)))))
|
|
|
|
(with-test-prefix "compiler"
|
|
(with-test-prefix "asm-to-bytecode"
|
|
|
|
(comp-test '(make-int8 3)
|
|
#(make-int8 3))
|
|
|
|
(comp-test `(load-integer ,(string (integer->char 0)))
|
|
#(load-integer 0 0 1 0))
|
|
|
|
(comp-test `(load-integer ,(string (integer->char 255)))
|
|
#(load-integer 0 0 1 255))
|
|
|
|
(comp-test `(load-integer ,(string (integer->char 1) (integer->char 0)))
|
|
#(load-integer 0 0 2 1 0))
|
|
|
|
(comp-test '(load-number "3.14")
|
|
(vector 'load-number 0 0 4 (char->integer #\3) (char->integer #\.)
|
|
(char->integer #\1) (char->integer #\4)))
|
|
|
|
(comp-test '(load-string "foo")
|
|
(vector 'load-string 0 0 3 (char->integer #\f) (char->integer #\o)
|
|
(char->integer #\o)))
|
|
|
|
(comp-test '(load-symbol "foo")
|
|
(vector 'load-symbol 0 0 3 (char->integer #\f) (char->integer #\o)
|
|
(char->integer #\o)))
|
|
|
|
(comp-test '(load-keyword "qux")
|
|
(vector 'load-keyword 0 0 3 (char->integer #\q) (char->integer #\u)
|
|
(char->integer #\x)))
|
|
|
|
;; fixme: little-endian test.
|
|
(comp-test '(load-program 3 2 1 0 '() 3 (make-int8 3) (return))
|
|
(vector 'load-program 3 2 1 0 3 0 0 0
|
|
(instruction->opcode 'make-int8) 3
|
|
(instruction->opcode 'return)))))
|