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