2013-07-07 12:32:15 +02:00
|
|
|
/*
|
|
|
|
* ARM 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-23 14:29:13 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2013-07-07 12:32:15 +02: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/>.
|
|
|
|
*/
|
2015-12-07 17:23:44 +01:00
|
|
|
#include "qemu/osdep.h"
|
2016-03-15 16:58:45 +01:00
|
|
|
#include "cpu.h"
|
2013-06-29 04:18:45 +02:00
|
|
|
#include "exec/gdbstub.h"
|
2013-07-07 12:32:15 +02:00
|
|
|
|
2018-05-18 18:48:07 +02:00
|
|
|
typedef struct RegisterSysregXmlParam {
|
|
|
|
CPUState *cs;
|
|
|
|
GString *s;
|
2020-03-16 18:21:43 +01:00
|
|
|
int n;
|
2018-05-18 18:48:07 +02:00
|
|
|
} RegisterSysregXmlParam;
|
|
|
|
|
2013-07-07 12:32:15 +02:00
|
|
|
/* Old gdb always expect FPA registers. Newer (xml-aware) gdb only expect
|
|
|
|
whatever the target description contains. Due to a historical mishap
|
|
|
|
the FPA registers appear in between core integer regs and the CPSR.
|
|
|
|
We hack round this by giving the FPA regs zero size when talking to a
|
|
|
|
newer gdb. */
|
|
|
|
|
2020-03-16 18:21:41 +01:00
|
|
|
int arm_cpu_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n)
|
2013-07-07 12:32:15 +02:00
|
|
|
{
|
2013-06-29 04:18:45 +02:00
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
CPUARMState *env = &cpu->env;
|
|
|
|
|
2013-07-07 12:32:15 +02:00
|
|
|
if (n < 16) {
|
|
|
|
/* Core integer register. */
|
2013-07-07 13:05:05 +02:00
|
|
|
return gdb_get_reg32(mem_buf, env->regs[n]);
|
2013-07-07 12:32:15 +02:00
|
|
|
}
|
|
|
|
if (n < 24) {
|
|
|
|
/* FPA registers. */
|
|
|
|
if (gdb_has_xml) {
|
|
|
|
return 0;
|
|
|
|
}
|
2020-04-14 22:06:26 +02:00
|
|
|
return gdb_get_zeroes(mem_buf, 12);
|
2013-07-07 12:32:15 +02:00
|
|
|
}
|
|
|
|
switch (n) {
|
|
|
|
case 24:
|
|
|
|
/* FPA status register. */
|
|
|
|
if (gdb_has_xml) {
|
|
|
|
return 0;
|
|
|
|
}
|
2013-07-07 13:05:05 +02:00
|
|
|
return gdb_get_reg32(mem_buf, 0);
|
2013-07-07 12:32:15 +02:00
|
|
|
case 25:
|
2020-05-07 15:47:55 +02:00
|
|
|
/* CPSR, or XPSR for M-profile */
|
|
|
|
if (arm_feature(env, ARM_FEATURE_M)) {
|
|
|
|
return gdb_get_reg32(mem_buf, xpsr_read(env));
|
|
|
|
} else {
|
|
|
|
return gdb_get_reg32(mem_buf, cpsr_read(env));
|
|
|
|
}
|
2013-07-07 12:32:15 +02:00
|
|
|
}
|
|
|
|
/* Unknown register. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-29 04:18:45 +02:00
|
|
|
int arm_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
2013-07-07 12:32:15 +02:00
|
|
|
{
|
2013-06-29 04:18:45 +02:00
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
CPUARMState *env = &cpu->env;
|
2013-07-07 12:32:15 +02:00
|
|
|
uint32_t tmp;
|
|
|
|
|
|
|
|
tmp = ldl_p(mem_buf);
|
|
|
|
|
|
|
|
/* Mask out low bit of PC to workaround gdb bugs. This will probably
|
|
|
|
cause problems if we ever implement the Jazelle DBX extensions. */
|
|
|
|
if (n == 15) {
|
|
|
|
tmp &= ~1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n < 16) {
|
|
|
|
/* Core integer register. */
|
|
|
|
env->regs[n] = tmp;
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
if (n < 24) { /* 16-23 */
|
|
|
|
/* FPA registers (ignored). */
|
|
|
|
if (gdb_has_xml) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 12;
|
|
|
|
}
|
|
|
|
switch (n) {
|
|
|
|
case 24:
|
|
|
|
/* FPA status register (ignored). */
|
|
|
|
if (gdb_has_xml) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 4;
|
|
|
|
case 25:
|
2020-05-07 15:47:55 +02:00
|
|
|
/* CPSR, or XPSR for M-profile */
|
|
|
|
if (arm_feature(env, ARM_FEATURE_M)) {
|
|
|
|
/*
|
|
|
|
* Don't allow writing to XPSR.Exception as it can cause
|
|
|
|
* a transition into or out of handler mode (it's not
|
|
|
|
* writeable via the MSR insn so this is a reasonable
|
|
|
|
* restriction). Other fields are safe to update.
|
|
|
|
*/
|
|
|
|
xpsr_write(env, tmp, ~XPSR_EXCP);
|
|
|
|
} else {
|
|
|
|
cpsr_write(env, tmp, 0xffffffff, CPSRWriteByGDBStub);
|
|
|
|
}
|
2013-07-07 12:32:15 +02:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
/* Unknown register. */
|
|
|
|
return 0;
|
|
|
|
}
|
2018-05-18 18:48:07 +02:00
|
|
|
|
2020-03-16 18:21:42 +01:00
|
|
|
static void arm_gen_one_xml_sysreg_tag(GString *s, DynamicGDBXMLInfo *dyn_xml,
|
|
|
|
ARMCPRegInfo *ri, uint32_t ri_key,
|
2020-03-16 18:21:43 +01:00
|
|
|
int bitsize, int regnum)
|
2018-05-18 18:48:07 +02:00
|
|
|
{
|
|
|
|
g_string_append_printf(s, "<reg name=\"%s\"", ri->name);
|
|
|
|
g_string_append_printf(s, " bitsize=\"%d\"", bitsize);
|
2020-03-16 18:21:43 +01:00
|
|
|
g_string_append_printf(s, " regnum=\"%d\"", regnum);
|
2018-05-18 18:48:07 +02:00
|
|
|
g_string_append_printf(s, " group=\"cp_regs\"/>");
|
2020-03-16 18:21:42 +01:00
|
|
|
dyn_xml->data.cpregs.keys[dyn_xml->num] = ri_key;
|
|
|
|
dyn_xml->num++;
|
2018-05-18 18:48:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void arm_register_sysreg_for_xml(gpointer key, gpointer value,
|
|
|
|
gpointer p)
|
|
|
|
{
|
|
|
|
uint32_t ri_key = *(uint32_t *)key;
|
|
|
|
ARMCPRegInfo *ri = value;
|
|
|
|
RegisterSysregXmlParam *param = (RegisterSysregXmlParam *)p;
|
|
|
|
GString *s = param->s;
|
|
|
|
ARMCPU *cpu = ARM_CPU(param->cs);
|
|
|
|
CPUARMState *env = &cpu->env;
|
2020-03-16 18:21:42 +01:00
|
|
|
DynamicGDBXMLInfo *dyn_xml = &cpu->dyn_sysreg_xml;
|
2018-05-18 18:48:07 +02:00
|
|
|
|
|
|
|
if (!(ri->type & (ARM_CP_NO_RAW | ARM_CP_NO_GDB))) {
|
|
|
|
if (arm_feature(env, ARM_FEATURE_AARCH64)) {
|
|
|
|
if (ri->state == ARM_CP_STATE_AA64) {
|
2020-03-16 18:21:43 +01:00
|
|
|
arm_gen_one_xml_sysreg_tag(s , dyn_xml, ri, ri_key, 64,
|
|
|
|
param->n++);
|
2018-05-18 18:48:07 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ri->state == ARM_CP_STATE_AA32) {
|
|
|
|
if (!arm_feature(env, ARM_FEATURE_EL3) &&
|
|
|
|
(ri->secure & ARM_CP_SECSTATE_S)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (ri->type & ARM_CP_64BIT) {
|
2020-03-16 18:21:43 +01:00
|
|
|
arm_gen_one_xml_sysreg_tag(s , dyn_xml, ri, ri_key, 64,
|
|
|
|
param->n++);
|
2018-05-18 18:48:07 +02:00
|
|
|
} else {
|
2020-03-16 18:21:43 +01:00
|
|
|
arm_gen_one_xml_sysreg_tag(s , dyn_xml, ri, ri_key, 32,
|
|
|
|
param->n++);
|
2018-05-18 18:48:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-16 18:21:43 +01:00
|
|
|
int arm_gen_dynamic_sysreg_xml(CPUState *cs, int base_reg)
|
2018-05-18 18:48:07 +02:00
|
|
|
{
|
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
GString *s = g_string_new(NULL);
|
2020-03-16 18:21:43 +01:00
|
|
|
RegisterSysregXmlParam param = {cs, s, base_reg};
|
2018-05-18 18:48:07 +02:00
|
|
|
|
2020-03-16 18:21:42 +01:00
|
|
|
cpu->dyn_sysreg_xml.num = 0;
|
|
|
|
cpu->dyn_sysreg_xml.data.cpregs.keys = g_new(uint32_t, g_hash_table_size(cpu->cp_regs));
|
2018-05-18 18:48:07 +02:00
|
|
|
g_string_printf(s, "<?xml version=\"1.0\"?>");
|
|
|
|
g_string_append_printf(s, "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">");
|
|
|
|
g_string_append_printf(s, "<feature name=\"org.qemu.gdb.arm.sys.regs\">");
|
|
|
|
g_hash_table_foreach(cpu->cp_regs, arm_register_sysreg_for_xml, ¶m);
|
|
|
|
g_string_append_printf(s, "</feature>");
|
2020-03-16 18:21:42 +01:00
|
|
|
cpu->dyn_sysreg_xml.desc = g_string_free(s, false);
|
|
|
|
return cpu->dyn_sysreg_xml.num;
|
2018-05-18 18:48:07 +02:00
|
|
|
}
|
|
|
|
|
2020-03-16 18:21:45 +01:00
|
|
|
struct TypeSize {
|
|
|
|
const char *gdb_type;
|
|
|
|
int size;
|
|
|
|
const char sz, suffix;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct TypeSize vec_lanes[] = {
|
|
|
|
/* quads */
|
|
|
|
{ "uint128", 128, 'q', 'u' },
|
|
|
|
{ "int128", 128, 'q', 's' },
|
|
|
|
/* 64 bit */
|
2021-01-08 23:42:46 +01:00
|
|
|
{ "ieee_double", 64, 'd', 'f' },
|
2020-03-16 18:21:45 +01:00
|
|
|
{ "uint64", 64, 'd', 'u' },
|
|
|
|
{ "int64", 64, 'd', 's' },
|
|
|
|
/* 32 bit */
|
2021-01-08 23:42:46 +01:00
|
|
|
{ "ieee_single", 32, 's', 'f' },
|
2020-03-16 18:21:45 +01:00
|
|
|
{ "uint32", 32, 's', 'u' },
|
|
|
|
{ "int32", 32, 's', 's' },
|
|
|
|
/* 16 bit */
|
2021-01-08 23:42:46 +01:00
|
|
|
{ "ieee_half", 16, 'h', 'f' },
|
2020-03-16 18:21:45 +01:00
|
|
|
{ "uint16", 16, 'h', 'u' },
|
|
|
|
{ "int16", 16, 'h', 's' },
|
|
|
|
/* bytes */
|
|
|
|
{ "uint8", 8, 'b', 'u' },
|
|
|
|
{ "int8", 8, 'b', 's' },
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int arm_gen_dynamic_svereg_xml(CPUState *cs, int base_reg)
|
|
|
|
{
|
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
GString *s = g_string_new(NULL);
|
|
|
|
DynamicGDBXMLInfo *info = &cpu->dyn_svereg_xml;
|
|
|
|
g_autoptr(GString) ts = g_string_new("");
|
2021-01-08 23:42:46 +01:00
|
|
|
int i, j, bits, reg_width = (cpu->sve_max_vq * 128);
|
2020-03-16 18:21:45 +01:00
|
|
|
info->num = 0;
|
|
|
|
g_string_printf(s, "<?xml version=\"1.0\"?>");
|
|
|
|
g_string_append_printf(s, "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">");
|
2021-01-08 23:42:46 +01:00
|
|
|
g_string_append_printf(s, "<feature name=\"org.gnu.gdb.aarch64.sve\">");
|
2020-03-16 18:21:45 +01:00
|
|
|
|
|
|
|
/* First define types and totals in a whole VL */
|
|
|
|
for (i = 0; i < ARRAY_SIZE(vec_lanes); i++) {
|
|
|
|
int count = reg_width / vec_lanes[i].size;
|
2021-01-08 23:42:46 +01:00
|
|
|
g_string_printf(ts, "svev%c%c", vec_lanes[i].sz, vec_lanes[i].suffix);
|
2020-03-16 18:21:45 +01:00
|
|
|
g_string_append_printf(s,
|
|
|
|
"<vector id=\"%s\" type=\"%s\" count=\"%d\"/>",
|
|
|
|
ts->str, vec_lanes[i].gdb_type, count);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Now define a union for each size group containing unsigned and
|
|
|
|
* signed and potentially float versions of each size from 128 to
|
|
|
|
* 8 bits.
|
|
|
|
*/
|
2021-01-08 23:42:46 +01:00
|
|
|
for (bits = 128, i = 0; bits >= 8; bits /= 2, i++) {
|
|
|
|
const char suf[] = { 'q', 'd', 's', 'h', 'b' };
|
|
|
|
g_string_append_printf(s, "<union id=\"svevn%c\">", suf[i]);
|
|
|
|
for (j = 0; j < ARRAY_SIZE(vec_lanes); j++) {
|
|
|
|
if (vec_lanes[j].size == bits) {
|
|
|
|
g_string_append_printf(s, "<field name=\"%c\" type=\"svev%c%c\"/>",
|
|
|
|
vec_lanes[j].suffix,
|
|
|
|
vec_lanes[j].sz, vec_lanes[j].suffix);
|
2020-03-16 18:21:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
g_string_append(s, "</union>");
|
|
|
|
}
|
|
|
|
/* And now the final union of unions */
|
2021-01-08 23:42:46 +01:00
|
|
|
g_string_append(s, "<union id=\"svev\">");
|
|
|
|
for (bits = 128, i = 0; bits >= 8; bits /= 2, i++) {
|
|
|
|
const char suf[] = { 'q', 'd', 's', 'h', 'b' };
|
|
|
|
g_string_append_printf(s, "<field name=\"%c\" type=\"svevn%c\"/>",
|
|
|
|
suf[i], suf[i]);
|
2020-03-16 18:21:45 +01:00
|
|
|
}
|
|
|
|
g_string_append(s, "</union>");
|
|
|
|
|
2021-01-08 23:42:46 +01:00
|
|
|
/* Finally the sve prefix type */
|
|
|
|
g_string_append_printf(s,
|
|
|
|
"<vector id=\"svep\" type=\"uint8\" count=\"%d\"/>",
|
|
|
|
reg_width / 8);
|
|
|
|
|
2020-03-16 18:21:45 +01:00
|
|
|
/* Then define each register in parts for each vq */
|
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
g_string_append_printf(s,
|
|
|
|
"<reg name=\"z%d\" bitsize=\"%d\""
|
2021-01-08 23:42:46 +01:00
|
|
|
" regnum=\"%d\" type=\"svev\"/>",
|
2020-03-16 18:21:45 +01:00
|
|
|
i, reg_width, base_reg++);
|
|
|
|
info->num++;
|
|
|
|
}
|
|
|
|
/* fpscr & status registers */
|
|
|
|
g_string_append_printf(s, "<reg name=\"fpsr\" bitsize=\"32\""
|
|
|
|
" regnum=\"%d\" group=\"float\""
|
|
|
|
" type=\"int\"/>", base_reg++);
|
|
|
|
g_string_append_printf(s, "<reg name=\"fpcr\" bitsize=\"32\""
|
|
|
|
" regnum=\"%d\" group=\"float\""
|
|
|
|
" type=\"int\"/>", base_reg++);
|
|
|
|
info->num += 2;
|
2021-01-08 23:42:46 +01:00
|
|
|
|
2020-03-16 18:21:45 +01:00
|
|
|
for (i = 0; i < 16; i++) {
|
|
|
|
g_string_append_printf(s,
|
|
|
|
"<reg name=\"p%d\" bitsize=\"%d\""
|
2021-01-08 23:42:46 +01:00
|
|
|
" regnum=\"%d\" type=\"svep\"/>",
|
2020-03-16 18:21:45 +01:00
|
|
|
i, cpu->sve_max_vq * 16, base_reg++);
|
|
|
|
info->num++;
|
|
|
|
}
|
|
|
|
g_string_append_printf(s,
|
|
|
|
"<reg name=\"ffr\" bitsize=\"%d\""
|
|
|
|
" regnum=\"%d\" group=\"vector\""
|
2021-01-08 23:42:46 +01:00
|
|
|
" type=\"svep\"/>",
|
2020-03-16 18:21:45 +01:00
|
|
|
cpu->sve_max_vq * 16, base_reg++);
|
|
|
|
g_string_append_printf(s,
|
|
|
|
"<reg name=\"vg\" bitsize=\"64\""
|
2021-01-08 23:42:46 +01:00
|
|
|
" regnum=\"%d\" type=\"int\"/>",
|
2020-03-16 18:21:45 +01:00
|
|
|
base_reg++);
|
|
|
|
info->num += 2;
|
|
|
|
g_string_append_printf(s, "</feature>");
|
|
|
|
cpu->dyn_svereg_xml.desc = g_string_free(s, false);
|
|
|
|
|
|
|
|
return cpu->dyn_svereg_xml.num;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-18 18:48:07 +02:00
|
|
|
const char *arm_gdb_get_dynamic_xml(CPUState *cs, const char *xmlname)
|
|
|
|
{
|
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
|
|
|
|
if (strcmp(xmlname, "system-registers.xml") == 0) {
|
2020-03-16 18:21:42 +01:00
|
|
|
return cpu->dyn_sysreg_xml.desc;
|
2020-03-16 18:21:45 +01:00
|
|
|
} else if (strcmp(xmlname, "sve-registers.xml") == 0) {
|
|
|
|
return cpu->dyn_svereg_xml.desc;
|
2018-05-18 18:48:07 +02:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|