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