2 * Copyright (C) 2001 Chris Emerson (cemerson@chiark.greenend.org.uk)
3 * Licensed under the GPL
6 #include <linux/kernel.h>
8 #include "asm/ptrace.h"
11 void show_regs(struct pt_regs_subarch
*regs
)
14 show_regs_print_info(KERN_DEFAULT
);
16 printk("show_regs(): insert regs here.\n");
19 printk("EIP: %04x:[<%08lx>] CPU: %d",0xffff & regs
->xcs
, regs
->eip
,
22 printk(" ESP: %04x:%08lx",0xffff & regs
->xss
, regs
->esp
);
23 printk(" EFLAGS: %08lx\n", regs
->eflags
);
24 printk("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
25 regs
->eax
, regs
->ebx
, regs
->ecx
, regs
->edx
);
26 printk("ESI: %08lx EDI: %08lx EBP: %08lx",
27 regs
->esi
, regs
->edi
, regs
->ebp
);
28 printk(" DS: %04x ES: %04x\n",
29 0xffff & regs
->xds
, 0xffff & regs
->xes
);
32 show_trace(current
, ®s
->gpr
[1]);