Lines Matching refs:gdb_regs
385 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()
546 r = &g_array_index(cpu->gdb_regs, GDBRegisterState, i); in gdb_write_register()
565 g_array_append_val(cpu->gdb_regs, s); in gdb_register_feature()
588 cpu->gdb_regs = g_array_new(false, false, sizeof(GDBRegisterState)); in gdb_init_cpu()
611 for (i = 0; i < cpu->gdb_regs->len; i++) { in gdb_register_coprocessor()
613 s = &g_array_index(cpu->gdb_regs, GDBRegisterState, i); in gdb_register_coprocessor()
639 g_array_free(cpu->gdb_regs, true); in gdb_unregister_coprocessor_all()
641 cpu->gdb_regs = NULL; in gdb_unregister_coprocessor_all()