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 got(it is returned for execution).How will i copy it to a file?

/qemu-0.14.0/cpu-exec.c Thanks

link|improve this question

43% accept rate
feedback

1 Answer

find cpu_gen_code() @ translate-all.c:57, -to-> @ line104: log_disas(tb->tc_ptr, *gen_code_size_ptr); try to hack it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.