mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-09-23 02:37:11 +00:00
add some debug helper on generated machine code
This commit is contained in:
parent
51945c5bf2
commit
3302b9798c
|
@ -204,7 +204,13 @@ static int cpu_gen_code(CPUArchState *env, TranslationBlock *tb, int *gen_code_s
|
||||||
s->interm_time += profile_getclock() - ti;
|
s->interm_time += profile_getclock() - ti;
|
||||||
s->code_time -= profile_getclock();
|
s->code_time -= profile_getclock();
|
||||||
#endif
|
#endif
|
||||||
gen_code_size = tcg_gen_code(s, gen_code_buf); // qq
|
gen_code_size = tcg_gen_code(s, gen_code_buf);
|
||||||
|
//printf(">>> code size = %u: ", gen_code_size);
|
||||||
|
//int i;
|
||||||
|
//for (i = 0; i < gen_code_size; i++) {
|
||||||
|
// printf(" %02x", gen_code_buf[i]);
|
||||||
|
//}
|
||||||
|
//printf("\n");
|
||||||
*gen_code_size_ptr = gen_code_size;
|
*gen_code_size_ptr = gen_code_size;
|
||||||
#ifdef CONFIG_PROFILER
|
#ifdef CONFIG_PROFILER
|
||||||
s->code_time += profile_getclock();
|
s->code_time += profile_getclock();
|
||||||
|
|
Loading…
Reference in a new issue