public inbox for kawa@sourceware.org
 help / color / mirror / Atom feed
* java.lang.VerifyError exception
@ 2014-12-30  1:19 Seth Alves
  2015-01-03 22:23 ` Per Bothner
  2015-02-02 12:14 ` Per Bothner
  0 siblings, 2 replies; 6+ messages in thread
From: Seth Alves @ 2014-12-30  1:19 UTC (permalink / raw)
  To: kawa

[-- Attachment #1: Type: text/plain, Size: 1287 bytes --]

Here is a boiled-down snippet of nonsense code (it started as part of 
the snow zlib package).

     -seth

$ ./test-kawa.scm
Exception in thread "main" java.lang.VerifyError: Bad local variable type
Exception Details:
   Location:
     fuh$frame.lambda1loop()Ljava/lang/Object; @13: aload_2
   Reason:
     Type top (current frame, locals[2]) is not assignable to reference type
   Current Frame:
     bci: @13
     flags: { }
     locals: { 'fuh$frame', 'fuh$frame0' }
     stack: { }
   Bytecode:
     0000000: bb00 0459 b700 0859 2ab5 000c 4c2c 1008
     0000010: b800 124d 2b05 bd00 1459 03b2 001a 5359
     0000020: 04b2 001e 53b8 0024 b600 28b0

     at fuh.gunzipGenport(test-kawa.scm:11)
     at fuh.apply0(test-kawa.scm:11)
     at gnu.expr.ModuleMethod.apply0(ModuleMethod.java:186)
     at gnu.expr.ModuleMethod.apply(ModuleMethod.java:160)
     at gnu.mapping.CallContext.runUntilDone(CallContext.java:234)
     at test$Mnkawa.run(test-kawa.scm:34)
     at gnu.expr.ModuleExp.evalModule2(ModuleExp.java:317)
     at gnu.expr.CompiledModule.evalModule(CompiledModule.java:42)
     at gnu.expr.CompiledModule.evalModule(CompiledModule.java:61)
     at kawa.Shell.runFile(Shell.java:538)
     at kawa.Shell.runFileOrClass(Shell.java:447)
     at kawa.repl.main(repl.java:881)


[-- Attachment #2: test-kawa.scm --]
[-- Type: text/x-scheme, Size: 701 bytes --]

#! /bin/sh
#| -*- scheme -*-
exec /usr/local/bin/kawa $0 "$@"
|#

(define-library (fuh)
  (export gunzip-genport)
  (import (scheme base))
  (begin

    (define (gunzip-genport)

      (define bk 0) 

      (define (inflate-codes bl)
        (set! bk (+ bk 8)))

      (define (inflate-dynamic)
        (inflate-codes 7))

      (let loop ()
        (inflate-dynamic)
        (let laap ((res (vector 'return #f)))
          (let ((state (vector-ref res 0))
                (r (vector-ref res 1)))
            (case state
              ((return)
               (if r (loop) #f))
              ((flush)
               (lambda () (laap #f))))))))))

(import (scheme base)
        (fuh))
(gunzip-genport)

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-02-10  2:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-30  1:19 java.lang.VerifyError exception Seth Alves
2015-01-03 22:23 ` Per Bothner
2015-02-02 12:14 ` Per Bothner
2015-02-08  3:18   ` Seth Alves
2015-02-09 23:31     ` Per Bothner
2015-02-10  2:19       ` Seth Alves

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).