2013-07-07 14:26:33 +04:00
|
|
|
/*
|
|
|
|
* PowerPC gdb server stub
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2005 Fabrice Bellard
|
|
|
|
* Copyright (c) 2013 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2020-10-19 09:11:26 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2013-07-07 14:26:33 +04:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2016-01-26 21:16:58 +03:00
|
|
|
#include "qemu/osdep.h"
|
2016-03-15 18:58:45 +03:00
|
|
|
#include "cpu.h"
|
2013-06-29 06:18:45 +04:00
|
|
|
#include "exec/gdbstub.h"
|
2023-03-03 05:57:56 +03:00
|
|
|
#include "gdbstub/helpers.h"
|
2021-04-26 21:47:06 +03:00
|
|
|
#include "internal.h"
|
2013-07-07 14:26:33 +04:00
|
|
|
|
2014-06-23 17:23:08 +04:00
|
|
|
static int ppc_gdb_register_len_apple(int n)
|
|
|
|
{
|
|
|
|
switch (n) {
|
|
|
|
case 0 ... 31:
|
|
|
|
/* gprs */
|
|
|
|
return 8;
|
|
|
|
case 32 ... 63:
|
|
|
|
/* fprs */
|
|
|
|
return 8;
|
|
|
|
case 64 ... 95:
|
|
|
|
return 16;
|
2019-03-21 13:31:45 +03:00
|
|
|
case 64 + 32: /* nip */
|
|
|
|
case 65 + 32: /* msr */
|
|
|
|
case 67 + 32: /* lr */
|
|
|
|
case 68 + 32: /* ctr */
|
|
|
|
case 70 + 32: /* fpscr */
|
2014-06-23 17:23:08 +04:00
|
|
|
return 8;
|
2019-03-21 13:31:45 +03:00
|
|
|
case 66 + 32: /* cr */
|
|
|
|
case 69 + 32: /* xer */
|
2014-06-23 17:23:08 +04:00
|
|
|
return 4;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-08 01:40:59 +04:00
|
|
|
static int ppc_gdb_register_len(int n)
|
|
|
|
{
|
|
|
|
switch (n) {
|
|
|
|
case 0 ... 31:
|
|
|
|
/* gprs */
|
|
|
|
return sizeof(target_ulong);
|
|
|
|
case 66:
|
|
|
|
/* cr */
|
2018-02-23 20:29:56 +03:00
|
|
|
case 69:
|
|
|
|
/* xer */
|
2014-04-08 01:40:59 +04:00
|
|
|
return 4;
|
|
|
|
case 64:
|
|
|
|
/* nip */
|
|
|
|
case 65:
|
|
|
|
/* msr */
|
|
|
|
case 67:
|
|
|
|
/* lr */
|
|
|
|
case 68:
|
|
|
|
/* ctr */
|
|
|
|
return sizeof(target_ulong);
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-21 13:31:45 +03:00
|
|
|
/*
|
|
|
|
* We need to present the registers to gdb in the "current" memory
|
|
|
|
* ordering. For user-only mode we get this for free;
|
2022-03-23 18:57:18 +03:00
|
|
|
* TARGET_BIG_ENDIAN is set to the proper ordering for the
|
2019-03-21 13:31:45 +03:00
|
|
|
* binary, and cannot be changed. For system mode,
|
2022-03-23 18:57:18 +03:00
|
|
|
* TARGET_BIG_ENDIAN is always set, and we must check the current
|
2019-03-21 13:31:45 +03:00
|
|
|
* mode of the chip to see if we're running in little-endian.
|
|
|
|
*/
|
2016-01-15 18:00:18 +03:00
|
|
|
void ppc_maybe_bswap_register(CPUPPCState *env, uint8_t *mem_buf, int len)
|
2014-04-08 01:41:00 +04:00
|
|
|
{
|
2014-06-28 20:45:28 +04:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2022-05-05 00:05:23 +03:00
|
|
|
if (!FIELD_EX64(env->msr, MSR, LE)) {
|
2014-06-28 20:45:28 +04:00
|
|
|
/* do nothing */
|
|
|
|
} else if (len == 4) {
|
2014-04-08 01:41:00 +04:00
|
|
|
bswap32s((uint32_t *)mem_buf);
|
|
|
|
} else if (len == 8) {
|
|
|
|
bswap64s((uint64_t *)mem_buf);
|
2021-08-26 17:56:56 +03:00
|
|
|
} else if (len == 16) {
|
|
|
|
bswap128s((Int128 *)mem_buf);
|
2014-04-08 01:41:00 +04:00
|
|
|
} else {
|
|
|
|
g_assert_not_reached();
|
|
|
|
}
|
2014-06-28 20:45:28 +04:00
|
|
|
#endif
|
2014-04-08 01:41:00 +04:00
|
|
|
}
|
|
|
|
|
2019-03-21 13:31:45 +03:00
|
|
|
/*
|
|
|
|
* Old gdb always expects FP registers. Newer (xml-aware) gdb only
|
2013-07-07 14:26:33 +04:00
|
|
|
* expects whatever the target description contains. Due to a
|
|
|
|
* historical mishap the FP registers appear in between core integer
|
2019-03-21 13:31:45 +03:00
|
|
|
* regs and PC, MSR, CR, and so forth. We hack round this by giving
|
|
|
|
* the FP regs zero size when talking to a newer gdb.
|
2013-07-07 14:26:33 +04:00
|
|
|
*/
|
|
|
|
|
2020-03-16 20:21:41 +03:00
|
|
|
int ppc_cpu_gdb_read_register(CPUState *cs, GByteArray *buf, int n)
|
2013-07-07 14:26:33 +04:00
|
|
|
{
|
2024-01-29 19:45:03 +03:00
|
|
|
CPUPPCState *env = cpu_env(cs);
|
2020-03-16 20:21:41 +03:00
|
|
|
uint8_t *mem_buf;
|
2014-04-08 01:40:59 +04:00
|
|
|
int r = ppc_gdb_register_len(n);
|
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
return r;
|
|
|
|
}
|
2013-06-29 06:18:45 +04:00
|
|
|
|
2013-07-07 14:26:33 +04:00
|
|
|
if (n < 32) {
|
|
|
|
/* gprs */
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_regl(buf, env->gpr[n]);
|
2013-07-07 14:26:33 +04:00
|
|
|
} else {
|
|
|
|
switch (n) {
|
|
|
|
case 64:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_regl(buf, env->nip);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 65:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_regl(buf, env->msr);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 66:
|
|
|
|
{
|
2023-05-03 12:36:18 +03:00
|
|
|
uint32_t cr = ppc_get_cr(env);
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg32(buf, cr);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
}
|
|
|
|
case 67:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_regl(buf, env->lr);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 68:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_regl(buf, env->ctr);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 69:
|
2021-10-15 01:32:32 +03:00
|
|
|
gdb_get_reg32(buf, cpu_read_xer(env));
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
}
|
|
|
|
}
|
2020-03-16 20:21:41 +03:00
|
|
|
mem_buf = buf->data + buf->len - r;
|
2016-01-15 18:00:18 +03:00
|
|
|
ppc_maybe_bswap_register(env, mem_buf, r);
|
2014-04-08 01:40:59 +04:00
|
|
|
return r;
|
2013-07-07 14:26:33 +04:00
|
|
|
}
|
|
|
|
|
2020-03-16 20:21:41 +03:00
|
|
|
int ppc_cpu_gdb_read_register_apple(CPUState *cs, GByteArray *buf, int n)
|
2014-06-23 17:23:08 +04:00
|
|
|
{
|
2024-01-29 19:45:03 +03:00
|
|
|
CPUPPCState *env = cpu_env(cs);
|
2020-03-16 20:21:41 +03:00
|
|
|
uint8_t *mem_buf;
|
2014-06-23 17:23:08 +04:00
|
|
|
int r = ppc_gdb_register_len_apple(n);
|
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n < 32) {
|
|
|
|
/* gprs */
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg64(buf, env->gpr[n]);
|
2014-06-23 17:23:08 +04:00
|
|
|
} else if (n < 64) {
|
|
|
|
/* fprs */
|
2021-02-11 15:27:47 +03:00
|
|
|
gdb_get_reg64(buf, *cpu_fpr_ptr(env, n - 32));
|
2014-06-23 17:23:08 +04:00
|
|
|
} else if (n < 96) {
|
|
|
|
/* Altivec */
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg64(buf, n - 64);
|
|
|
|
gdb_get_reg64(buf, 0);
|
2014-06-23 17:23:08 +04:00
|
|
|
} else {
|
|
|
|
switch (n) {
|
|
|
|
case 64 + 32:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg64(buf, env->nip);
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
case 65 + 32:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg64(buf, env->msr);
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
case 66 + 32:
|
|
|
|
{
|
2023-05-03 12:36:18 +03:00
|
|
|
uint32_t cr = ppc_get_cr(env);
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg32(buf, cr);
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 67 + 32:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg64(buf, env->lr);
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
case 68 + 32:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg64(buf, env->ctr);
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
case 69 + 32:
|
2021-10-15 01:32:32 +03:00
|
|
|
gdb_get_reg32(buf, cpu_read_xer(env));
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
case 70 + 32:
|
2020-03-16 20:21:41 +03:00
|
|
|
gdb_get_reg64(buf, env->fpscr);
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-03-16 20:21:41 +03:00
|
|
|
mem_buf = buf->data + buf->len - r;
|
2016-01-15 18:00:18 +03:00
|
|
|
ppc_maybe_bswap_register(env, mem_buf, r);
|
2014-06-23 17:23:08 +04:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-06-29 06:18:45 +04:00
|
|
|
int ppc_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
2013-07-07 14:26:33 +04:00
|
|
|
{
|
2024-01-29 19:45:03 +03:00
|
|
|
CPUPPCState *env = cpu_env(cs);
|
2014-04-08 01:40:59 +04:00
|
|
|
int r = ppc_gdb_register_len(n);
|
2013-06-29 06:18:45 +04:00
|
|
|
|
2014-04-08 01:40:59 +04:00
|
|
|
if (!r) {
|
|
|
|
return r;
|
|
|
|
}
|
2016-01-15 18:00:18 +03:00
|
|
|
ppc_maybe_bswap_register(env, mem_buf, r);
|
2013-07-07 14:26:33 +04:00
|
|
|
if (n < 32) {
|
|
|
|
/* gprs */
|
|
|
|
env->gpr[n] = ldtul_p(mem_buf);
|
|
|
|
} else if (n < 64) {
|
|
|
|
/* fprs */
|
2021-02-11 15:27:47 +03:00
|
|
|
*cpu_fpr_ptr(env, n - 32) = ldq_p(mem_buf);
|
2013-07-07 14:26:33 +04:00
|
|
|
} else {
|
|
|
|
switch (n) {
|
|
|
|
case 64:
|
|
|
|
env->nip = ldtul_p(mem_buf);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 65:
|
|
|
|
ppc_store_msr(env, ldtul_p(mem_buf));
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 66:
|
|
|
|
{
|
|
|
|
uint32_t cr = ldl_p(mem_buf);
|
2023-05-03 12:36:18 +03:00
|
|
|
ppc_set_cr(env, cr);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
}
|
|
|
|
case 67:
|
|
|
|
env->lr = ldtul_p(mem_buf);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 68:
|
|
|
|
env->ctr = ldtul_p(mem_buf);
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 69:
|
2021-10-15 01:32:32 +03:00
|
|
|
cpu_write_xer(env, ldl_p(mem_buf));
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
case 70:
|
|
|
|
/* fpscr */
|
2021-05-27 19:35:22 +03:00
|
|
|
ppc_store_fpscr(env, ldtul_p(mem_buf));
|
2014-04-08 01:40:59 +04:00
|
|
|
break;
|
2013-07-07 14:26:33 +04:00
|
|
|
}
|
|
|
|
}
|
2014-04-08 01:40:59 +04:00
|
|
|
return r;
|
2013-07-07 14:26:33 +04:00
|
|
|
}
|
2014-06-23 17:23:08 +04:00
|
|
|
int ppc_cpu_gdb_write_register_apple(CPUState *cs, uint8_t *mem_buf, int n)
|
|
|
|
{
|
2024-01-29 19:45:03 +03:00
|
|
|
CPUPPCState *env = cpu_env(cs);
|
2014-06-23 17:23:08 +04:00
|
|
|
int r = ppc_gdb_register_len_apple(n);
|
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
return r;
|
|
|
|
}
|
2016-01-15 18:00:18 +03:00
|
|
|
ppc_maybe_bswap_register(env, mem_buf, r);
|
2014-06-23 17:23:08 +04:00
|
|
|
if (n < 32) {
|
|
|
|
/* gprs */
|
|
|
|
env->gpr[n] = ldq_p(mem_buf);
|
|
|
|
} else if (n < 64) {
|
|
|
|
/* fprs */
|
2021-02-11 15:27:47 +03:00
|
|
|
*cpu_fpr_ptr(env, n - 32) = ldq_p(mem_buf);
|
2014-06-23 17:23:08 +04:00
|
|
|
} else {
|
|
|
|
switch (n) {
|
|
|
|
case 64 + 32:
|
|
|
|
env->nip = ldq_p(mem_buf);
|
|
|
|
break;
|
|
|
|
case 65 + 32:
|
|
|
|
ppc_store_msr(env, ldq_p(mem_buf));
|
|
|
|
break;
|
|
|
|
case 66 + 32:
|
|
|
|
{
|
|
|
|
uint32_t cr = ldl_p(mem_buf);
|
2023-05-03 12:36:18 +03:00
|
|
|
ppc_set_cr(env, cr);
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 67 + 32:
|
|
|
|
env->lr = ldq_p(mem_buf);
|
|
|
|
break;
|
|
|
|
case 68 + 32:
|
|
|
|
env->ctr = ldq_p(mem_buf);
|
|
|
|
break;
|
|
|
|
case 69 + 32:
|
2021-10-15 01:32:32 +03:00
|
|
|
cpu_write_xer(env, ldl_p(mem_buf));
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
case 70 + 32:
|
|
|
|
/* fpscr */
|
2021-05-27 19:35:22 +03:00
|
|
|
ppc_store_fpscr(env, ldq_p(mem_buf));
|
2014-06-23 17:23:08 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
2019-02-06 19:51:33 +03:00
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2024-02-27 17:43:12 +03:00
|
|
|
static void gdb_gen_spr_feature(CPUState *cs)
|
2019-02-06 19:51:33 +03:00
|
|
|
{
|
2024-02-27 17:43:12 +03:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cs);
|
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
2019-02-06 19:51:33 +03:00
|
|
|
CPUPPCState *env = &cpu->env;
|
2024-02-27 17:43:12 +03:00
|
|
|
GDBFeatureBuilder builder;
|
2019-02-06 19:51:33 +03:00
|
|
|
unsigned int num_regs = 0;
|
|
|
|
int i;
|
|
|
|
|
2023-05-31 04:23:09 +03:00
|
|
|
for (i = 0; i < ARRAY_SIZE(env->spr_cb); i++) {
|
|
|
|
ppc_spr_t *spr = &env->spr_cb[i];
|
|
|
|
|
|
|
|
if (!spr->name) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GDB identifies registers based on the order they are
|
|
|
|
* presented in the XML. These ids will not match QEMU's
|
|
|
|
* representation (which follows the PowerISA).
|
|
|
|
*
|
|
|
|
* Store the position of the current register description so
|
|
|
|
* we can make the correspondence later.
|
|
|
|
*/
|
|
|
|
spr->gdb_id = num_regs;
|
|
|
|
num_regs++;
|
2019-02-06 19:51:33 +03:00
|
|
|
}
|
|
|
|
|
2024-03-20 04:50:25 +03:00
|
|
|
if (pcc->gdb_spr.xml) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_feature_builder_init(&builder, &pcc->gdb_spr,
|
|
|
|
"org.qemu.power.spr", "power-spr.xml",
|
|
|
|
cs->gdb_num_regs);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(env->spr_cb); i++) {
|
|
|
|
ppc_spr_t *spr = &env->spr_cb[i];
|
|
|
|
|
|
|
|
if (!spr->name) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_feature_builder_append_reg(&builder, g_ascii_strdown(spr->name, -1),
|
|
|
|
TARGET_LONG_BITS, spr->gdb_id,
|
|
|
|
"int", "spr");
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:12 +03:00
|
|
|
gdb_feature_builder_end(&builder);
|
2019-02-06 19:51:33 +03:00
|
|
|
}
|
|
|
|
#endif
|
2021-04-26 21:47:06 +03:00
|
|
|
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
static int gdb_find_spr_idx(CPUPPCState *env, int n)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(env->spr_cb); i++) {
|
|
|
|
ppc_spr_t *spr = &env->spr_cb[i];
|
|
|
|
|
|
|
|
if (spr->name && spr->gdb_id == n) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_get_spr_reg(CPUState *cs, GByteArray *buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2021-04-26 21:47:06 +03:00
|
|
|
int reg;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
reg = gdb_find_spr_idx(env, n);
|
|
|
|
if (reg < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = TARGET_LONG_SIZE;
|
2023-09-18 12:26:16 +03:00
|
|
|
|
|
|
|
/* Handle those SPRs that are not part of the env->spr[] array */
|
|
|
|
target_ulong val;
|
|
|
|
switch (reg) {
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
case SPR_CFAR:
|
|
|
|
val = env->cfar;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case SPR_HDEC:
|
|
|
|
val = cpu_ppc_load_hdecr(env);
|
|
|
|
break;
|
|
|
|
case SPR_TBL:
|
|
|
|
val = cpu_ppc_load_tbl(env);
|
|
|
|
break;
|
|
|
|
case SPR_TBU:
|
|
|
|
val = cpu_ppc_load_tbu(env);
|
|
|
|
break;
|
|
|
|
case SPR_DECR:
|
|
|
|
val = cpu_ppc_load_decr(env);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
val = env->spr[reg];
|
|
|
|
}
|
|
|
|
gdb_get_regl(buf, val);
|
|
|
|
|
2021-04-26 21:47:06 +03:00
|
|
|
ppc_maybe_bswap_register(env, gdb_get_reg_ptr(buf, len), len);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_set_spr_reg(CPUState *cs, uint8_t *mem_buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2021-04-26 21:47:06 +03:00
|
|
|
int reg;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
reg = gdb_find_spr_idx(env, n);
|
|
|
|
if (reg < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = TARGET_LONG_SIZE;
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, len);
|
2023-09-18 12:26:16 +03:00
|
|
|
|
|
|
|
/* Handle those SPRs that are not part of the env->spr[] array */
|
|
|
|
target_ulong val = ldn_p(mem_buf, len);
|
|
|
|
switch (reg) {
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
case SPR_CFAR:
|
|
|
|
env->cfar = val;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
env->spr[reg] = val;
|
|
|
|
}
|
2021-04-26 21:47:06 +03:00
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_get_float_reg(CPUState *cs, GByteArray *buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2021-04-26 21:47:06 +03:00
|
|
|
uint8_t *mem_buf;
|
|
|
|
if (n < 32) {
|
|
|
|
gdb_get_reg64(buf, *cpu_fpr_ptr(env, n));
|
|
|
|
mem_buf = gdb_get_reg_ptr(buf, 8);
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 8);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
if (n == 32) {
|
|
|
|
gdb_get_reg32(buf, env->fpscr);
|
|
|
|
mem_buf = gdb_get_reg_ptr(buf, 4);
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 4);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_set_float_reg(CPUState *cs, uint8_t *mem_buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2021-04-26 21:47:06 +03:00
|
|
|
if (n < 32) {
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 8);
|
|
|
|
*cpu_fpr_ptr(env, n) = ldq_p(mem_buf);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
if (n == 32) {
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 4);
|
2021-05-27 19:35:22 +03:00
|
|
|
ppc_store_fpscr(env, ldl_p(mem_buf));
|
2021-04-26 21:47:06 +03:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_get_avr_reg(CPUState *cs, GByteArray *buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2021-04-26 21:47:06 +03:00
|
|
|
uint8_t *mem_buf;
|
|
|
|
|
|
|
|
if (n < 32) {
|
|
|
|
ppc_avr_t *avr = cpu_avr_ptr(env, n);
|
2021-08-26 17:56:56 +03:00
|
|
|
gdb_get_reg128(buf, avr->VsrD(0), avr->VsrD(1));
|
2021-04-26 21:47:06 +03:00
|
|
|
mem_buf = gdb_get_reg_ptr(buf, 16);
|
2021-08-26 17:56:56 +03:00
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 16);
|
2021-04-26 21:47:06 +03:00
|
|
|
return 16;
|
|
|
|
}
|
|
|
|
if (n == 32) {
|
2021-05-12 17:08:03 +03:00
|
|
|
gdb_get_reg32(buf, ppc_get_vscr(env));
|
2021-04-26 21:47:06 +03:00
|
|
|
mem_buf = gdb_get_reg_ptr(buf, 4);
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 4);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
if (n == 33) {
|
|
|
|
gdb_get_reg32(buf, (uint32_t)env->spr[SPR_VRSAVE]);
|
|
|
|
mem_buf = gdb_get_reg_ptr(buf, 4);
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 4);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_set_avr_reg(CPUState *cs, uint8_t *mem_buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2021-04-26 21:47:06 +03:00
|
|
|
if (n < 32) {
|
|
|
|
ppc_avr_t *avr = cpu_avr_ptr(env, n);
|
2021-08-26 17:56:56 +03:00
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 16);
|
|
|
|
avr->VsrD(0) = ldq_p(mem_buf);
|
|
|
|
avr->VsrD(1) = ldq_p(mem_buf + 8);
|
2021-04-26 21:47:06 +03:00
|
|
|
return 16;
|
|
|
|
}
|
|
|
|
if (n == 32) {
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 4);
|
2021-05-12 17:08:03 +03:00
|
|
|
ppc_store_vscr(env, ldl_p(mem_buf));
|
2021-04-26 21:47:06 +03:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
if (n == 33) {
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 4);
|
|
|
|
env->spr[SPR_VRSAVE] = (target_ulong)ldl_p(mem_buf);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_get_spe_reg(CPUState *cs, GByteArray *buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2021-04-26 21:47:06 +03:00
|
|
|
if (n < 32) {
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
gdb_get_reg32(buf, env->gpr[n] >> 32);
|
|
|
|
ppc_maybe_bswap_register(env, gdb_get_reg_ptr(buf, 4), 4);
|
|
|
|
#else
|
|
|
|
gdb_get_reg32(buf, env->gprh[n]);
|
|
|
|
#endif
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
if (n == 32) {
|
|
|
|
gdb_get_reg64(buf, env->spe_acc);
|
|
|
|
ppc_maybe_bswap_register(env, gdb_get_reg_ptr(buf, 8), 8);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
if (n == 33) {
|
|
|
|
gdb_get_reg32(buf, env->spe_fscr);
|
|
|
|
ppc_maybe_bswap_register(env, gdb_get_reg_ptr(buf, 4), 4);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_set_spe_reg(CPUState *cs, uint8_t *mem_buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2021-04-26 21:47:06 +03:00
|
|
|
if (n < 32) {
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
target_ulong lo = (uint32_t)env->gpr[n];
|
|
|
|
target_ulong hi;
|
|
|
|
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 4);
|
|
|
|
|
|
|
|
hi = (target_ulong)ldl_p(mem_buf) << 32;
|
|
|
|
env->gpr[n] = lo | hi;
|
|
|
|
#else
|
|
|
|
env->gprh[n] = ldl_p(mem_buf);
|
|
|
|
#endif
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
if (n == 32) {
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 8);
|
|
|
|
env->spe_acc = ldq_p(mem_buf);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
if (n == 33) {
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 4);
|
|
|
|
env->spe_fscr = ldl_p(mem_buf);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_get_vsx_reg(CPUState *cs, GByteArray *buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2021-04-26 21:47:06 +03:00
|
|
|
if (n < 32) {
|
|
|
|
gdb_get_reg64(buf, *cpu_vsrl_ptr(env, n));
|
|
|
|
ppc_maybe_bswap_register(env, gdb_get_reg_ptr(buf, 8), 8);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:43:16 +03:00
|
|
|
static int gdb_set_vsx_reg(CPUState *cs, uint8_t *mem_buf, int n)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
2024-02-27 17:43:16 +03:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2021-04-26 21:47:06 +03:00
|
|
|
if (n < 32) {
|
|
|
|
ppc_maybe_bswap_register(env, mem_buf, 8);
|
|
|
|
*cpu_vsrl_ptr(env, n) = ldq_p(mem_buf);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-10-09 19:40:53 +03:00
|
|
|
const gchar *ppc_gdb_arch_name(CPUState *cs)
|
2021-04-26 21:47:06 +03:00
|
|
|
{
|
|
|
|
#if defined(TARGET_PPC64)
|
2023-10-09 19:40:53 +03:00
|
|
|
return "powerpc:common64";
|
2021-04-26 21:47:06 +03:00
|
|
|
#else
|
2023-10-09 19:40:53 +03:00
|
|
|
return "powerpc:common";
|
2021-04-26 21:47:06 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void ppc_gdb_init(CPUState *cs, PowerPCCPUClass *pcc)
|
|
|
|
{
|
|
|
|
if (pcc->insns_flags & PPC_FLOAT) {
|
|
|
|
gdb_register_coprocessor(cs, gdb_get_float_reg, gdb_set_float_reg,
|
2024-02-27 17:43:14 +03:00
|
|
|
gdb_find_static_feature("power-fpu.xml"), 0);
|
2021-04-26 21:47:06 +03:00
|
|
|
}
|
|
|
|
if (pcc->insns_flags & PPC_ALTIVEC) {
|
|
|
|
gdb_register_coprocessor(cs, gdb_get_avr_reg, gdb_set_avr_reg,
|
2024-02-27 17:43:14 +03:00
|
|
|
gdb_find_static_feature("power-altivec.xml"),
|
|
|
|
0);
|
2021-04-26 21:47:06 +03:00
|
|
|
}
|
|
|
|
if (pcc->insns_flags & PPC_SPE) {
|
|
|
|
gdb_register_coprocessor(cs, gdb_get_spe_reg, gdb_set_spe_reg,
|
2024-02-27 17:43:14 +03:00
|
|
|
gdb_find_static_feature("power-spe.xml"), 0);
|
2021-04-26 21:47:06 +03:00
|
|
|
}
|
|
|
|
if (pcc->insns_flags2 & PPC2_VSX) {
|
|
|
|
gdb_register_coprocessor(cs, gdb_get_vsx_reg, gdb_set_vsx_reg,
|
2024-02-27 17:43:14 +03:00
|
|
|
gdb_find_static_feature("power-vsx.xml"), 0);
|
2021-04-26 21:47:06 +03:00
|
|
|
}
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2024-02-27 17:43:12 +03:00
|
|
|
gdb_gen_spr_feature(cs);
|
2021-04-26 21:47:06 +03:00
|
|
|
gdb_register_coprocessor(cs, gdb_get_spr_reg, gdb_set_spr_reg,
|
2024-02-27 17:43:14 +03:00
|
|
|
&pcc->gdb_spr, 0);
|
2021-04-26 21:47:06 +03:00
|
|
|
#endif
|
|
|
|
}
|