convert to_program_signals
[platform/upstream/binutils.git] / gdb / target-delegates.c
1 /* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */
2 /* vi:set ro: */
3
4 /* To regenerate this file, run:*/
5 /*      make-target-delegates target.h > target-delegates.c */
6 static void
7 delegate_attach (struct target_ops *self, char *arg1, int arg2)
8 {
9   self = self->beneath;
10   self->to_attach (self, arg1, arg2);
11 }
12
13 static void
14 delegate_post_attach (struct target_ops *self, int arg1)
15 {
16   self = self->beneath;
17   self->to_post_attach (self, arg1);
18 }
19
20 static void
21 tdefault_post_attach (struct target_ops *self, int arg1)
22 {
23 }
24
25 static void
26 delegate_detach (struct target_ops *self, const char *arg1, int arg2)
27 {
28   self = self->beneath;
29   self->to_detach (self, arg1, arg2);
30 }
31
32 static void
33 tdefault_detach (struct target_ops *self, const char *arg1, int arg2)
34 {
35 }
36
37 static void
38 delegate_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
39 {
40   self = self->beneath;
41   self->to_resume (self, arg1, arg2, arg3);
42 }
43
44 static void
45 tdefault_resume (struct target_ops *self, ptid_t arg1, int arg2, enum gdb_signal arg3)
46 {
47   noprocess ();
48 }
49
50 static ptid_t
51 delegate_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
52 {
53   self = self->beneath;
54   return self->to_wait (self, arg1, arg2, arg3);
55 }
56
57 static ptid_t
58 tdefault_wait (struct target_ops *self, ptid_t arg1, struct target_waitstatus *arg2, int arg3)
59 {
60   noprocess ();
61 }
62
63 static void
64 delegate_fetch_registers (struct target_ops *self, struct regcache *arg1, int arg2)
65 {
66   self = self->beneath;
67   self->to_fetch_registers (self, arg1, arg2);
68 }
69
70 static void
71 tdefault_fetch_registers (struct target_ops *self, struct regcache *arg1, int arg2)
72 {
73 }
74
75 static void
76 delegate_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
77 {
78   self = self->beneath;
79   self->to_store_registers (self, arg1, arg2);
80 }
81
82 static void
83 tdefault_store_registers (struct target_ops *self, struct regcache *arg1, int arg2)
84 {
85   noprocess ();
86 }
87
88 static void
89 delegate_prepare_to_store (struct target_ops *self, struct regcache *arg1)
90 {
91   self = self->beneath;
92   self->to_prepare_to_store (self, arg1);
93 }
94
95 static void
96 tdefault_prepare_to_store (struct target_ops *self, struct regcache *arg1)
97 {
98   noprocess ();
99 }
100
101 static void
102 delegate_files_info (struct target_ops *self)
103 {
104   self = self->beneath;
105   self->to_files_info (self);
106 }
107
108 static void
109 tdefault_files_info (struct target_ops *self)
110 {
111 }
112
113 static int
114 delegate_insert_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
115 {
116   self = self->beneath;
117   return self->to_insert_breakpoint (self, arg1, arg2);
118 }
119
120 static int
121 delegate_remove_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
122 {
123   self = self->beneath;
124   return self->to_remove_breakpoint (self, arg1, arg2);
125 }
126
127 static int
128 delegate_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
129 {
130   self = self->beneath;
131   return self->to_can_use_hw_breakpoint (self, arg1, arg2, arg3);
132 }
133
134 static int
135 tdefault_can_use_hw_breakpoint (struct target_ops *self, int arg1, int arg2, int arg3)
136 {
137   return 0;
138 }
139
140 static int
141 delegate_ranged_break_num_registers (struct target_ops *self)
142 {
143   self = self->beneath;
144   return self->to_ranged_break_num_registers (self);
145 }
146
147 static int
148 tdefault_ranged_break_num_registers (struct target_ops *self)
149 {
150   return -1;
151 }
152
153 static int
154 delegate_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
155 {
156   self = self->beneath;
157   return self->to_insert_hw_breakpoint (self, arg1, arg2);
158 }
159
160 static int
161 tdefault_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
162 {
163   return -1;
164 }
165
166 static int
167 delegate_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
168 {
169   self = self->beneath;
170   return self->to_remove_hw_breakpoint (self, arg1, arg2);
171 }
172
173 static int
174 tdefault_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *arg1, struct bp_target_info *arg2)
175 {
176   return -1;
177 }
178
179 static int
180 delegate_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
181 {
182   self = self->beneath;
183   return self->to_remove_watchpoint (self, arg1, arg2, arg3, arg4);
184 }
185
186 static int
187 tdefault_remove_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
188 {
189   return -1;
190 }
191
192 static int
193 delegate_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
194 {
195   self = self->beneath;
196   return self->to_insert_watchpoint (self, arg1, arg2, arg3, arg4);
197 }
198
199 static int
200 tdefault_insert_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
201 {
202   return -1;
203 }
204
205 static int
206 delegate_insert_mask_watchpoint (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
207 {
208   self = self->beneath;
209   return self->to_insert_mask_watchpoint (self, arg1, arg2, arg3);
210 }
211
212 static int
213 tdefault_insert_mask_watchpoint (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
214 {
215   return 1;
216 }
217
218 static int
219 delegate_remove_mask_watchpoint (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
220 {
221   self = self->beneath;
222   return self->to_remove_mask_watchpoint (self, arg1, arg2, arg3);
223 }
224
225 static int
226 tdefault_remove_mask_watchpoint (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
227 {
228   return 1;
229 }
230
231 static int
232 delegate_stopped_by_watchpoint (struct target_ops *self)
233 {
234   self = self->beneath;
235   return self->to_stopped_by_watchpoint (self);
236 }
237
238 static int
239 tdefault_stopped_by_watchpoint (struct target_ops *self)
240 {
241   return 0;
242 }
243
244 static int
245 delegate_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
246 {
247   self = self->beneath;
248   return self->to_stopped_data_address (self, arg1);
249 }
250
251 static int
252 tdefault_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
253 {
254   return 0;
255 }
256
257 static int
258 delegate_watchpoint_addr_within_range (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
259 {
260   self = self->beneath;
261   return self->to_watchpoint_addr_within_range (self, arg1, arg2, arg3);
262 }
263
264 static int
265 delegate_region_ok_for_hw_watchpoint (struct target_ops *self, CORE_ADDR arg1, int arg2)
266 {
267   self = self->beneath;
268   return self->to_region_ok_for_hw_watchpoint (self, arg1, arg2);
269 }
270
271 static int
272 delegate_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
273 {
274   self = self->beneath;
275   return self->to_can_accel_watchpoint_condition (self, arg1, arg2, arg3, arg4);
276 }
277
278 static int
279 tdefault_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
280 {
281   return 0;
282 }
283
284 static int
285 delegate_masked_watch_num_registers (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2)
286 {
287   self = self->beneath;
288   return self->to_masked_watch_num_registers (self, arg1, arg2);
289 }
290
291 static int
292 tdefault_masked_watch_num_registers (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2)
293 {
294   return -1;
295 }
296
297 static void
298 delegate_terminal_init (struct target_ops *self)
299 {
300   self = self->beneath;
301   self->to_terminal_init (self);
302 }
303
304 static void
305 tdefault_terminal_init (struct target_ops *self)
306 {
307 }
308
309 static void
310 delegate_terminal_inferior (struct target_ops *self)
311 {
312   self = self->beneath;
313   self->to_terminal_inferior (self);
314 }
315
316 static void
317 tdefault_terminal_inferior (struct target_ops *self)
318 {
319 }
320
321 static void
322 delegate_terminal_ours_for_output (struct target_ops *self)
323 {
324   self = self->beneath;
325   self->to_terminal_ours_for_output (self);
326 }
327
328 static void
329 tdefault_terminal_ours_for_output (struct target_ops *self)
330 {
331 }
332
333 static void
334 delegate_terminal_ours (struct target_ops *self)
335 {
336   self = self->beneath;
337   self->to_terminal_ours (self);
338 }
339
340 static void
341 tdefault_terminal_ours (struct target_ops *self)
342 {
343 }
344
345 static void
346 delegate_terminal_save_ours (struct target_ops *self)
347 {
348   self = self->beneath;
349   self->to_terminal_save_ours (self);
350 }
351
352 static void
353 tdefault_terminal_save_ours (struct target_ops *self)
354 {
355 }
356
357 static void
358 delegate_terminal_info (struct target_ops *self, const char *arg1, int arg2)
359 {
360   self = self->beneath;
361   self->to_terminal_info (self, arg1, arg2);
362 }
363
364 static void
365 delegate_kill (struct target_ops *self)
366 {
367   self = self->beneath;
368   self->to_kill (self);
369 }
370
371 static void
372 tdefault_kill (struct target_ops *self)
373 {
374   noprocess ();
375 }
376
377 static void
378 delegate_load (struct target_ops *self, char *arg1, int arg2)
379 {
380   self = self->beneath;
381   self->to_load (self, arg1, arg2);
382 }
383
384 static void
385 tdefault_load (struct target_ops *self, char *arg1, int arg2)
386 {
387   tcomplain ();
388 }
389
390 static void
391 delegate_post_startup_inferior (struct target_ops *self, ptid_t arg1)
392 {
393   self = self->beneath;
394   self->to_post_startup_inferior (self, arg1);
395 }
396
397 static void
398 tdefault_post_startup_inferior (struct target_ops *self, ptid_t arg1)
399 {
400 }
401
402 static int
403 delegate_insert_fork_catchpoint (struct target_ops *self, int arg1)
404 {
405   self = self->beneath;
406   return self->to_insert_fork_catchpoint (self, arg1);
407 }
408
409 static int
410 tdefault_insert_fork_catchpoint (struct target_ops *self, int arg1)
411 {
412   return 1;
413 }
414
415 static int
416 delegate_remove_fork_catchpoint (struct target_ops *self, int arg1)
417 {
418   self = self->beneath;
419   return self->to_remove_fork_catchpoint (self, arg1);
420 }
421
422 static int
423 tdefault_remove_fork_catchpoint (struct target_ops *self, int arg1)
424 {
425   return 1;
426 }
427
428 static int
429 delegate_insert_vfork_catchpoint (struct target_ops *self, int arg1)
430 {
431   self = self->beneath;
432   return self->to_insert_vfork_catchpoint (self, arg1);
433 }
434
435 static int
436 tdefault_insert_vfork_catchpoint (struct target_ops *self, int arg1)
437 {
438   return 1;
439 }
440
441 static int
442 delegate_remove_vfork_catchpoint (struct target_ops *self, int arg1)
443 {
444   self = self->beneath;
445   return self->to_remove_vfork_catchpoint (self, arg1);
446 }
447
448 static int
449 tdefault_remove_vfork_catchpoint (struct target_ops *self, int arg1)
450 {
451   return 1;
452 }
453
454 static int
455 delegate_follow_fork (struct target_ops *self, int arg1, int arg2)
456 {
457   self = self->beneath;
458   return self->to_follow_fork (self, arg1, arg2);
459 }
460
461 static int
462 delegate_insert_exec_catchpoint (struct target_ops *self, int arg1)
463 {
464   self = self->beneath;
465   return self->to_insert_exec_catchpoint (self, arg1);
466 }
467
468 static int
469 tdefault_insert_exec_catchpoint (struct target_ops *self, int arg1)
470 {
471   return 1;
472 }
473
474 static int
475 delegate_remove_exec_catchpoint (struct target_ops *self, int arg1)
476 {
477   self = self->beneath;
478   return self->to_remove_exec_catchpoint (self, arg1);
479 }
480
481 static int
482 tdefault_remove_exec_catchpoint (struct target_ops *self, int arg1)
483 {
484   return 1;
485 }
486
487 static int
488 delegate_set_syscall_catchpoint (struct target_ops *self, int arg1, int arg2, int arg3, int arg4, int *arg5)
489 {
490   self = self->beneath;
491   return self->to_set_syscall_catchpoint (self, arg1, arg2, arg3, arg4, arg5);
492 }
493
494 static int
495 tdefault_set_syscall_catchpoint (struct target_ops *self, int arg1, int arg2, int arg3, int arg4, int *arg5)
496 {
497   return 1;
498 }
499
500 static int
501 delegate_has_exited (struct target_ops *self, int arg1, int arg2, int *arg3)
502 {
503   self = self->beneath;
504   return self->to_has_exited (self, arg1, arg2, arg3);
505 }
506
507 static int
508 tdefault_has_exited (struct target_ops *self, int arg1, int arg2, int *arg3)
509 {
510   return 0;
511 }
512
513 static void
514 delegate_mourn_inferior (struct target_ops *self)
515 {
516   self = self->beneath;
517   self->to_mourn_inferior (self);
518 }
519
520 static void
521 delegate_pass_signals (struct target_ops *self, int arg1, unsigned char *arg2)
522 {
523   self = self->beneath;
524   self->to_pass_signals (self, arg1, arg2);
525 }
526
527 static void
528 tdefault_pass_signals (struct target_ops *self, int arg1, unsigned char *arg2)
529 {
530 }
531
532 static void
533 delegate_program_signals (struct target_ops *self, int arg1, unsigned char *arg2)
534 {
535   self = self->beneath;
536   self->to_program_signals (self, arg1, arg2);
537 }
538
539 static void
540 tdefault_program_signals (struct target_ops *self, int arg1, unsigned char *arg2)
541 {
542 }
543
544 static char *
545 delegate_extra_thread_info (struct target_ops *self, struct thread_info *arg1)
546 {
547   self = self->beneath;
548   return self->to_extra_thread_info (self, arg1);
549 }
550
551 static char *
552 tdefault_extra_thread_info (struct target_ops *self, struct thread_info *arg1)
553 {
554   return 0;
555 }
556
557 static char *
558 delegate_thread_name (struct target_ops *self, struct thread_info *arg1)
559 {
560   self = self->beneath;
561   return self->to_thread_name (self, arg1);
562 }
563
564 static char *
565 tdefault_thread_name (struct target_ops *self, struct thread_info *arg1)
566 {
567   return 0;
568 }
569
570 static void
571 delegate_stop (struct target_ops *self, ptid_t arg1)
572 {
573   self = self->beneath;
574   self->to_stop (self, arg1);
575 }
576
577 static void
578 tdefault_stop (struct target_ops *self, ptid_t arg1)
579 {
580 }
581
582 static void
583 delegate_rcmd (struct target_ops *self, char *arg1, struct ui_file *arg2)
584 {
585   self = self->beneath;
586   self->to_rcmd (self, arg1, arg2);
587 }
588
589 static char *
590 delegate_pid_to_exec_file (struct target_ops *self, int arg1)
591 {
592   self = self->beneath;
593   return self->to_pid_to_exec_file (self, arg1);
594 }
595
596 static char *
597 tdefault_pid_to_exec_file (struct target_ops *self, int arg1)
598 {
599   return 0;
600 }
601
602 static void
603 delegate_log_command (struct target_ops *self, const char *arg1)
604 {
605   self = self->beneath;
606   self->to_log_command (self, arg1);
607 }
608
609 static void
610 tdefault_log_command (struct target_ops *self, const char *arg1)
611 {
612 }
613
614 static int
615 delegate_can_async_p (struct target_ops *self)
616 {
617   self = self->beneath;
618   return self->to_can_async_p (self);
619 }
620
621 static int
622 delegate_is_async_p (struct target_ops *self)
623 {
624   self = self->beneath;
625   return self->to_is_async_p (self);
626 }
627
628 static void
629 delegate_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
630 {
631   self = self->beneath;
632   self->to_async (self, arg1, arg2);
633 }
634
635 static void
636 tdefault_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
637 {
638   tcomplain ();
639 }
640
641 static int
642 delegate_find_memory_regions (struct target_ops *self, find_memory_region_ftype arg1, void *arg2)
643 {
644   self = self->beneath;
645   return self->to_find_memory_regions (self, arg1, arg2);
646 }
647
648 static char * 
649 delegate_make_corefile_notes (struct target_ops *self, bfd *arg1, int *arg2)
650 {
651   self = self->beneath;
652   return self->to_make_corefile_notes (self, arg1, arg2);
653 }
654
655 static gdb_byte * 
656 delegate_get_bookmark (struct target_ops *self, char *arg1, int arg2)
657 {
658   self = self->beneath;
659   return self->to_get_bookmark (self, arg1, arg2);
660 }
661
662 static gdb_byte * 
663 tdefault_get_bookmark (struct target_ops *self, char *arg1, int arg2)
664 {
665   tcomplain ();
666 }
667
668 static void
669 delegate_goto_bookmark (struct target_ops *self, gdb_byte *arg1, int arg2)
670 {
671   self = self->beneath;
672   self->to_goto_bookmark (self, arg1, arg2);
673 }
674
675 static void
676 tdefault_goto_bookmark (struct target_ops *self, gdb_byte *arg1, int arg2)
677 {
678   tcomplain ();
679 }
680
681 static enum target_xfer_status 
682 delegate_xfer_partial (struct target_ops *self, enum target_object  arg1, const char *arg2, gdb_byte *arg3, const gdb_byte *arg4, ULONGEST arg5, ULONGEST arg6, ULONGEST *arg7)
683 {
684   self = self->beneath;
685   return self->to_xfer_partial (self, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
686 }
687
688 static enum target_xfer_status 
689 tdefault_xfer_partial (struct target_ops *self, enum target_object  arg1, const char *arg2, gdb_byte *arg3, const gdb_byte *arg4, ULONGEST arg5, ULONGEST arg6, ULONGEST *arg7)
690 {
691   return TARGET_XFER_E_IO;
692 }
693
694 static ptid_t
695 delegate_get_ada_task_ptid (struct target_ops *self, long arg1, long arg2)
696 {
697   self = self->beneath;
698   return self->to_get_ada_task_ptid (self, arg1, arg2);
699 }
700
701 static int
702 delegate_can_execute_reverse (struct target_ops *self)
703 {
704   self = self->beneath;
705   return self->to_can_execute_reverse (self);
706 }
707
708 static int
709 tdefault_can_execute_reverse (struct target_ops *self)
710 {
711   return 0;
712 }
713
714 static enum exec_direction_kind 
715 delegate_execution_direction (struct target_ops *self)
716 {
717   self = self->beneath;
718   return self->to_execution_direction (self);
719 }
720
721 static int
722 delegate_supports_multi_process (struct target_ops *self)
723 {
724   self = self->beneath;
725   return self->to_supports_multi_process (self);
726 }
727
728 static int
729 tdefault_supports_multi_process (struct target_ops *self)
730 {
731   return 0;
732 }
733
734 static int
735 delegate_supports_enable_disable_tracepoint (struct target_ops *self)
736 {
737   self = self->beneath;
738   return self->to_supports_enable_disable_tracepoint (self);
739 }
740
741 static int
742 tdefault_supports_enable_disable_tracepoint (struct target_ops *self)
743 {
744   return 0;
745 }
746
747 static int
748 delegate_supports_string_tracing (struct target_ops *self)
749 {
750   self = self->beneath;
751   return self->to_supports_string_tracing (self);
752 }
753
754 static int
755 tdefault_supports_string_tracing (struct target_ops *self)
756 {
757   return 0;
758 }
759
760 static int
761 delegate_supports_evaluation_of_breakpoint_conditions (struct target_ops *self)
762 {
763   self = self->beneath;
764   return self->to_supports_evaluation_of_breakpoint_conditions (self);
765 }
766
767 static int
768 tdefault_supports_evaluation_of_breakpoint_conditions (struct target_ops *self)
769 {
770   return 0;
771 }
772
773 static int
774 delegate_can_run_breakpoint_commands (struct target_ops *self)
775 {
776   self = self->beneath;
777   return self->to_can_run_breakpoint_commands (self);
778 }
779
780 static int
781 tdefault_can_run_breakpoint_commands (struct target_ops *self)
782 {
783   return 0;
784 }
785
786 static struct gdbarch *
787 delegate_thread_architecture (struct target_ops *self, ptid_t arg1)
788 {
789   self = self->beneath;
790   return self->to_thread_architecture (self, arg1);
791 }
792
793 static void
794 delegate_trace_init (struct target_ops *self)
795 {
796   self = self->beneath;
797   self->to_trace_init (self);
798 }
799
800 static void
801 tdefault_trace_init (struct target_ops *self)
802 {
803   tcomplain ();
804 }
805
806 static void
807 delegate_download_tracepoint (struct target_ops *self, struct bp_location *arg1)
808 {
809   self = self->beneath;
810   self->to_download_tracepoint (self, arg1);
811 }
812
813 static void
814 tdefault_download_tracepoint (struct target_ops *self, struct bp_location *arg1)
815 {
816   tcomplain ();
817 }
818
819 static int
820 delegate_can_download_tracepoint (struct target_ops *self)
821 {
822   self = self->beneath;
823   return self->to_can_download_tracepoint (self);
824 }
825
826 static int
827 tdefault_can_download_tracepoint (struct target_ops *self)
828 {
829   return 0;
830 }
831
832 static void
833 delegate_download_trace_state_variable (struct target_ops *self, struct trace_state_variable *arg1)
834 {
835   self = self->beneath;
836   self->to_download_trace_state_variable (self, arg1);
837 }
838
839 static void
840 tdefault_download_trace_state_variable (struct target_ops *self, struct trace_state_variable *arg1)
841 {
842   tcomplain ();
843 }
844
845 static void
846 delegate_enable_tracepoint (struct target_ops *self, struct bp_location *arg1)
847 {
848   self = self->beneath;
849   self->to_enable_tracepoint (self, arg1);
850 }
851
852 static void
853 tdefault_enable_tracepoint (struct target_ops *self, struct bp_location *arg1)
854 {
855   tcomplain ();
856 }
857
858 static void
859 delegate_disable_tracepoint (struct target_ops *self, struct bp_location *arg1)
860 {
861   self = self->beneath;
862   self->to_disable_tracepoint (self, arg1);
863 }
864
865 static void
866 tdefault_disable_tracepoint (struct target_ops *self, struct bp_location *arg1)
867 {
868   tcomplain ();
869 }
870
871 static void
872 delegate_trace_set_readonly_regions (struct target_ops *self)
873 {
874   self = self->beneath;
875   self->to_trace_set_readonly_regions (self);
876 }
877
878 static void
879 tdefault_trace_set_readonly_regions (struct target_ops *self)
880 {
881   tcomplain ();
882 }
883
884 static void
885 delegate_trace_start (struct target_ops *self)
886 {
887   self = self->beneath;
888   self->to_trace_start (self);
889 }
890
891 static void
892 tdefault_trace_start (struct target_ops *self)
893 {
894   tcomplain ();
895 }
896
897 static int
898 delegate_get_trace_status (struct target_ops *self, struct trace_status *arg1)
899 {
900   self = self->beneath;
901   return self->to_get_trace_status (self, arg1);
902 }
903
904 static int
905 tdefault_get_trace_status (struct target_ops *self, struct trace_status *arg1)
906 {
907   return -1;
908 }
909
910 static void
911 delegate_get_tracepoint_status (struct target_ops *self, struct breakpoint *arg1, struct uploaded_tp *arg2)
912 {
913   self = self->beneath;
914   self->to_get_tracepoint_status (self, arg1, arg2);
915 }
916
917 static void
918 tdefault_get_tracepoint_status (struct target_ops *self, struct breakpoint *arg1, struct uploaded_tp *arg2)
919 {
920   tcomplain ();
921 }
922
923 static void
924 delegate_trace_stop (struct target_ops *self)
925 {
926   self = self->beneath;
927   self->to_trace_stop (self);
928 }
929
930 static void
931 tdefault_trace_stop (struct target_ops *self)
932 {
933   tcomplain ();
934 }
935
936 static int
937 delegate_trace_find (struct target_ops *self, enum trace_find_type  arg1, int arg2, CORE_ADDR arg3, CORE_ADDR arg4, int *arg5)
938 {
939   self = self->beneath;
940   return self->to_trace_find (self, arg1, arg2, arg3, arg4, arg5);
941 }
942
943 static int
944 tdefault_trace_find (struct target_ops *self, enum trace_find_type  arg1, int arg2, CORE_ADDR arg3, CORE_ADDR arg4, int *arg5)
945 {
946   return -1;
947 }
948
949 static int
950 delegate_get_trace_state_variable_value (struct target_ops *self, int arg1, LONGEST *arg2)
951 {
952   self = self->beneath;
953   return self->to_get_trace_state_variable_value (self, arg1, arg2);
954 }
955
956 static int
957 tdefault_get_trace_state_variable_value (struct target_ops *self, int arg1, LONGEST *arg2)
958 {
959   return 0;
960 }
961
962 static int
963 delegate_save_trace_data (struct target_ops *self, const char *arg1)
964 {
965   self = self->beneath;
966   return self->to_save_trace_data (self, arg1);
967 }
968
969 static int
970 tdefault_save_trace_data (struct target_ops *self, const char *arg1)
971 {
972   tcomplain ();
973 }
974
975 static int
976 delegate_upload_tracepoints (struct target_ops *self, struct uploaded_tp **arg1)
977 {
978   self = self->beneath;
979   return self->to_upload_tracepoints (self, arg1);
980 }
981
982 static int
983 tdefault_upload_tracepoints (struct target_ops *self, struct uploaded_tp **arg1)
984 {
985   return 0;
986 }
987
988 static int
989 delegate_upload_trace_state_variables (struct target_ops *self, struct uploaded_tsv **arg1)
990 {
991   self = self->beneath;
992   return self->to_upload_trace_state_variables (self, arg1);
993 }
994
995 static int
996 tdefault_upload_trace_state_variables (struct target_ops *self, struct uploaded_tsv **arg1)
997 {
998   return 0;
999 }
1000
1001 static LONGEST
1002 delegate_get_raw_trace_data (struct target_ops *self, gdb_byte *arg1, ULONGEST arg2, LONGEST arg3)
1003 {
1004   self = self->beneath;
1005   return self->to_get_raw_trace_data (self, arg1, arg2, arg3);
1006 }
1007
1008 static LONGEST
1009 tdefault_get_raw_trace_data (struct target_ops *self, gdb_byte *arg1, ULONGEST arg2, LONGEST arg3)
1010 {
1011   tcomplain ();
1012 }
1013
1014 static int
1015 delegate_get_min_fast_tracepoint_insn_len (struct target_ops *self)
1016 {
1017   self = self->beneath;
1018   return self->to_get_min_fast_tracepoint_insn_len (self);
1019 }
1020
1021 static int
1022 tdefault_get_min_fast_tracepoint_insn_len (struct target_ops *self)
1023 {
1024   return -1;
1025 }
1026
1027 static void
1028 delegate_set_disconnected_tracing (struct target_ops *self, int arg1)
1029 {
1030   self = self->beneath;
1031   self->to_set_disconnected_tracing (self, arg1);
1032 }
1033
1034 static void
1035 tdefault_set_disconnected_tracing (struct target_ops *self, int arg1)
1036 {
1037 }
1038
1039 static void
1040 delegate_set_circular_trace_buffer (struct target_ops *self, int arg1)
1041 {
1042   self = self->beneath;
1043   self->to_set_circular_trace_buffer (self, arg1);
1044 }
1045
1046 static void
1047 tdefault_set_circular_trace_buffer (struct target_ops *self, int arg1)
1048 {
1049 }
1050
1051 static void
1052 delegate_set_trace_buffer_size (struct target_ops *self, LONGEST arg1)
1053 {
1054   self = self->beneath;
1055   self->to_set_trace_buffer_size (self, arg1);
1056 }
1057
1058 static void
1059 tdefault_set_trace_buffer_size (struct target_ops *self, LONGEST arg1)
1060 {
1061 }
1062
1063 static int
1064 delegate_set_trace_notes (struct target_ops *self, const char *arg1, const char *arg2, const char *arg3)
1065 {
1066   self = self->beneath;
1067   return self->to_set_trace_notes (self, arg1, arg2, arg3);
1068 }
1069
1070 static int
1071 tdefault_set_trace_notes (struct target_ops *self, const char *arg1, const char *arg2, const char *arg3)
1072 {
1073   return 0;
1074 }
1075
1076 static int
1077 delegate_get_tib_address (struct target_ops *self, ptid_t arg1, CORE_ADDR *arg2)
1078 {
1079   self = self->beneath;
1080   return self->to_get_tib_address (self, arg1, arg2);
1081 }
1082
1083 static int
1084 tdefault_get_tib_address (struct target_ops *self, ptid_t arg1, CORE_ADDR *arg2)
1085 {
1086   tcomplain ();
1087 }
1088
1089 static void
1090 delegate_set_permissions (struct target_ops *self)
1091 {
1092   self = self->beneath;
1093   self->to_set_permissions (self);
1094 }
1095
1096 static void
1097 tdefault_set_permissions (struct target_ops *self)
1098 {
1099 }
1100
1101 static int
1102 delegate_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR arg1, struct static_tracepoint_marker *arg2)
1103 {
1104   self = self->beneath;
1105   return self->to_static_tracepoint_marker_at (self, arg1, arg2);
1106 }
1107
1108 static int
1109 tdefault_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR arg1, struct static_tracepoint_marker *arg2)
1110 {
1111   return 0;
1112 }
1113
1114 static VEC(static_tracepoint_marker_p) *
1115 delegate_static_tracepoint_markers_by_strid (struct target_ops *self, const char *arg1)
1116 {
1117   self = self->beneath;
1118   return self->to_static_tracepoint_markers_by_strid (self, arg1);
1119 }
1120
1121 static VEC(static_tracepoint_marker_p) *
1122 tdefault_static_tracepoint_markers_by_strid (struct target_ops *self, const char *arg1)
1123 {
1124   tcomplain ();
1125 }
1126
1127 static struct traceframe_info *
1128 delegate_traceframe_info (struct target_ops *self)
1129 {
1130   self = self->beneath;
1131   return self->to_traceframe_info (self);
1132 }
1133
1134 static struct traceframe_info *
1135 tdefault_traceframe_info (struct target_ops *self)
1136 {
1137   return 0;
1138 }
1139
1140 static int
1141 delegate_use_agent (struct target_ops *self, int arg1)
1142 {
1143   self = self->beneath;
1144   return self->to_use_agent (self, arg1);
1145 }
1146
1147 static int
1148 tdefault_use_agent (struct target_ops *self, int arg1)
1149 {
1150   tcomplain ();
1151 }
1152
1153 static int
1154 delegate_can_use_agent (struct target_ops *self)
1155 {
1156   self = self->beneath;
1157   return self->to_can_use_agent (self);
1158 }
1159
1160 static int
1161 tdefault_can_use_agent (struct target_ops *self)
1162 {
1163   return 0;
1164 }
1165
1166 static int
1167 delegate_supports_btrace (struct target_ops *self)
1168 {
1169   self = self->beneath;
1170   return self->to_supports_btrace (self);
1171 }
1172
1173 static int
1174 tdefault_supports_btrace (struct target_ops *self)
1175 {
1176   return 0;
1177 }
1178
1179 static int
1180 delegate_augmented_libraries_svr4_read (struct target_ops *self)
1181 {
1182   self = self->beneath;
1183   return self->to_augmented_libraries_svr4_read (self);
1184 }
1185
1186 static int
1187 tdefault_augmented_libraries_svr4_read (struct target_ops *self)
1188 {
1189   return 0;
1190 }
1191
1192 static void
1193 install_delegators (struct target_ops *ops)
1194 {
1195   if (ops->to_attach == NULL)
1196     ops->to_attach = delegate_attach;
1197   if (ops->to_post_attach == NULL)
1198     ops->to_post_attach = delegate_post_attach;
1199   if (ops->to_detach == NULL)
1200     ops->to_detach = delegate_detach;
1201   if (ops->to_resume == NULL)
1202     ops->to_resume = delegate_resume;
1203   if (ops->to_wait == NULL)
1204     ops->to_wait = delegate_wait;
1205   if (ops->to_fetch_registers == NULL)
1206     ops->to_fetch_registers = delegate_fetch_registers;
1207   if (ops->to_store_registers == NULL)
1208     ops->to_store_registers = delegate_store_registers;
1209   if (ops->to_prepare_to_store == NULL)
1210     ops->to_prepare_to_store = delegate_prepare_to_store;
1211   if (ops->to_files_info == NULL)
1212     ops->to_files_info = delegate_files_info;
1213   if (ops->to_insert_breakpoint == NULL)
1214     ops->to_insert_breakpoint = delegate_insert_breakpoint;
1215   if (ops->to_remove_breakpoint == NULL)
1216     ops->to_remove_breakpoint = delegate_remove_breakpoint;
1217   if (ops->to_can_use_hw_breakpoint == NULL)
1218     ops->to_can_use_hw_breakpoint = delegate_can_use_hw_breakpoint;
1219   if (ops->to_ranged_break_num_registers == NULL)
1220     ops->to_ranged_break_num_registers = delegate_ranged_break_num_registers;
1221   if (ops->to_insert_hw_breakpoint == NULL)
1222     ops->to_insert_hw_breakpoint = delegate_insert_hw_breakpoint;
1223   if (ops->to_remove_hw_breakpoint == NULL)
1224     ops->to_remove_hw_breakpoint = delegate_remove_hw_breakpoint;
1225   if (ops->to_remove_watchpoint == NULL)
1226     ops->to_remove_watchpoint = delegate_remove_watchpoint;
1227   if (ops->to_insert_watchpoint == NULL)
1228     ops->to_insert_watchpoint = delegate_insert_watchpoint;
1229   if (ops->to_insert_mask_watchpoint == NULL)
1230     ops->to_insert_mask_watchpoint = delegate_insert_mask_watchpoint;
1231   if (ops->to_remove_mask_watchpoint == NULL)
1232     ops->to_remove_mask_watchpoint = delegate_remove_mask_watchpoint;
1233   if (ops->to_stopped_by_watchpoint == NULL)
1234     ops->to_stopped_by_watchpoint = delegate_stopped_by_watchpoint;
1235   if (ops->to_stopped_data_address == NULL)
1236     ops->to_stopped_data_address = delegate_stopped_data_address;
1237   if (ops->to_watchpoint_addr_within_range == NULL)
1238     ops->to_watchpoint_addr_within_range = delegate_watchpoint_addr_within_range;
1239   if (ops->to_region_ok_for_hw_watchpoint == NULL)
1240     ops->to_region_ok_for_hw_watchpoint = delegate_region_ok_for_hw_watchpoint;
1241   if (ops->to_can_accel_watchpoint_condition == NULL)
1242     ops->to_can_accel_watchpoint_condition = delegate_can_accel_watchpoint_condition;
1243   if (ops->to_masked_watch_num_registers == NULL)
1244     ops->to_masked_watch_num_registers = delegate_masked_watch_num_registers;
1245   if (ops->to_terminal_init == NULL)
1246     ops->to_terminal_init = delegate_terminal_init;
1247   if (ops->to_terminal_inferior == NULL)
1248     ops->to_terminal_inferior = delegate_terminal_inferior;
1249   if (ops->to_terminal_ours_for_output == NULL)
1250     ops->to_terminal_ours_for_output = delegate_terminal_ours_for_output;
1251   if (ops->to_terminal_ours == NULL)
1252     ops->to_terminal_ours = delegate_terminal_ours;
1253   if (ops->to_terminal_save_ours == NULL)
1254     ops->to_terminal_save_ours = delegate_terminal_save_ours;
1255   if (ops->to_terminal_info == NULL)
1256     ops->to_terminal_info = delegate_terminal_info;
1257   if (ops->to_kill == NULL)
1258     ops->to_kill = delegate_kill;
1259   if (ops->to_load == NULL)
1260     ops->to_load = delegate_load;
1261   if (ops->to_post_startup_inferior == NULL)
1262     ops->to_post_startup_inferior = delegate_post_startup_inferior;
1263   if (ops->to_insert_fork_catchpoint == NULL)
1264     ops->to_insert_fork_catchpoint = delegate_insert_fork_catchpoint;
1265   if (ops->to_remove_fork_catchpoint == NULL)
1266     ops->to_remove_fork_catchpoint = delegate_remove_fork_catchpoint;
1267   if (ops->to_insert_vfork_catchpoint == NULL)
1268     ops->to_insert_vfork_catchpoint = delegate_insert_vfork_catchpoint;
1269   if (ops->to_remove_vfork_catchpoint == NULL)
1270     ops->to_remove_vfork_catchpoint = delegate_remove_vfork_catchpoint;
1271   if (ops->to_follow_fork == NULL)
1272     ops->to_follow_fork = delegate_follow_fork;
1273   if (ops->to_insert_exec_catchpoint == NULL)
1274     ops->to_insert_exec_catchpoint = delegate_insert_exec_catchpoint;
1275   if (ops->to_remove_exec_catchpoint == NULL)
1276     ops->to_remove_exec_catchpoint = delegate_remove_exec_catchpoint;
1277   if (ops->to_set_syscall_catchpoint == NULL)
1278     ops->to_set_syscall_catchpoint = delegate_set_syscall_catchpoint;
1279   if (ops->to_has_exited == NULL)
1280     ops->to_has_exited = delegate_has_exited;
1281   if (ops->to_mourn_inferior == NULL)
1282     ops->to_mourn_inferior = delegate_mourn_inferior;
1283   if (ops->to_pass_signals == NULL)
1284     ops->to_pass_signals = delegate_pass_signals;
1285   if (ops->to_program_signals == NULL)
1286     ops->to_program_signals = delegate_program_signals;
1287   if (ops->to_extra_thread_info == NULL)
1288     ops->to_extra_thread_info = delegate_extra_thread_info;
1289   if (ops->to_thread_name == NULL)
1290     ops->to_thread_name = delegate_thread_name;
1291   if (ops->to_stop == NULL)
1292     ops->to_stop = delegate_stop;
1293   if (ops->to_rcmd == NULL)
1294     ops->to_rcmd = delegate_rcmd;
1295   if (ops->to_pid_to_exec_file == NULL)
1296     ops->to_pid_to_exec_file = delegate_pid_to_exec_file;
1297   if (ops->to_log_command == NULL)
1298     ops->to_log_command = delegate_log_command;
1299   if (ops->to_can_async_p == NULL)
1300     ops->to_can_async_p = delegate_can_async_p;
1301   if (ops->to_is_async_p == NULL)
1302     ops->to_is_async_p = delegate_is_async_p;
1303   if (ops->to_async == NULL)
1304     ops->to_async = delegate_async;
1305   if (ops->to_find_memory_regions == NULL)
1306     ops->to_find_memory_regions = delegate_find_memory_regions;
1307   if (ops->to_make_corefile_notes == NULL)
1308     ops->to_make_corefile_notes = delegate_make_corefile_notes;
1309   if (ops->to_get_bookmark == NULL)
1310     ops->to_get_bookmark = delegate_get_bookmark;
1311   if (ops->to_goto_bookmark == NULL)
1312     ops->to_goto_bookmark = delegate_goto_bookmark;
1313   if (ops->to_xfer_partial == NULL)
1314     ops->to_xfer_partial = delegate_xfer_partial;
1315   if (ops->to_get_ada_task_ptid == NULL)
1316     ops->to_get_ada_task_ptid = delegate_get_ada_task_ptid;
1317   if (ops->to_can_execute_reverse == NULL)
1318     ops->to_can_execute_reverse = delegate_can_execute_reverse;
1319   if (ops->to_execution_direction == NULL)
1320     ops->to_execution_direction = delegate_execution_direction;
1321   if (ops->to_supports_multi_process == NULL)
1322     ops->to_supports_multi_process = delegate_supports_multi_process;
1323   if (ops->to_supports_enable_disable_tracepoint == NULL)
1324     ops->to_supports_enable_disable_tracepoint = delegate_supports_enable_disable_tracepoint;
1325   if (ops->to_supports_string_tracing == NULL)
1326     ops->to_supports_string_tracing = delegate_supports_string_tracing;
1327   if (ops->to_supports_evaluation_of_breakpoint_conditions == NULL)
1328     ops->to_supports_evaluation_of_breakpoint_conditions = delegate_supports_evaluation_of_breakpoint_conditions;
1329   if (ops->to_can_run_breakpoint_commands == NULL)
1330     ops->to_can_run_breakpoint_commands = delegate_can_run_breakpoint_commands;
1331   if (ops->to_thread_architecture == NULL)
1332     ops->to_thread_architecture = delegate_thread_architecture;
1333   if (ops->to_trace_init == NULL)
1334     ops->to_trace_init = delegate_trace_init;
1335   if (ops->to_download_tracepoint == NULL)
1336     ops->to_download_tracepoint = delegate_download_tracepoint;
1337   if (ops->to_can_download_tracepoint == NULL)
1338     ops->to_can_download_tracepoint = delegate_can_download_tracepoint;
1339   if (ops->to_download_trace_state_variable == NULL)
1340     ops->to_download_trace_state_variable = delegate_download_trace_state_variable;
1341   if (ops->to_enable_tracepoint == NULL)
1342     ops->to_enable_tracepoint = delegate_enable_tracepoint;
1343   if (ops->to_disable_tracepoint == NULL)
1344     ops->to_disable_tracepoint = delegate_disable_tracepoint;
1345   if (ops->to_trace_set_readonly_regions == NULL)
1346     ops->to_trace_set_readonly_regions = delegate_trace_set_readonly_regions;
1347   if (ops->to_trace_start == NULL)
1348     ops->to_trace_start = delegate_trace_start;
1349   if (ops->to_get_trace_status == NULL)
1350     ops->to_get_trace_status = delegate_get_trace_status;
1351   if (ops->to_get_tracepoint_status == NULL)
1352     ops->to_get_tracepoint_status = delegate_get_tracepoint_status;
1353   if (ops->to_trace_stop == NULL)
1354     ops->to_trace_stop = delegate_trace_stop;
1355   if (ops->to_trace_find == NULL)
1356     ops->to_trace_find = delegate_trace_find;
1357   if (ops->to_get_trace_state_variable_value == NULL)
1358     ops->to_get_trace_state_variable_value = delegate_get_trace_state_variable_value;
1359   if (ops->to_save_trace_data == NULL)
1360     ops->to_save_trace_data = delegate_save_trace_data;
1361   if (ops->to_upload_tracepoints == NULL)
1362     ops->to_upload_tracepoints = delegate_upload_tracepoints;
1363   if (ops->to_upload_trace_state_variables == NULL)
1364     ops->to_upload_trace_state_variables = delegate_upload_trace_state_variables;
1365   if (ops->to_get_raw_trace_data == NULL)
1366     ops->to_get_raw_trace_data = delegate_get_raw_trace_data;
1367   if (ops->to_get_min_fast_tracepoint_insn_len == NULL)
1368     ops->to_get_min_fast_tracepoint_insn_len = delegate_get_min_fast_tracepoint_insn_len;
1369   if (ops->to_set_disconnected_tracing == NULL)
1370     ops->to_set_disconnected_tracing = delegate_set_disconnected_tracing;
1371   if (ops->to_set_circular_trace_buffer == NULL)
1372     ops->to_set_circular_trace_buffer = delegate_set_circular_trace_buffer;
1373   if (ops->to_set_trace_buffer_size == NULL)
1374     ops->to_set_trace_buffer_size = delegate_set_trace_buffer_size;
1375   if (ops->to_set_trace_notes == NULL)
1376     ops->to_set_trace_notes = delegate_set_trace_notes;
1377   if (ops->to_get_tib_address == NULL)
1378     ops->to_get_tib_address = delegate_get_tib_address;
1379   if (ops->to_set_permissions == NULL)
1380     ops->to_set_permissions = delegate_set_permissions;
1381   if (ops->to_static_tracepoint_marker_at == NULL)
1382     ops->to_static_tracepoint_marker_at = delegate_static_tracepoint_marker_at;
1383   if (ops->to_static_tracepoint_markers_by_strid == NULL)
1384     ops->to_static_tracepoint_markers_by_strid = delegate_static_tracepoint_markers_by_strid;
1385   if (ops->to_traceframe_info == NULL)
1386     ops->to_traceframe_info = delegate_traceframe_info;
1387   if (ops->to_use_agent == NULL)
1388     ops->to_use_agent = delegate_use_agent;
1389   if (ops->to_can_use_agent == NULL)
1390     ops->to_can_use_agent = delegate_can_use_agent;
1391   if (ops->to_supports_btrace == NULL)
1392     ops->to_supports_btrace = delegate_supports_btrace;
1393   if (ops->to_augmented_libraries_svr4_read == NULL)
1394     ops->to_augmented_libraries_svr4_read = delegate_augmented_libraries_svr4_read;
1395 }
1396
1397 static void
1398 install_dummy_methods (struct target_ops *ops)
1399 {
1400   ops->to_attach = find_default_attach;
1401   ops->to_post_attach = tdefault_post_attach;
1402   ops->to_detach = tdefault_detach;
1403   ops->to_resume = tdefault_resume;
1404   ops->to_wait = tdefault_wait;
1405   ops->to_fetch_registers = tdefault_fetch_registers;
1406   ops->to_store_registers = tdefault_store_registers;
1407   ops->to_prepare_to_store = tdefault_prepare_to_store;
1408   ops->to_files_info = tdefault_files_info;
1409   ops->to_insert_breakpoint = memory_insert_breakpoint;
1410   ops->to_remove_breakpoint = memory_remove_breakpoint;
1411   ops->to_can_use_hw_breakpoint = tdefault_can_use_hw_breakpoint;
1412   ops->to_ranged_break_num_registers = tdefault_ranged_break_num_registers;
1413   ops->to_insert_hw_breakpoint = tdefault_insert_hw_breakpoint;
1414   ops->to_remove_hw_breakpoint = tdefault_remove_hw_breakpoint;
1415   ops->to_remove_watchpoint = tdefault_remove_watchpoint;
1416   ops->to_insert_watchpoint = tdefault_insert_watchpoint;
1417   ops->to_insert_mask_watchpoint = tdefault_insert_mask_watchpoint;
1418   ops->to_remove_mask_watchpoint = tdefault_remove_mask_watchpoint;
1419   ops->to_stopped_by_watchpoint = tdefault_stopped_by_watchpoint;
1420   ops->to_stopped_data_address = tdefault_stopped_data_address;
1421   ops->to_watchpoint_addr_within_range = default_watchpoint_addr_within_range;
1422   ops->to_region_ok_for_hw_watchpoint = default_region_ok_for_hw_watchpoint;
1423   ops->to_can_accel_watchpoint_condition = tdefault_can_accel_watchpoint_condition;
1424   ops->to_masked_watch_num_registers = tdefault_masked_watch_num_registers;
1425   ops->to_terminal_init = tdefault_terminal_init;
1426   ops->to_terminal_inferior = tdefault_terminal_inferior;
1427   ops->to_terminal_ours_for_output = tdefault_terminal_ours_for_output;
1428   ops->to_terminal_ours = tdefault_terminal_ours;
1429   ops->to_terminal_save_ours = tdefault_terminal_save_ours;
1430   ops->to_terminal_info = default_terminal_info;
1431   ops->to_kill = tdefault_kill;
1432   ops->to_load = tdefault_load;
1433   ops->to_post_startup_inferior = tdefault_post_startup_inferior;
1434   ops->to_insert_fork_catchpoint = tdefault_insert_fork_catchpoint;
1435   ops->to_remove_fork_catchpoint = tdefault_remove_fork_catchpoint;
1436   ops->to_insert_vfork_catchpoint = tdefault_insert_vfork_catchpoint;
1437   ops->to_remove_vfork_catchpoint = tdefault_remove_vfork_catchpoint;
1438   ops->to_follow_fork = default_follow_fork;
1439   ops->to_insert_exec_catchpoint = tdefault_insert_exec_catchpoint;
1440   ops->to_remove_exec_catchpoint = tdefault_remove_exec_catchpoint;
1441   ops->to_set_syscall_catchpoint = tdefault_set_syscall_catchpoint;
1442   ops->to_has_exited = tdefault_has_exited;
1443   ops->to_mourn_inferior = default_mourn_inferior;
1444   ops->to_pass_signals = tdefault_pass_signals;
1445   ops->to_program_signals = tdefault_program_signals;
1446   ops->to_extra_thread_info = tdefault_extra_thread_info;
1447   ops->to_thread_name = tdefault_thread_name;
1448   ops->to_stop = tdefault_stop;
1449   ops->to_rcmd = default_rcmd;
1450   ops->to_pid_to_exec_file = tdefault_pid_to_exec_file;
1451   ops->to_log_command = tdefault_log_command;
1452   ops->to_can_async_p = find_default_can_async_p;
1453   ops->to_is_async_p = find_default_is_async_p;
1454   ops->to_async = tdefault_async;
1455   ops->to_find_memory_regions = dummy_find_memory_regions;
1456   ops->to_make_corefile_notes = dummy_make_corefile_notes;
1457   ops->to_get_bookmark = tdefault_get_bookmark;
1458   ops->to_goto_bookmark = tdefault_goto_bookmark;
1459   ops->to_xfer_partial = tdefault_xfer_partial;
1460   ops->to_get_ada_task_ptid = default_get_ada_task_ptid;
1461   ops->to_can_execute_reverse = tdefault_can_execute_reverse;
1462   ops->to_execution_direction = default_execution_direction;
1463   ops->to_supports_multi_process = tdefault_supports_multi_process;
1464   ops->to_supports_enable_disable_tracepoint = tdefault_supports_enable_disable_tracepoint;
1465   ops->to_supports_string_tracing = tdefault_supports_string_tracing;
1466   ops->to_supports_evaluation_of_breakpoint_conditions = tdefault_supports_evaluation_of_breakpoint_conditions;
1467   ops->to_can_run_breakpoint_commands = tdefault_can_run_breakpoint_commands;
1468   ops->to_thread_architecture = default_thread_architecture;
1469   ops->to_trace_init = tdefault_trace_init;
1470   ops->to_download_tracepoint = tdefault_download_tracepoint;
1471   ops->to_can_download_tracepoint = tdefault_can_download_tracepoint;
1472   ops->to_download_trace_state_variable = tdefault_download_trace_state_variable;
1473   ops->to_enable_tracepoint = tdefault_enable_tracepoint;
1474   ops->to_disable_tracepoint = tdefault_disable_tracepoint;
1475   ops->to_trace_set_readonly_regions = tdefault_trace_set_readonly_regions;
1476   ops->to_trace_start = tdefault_trace_start;
1477   ops->to_get_trace_status = tdefault_get_trace_status;
1478   ops->to_get_tracepoint_status = tdefault_get_tracepoint_status;
1479   ops->to_trace_stop = tdefault_trace_stop;
1480   ops->to_trace_find = tdefault_trace_find;
1481   ops->to_get_trace_state_variable_value = tdefault_get_trace_state_variable_value;
1482   ops->to_save_trace_data = tdefault_save_trace_data;
1483   ops->to_upload_tracepoints = tdefault_upload_tracepoints;
1484   ops->to_upload_trace_state_variables = tdefault_upload_trace_state_variables;
1485   ops->to_get_raw_trace_data = tdefault_get_raw_trace_data;
1486   ops->to_get_min_fast_tracepoint_insn_len = tdefault_get_min_fast_tracepoint_insn_len;
1487   ops->to_set_disconnected_tracing = tdefault_set_disconnected_tracing;
1488   ops->to_set_circular_trace_buffer = tdefault_set_circular_trace_buffer;
1489   ops->to_set_trace_buffer_size = tdefault_set_trace_buffer_size;
1490   ops->to_set_trace_notes = tdefault_set_trace_notes;
1491   ops->to_get_tib_address = tdefault_get_tib_address;
1492   ops->to_set_permissions = tdefault_set_permissions;
1493   ops->to_static_tracepoint_marker_at = tdefault_static_tracepoint_marker_at;
1494   ops->to_static_tracepoint_markers_by_strid = tdefault_static_tracepoint_markers_by_strid;
1495   ops->to_traceframe_info = tdefault_traceframe_info;
1496   ops->to_use_agent = tdefault_use_agent;
1497   ops->to_can_use_agent = tdefault_can_use_agent;
1498   ops->to_supports_btrace = tdefault_supports_btrace;
1499   ops->to_augmented_libraries_svr4_read = tdefault_augmented_libraries_svr4_read;
1500 }