Revision 54604f74 translate-all.c

b/translate-all.c
118 118
    s->interm_time += profile_getclock() - ti;
119 119
    s->code_time -= profile_getclock();
120 120
#endif
121
    gen_code_size = dyngen_code(s, gen_code_buf);
121
    gen_code_size = tcg_gen_code(s, gen_code_buf);
122 122
    *gen_code_size_ptr = gen_code_size;
123 123
#ifdef CONFIG_PROFILER
124 124
    s->code_time += profile_getclock();
......
177 177
    s->tb_jmp_offset = NULL;
178 178
    s->tb_next = tb->tb_next;
179 179
#endif
180
    j = dyngen_code_search_pc(s, (uint8_t *)tc_ptr, searched_pc - tc_ptr);
180
    j = tcg_gen_code_search_pc(s, (uint8_t *)tc_ptr, searched_pc - tc_ptr);
181 181
    if (j < 0)
182 182
        return -1;
183 183
    /* now find start of instruction before */

Also available in: Unified diff