convert to_watchpoint_addr_within_range
[deliverable/binutils-gdb.git] / gdb / target-delegates.c
1 /* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */
2 /* vi:set ro: */
3
4 /* To regenerate this file, run:*/
5 /* make-target-delegates target.h > target-delegates.c */
6 static void
7 delegate_attach (struct target_ops *self, char *arg1, int arg2)
8 {
9 self = self->beneath;
10 self->to_attach (self, arg1, arg2);
11 }
12
13 static void
14 delegate_post_attach (struct target_ops *self, int arg1)
15 {
16 self = self->beneath;
17 self->to_post_attach (self, arg1);
18 }
19
20 static void
21 tdefault_post_attach (struct target_ops *self, int arg1)
22 {
23 }
24
25 static void
26 delegate_detach (struct target_ops *self, const char *arg1, int arg2)
27 {
28 self = self->beneath;
29 self->to_detach (self, arg1, arg2);
30 }
31
32 static void
33 tdefault_detach (struct target_ops *self, const char *arg1, int arg2)
34 {
35 }
36
37 static void
38 delegate_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
39 {
40 self = self->beneath;
41 self->to_resume (self, arg1, arg2, arg3);
42 }
43
44 static void
45 tdefault_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
46 {
47 noprocess ();
48 }
49
50 static ptid_t
51 delegate_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
52 {
53 self = self->beneath;
54 return self->to_wait (self, arg1, arg2, arg3);
55 }
56
57 static ptid_t
58 tdefault_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
59 {
60 noprocess ();
61 }
62
63 static void
64 delegate_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
65 {
66 self = self->beneath;
67 self->to_store_registers (self, arg1, arg2);
68 }
69
70 static void
71 tdefault_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
72 {
73 noprocess ();
74 }
75
76 static void
77 delegate_prepare_to_store (struct target_ops *self, struct regcache *arg1)
78 {
79 self = self->beneath;
80 self->to_prepare_to_store (self, arg1);
81 }
82
83 static void
84 tdefault_prepare_to_store (struct target_ops *self, struct regcache *arg1)
85 {
86 noprocess ();
87 }
88
89 static void
90 delegate_files_info (struct target_ops *self)
91 {
92 self = self->beneath;
93 self->to_files_info (self);
94 }
95
96 static void
97 tdefault_files_info (struct target_ops *self)
98 {
99 }
100
101 static int
102 delegate_insert_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
103 {
104 self = self->beneath;
105 return self->to_insert_breakpoint (self, arg1, arg2);
106 }
107
108 static int
109 delegate_remove_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
110 {
111 self = self->beneath;
112 return self->to_remove_breakpoint (self, arg1, arg2);
113 }
114
115 static int
116 delegate_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
117 {
118 self = self->beneath;
119 return self->to_can_use_hw_breakpoint (self, arg1, arg2, arg3);
120 }
121
122 static int
123 tdefault_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
124 {
125 return 0;
126 }
127
128 static int
129 delegate_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
130 {
131 self = self->beneath;
132 return self->to_insert_hw_breakpoint (self, arg1, arg2);
133 }
134
135 static int
136 tdefault_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
137 {
138 return -1;
139 }
140
141 static int
142 delegate_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
143 {
144 self = self->beneath;
145 return self->to_remove_hw_breakpoint (self, arg1, arg2);
146 }
147
148 static int
149 tdefault_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
150 {
151 return -1;
152 }
153
154 static int
155 delegate_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
156 {
157 self = self->beneath;
158 return self->to_remove_watchpoint (self, arg1, arg2, arg3, arg4);
159 }
160
161 static int
162 tdefault_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
163 {
164 return -1;
165 }
166
167 static int
168 delegate_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
169 {
170 self = self->beneath;
171 return self->to_insert_watchpoint (self, arg1, arg2, arg3, arg4);
172 }
173
174 static int
175 tdefault_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
176 {
177 return -1;
178 }
179
180 static int
181 delegate_stopped_by_watchpoint (struct target_ops *self)
182 {
183 self = self->beneath;
184 return self->to_stopped_by_watchpoint (self);
185 }
186
187 static int
188 tdefault_stopped_by_watchpoint (struct target_ops *self)
189 {
190 return 0;
191 }
192
193 static int
194 delegate_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
195 {
196 self = self->beneath;
197 return self->to_stopped_data_address (self, arg1);
198 }
199
200 static int
201 tdefault_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
202 {
203 return 0;
204 }
205
206 static int
207 delegate_watchpoint_addr_within_range (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
208 {
209 self = self->beneath;
210 return self->to_watchpoint_addr_within_range (self, arg1, arg2, arg3);
211 }
212
213 static void
214 delegate_rcmd (struct target_ops *self, char *arg1, struct ui_file *arg2)
215 {
216 self = self->beneath;
217 self->to_rcmd (self, arg1, arg2);
218 }
219
220 static int
221 delegate_can_async_p (struct target_ops *self)
222 {
223 self = self->beneath;
224 return self->to_can_async_p (self);
225 }
226
227 static int
228 delegate_is_async_p (struct target_ops *self)
229 {
230 self = self->beneath;
231 return self->to_is_async_p (self);
232 }
233
234 static void
235 delegate_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
236 {
237 self = self->beneath;
238 self->to_async (self, arg1, arg2);
239 }
240
241 static void
242 tdefault_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
243 {
244 tcomplain ();
245 }
246
247 static enum target_xfer_status
248 delegate_xfer_partial (struct target_ops *self, enum target_object arg1, const char *arg2, gdb_byte *arg3, const gdb_byte *arg4, ULONGEST arg5, ULONGEST arg6, ULONGEST *arg7)
249 {
250 self = self->beneath;
251 return self->to_xfer_partial (self, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
252 }
253
254 static enum target_xfer_status
255 tdefault_xfer_partial (struct target_ops *self, enum target_object arg1, const char *arg2, gdb_byte *arg3, const gdb_byte *arg4, ULONGEST arg5, ULONGEST arg6, ULONGEST *arg7)
256 {
257 return TARGET_XFER_E_IO;
258 }
259
260 static int
261 delegate_supports_btrace (struct target_ops *self)
262 {
263 self = self->beneath;
264 return self->to_supports_btrace (self);
265 }
266
267 static int
268 tdefault_supports_btrace (struct target_ops *self)
269 {
270 return 0;
271 }
272
273 static void
274 install_delegators (struct target_ops *ops)
275 {
276 if (ops->to_attach == NULL)
277 ops->to_attach = delegate_attach;
278 if (ops->to_post_attach == NULL)
279 ops->to_post_attach = delegate_post_attach;
280 if (ops->to_detach == NULL)
281 ops->to_detach = delegate_detach;
282 if (ops->to_resume == NULL)
283 ops->to_resume = delegate_resume;
284 if (ops->to_wait == NULL)
285 ops->to_wait = delegate_wait;
286 if (ops->to_store_registers == NULL)
287 ops->to_store_registers = delegate_store_registers;
288 if (ops->to_prepare_to_store == NULL)
289 ops->to_prepare_to_store = delegate_prepare_to_store;
290 if (ops->to_files_info == NULL)
291 ops->to_files_info = delegate_files_info;
292 if (ops->to_insert_breakpoint == NULL)
293 ops->to_insert_breakpoint = delegate_insert_breakpoint;
294 if (ops->to_remove_breakpoint == NULL)
295 ops->to_remove_breakpoint = delegate_remove_breakpoint;
296 if (ops->to_can_use_hw_breakpoint == NULL)
297 ops->to_can_use_hw_breakpoint = delegate_can_use_hw_breakpoint;
298 if (ops->to_insert_hw_breakpoint == NULL)
299 ops->to_insert_hw_breakpoint = delegate_insert_hw_breakpoint;
300 if (ops->to_remove_hw_breakpoint == NULL)
301 ops->to_remove_hw_breakpoint = delegate_remove_hw_breakpoint;
302 if (ops->to_remove_watchpoint == NULL)
303 ops->to_remove_watchpoint = delegate_remove_watchpoint;
304 if (ops->to_insert_watchpoint == NULL)
305 ops->to_insert_watchpoint = delegate_insert_watchpoint;
306 if (ops->to_stopped_by_watchpoint == NULL)
307 ops->to_stopped_by_watchpoint = delegate_stopped_by_watchpoint;
308 if (ops->to_stopped_data_address == NULL)
309 ops->to_stopped_data_address = delegate_stopped_data_address;
310 if (ops->to_watchpoint_addr_within_range == NULL)
311 ops->to_watchpoint_addr_within_range = delegate_watchpoint_addr_within_range;
312 if (ops->to_rcmd == NULL)
313 ops->to_rcmd = delegate_rcmd;
314 if (ops->to_can_async_p == NULL)
315 ops->to_can_async_p = delegate_can_async_p;
316 if (ops->to_is_async_p == NULL)
317 ops->to_is_async_p = delegate_is_async_p;
318 if (ops->to_async == NULL)
319 ops->to_async = delegate_async;
320 if (ops->to_xfer_partial == NULL)
321 ops->to_xfer_partial = delegate_xfer_partial;
322 if (ops->to_supports_btrace == NULL)
323 ops->to_supports_btrace = delegate_supports_btrace;
324 }
325
326 static void
327 install_dummy_methods (struct target_ops *ops)
328 {
329 ops->to_attach = find_default_attach;
330 ops->to_post_attach = tdefault_post_attach;
331 ops->to_detach = tdefault_detach;
332 ops->to_resume = tdefault_resume;
333 ops->to_wait = tdefault_wait;
334 ops->to_store_registers = tdefault_store_registers;
335 ops->to_prepare_to_store = tdefault_prepare_to_store;
336 ops->to_files_info = tdefault_files_info;
337 ops->to_insert_breakpoint = memory_insert_breakpoint;
338 ops->to_remove_breakpoint = memory_remove_breakpoint;
339 ops->to_can_use_hw_breakpoint = tdefault_can_use_hw_breakpoint;
340 ops->to_insert_hw_breakpoint = tdefault_insert_hw_breakpoint;
341 ops->to_remove_hw_breakpoint = tdefault_remove_hw_breakpoint;
342 ops->to_remove_watchpoint = tdefault_remove_watchpoint;
343 ops->to_insert_watchpoint = tdefault_insert_watchpoint;
344 ops->to_stopped_by_watchpoint = tdefault_stopped_by_watchpoint;
345 ops->to_stopped_data_address = tdefault_stopped_data_address;
346 ops->to_watchpoint_addr_within_range = default_watchpoint_addr_within_range;
347 ops->to_rcmd = default_rcmd;
348 ops->to_can_async_p = find_default_can_async_p;
349 ops->to_is_async_p = find_default_is_async_p;
350 ops->to_async = tdefault_async;
351 ops->to_xfer_partial = tdefault_xfer_partial;
352 ops->to_supports_btrace = tdefault_supports_btrace;
353 }
This page took 0.037347 seconds and 4 git commands to generate.