convert to_files_info
[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
115static int
116delegate_stopped_by_watchpoint (struct target_ops *self)
117{
118 self = self->beneath;
119 return self->to_stopped_by_watchpoint (self);
120}
121
122static int
123tdefault_stopped_by_watchpoint (struct target_ops *self)
124{
125 return 0;
126}
127
128static int
129delegate_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
130{
131 self = self->beneath;
132 return self->to_stopped_data_address (self, arg1);
133}
134
135static int
136tdefault_stopped_data_address (struct target_ops *self, CORE_ADDR *arg1)
137{
138 return 0;
139}
140
a53f3625
TT
141static void
142delegate_rcmd (struct target_ops *self, char *arg1, struct ui_file *arg2)
143{
144 self = self->beneath;
145 self->to_rcmd (self, arg1, arg2);
146}
147
6b84065d
TT
148static int
149delegate_can_async_p (struct target_ops *self)
150{
151 self = self->beneath;
152 return self->to_can_async_p (self);
153}
154
155static int
156delegate_is_async_p (struct target_ops *self)
157{
158 self = self->beneath;
159 return self->to_is_async_p (self);
160}
161
162static void
163delegate_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
164{
165 self = self->beneath;
166 self->to_async (self, arg1, arg2);
167}
168
169static void
170tdefault_async (struct target_ops *self, async_callback_ftype *arg1, void *arg2)
171{
172 tcomplain ();
173}
174
175static enum target_xfer_status
176delegate_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)
177{
178 self = self->beneath;
179 return self->to_xfer_partial (self, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
180}
181
182static enum target_xfer_status
183tdefault_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)
184{
185 return TARGET_XFER_E_IO;
186}
187
46917d26
TT
188static int
189delegate_supports_btrace (struct target_ops *self)
190{
191 self = self->beneath;
192 return self->to_supports_btrace (self);
193}
194
195static int
196tdefault_supports_btrace (struct target_ops *self)
197{
198 return 0;
199}
200
1101cb7b
TT
201static void
202install_delegators (struct target_ops *ops)
203{
e9a29200
TT
204 if (ops->to_attach == NULL)
205 ops->to_attach = delegate_attach;
bebd3233
TT
206 if (ops->to_post_attach == NULL)
207 ops->to_post_attach = delegate_post_attach;
09da0d0a
TT
208 if (ops->to_detach == NULL)
209 ops->to_detach = delegate_detach;
6b84065d
TT
210 if (ops->to_resume == NULL)
211 ops->to_resume = delegate_resume;
212 if (ops->to_wait == NULL)
213 ops->to_wait = delegate_wait;
214 if (ops->to_store_registers == NULL)
215 ops->to_store_registers = delegate_store_registers;
6c628163
TT
216 if (ops->to_prepare_to_store == NULL)
217 ops->to_prepare_to_store = delegate_prepare_to_store;
f86e59b2
TT
218 if (ops->to_files_info == NULL)
219 ops->to_files_info = delegate_files_info;
6b84065d
TT
220 if (ops->to_insert_breakpoint == NULL)
221 ops->to_insert_breakpoint = delegate_insert_breakpoint;
222 if (ops->to_remove_breakpoint == NULL)
223 ops->to_remove_breakpoint = delegate_remove_breakpoint;
224 if (ops->to_stopped_by_watchpoint == NULL)
225 ops->to_stopped_by_watchpoint = delegate_stopped_by_watchpoint;
226 if (ops->to_stopped_data_address == NULL)
227 ops->to_stopped_data_address = delegate_stopped_data_address;
a53f3625
TT
228 if (ops->to_rcmd == NULL)
229 ops->to_rcmd = delegate_rcmd;
6b84065d
TT
230 if (ops->to_can_async_p == NULL)
231 ops->to_can_async_p = delegate_can_async_p;
232 if (ops->to_is_async_p == NULL)
233 ops->to_is_async_p = delegate_is_async_p;
234 if (ops->to_async == NULL)
235 ops->to_async = delegate_async;
236 if (ops->to_xfer_partial == NULL)
237 ops->to_xfer_partial = delegate_xfer_partial;
46917d26
TT
238 if (ops->to_supports_btrace == NULL)
239 ops->to_supports_btrace = delegate_supports_btrace;
1101cb7b
TT
240}
241
242static void
243install_dummy_methods (struct target_ops *ops)
244{
e9a29200 245 ops->to_attach = find_default_attach;
bebd3233 246 ops->to_post_attach = tdefault_post_attach;
09da0d0a 247 ops->to_detach = tdefault_detach;
6b84065d
TT
248 ops->to_resume = tdefault_resume;
249 ops->to_wait = tdefault_wait;
250 ops->to_store_registers = tdefault_store_registers;
6c628163 251 ops->to_prepare_to_store = tdefault_prepare_to_store;
f86e59b2 252 ops->to_files_info = tdefault_files_info;
6b84065d
TT
253 ops->to_insert_breakpoint = memory_insert_breakpoint;
254 ops->to_remove_breakpoint = memory_remove_breakpoint;
255 ops->to_stopped_by_watchpoint = tdefault_stopped_by_watchpoint;
256 ops->to_stopped_data_address = tdefault_stopped_data_address;
a53f3625 257 ops->to_rcmd = default_rcmd;
6b84065d
TT
258 ops->to_can_async_p = find_default_can_async_p;
259 ops->to_is_async_p = find_default_is_async_p;
260 ops->to_async = tdefault_async;
261 ops->to_xfer_partial = tdefault_xfer_partial;
46917d26 262 ops->to_supports_btrace = tdefault_supports_btrace;
1101cb7b 263}
This page took 0.039052 seconds and 4 git commands to generate.