bytecode - Where can I find the opcode numbers for the LLVM bitcode? -
where can find llvm bytecode representation of llvm ir language?
like <result> = add <ty> <op1>, <op2>
, in binary form this incept llvm instead of jvm. more want opcode numbers can study bitcode on binary level.
i think canonical source llvm bit codes file :
llvm-src/include/llvm/bitcode/llvmbitcodes.h
from llvm source can found here: http://llvm.org/releases/
you may want @ code in llvm-src/lib/bitcode/reader, reads bitcode.
Comments
Post a Comment