mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 21:10:27 +02:00
* libguile/objcodes.c (make_objcode_by_mmap, scm_c_make_objcode_slice): Verify the lengths with the meta-length. (scm_objcode_meta): New procedure, for getting at the meta-info of an objcode. (scm_objcode_to_bytecode): (scm_write_objcode): Write bytecode with the metadata too. * module/system/vm/objcode.scm: Export object-meta. * module/language/assembly.scm (byte-length): * module/language/assembly/compile-bytecode.scm (write-bytecode): * module/language/assembly/decompile-bytecode.scm (decode-load-program): * module/language/assembly/disassemble.scm (disassemble-load-program): * module/language/glil/compile-assembly.scm (glil->assembly): * test-suite/tests/asm-to-bytecode.test ("compiler"): Change to load-program format to have meta-or-#f instead of meta-length, so that we can serialize the meta as objcode without a load-program byte. Add a test for writing out the meta.
96 lines
3.8 KiB
Scheme
96 lines
3.8 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 #f (make-int8 3) (return))
|
|
(vector 'load-program 3 2 1 0 3 0 0 0 0 0 0 0
|
|
(instruction->opcode 'make-int8) 3
|
|
(instruction->opcode 'return)))
|
|
|
|
;; fixme: little-endian test.
|
|
(comp-test '(load-program 3 2 1 0 () 3
|
|
(load-program 3 2 1 0 () 3
|
|
#f
|
|
(make-int8 3) (return))
|
|
(make-int8 3) (return))
|
|
(vector 'load-program 3 2 1 0 3 0 0 0 (+ 3 12) 0 0 0
|
|
(instruction->opcode 'make-int8) 3
|
|
(instruction->opcode 'return)
|
|
3 2 1 0 3 0 0 0 0 0 0 0
|
|
(instruction->opcode 'make-int8) 3
|
|
(instruction->opcode 'return)))))
|