I am a newbie to LLVM IR
, and I am trying to simulate some x86 instructions in LLVM IR
.
Here is a simple case:
move %eax, %ebx
However, I didn't find any corresponding mov
opcode after looking at the materials at here and here.
So my question is :
If I want to simulate the
mov
opcode using LLVM IR? What should I do?I am new to
LLVM IR
, and probably I would spend a long time on this "simulation" work, what should be the best reference about LLVM IR?
I really appreciate if anyone can give me some help. Thanks!