8

重複の可能性:
LLVMとJavaバイトコードの違いは何ですか?

たとえば、LLVMではそう言っています。

What is commonly known as the LLVM bitcode file format 
(also, sometimes anachronistically known as bytecode) is actually two things: 
a bitstream container format and an encoding of LLVM IR into the container 
format.

私は、JVMで実行できるプラットフォームに依存しないJavaバイトコードしか知りません。

しかし、LLVMビットコードの場合、より具体的な例はありますか?

4

1 に答える 1

3

LLVMメーリングリストから:

フォーマットは文字通りビットストリームであり、バイトストリームではありません。詳細については、このドキュメントを参照してください: http://llvm.org/docs/BitCodeFormat.html

于 2012-05-06T08:53:59.753 に答える