Home
last modified time | relevance | path

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

/qemu/gdbstub/
H A Dgdbstub.c385 for (guint i = 0; i < cpu->gdb_regs->len; i++) { in get_feature_xml()
386 r = &g_array_index(cpu->gdb_regs, GDBRegisterState, i); in get_feature_xml()
400 for (guint i = 0; i < cpu->gdb_regs->len; i++) { in get_feature_xml()
401 r = &g_array_index(cpu->gdb_regs, GDBRegisterState, i); in get_feature_xml()
500 if (!cpu->gdb_regs) { in gdb_get_register_list()
504 for (int f = 0; f < cpu->gdb_regs->len; f++) { in gdb_get_register_list()
505 GDBRegisterState *r = &g_array_index(cpu->gdb_regs, GDBRegisterState, f); in gdb_get_register_list()
528 for (guint i = 0; i < cpu->gdb_regs->len; i++) { in gdb_read_register()
529 r = &g_array_index(cpu->gdb_regs, GDBRegisterState, i); in gdb_read_register()
545 for (guint i = 0; i < cpu->gdb_regs->len; i++) { in gdb_write_register()
[all …]
/qemu/hw/core/
H A Dcpu-common.c354 if (cpu->gdb_regs) { in cpu_common_finalize()
355 g_array_free(cpu->gdb_regs, TRUE); in cpu_common_finalize()
/qemu/include/hw/core/
H A Dcpu.h514 GArray *gdb_regs; member