开发者

Where is the VM in LLVM?

Note: marked as community wiki.

Where is the Low Level Virtual Machine in LLVM?

I see that we have llvm-g++ and c-lang, but to me, a LLVM is something almost like Valgrind of a simulator, where instructions are 开发者_运维知识库executed on it, and I can write programs to instrument the running code / interrupt when certain conditions happen / etc ...

Where are the tools like this built on LLVM?

Thanks!


I think you're looking for QEMU, not LLVM.

The low-level virtual machine in LLVM is that, after converting the higher-level C and C++ language input into an internal low-level representation (as a stage in the normal compiling process), it can then save this low-level representation and execute it on a JIT compiler (which thus acts somewhat like a virtual machine). This JIT compiler does a substantial amount of optimization, and so I expect it would be difficult to instrument in quite the form that you're thinking of -- in particular, it does not do instruction-by-instruction stepping through the execution.

QEMU, by contrast, is an open-source emulator that does instruction-by-instruction stepping through of machine code. It already contains a certain amount of ability to instrument code to look for certain conditions, in that it can connect to GDB and set watchpoints and so forth, which are implemented in QEMU itself.


To use LLVM for running x86 code you should check libCPU or outdated llvm-qemu.

Look at running x86 program _on_ llvm

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜