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