Searched refs:phys_pc (Results 1 – 4 of 4) sorted by relevance
/qemu/accel/tcg/ |
H A D | translate-all.c | 265 tb_page_addr_t phys_pc, phys_p2; in tb_gen_code() local 274 phys_pc = get_page_addr_code_hostp(env, s.pc, &host_pc); in tb_gen_code() 276 if (phys_pc == -1) { in tb_gen_code() 307 tb_set_page_addr0(tb, phys_pc); in tb_gen_code() 309 if (phys_pc != -1) { in tb_gen_code() 310 tb_lock_page0(phys_pc); in tb_gen_code() 364 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 | 196 tb_page_addr_t phys_pc; in tb_htable_lookup() local 202 phys_pc = get_page_addr_code(desc.env, s.pc); in tb_htable_lookup() 203 if (phys_pc == -1) { in tb_htable_lookup() 206 desc.page_addr0 = phys_pc; in tb_htable_lookup() 207 h = tb_hash_func(phys_pc, (s.cflags & CF_PCREL ? 0 : s.pc), in tb_htable_lookup()
|
H A D | tb-maint.c | 909 tb_page_addr_t phys_pc; in do_tb_phys_invalidate() local 920 phys_pc = tb_page_addr0(tb); in do_tb_phys_invalidate() 921 h = tb_hash_func(phys_pc, (orig_cflags & CF_PCREL ? 0 : tb->pc), in do_tb_phys_invalidate()
|