convert to_has_exited
[deliverable/binutils-gdb.git] / gdb / target-delegates.c
CommitLineData
1101cb7b
TT
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 */
e9a29200
TT
6static void
7delegate_attach (struct target_ops *self, char *arg1, int arg2)
8{
9 self = self->beneath;
10 self->to_attach (self, arg1, arg2);
11}
12
bebd3233
TT
13static void
14delegate_post_attach (struct target_ops *self, int arg1)
15{
16 self = self->beneath;
17 self->to_post_attach (self, arg1);
18}
19
20static void
21tdefault_post_attach (struct target_ops *self, int arg1)
22{
23}
24
09da0d0a
TT
25static void
26delegate_detach (struct target_ops *self, const char *arg1, int arg2)
27{
28 self = self->beneath;
29 self->to_detach (self, arg1, arg2);
30}
31
32static void
33tdefault_detach (struct target_ops *self, const char *arg1, int arg2)
34{
35}
36
6b84065d
TT
37static void
38delegate_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
44static void
45tdefault_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
46{
47 noprocess ();
48}
49
50static ptid_t
51delegate_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
57static ptid_t
58tdefault_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
59{
60 noprocess ();
61}
62
63static void
64delegate_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
70static void
71tdefault_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
72{
73 noprocess ();
74}
75
6c628163
TT
76static void
77delegate_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
83static void
84tdefault_prepare_to_store (struct target_ops *self, struct regcache *arg1)
85{
86 noprocess ();
87}
88
f86e59b2
TT
89static void
90delegate_files_info (struct target_ops *self)
91{
92 self = self->beneath;
93 self->to_files_info (self);
94}
95
96static void
97tdefault_files_info (struct target_ops *self)
98{
99}
100
6b84065d
TT
101static int
102delegate_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
108static int
109delegate_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
52b51d06
TT
115static int
116delegate_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
122static int
123tdefault_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
124{
125 return 0;
126}
127
61b371f9
TT
128static int
129delegate_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
135static int
136tdefault_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
137{
138 return -1;
139}
140
418dabac
TT
141static int
142delegate_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
148static int
149tdefault_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
150{
151 return -1;
152}
153
61dd109f
TT
154static int
155delegate_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
161static int
162tdefault_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
163{
164 return -1;
165}
166
016facd4
TT
167static int
168delegate_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
174static int
175tdefault_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
176{
177 return -1;
178}
179
6b84065d
TT
180static int
181delegate_stopped_by_watchpoint (struct target_ops *self)
182{
183 self = self->beneath;
184 return self->to_stopped_by_watchpoint (self);
185}
186
187static int
188tdefault_stopped_by_watchpoint (struct target_ops *self)
189{
190 return 0;
191}
192
193static int
194delegate_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
200static int
201tdefault_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
202{
203 return 0;
204}
205
65f160a9
TT
206static int
207delegate_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
d03655e4
TT
213static int
214delegate_region_ok_for_hw_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2)
215{
216 self = self->beneath;
217 return self->to_region_ok_for_hw_watchpoint (self, arg1, arg2);
218}
219
77cdffe9
TT
220static int
221delegate_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
222{
223 self = self->beneath;
224 return self->to_can_accel_watchpoint_condition (self, arg1, arg2, arg3, arg4);
225}
226
227static int
228tdefault_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
229{
230 return 0;
231}
232
0343661d
TT
233static void
234delegate_terminal_init (struct target_ops *self)
235{
236 self = self->beneath;
237 self->to_terminal_init (self);
238}
239
240static void
241tdefault_terminal_init (struct target_ops *self)
242{
243}
244
ddeaacc9
TT
245static void
246delegate_terminal_inferior (struct target_ops *self)
247{
248 self = self->beneath;
249 self->to_terminal_inferior (self);
250}
251
252static void
253tdefault_terminal_inferior (struct target_ops *self)
254{
255}
256
74fcbef9
TT
257static void
258delegate_terminal_ours_for_output (struct target_ops *self)
259{
260 self = self->beneath;
261 self->to_terminal_ours_for_output (self);
262}
263
264static void
265tdefault_terminal_ours_for_output (struct target_ops *self)
266{
267}
268
e4a733f1
TT
269static void
270delegate_terminal_ours (struct target_ops *self)
271{
272 self = self->beneath;
273 self->to_terminal_ours (self);
274}
275
276static void
277tdefault_terminal_ours (struct target_ops *self)
278{
279}
280
c6ea8f79
TT
281static void
282delegate_terminal_save_ours (struct target_ops *self)
283{
284 self = self->beneath;
285 self->to_terminal_save_ours (self);
286}
287
288static void
289tdefault_terminal_save_ours (struct target_ops *self)
290{
291}
292
e19e919f
TT
293static void
294delegate_terminal_info (struct target_ops *self, const char *arg1, int arg2)
295{
296 self = self->beneath;
297 self->to_terminal_info (self, arg1, arg2);
298}
299
7634da87
TT
300static void
301delegate_load (struct target_ops *self, char *arg1, int arg2)
302{
303 self = self->beneath;
304 self->to_load (self, arg1, arg2);
305}
306
307static void
308tdefault_load (struct target_ops *self, char *arg1, int arg2)
309{
310 tcomplain ();
311}
312
340ba4bf
TT
313static void
314delegate_post_startup_inferior (struct target_ops *self, ptid_t arg1)
315{
316 self = self->beneath;
317 self->to_post_startup_inferior (self, arg1);
318}
319
320static void
321tdefault_post_startup_inferior (struct target_ops *self, ptid_t arg1)
322{
323}
324
5958ebeb
TT
325static int
326delegate_insert_fork_catchpoint (struct target_ops *self, int arg1)
327{
328 self = self->beneath;
329 return self->to_insert_fork_catchpoint (self, arg1);
330}
331
332static int
333tdefault_insert_fork_catchpoint (struct target_ops *self, int arg1)
334{
335 return 1;
336}
337
e1a21fb7
TT
338static int
339delegate_remove_fork_catchpoint (struct target_ops *self, int arg1)
340{
341 self = self->beneath;
342 return self->to_remove_fork_catchpoint (self, arg1);
343}
344
345static int
346tdefault_remove_fork_catchpoint (struct target_ops *self, int arg1)
347{
348 return 1;
349}
350
7e18a8dc
TT
351static int
352delegate_insert_vfork_catchpoint (struct target_ops *self, int arg1)
353{
354 self = self->beneath;
355 return self->to_insert_vfork_catchpoint (self, arg1);
356}
357
358static int
359tdefault_insert_vfork_catchpoint (struct target_ops *self, int arg1)
360{
361 return 1;
362}
363
95c3375e
TT
364static int
365delegate_remove_vfork_catchpoint (struct target_ops *self, int arg1)
366{
367 self = self->beneath;
368 return self->to_remove_vfork_catchpoint (self, arg1);
369}
370
371static int
372tdefault_remove_vfork_catchpoint (struct target_ops *self, int arg1)
373{
374 return 1;
375}
376
62f64d7a
TT
377static int
378delegate_insert_exec_catchpoint (struct target_ops *self, int arg1)
379{
380 self = self->beneath;
381 return self->to_insert_exec_catchpoint (self, arg1);
382}
383
384static int
385tdefault_insert_exec_catchpoint (struct target_ops *self, int arg1)
386{
387 return 1;
388}
389
cda0f38c
TT
390static int
391delegate_remove_exec_catchpoint (struct target_ops *self, int arg1)
392{
393 self = self->beneath;
394 return self->to_remove_exec_catchpoint (self, arg1);
395}
396
397static int
398tdefault_remove_exec_catchpoint (struct target_ops *self, int arg1)
399{
400 return 1;
401}
402
6a9fa051
TT
403static int
404delegate_set_syscall_catchpoint (struct target_ops *self, int arg1, int arg2, int arg3, int arg4, int *arg5)
405{
406 self = self->beneath;
407 return self->to_set_syscall_catchpoint (self, arg1, arg2, arg3, arg4, arg5);
408}
409
410static int
411tdefault_set_syscall_catchpoint (struct target_ops *self, int arg1, int arg2, int arg3, int arg4, int *arg5)
412{
413 return 1;
414}
415
0db88c1d
TT
416static int
417delegate_has_exited (struct target_ops *self, int arg1, int arg2, int *arg3)
418{
419 self = self->beneath;
420 return self->to_has_exited (self, arg1, arg2, arg3);
421}
422
423static int
424tdefault_has_exited (struct target_ops *self, int arg1, int arg2, int *arg3)
425{
426 return 0;
427}
428
a53f3625
TT
429static void
430delegate_rcmd (struct target_ops *self, char *arg1, struct ui_file *arg2)
431{
432 self = self->beneath;
433 self->to_rcmd (self, arg1, arg2);
434}
435
6b84065d
TT
436static int
437delegate_can_async_p (struct target_ops *self)
438{
439 self = self->beneath;
440 return self->to_can_async_p (self);
441}
442
443static int
444delegate_is_async_p (struct target_ops *self)
445{
446 self = self->beneath;
447 return self->to_is_async_p (self);
448}
449
450static void
451delegate_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
452{
453 self = self->beneath;
454 self->to_async (self, arg1, arg2);
455}
456
457static void
458tdefault_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
459{
460 tcomplain ();
461}
462
463static enum target_xfer_status
464delegate_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)
465{
466 self = self->beneath;
467 return self->to_xfer_partial (self, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
468}
469
470static enum target_xfer_status
471tdefault_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)
472{
473 return TARGET_XFER_E_IO;
474}
475
46917d26
TT
476static int
477delegate_supports_btrace (struct target_ops *self)
478{
479 self = self->beneath;
480 return self->to_supports_btrace (self);
481}
482
483static int
484tdefault_supports_btrace (struct target_ops *self)
485{
486 return 0;
487}
488
1101cb7b
TT
489static void
490install_delegators (struct target_ops *ops)
491{
e9a29200
TT
492 if (ops->to_attach == NULL)
493 ops->to_attach = delegate_attach;
bebd3233
TT
494 if (ops->to_post_attach == NULL)
495 ops->to_post_attach = delegate_post_attach;
09da0d0a
TT
496 if (ops->to_detach == NULL)
497 ops->to_detach = delegate_detach;
6b84065d
TT
498 if (ops->to_resume == NULL)
499 ops->to_resume = delegate_resume;
500 if (ops->to_wait == NULL)
501 ops->to_wait = delegate_wait;
502 if (ops->to_store_registers == NULL)
503 ops->to_store_registers = delegate_store_registers;
6c628163
TT
504 if (ops->to_prepare_to_store == NULL)
505 ops->to_prepare_to_store = delegate_prepare_to_store;
f86e59b2
TT
506 if (ops->to_files_info == NULL)
507 ops->to_files_info = delegate_files_info;
6b84065d
TT
508 if (ops->to_insert_breakpoint == NULL)
509 ops->to_insert_breakpoint = delegate_insert_breakpoint;
510 if (ops->to_remove_breakpoint == NULL)
511 ops->to_remove_breakpoint = delegate_remove_breakpoint;
52b51d06
TT
512 if (ops->to_can_use_hw_breakpoint == NULL)
513 ops->to_can_use_hw_breakpoint = delegate_can_use_hw_breakpoint;
61b371f9
TT
514 if (ops->to_insert_hw_breakpoint == NULL)
515 ops->to_insert_hw_breakpoint = delegate_insert_hw_breakpoint;
418dabac
TT
516 if (ops->to_remove_hw_breakpoint == NULL)
517 ops->to_remove_hw_breakpoint = delegate_remove_hw_breakpoint;
61dd109f
TT
518 if (ops->to_remove_watchpoint == NULL)
519 ops->to_remove_watchpoint = delegate_remove_watchpoint;
016facd4
TT
520 if (ops->to_insert_watchpoint == NULL)
521 ops->to_insert_watchpoint = delegate_insert_watchpoint;
6b84065d
TT
522 if (ops->to_stopped_by_watchpoint == NULL)
523 ops->to_stopped_by_watchpoint = delegate_stopped_by_watchpoint;
524 if (ops->to_stopped_data_address == NULL)
525 ops->to_stopped_data_address = delegate_stopped_data_address;
65f160a9
TT
526 if (ops->to_watchpoint_addr_within_range == NULL)
527 ops->to_watchpoint_addr_within_range = delegate_watchpoint_addr_within_range;
d03655e4
TT
528 if (ops->to_region_ok_for_hw_watchpoint == NULL)
529 ops->to_region_ok_for_hw_watchpoint = delegate_region_ok_for_hw_watchpoint;
77cdffe9
TT
530 if (ops->to_can_accel_watchpoint_condition == NULL)
531 ops->to_can_accel_watchpoint_condition = delegate_can_accel_watchpoint_condition;
0343661d
TT
532 if (ops->to_terminal_init == NULL)
533 ops->to_terminal_init = delegate_terminal_init;
ddeaacc9
TT
534 if (ops->to_terminal_inferior == NULL)
535 ops->to_terminal_inferior = delegate_terminal_inferior;
74fcbef9
TT
536 if (ops->to_terminal_ours_for_output == NULL)
537 ops->to_terminal_ours_for_output = delegate_terminal_ours_for_output;
e4a733f1
TT
538 if (ops->to_terminal_ours == NULL)
539 ops->to_terminal_ours = delegate_terminal_ours;
c6ea8f79
TT
540 if (ops->to_terminal_save_ours == NULL)
541 ops->to_terminal_save_ours = delegate_terminal_save_ours;
e19e919f
TT
542 if (ops->to_terminal_info == NULL)
543 ops->to_terminal_info = delegate_terminal_info;
7634da87
TT
544 if (ops->to_load == NULL)
545 ops->to_load = delegate_load;
340ba4bf
TT
546 if (ops->to_post_startup_inferior == NULL)
547 ops->to_post_startup_inferior = delegate_post_startup_inferior;
5958ebeb
TT
548 if (ops->to_insert_fork_catchpoint == NULL)
549 ops->to_insert_fork_catchpoint = delegate_insert_fork_catchpoint;
e1a21fb7
TT
550 if (ops->to_remove_fork_catchpoint == NULL)
551 ops->to_remove_fork_catchpoint = delegate_remove_fork_catchpoint;
7e18a8dc
TT
552 if (ops->to_insert_vfork_catchpoint == NULL)
553 ops->to_insert_vfork_catchpoint = delegate_insert_vfork_catchpoint;
95c3375e
TT
554 if (ops->to_remove_vfork_catchpoint == NULL)
555 ops->to_remove_vfork_catchpoint = delegate_remove_vfork_catchpoint;
62f64d7a
TT
556 if (ops->to_insert_exec_catchpoint == NULL)
557 ops->to_insert_exec_catchpoint = delegate_insert_exec_catchpoint;
cda0f38c
TT
558 if (ops->to_remove_exec_catchpoint == NULL)
559 ops->to_remove_exec_catchpoint = delegate_remove_exec_catchpoint;
6a9fa051
TT
560 if (ops->to_set_syscall_catchpoint == NULL)
561 ops->to_set_syscall_catchpoint = delegate_set_syscall_catchpoint;
0db88c1d
TT
562 if (ops->to_has_exited == NULL)
563 ops->to_has_exited = delegate_has_exited;
a53f3625
TT
564 if (ops->to_rcmd == NULL)
565 ops->to_rcmd = delegate_rcmd;
6b84065d
TT
566 if (ops->to_can_async_p == NULL)
567 ops->to_can_async_p = delegate_can_async_p;
568 if (ops->to_is_async_p == NULL)
569 ops->to_is_async_p = delegate_is_async_p;
570 if (ops->to_async == NULL)
571 ops->to_async = delegate_async;
572 if (ops->to_xfer_partial == NULL)
573 ops->to_xfer_partial = delegate_xfer_partial;
46917d26
TT
574 if (ops->to_supports_btrace == NULL)
575 ops->to_supports_btrace = delegate_supports_btrace;
1101cb7b
TT
576}
577
578static void
579install_dummy_methods (struct target_ops *ops)
580{
e9a29200 581 ops->to_attach = find_default_attach;
bebd3233 582 ops->to_post_attach = tdefault_post_attach;
09da0d0a 583 ops->to_detach = tdefault_detach;
6b84065d
TT
584 ops->to_resume = tdefault_resume;
585 ops->to_wait = tdefault_wait;
586 ops->to_store_registers = tdefault_store_registers;
6c628163 587 ops->to_prepare_to_store = tdefault_prepare_to_store;
f86e59b2 588 ops->to_files_info = tdefault_files_info;
6b84065d
TT
589 ops->to_insert_breakpoint = memory_insert_breakpoint;
590 ops->to_remove_breakpoint = memory_remove_breakpoint;
52b51d06 591 ops->to_can_use_hw_breakpoint = tdefault_can_use_hw_breakpoint;
61b371f9 592 ops->to_insert_hw_breakpoint = tdefault_insert_hw_breakpoint;
418dabac 593 ops->to_remove_hw_breakpoint = tdefault_remove_hw_breakpoint;
61dd109f 594 ops->to_remove_watchpoint = tdefault_remove_watchpoint;
016facd4 595 ops->to_insert_watchpoint = tdefault_insert_watchpoint;
6b84065d
TT
596 ops->to_stopped_by_watchpoint = tdefault_stopped_by_watchpoint;
597 ops->to_stopped_data_address = tdefault_stopped_data_address;
65f160a9 598 ops->to_watchpoint_addr_within_range = default_watchpoint_addr_within_range;
d03655e4 599 ops->to_region_ok_for_hw_watchpoint = default_region_ok_for_hw_watchpoint;
77cdffe9 600 ops->to_can_accel_watchpoint_condition = tdefault_can_accel_watchpoint_condition;
0343661d 601 ops->to_terminal_init = tdefault_terminal_init;
ddeaacc9 602 ops->to_terminal_inferior = tdefault_terminal_inferior;
74fcbef9 603 ops->to_terminal_ours_for_output = tdefault_terminal_ours_for_output;
e4a733f1 604 ops->to_terminal_ours = tdefault_terminal_ours;
c6ea8f79 605 ops->to_terminal_save_ours = tdefault_terminal_save_ours;
e19e919f 606 ops->to_terminal_info = default_terminal_info;
7634da87 607 ops->to_load = tdefault_load;
340ba4bf 608 ops->to_post_startup_inferior = tdefault_post_startup_inferior;
5958ebeb 609 ops->to_insert_fork_catchpoint = tdefault_insert_fork_catchpoint;
e1a21fb7 610 ops->to_remove_fork_catchpoint = tdefault_remove_fork_catchpoint;
7e18a8dc 611 ops->to_insert_vfork_catchpoint = tdefault_insert_vfork_catchpoint;
95c3375e 612 ops->to_remove_vfork_catchpoint = tdefault_remove_vfork_catchpoint;
62f64d7a 613 ops->to_insert_exec_catchpoint = tdefault_insert_exec_catchpoint;
cda0f38c 614 ops->to_remove_exec_catchpoint = tdefault_remove_exec_catchpoint;
6a9fa051 615 ops->to_set_syscall_catchpoint = tdefault_set_syscall_catchpoint;
0db88c1d 616 ops->to_has_exited = tdefault_has_exited;
a53f3625 617 ops->to_rcmd = default_rcmd;
6b84065d
TT
618 ops->to_can_async_p = find_default_can_async_p;
619 ops->to_is_async_p = find_default_is_async_p;
620 ops->to_async = tdefault_async;
621 ops->to_xfer_partial = tdefault_xfer_partial;
46917d26 622 ops->to_supports_btrace = tdefault_supports_btrace;
1101cb7b 623}
This page took 0.058801 seconds and 4 git commands to generate.