在文件中捕获 Qemu 生成的代码
在 qemu 中,当我们发出指令时,它会转换为特定架构的机器代码。我想将此代码写入文件。为此,我认为在 cpu-exec.c 中获得了生成的代码(返回执行)。我如何将其复制到文件中?
/qemu-0.14.0/cpu-exec.c
In qemu, when we are giving instructions it gets converted to the machine code for the particular architecture. I would like to write this code to a file. For that I think in cpu-exec.c the generated code is obtained (it is returned for execution). How will i copy it to a file?
/qemu-0.14.0/cpu-exec.c
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到 cpu_gen_code() @translate-all.c:57,
-到->
@ line104: log_disas(tb->tc_ptr, *gen_code_size_ptr);
尝试破解它。
find cpu_gen_code() @ translate-all.c:57,
-to->
@ line104: log_disas(tb->tc_ptr, *gen_code_size_ptr);
try to hack it.