add some debug helper on generated machine code

This commit is contained in:
Nguyen Anh Quynh 2015-11-18 00:43:18 +08:00
parent 51945c5bf2
commit 3302b9798c
1 changed files with 7 additions and 1 deletions

View File

@ -204,7 +204,13 @@ static int cpu_gen_code(CPUArchState *env, TranslationBlock *tb, int *gen_code_s
s->interm_time += profile_getclock() - ti;
s->code_time -= profile_getclock();
#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;
#ifdef CONFIG_PROFILER
s->code_time += profile_getclock();