]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/i386/i386/db_trace.c
MFH: r281668 through r281783
[FreeBSD/FreeBSD.git] / sys / i386 / i386 / db_trace.c
1 /*-
2  * Mach Operating System
3  * Copyright (c) 1991,1990 Carnegie Mellon University
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify and distribute this software and its
7  * documentation is hereby granted, provided that both the copyright
8  * notice and this permission notice appear in all copies of the
9  * software, derivative works or modified versions, and any portions
10  * thereof, and that both notices appear in supporting documentation.
11  *
12  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
13  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
15  *
16  * Carnegie Mellon requests users of this software to return to
17  *
18  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
19  *  School of Computer Science
20  *  Carnegie Mellon University
21  *  Pittsburgh PA 15213-3890
22  *
23  * any improvements or extensions that they make and grant Carnegie the
24  * rights to redistribute these changes.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/kdb.h>
33 #include <sys/proc.h>
34 #include <sys/sysent.h>
35
36 #include <machine/cpu.h>
37 #include <machine/md_var.h>
38 #include <machine/pcb.h>
39 #include <machine/reg.h>
40 #include <machine/stack.h>
41
42 #include <vm/vm.h>
43 #include <vm/vm_param.h>
44 #include <vm/pmap.h>
45
46 #include <ddb/ddb.h>
47 #include <ddb/db_access.h>
48 #include <ddb/db_sym.h>
49 #include <ddb/db_variables.h>
50
51 static db_varfcn_t db_dr0;
52 static db_varfcn_t db_dr1;
53 static db_varfcn_t db_dr2;
54 static db_varfcn_t db_dr3;
55 static db_varfcn_t db_dr4;
56 static db_varfcn_t db_dr5;
57 static db_varfcn_t db_dr6;
58 static db_varfcn_t db_dr7;
59 static db_varfcn_t db_esp;
60 static db_varfcn_t db_frame;
61 static db_varfcn_t db_ss;
62
63 /*
64  * Machine register set.
65  */
66 #define DB_OFFSET(x)    (db_expr_t *)offsetof(struct trapframe, x)
67 struct db_variable db_regs[] = {
68         { "cs",         DB_OFFSET(tf_cs),       db_frame },
69         { "ds",         DB_OFFSET(tf_ds),       db_frame },
70         { "es",         DB_OFFSET(tf_es),       db_frame },
71         { "fs",         DB_OFFSET(tf_fs),       db_frame },
72         { "ss",         NULL,                   db_ss },
73         { "eax",        DB_OFFSET(tf_eax),      db_frame },
74         { "ecx",        DB_OFFSET(tf_ecx),      db_frame },
75         { "edx",        DB_OFFSET(tf_edx),      db_frame },
76         { "ebx",        DB_OFFSET(tf_ebx),      db_frame },
77         { "esp",        NULL,                   db_esp },
78         { "ebp",        DB_OFFSET(tf_ebp),      db_frame },
79         { "esi",        DB_OFFSET(tf_esi),      db_frame },
80         { "edi",        DB_OFFSET(tf_edi),      db_frame },
81         { "eip",        DB_OFFSET(tf_eip),      db_frame },
82         { "efl",        DB_OFFSET(tf_eflags),   db_frame },
83 #define DB_N_SHOW_REGS  15      /* Don't show registers after here. */
84         { "dr0",        NULL,                   db_dr0 },
85         { "dr1",        NULL,                   db_dr1 },
86         { "dr2",        NULL,                   db_dr2 },
87         { "dr3",        NULL,                   db_dr3 },
88         { "dr4",        NULL,                   db_dr4 },
89         { "dr5",        NULL,                   db_dr5 },
90         { "dr6",        NULL,                   db_dr6 },
91         { "dr7",        NULL,                   db_dr7 },
92 };
93 struct db_variable *db_eregs = db_regs + DB_N_SHOW_REGS;
94
95 #define DB_DRX_FUNC(reg)                \
96 static int                              \
97 db_ ## reg (vp, valuep, op)             \
98         struct db_variable *vp;         \
99         db_expr_t * valuep;             \
100         int op;                         \
101 {                                       \
102         if (op == DB_VAR_GET)           \
103                 *valuep = r ## reg ();  \
104         else                            \
105                 load_ ## reg (*valuep); \
106         return (1);                     \
107 }
108
109 DB_DRX_FUNC(dr0)
110 DB_DRX_FUNC(dr1)
111 DB_DRX_FUNC(dr2)
112 DB_DRX_FUNC(dr3)
113 DB_DRX_FUNC(dr4)
114 DB_DRX_FUNC(dr5)
115 DB_DRX_FUNC(dr6)
116 DB_DRX_FUNC(dr7)
117
118 static __inline int
119 get_esp(struct trapframe *tf)
120 {
121         return ((ISPL(tf->tf_cs)) ? tf->tf_esp :
122             (db_expr_t)tf + (uintptr_t)DB_OFFSET(tf_esp));
123 }
124
125 static int
126 db_frame(struct db_variable *vp, db_expr_t *valuep, int op)
127 {
128         int *reg;
129
130         if (kdb_frame == NULL)
131                 return (0);
132
133         reg = (int *)((uintptr_t)kdb_frame + (db_expr_t)vp->valuep);
134         if (op == DB_VAR_GET)
135                 *valuep = *reg;
136         else
137                 *reg = *valuep;
138         return (1);
139 }
140
141 static int
142 db_esp(struct db_variable *vp, db_expr_t *valuep, int op)
143 {
144
145         if (kdb_frame == NULL)
146                 return (0);
147
148         if (op == DB_VAR_GET)
149                 *valuep = get_esp(kdb_frame);
150         else if (ISPL(kdb_frame->tf_cs))
151                 kdb_frame->tf_esp = *valuep;
152         return (1);
153 }
154
155 static int
156 db_ss(struct db_variable *vp, db_expr_t *valuep, int op)
157 {
158
159         if (kdb_frame == NULL)
160                 return (0);
161
162         if (op == DB_VAR_GET)
163                 *valuep = (ISPL(kdb_frame->tf_cs)) ? kdb_frame->tf_ss : rss();
164         else if (ISPL(kdb_frame->tf_cs))
165                 kdb_frame->tf_ss = *valuep;
166         return (1);
167 }
168
169 #define NORMAL          0
170 #define TRAP            1
171 #define INTERRUPT       2
172 #define SYSCALL         3
173 #define DOUBLE_FAULT    4
174 #define TRAP_INTERRUPT  5
175 #define TRAP_TIMERINT   6
176
177 static void db_nextframe(struct i386_frame **, db_addr_t *, struct thread *);
178 static int db_numargs(struct i386_frame *);
179 static void db_print_stack_entry(const char *, int, char **, int *, db_addr_t,
180     void *);
181 static void decode_syscall(int, struct thread *);
182
183 static const char * watchtype_str(int type);
184 int  i386_set_watch(int watchnum, unsigned int watchaddr, int size, int access,
185                     struct dbreg *d);
186 int  i386_clr_watch(int watchnum, struct dbreg *d);
187
188 /*
189  * Figure out how many arguments were passed into the frame at "fp".
190  */
191 static int
192 db_numargs(fp)
193         struct i386_frame *fp;
194 {
195         char   *argp;
196         int     inst;
197         int     args;
198
199         argp = (char *)db_get_value((int)&fp->f_retaddr, 4, FALSE);
200         /*
201          * XXX etext is wrong for LKMs.  We should attempt to interpret
202          * the instruction at the return address in all cases.  This
203          * may require better fault handling.
204          */
205         if (argp < btext || argp >= etext) {
206                 args = -1;
207         } else {
208 retry:
209                 inst = db_get_value((int)argp, 4, FALSE);
210                 if ((inst & 0xff) == 0x59)      /* popl %ecx */
211                         args = 1;
212                 else if ((inst & 0xffff) == 0xc483)     /* addl $Ibs, %esp */
213                         args = ((inst >> 16) & 0xff) / 4;
214                 else if ((inst & 0xf8ff) == 0xc089) {   /* movl %eax, %Reg */
215                         argp += 2;
216                         goto retry;
217                 } else
218                         args = -1;
219         }
220         return (args);
221 }
222
223 static void
224 db_print_stack_entry(name, narg, argnp, argp, callpc, frame)
225         const char *name;
226         int narg;
227         char **argnp;
228         int *argp;
229         db_addr_t callpc;
230         void *frame;
231 {
232         int n = narg >= 0 ? narg : 5;
233
234         db_printf("%s(", name);
235         while (n) {
236                 if (argnp)
237                         db_printf("%s=", *argnp++);
238                 db_printf("%r", db_get_value((int)argp, 4, FALSE));
239                 argp++;
240                 if (--n != 0)
241                         db_printf(",");
242         }
243         if (narg < 0)
244                 db_printf(",...");
245         db_printf(") at ");
246         db_printsym(callpc, DB_STGY_PROC);
247         if (frame != NULL)
248                 db_printf("/frame 0x%r", (register_t)frame);
249         db_printf("\n");
250 }
251
252 static void
253 decode_syscall(int number, struct thread *td)
254 {
255         struct proc *p;
256         c_db_sym_t sym;
257         db_expr_t diff;
258         sy_call_t *f;
259         const char *symname;
260
261         db_printf(" (%d", number);
262         p = (td != NULL) ? td->td_proc : NULL;
263         if (p != NULL && 0 <= number && number < p->p_sysent->sv_size) {
264                 f = p->p_sysent->sv_table[number].sy_call;
265                 sym = db_search_symbol((db_addr_t)f, DB_STGY_ANY, &diff);
266                 if (sym != DB_SYM_NULL && diff == 0) {
267                         db_symbol_values(sym, &symname, NULL);
268                         db_printf(", %s, %s", p->p_sysent->sv_name, symname);
269                 }
270         }
271         db_printf(")");
272 }
273
274 /*
275  * Figure out the next frame up in the call stack.
276  */
277 static void
278 db_nextframe(struct i386_frame **fp, db_addr_t *ip, struct thread *td)
279 {
280         struct trapframe *tf;
281         int frame_type;
282         int eip, esp, ebp;
283         db_expr_t offset;
284         c_db_sym_t sym;
285         const char *name;
286
287         eip = db_get_value((int) &(*fp)->f_retaddr, 4, FALSE);
288         ebp = db_get_value((int) &(*fp)->f_frame, 4, FALSE);
289
290         /*
291          * Figure out frame type.  We look at the address just before
292          * the saved instruction pointer as the saved EIP is after the
293          * call function, and if the function being called is marked as
294          * dead (such as panic() at the end of dblfault_handler()), then
295          * the instruction at the saved EIP will be part of a different
296          * function (syscall() in this example) rather than the one that
297          * actually made the call.
298          */
299         frame_type = NORMAL;
300         sym = db_search_symbol(eip - 1, DB_STGY_ANY, &offset);
301         db_symbol_values(sym, &name, NULL);
302         if (name != NULL) {
303                 if (strcmp(name, "calltrap") == 0 ||
304                     strcmp(name, "fork_trampoline") == 0)
305                         frame_type = TRAP;
306                 else if (strncmp(name, "Xatpic_intr", 11) == 0 ||
307                     strncmp(name, "Xapic_isr", 9) == 0)
308                         frame_type = INTERRUPT;
309                 else if (strcmp(name, "Xlcall_syscall") == 0 ||
310                     strcmp(name, "Xint0x80_syscall") == 0)
311                         frame_type = SYSCALL;
312                 else if (strcmp(name, "dblfault_handler") == 0)
313                         frame_type = DOUBLE_FAULT;
314                 /* XXX: These are interrupts with trap frames. */
315                 else if (strcmp(name, "Xtimerint") == 0)
316                         frame_type = TRAP_TIMERINT;
317                 else if (strcmp(name, "Xcpustop") == 0 ||
318                     strcmp(name, "Xrendezvous") == 0 ||
319                     strcmp(name, "Xipi_intr_bitmap_handler") == 0)
320                         frame_type = TRAP_INTERRUPT;
321         }
322
323         /*
324          * Normal frames need no special processing.
325          */
326         if (frame_type == NORMAL) {
327                 *ip = (db_addr_t) eip;
328                 *fp = (struct i386_frame *) ebp;
329                 return;
330         }
331
332         db_print_stack_entry(name, 0, 0, 0, eip, &(*fp)->f_frame);
333
334         /*
335          * For a double fault, we have to snag the values from the
336          * previous TSS since a double fault uses a task gate to
337          * switch to a known good state.
338          */
339         if (frame_type == DOUBLE_FAULT) {
340                 esp = PCPU_GET(common_tss.tss_esp);
341                 eip = PCPU_GET(common_tss.tss_eip);
342                 ebp = PCPU_GET(common_tss.tss_ebp);
343                 db_printf(
344                     "--- trap 0x17, eip = %#r, esp = %#r, ebp = %#r ---\n",
345                     eip, esp, ebp);
346                 *ip = (db_addr_t) eip;
347                 *fp = (struct i386_frame *) ebp;
348                 return;
349         }
350
351         /*
352          * Point to base of trapframe which is just above the
353          * current frame.
354          */
355         if (frame_type == INTERRUPT)
356                 tf = (struct trapframe *)((int)*fp + 16);
357         else if (frame_type == TRAP_INTERRUPT)
358                 tf = (struct trapframe *)((int)*fp + 8);
359         else
360                 tf = (struct trapframe *)((int)*fp + 12);
361
362         if (INKERNEL((int) tf)) {
363                 esp = get_esp(tf);
364                 eip = tf->tf_eip;
365                 ebp = tf->tf_ebp;
366                 switch (frame_type) {
367                 case TRAP:
368                         db_printf("--- trap %#r", tf->tf_trapno);
369                         break;
370                 case SYSCALL:
371                         db_printf("--- syscall");
372                         decode_syscall(tf->tf_eax, td);
373                         break;
374                 case TRAP_TIMERINT:
375                 case TRAP_INTERRUPT:
376                 case INTERRUPT:
377                         db_printf("--- interrupt");
378                         break;
379                 default:
380                         panic("The moon has moved again.");
381                 }
382                 db_printf(", eip = %#r, esp = %#r, ebp = %#r ---\n", eip,
383                     esp, ebp);
384         }
385
386         *ip = (db_addr_t) eip;
387         *fp = (struct i386_frame *) ebp;
388 }
389
390 static int
391 db_backtrace(struct thread *td, struct trapframe *tf, struct i386_frame *frame,
392     db_addr_t pc, int count)
393 {
394         struct i386_frame *actframe;
395 #define MAXNARG 16
396         char *argnames[MAXNARG], **argnp = NULL;
397         const char *name;
398         int *argp;
399         db_expr_t offset;
400         c_db_sym_t sym;
401         int instr, narg;
402         boolean_t first;
403
404         /*
405          * If an indirect call via an invalid pointer caused a trap,
406          * %pc contains the invalid address while the return address
407          * of the unlucky caller has been saved by CPU on the stack
408          * just before the trap frame.  In this case, try to recover
409          * the caller's address so that the first frame is assigned
410          * to the right spot in the right function, for that is where
411          * the failure actually happened.
412          *
413          * This trick depends on the fault address stashed in tf_err
414          * by trap_fatal() before entering KDB.
415          */
416         if (kdb_frame && pc == kdb_frame->tf_err) {
417                 /*
418                  * Find where the trap frame actually ends.
419                  * It won't contain tf_esp or tf_ss unless crossing rings.
420                  */
421                 if (ISPL(kdb_frame->tf_cs))
422                         instr = (int)(kdb_frame + 1);
423                 else
424                         instr = (int)&kdb_frame->tf_esp;
425                 pc = db_get_value(instr, 4, FALSE);
426         }
427
428         if (count == -1)
429                 count = 1024;
430
431         first = TRUE;
432         while (count-- && !db_pager_quit) {
433                 sym = db_search_symbol(pc, DB_STGY_ANY, &offset);
434                 db_symbol_values(sym, &name, NULL);
435
436                 /*
437                  * Attempt to determine a (possibly fake) frame that gives
438                  * the caller's pc.  It may differ from `frame' if the
439                  * current function never sets up a standard frame or hasn't
440                  * set one up yet or has just discarded one.  The last two
441                  * cases can be guessed fairly reliably for code generated
442                  * by gcc.  The first case is too much trouble to handle in
443                  * general because the amount of junk on the stack depends
444                  * on the pc (the special handling of "calltrap", etc. in
445                  * db_nextframe() works because the `next' pc is special).
446                  */
447                 actframe = frame;
448                 if (first) {
449                         if (tf != NULL) {
450                                 instr = db_get_value(pc, 4, FALSE);
451                                 if ((instr & 0xffffff) == 0x00e58955) {
452                                         /* pushl %ebp; movl %esp, %ebp */
453                                         actframe = (void *)(get_esp(tf) - 4);
454                                 } else if ((instr & 0xffff) == 0x0000e589) {
455                                         /* movl %esp, %ebp */
456                                         actframe = (void *)get_esp(tf);
457                                         if (tf->tf_ebp == 0) {
458                                                 /* Fake frame better. */
459                                                 frame = actframe;
460                                         }
461                                 } else if ((instr & 0xff) == 0x000000c3) {
462                                         /* ret */
463                                         actframe = (void *)(get_esp(tf) - 4);
464                                 } else if (offset == 0) {
465                                         /* Probably an assembler symbol. */
466                                         actframe = (void *)(get_esp(tf) - 4);
467                                 }
468                         } else if (strcmp(name, "fork_trampoline") == 0) {
469                                 /*
470                                  * Don't try to walk back on a stack for a
471                                  * process that hasn't actually been run yet.
472                                  */
473                                 db_print_stack_entry(name, 0, 0, 0, pc,
474                                     actframe);
475                                 break;
476                         }
477                         first = FALSE;
478                 }
479
480                 argp = &actframe->f_arg0;
481                 narg = MAXNARG;
482                 if (sym != NULL && db_sym_numargs(sym, &narg, argnames)) {
483                         argnp = argnames;
484                 } else {
485                         narg = db_numargs(frame);
486                 }
487
488                 db_print_stack_entry(name, narg, argnp, argp, pc, actframe);
489
490                 if (actframe != frame) {
491                         /* `frame' belongs to caller. */
492                         pc = (db_addr_t)
493                             db_get_value((int)&actframe->f_retaddr, 4, FALSE);
494                         continue;
495                 }
496
497                 db_nextframe(&frame, &pc, td);
498
499                 if (INKERNEL((int)pc) && !INKERNEL((int) frame)) {
500                         sym = db_search_symbol(pc, DB_STGY_ANY, &offset);
501                         db_symbol_values(sym, &name, NULL);
502                         db_print_stack_entry(name, 0, 0, 0, pc, frame);
503                         break;
504                 }
505                 if (!INKERNEL((int) frame)) {
506                         break;
507                 }
508         }
509
510         return (0);
511 }
512
513 void
514 db_trace_self(void)
515 {
516         struct i386_frame *frame;
517         db_addr_t callpc;
518         register_t ebp;
519
520         __asm __volatile("movl %%ebp,%0" : "=r" (ebp));
521         frame = (struct i386_frame *)ebp;
522         callpc = (db_addr_t)db_get_value((int)&frame->f_retaddr, 4, FALSE);
523         frame = frame->f_frame;
524         db_backtrace(curthread, NULL, frame, callpc, -1);
525 }
526
527 int
528 db_trace_thread(struct thread *thr, int count)
529 {
530         struct pcb *ctx;
531
532         ctx = kdb_thr_ctx(thr);
533         return (db_backtrace(thr, NULL, (struct i386_frame *)ctx->pcb_ebp,
534                     ctx->pcb_eip, count));
535 }
536
537 int
538 i386_set_watch(watchnum, watchaddr, size, access, d)
539         int watchnum;
540         unsigned int watchaddr;
541         int size;
542         int access;
543         struct dbreg *d;
544 {
545         int i, len;
546
547         if (watchnum == -1) {
548                 for (i = 0; i < 4; i++)
549                         if (!DBREG_DR7_ENABLED(d->dr[7], i))
550                                 break;
551                 if (i < 4)
552                         watchnum = i;
553                 else
554                         return (-1);
555         }
556
557         switch (access) {
558         case DBREG_DR7_EXEC:
559                 size = 1; /* size must be 1 for an execution breakpoint */
560                 /* fall through */
561         case DBREG_DR7_WRONLY:
562         case DBREG_DR7_RDWR:
563                 break;
564         default:
565                 return (-1);
566         }
567
568         /*
569          * we can watch a 1, 2, or 4 byte sized location
570          */
571         switch (size) {
572         case 1:
573                 len = DBREG_DR7_LEN_1;
574                 break;
575         case 2:
576                 len = DBREG_DR7_LEN_2;
577                 break;
578         case 4:
579                 len = DBREG_DR7_LEN_4;
580                 break;
581         default:
582                 return (-1);
583         }
584
585         /* clear the bits we are about to affect */
586         d->dr[7] &= ~DBREG_DR7_MASK(watchnum);
587
588         /* set drN register to the address, N=watchnum */
589         DBREG_DRX(d, watchnum) = watchaddr;
590
591         /* enable the watchpoint */
592         d->dr[7] |= DBREG_DR7_SET(watchnum, len, access,
593             DBREG_DR7_GLOBAL_ENABLE);
594
595         return (watchnum);
596 }
597
598
599 int
600 i386_clr_watch(watchnum, d)
601         int watchnum;
602         struct dbreg *d;
603 {
604
605         if (watchnum < 0 || watchnum >= 4)
606                 return (-1);
607
608         d->dr[7] &= ~DBREG_DR7_MASK(watchnum);
609         DBREG_DRX(d, watchnum) = 0;
610
611         return (0);
612 }
613
614
615 int
616 db_md_set_watchpoint(addr, size)
617         db_expr_t addr;
618         db_expr_t size;
619 {
620         struct dbreg d;
621         int avail, i, wsize;
622
623         fill_dbregs(NULL, &d);
624
625         avail = 0;
626         for(i = 0; i < 4; i++) {
627                 if (!DBREG_DR7_ENABLED(d.dr[7], i))
628                         avail++;
629         }
630
631         if (avail * 4 < size)
632                 return (-1);
633
634         for (i = 0; i < 4 && (size > 0); i++) {
635                 if (!DBREG_DR7_ENABLED(d.dr[7], i)) {
636                         if (size > 2)
637                                 wsize = 4;
638                         else
639                                 wsize = size;
640                         i386_set_watch(i, addr, wsize,
641                                        DBREG_DR7_WRONLY, &d);
642                         addr += wsize;
643                         size -= wsize;
644                 }
645         }
646
647         set_dbregs(NULL, &d);
648
649         return(0);
650 }
651
652
653 int
654 db_md_clr_watchpoint(addr, size)
655         db_expr_t addr;
656         db_expr_t size;
657 {
658         struct dbreg d;
659         int i;
660
661         fill_dbregs(NULL, &d);
662
663         for(i = 0; i < 4; i++) {
664                 if (DBREG_DR7_ENABLED(d.dr[7], i)) {
665                         if ((DBREG_DRX((&d), i) >= addr) &&
666                             (DBREG_DRX((&d), i) < addr+size))
667                                 i386_clr_watch(i, &d);
668
669                 }
670         }
671
672         set_dbregs(NULL, &d);
673
674         return(0);
675 }
676
677
678 static const char *
679 watchtype_str(type)
680         int type;
681 {
682         switch (type) {
683                 case DBREG_DR7_EXEC   : return "execute";    break;
684                 case DBREG_DR7_RDWR   : return "read/write"; break;
685                 case DBREG_DR7_WRONLY : return "write";      break;
686                 default               : return "invalid";    break;
687         }
688 }
689
690
691 void
692 db_md_list_watchpoints()
693 {
694         struct dbreg d;
695         int i, len, type;
696
697         fill_dbregs(NULL, &d);
698
699         db_printf("\nhardware watchpoints:\n");
700         db_printf("  watch    status        type  len     address\n");
701         db_printf("  -----  --------  ----------  ---  ----------\n");
702         for (i = 0; i < 4; i++) {
703                 if (DBREG_DR7_ENABLED(d.dr[7], i)) {
704                         type = DBREG_DR7_ACCESS(d.dr[7], i);
705                         len = DBREG_DR7_LEN(d.dr[7], i);
706                         db_printf("  %-5d  %-8s  %10s  %3d  ",
707                             i, "enabled", watchtype_str(type), len + 1);
708                         db_printsym((db_addr_t)DBREG_DRX((&d), i), DB_STGY_ANY);
709                         db_printf("\n");
710                 } else {
711                         db_printf("  %-5d  disabled\n", i);
712                 }
713         }
714
715         db_printf("\ndebug register values:\n");
716         for (i = 0; i < 8; i++) {
717                 db_printf("  dr%d 0x%08x\n", i, DBREG_DRX((&d), i));
718         }
719         db_printf("\n");
720 }
721
722