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