qemu/target/ppc/monitor.c
<<
>>
Prefs
   1/*
   2 * QEMU monitor
   3 *
   4 * Copyright (c) 2003-2004 Fabrice Bellard
   5 *
   6 * Permission is hereby granted, free of charge, to any person obtaining a copy
   7 * of this software and associated documentation files (the "Software"), to deal
   8 * in the Software without restriction, including without limitation the rights
   9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10 * copies of the Software, and to permit persons to whom the Software is
  11 * furnished to do so, subject to the following conditions:
  12 *
  13 * The above copyright notice and this permission notice shall be included in
  14 * all copies or substantial portions of the Software.
  15 *
  16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22 * THE SOFTWARE.
  23 */
  24
  25#include "qemu/osdep.h"
  26#include "cpu.h"
  27#include "monitor/monitor.h"
  28#include "qemu/ctype.h"
  29#include "monitor/hmp-target.h"
  30#include "monitor/hmp.h"
  31
  32static target_long monitor_get_ccr(Monitor *mon, const struct MonitorDef *md,
  33                                   int val)
  34{
  35    CPUArchState *env = mon_get_cpu_env(mon);
  36    unsigned int u;
  37    int i;
  38
  39    u = 0;
  40    for (i = 0; i < 8; i++) {
  41        u |= env->crf[i] << (32 - (4 * (i + 1)));
  42    }
  43
  44    return u;
  45}
  46
  47static target_long monitor_get_xer(Monitor *mon, const struct MonitorDef *md,
  48                                   int val)
  49{
  50    CPUArchState *env = mon_get_cpu_env(mon);
  51    return cpu_read_xer(env);
  52}
  53
  54static target_long monitor_get_decr(Monitor *mon, const struct MonitorDef *md,
  55                                    int val)
  56{
  57    CPUArchState *env = mon_get_cpu_env(mon);
  58    return cpu_ppc_load_decr(env);
  59}
  60
  61static target_long monitor_get_tbu(Monitor *mon, const struct MonitorDef *md,
  62                                   int val)
  63{
  64    CPUArchState *env = mon_get_cpu_env(mon);
  65    return cpu_ppc_load_tbu(env);
  66}
  67
  68static target_long monitor_get_tbl(Monitor *mon, const struct MonitorDef *md,
  69                                   int val)
  70{
  71    CPUArchState *env = mon_get_cpu_env(mon);
  72    return cpu_ppc_load_tbl(env);
  73}
  74
  75void hmp_info_tlb(Monitor *mon, const QDict *qdict)
  76{
  77    CPUArchState *env1 = mon_get_cpu_env(mon);
  78
  79    if (!env1) {
  80        monitor_printf(mon, "No CPU available\n");
  81        return;
  82    }
  83    dump_mmu(env1);
  84}
  85
  86const MonitorDef monitor_defs[] = {
  87    { "fpscr", offsetof(CPUPPCState, fpscr) },
  88    /* Next instruction pointer */
  89    { "nip|pc", offsetof(CPUPPCState, nip) },
  90    { "lr", offsetof(CPUPPCState, lr) },
  91    { "ctr", offsetof(CPUPPCState, ctr) },
  92    { "decr", 0, &monitor_get_decr, },
  93    { "ccr|cr", 0, &monitor_get_ccr, },
  94    /* Machine state register */
  95    { "xer", 0, &monitor_get_xer },
  96    { "msr", offsetof(CPUPPCState, msr) },
  97    { "tbu", 0, &monitor_get_tbu, },
  98    { "tbl", 0, &monitor_get_tbl, },
  99    { NULL },
 100};
 101
 102const MonitorDef *target_monitor_defs(void)
 103{
 104    return monitor_defs;
 105}
 106
 107static int ppc_cpu_get_reg_num(const char *numstr, int maxnum, int *pregnum)
 108{
 109    int regnum;
 110    char *endptr = NULL;
 111
 112    if (!*numstr) {
 113        return false;
 114    }
 115
 116    regnum = strtoul(numstr, &endptr, 10);
 117    if (*endptr || (regnum >= maxnum)) {
 118        return false;
 119    }
 120    *pregnum = regnum;
 121
 122    return true;
 123}
 124
 125int target_get_monitor_def(CPUState *cs, const char *name, uint64_t *pval)
 126{
 127    int i, regnum;
 128    PowerPCCPU *cpu = POWERPC_CPU(cs);
 129    CPUPPCState *env = &cpu->env;
 130
 131    /* General purpose registers */
 132    if ((qemu_tolower(name[0]) == 'r') &&
 133        ppc_cpu_get_reg_num(name + 1, ARRAY_SIZE(env->gpr), &regnum)) {
 134        *pval = env->gpr[regnum];
 135        return 0;
 136    }
 137
 138    /* Floating point registers */
 139    if ((qemu_tolower(name[0]) == 'f') &&
 140        ppc_cpu_get_reg_num(name + 1, 32, &regnum)) {
 141        *pval = *cpu_fpr_ptr(env, regnum);
 142        return 0;
 143    }
 144
 145    /* Special purpose registers */
 146    for (i = 0; i < ARRAY_SIZE(env->spr_cb); ++i) {
 147        ppc_spr_t *spr = &env->spr_cb[i];
 148
 149        if (spr->name && (strcasecmp(name, spr->name) == 0)) {
 150            *pval = env->spr[i];
 151            return 0;
 152        }
 153    }
 154
 155    /* Segment registers */
 156#if !defined(CONFIG_USER_ONLY)
 157    if ((strncasecmp(name, "sr", 2) == 0) &&
 158        ppc_cpu_get_reg_num(name + 2, ARRAY_SIZE(env->sr), &regnum)) {
 159        *pval = env->sr[regnum];
 160        return 0;
 161    }
 162#endif
 163
 164    return -EINVAL;
 165}
 166