Home
last modified time | relevance | path

Searched refs:tb_ctx (Results 1 – 3 of 3) sorted by relevance

/external/qemu/
Dtranslate-all.c629 tcg_ctx.tb_ctx.tbs = in code_gen_alloc()
660 if (tcg_ctx.tb_ctx.nb_tbs >= tcg_ctx.code_gen_max_blocks || in tb_alloc()
665 tb = &tcg_ctx.tb_ctx.tbs[tcg_ctx.tb_ctx.nb_tbs++]; in tb_alloc()
676 if (tcg_ctx.tb_ctx.nb_tbs > 0 && in tb_free()
677 tb == &tcg_ctx.tb_ctx.tbs[tcg_ctx.tb_ctx.nb_tbs - 1]) { in tb_free()
679 tcg_ctx.tb_ctx.nb_tbs--; in tb_free()
733 tcg_ctx.tb_ctx.nb_tbs, tcg_ctx.tb_ctx.nb_tbs > 0 ? in tb_flush()
735 tcg_ctx.tb_ctx.nb_tbs : 0); in tb_flush()
741 tcg_ctx.tb_ctx.nb_tbs = 0; in tb_flush()
748 memset(tcg_ctx.tb_ctx.tb_phys_hash, 0, in tb_flush()
[all …]
Dcpu-exec.c136 ptb1 = &tcg_ctx.tb_ctx.tb_phys_hash[h]; in tb_find_slow()
166 tb->phys_hash_next = tcg_ctx.tb_ctx.tb_phys_hash[h]; in tb_find_slow()
167 tcg_ctx.tb_ctx.tb_phys_hash[h] = tb; in tb_find_slow()
563 spin_lock(&tcg_ctx.tb_ctx.tb_lock); in cpu_exec()
585 spin_unlock(&tcg_ctx.tb_ctx.tb_lock); in cpu_exec()
/external/qemu/tcg/
Dtcg.h526 TBContext tb_ctx; member