Searched refs:phys_pc (Results 1 – 4 of 4) sorted by relevance
/openbmc/qemu/accel/tcg/ |
H A D | translate-all.c | 293 tb_page_addr_t phys_pc, phys_p2; in tb_gen_code() local 302 phys_pc = get_page_addr_code_hostp(env, pc, &host_pc); in tb_gen_code() 304 if (phys_pc == -1) { in tb_gen_code() 335 tb_set_page_addr0(tb, phys_pc); in tb_gen_code() 337 if (phys_pc != -1) { in tb_gen_code() 338 tb_lock_page0(phys_pc); in tb_gen_code() 402 tb_unlock_page1(phys_pc, phys_p2); in tb_gen_code()
|
H A D | tb-hash.h | 64 uint32_t tb_hash_func(tb_page_addr_t phys_pc, vaddr pc, in tb_hash_func() argument 67 return qemu_xxhash8(phys_pc, pc, flags2, flags, cf_mask); in tb_hash_func()
|
H A D | cpu-exec.c | 229 tb_page_addr_t phys_pc; in tb_htable_lookup() local 238 phys_pc = get_page_addr_code(desc.env, pc); in tb_htable_lookup() 239 if (phys_pc == -1) { in tb_htable_lookup() 242 desc.page_addr0 = phys_pc; in tb_htable_lookup() 243 h = tb_hash_func(phys_pc, (cflags & CF_PCREL ? 0 : pc), in tb_htable_lookup()
|
H A D | tb-maint.c | 908 tb_page_addr_t phys_pc; in do_tb_phys_invalidate() local 919 phys_pc = tb_page_addr0(tb); in do_tb_phys_invalidate() 920 h = tb_hash_func(phys_pc, (orig_cflags & CF_PCREL ? 0 : tb->pc), in do_tb_phys_invalidate()
|