2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
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.
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.
16 * Carnegie Mellon requests users of this software to return to
18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
26 * $FreeBSD: src/sys/ddb/db_run.c,v 1.18 1999/08/28 00:41:10 peter Exp $
30 * Author: David B. Golub, Carnegie Mellon University
35 * Commands to run process.
37 #include <sys/param.h>
42 #include <ddb/db_break.h>
43 #include <ddb/db_access.h>
45 static int db_run_mode
;
50 #define STEP_CONTINUE 4
51 #define STEP_INVISIBLE 5
54 static boolean_t db_sstep_print
;
55 static int db_loop_count
;
56 static int db_call_depth
;
62 #ifndef db_set_single_step
63 extern void db_set_single_step (db_regs_t
*regs
);
65 #ifndef db_clear_single_step
66 extern void db_clear_single_step (db_regs_t
*regs
);
70 static void db_single_step (db_regs_t
*regs
);
74 db_stop_at_pc(boolean_t
*is_breakpoint
)
79 db_clear_single_step(DDB_REGS
);
80 db_clear_breakpoints();
81 db_clear_watchpoints();
82 pc
= PC_REGS(DDB_REGS
);
84 #ifdef FIXUP_PC_AFTER_BREAK
87 * Breakpoint trap. Fix up the PC if the
88 * machine requires it.
91 pc
= PC_REGS(DDB_REGS
);
96 * Now check for a breakpoint at this address.
98 bkpt
= db_find_breakpoint_here(pc
);
100 if (--bkpt
->count
== 0) {
101 bkpt
->count
= bkpt
->init_count
;
102 *is_breakpoint
= TRUE
;
103 return (TRUE
); /* stop here */
105 } else if (*is_breakpoint
) {
107 ddb_regs
.tf_rip
+= 1;
111 *is_breakpoint
= FALSE
;
113 if (db_run_mode
== STEP_INVISIBLE
) {
114 db_run_mode
= STEP_CONTINUE
;
115 return (FALSE
); /* continue */
117 if (db_run_mode
== STEP_COUNT
) {
118 return (FALSE
); /* continue */
120 if (db_run_mode
== STEP_ONCE
) {
121 if (--db_loop_count
> 0) {
122 if (db_sstep_print
) {
124 db_print_loc_and_inst(pc
, DDB_REGS
);
127 return (FALSE
); /* continue */
130 if (db_run_mode
== STEP_RETURN
) {
131 db_expr_t ins
= db_get_value(pc
, sizeof(int), FALSE
);
133 /* continue until matching return */
135 if (!inst_trap_return(ins
) &&
136 (!inst_return(ins
) || --db_call_depth
!= 0)) {
137 if (db_sstep_print
) {
138 if (inst_call(ins
) || inst_return(ins
)) {
141 db_printf("[after %6d] ", db_inst_count
);
142 for (i
= db_call_depth
; --i
> 0; )
144 db_print_loc_and_inst(pc
, DDB_REGS
);
150 return (FALSE
); /* continue */
153 if (db_run_mode
== STEP_CALLT
) {
154 db_expr_t ins
= db_get_value(pc
, sizeof(int), FALSE
);
156 /* continue until call or return */
158 if (!inst_call(ins
) &&
160 !inst_trap_return(ins
)) {
161 return (FALSE
); /* continue */
164 db_run_mode
= STEP_NONE
;
169 db_restart_at_pc(boolean_t watchpt
)
171 db_addr_t pc
= PC_REGS(DDB_REGS
);
173 if ((db_run_mode
== STEP_COUNT
) ||
174 (db_run_mode
== STEP_RETURN
) ||
175 (db_run_mode
== STEP_CALLT
)) {
176 db_expr_t ins __unused
; /* seems used but gcc thinks not */
179 * We are about to execute this instruction,
183 ins
= db_get_value(pc
, sizeof(int), FALSE
);
185 db_load_count
+= inst_load(ins
);
186 db_store_count
+= inst_store(ins
);
187 #ifdef SOFTWARE_SSTEP
188 /* XXX works on mips, but... */
189 if (inst_branch(ins
) || inst_call(ins
)) {
190 ins
= db_get_value(next_instr_address(pc
,1),
193 db_load_count
+= inst_load(ins
);
194 db_store_count
+= inst_store(ins
);
196 #endif /* SOFTWARE_SSTEP */
199 if (db_run_mode
== STEP_CONTINUE
) {
200 if (watchpt
|| db_find_breakpoint_here(pc
)) {
202 * Step over breakpoint/watchpoint.
204 db_run_mode
= STEP_INVISIBLE
;
205 db_set_single_step(DDB_REGS
);
207 db_set_breakpoints();
208 db_set_watchpoints();
211 db_set_single_step(DDB_REGS
);
217 db_single_step(db_regs_t
*regs
)
219 if (db_run_mode
== STEP_CONTINUE
) {
220 db_run_mode
= STEP_INVISIBLE
;
221 db_set_single_step(regs
);
226 #ifdef SOFTWARE_SSTEP
228 * Software implementation of single-stepping.
229 * If your machine does not have a trace mode
230 * similar to the vax or sun ones you can use
231 * this implementation, done for the mips.
232 * Just define the above conditional and provide
233 * the functions/macros defined below.
236 * inst_branch(), returns true if the instruction might branch
238 * branch_taken(), return the address the instruction might
240 * db_getreg_val(); return the value of a user register,
241 * as indicated in the hardware instruction
242 * encoding, e.g. 8 for r8
244 * next_instr_address(pc,bd) returns the address of the first
245 * instruction following the one at "pc",
246 * which is either in the taken path of
247 * the branch (bd==1) or not. This is
248 * for machines (mips) with branch delays.
250 * A single-step may involve at most 2 breakpoints -
251 * one for branch-not-taken and one for branch taken.
252 * If one of these addresses does not already have a breakpoint,
253 * we allocate a breakpoint and save it here.
254 * These breakpoints are deleted on return.
256 db_breakpoint_t db_not_taken_bkpt
= 0;
257 db_breakpoint_t db_taken_bkpt
= 0;
260 db_set_single_step(db_regs_t
*regs
)
262 db_addr_t pc
= PC_REGS(regs
), brpc
;
266 * User was stopped at pc, e.g. the instruction
267 * at pc was not executed.
269 inst
= db_get_value(pc
, sizeof(int), FALSE
);
270 if (inst_branch(inst
) || inst_call(inst
)) {
271 brpc
= branch_taken(inst
, pc
, regs
);
272 if (brpc
!= pc
) { /* self-branches are hopeless */
273 db_taken_bkpt
= db_set_temp_breakpoint(brpc
);
275 pc
= next_instr_address(pc
,1);
277 pc
= next_instr_address(pc
,0);
278 db_not_taken_bkpt
= db_set_temp_breakpoint(pc
);
282 db_clear_single_step(db_regs_t
*regs
)
285 if (db_not_taken_bkpt
!= 0) {
286 db_delete_temp_breakpoint(db_not_taken_bkpt
);
287 db_not_taken_bkpt
= 0;
289 if (db_taken_bkpt
!= 0) {
290 db_delete_temp_breakpoint(db_taken_bkpt
);
295 #endif /* SOFTWARE_SSTEP */
297 extern int db_cmd_loop_done
;
302 db_single_step_cmd(db_expr_t addr
, boolean_t have_addr
, db_expr_t count
,
305 boolean_t print
= FALSE
;
313 db_run_mode
= STEP_ONCE
;
314 db_loop_count
= count
;
315 db_sstep_print
= print
;
320 db_cmd_loop_done
= 1;
323 /* trace and print until call/return */
326 db_trace_until_call_cmd(db_expr_t addr
, boolean_t have_addr
, db_expr_t count
,
329 boolean_t print
= FALSE
;
334 db_run_mode
= STEP_CALLT
;
335 db_sstep_print
= print
;
340 db_cmd_loop_done
= 1;
345 db_trace_until_matching_cmd(db_expr_t addr
, boolean_t have_addr
,
346 db_expr_t count
, char *modif
)
348 boolean_t print
= FALSE
;
353 db_run_mode
= STEP_RETURN
;
355 db_sstep_print
= print
;
360 db_cmd_loop_done
= 1;
366 db_continue_cmd(db_expr_t addr
, boolean_t have_addr
, db_expr_t count
,
370 db_run_mode
= STEP_COUNT
;
372 db_run_mode
= STEP_CONTINUE
;
377 db_cmd_loop_done
= 1;