我可以使用 Valgrind 添加我自己定义的汇编指令吗?
我想定义一个伪指令并想在 valgrind 或任何其他 x86 模拟器上进行模拟。有办法做到这一点吗?假设我想在我的指令集中添加像 MOVDB RX,RY 这样的指令,有没有办法使用 valgrind 或任何其他工具来做到这一点?
I want to define a pseudo instruction and want to simulate on valgrind or any other x86 simulator. Is there a way to do that? Suppose I want to add an instruction like MOVDB RX,RY in my instruction set,is there a way to do that using valgrind or any other tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
理论上一切皆有可能。但为什么要添加新指令呢?我确信可以使用其他指令来模拟该指令,因此编写宏可以解决问题。
另一方面,调整任何汇编程序的源代码都是一个非常高级的项目。
一个很好的例子是(大多数)x86 汇编器中不允许内存到内存传输。
使用(简单的)宏可以轻松解决该问题。
Well theoretically everything is possible. But why adding a new instruction? I am sure that this instruction can be simulated using other instruction, so writing a macro would solve the problem.
On the other hand, moderating the source code of any assembler is a really advanced project.
A nice example is that memory to memory transfers are not allowed in (most) x86 assemblers.
That problem is easily solved using a (simple) macro.