1

我一直在尝试编写一些 Java 字节码并使用 Jasmin 组装它。

我试图了解子程序,但不确定为什么在运行程序时会收到以下错误消息:

>java -jar jasmin.jar test.j
Generated: test.class

>java test
Exception in thread "main" java.lang.VerifyError: (class: test,
method: main signature: ([Ljava/lang/String;)V)
Cannot load return address from register 0
Could not find the main class: test. Program will exit.

这是 test.j 中的字节码:

.class public test
.super java/lang/Object
.method public static main([Ljava/lang/String;)V
.limit stack 6
.limit locals 5

jsr a     ;Jump to subroutine 'a', pushing return address on operand stack
return    ;Exit the program

a:
astore_0  ;Store the return address in variable 0
aload_0   ;Save the address onto the stack as address will be overwritten in 'b'
jsr b     ;Jump to subroutine 'b', pushing return address on operand stack
astore_0  ;Store the address that was on the stack back into variable 0
ret 0     ;Return to just after "jsr a"

b:
astore_0  ;Store return address in variable 0
ret 0     ;Return to address stored in 0 (ie back to just after the jump in 'a')

.end method

跳转到单个子程序时我没有遇到任何问题,但是从子程序中跳转到子程序时似乎出了点问题。

任何关于为什么失败的见解将不胜感激!

4

1 回答 1

3

您不能将地址类型值加载到任何寄存器中,只能存储它,然后 ret 指令可以从那里检索它。

Java 虚拟机规范:

于 2011-12-10T14:43:16.647 回答