Beam 字节码指令
Beam bytecode instructions
大家好,我有一个关于传送文件格式字节码的问题。
说明的{label,1}和{line,1}是什么?
有没有好人website/sheet 在哪里可以阅读有关倒车光束文件的信息?
谢谢
来自 Erlang 的 compile
module documentation:
Notice that the format of assembler files is not documented, and can change between releases.
也就是说,label
指令标记了一个用于分支和调用目的的位置,line
指令提供了源位置和行号信息。
您可能想要调查 Abstract Format documentation。
大家好,我有一个关于传送文件格式字节码的问题。
说明的{label,1}和{line,1}是什么?
有没有好人website/sheet 在哪里可以阅读有关倒车光束文件的信息?
谢谢
来自 Erlang 的 compile
module documentation:
Notice that the format of assembler files is not documented, and can change between releases.
也就是说,label
指令标记了一个用于分支和调用目的的位置,line
指令提供了源位置和行号信息。
您可能想要调查 Abstract Format documentation。