mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-06 23:50:18 +02:00
fix bug in self-tail-recursion with "external" variables; other sundries
* gdbinit (pp, inst): New commands. * libguile/vm-engine.c (vm_error_not_a_pair): New error case. * libguile/vm-i-scheme.c (VM_VALIDATE_CONS): New macro -- use this instead of SCM_VALIDATE_* because SCM_VALIDATE will exit nonlocally before we have a chance to sync the regs. (car, cdr, set-car, set-cdr): Use VM_VALIDATE_CONS. * libguile/vm-i-system.c (goto/args): Bugfix: when doing a self-tail-recursion, allocate fresh externals. Fixes use of match.go. * module/system/vm/assemble.scm (dump-object!): Add some checks that we aren't dumping out values that the VM can't handle. * module/system/vm/disasm.scm (disassemble-externals): Fix rotten call to `print-info'. * oop/goops/dispatch.scm: Add a FIXME. * testsuite/Makefile.am (vm_test_files): * testsuite/t-closure4.scm (extract-symbols): New test, distilled with much effort out of match.scm. * ice-9/Makefile.am (NOCOMP_SOURCES): Re-enable compilation of match.scm. Yay!
This commit is contained in:
parent
b3b45ac15e
commit
5e390de62f
10 changed files with 66 additions and 12 deletions
|
@ -179,6 +179,8 @@
|
|||
((not (struct? (car classes))) sum)
|
||||
(set! sum (+ sum (struct-ref (car classes) hashset-index))))))
|
||||
|
||||
;;; FIXME: the throw probably is expensive, given that this function
|
||||
;;; might be called an average of 3 or 4 times per rehash...
|
||||
(define (cache-try-hash! min-misses hashset cache entries)
|
||||
(let ((max-misses 0)
|
||||
(mask (- (vector-length cache) 1)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue