Home
last modified time | relevance | path

Searched refs:pc_w (Results 1 – 6 of 6) sorted by relevance

/qemu/target/avr/
H A Dcpu.c36 cpu->env.pc_w = value / 2; /* internally PC points to words */ in avr_cpu_set_pc()
43 return cpu->env.pc_w * 2; in avr_cpu_get_pc()
69 return (TCGTBCPUState){ .pc = env->pc_w * 2, .flags = flags }; in avr_get_tb_cpu_state()
76 cpu_env(cs)->pc_w = tb->pc / 2; /* internally PC points to words */ in avr_cpu_synchronize_from_tb()
83 cpu_env(cs)->pc_w = data[0]; in avr_restore_state_to_opc()
97 env->pc_w = 0; in avr_cpu_reset_hold()
200 qemu_fprintf(f, "PC: %06x\n", env->pc_w * 2); /* PC points to words */ in avr_cpu_dump_state()
H A Dgdbstub.c48 return gdb_get_reg32(mem_buf, env->pc_w * 2); in avr_cpu_gdb_read_register()
78 env->pc_w = ldl_le_p(mem_buf) / 2; in avr_cpu_gdb_write_register()
H A Dhelper.c79 uint32_t ret = env->pc_w; in avr_cpu_do_interrupt()
101 env->pc_w = base + vector * size; in avr_cpu_do_interrupt()
H A Dmachine.c104 VMSTATE_UINT32(env.pc_w, AVRCPU),
H A Dcpu.h117 uint32_t pc_w; /* 0x003fffff up to 22 bits */ member
H A Dtranslate.c130 cpu_pc = tcg_global_mem_new_i32(tcg_env, AVR_REG_OFFS(pc_w), "pc"); in avr_cpu_tcg_init()