Home | History | Annotate | Download | only in qemu

Lines Matching refs:tc_ptr

779     tb_set_jmp_target(tb, n, (unsigned long)(tb->tc_ptr + tb->tb_next_offset[n]));
906 uint8_t *tc_ptr;
920 tc_ptr = code_gen_ptr;
921 tb->tc_ptr = tc_ptr;
1220 code_gen_ptr = tb->tc_ptr;
1265 /* find the TB 'tb' such that tb[0].tc_ptr <= tc_ptr <
1266 tb[1].tc_ptr. Return NULL if not found */
1267 TranslationBlock *tb_find_pc(unsigned long tc_ptr)
1275 if (tc_ptr < (unsigned long)code_gen_buffer ||
1276 tc_ptr >= (unsigned long)code_gen_ptr)
1284 v = (unsigned long)tb->tc_ptr;
1285 if (v == tc_ptr)
1287 else if (tc_ptr < v) {