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 回答