rewrite make-target-delegates matching code
[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 */
bebd3233
TT
6static void
7delegate_post_attach (struct target_ops *self, int arg1)
8{
9 self = self->beneath;
10 self->to_post_attach (self, arg1);
11}
12
13static void
14tdefault_post_attach (struct target_ops *self, int arg1)
15{
16}
17
09da0d0a
TT
18static void
19delegate_detach (struct target_ops *self, const char *arg1, int arg2)
20{
21 self = self->beneath;
22 self->to_detach (self, arg1, arg2);
23}
24
25static void
26tdefault_detach (struct target_ops *self, const char *arg1, int arg2)
27{
28}
29
86a0854a 30static void
fee354ee 31delegate_disconnect (struct target_ops *self, const char *arg1, int arg2)
86a0854a
TT
32{
33 self = self->beneath;
34 self->to_disconnect (self, arg1, arg2);
35}
36
37static void
fee354ee 38tdefault_disconnect (struct target_ops *self, const char *arg1, int arg2)
86a0854a
TT
39{
40 tcomplain ();
41}
42
6b84065d
TT
43static void
44delegate_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
45{
46 self = self->beneath;
47 self->to_resume (self, arg1, arg2, arg3);
48}
49
50static void
51tdefault_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
52{
53 noprocess ();
54}
55
56static ptid_t
57delegate_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
58{
59 self = self->beneath;
60 return self->to_wait (self, arg1, arg2, arg3);
61}
62
63static ptid_t
64tdefault_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
65{
66 noprocess ();
67}
68
ad5989bd
TT
69static void
70delegate_fetch_registers (struct target_ops *self, struct regcache *arg1, int arg2)
71{
72 self = self->beneath;
73 self->to_fetch_registers (self, arg1, arg2);
74}
75
76static void
77tdefault_fetch_registers (struct target_ops *self, struct regcache *arg1, int arg2)
78{
79}
80
6b84065d
TT
81static void
82delegate_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
83{
84 self = self->beneath;
85 self->to_store_registers (self, arg1, arg2);
86}
87
88static void
89tdefault_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
90{
91 noprocess ();
92}
93
6c628163
TT
94static void
95delegate_prepare_to_store (struct target_ops *self, struct regcache *arg1)
96{
97 self = self->beneath;
98 self->to_prepare_to_store (self, arg1);
99}
100
101static void
102tdefault_prepare_to_store (struct target_ops *self, struct regcache *arg1)
103{
104 noprocess ();
105}
106
f86e59b2
TT
107static void
108delegate_files_info (struct target_ops *self)
109{
110 self = self->beneath;
111 self->to_files_info (self);
112}
113
114static void
115tdefault_files_info (struct target_ops *self)
116{
117}
118
6b84065d
TT
119static int
120delegate_insert_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
121{
122 self = self->beneath;
123 return self->to_insert_breakpoint (self, arg1, arg2);
124}
125
126static int
127delegate_remove_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
128{
129 self = self->beneath;
130 return self->to_remove_breakpoint (self, arg1, arg2);
131}
132
52b51d06
TT
133static int
134delegate_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
135{
136 self = self->beneath;
137 return self->to_can_use_hw_breakpoint (self, arg1, arg2, arg3);
138}
139
140static int
141tdefault_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
142{
143 return 0;
144}
145
a134316b
TT
146static int
147delegate_ranged_break_num_registers (struct target_ops *self)
148{
149 self = self->beneath;
150 return self->to_ranged_break_num_registers (self);
151}
152
153static int
154tdefault_ranged_break_num_registers (struct target_ops *self)
155{
156 return -1;
157}
158
61b371f9
TT
159static int
160delegate_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
161{
162 self = self->beneath;
163 return self->to_insert_hw_breakpoint (self, arg1, arg2);
164}
165
166static int
167tdefault_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
168{
169 return -1;
170}
171
418dabac
TT
172static int
173delegate_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
174{
175 self = self->beneath;
176 return self->to_remove_hw_breakpoint (self, arg1, arg2);
177}
178
179static int
180tdefault_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
181{
182 return -1;
183}
184
61dd109f
TT
185static int
186delegate_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
187{
188 self = self->beneath;
189 return self->to_remove_watchpoint (self, arg1, arg2, arg3, arg4);
190}
191
192static int
193tdefault_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
194{
195 return -1;
196}
197
016facd4
TT
198static int
199delegate_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
200{
201 self = self->beneath;
202 return self->to_insert_watchpoint (self, arg1, arg2, arg3, arg4);
203}
204
205static int
206tdefault_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
207{
208 return -1;
209}
210
cd4ae029
TT
211static int
212delegate_insert_mask_watchpoint (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
213{
214 self = self->beneath;
215 return self->to_insert_mask_watchpoint (self, arg1, arg2, arg3);
216}
217
218static int
219tdefault_insert_mask_watchpoint (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
220{
221 return 1;
222}
223
8b1c364c
TT
224static int
225delegate_remove_mask_watchpoint (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
226{
227 self = self->beneath;
228 return self->to_remove_mask_watchpoint (self, arg1, arg2, arg3);
229}
230
231static int
232tdefault_remove_mask_watchpoint (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
233{
234 return 1;
235}
236
6b84065d
TT
237static int
238delegate_stopped_by_watchpoint (struct target_ops *self)
239{
240 self = self->beneath;
241 return self->to_stopped_by_watchpoint (self);
242}
243
244static int
245tdefault_stopped_by_watchpoint (struct target_ops *self)
246{
247 return 0;
248}
249
250static int
251delegate_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
252{
253 self = self->beneath;
254 return self->to_stopped_data_address (self, arg1);
255}
256
257static int
258tdefault_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
259{
260 return 0;
261}
262
65f160a9
TT
263static int
264delegate_watchpoint_addr_within_range (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
265{
266 self = self->beneath;
267 return self->to_watchpoint_addr_within_range (self, arg1, arg2, arg3);
268}
269
d03655e4
TT
270static int
271delegate_region_ok_for_hw_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2)
272{
273 self = self->beneath;
274 return self->to_region_ok_for_hw_watchpoint (self, arg1, arg2);
275}
276
77cdffe9
TT
277static int
278delegate_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
279{
280 self = self->beneath;
281 return self->to_can_accel_watchpoint_condition (self, arg1, arg2, arg3, arg4);
282}
283
284static int
285tdefault_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
286{
287 return 0;
288}
289
6c7e5e5c
TT
290static int
291delegate_masked_watch_num_registers (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2)
292{
293 self = self->beneath;
294 return self->to_masked_watch_num_registers (self, arg1, arg2);
295}
296
297static int
298tdefault_masked_watch_num_registers (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2)
299{
300 return -1;
301}
302
0343661d
TT
303static void
304delegate_terminal_init (struct target_ops *self)
305{
306 self = self->beneath;
307 self->to_terminal_init (self);
308}
309
310static void
311tdefault_terminal_init (struct target_ops *self)
312{
313}
314
ddeaacc9
TT
315static void
316delegate_terminal_inferior (struct target_ops *self)
317{
318 self = self->beneath;
319 self->to_terminal_inferior (self);
320}
321
322static void
323tdefault_terminal_inferior (struct target_ops *self)
324{
325}
326
74fcbef9
TT
327static void
328delegate_terminal_ours_for_output (struct target_ops *self)
329{
330 self = self->beneath;
331 self->to_terminal_ours_for_output (self);
332}
333
334static void
335tdefault_terminal_ours_for_output (struct target_ops *self)
336{
337}
338
e4a733f1
TT
339static void
340delegate_terminal_ours (struct target_ops *self)
341{
342 self = self->beneath;
343 self->to_terminal_ours (self);
344}
345
346static void
347tdefault_terminal_ours (struct target_ops *self)
348{
349}
350
c6ea8f79
TT
351static void
352delegate_terminal_save_ours (struct target_ops *self)
353{
354 self = self->beneath;
355 self->to_terminal_save_ours (self);
356}
357
358static void
359tdefault_terminal_save_ours (struct target_ops *self)
360{
361}
362
e19e919f
TT
363static void
364delegate_terminal_info (struct target_ops *self, const char *arg1, int arg2)
365{
366 self = self->beneath;
367 self->to_terminal_info (self, arg1, arg2);
368}
369
423a4807
TT
370static void
371delegate_kill (struct target_ops *self)
372{
373 self = self->beneath;
374 self->to_kill (self);
375}
376
377static void
378tdefault_kill (struct target_ops *self)
379{
380 noprocess ();
381}
382
7634da87 383static void
9cbe5fff 384delegate_load (struct target_ops *self, const char *arg1, int arg2)
7634da87
TT
385{
386 self = self->beneath;
387 self->to_load (self, arg1, arg2);
388}
389
390static void
9cbe5fff 391tdefault_load (struct target_ops *self, const char *arg1, int arg2)
7634da87
TT
392{
393 tcomplain ();
394}
395
340ba4bf
TT
396static void
397delegate_post_startup_inferior (struct target_ops *self, ptid_t arg1)
398{
399 self = self->beneath;
400 self->to_post_startup_inferior (self, arg1);
401}
402
403static void
404tdefault_post_startup_inferior (struct target_ops *self, ptid_t arg1)
405{
406}
407
5958ebeb
TT
408static int
409delegate_insert_fork_catchpoint (struct target_ops *self, int arg1)
410{
411 self = self->beneath;
412 return self->to_insert_fork_catchpoint (self, arg1);
413}
414
415static int
416tdefault_insert_fork_catchpoint (struct target_ops *self, int arg1)
417{
418 return 1;
419}
420
e1a21fb7
TT
421static int
422delegate_remove_fork_catchpoint (struct target_ops *self, int arg1)
423{
424 self = self->beneath;
425 return self->to_remove_fork_catchpoint (self, arg1);
426}
427
428static int
429tdefault_remove_fork_catchpoint (struct target_ops *self, int arg1)
430{
431 return 1;
432}
433
7e18a8dc
TT
434static int
435delegate_insert_vfork_catchpoint (struct target_ops *self, int arg1)
436{
437 self = self->beneath;
438 return self->to_insert_vfork_catchpoint (self, arg1);
439}
440
441static int
442tdefault_insert_vfork_catchpoint (struct target_ops *self, int arg1)
443{
444 return 1;
445}
446
95c3375e
TT
447static int
448delegate_remove_vfork_catchpoint (struct target_ops *self, int arg1)
449{
450 self = self->beneath;
451 return self->to_remove_vfork_catchpoint (self, arg1);
452}
453
454static int
455tdefault_remove_vfork_catchpoint (struct target_ops *self, int arg1)
456{
457 return 1;
458}
459
098dba18
TT
460static int
461delegate_follow_fork (struct target_ops *self, int arg1, int arg2)
462{
463 self = self->beneath;
464 return self->to_follow_fork (self, arg1, arg2);
465}
466
62f64d7a
TT
467static int
468delegate_insert_exec_catchpoint (struct target_ops *self, int arg1)
469{
470 self = self->beneath;
471 return self->to_insert_exec_catchpoint (self, arg1);
472}
473
474static int
475tdefault_insert_exec_catchpoint (struct target_ops *self, int arg1)
476{
477 return 1;
478}
479
cda0f38c
TT
480static int
481delegate_remove_exec_catchpoint (struct target_ops *self, int arg1)
482{
483 self = self->beneath;
484 return self->to_remove_exec_catchpoint (self, arg1);
485}
486
487static int
488tdefault_remove_exec_catchpoint (struct target_ops *self, int arg1)
489{
490 return 1;
491}
492
6a9fa051
TT
493static int
494delegate_set_syscall_catchpoint (struct target_ops *self, int arg1, int arg2, int arg3, int arg4, int *arg5)
495{
496 self = self->beneath;
497 return self->to_set_syscall_catchpoint (self, arg1, arg2, arg3, arg4, arg5);
498}
499
500static int
501tdefault_set_syscall_catchpoint (struct target_ops *self, int arg1, int arg2, int arg3, int arg4, int *arg5)
502{
503 return 1;
504}
505
0db88c1d
TT
506static int
507delegate_has_exited (struct target_ops *self, int arg1, int arg2, int *arg3)
508{
509 self = self->beneath;
510 return self->to_has_exited (self, arg1, arg2, arg3);
511}
512
513static int
514tdefault_has_exited (struct target_ops *self, int arg1, int arg2, int *arg3)
515{
516 return 0;
517}
518
8d657035
TT
519static void
520delegate_mourn_inferior (struct target_ops *self)
521{
522 self = self->beneath;
523 self->to_mourn_inferior (self);
524}
525
e88ef65c
TT
526static int
527delegate_can_run (struct target_ops *self)
528{
529 self = self->beneath;
530 return self->to_can_run (self);
531}
532
533static int
534tdefault_can_run (struct target_ops *self)
535{
536 return 0;
537}
538
035cad7f
TT
539static void
540delegate_pass_signals (struct target_ops *self, int arg1, unsigned char *arg2)
541{
542 self = self->beneath;
543 self->to_pass_signals (self, arg1, arg2);
544}
545
546static void
547tdefault_pass_signals (struct target_ops *self, int arg1, unsigned char *arg2)
548{
549}
550
7d4f8efa
TT
551static void
552delegate_program_signals (struct target_ops *self, int arg1, unsigned char *arg2)
553{
554 self = self->beneath;
555 self->to_program_signals (self, arg1, arg2);
556}
557
558static void
559tdefault_program_signals (struct target_ops *self, int arg1, unsigned char *arg2)
560{
561}
562
cbffc065
TT
563static int
564delegate_thread_alive (struct target_ops *self, ptid_t arg1)
565{
566 self = self->beneath;
567 return self->to_thread_alive (self, arg1);
568}
569
570static int
571tdefault_thread_alive (struct target_ops *self, ptid_t arg1)
572{
573 return 0;
574}
575
09b0dc2b
TT
576static void
577delegate_find_new_threads (struct target_ops *self)
578{
579 self = self->beneath;
580 self->to_find_new_threads (self);
581}
582
583static void
584tdefault_find_new_threads (struct target_ops *self)
585{
586}
587
770234d3
TT
588static char *
589delegate_pid_to_str (struct target_ops *self, ptid_t arg1)
590{
591 self = self->beneath;
592 return self->to_pid_to_str (self, arg1);
593}
594
4a7e6dda
TT
595static char *
596delegate_extra_thread_info (struct target_ops *self, struct thread_info *arg1)
597{
598 self = self->beneath;
599 return self->to_extra_thread_info (self, arg1);
600}
601
602static char *
603tdefault_extra_thread_info (struct target_ops *self, struct thread_info *arg1)
604{
9b144037 605 return NULL;
4a7e6dda
TT
606}
607
825828fc
TT
608static char *
609delegate_thread_name (struct target_ops *self, struct thread_info *arg1)
610{
611 self = self->beneath;
612 return self->to_thread_name (self, arg1);
613}
614
615static char *
616tdefault_thread_name (struct target_ops *self, struct thread_info *arg1)
617{
9b144037 618 return NULL;
825828fc
TT
619}
620
46ee7e8d
TT
621static void
622delegate_stop (struct target_ops *self, ptid_t arg1)
623{
624 self = self->beneath;
625 self->to_stop (self, arg1);
626}
627
628static void
629tdefault_stop (struct target_ops *self, ptid_t arg1)
630{
631}
632
a53f3625 633static void
a30bf1f1 634delegate_rcmd (struct target_ops *self, const char *arg1, struct ui_file *arg2)
a53f3625
TT
635{
636 self = self->beneath;
637 self->to_rcmd (self, arg1, arg2);
638}
639
830ca330
TT
640static char *
641delegate_pid_to_exec_file (struct target_ops *self, int arg1)
642{
643 self = self->beneath;
644 return self->to_pid_to_exec_file (self, arg1);
645}
646
647static char *
648tdefault_pid_to_exec_file (struct target_ops *self, int arg1)
649{
9b144037 650 return NULL;
830ca330
TT
651}
652
d9cb0195
TT
653static void
654delegate_log_command (struct target_ops *self, const char *arg1)
655{
656 self = self->beneath;
657 self->to_log_command (self, arg1);
658}
659
660static void
661tdefault_log_command (struct target_ops *self, const char *arg1)
662{
663}
664
7e35c012
TT
665static struct target_section_table *
666delegate_get_section_table (struct target_ops *self)
667{
668 self = self->beneath;
669 return self->to_get_section_table (self);
670}
671
672static struct target_section_table *
673tdefault_get_section_table (struct target_ops *self)
674{
9b144037 675 return NULL;
7e35c012
TT
676}
677
6b84065d
TT
678static int
679delegate_can_async_p (struct target_ops *self)
680{
681 self = self->beneath;
682 return self->to_can_async_p (self);
683}
684
b3ccfe11
TT
685static int
686tdefault_can_async_p (struct target_ops *self)
687{
688 return 0;
689}
690
6b84065d
TT
691static int
692delegate_is_async_p (struct target_ops *self)
693{
694 self = self->beneath;
695 return self->to_is_async_p (self);
696}
697
b3ccfe11
TT
698static int
699tdefault_is_async_p (struct target_ops *self)
700{
701 return 0;
702}
703
6b84065d
TT
704static void
705delegate_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
706{
707 self = self->beneath;
708 self->to_async (self, arg1, arg2);
709}
710
711static void
712tdefault_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
713{
714 tcomplain ();
715}
716
b3ccfe11
TT
717static int
718delegate_supports_non_stop (struct target_ops *self)
719{
720 self = self->beneath;
721 return self->to_supports_non_stop (self);
722}
723
724static int
725tdefault_supports_non_stop (struct target_ops *self)
726{
727 return 0;
728}
729
0b5a2719
TT
730static int
731delegate_find_memory_regions (struct target_ops *self, find_memory_region_ftype arg1, void *arg2)
732{
733 self = self->beneath;
734 return self->to_find_memory_regions (self, arg1, arg2);
735}
736
a8bdc56b 737static char *
16f796b1
TT
738delegate_make_corefile_notes (struct target_ops *self, bfd *arg1, int *arg2)
739{
740 self = self->beneath;
741 return self->to_make_corefile_notes (self, arg1, arg2);
742}
743
a8bdc56b 744static gdb_byte *
c2bcbb1d 745delegate_get_bookmark (struct target_ops *self, const char *arg1, int arg2)
3dbafbbb
TT
746{
747 self = self->beneath;
748 return self->to_get_bookmark (self, arg1, arg2);
749}
750
a8bdc56b 751static gdb_byte *
c2bcbb1d 752tdefault_get_bookmark (struct target_ops *self, const char *arg1, int arg2)
3dbafbbb
TT
753{
754 tcomplain ();
755}
756
9bb9d61d 757static void
c2bcbb1d 758delegate_goto_bookmark (struct target_ops *self, const gdb_byte *arg1, int arg2)
9bb9d61d
TT
759{
760 self = self->beneath;
761 self->to_goto_bookmark (self, arg1, arg2);
762}
763
764static void
c2bcbb1d 765tdefault_goto_bookmark (struct target_ops *self, const gdb_byte *arg1, int arg2)
9bb9d61d
TT
766{
767 tcomplain ();
768}
769
f0f9ff95
TT
770static CORE_ADDR
771delegate_get_thread_local_address (struct target_ops *self, ptid_t arg1, CORE_ADDR arg2, CORE_ADDR arg3)
772{
773 self = self->beneath;
774 return self->to_get_thread_local_address (self, arg1, arg2, arg3);
775}
776
777static CORE_ADDR
778tdefault_get_thread_local_address (struct target_ops *self, ptid_t arg1, CORE_ADDR arg2, CORE_ADDR arg3)
779{
780 generic_tls_error ();
781}
782
a8bdc56b
TT
783static enum target_xfer_status
784delegate_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)
6b84065d
TT
785{
786 self = self->beneath;
787 return self->to_xfer_partial (self, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
788}
789
a8bdc56b
TT
790static enum target_xfer_status
791tdefault_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)
6b84065d
TT
792{
793 return TARGET_XFER_E_IO;
794}
795
6b2c5a57
TT
796static VEC(mem_region_s) *
797delegate_memory_map (struct target_ops *self)
798{
799 self = self->beneath;
800 return self->to_memory_map (self);
801}
802
803static VEC(mem_region_s) *
804tdefault_memory_map (struct target_ops *self)
805{
9b144037 806 return NULL;
6b2c5a57
TT
807}
808
e8a6c6ac
TT
809static void
810delegate_flash_erase (struct target_ops *self, ULONGEST arg1, LONGEST arg2)
811{
812 self = self->beneath;
813 self->to_flash_erase (self, arg1, arg2);
814}
815
816static void
817tdefault_flash_erase (struct target_ops *self, ULONGEST arg1, LONGEST arg2)
818{
819 tcomplain ();
820}
821
f6fb2925
TT
822static void
823delegate_flash_done (struct target_ops *self)
824{
825 self = self->beneath;
826 self->to_flash_done (self);
827}
828
829static void
830tdefault_flash_done (struct target_ops *self)
831{
832 tcomplain ();
833}
834
2117c711
TT
835static const struct target_desc *
836delegate_read_description (struct target_ops *self)
837{
838 self = self->beneath;
839 return self->to_read_description (self);
840}
841
842static const struct target_desc *
843tdefault_read_description (struct target_ops *self)
844{
9b144037 845 return NULL;
2117c711
TT
846}
847
4229b31d
TT
848static ptid_t
849delegate_get_ada_task_ptid (struct target_ops *self, long arg1, long arg2)
850{
851 self = self->beneath;
852 return self->to_get_ada_task_ptid (self, arg1, arg2);
853}
854
8de71aab
TT
855static int
856delegate_auxv_parse (struct target_ops *self, gdb_byte **arg1, gdb_byte *arg2, CORE_ADDR *arg3, CORE_ADDR *arg4)
857{
858 self = self->beneath;
859 return self->to_auxv_parse (self, arg1, arg2, arg3, arg4);
860}
861
58a5184e
TT
862static int
863delegate_search_memory (struct target_ops *self, CORE_ADDR arg1, ULONGEST arg2, const gdb_byte *arg3, ULONGEST arg4, CORE_ADDR *arg5)
864{
865 self = self->beneath;
866 return self->to_search_memory (self, arg1, arg2, arg3, arg4, arg5);
867}
868
53e1cfc7
TT
869static int
870delegate_can_execute_reverse (struct target_ops *self)
871{
872 self = self->beneath;
873 return self->to_can_execute_reverse (self);
874}
875
876static int
877tdefault_can_execute_reverse (struct target_ops *self)
878{
879 return 0;
880}
881
a8bdc56b 882static enum exec_direction_kind
fe31bf5b
TT
883delegate_execution_direction (struct target_ops *self)
884{
885 self = self->beneath;
886 return self->to_execution_direction (self);
887}
888
a7304748
TT
889static int
890delegate_supports_multi_process (struct target_ops *self)
891{
892 self = self->beneath;
893 return self->to_supports_multi_process (self);
894}
895
896static int
897tdefault_supports_multi_process (struct target_ops *self)
898{
899 return 0;
900}
901
aab1b22d
TT
902static int
903delegate_supports_enable_disable_tracepoint (struct target_ops *self)
904{
905 self = self->beneath;
906 return self->to_supports_enable_disable_tracepoint (self);
907}
908
909static int
910tdefault_supports_enable_disable_tracepoint (struct target_ops *self)
911{
912 return 0;
913}
914
9409d39e
TT
915static int
916delegate_supports_string_tracing (struct target_ops *self)
917{
918 self = self->beneath;
919 return self->to_supports_string_tracing (self);
920}
921
922static int
923tdefault_supports_string_tracing (struct target_ops *self)
924{
925 return 0;
926}
927
ccfde2a0
TT
928static int
929delegate_supports_evaluation_of_breakpoint_conditions (struct target_ops *self)
930{
931 self = self->beneath;
932 return self->to_supports_evaluation_of_breakpoint_conditions (self);
933}
934
935static int
936tdefault_supports_evaluation_of_breakpoint_conditions (struct target_ops *self)
937{
938 return 0;
939}
940
843f59ed
TT
941static int
942delegate_can_run_breakpoint_commands (struct target_ops *self)
943{
944 self = self->beneath;
945 return self->to_can_run_breakpoint_commands (self);
946}
947
948static int
949tdefault_can_run_breakpoint_commands (struct target_ops *self)
950{
951 return 0;
952}
953
43eba180
TT
954static struct gdbarch *
955delegate_thread_architecture (struct target_ops *self, ptid_t arg1)
956{
957 self = self->beneath;
958 return self->to_thread_architecture (self, arg1);
959}
960
8eaff7cd
TT
961static struct address_space *
962delegate_thread_address_space (struct target_ops *self, ptid_t arg1)
963{
964 self = self->beneath;
965 return self->to_thread_address_space (self, arg1);
966}
967
5536135b
TT
968static void
969delegate_trace_init (struct target_ops *self)
970{
971 self = self->beneath;
972 self->to_trace_init (self);
973}
974
975static void
976tdefault_trace_init (struct target_ops *self)
977{
978 tcomplain ();
979}
980
9a980a22
TT
981static void
982delegate_download_tracepoint (struct target_ops *self, struct bp_location *arg1)
983{
984 self = self->beneath;
985 self->to_download_tracepoint (self, arg1);
986}
987
988static void
989tdefault_download_tracepoint (struct target_ops *self, struct bp_location *arg1)
990{
991 tcomplain ();
992}
993
719acc4a
TT
994static int
995delegate_can_download_tracepoint (struct target_ops *self)
996{
997 self = self->beneath;
998 return self->to_can_download_tracepoint (self);
999}
1000
1001static int
1002tdefault_can_download_tracepoint (struct target_ops *self)
1003{
1004 return 0;
1005}
1006
94eb98b9
TT
1007static void
1008delegate_download_trace_state_variable (struct target_ops *self, struct trace_state_variable *arg1)
1009{
1010 self = self->beneath;
1011 self->to_download_trace_state_variable (self, arg1);
1012}
1013
1014static void
1015tdefault_download_trace_state_variable (struct target_ops *self, struct trace_state_variable *arg1)
1016{
1017 tcomplain ();
1018}
1019
151f70f1
TT
1020static void
1021delegate_enable_tracepoint (struct target_ops *self, struct bp_location *arg1)
1022{
1023 self = self->beneath;
1024 self->to_enable_tracepoint (self, arg1);
1025}
1026
1027static void
1028tdefault_enable_tracepoint (struct target_ops *self, struct bp_location *arg1)
1029{
1030 tcomplain ();
1031}
1032
05c41993
TT
1033static void
1034delegate_disable_tracepoint (struct target_ops *self, struct bp_location *arg1)
1035{
1036 self = self->beneath;
1037 self->to_disable_tracepoint (self, arg1);
1038}
1039
1040static void
1041tdefault_disable_tracepoint (struct target_ops *self, struct bp_location *arg1)
1042{
1043 tcomplain ();
1044}
1045
86dd181d
TT
1046static void
1047delegate_trace_set_readonly_regions (struct target_ops *self)
1048{
1049 self = self->beneath;
1050 self->to_trace_set_readonly_regions (self);
1051}
1052
1053static void
1054tdefault_trace_set_readonly_regions (struct target_ops *self)
1055{
1056 tcomplain ();
1057}
1058
25da2e80
TT
1059static void
1060delegate_trace_start (struct target_ops *self)
1061{
1062 self = self->beneath;
1063 self->to_trace_start (self);
1064}
1065
1066static void
1067tdefault_trace_start (struct target_ops *self)
1068{
1069 tcomplain ();
1070}
1071
4072d4ff
TT
1072static int
1073delegate_get_trace_status (struct target_ops *self, struct trace_status *arg1)
1074{
1075 self = self->beneath;
1076 return self->to_get_trace_status (self, arg1);
1077}
1078
1079static int
1080tdefault_get_trace_status (struct target_ops *self, struct trace_status *arg1)
1081{
1082 return -1;
1083}
1084
6fea14cd
TT
1085static void
1086delegate_get_tracepoint_status (struct target_ops *self, struct breakpoint *arg1, struct uploaded_tp *arg2)
1087{
1088 self = self->beneath;
1089 self->to_get_tracepoint_status (self, arg1, arg2);
1090}
1091
1092static void
1093tdefault_get_tracepoint_status (struct target_ops *self, struct breakpoint *arg1, struct uploaded_tp *arg2)
1094{
1095 tcomplain ();
1096}
1097
e51c07ea
TT
1098static void
1099delegate_trace_stop (struct target_ops *self)
1100{
1101 self = self->beneath;
1102 self->to_trace_stop (self);
1103}
1104
1105static void
1106tdefault_trace_stop (struct target_ops *self)
1107{
1108 tcomplain ();
1109}
1110
afc94e66 1111static int
a8bdc56b 1112delegate_trace_find (struct target_ops *self, enum trace_find_type arg1, int arg2, CORE_ADDR arg3, CORE_ADDR arg4, int *arg5)
afc94e66
TT
1113{
1114 self = self->beneath;
1115 return self->to_trace_find (self, arg1, arg2, arg3, arg4, arg5);
1116}
1117
1118static int
a8bdc56b 1119tdefault_trace_find (struct target_ops *self, enum trace_find_type arg1, int arg2, CORE_ADDR arg3, CORE_ADDR arg4, int *arg5)
afc94e66
TT
1120{
1121 return -1;
1122}
1123
959bcd0b
TT
1124static int
1125delegate_get_trace_state_variable_value (struct target_ops *self, int arg1, LONGEST *arg2)
1126{
1127 self = self->beneath;
1128 return self->to_get_trace_state_variable_value (self, arg1, arg2);
1129}
1130
1131static int
1132tdefault_get_trace_state_variable_value (struct target_ops *self, int arg1, LONGEST *arg2)
1133{
1134 return 0;
1135}
1136
a2e6c147
TT
1137static int
1138delegate_save_trace_data (struct target_ops *self, const char *arg1)
1139{
1140 self = self->beneath;
1141 return self->to_save_trace_data (self, arg1);
1142}
1143
1144static int
1145tdefault_save_trace_data (struct target_ops *self, const char *arg1)
1146{
1147 tcomplain ();
1148}
1149
1e949b00
TT
1150static int
1151delegate_upload_tracepoints (struct target_ops *self, struct uploaded_tp **arg1)
1152{
1153 self = self->beneath;
1154 return self->to_upload_tracepoints (self, arg1);
1155}
1156
1157static int
1158tdefault_upload_tracepoints (struct target_ops *self, struct uploaded_tp **arg1)
1159{
1160 return 0;
1161}
1162
08120467
TT
1163static int
1164delegate_upload_trace_state_variables (struct target_ops *self, struct uploaded_tsv **arg1)
1165{
1166 self = self->beneath;
1167 return self->to_upload_trace_state_variables (self, arg1);
1168}
1169
1170static int
1171tdefault_upload_trace_state_variables (struct target_ops *self, struct uploaded_tsv **arg1)
1172{
1173 return 0;
1174}
1175
ace92e7d
TT
1176static LONGEST
1177delegate_get_raw_trace_data (struct target_ops *self, gdb_byte *arg1, ULONGEST arg2, LONGEST arg3)
1178{
1179 self = self->beneath;
1180 return self->to_get_raw_trace_data (self, arg1, arg2, arg3);
1181}
1182
1183static LONGEST
1184tdefault_get_raw_trace_data (struct target_ops *self, gdb_byte *arg1, ULONGEST arg2, LONGEST arg3)
1185{
1186 tcomplain ();
1187}
1188
9249843f
TT
1189static int
1190delegate_get_min_fast_tracepoint_insn_len (struct target_ops *self)
1191{
1192 self = self->beneath;
1193 return self->to_get_min_fast_tracepoint_insn_len (self);
1194}
1195
1196static int
1197tdefault_get_min_fast_tracepoint_insn_len (struct target_ops *self)
1198{
1199 return -1;
1200}
1201
0bcfeddf
TT
1202static void
1203delegate_set_disconnected_tracing (struct target_ops *self, int arg1)
1204{
1205 self = self->beneath;
1206 self->to_set_disconnected_tracing (self, arg1);
1207}
1208
1209static void
1210tdefault_set_disconnected_tracing (struct target_ops *self, int arg1)
1211{
1212}
1213
8d526939
TT
1214static void
1215delegate_set_circular_trace_buffer (struct target_ops *self, int arg1)
1216{
1217 self = self->beneath;
1218 self->to_set_circular_trace_buffer (self, arg1);
1219}
1220
1221static void
1222tdefault_set_circular_trace_buffer (struct target_ops *self, int arg1)
1223{
1224}
1225
91df8d1d
TT
1226static void
1227delegate_set_trace_buffer_size (struct target_ops *self, LONGEST arg1)
1228{
1229 self = self->beneath;
1230 self->to_set_trace_buffer_size (self, arg1);
1231}
1232
1233static void
1234tdefault_set_trace_buffer_size (struct target_ops *self, LONGEST arg1)
1235{
1236}
1237
8586ccaa
TT
1238static int
1239delegate_set_trace_notes (struct target_ops *self, const char *arg1, const char *arg2, const char *arg3)
1240{
1241 self = self->beneath;
1242 return self->to_set_trace_notes (self, arg1, arg2, arg3);
1243}
1244
1245static int
1246tdefault_set_trace_notes (struct target_ops *self, const char *arg1, const char *arg2, const char *arg3)
1247{
1248 return 0;
1249}
1250
9e538d0d
TT
1251static int
1252delegate_core_of_thread (struct target_ops *self, ptid_t arg1)
1253{
1254 self = self->beneath;
1255 return self->to_core_of_thread (self, arg1);
1256}
1257
1258static int
1259tdefault_core_of_thread (struct target_ops *self, ptid_t arg1)
1260{
1261 return -1;
1262}
1263
eb276a6b
TT
1264static int
1265delegate_verify_memory (struct target_ops *self, const gdb_byte *arg1, CORE_ADDR arg2, ULONGEST arg3)
1266{
1267 self = self->beneath;
1268 return self->to_verify_memory (self, arg1, arg2, arg3);
1269}
1270
22bcceee
TT
1271static int
1272delegate_get_tib_address (struct target_ops *self, ptid_t arg1, CORE_ADDR *arg2)
1273{
1274 self = self->beneath;
1275 return self->to_get_tib_address (self, arg1, arg2);
1276}
1277
1278static int
1279tdefault_get_tib_address (struct target_ops *self, ptid_t arg1, CORE_ADDR *arg2)
1280{
1281 tcomplain ();
1282}
1283
dcd6917f
TT
1284static void
1285delegate_set_permissions (struct target_ops *self)
1286{
1287 self = self->beneath;
1288 self->to_set_permissions (self);
1289}
1290
1291static void
1292tdefault_set_permissions (struct target_ops *self)
1293{
1294}
1295
4c3e4425
TT
1296static int
1297delegate_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR arg1, struct static_tracepoint_marker *arg2)
1298{
1299 self = self->beneath;
1300 return self->to_static_tracepoint_marker_at (self, arg1, arg2);
1301}
1302
1303static int
1304tdefault_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR arg1, struct static_tracepoint_marker *arg2)
1305{
1306 return 0;
1307}
1308
d6522a22
TT
1309static VEC(static_tracepoint_marker_p) *
1310delegate_static_tracepoint_markers_by_strid (struct target_ops *self, const char *arg1)
1311{
1312 self = self->beneath;
1313 return self->to_static_tracepoint_markers_by_strid (self, arg1);
1314}
1315
1316static VEC(static_tracepoint_marker_p) *
1317tdefault_static_tracepoint_markers_by_strid (struct target_ops *self, const char *arg1)
1318{
1319 tcomplain ();
1320}
1321
92155eeb
TT
1322static struct traceframe_info *
1323delegate_traceframe_info (struct target_ops *self)
1324{
1325 self = self->beneath;
1326 return self->to_traceframe_info (self);
1327}
1328
1329static struct traceframe_info *
1330tdefault_traceframe_info (struct target_ops *self)
1331{
6a5f844b 1332 tcomplain ();
92155eeb
TT
1333}
1334
d9db5b21
TT
1335static int
1336delegate_use_agent (struct target_ops *self, int arg1)
1337{
1338 self = self->beneath;
1339 return self->to_use_agent (self, arg1);
1340}
1341
1342static int
1343tdefault_use_agent (struct target_ops *self, int arg1)
1344{
1345 tcomplain ();
1346}
1347
9a7d8b48
TT
1348static int
1349delegate_can_use_agent (struct target_ops *self)
1350{
1351 self = self->beneath;
1352 return self->to_can_use_agent (self);
1353}
1354
1355static int
1356tdefault_can_use_agent (struct target_ops *self)
1357{
1358 return 0;
1359}
1360
46917d26
TT
1361static int
1362delegate_supports_btrace (struct target_ops *self)
1363{
1364 self = self->beneath;
1365 return self->to_supports_btrace (self);
1366}
1367
1368static int
1369tdefault_supports_btrace (struct target_ops *self)
1370{
1371 return 0;
1372}
1373
6dc7fcf4
TT
1374static struct btrace_target_info *
1375delegate_enable_btrace (struct target_ops *self, ptid_t arg1)
1376{
1377 self = self->beneath;
1378 return self->to_enable_btrace (self, arg1);
1379}
1380
1381static struct btrace_target_info *
1382tdefault_enable_btrace (struct target_ops *self, ptid_t arg1)
1383{
1384 tcomplain ();
1385}
1386
8dc292d3
TT
1387static void
1388delegate_disable_btrace (struct target_ops *self, struct btrace_target_info *arg1)
1389{
1390 self = self->beneath;
1391 self->to_disable_btrace (self, arg1);
1392}
1393
1394static void
1395tdefault_disable_btrace (struct target_ops *self, struct btrace_target_info *arg1)
1396{
1397 tcomplain ();
1398}
1399
9ace480d
TT
1400static void
1401delegate_teardown_btrace (struct target_ops *self, struct btrace_target_info *arg1)
1402{
1403 self = self->beneath;
1404 self->to_teardown_btrace (self, arg1);
1405}
1406
1407static void
1408tdefault_teardown_btrace (struct target_ops *self, struct btrace_target_info *arg1)
1409{
1410 tcomplain ();
1411}
1412
a8bdc56b
TT
1413static enum btrace_error
1414delegate_read_btrace (struct target_ops *self, VEC (btrace_block_s) **arg1, struct btrace_target_info *arg2, enum btrace_read_type arg3)
eb5b20d4
TT
1415{
1416 self = self->beneath;
1417 return self->to_read_btrace (self, arg1, arg2, arg3);
1418}
1419
a8bdc56b
TT
1420static enum btrace_error
1421tdefault_read_btrace (struct target_ops *self, VEC (btrace_block_s) **arg1, struct btrace_target_info *arg2, enum btrace_read_type arg3)
eb5b20d4
TT
1422{
1423 tcomplain ();
1424}
1425
ee97f592
TT
1426static void
1427delegate_stop_recording (struct target_ops *self)
1428{
1429 self = self->beneath;
1430 self->to_stop_recording (self);
1431}
1432
1433static void
1434tdefault_stop_recording (struct target_ops *self)
1435{
1436}
1437
a432721e
TT
1438static void
1439delegate_info_record (struct target_ops *self)
1440{
1441 self = self->beneath;
1442 self->to_info_record (self);
1443}
1444
1445static void
1446tdefault_info_record (struct target_ops *self)
1447{
1448}
1449
f09e2107
TT
1450static void
1451delegate_save_record (struct target_ops *self, const char *arg1)
1452{
1453 self = self->beneath;
1454 self->to_save_record (self, arg1);
1455}
1456
1457static void
1458tdefault_save_record (struct target_ops *self, const char *arg1)
1459{
1460 tcomplain ();
1461}
1462
07366925
TT
1463static void
1464delegate_delete_record (struct target_ops *self)
1465{
1466 self = self->beneath;
1467 self->to_delete_record (self);
1468}
1469
1470static void
1471tdefault_delete_record (struct target_ops *self)
1472{
1473 tcomplain ();
1474}
1475
dd2e9d25
TT
1476static int
1477delegate_record_is_replaying (struct target_ops *self)
1478{
1479 self = self->beneath;
1480 return self->to_record_is_replaying (self);
1481}
1482
1483static int
1484tdefault_record_is_replaying (struct target_ops *self)
1485{
1486 return 0;
1487}
1488
671e76cc
TT
1489static void
1490delegate_goto_record_begin (struct target_ops *self)
1491{
1492 self = self->beneath;
1493 self->to_goto_record_begin (self);
1494}
1495
1496static void
1497tdefault_goto_record_begin (struct target_ops *self)
1498{
1499 tcomplain ();
1500}
1501
e9179bb3
TT
1502static void
1503delegate_goto_record_end (struct target_ops *self)
1504{
1505 self = self->beneath;
1506 self->to_goto_record_end (self);
1507}
1508
1509static void
1510tdefault_goto_record_end (struct target_ops *self)
1511{
1512 tcomplain ();
1513}
1514
05969c84
TT
1515static void
1516delegate_goto_record (struct target_ops *self, ULONGEST arg1)
1517{
1518 self = self->beneath;
1519 self->to_goto_record (self, arg1);
1520}
1521
1522static void
1523tdefault_goto_record (struct target_ops *self, ULONGEST arg1)
1524{
1525 tcomplain ();
1526}
1527
3679abfa
TT
1528static void
1529delegate_insn_history (struct target_ops *self, int arg1, int arg2)
1530{
1531 self = self->beneath;
1532 self->to_insn_history (self, arg1, arg2);
1533}
1534
1535static void
1536tdefault_insn_history (struct target_ops *self, int arg1, int arg2)
1537{
1538 tcomplain ();
1539}
1540
8444ab58
TT
1541static void
1542delegate_insn_history_from (struct target_ops *self, ULONGEST arg1, int arg2, int arg3)
1543{
1544 self = self->beneath;
1545 self->to_insn_history_from (self, arg1, arg2, arg3);
1546}
1547
1548static void
1549tdefault_insn_history_from (struct target_ops *self, ULONGEST arg1, int arg2, int arg3)
1550{
1551 tcomplain ();
1552}
1553
c29302cc
TT
1554static void
1555delegate_insn_history_range (struct target_ops *self, ULONGEST arg1, ULONGEST arg2, int arg3)
1556{
1557 self = self->beneath;
1558 self->to_insn_history_range (self, arg1, arg2, arg3);
1559}
1560
1561static void
1562tdefault_insn_history_range (struct target_ops *self, ULONGEST arg1, ULONGEST arg2, int arg3)
1563{
1564 tcomplain ();
1565}
1566
170049d4
TT
1567static void
1568delegate_call_history (struct target_ops *self, int arg1, int arg2)
1569{
1570 self = self->beneath;
1571 self->to_call_history (self, arg1, arg2);
1572}
1573
1574static void
1575tdefault_call_history (struct target_ops *self, int arg1, int arg2)
1576{
1577 tcomplain ();
1578}
1579
16fc27d6
TT
1580static void
1581delegate_call_history_from (struct target_ops *self, ULONGEST arg1, int arg2, int arg3)
1582{
1583 self = self->beneath;
1584 self->to_call_history_from (self, arg1, arg2, arg3);
1585}
1586
1587static void
1588tdefault_call_history_from (struct target_ops *self, ULONGEST arg1, int arg2, int arg3)
1589{
1590 tcomplain ();
1591}
1592
115d9817
TT
1593static void
1594delegate_call_history_range (struct target_ops *self, ULONGEST arg1, ULONGEST arg2, int arg3)
1595{
1596 self = self->beneath;
1597 self->to_call_history_range (self, arg1, arg2, arg3);
1598}
1599
1600static void
1601tdefault_call_history_range (struct target_ops *self, ULONGEST arg1, ULONGEST arg2, int arg3)
1602{
1603 tcomplain ();
1604}
1605
0de91722
TT
1606static int
1607delegate_augmented_libraries_svr4_read (struct target_ops *self)
1608{
1609 self = self->beneath;
1610 return self->to_augmented_libraries_svr4_read (self);
1611}
1612
1613static int
1614tdefault_augmented_libraries_svr4_read (struct target_ops *self)
1615{
1616 return 0;
1617}
1618
ac01945b
TT
1619static const struct frame_unwind *
1620delegate_get_unwinder (struct target_ops *self)
1621{
1622 self = self->beneath;
1623 return self->to_get_unwinder (self);
1624}
1625
1626static const struct frame_unwind *
1627tdefault_get_unwinder (struct target_ops *self)
1628{
1629 return NULL;
1630}
1631
1632static const struct frame_unwind *
1633delegate_get_tailcall_unwinder (struct target_ops *self)
1634{
1635 self = self->beneath;
1636 return self->to_get_tailcall_unwinder (self);
1637}
1638
1639static const struct frame_unwind *
1640tdefault_get_tailcall_unwinder (struct target_ops *self)
1641{
1642 return NULL;
1643}
1644
c0eca49f
TT
1645static CORE_ADDR
1646delegate_decr_pc_after_break (struct target_ops *self, struct gdbarch *arg1)
1647{
1648 self = self->beneath;
1649 return self->to_decr_pc_after_break (self, arg1);
1650}
1651
5fff78c4
MM
1652static void
1653delegate_prepare_to_generate_core (struct target_ops *self)
1654{
1655 self = self->beneath;
1656 self->to_prepare_to_generate_core (self);
1657}
1658
1659static void
1660tdefault_prepare_to_generate_core (struct target_ops *self)
1661{
1662}
1663
1664static void
1665delegate_done_generating_core (struct target_ops *self)
1666{
1667 self = self->beneath;
1668 self->to_done_generating_core (self);
1669}
1670
1671static void
1672tdefault_done_generating_core (struct target_ops *self)
1673{
1674}
1675
1101cb7b
TT
1676static void
1677install_delegators (struct target_ops *ops)
1678{
bebd3233
TT
1679 if (ops->to_post_attach == NULL)
1680 ops->to_post_attach = delegate_post_attach;
09da0d0a
TT
1681 if (ops->to_detach == NULL)
1682 ops->to_detach = delegate_detach;
86a0854a
TT
1683 if (ops->to_disconnect == NULL)
1684 ops->to_disconnect = delegate_disconnect;
6b84065d
TT
1685 if (ops->to_resume == NULL)
1686 ops->to_resume = delegate_resume;
1687 if (ops->to_wait == NULL)
1688 ops->to_wait = delegate_wait;
ad5989bd
TT
1689 if (ops->to_fetch_registers == NULL)
1690 ops->to_fetch_registers = delegate_fetch_registers;
6b84065d
TT
1691 if (ops->to_store_registers == NULL)
1692 ops->to_store_registers = delegate_store_registers;
6c628163
TT
1693 if (ops->to_prepare_to_store == NULL)
1694 ops->to_prepare_to_store = delegate_prepare_to_store;
f86e59b2
TT
1695 if (ops->to_files_info == NULL)
1696 ops->to_files_info = delegate_files_info;
6b84065d
TT
1697 if (ops->to_insert_breakpoint == NULL)
1698 ops->to_insert_breakpoint = delegate_insert_breakpoint;
1699 if (ops->to_remove_breakpoint == NULL)
1700 ops->to_remove_breakpoint = delegate_remove_breakpoint;
52b51d06
TT
1701 if (ops->to_can_use_hw_breakpoint == NULL)
1702 ops->to_can_use_hw_breakpoint = delegate_can_use_hw_breakpoint;
a134316b
TT
1703 if (ops->to_ranged_break_num_registers == NULL)
1704 ops->to_ranged_break_num_registers = delegate_ranged_break_num_registers;
61b371f9
TT
1705 if (ops->to_insert_hw_breakpoint == NULL)
1706 ops->to_insert_hw_breakpoint = delegate_insert_hw_breakpoint;
418dabac
TT
1707 if (ops->to_remove_hw_breakpoint == NULL)
1708 ops->to_remove_hw_breakpoint = delegate_remove_hw_breakpoint;
61dd109f
TT
1709 if (ops->to_remove_watchpoint == NULL)
1710 ops->to_remove_watchpoint = delegate_remove_watchpoint;
016facd4
TT
1711 if (ops->to_insert_watchpoint == NULL)
1712 ops->to_insert_watchpoint = delegate_insert_watchpoint;
cd4ae029
TT
1713 if (ops->to_insert_mask_watchpoint == NULL)
1714 ops->to_insert_mask_watchpoint = delegate_insert_mask_watchpoint;
8b1c364c
TT
1715 if (ops->to_remove_mask_watchpoint == NULL)
1716 ops->to_remove_mask_watchpoint = delegate_remove_mask_watchpoint;
6b84065d
TT
1717 if (ops->to_stopped_by_watchpoint == NULL)
1718 ops->to_stopped_by_watchpoint = delegate_stopped_by_watchpoint;
1719 if (ops->to_stopped_data_address == NULL)
1720 ops->to_stopped_data_address = delegate_stopped_data_address;
65f160a9
TT
1721 if (ops->to_watchpoint_addr_within_range == NULL)
1722 ops->to_watchpoint_addr_within_range = delegate_watchpoint_addr_within_range;
d03655e4
TT
1723 if (ops->to_region_ok_for_hw_watchpoint == NULL)
1724 ops->to_region_ok_for_hw_watchpoint = delegate_region_ok_for_hw_watchpoint;
77cdffe9
TT
1725 if (ops->to_can_accel_watchpoint_condition == NULL)
1726 ops->to_can_accel_watchpoint_condition = delegate_can_accel_watchpoint_condition;
6c7e5e5c
TT
1727 if (ops->to_masked_watch_num_registers == NULL)
1728 ops->to_masked_watch_num_registers = delegate_masked_watch_num_registers;
0343661d
TT
1729 if (ops->to_terminal_init == NULL)
1730 ops->to_terminal_init = delegate_terminal_init;
ddeaacc9
TT
1731 if (ops->to_terminal_inferior == NULL)
1732 ops->to_terminal_inferior = delegate_terminal_inferior;
74fcbef9
TT
1733 if (ops->to_terminal_ours_for_output == NULL)
1734 ops->to_terminal_ours_for_output = delegate_terminal_ours_for_output;
e4a733f1
TT
1735 if (ops->to_terminal_ours == NULL)
1736 ops->to_terminal_ours = delegate_terminal_ours;
c6ea8f79
TT
1737 if (ops->to_terminal_save_ours == NULL)
1738 ops->to_terminal_save_ours = delegate_terminal_save_ours;
e19e919f
TT
1739 if (ops->to_terminal_info == NULL)
1740 ops->to_terminal_info = delegate_terminal_info;
423a4807
TT
1741 if (ops->to_kill == NULL)
1742 ops->to_kill = delegate_kill;
7634da87
TT
1743 if (ops->to_load == NULL)
1744 ops->to_load = delegate_load;
340ba4bf
TT
1745 if (ops->to_post_startup_inferior == NULL)
1746 ops->to_post_startup_inferior = delegate_post_startup_inferior;
5958ebeb
TT
1747 if (ops->to_insert_fork_catchpoint == NULL)
1748 ops->to_insert_fork_catchpoint = delegate_insert_fork_catchpoint;
e1a21fb7
TT
1749 if (ops->to_remove_fork_catchpoint == NULL)
1750 ops->to_remove_fork_catchpoint = delegate_remove_fork_catchpoint;
7e18a8dc
TT
1751 if (ops->to_insert_vfork_catchpoint == NULL)
1752 ops->to_insert_vfork_catchpoint = delegate_insert_vfork_catchpoint;
95c3375e
TT
1753 if (ops->to_remove_vfork_catchpoint == NULL)
1754 ops->to_remove_vfork_catchpoint = delegate_remove_vfork_catchpoint;
098dba18
TT
1755 if (ops->to_follow_fork == NULL)
1756 ops->to_follow_fork = delegate_follow_fork;
62f64d7a
TT
1757 if (ops->to_insert_exec_catchpoint == NULL)
1758 ops->to_insert_exec_catchpoint = delegate_insert_exec_catchpoint;
cda0f38c
TT
1759 if (ops->to_remove_exec_catchpoint == NULL)
1760 ops->to_remove_exec_catchpoint = delegate_remove_exec_catchpoint;
6a9fa051
TT
1761 if (ops->to_set_syscall_catchpoint == NULL)
1762 ops->to_set_syscall_catchpoint = delegate_set_syscall_catchpoint;
0db88c1d
TT
1763 if (ops->to_has_exited == NULL)
1764 ops->to_has_exited = delegate_has_exited;
8d657035
TT
1765 if (ops->to_mourn_inferior == NULL)
1766 ops->to_mourn_inferior = delegate_mourn_inferior;
e88ef65c
TT
1767 if (ops->to_can_run == NULL)
1768 ops->to_can_run = delegate_can_run;
035cad7f
TT
1769 if (ops->to_pass_signals == NULL)
1770 ops->to_pass_signals = delegate_pass_signals;
7d4f8efa
TT
1771 if (ops->to_program_signals == NULL)
1772 ops->to_program_signals = delegate_program_signals;
cbffc065
TT
1773 if (ops->to_thread_alive == NULL)
1774 ops->to_thread_alive = delegate_thread_alive;
09b0dc2b
TT
1775 if (ops->to_find_new_threads == NULL)
1776 ops->to_find_new_threads = delegate_find_new_threads;
770234d3
TT
1777 if (ops->to_pid_to_str == NULL)
1778 ops->to_pid_to_str = delegate_pid_to_str;
4a7e6dda
TT
1779 if (ops->to_extra_thread_info == NULL)
1780 ops->to_extra_thread_info = delegate_extra_thread_info;
825828fc
TT
1781 if (ops->to_thread_name == NULL)
1782 ops->to_thread_name = delegate_thread_name;
46ee7e8d
TT
1783 if (ops->to_stop == NULL)
1784 ops->to_stop = delegate_stop;
a53f3625
TT
1785 if (ops->to_rcmd == NULL)
1786 ops->to_rcmd = delegate_rcmd;
830ca330
TT
1787 if (ops->to_pid_to_exec_file == NULL)
1788 ops->to_pid_to_exec_file = delegate_pid_to_exec_file;
d9cb0195
TT
1789 if (ops->to_log_command == NULL)
1790 ops->to_log_command = delegate_log_command;
7e35c012
TT
1791 if (ops->to_get_section_table == NULL)
1792 ops->to_get_section_table = delegate_get_section_table;
6b84065d
TT
1793 if (ops->to_can_async_p == NULL)
1794 ops->to_can_async_p = delegate_can_async_p;
1795 if (ops->to_is_async_p == NULL)
1796 ops->to_is_async_p = delegate_is_async_p;
1797 if (ops->to_async == NULL)
1798 ops->to_async = delegate_async;
b3ccfe11
TT
1799 if (ops->to_supports_non_stop == NULL)
1800 ops->to_supports_non_stop = delegate_supports_non_stop;
0b5a2719
TT
1801 if (ops->to_find_memory_regions == NULL)
1802 ops->to_find_memory_regions = delegate_find_memory_regions;
16f796b1
TT
1803 if (ops->to_make_corefile_notes == NULL)
1804 ops->to_make_corefile_notes = delegate_make_corefile_notes;
3dbafbbb
TT
1805 if (ops->to_get_bookmark == NULL)
1806 ops->to_get_bookmark = delegate_get_bookmark;
9bb9d61d
TT
1807 if (ops->to_goto_bookmark == NULL)
1808 ops->to_goto_bookmark = delegate_goto_bookmark;
f0f9ff95
TT
1809 if (ops->to_get_thread_local_address == NULL)
1810 ops->to_get_thread_local_address = delegate_get_thread_local_address;
6b84065d
TT
1811 if (ops->to_xfer_partial == NULL)
1812 ops->to_xfer_partial = delegate_xfer_partial;
6b2c5a57
TT
1813 if (ops->to_memory_map == NULL)
1814 ops->to_memory_map = delegate_memory_map;
e8a6c6ac
TT
1815 if (ops->to_flash_erase == NULL)
1816 ops->to_flash_erase = delegate_flash_erase;
f6fb2925
TT
1817 if (ops->to_flash_done == NULL)
1818 ops->to_flash_done = delegate_flash_done;
2117c711
TT
1819 if (ops->to_read_description == NULL)
1820 ops->to_read_description = delegate_read_description;
4229b31d
TT
1821 if (ops->to_get_ada_task_ptid == NULL)
1822 ops->to_get_ada_task_ptid = delegate_get_ada_task_ptid;
8de71aab
TT
1823 if (ops->to_auxv_parse == NULL)
1824 ops->to_auxv_parse = delegate_auxv_parse;
58a5184e
TT
1825 if (ops->to_search_memory == NULL)
1826 ops->to_search_memory = delegate_search_memory;
53e1cfc7
TT
1827 if (ops->to_can_execute_reverse == NULL)
1828 ops->to_can_execute_reverse = delegate_can_execute_reverse;
fe31bf5b
TT
1829 if (ops->to_execution_direction == NULL)
1830 ops->to_execution_direction = delegate_execution_direction;
a7304748
TT
1831 if (ops->to_supports_multi_process == NULL)
1832 ops->to_supports_multi_process = delegate_supports_multi_process;
aab1b22d
TT
1833 if (ops->to_supports_enable_disable_tracepoint == NULL)
1834 ops->to_supports_enable_disable_tracepoint = delegate_supports_enable_disable_tracepoint;
9409d39e
TT
1835 if (ops->to_supports_string_tracing == NULL)
1836 ops->to_supports_string_tracing = delegate_supports_string_tracing;
ccfde2a0
TT
1837 if (ops->to_supports_evaluation_of_breakpoint_conditions == NULL)
1838 ops->to_supports_evaluation_of_breakpoint_conditions = delegate_supports_evaluation_of_breakpoint_conditions;
843f59ed
TT
1839 if (ops->to_can_run_breakpoint_commands == NULL)
1840 ops->to_can_run_breakpoint_commands = delegate_can_run_breakpoint_commands;
43eba180
TT
1841 if (ops->to_thread_architecture == NULL)
1842 ops->to_thread_architecture = delegate_thread_architecture;
8eaff7cd
TT
1843 if (ops->to_thread_address_space == NULL)
1844 ops->to_thread_address_space = delegate_thread_address_space;
5536135b
TT
1845 if (ops->to_trace_init == NULL)
1846 ops->to_trace_init = delegate_trace_init;
9a980a22
TT
1847 if (ops->to_download_tracepoint == NULL)
1848 ops->to_download_tracepoint = delegate_download_tracepoint;
719acc4a
TT
1849 if (ops->to_can_download_tracepoint == NULL)
1850 ops->to_can_download_tracepoint = delegate_can_download_tracepoint;
94eb98b9
TT
1851 if (ops->to_download_trace_state_variable == NULL)
1852 ops->to_download_trace_state_variable = delegate_download_trace_state_variable;
151f70f1
TT
1853 if (ops->to_enable_tracepoint == NULL)
1854 ops->to_enable_tracepoint = delegate_enable_tracepoint;
05c41993
TT
1855 if (ops->to_disable_tracepoint == NULL)
1856 ops->to_disable_tracepoint = delegate_disable_tracepoint;
86dd181d
TT
1857 if (ops->to_trace_set_readonly_regions == NULL)
1858 ops->to_trace_set_readonly_regions = delegate_trace_set_readonly_regions;
25da2e80
TT
1859 if (ops->to_trace_start == NULL)
1860 ops->to_trace_start = delegate_trace_start;
4072d4ff
TT
1861 if (ops->to_get_trace_status == NULL)
1862 ops->to_get_trace_status = delegate_get_trace_status;
6fea14cd
TT
1863 if (ops->to_get_tracepoint_status == NULL)
1864 ops->to_get_tracepoint_status = delegate_get_tracepoint_status;
e51c07ea
TT
1865 if (ops->to_trace_stop == NULL)
1866 ops->to_trace_stop = delegate_trace_stop;
afc94e66
TT
1867 if (ops->to_trace_find == NULL)
1868 ops->to_trace_find = delegate_trace_find;
959bcd0b
TT
1869 if (ops->to_get_trace_state_variable_value == NULL)
1870 ops->to_get_trace_state_variable_value = delegate_get_trace_state_variable_value;
a2e6c147
TT
1871 if (ops->to_save_trace_data == NULL)
1872 ops->to_save_trace_data = delegate_save_trace_data;
1e949b00
TT
1873 if (ops->to_upload_tracepoints == NULL)
1874 ops->to_upload_tracepoints = delegate_upload_tracepoints;
08120467
TT
1875 if (ops->to_upload_trace_state_variables == NULL)
1876 ops->to_upload_trace_state_variables = delegate_upload_trace_state_variables;
ace92e7d
TT
1877 if (ops->to_get_raw_trace_data == NULL)
1878 ops->to_get_raw_trace_data = delegate_get_raw_trace_data;
9249843f
TT
1879 if (ops->to_get_min_fast_tracepoint_insn_len == NULL)
1880 ops->to_get_min_fast_tracepoint_insn_len = delegate_get_min_fast_tracepoint_insn_len;
0bcfeddf
TT
1881 if (ops->to_set_disconnected_tracing == NULL)
1882 ops->to_set_disconnected_tracing = delegate_set_disconnected_tracing;
8d526939
TT
1883 if (ops->to_set_circular_trace_buffer == NULL)
1884 ops->to_set_circular_trace_buffer = delegate_set_circular_trace_buffer;
91df8d1d
TT
1885 if (ops->to_set_trace_buffer_size == NULL)
1886 ops->to_set_trace_buffer_size = delegate_set_trace_buffer_size;
8586ccaa
TT
1887 if (ops->to_set_trace_notes == NULL)
1888 ops->to_set_trace_notes = delegate_set_trace_notes;
9e538d0d
TT
1889 if (ops->to_core_of_thread == NULL)
1890 ops->to_core_of_thread = delegate_core_of_thread;
eb276a6b
TT
1891 if (ops->to_verify_memory == NULL)
1892 ops->to_verify_memory = delegate_verify_memory;
22bcceee
TT
1893 if (ops->to_get_tib_address == NULL)
1894 ops->to_get_tib_address = delegate_get_tib_address;
dcd6917f
TT
1895 if (ops->to_set_permissions == NULL)
1896 ops->to_set_permissions = delegate_set_permissions;
4c3e4425
TT
1897 if (ops->to_static_tracepoint_marker_at == NULL)
1898 ops->to_static_tracepoint_marker_at = delegate_static_tracepoint_marker_at;
d6522a22
TT
1899 if (ops->to_static_tracepoint_markers_by_strid == NULL)
1900 ops->to_static_tracepoint_markers_by_strid = delegate_static_tracepoint_markers_by_strid;
92155eeb
TT
1901 if (ops->to_traceframe_info == NULL)
1902 ops->to_traceframe_info = delegate_traceframe_info;
d9db5b21
TT
1903 if (ops->to_use_agent == NULL)
1904 ops->to_use_agent = delegate_use_agent;
9a7d8b48
TT
1905 if (ops->to_can_use_agent == NULL)
1906 ops->to_can_use_agent = delegate_can_use_agent;
46917d26
TT
1907 if (ops->to_supports_btrace == NULL)
1908 ops->to_supports_btrace = delegate_supports_btrace;
6dc7fcf4
TT
1909 if (ops->to_enable_btrace == NULL)
1910 ops->to_enable_btrace = delegate_enable_btrace;
8dc292d3
TT
1911 if (ops->to_disable_btrace == NULL)
1912 ops->to_disable_btrace = delegate_disable_btrace;
9ace480d
TT
1913 if (ops->to_teardown_btrace == NULL)
1914 ops->to_teardown_btrace = delegate_teardown_btrace;
eb5b20d4
TT
1915 if (ops->to_read_btrace == NULL)
1916 ops->to_read_btrace = delegate_read_btrace;
ee97f592
TT
1917 if (ops->to_stop_recording == NULL)
1918 ops->to_stop_recording = delegate_stop_recording;
a432721e
TT
1919 if (ops->to_info_record == NULL)
1920 ops->to_info_record = delegate_info_record;
f09e2107
TT
1921 if (ops->to_save_record == NULL)
1922 ops->to_save_record = delegate_save_record;
07366925
TT
1923 if (ops->to_delete_record == NULL)
1924 ops->to_delete_record = delegate_delete_record;
dd2e9d25
TT
1925 if (ops->to_record_is_replaying == NULL)
1926 ops->to_record_is_replaying = delegate_record_is_replaying;
671e76cc
TT
1927 if (ops->to_goto_record_begin == NULL)
1928 ops->to_goto_record_begin = delegate_goto_record_begin;
e9179bb3
TT
1929 if (ops->to_goto_record_end == NULL)
1930 ops->to_goto_record_end = delegate_goto_record_end;
05969c84
TT
1931 if (ops->to_goto_record == NULL)
1932 ops->to_goto_record = delegate_goto_record;
3679abfa
TT
1933 if (ops->to_insn_history == NULL)
1934 ops->to_insn_history = delegate_insn_history;
8444ab58
TT
1935 if (ops->to_insn_history_from == NULL)
1936 ops->to_insn_history_from = delegate_insn_history_from;
c29302cc
TT
1937 if (ops->to_insn_history_range == NULL)
1938 ops->to_insn_history_range = delegate_insn_history_range;
170049d4
TT
1939 if (ops->to_call_history == NULL)
1940 ops->to_call_history = delegate_call_history;
16fc27d6
TT
1941 if (ops->to_call_history_from == NULL)
1942 ops->to_call_history_from = delegate_call_history_from;
115d9817
TT
1943 if (ops->to_call_history_range == NULL)
1944 ops->to_call_history_range = delegate_call_history_range;
0de91722
TT
1945 if (ops->to_augmented_libraries_svr4_read == NULL)
1946 ops->to_augmented_libraries_svr4_read = delegate_augmented_libraries_svr4_read;
ac01945b
TT
1947 if (ops->to_get_unwinder == NULL)
1948 ops->to_get_unwinder = delegate_get_unwinder;
1949 if (ops->to_get_tailcall_unwinder == NULL)
1950 ops->to_get_tailcall_unwinder = delegate_get_tailcall_unwinder;
c0eca49f
TT
1951 if (ops->to_decr_pc_after_break == NULL)
1952 ops->to_decr_pc_after_break = delegate_decr_pc_after_break;
5fff78c4
MM
1953 if (ops->to_prepare_to_generate_core == NULL)
1954 ops->to_prepare_to_generate_core = delegate_prepare_to_generate_core;
1955 if (ops->to_done_generating_core == NULL)
1956 ops->to_done_generating_core = delegate_done_generating_core;
1101cb7b
TT
1957}
1958
1959static void
1960install_dummy_methods (struct target_ops *ops)
1961{
bebd3233 1962 ops->to_post_attach = tdefault_post_attach;
09da0d0a 1963 ops->to_detach = tdefault_detach;
86a0854a 1964 ops->to_disconnect = tdefault_disconnect;
6b84065d
TT
1965 ops->to_resume = tdefault_resume;
1966 ops->to_wait = tdefault_wait;
ad5989bd 1967 ops->to_fetch_registers = tdefault_fetch_registers;
6b84065d 1968 ops->to_store_registers = tdefault_store_registers;
6c628163 1969 ops->to_prepare_to_store = tdefault_prepare_to_store;
f86e59b2 1970 ops->to_files_info = tdefault_files_info;
6b84065d
TT
1971 ops->to_insert_breakpoint = memory_insert_breakpoint;
1972 ops->to_remove_breakpoint = memory_remove_breakpoint;
52b51d06 1973 ops->to_can_use_hw_breakpoint = tdefault_can_use_hw_breakpoint;
a134316b 1974 ops->to_ranged_break_num_registers = tdefault_ranged_break_num_registers;
61b371f9 1975 ops->to_insert_hw_breakpoint = tdefault_insert_hw_breakpoint;
418dabac 1976 ops->to_remove_hw_breakpoint = tdefault_remove_hw_breakpoint;
61dd109f 1977 ops->to_remove_watchpoint = tdefault_remove_watchpoint;
016facd4 1978 ops->to_insert_watchpoint = tdefault_insert_watchpoint;
cd4ae029 1979 ops->to_insert_mask_watchpoint = tdefault_insert_mask_watchpoint;
8b1c364c 1980 ops->to_remove_mask_watchpoint = tdefault_remove_mask_watchpoint;
6b84065d
TT
1981 ops->to_stopped_by_watchpoint = tdefault_stopped_by_watchpoint;
1982 ops->to_stopped_data_address = tdefault_stopped_data_address;
65f160a9 1983 ops->to_watchpoint_addr_within_range = default_watchpoint_addr_within_range;
d03655e4 1984 ops->to_region_ok_for_hw_watchpoint = default_region_ok_for_hw_watchpoint;
77cdffe9 1985 ops->to_can_accel_watchpoint_condition = tdefault_can_accel_watchpoint_condition;
6c7e5e5c 1986 ops->to_masked_watch_num_registers = tdefault_masked_watch_num_registers;
0343661d 1987 ops->to_terminal_init = tdefault_terminal_init;
ddeaacc9 1988 ops->to_terminal_inferior = tdefault_terminal_inferior;
74fcbef9 1989 ops->to_terminal_ours_for_output = tdefault_terminal_ours_for_output;
e4a733f1 1990 ops->to_terminal_ours = tdefault_terminal_ours;
c6ea8f79 1991 ops->to_terminal_save_ours = tdefault_terminal_save_ours;
e19e919f 1992 ops->to_terminal_info = default_terminal_info;
423a4807 1993 ops->to_kill = tdefault_kill;
7634da87 1994 ops->to_load = tdefault_load;
340ba4bf 1995 ops->to_post_startup_inferior = tdefault_post_startup_inferior;
5958ebeb 1996 ops->to_insert_fork_catchpoint = tdefault_insert_fork_catchpoint;
e1a21fb7 1997 ops->to_remove_fork_catchpoint = tdefault_remove_fork_catchpoint;
7e18a8dc 1998 ops->to_insert_vfork_catchpoint = tdefault_insert_vfork_catchpoint;
95c3375e 1999 ops->to_remove_vfork_catchpoint = tdefault_remove_vfork_catchpoint;
098dba18 2000 ops->to_follow_fork = default_follow_fork;
62f64d7a 2001 ops->to_insert_exec_catchpoint = tdefault_insert_exec_catchpoint;
cda0f38c 2002 ops->to_remove_exec_catchpoint = tdefault_remove_exec_catchpoint;
6a9fa051 2003 ops->to_set_syscall_catchpoint = tdefault_set_syscall_catchpoint;
0db88c1d 2004 ops->to_has_exited = tdefault_has_exited;
8d657035 2005 ops->to_mourn_inferior = default_mourn_inferior;
e88ef65c 2006 ops->to_can_run = tdefault_can_run;
035cad7f 2007 ops->to_pass_signals = tdefault_pass_signals;
7d4f8efa 2008 ops->to_program_signals = tdefault_program_signals;
cbffc065 2009 ops->to_thread_alive = tdefault_thread_alive;
09b0dc2b 2010 ops->to_find_new_threads = tdefault_find_new_threads;
770234d3 2011 ops->to_pid_to_str = default_pid_to_str;
4a7e6dda 2012 ops->to_extra_thread_info = tdefault_extra_thread_info;
825828fc 2013 ops->to_thread_name = tdefault_thread_name;
46ee7e8d 2014 ops->to_stop = tdefault_stop;
a53f3625 2015 ops->to_rcmd = default_rcmd;
830ca330 2016 ops->to_pid_to_exec_file = tdefault_pid_to_exec_file;
d9cb0195 2017 ops->to_log_command = tdefault_log_command;
7e35c012 2018 ops->to_get_section_table = tdefault_get_section_table;
b3ccfe11
TT
2019 ops->to_can_async_p = tdefault_can_async_p;
2020 ops->to_is_async_p = tdefault_is_async_p;
6b84065d 2021 ops->to_async = tdefault_async;
b3ccfe11 2022 ops->to_supports_non_stop = tdefault_supports_non_stop;
0b5a2719 2023 ops->to_find_memory_regions = dummy_find_memory_regions;
16f796b1 2024 ops->to_make_corefile_notes = dummy_make_corefile_notes;
3dbafbbb 2025 ops->to_get_bookmark = tdefault_get_bookmark;
9bb9d61d 2026 ops->to_goto_bookmark = tdefault_goto_bookmark;
f0f9ff95 2027 ops->to_get_thread_local_address = tdefault_get_thread_local_address;
6b84065d 2028 ops->to_xfer_partial = tdefault_xfer_partial;
6b2c5a57 2029 ops->to_memory_map = tdefault_memory_map;
e8a6c6ac 2030 ops->to_flash_erase = tdefault_flash_erase;
f6fb2925 2031 ops->to_flash_done = tdefault_flash_done;
2117c711 2032 ops->to_read_description = tdefault_read_description;
4229b31d 2033 ops->to_get_ada_task_ptid = default_get_ada_task_ptid;
8de71aab 2034 ops->to_auxv_parse = default_auxv_parse;
58a5184e 2035 ops->to_search_memory = default_search_memory;
53e1cfc7 2036 ops->to_can_execute_reverse = tdefault_can_execute_reverse;
fe31bf5b 2037 ops->to_execution_direction = default_execution_direction;
a7304748 2038 ops->to_supports_multi_process = tdefault_supports_multi_process;
aab1b22d 2039 ops->to_supports_enable_disable_tracepoint = tdefault_supports_enable_disable_tracepoint;
9409d39e 2040 ops->to_supports_string_tracing = tdefault_supports_string_tracing;
ccfde2a0 2041 ops->to_supports_evaluation_of_breakpoint_conditions = tdefault_supports_evaluation_of_breakpoint_conditions;
843f59ed 2042 ops->to_can_run_breakpoint_commands = tdefault_can_run_breakpoint_commands;
43eba180 2043 ops->to_thread_architecture = default_thread_architecture;
8eaff7cd 2044 ops->to_thread_address_space = default_thread_address_space;
5536135b 2045 ops->to_trace_init = tdefault_trace_init;
9a980a22 2046 ops->to_download_tracepoint = tdefault_download_tracepoint;
719acc4a 2047 ops->to_can_download_tracepoint = tdefault_can_download_tracepoint;
94eb98b9 2048 ops->to_download_trace_state_variable = tdefault_download_trace_state_variable;
151f70f1 2049 ops->to_enable_tracepoint = tdefault_enable_tracepoint;
05c41993 2050 ops->to_disable_tracepoint = tdefault_disable_tracepoint;
86dd181d 2051 ops->to_trace_set_readonly_regions = tdefault_trace_set_readonly_regions;
25da2e80 2052 ops->to_trace_start = tdefault_trace_start;
4072d4ff 2053 ops->to_get_trace_status = tdefault_get_trace_status;
6fea14cd 2054 ops->to_get_tracepoint_status = tdefault_get_tracepoint_status;
e51c07ea 2055 ops->to_trace_stop = tdefault_trace_stop;
afc94e66 2056 ops->to_trace_find = tdefault_trace_find;
959bcd0b 2057 ops->to_get_trace_state_variable_value = tdefault_get_trace_state_variable_value;
a2e6c147 2058 ops->to_save_trace_data = tdefault_save_trace_data;
1e949b00 2059 ops->to_upload_tracepoints = tdefault_upload_tracepoints;
08120467 2060 ops->to_upload_trace_state_variables = tdefault_upload_trace_state_variables;
ace92e7d 2061 ops->to_get_raw_trace_data = tdefault_get_raw_trace_data;
9249843f 2062 ops->to_get_min_fast_tracepoint_insn_len = tdefault_get_min_fast_tracepoint_insn_len;
0bcfeddf 2063 ops->to_set_disconnected_tracing = tdefault_set_disconnected_tracing;
8d526939 2064 ops->to_set_circular_trace_buffer = tdefault_set_circular_trace_buffer;
91df8d1d 2065 ops->to_set_trace_buffer_size = tdefault_set_trace_buffer_size;
8586ccaa 2066 ops->to_set_trace_notes = tdefault_set_trace_notes;
9e538d0d 2067 ops->to_core_of_thread = tdefault_core_of_thread;
936d2992 2068 ops->to_verify_memory = default_verify_memory;
22bcceee 2069 ops->to_get_tib_address = tdefault_get_tib_address;
dcd6917f 2070 ops->to_set_permissions = tdefault_set_permissions;
4c3e4425 2071 ops->to_static_tracepoint_marker_at = tdefault_static_tracepoint_marker_at;
d6522a22 2072 ops->to_static_tracepoint_markers_by_strid = tdefault_static_tracepoint_markers_by_strid;
92155eeb 2073 ops->to_traceframe_info = tdefault_traceframe_info;
d9db5b21 2074 ops->to_use_agent = tdefault_use_agent;
9a7d8b48 2075 ops->to_can_use_agent = tdefault_can_use_agent;
46917d26 2076 ops->to_supports_btrace = tdefault_supports_btrace;
6dc7fcf4 2077 ops->to_enable_btrace = tdefault_enable_btrace;
8dc292d3 2078 ops->to_disable_btrace = tdefault_disable_btrace;
9ace480d 2079 ops->to_teardown_btrace = tdefault_teardown_btrace;
eb5b20d4 2080 ops->to_read_btrace = tdefault_read_btrace;
ee97f592 2081 ops->to_stop_recording = tdefault_stop_recording;
a432721e 2082 ops->to_info_record = tdefault_info_record;
f09e2107 2083 ops->to_save_record = tdefault_save_record;
07366925 2084 ops->to_delete_record = tdefault_delete_record;
dd2e9d25 2085 ops->to_record_is_replaying = tdefault_record_is_replaying;
671e76cc 2086 ops->to_goto_record_begin = tdefault_goto_record_begin;
e9179bb3 2087 ops->to_goto_record_end = tdefault_goto_record_end;
05969c84 2088 ops->to_goto_record = tdefault_goto_record;
3679abfa 2089 ops->to_insn_history = tdefault_insn_history;
8444ab58 2090 ops->to_insn_history_from = tdefault_insn_history_from;
c29302cc 2091 ops->to_insn_history_range = tdefault_insn_history_range;
170049d4 2092 ops->to_call_history = tdefault_call_history;
16fc27d6 2093 ops->to_call_history_from = tdefault_call_history_from;
115d9817 2094 ops->to_call_history_range = tdefault_call_history_range;
0de91722 2095 ops->to_augmented_libraries_svr4_read = tdefault_augmented_libraries_svr4_read;
ac01945b
TT
2096 ops->to_get_unwinder = tdefault_get_unwinder;
2097 ops->to_get_tailcall_unwinder = tdefault_get_tailcall_unwinder;
c0eca49f 2098 ops->to_decr_pc_after_break = default_target_decr_pc_after_break;
5fff78c4
MM
2099 ops->to_prepare_to_generate_core = tdefault_prepare_to_generate_core;
2100 ops->to_done_generating_core = tdefault_done_generating_core;
1101cb7b 2101}
This page took 0.274637 seconds and 4 git commands to generate.