2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the
10 * License may not be used to create, or enable the creation or
11 * redistribution of, unlawful or unlicensed copies of an Apple operating
12 * system, or to circumvent, violate, or enable the circumvention or
13 * violation of, any terms of an Apple operating system software license
16 * Please obtain a copy of the License at
17 * http://www.opensource.apple.com/apsl/ and read it before using this
20 * The Original Code and all software distributed under the License are
21 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
22 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
23 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
25 * Please see the License for the specific language governing rights and
26 * limitations under the License.
28 * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
34 * Mach Operating System
35 * Copyright (c) 1991,1990 Carnegie Mellon University
36 * All Rights Reserved.
38 * Permission to use, copy, modify and distribute this software and its
39 * documentation is hereby granted, provided that both the copyright
40 * notice and this permission notice appear in all copies of the
41 * software, derivative works or modified versions, and any portions
42 * thereof, and that both notices appear in supporting documentation.
44 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
45 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
46 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
48 * Carnegie Mellon requests users of this software to return to
50 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
51 * School of Computer Science
52 * Carnegie Mellon University
53 * Pittsburgh PA 15213-3890
55 * any improvements or extensions that they make and grant Carnegie Mellon
56 * the rights to redistribute these changes.
62 * Interface to new debugger.
64 #include <platforms.h>
65 #include <time_stamp.h>
66 #include <mach_mp_debug.h>
67 #include <mach_ldebug.h>
69 #include <kern/cpu_number.h>
70 #include <kern/kern_types.h>
71 #include <kern/misc_protos.h>
74 #include <i386/thread.h>
75 #include <i386/db_machdep.h>
77 #include <i386/trap.h>
78 #include <i386/setjmp.h>
79 #include <i386/pmap.h>
80 #include <i386/misc_protos.h>
82 #include <i386/machine_cpu.h>
84 #include <mach/vm_param.h>
85 #include <vm/vm_map.h>
86 #include <kern/thread.h>
87 #include <kern/task.h>
89 #include <ddb/db_command.h>
90 #include <ddb/db_task_thread.h>
91 #include <ddb/db_run.h>
92 #include <ddb/db_trap.h>
93 #include <ddb/db_output.h>
94 #include <ddb/db_access.h>
95 #include <ddb/db_sym.h>
96 #include <ddb/db_break.h>
97 #include <ddb/db_watch.h>
99 #include <i386/cpu_data.h>
102 x86_saved_state32_t
*i386_last_saved_statep
;
103 x86_saved_state32_t i386_nested_saved_state
;
104 unsigned i386_last_kdb_sp
;
106 extern thread_t db_default_act
;
107 extern pt_entry_t
*DMAP1
;
108 extern caddr_t DADDR1
;
111 extern int masked_state_cnt
[];
112 #endif /* MACH_MP_DEBUG */
115 * Enter KDB through a keyboard trap.
116 * We show the registers as of the keyboard interrupt
117 * instead of those at its call to KDB.
126 x86_saved_state32_t
*is
;
129 extern char * trap_type
[];
130 extern int TRAP_TYPES
;
134 extern void kdbprinttrap(
139 extern void kdb_kentry(
140 struct int_regs
*int_regs
);
141 extern int db_user_to_kernel_address(
146 extern void db_write_bytes_user_space(
151 extern int db_search_null(
157 extern int kdb_enter(int);
158 extern void kdb_leave(void);
159 extern void lock_kdb(void);
160 extern void unlock_kdb(void);
163 * kdb_trap - field a TRACE or BPT trap
167 extern jmp_buf_t
*db_recover
;
170 * Translate the state saved in a task state segment into an
171 * exception frame. Since we "know" we always want the state
172 * in a ktss, we hard-wire that in, rather than indexing the gdt
173 * with tss_sel to derive a pointer to the desired tss.
177 * Code used to synchronize kdb among all cpus, one active at a time, switch
178 * from one to another using cpu #cpu
181 decl_simple_lock_data(, kdb_lock
) /* kdb lock */
183 #define db_simple_lock_init(l, e) hw_lock_init(&((l)->interlock))
184 #define db_simple_lock_try(l) hw_lock_try(&((l)->interlock))
185 #define db_simple_unlock(l) hw_lock_unlock(&((l)->interlock))
187 int kdb_cpu
= -1; /* current cpu running kdb */
189 volatile unsigned int cpus_holding_bkpts
; /* counter for number of cpus
190 * holding breakpoints
192 extern boolean_t db_breakpoints_inserted
;
197 x86_saved_state32_t
*regs
)
199 extern struct i386_tss ktss
;
200 int mycpu
= cpu_number();
201 struct i386_tss
*tss
;
203 tss
= cpu_datap(mycpu
)->cpu_desc_index
.cdi_ktss
; /* XXX */
206 * ddb will overwrite whatever's in esp, so put esp0 elsewhere, too.
208 regs
->cr2
= tss
->esp0
;
209 regs
->efl
= tss
->eflags
;
210 regs
->eip
= tss
->eip
;
211 regs
->trapno
= tss
->ss0
; /* XXX */
212 regs
->err
= tss
->esp0
; /* XXX */
213 regs
->eax
= tss
->eax
;
214 regs
->ecx
= tss
->ecx
;
215 regs
->edx
= tss
->edx
;
216 regs
->ebx
= tss
->ebx
;
217 regs
->uesp
= tss
->esp
;
218 regs
->ebp
= tss
->ebp
;
219 regs
->esi
= tss
->esi
;
220 regs
->edi
= tss
->edi
;
230 * Compose a call to the debugger from the saved state in regs. (No
231 * reason not to do this in C.)
235 x86_saved_state32_t
*regs
)
242 return (kdb_trap(type
, code
, regs
));
249 x86_saved_state32_t
*regs
)
252 boolean_t trap_from_user
;
254 int previous_console_device
;
258 previous_console_device
= switch_to_serial_console();
260 db_printf("kdb_trap(): type %d, code %d, regs->eip 0x%x\n", type
, code
, regs
->eip
);
262 case T_DEBUG
: /* single_step */
264 extern int dr_addr
[];
268 if (status
& 0xf) { /* hmm hdw break */
269 addr
= status
& 0x8 ? dr_addr
[3] :
270 status
& 0x4 ? dr_addr
[2] :
271 status
& 0x2 ? dr_addr
[1] :
274 db_single_step_cmd(addr
, 0, 1, "p");
277 case T_INT3
: /* breakpoint */
278 case T_WATCHPOINT
: /* watchpoint */
279 case -1: /* keyboard interrupt */
284 i386_nested_saved_state
= *regs
;
285 db_printf("Caught ");
286 if (type
< 0 || type
> TRAP_TYPES
)
287 db_printf("type %d", type
);
289 db_printf("%s", trap_type
[type
]);
290 db_printf(" trap, code = %x, pc = %x\n",
296 kdbprinttrap(type
, code
, (int *)®s
->eip
, regs
->uesp
);
299 disable_preemption();
301 current_cpu_datap()->cpu_kdb_saved_ipl
= s
;
302 current_cpu_datap()->cpu_kdb_saved_state
= regs
;
304 i386_last_saved_statep
= regs
;
305 i386_last_kdb_sp
= (unsigned) &type
;
307 if (!kdb_enter(regs
->eip
))
310 /* Should switch to kdb's own stack here. */
312 if (!IS_USER_TRAP(regs
, &etext
)) {
313 bzero((char *)&ddb_regs
, sizeof (ddb_regs
));
314 *(struct x86_saved_state32_from_kernel
*)&ddb_regs
=
315 *(struct x86_saved_state32_from_kernel
*)regs
;
316 trap_from_user
= FALSE
;
320 trap_from_user
= TRUE
;
322 if (!trap_from_user
) {
324 * Kernel mode - esp and ss not saved
326 ddb_regs
.uesp
= (int)®s
->uesp
; /* kernel stack pointer */
327 ddb_regs
.ss
= KERNEL_DS
;
331 db_task_trap(type
, code
, trap_from_user
);
334 regs
->eip
= ddb_regs
.eip
;
335 regs
->efl
= ddb_regs
.efl
;
336 regs
->eax
= ddb_regs
.eax
;
337 regs
->ecx
= ddb_regs
.ecx
;
338 regs
->edx
= ddb_regs
.edx
;
339 regs
->ebx
= ddb_regs
.ebx
;
341 if (trap_from_user
) {
343 * user mode - saved esp and ss valid
345 regs
->uesp
= ddb_regs
.uesp
; /* user stack pointer */
346 regs
->ss
= ddb_regs
.ss
& 0xffff; /* user stack segment */
349 regs
->ebp
= ddb_regs
.ebp
;
350 regs
->esi
= ddb_regs
.esi
;
351 regs
->edi
= ddb_regs
.edi
;
352 regs
->es
= ddb_regs
.es
& 0xffff;
353 regs
->cs
= ddb_regs
.cs
& 0xffff;
354 regs
->ds
= ddb_regs
.ds
& 0xffff;
355 regs
->fs
= ddb_regs
.fs
& 0xffff;
356 regs
->gs
= ddb_regs
.gs
& 0xffff;
358 if ((type
== T_INT3
) &&
359 (db_get_task_value(regs
->eip
,
362 db_target_space(current_thread(),
365 regs
->eip
+= BKPT_SIZE
;
367 switch_to_old_console(previous_console_device
);
371 current_cpu_datap()->cpu_kdb_saved_state
= 0;
377 /* Allow continue to upper layers of exception handling if
378 * trap was not a debugging trap.
381 if (trap_from_user
&& type
!= T_DEBUG
&& type
!= T_INT3
382 && type
!= T_WATCHPOINT
)
389 * Enter KDB through a keyboard trap.
390 * We show the registers as of the keyboard interrupt
391 * instead of those at its call to KDB.
398 struct int_regs
*int_regs
)
401 boolean_t trap_from_user
;
402 x86_saved_state32_t
*is
= int_regs
->is
;
403 x86_saved_state32_t regs
;
409 if (IS_USER_TRAP(is
, &etext
))
411 regs
.uesp
= ((int *)(is
+1))[0];
412 regs
.ss
= ((int *)(is
+1))[1];
416 regs
.uesp
= (int)(is
+1);
424 regs
.ebx
= int_regs
->ebx
;
425 regs
.ebp
= int_regs
->ebp
;
426 regs
.esi
= int_regs
->esi
;
427 regs
.edi
= int_regs
->edi
;
430 regs
.fs
= int_regs
->fs
;
431 regs
.gs
= int_regs
->gs
;
433 disable_preemption();
435 current_cpu_datap()->cpu_kdb_saved_state
= ®s
;
437 if (!kdb_enter(regs
.eip
))
440 bcopy((char *)®s
, (char *)&ddb_regs
, sizeof (ddb_regs
));
441 trap_from_user
= IS_USER_TRAP(&ddb_regs
, &etext
);
444 db_task_trap(-1, 0, trap_from_user
);
447 if (trap_from_user
) {
448 ((int *)(is
+1))[0] = ddb_regs
.uesp
;
449 ((int *)(is
+1))[1] = ddb_regs
.ss
& 0xffff;
451 is
->efl
= ddb_regs
.efl
;
452 is
->cs
= ddb_regs
.cs
& 0xffff;
453 is
->eip
= ddb_regs
.eip
;
454 is
->eax
= ddb_regs
.eax
;
455 is
->ecx
= ddb_regs
.ecx
;
456 is
->edx
= ddb_regs
.edx
;
457 int_regs
->ebx
= ddb_regs
.ebx
;
458 int_regs
->ebp
= ddb_regs
.ebp
;
459 int_regs
->esi
= ddb_regs
.esi
;
460 int_regs
->edi
= ddb_regs
.edi
;
461 is
->ds
= ddb_regs
.ds
& 0xffff;
462 is
->es
= ddb_regs
.es
& 0xffff;
463 int_regs
->fs
= ddb_regs
.fs
& 0xffff;
464 int_regs
->gs
= ddb_regs
.gs
& 0xffff;
468 current_cpu_datap()->cpu_kdb_saved_state
= 0;
487 if (type
< 0 || type
> TRAP_TYPES
)
488 db_printf("type %d", type
);
490 db_printf("%s", trap_type
[type
]);
491 db_printf(" trap, code=%x eip@%x = %x esp=%x\n",
492 code
, pc
, *(int *)pc
, sp
);
493 db_run_mode
= STEP_CONTINUE
;
497 db_user_to_kernel_address(
503 register pt_entry_t
*ptp
;
507 * must not pre-empted while using the pte pointer passed
508 * back since it's been mapped through a per-cpu window
510 mp_disable_preemption();
512 ptp
= pmap_pte(task
->map
->pmap
, (vm_map_offset_t
)addr
);
513 if (ptp
== PT_ENTRY_NULL
|| (*ptp
& INTEL_PTE_VALID
) == 0) {
515 db_printf("\nno memory is assigned to address %08x\n", addr
);
519 mp_enable_preemption();
522 src
= (vm_offset_t
)pte_to_pa(*ptp
);
524 mp_enable_preemption();
526 *(int *) DMAP1
= INTEL_PTE_VALID
| INTEL_PTE_RW
| (src
& PG_FRAME
) |
527 INTEL_PTE_REF
| INTEL_PTE_MOD
;
528 #if defined(I386_CPU)
529 if (cpu_class
== CPUCLASS_386
) {
534 invlpg((u_int
)DADDR1
);
537 *kaddr
= (unsigned)DADDR1
+ (addr
& PAGE_MASK
);
543 * Read bytes from kernel address space for debugger.
558 if (task
== kernel_task
|| task
== TASK_NULL
) {
559 while (--size
>= 0) {
560 if (addr
++ > VM_MAX_KERNEL_ADDRESS
) {
561 db_printf("\nbad address %x\n", addr
);
570 if (db_user_to_kernel_address(task
, addr
, &kern_addr
, 1) < 0)
572 src
= (char *)kern_addr
;
573 n
= intel_trunc_page(addr
+INTEL_PGBYTES
) - addr
;
584 * Write bytes to kernel address space for debugger.
596 register pt_entry_t
*ptep0
= 0;
597 pt_entry_t oldmap0
= 0;
599 register pt_entry_t
*ptep1
= 0;
600 pt_entry_t oldmap1
= 0;
603 if (task
&& task
!= kernel_task
) {
604 db_write_bytes_user_space(addr
, size
, data
, task
);
609 if (addr
>= VM_MIN_KERNEL_LOADED_ADDRESS
) {
610 db_write_bytes_user_space(addr
, size
, data
, kernel_task
);
614 if (addr
>= VM_MIN_KERNEL_ADDRESS
&&
615 addr
<= (vm_offset_t
)&etext
)
617 ptep0
= pmap_pte(kernel_pmap
, (vm_map_offset_t
)addr
);
619 *ptep0
|= INTEL_PTE_WRITE
;
621 addr1
= i386_trunc_page(addr
+ size
- 1);
622 if (i386_trunc_page(addr
) != addr1
) {
623 /* data crosses a page boundary */
625 ptep1
= pmap_pte(kernel_pmap
, (vm_map_offset_t
)addr1
);
627 *ptep1
|= INTEL_PTE_WRITE
;
634 while (--size
>= 0) {
635 if (addr
++ > VM_MAX_KERNEL_ADDRESS
) {
636 db_printf("\nbad address %x\n", addr
);
653 db_write_bytes_user_space(
664 if (db_user_to_kernel_address(task
, addr
, &kern_addr
, 1) < 0)
666 dst
= (char *)kern_addr
;
667 n
= intel_trunc_page(addr
+INTEL_PGBYTES
) - addr
;
686 if (task
== kernel_task
|| task
== TASK_NULL
) {
687 if (kernel_task
== TASK_NULL
)
690 } else if (task
== TASK_NULL
) {
691 if (current_thread() == THREAD_NULL
)
693 task
= current_thread()->task
;
696 if (db_user_to_kernel_address(task
, addr
, &kern_addr
, 0) < 0)
698 n
= intel_trunc_page(addr
+INTEL_PGBYTES
) - addr
;
714 unsigned kern_addr1
, kern_addr2
;
716 if ((addr1
& (INTEL_PGBYTES
-1)) != (addr2
& (INTEL_PGBYTES
-1)))
718 if (task1
== TASK_NULL
) {
719 if (current_thread() == THREAD_NULL
)
721 task1
= current_thread()->task
;
723 if (db_user_to_kernel_address(task1
, addr1
, &kern_addr1
, 0) < 0 ||
724 db_user_to_kernel_address(task2
, addr2
, &kern_addr2
, 0) < 0)
726 return(kern_addr1
== kern_addr2
);
729 #define DB_USER_STACK_ADDR (VM_MIN_KERNEL_ADDRESS)
730 #define DB_NAME_SEARCH_LIMIT (DB_USER_STACK_ADDR-(INTEL_PGBYTES*3))
740 register unsigned vaddr
;
741 register unsigned *kaddr
;
743 kaddr
= (unsigned *)*skaddr
;
744 for (vaddr
= *svaddr
; vaddr
> evaddr
; vaddr
-= sizeof(unsigned)) {
745 if (vaddr
% INTEL_PGBYTES
== 0) {
746 vaddr
-= sizeof(unsigned);
747 if (db_user_to_kernel_address(task
, vaddr
, skaddr
, 0) < 0)
749 kaddr
= (unsigned *)*skaddr
;
751 vaddr
-= sizeof(unsigned);
754 if ((*kaddr
== 0) ^ (flag
== 0)) {
756 *skaddr
= (unsigned)kaddr
;
769 unsigned vaddr
, kaddr
;
771 vaddr
= DB_USER_STACK_ADDR
;
775 * skip nulls at the end
777 if (db_search_null(task
, &vaddr
, DB_NAME_SEARCH_LIMIT
, &kaddr
, 0) < 0) {
778 db_printf(DB_NULL_TASK_NAME
);
782 * search start of args
784 if (db_search_null(task
, &vaddr
, DB_NAME_SEARCH_LIMIT
, &kaddr
, 1) < 0) {
785 db_printf(DB_NULL_TASK_NAME
);
789 n
= DB_TASK_NAME_LEN
-1;
790 p
= (char *)kaddr
+ sizeof(unsigned);
791 for (vaddr
+= sizeof(int); vaddr
< DB_USER_STACK_ADDR
&& n
> 0;
793 if (vaddr
% INTEL_PGBYTES
== 0) {
794 (void)db_user_to_kernel_address(task
, vaddr
, &kaddr
, 0);
797 db_printf("%c", (*p
< ' ' || *p
> '~')? ' ': *p
);
799 while (n
-- >= 0) /* compare with >= 0 for one more space */
804 db_machdep_init(void)
808 db_simple_lock_init(&kdb_lock
, 0);
809 for (c
= 0; c
< real_ncpus
; ++c
) {
810 if (c
== master_cpu
) {
811 master_dbtss
.esp0
= (int)(db_task_stack_store
+
812 (INTSTACK_SIZE
* (c
+ 1)) - sizeof (natural_t
));
813 master_dbtss
.esp
= master_dbtss
.esp0
;
814 master_dbtss
.eip
= (int)&db_task_start
;
816 * The TSS for the debugging task on each slave CPU
817 * is set up in cpu_desc_init().
824 * Called when entering kdb:
825 * Takes kdb lock. If if we were called remotely (slave state) we just
826 * wait for kdb_cpu to be equal to cpu_number(). Otherwise enter kdb if
827 * not active on another cpu.
828 * If db_pass_thru[cpu_number()] > 0, then kdb can't stop now.
837 disable_preemption();
839 my_cpu
= cpu_number();
841 if (current_cpu_datap()->cpu_db_pass_thru
) {
846 current_cpu_datap()->cpu_kdb_active
++;
850 db_printf("kdb_enter(): cpu_number %d, kdb_cpu %d\n", my_cpu
, kdb_cpu
);
852 if (db_breakpoints_inserted
)
853 cpus_holding_bkpts
++;
855 if (kdb_cpu
== -1 && !current_cpu_datap()->cpu_kdb_is_slave
) {
857 db_printf("Signaling other processors..\n");
858 remote_kdb(); /* stop other cpus */
860 } else if (kdb_cpu
== my_cpu
)
875 boolean_t wait
= FALSE
;
877 disable_preemption();
879 my_cpu
= cpu_number();
881 if (db_run_mode
== STEP_CONTINUE
) {
885 if (db_breakpoints_inserted
)
886 cpus_holding_bkpts
--;
887 if (current_cpu_datap()->cpu_kdb_is_slave
)
888 current_cpu_datap()->cpu_kdb_is_slave
--;
890 db_printf("kdb_leave: cpu %d, kdb_cpu %d, run_mode %d pc %x (%x) holds %d\n",
891 my_cpu
, kdb_cpu
, db_run_mode
,
892 ddb_regs
.eip
, *(int *)ddb_regs
.eip
,
896 current_cpu_datap()->cpu_kdb_active
--;
903 while(cpus_holding_bkpts
);
913 disable_preemption();
915 my_cpu
= cpu_number();
918 if (kdb_cpu
!= -1 && kdb_cpu
!= my_cpu
) {
921 if (db_simple_lock_try(&kdb_lock
)) {
922 if (kdb_cpu
== -1 || kdb_cpu
== my_cpu
)
924 db_simple_unlock(&kdb_lock
);
932 extern unsigned old_time_stamp
;
933 #endif /* TIME_STAMP */
938 db_simple_unlock(&kdb_lock
);
941 #endif /* TIME_STAMP */
946 #define KDB_SAVE(type, name) extern type name; type name##_save = name
947 #define KDB_RESTORE(name) name = name##_save
949 #define KDB_SAVE(type, name) extern type name; type name/**/_save = name
950 #define KDB_RESTORE(name) name = name/**/_save
951 #endif /* __STDC__ */
953 #define KDB_SAVE_CTXT() \
954 KDB_SAVE(int, db_run_mode); \
955 KDB_SAVE(boolean_t, db_sstep_print); \
956 KDB_SAVE(int, db_loop_count); \
957 KDB_SAVE(int, db_call_depth); \
958 KDB_SAVE(int, db_inst_count); \
959 KDB_SAVE(int, db_last_inst_count); \
960 KDB_SAVE(int, db_load_count); \
961 KDB_SAVE(int, db_store_count); \
962 KDB_SAVE(boolean_t, db_cmd_loop_done); \
963 KDB_SAVE(jmp_buf_t *, db_recover); \
964 KDB_SAVE(db_addr_t, db_dot); \
965 KDB_SAVE(db_addr_t, db_last_addr); \
966 KDB_SAVE(db_addr_t, db_prev); \
967 KDB_SAVE(db_addr_t, db_next); \
968 KDB_SAVE(db_regs_t, ddb_regs);
970 #define KDB_RESTORE_CTXT() \
971 KDB_RESTORE(db_run_mode); \
972 KDB_RESTORE(db_sstep_print); \
973 KDB_RESTORE(db_loop_count); \
974 KDB_RESTORE(db_call_depth); \
975 KDB_RESTORE(db_inst_count); \
976 KDB_RESTORE(db_last_inst_count); \
977 KDB_RESTORE(db_load_count); \
978 KDB_RESTORE(db_store_count); \
979 KDB_RESTORE(db_cmd_loop_done); \
980 KDB_RESTORE(db_recover); \
981 KDB_RESTORE(db_dot); \
982 KDB_RESTORE(db_last_addr); \
983 KDB_RESTORE(db_prev); \
984 KDB_RESTORE(db_next); \
985 KDB_RESTORE(ddb_regs);
988 * switch to another cpu
996 if (cpu
< 0 || cpu
>= real_ncpus
|| !cpu_datap(cpu
)->cpu_kdb_active
)
998 db_set_breakpoints();
999 db_set_watchpoints();
1003 db_clear_breakpoints();
1004 db_clear_watchpoints();
1006 if (kdb_cpu
== -1) {/* someone continued */
1007 kdb_cpu
= cpu_number();
1008 db_continue_cmd(0, 0, 0, "");
1016 extern void kdp_reboot(void);
1020 boolean_t have_addr
,