Searched refs:phys_pc (Results 1 – 4 of 4) sorted by relevance
/openbmc/qemu/accel/tcg/ |
H A D | translate-all.c | 296 tb_page_addr_t phys_pc, phys_p2; in tb_gen_code() local 305 phys_pc = get_page_addr_code_hostp(env, pc, &host_pc); in tb_gen_code() 307 if (phys_pc == -1) { in tb_gen_code() 338 tb_set_page_addr0(tb, phys_pc); in tb_gen_code() 340 if (phys_pc != -1) { in tb_gen_code() 341 tb_lock_page0(phys_pc); in tb_gen_code() 405 tb_unlock_page1(phys_pc, phys_p2); in tb_gen_code()
|
H A D | tb-hash.h | 65 uint32_t tb_hash_func(tb_page_addr_t phys_pc, vaddr pc, in tb_hash_func() argument 68 return qemu_xxhash8(phys_pc, pc, flags2, flags, cf_mask); in tb_hash_func()
|
H A D | cpu-exec.c | 200 tb_page_addr_t phys_pc; in tb_htable_lookup() local 209 phys_pc = get_page_addr_code(desc.env, pc); in tb_htable_lookup() 210 if (phys_pc == -1) { in tb_htable_lookup() 213 desc.page_addr0 = phys_pc; in tb_htable_lookup() 214 h = tb_hash_func(phys_pc, (cflags & CF_PCREL ? 0 : pc), in tb_htable_lookup()
|
H A D | tb-maint.c | 912 tb_page_addr_t phys_pc; in do_tb_phys_invalidate() local 923 phys_pc = tb_page_addr0(tb); in do_tb_phys_invalidate() 924 h = tb_hash_func(phys_pc, (orig_cflags & CF_PCREL ? 0 : tb->pc), in do_tb_phys_invalidate()
|