Obsolete stuff.c and kdb-start.c.
[deliverable/binutils-gdb.git] / gdb / wrapper.c
CommitLineData
8b93c638 1/* Longjump free calls to gdb internal routines.
b6ba6518 2 Copyright 1999, 2000 Free Software Foundation, Inc.
8b93c638
JM
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
18
19#include "defs.h"
20#include "value.h"
21#include "frame.h"
22#include "wrapper.h"
23
1d1358b6 24/* Use this struct to pass arguments to wrapper routines. We assume
8b93c638
JM
25 (arbitrarily) that no gdb function takes more than ten arguments. */
26struct gdb_wrapper_arguments
27 {
28
29 /* Pointer to some result from the gdb function call, if any */
1d1358b6
MS
30 union wrapper_results
31 {
32 int integer;
33 void *pointer;
34 } result;
35
8b93c638
JM
36
37 /* The list of arguments. */
1d1358b6
MS
38 union wrapper_args
39 {
40 int integer;
41 void *pointer;
42 } args[10];
8b93c638
JM
43 };
44
a14ed312 45static int wrap_parse_exp_1 (char *);
73a93a32 46
a14ed312 47static int wrap_evaluate_expression (char *);
8b93c638 48
a14ed312 49static int wrap_value_fetch_lazy (char *);
8b93c638 50
a14ed312 51static int wrap_value_equal (char *);
8b93c638 52
8a1a0112
FN
53static int wrap_value_assign (char *);
54
a14ed312 55static int wrap_value_subscript (char *);
8310b29b 56
a14ed312 57static int wrap_value_ind (char *opaque_arg);
8b93c638 58
287e3058 59static int wrap_parse_and_eval_type (char *);
c91ecb25 60
73a93a32 61int
fba45db2
KB
62gdb_parse_exp_1 (char **stringptr, struct block *block, int comma,
63 struct expression **expression)
73a93a32
JI
64{
65 struct gdb_wrapper_arguments args;
1d1358b6
MS
66 args.args[0].pointer = stringptr;
67 args.args[1].pointer = block;
68 args.args[2].integer = comma;
73a93a32
JI
69
70 if (!catch_errors ((catch_errors_ftype *) wrap_parse_exp_1, &args,
71 "", RETURN_MASK_ERROR))
72 {
73 /* An error occurred */
74 return 0;
75 }
76
1d1358b6 77 *expression = (struct expression *) args.result.pointer;
73a93a32
JI
78 return 1;
79
80}
81
287e3058 82static int
fba45db2 83wrap_parse_exp_1 (char *argptr)
73a93a32
JI
84{
85 struct gdb_wrapper_arguments *args
86 = (struct gdb_wrapper_arguments *) argptr;
1d1358b6
MS
87 args->result.pointer = parse_exp_1((char **) args->args[0].pointer,
88 (struct block *) args->args[1].pointer,
89 args->args[2].integer);
73a93a32
JI
90 return 1;
91}
92
8b93c638 93int
fba45db2 94gdb_evaluate_expression (struct expression *exp, value_ptr *value)
8b93c638
JM
95{
96 struct gdb_wrapper_arguments args;
1d1358b6 97 args.args[0].pointer = exp;
8b93c638
JM
98
99 if (!catch_errors ((catch_errors_ftype *) wrap_evaluate_expression, &args,
100 "", RETURN_MASK_ERROR))
101 {
102 /* An error occurred */
103 return 0;
104 }
105
1d1358b6 106 *value = (value_ptr) args.result.pointer;
8b93c638
JM
107 return 1;
108}
109
287e3058 110static int
fba45db2 111wrap_evaluate_expression (char *a)
8b93c638
JM
112{
113 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
114
1d1358b6
MS
115 (args)->result.pointer =
116 (char *) evaluate_expression ((struct expression *) args->args[0].pointer);
8b93c638
JM
117 return 1;
118}
119
120int
fba45db2 121gdb_value_fetch_lazy (value_ptr value)
8b93c638
JM
122{
123 struct gdb_wrapper_arguments args;
124
1d1358b6 125 args.args[0].pointer = value;
8b93c638
JM
126 return catch_errors ((catch_errors_ftype *) wrap_value_fetch_lazy, &args,
127 "", RETURN_MASK_ERROR);
128}
129
287e3058 130static int
fba45db2 131wrap_value_fetch_lazy (char *a)
8b93c638
JM
132{
133 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
134
1d1358b6 135 value_fetch_lazy ((value_ptr) (args)->args[0].pointer);
8b93c638
JM
136 return 1;
137}
138
139int
fba45db2 140gdb_value_equal (value_ptr val1, value_ptr val2, int *result)
8b93c638
JM
141{
142 struct gdb_wrapper_arguments args;
143
1d1358b6
MS
144 args.args[0].pointer = val1;
145 args.args[1].pointer = val2;
8b93c638
JM
146
147 if (!catch_errors ((catch_errors_ftype *) wrap_value_equal, &args,
148 "", RETURN_MASK_ERROR))
149 {
150 /* An error occurred */
151 return 0;
152 }
153
1d1358b6 154 *result = args.result.integer;
8b93c638
JM
155 return 1;
156}
157
287e3058 158static int
fba45db2 159wrap_value_equal (char *a)
8b93c638
JM
160{
161 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
162 value_ptr val1, val2;
163
1d1358b6
MS
164 val1 = (value_ptr) (args)->args[0].pointer;
165 val2 = (value_ptr) (args)->args[1].pointer;
8b93c638 166
1d1358b6 167 (args)->result.integer = value_equal (val1, val2);
8b93c638
JM
168 return 1;
169}
170
8a1a0112 171int
ba5f58cb 172gdb_value_assign (value_ptr val1, value_ptr val2, value_ptr *result)
8a1a0112
FN
173{
174 struct gdb_wrapper_arguments args;
175
176 args.args[0].pointer = val1;
177 args.args[1].pointer = val2;
178
179 if (!catch_errors ((catch_errors_ftype *) wrap_value_assign, &args,
180 "", RETURN_MASK_ERROR))
181 {
182 /* An error occurred */
183 return 0;
184 }
185
186 *result = (value_ptr) args.result.pointer;
187 return 1;
188}
189
190static int
ba5f58cb 191wrap_value_assign (char *a)
8a1a0112
FN
192{
193 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
194 value_ptr val1, val2;
195
196 val1 = (value_ptr) (args)->args[0].pointer;
197 val2 = (value_ptr) (args)->args[1].pointer;
198
199 (args)->result.pointer = value_assign (val1, val2);
200 return 1;
201}
202
8310b29b 203int
fba45db2 204gdb_value_subscript (value_ptr val1, value_ptr val2, value_ptr *rval)
8310b29b
FN
205{
206 struct gdb_wrapper_arguments args;
207
208 args.args[0].pointer = val1;
209 args.args[1].pointer = val2;
210
211 if (!catch_errors ((catch_errors_ftype *) wrap_value_subscript, &args,
212 "", RETURN_MASK_ERROR))
213 {
214 /* An error occurred */
215 return 0;
216 }
217
218 *rval = (value_ptr) args.result.pointer;
219 return 1;
220}
221
287e3058 222static int
fba45db2 223wrap_value_subscript (char *a)
8310b29b
FN
224{
225 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
226 value_ptr val1, val2;
227
228 val1 = (value_ptr) (args)->args[0].pointer;
229 val2 = (value_ptr) (args)->args[1].pointer;
230
231 (args)->result.pointer = value_subscript (val1, val2);
232 return 1;
233}
234
8b93c638 235int
fba45db2 236gdb_value_ind (value_ptr val, value_ptr *rval)
8b93c638
JM
237{
238 struct gdb_wrapper_arguments args;
239
1d1358b6 240 args.args[0].pointer = val;
8b93c638
JM
241
242 if (!catch_errors ((catch_errors_ftype *) wrap_value_ind, &args,
243 "", RETURN_MASK_ERROR))
244 {
245 /* An error occurred */
246 return 0;
247 }
248
1d1358b6 249 *rval = (value_ptr) args.result.pointer;
8b93c638
JM
250 return 1;
251}
252
287e3058 253static int
fba45db2 254wrap_value_ind (char *opaque_arg)
8b93c638
JM
255{
256 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) opaque_arg;
257 value_ptr val;
258
1d1358b6
MS
259 val = (value_ptr) (args)->args[0].pointer;
260 (args)->result.pointer = value_ind (val);
8b93c638
JM
261 return 1;
262}
73a93a32 263
c91ecb25
ND
264int
265gdb_parse_and_eval_type (char *p, int length, struct type **type)
266{
267 struct gdb_wrapper_arguments args;
268 args.args[0].pointer = p;
269 args.args[1].integer = length;
270
271 if (!catch_errors ((catch_errors_ftype *) wrap_parse_and_eval_type, &args,
272 "", RETURN_MASK_ALL))
273 {
274 /* An error occurred */
275 return 0;
276 }
277
278 *type = (struct type *) args.result.pointer;
279 return 1;
280}
281
287e3058 282static int
c91ecb25
ND
283wrap_parse_and_eval_type (char *a)
284{
285 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
286
287 char *p = (char *) args->args[0].pointer;
288 int length = args->args[1].integer;
289
290 args->result.pointer = (char *) parse_and_eval_type (p, length);
291
292 return 1;
293}
This page took 0.101735 seconds and 4 git commands to generate.