Skip to content

Commit

Permalink
[POWERPC] Add spu disassembly to xmon
Browse files Browse the repository at this point in the history
This patch adds a "sdi" command to xmon, to disassemble the contents
of an spu's local store.

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com>
  • Loading branch information
Michael Ellerman authored and Paul Mackerras committed Dec 4, 2006
1 parent ae06e37 commit af89fb8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
1 change: 1 addition & 0 deletions arch/powerpc/xmon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ EXTRA_CFLAGS += -mno-minimal-toc
endif
obj-y += xmon.o ppc-dis.o ppc-opc.o setjmp.o start.o \
nonstdio.o
obj-$(CONFIG_PPC_CELL) += spu-dis.o spu-opc.o
35 changes: 27 additions & 8 deletions arch/powerpc/xmon/xmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ static int do_spu_cmd(void);
int xmon_no_auto_backtrace;

extern int print_insn_powerpc(unsigned long insn, unsigned long memaddr);
extern int print_insn_spu(unsigned long insn, unsigned long memaddr);

extern void xmon_enter(void);
extern void xmon_leave(void);
Expand Down Expand Up @@ -219,7 +220,8 @@ Commands:\n\
" ss stop execution on all spus\n\
sr restore execution on stopped spus\n\
sf # dump spu fields for spu # (in hex)\n\
sd # dump spu local store for spu # (in hex)\n"
sd # dump spu local store for spu # (in hex)\
sdi # disassemble spu local store for spu # (in hex)\n"
#endif
" S print special registers\n\
t print backtrace\n\
Expand Down Expand Up @@ -2828,7 +2830,13 @@ static void dump_spu_fields(struct spu *spu)
DUMP_FIELD(spu, "0x%p", priv2);
}

static void dump_spu_ls(unsigned long num)
int
spu_inst_dump(unsigned long adr, long count, int praddr)
{
return generic_inst_dump(adr, count, praddr, print_insn_spu);
}

static void dump_spu_ls(unsigned long num, int subcmd)
{
unsigned long offset, addr, ls_addr;

Expand All @@ -2855,17 +2863,25 @@ static void dump_spu_ls(unsigned long num)
return;
}

prdump(addr, 64);
addr += 64;
last_cmd = "sd\n";
switch (subcmd) {
case 'i':
addr += spu_inst_dump(addr, 16, 1);
last_cmd = "sdi\n";
break;
default:
prdump(addr, 64);
addr += 64;
last_cmd = "sd\n";
break;
}

spu_info[num].dump_addr = addr;
}

static int do_spu_cmd(void)
{
static unsigned long num = 0;
int cmd;
int cmd, subcmd = 0;

cmd = inchar();
switch (cmd) {
Expand All @@ -2875,8 +2891,11 @@ static int do_spu_cmd(void)
case 'r':
restart_spus();
break;
case 'f':
case 'd':
subcmd = inchar();
if (isxdigit(subcmd) || subcmd == '\n')
termch = subcmd;
case 'f':
scanhex(&num);
if (num >= XMON_NUM_SPUS || !spu_info[num].spu) {
printf("*** Error: invalid spu number\n");
Expand All @@ -2888,7 +2907,7 @@ static int do_spu_cmd(void)
dump_spu_fields(spu_info[num].spu);
break;
default:
dump_spu_ls(num);
dump_spu_ls(num, subcmd);
break;
}

Expand Down

0 comments on commit af89fb8

Please sign in to comment.