How to convert native machine code to llvm bytecode

Is there any mechanism for converting native machine code to llvm bytecode? If not, please give some idea on how to implement it.

Thanks!

+4
source share
1 answer

Libcpu was designed to convert the machine code of various architectures into LLVM IR to facilitate the writing of emulators.

+7
source

Source: https://habr.com/ru/post/1333443/


All Articles