gdb: Remove traces of h8300 ecoff support
[deliverable/binutils-gdb.git] / gdb / gdbserver / mem-break.h
CommitLineData
611cb4a5 1/* Memory breakpoint interfaces for the remote server for GDB.
e2882c85 2 Copyright (C) 2002-2018 Free Software Foundation, Inc.
611cb4a5
DJ
3
4 Contributed by MontaVista Software.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
611cb4a5
DJ
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
611cb4a5
DJ
20
21#ifndef MEM_BREAK_H
22#define MEM_BREAK_H
23
932539e3
PA
24#include "break-common.h"
25
611cb4a5 26/* Breakpoints are opaque. */
414a389f 27struct breakpoint;
9aa76cd0 28struct gdb_breakpoint;
fa593d66 29struct fast_tracepoint_jump;
802e8e6d
PA
30struct raw_breakpoint;
31struct process_info;
611cb4a5 32
932539e3
PA
33#define Z_PACKET_SW_BP '0'
34#define Z_PACKET_HW_BP '1'
35#define Z_PACKET_WRITE_WP '2'
36#define Z_PACKET_READ_WP '3'
37#define Z_PACKET_ACCESS_WP '4'
38
802e8e6d 39/* The low level breakpoint types. */
932539e3 40
802e8e6d
PA
41enum raw_bkpt_type
42 {
43 /* Software/memory breakpoint. */
44 raw_bkpt_type_sw,
932539e3 45
802e8e6d
PA
46 /* Hardware-assisted breakpoint. */
47 raw_bkpt_type_hw,
d50171e4 48
802e8e6d
PA
49 /* Hardware-assisted write watchpoint. */
50 raw_bkpt_type_write_wp,
d50171e4 51
802e8e6d
PA
52 /* Hardware-assisted read watchpoint. */
53 raw_bkpt_type_read_wp,
54
55 /* Hardware-assisted access watchpoint. */
56 raw_bkpt_type_access_wp
57 };
58
59/* Map the protocol breakpoint/watchpoint type Z_TYPE to the internal
60 raw breakpoint type. */
61
62enum raw_bkpt_type Z_packet_to_raw_bkpt_type (char z_type);
63
64/* Map a raw breakpoint type to an enum target_hw_bp_type. */
65
66enum target_hw_bp_type raw_bkpt_type_to_target_hw_bp_type
67 (enum raw_bkpt_type raw_type);
68
27165294 69/* Create a new GDB breakpoint of type Z_TYPE at ADDR with kind KIND.
802e8e6d
PA
70 Returns a pointer to the newly created breakpoint on success. On
71 failure returns NULL and sets *ERR to either -1 for error, or 1 if
72 Z_TYPE breakpoints are not supported on this target. */
73
9aa76cd0
YQ
74struct gdb_breakpoint *set_gdb_breakpoint (char z_type, CORE_ADDR addr,
75 int kind, int *err);
802e8e6d 76
27165294 77/* Delete a GDB breakpoint of type Z_TYPE and kind KIND previously
802e8e6d
PA
78 inserted at ADDR with set_gdb_breakpoint_at. Returns 0 on success,
79 -1 on error, and 1 if Z_TYPE breakpoints are not supported on this
80 target. */
81
27165294 82int delete_gdb_breakpoint (char z_type, CORE_ADDR addr, int kind);
802e8e6d
PA
83
84/* Returns TRUE if there's a software or hardware (code) breakpoint at
85 ADDR in our tables, inserted, or not. */
d50171e4
PA
86
87int breakpoint_here (CORE_ADDR addr);
88
802e8e6d
PA
89/* Returns TRUE if there's any inserted software or hardware (code)
90 breakpoint set at ADDR. */
d50171e4
PA
91
92int breakpoint_inserted_here (CORE_ADDR addr);
93
582511be
PA
94/* Returns TRUE if there's any inserted software breakpoint at
95 ADDR. */
96
97int software_breakpoint_inserted_here (CORE_ADDR addr);
98
99/* Returns TRUE if there's any inserted hardware (code) breakpoint at
100 ADDR. */
101
102int hardware_breakpoint_inserted_here (CORE_ADDR addr);
103
3b9a79ef 104/* Returns TRUE if there's any single-step breakpoint at ADDR. */
2d97cd35 105
3b9a79ef 106int single_step_breakpoint_inserted_here (CORE_ADDR addr);
2d97cd35 107
0a261ed8
PA
108/* Clear all breakpoint conditions and commands associated with a
109 breakpoint. */
9f3a5c85 110
9aa76cd0 111void clear_breakpoint_conditions_and_commands (struct gdb_breakpoint *bp);
9f3a5c85 112
d708bcd1
PA
113/* Set target-side condition CONDITION to the breakpoint at ADDR.
114 Returns false on failure. On success, advances CONDITION pointer
115 past the condition and returns true. */
9f3a5c85 116
256642e8
PA
117int add_breakpoint_condition (struct gdb_breakpoint *bp,
118 const char **condition);
9f3a5c85 119
d708bcd1
PA
120/* Set target-side commands COMMANDS to the breakpoint at ADDR.
121 Returns false on failure. On success, advances COMMANDS past the
122 commands and returns true. If PERSIST, the commands should run
123 even while GDB is disconnected. */
124
256642e8 125int add_breakpoint_commands (struct gdb_breakpoint *bp, const char **commands,
802e8e6d 126 int persist);
d3ce09f5
SS
127
128int any_persistent_commands (void);
129
9f3a5c85
LM
130/* Evaluation condition (if any) at breakpoint BP. Return 1 if
131 true and 0 otherwise. */
132
133int gdb_condition_true_at_breakpoint (CORE_ADDR where);
134
d3ce09f5
SS
135int gdb_no_commands_at_breakpoint (CORE_ADDR where);
136
137void run_breakpoint_commands (CORE_ADDR where);
138
802e8e6d
PA
139/* Returns TRUE if there's a GDB breakpoint (Z0 or Z1) set at
140 WHERE. */
8b07ae33
PA
141
142int gdb_breakpoint_here (CORE_ADDR where);
143
611cb4a5 144/* Create a new breakpoint at WHERE, and call HANDLER when
b65d95c5 145 it is hit. HANDLER should return 1 if the breakpoint
811f8301
YQ
146 should be deleted, 0 otherwise. The type of the created
147 breakpoint is other_breakpoint. */
611cb4a5 148
414a389f
PA
149struct breakpoint *set_breakpoint_at (CORE_ADDR where,
150 int (*handler) (CORE_ADDR));
611cb4a5 151
219f2f23
PA
152/* Delete a breakpoint. */
153
154int delete_breakpoint (struct breakpoint *bkpt);
155
3b9a79ef 156/* Set a single-step breakpoint at STOP_AT for thread represented by
bec903c9 157 PTID. */
d50171e4 158
3b9a79ef 159void set_single_step_breakpoint (CORE_ADDR stop_at, ptid_t ptid);
d50171e4 160
3b9a79ef 161/* Delete all single-step breakpoints of THREAD. */
611cb4a5 162
3b9a79ef 163void delete_single_step_breakpoints (struct thread_info *thread);
611cb4a5 164
3b9a79ef 165/* Reinsert all single-step breakpoints of THREAD. */
2e7b624b 166
3b9a79ef 167void reinsert_single_step_breakpoints (struct thread_info *thread);
2e7b624b 168
3b9a79ef
YQ
169/* Uninsert all single-step breakpoints of THREAD. This still leaves
170 the single-step breakpoints in the table. */
2e7b624b 171
3b9a79ef 172void uninsert_single_step_breakpoints (struct thread_info *thread);
2e7b624b 173
d50171e4
PA
174/* Reinsert breakpoints at WHERE (and change their status to
175 inserted). */
611cb4a5 176
d50171e4 177void reinsert_breakpoints_at (CORE_ADDR where);
611cb4a5 178
3b9a79ef 179/* The THREAD has single-step breakpoints or not. */
f79b145d 180
3b9a79ef 181int has_single_step_breakpoints (struct thread_info *thread);
f79b145d 182
d50171e4
PA
183/* Uninsert breakpoints at WHERE (and change their status to
184 uninserted). This still leaves the breakpoints in the table. */
611cb4a5 185
d50171e4 186void uninsert_breakpoints_at (CORE_ADDR where);
611cb4a5 187
0fb4aa4b
PA
188/* Reinsert all breakpoints of the current process (and change their
189 status to inserted). */
190
191void reinsert_all_breakpoints (void);
192
193/* Uninsert all breakpoints of the current process (and change their
194 status to uninserted). This still leaves the breakpoints in the
195 table. */
196
197void uninsert_all_breakpoints (void);
198
611cb4a5
DJ
199/* See if any breakpoint claims ownership of STOP_PC. Call the handler for
200 the breakpoint, if found. */
201
d50171e4 202void check_breakpoints (CORE_ADDR stop_pc);
611cb4a5
DJ
203
204/* See if any breakpoints shadow the target memory area from MEM_ADDR
205 to MEM_ADDR + MEM_LEN. Update the data already read from the target
206 (in BUF) if necessary. */
207
f450004a 208void check_mem_read (CORE_ADDR mem_addr, unsigned char *buf, int mem_len);
611cb4a5
DJ
209
210/* See if any breakpoints shadow the target memory area from MEM_ADDR
211 to MEM_ADDR + MEM_LEN. Update the data to be written to the target
b9fd1791
PA
212 (in BUF, a copy of MYADDR on entry) if necessary, as well as the
213 original data for any breakpoints. */
611cb4a5 214
b9fd1791
PA
215void check_mem_write (CORE_ADDR mem_addr,
216 unsigned char *buf, const unsigned char *myaddr, int mem_len);
611cb4a5 217
ae13219e
DJ
218/* Delete all breakpoints. */
219
220void delete_all_breakpoints (void);
221
f9e39928
PA
222/* Clear the "inserted" flag in all breakpoints of PROC. */
223
224void mark_breakpoints_out (struct process_info *proc);
225
95954743
PA
226/* Delete all breakpoints, but do not try to un-insert them from the
227 inferior. */
228
229void free_all_breakpoints (struct process_info *proc);
230
d3bbe7a0
PA
231/* Check if breakpoints still seem to be inserted in the inferior. */
232
233void validate_breakpoints (void);
234
fa593d66
PA
235/* Insert a fast tracepoint jump at WHERE, using instruction INSN, of
236 LENGTH bytes. */
237
238struct fast_tracepoint_jump *set_fast_tracepoint_jump (CORE_ADDR where,
239 unsigned char *insn,
240 ULONGEST length);
241
5c73ff4e
YQ
242/* Increment reference counter of JP. */
243void inc_ref_fast_tracepoint_jump (struct fast_tracepoint_jump *jp);
244
fa593d66
PA
245/* Delete fast tracepoint jump TODEL from our tables, and uninsert if
246 from memory. */
247
248int delete_fast_tracepoint_jump (struct fast_tracepoint_jump *todel);
249
250/* Returns true if there's fast tracepoint jump set at WHERE. */
251
252int fast_tracepoint_jump_here (CORE_ADDR);
253
254/* Uninsert fast tracepoint jumps at WHERE (and change their status to
255 uninserted). This still leaves the tracepoints in the table. */
256
257void uninsert_fast_tracepoint_jumps_at (CORE_ADDR pc);
258
259/* Reinsert fast tracepoint jumps at WHERE (and change their status to
260 inserted). */
261
262void reinsert_fast_tracepoint_jumps_at (CORE_ADDR where);
263
802e8e6d
PA
264/* Insert a memory breakpoint. */
265
266int insert_memory_breakpoint (struct raw_breakpoint *bp);
267
268/* Remove a previously inserted memory breakpoint. */
269
270int remove_memory_breakpoint (struct raw_breakpoint *bp);
271
63c40ec7
YQ
272/* Create a new breakpoint list in CHILD_THREAD's process that is a
273 copy of breakpoint list in PARENT_THREAD's process. */
ddcbc397 274
63c40ec7
YQ
275void clone_all_breakpoints (struct thread_info *child_thread,
276 const struct thread_info *parent_thread);
ddcbc397 277
611cb4a5 278#endif /* MEM_BREAK_H */
This page took 1.360531 seconds and 4 git commands to generate.