What are the difference between byte code and bit code [duplicate]

风格不统一 提交于 2019-12-08 18:56:31

问题


Possible Duplicate:
What are the differences between LLVM and java bytecode?

For example, in LLVM, it said..

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.

I only know Java Bytecode which is platform independent which can be run by the JVM

But for the LLVM bit code, are there more concrete examples?


回答1:


From the LLVM mailing list:

The format is literally a bitstream, not a bytestream. See this document for more details: http://llvm.org/docs/BitCodeFormat.html



来源:https://stackoverflow.com/questions/10469301/what-are-the-difference-between-byte-code-and-bit-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!