mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
"RTL" didn't make any sense, and now that there's no other bytecode to disambiguate against, just call it bytecode. * module/Makefile.am: * module/ice-9/eval-string.scm: * module/language/bytecode.scm: * module/language/bytecode/spec.scm: * module/language/cps/arities.scm: * module/language/cps/compile-bytecode.scm: * module/language/cps/compile-rtl.scm: * module/language/cps/contification.scm: * module/language/cps/elide-values.scm: * module/language/cps/primitives.scm: * module/language/cps/reify-primitives.scm: * module/language/cps/spec.scm: * module/language/cps/specialize-primcalls.scm: * module/language/rtl.scm: * module/language/rtl/spec.scm: * module/scripts/compile.scm: * module/system/base/compile.scm: * module/system/repl/common.scm: * module/system/vm/assembler.scm: * module/system/vm/debug.scm: * module/system/vm/disassembler.scm: * module/system/vm/dwarf.scm: * test-suite/tests/cross-compilation.test: * test-suite/tests/dwarf.test: * test-suite/tests/rtl-compilation.test: * test-suite/tests/rtl.test: * test-suite/vm/run-vm-tests.scm: Fixups.
90 lines
3.1 KiB
Scheme
90 lines
3.1 KiB
Scheme
;;;; dwarf.test -*- scheme -*-
|
|
;;;;
|
|
;;;; Copyright 2013 Free Software Foundation, Inc.
|
|
;;;;
|
|
;;;; 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 3 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 test-dwarf)
|
|
#:use-module (test-suite lib)
|
|
#:use-module (ice-9 match)
|
|
#:use-module (system base compile)
|
|
#:use-module (system vm debug)
|
|
#:use-module (system vm program)
|
|
#:use-module (system vm loader))
|
|
|
|
(define prog
|
|
(string-concatenate
|
|
;; Every open parenthesis is a possible source location.
|
|
'("(define (qux f)\n"
|
|
;^ 0:0
|
|
" (+ 32 (f)))\n"
|
|
; ^1:2 ^1:8
|
|
"\n"
|
|
"(define bar\n"
|
|
;^ 3;0
|
|
" (lambda (a)\n"
|
|
; ^ 4:2
|
|
" 13))\n"
|
|
"'success\n")
|
|
))
|
|
|
|
(let* ((port (open-input-string prog))
|
|
(bv (begin
|
|
(set-port-filename! port "foo.scm")
|
|
(read-and-compile port #:to 'bytecode))))
|
|
(pass-if-equal 'success
|
|
((load-thunk-from-memory bv)))
|
|
|
|
(pass-if-equal 13 (bar 10))
|
|
|
|
(let ((source (find-source-for-addr (program-code qux))))
|
|
(pass-if-equal "foo.scm" (source-file source))
|
|
(pass-if-equal 0 (source-line source))
|
|
(pass-if-equal 1 (source-line-for-user source))
|
|
(pass-if-equal 0 (source-column source)))
|
|
|
|
(let ((source (find-source-for-addr (program-code bar))))
|
|
(pass-if-equal "foo.scm" (source-file source))
|
|
(pass-if-equal 4 (source-line source))
|
|
(pass-if-equal 5 (source-line-for-user source))
|
|
(pass-if-equal 2 (source-column source)))
|
|
|
|
(match (find-program-sources (program-code qux))
|
|
((s1 s2 s3)
|
|
(pass-if-equal "foo.scm" (source-file s1))
|
|
(pass-if-equal 0 (source-line s1))
|
|
(pass-if-equal 1 (source-line-for-user s1))
|
|
(pass-if-equal 0 (source-column s1))
|
|
|
|
(pass-if-equal "foo.scm" (source-file s2))
|
|
(pass-if-equal 1 (source-line s2))
|
|
(pass-if-equal 2 (source-line-for-user s2))
|
|
(pass-if-equal 8 (source-column s2))
|
|
|
|
(pass-if-equal "foo.scm" (source-file s3))
|
|
(pass-if-equal 1 (source-line s3))
|
|
(pass-if-equal 2 (source-line-for-user s3))
|
|
(pass-if-equal 2 (source-column s3)))
|
|
(sources
|
|
(error "unexpected sources" sources)))
|
|
|
|
(match (find-program-sources (program-code bar))
|
|
((source)
|
|
(pass-if-equal "foo.scm" (source-file source))
|
|
(pass-if-equal 4 (source-line source))
|
|
(pass-if-equal 5 (source-line-for-user source))
|
|
(pass-if-equal 2 (source-column source)))
|
|
(sources
|
|
(error "unexpected sources" sources))))
|