我可以使用 Valgrind 添加我自己定义的汇编指令吗?

发布于 2024-12-14 08:42:40 字数 122 浏览 0 评论 0原文

我想定义一个伪指令并想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦在深巷 2024-12-21 08:42:40

理论上一切皆有可能。但为什么要添加新指令呢?我确信可以使用其他指令来模拟该指令,因此编写宏可以解决问题。

另一方面,调整任何汇编程序的源代码都是一个非常高级的项目。

一个很好的例子是(大多数)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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文