IA-64 changes for linux threads
[deliverable/binutils-gdb.git] / gdb / wrapper.c
CommitLineData
8b93c638
JM
1/* Longjump free calls to gdb internal routines.
2 Copyright 1999 Free Software Foundation, Inc.
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
73a93a32
JI
45int gdb_parse_exp_1 PARAMS ((char **, struct block *,
46 int, struct expression **));
47int wrap_parse_exp_1 PARAMS ((char *));
48
8b93c638
JM
49int gdb_evaluate_expression PARAMS ((struct expression *, value_ptr *));
50int wrap_evaluate_expression PARAMS ((char *));
51
52int gdb_value_fetch_lazy PARAMS ((value_ptr));
53int wrap_value_fetch_lazy PARAMS ((char *));
54
55int gdb_value_equal PARAMS ((value_ptr, value_ptr, int *));
56int wrap_value_equal PARAMS ((char *));
57
8310b29b
FN
58int gdb_value_subscript PARAMS ((value_ptr, value_ptr, value_ptr * rval));
59int wrap_value_subscript PARAMS ((char *));
60
8b93c638
JM
61int gdb_value_ind PARAMS ((value_ptr val, value_ptr * rval));
62int wrap_value_ind PARAMS ((char *opaque_arg));
63
c91ecb25
ND
64int gdb_parse_and_eval_type (char *, int, struct type **);
65int wrap_parse_and_eval_type (char *);
66
73a93a32
JI
67int
68gdb_parse_exp_1 (stringptr, block, comma, expression)
69 char **stringptr;
70 struct block *block;
71 int comma;
72 struct expression **expression;
73{
74 struct gdb_wrapper_arguments args;
1d1358b6
MS
75 args.args[0].pointer = stringptr;
76 args.args[1].pointer = block;
77 args.args[2].integer = comma;
73a93a32
JI
78
79 if (!catch_errors ((catch_errors_ftype *) wrap_parse_exp_1, &args,
80 "", RETURN_MASK_ERROR))
81 {
82 /* An error occurred */
83 return 0;
84 }
85
1d1358b6 86 *expression = (struct expression *) args.result.pointer;
73a93a32
JI
87 return 1;
88
89}
90
91int
92wrap_parse_exp_1 (argptr)
93 char *argptr;
94{
95 struct gdb_wrapper_arguments *args
96 = (struct gdb_wrapper_arguments *) argptr;
1d1358b6
MS
97 args->result.pointer = parse_exp_1((char **) args->args[0].pointer,
98 (struct block *) args->args[1].pointer,
99 args->args[2].integer);
73a93a32
JI
100 return 1;
101}
102
8b93c638
JM
103int
104gdb_evaluate_expression (exp, value)
105 struct expression *exp;
106 value_ptr *value;
107{
108 struct gdb_wrapper_arguments args;
1d1358b6 109 args.args[0].pointer = exp;
8b93c638
JM
110
111 if (!catch_errors ((catch_errors_ftype *) wrap_evaluate_expression, &args,
112 "", RETURN_MASK_ERROR))
113 {
114 /* An error occurred */
115 return 0;
116 }
117
1d1358b6 118 *value = (value_ptr) args.result.pointer;
8b93c638
JM
119 return 1;
120}
121
122int
123wrap_evaluate_expression (a)
124 char *a;
125{
126 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
127
1d1358b6
MS
128 (args)->result.pointer =
129 (char *) evaluate_expression ((struct expression *) args->args[0].pointer);
8b93c638
JM
130 return 1;
131}
132
133int
134gdb_value_fetch_lazy (value)
135 value_ptr value;
136{
137 struct gdb_wrapper_arguments args;
138
1d1358b6 139 args.args[0].pointer = value;
8b93c638
JM
140 return catch_errors ((catch_errors_ftype *) wrap_value_fetch_lazy, &args,
141 "", RETURN_MASK_ERROR);
142}
143
144int
145wrap_value_fetch_lazy (a)
146 char *a;
147{
148 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
149
1d1358b6 150 value_fetch_lazy ((value_ptr) (args)->args[0].pointer);
8b93c638
JM
151 return 1;
152}
153
154int
155gdb_value_equal (val1, val2, result)
156 value_ptr val1;
157 value_ptr val2;
158 int *result;
159{
160 struct gdb_wrapper_arguments args;
161
1d1358b6
MS
162 args.args[0].pointer = val1;
163 args.args[1].pointer = val2;
8b93c638
JM
164
165 if (!catch_errors ((catch_errors_ftype *) wrap_value_equal, &args,
166 "", RETURN_MASK_ERROR))
167 {
168 /* An error occurred */
169 return 0;
170 }
171
1d1358b6 172 *result = args.result.integer;
8b93c638
JM
173 return 1;
174}
175
176int
177wrap_value_equal (a)
178 char *a;
179{
180 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
181 value_ptr val1, val2;
182
1d1358b6
MS
183 val1 = (value_ptr) (args)->args[0].pointer;
184 val2 = (value_ptr) (args)->args[1].pointer;
8b93c638 185
1d1358b6 186 (args)->result.integer = value_equal (val1, val2);
8b93c638
JM
187 return 1;
188}
189
8310b29b
FN
190int
191gdb_value_subscript (val1, val2, rval)
192 value_ptr val1;
193 value_ptr val2;
194 value_ptr * rval;
195{
196 struct gdb_wrapper_arguments args;
197
198 args.args[0].pointer = val1;
199 args.args[1].pointer = val2;
200
201 if (!catch_errors ((catch_errors_ftype *) wrap_value_subscript, &args,
202 "", RETURN_MASK_ERROR))
203 {
204 /* An error occurred */
205 return 0;
206 }
207
208 *rval = (value_ptr) args.result.pointer;
209 return 1;
210}
211
212int
213wrap_value_subscript (a)
214 char *a;
215{
216 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
217 value_ptr val1, val2;
218
219 val1 = (value_ptr) (args)->args[0].pointer;
220 val2 = (value_ptr) (args)->args[1].pointer;
221
222 (args)->result.pointer = value_subscript (val1, val2);
223 return 1;
224}
225
8b93c638
JM
226int
227gdb_value_ind (val, rval)
228 value_ptr val;
229 value_ptr *rval;
230{
231 struct gdb_wrapper_arguments args;
232
1d1358b6 233 args.args[0].pointer = val;
8b93c638
JM
234
235 if (!catch_errors ((catch_errors_ftype *) wrap_value_ind, &args,
236 "", RETURN_MASK_ERROR))
237 {
238 /* An error occurred */
239 return 0;
240 }
241
1d1358b6 242 *rval = (value_ptr) args.result.pointer;
8b93c638
JM
243 return 1;
244}
245
246int
247wrap_value_ind (opaque_arg)
248 char *opaque_arg;
249{
250 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) opaque_arg;
251 value_ptr val;
252
1d1358b6
MS
253 val = (value_ptr) (args)->args[0].pointer;
254 (args)->result.pointer = value_ind (val);
8b93c638
JM
255 return 1;
256}
73a93a32 257
c91ecb25
ND
258int
259gdb_parse_and_eval_type (char *p, int length, struct type **type)
260{
261 struct gdb_wrapper_arguments args;
262 args.args[0].pointer = p;
263 args.args[1].integer = length;
264
265 if (!catch_errors ((catch_errors_ftype *) wrap_parse_and_eval_type, &args,
266 "", RETURN_MASK_ALL))
267 {
268 /* An error occurred */
269 return 0;
270 }
271
272 *type = (struct type *) args.result.pointer;
273 return 1;
274}
275
276int
277wrap_parse_and_eval_type (char *a)
278{
279 struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
280
281 char *p = (char *) args->args[0].pointer;
282 int length = args->args[1].integer;
283
284 args->result.pointer = (char *) parse_and_eval_type (p, length);
285
286 return 1;
287}
This page took 0.05001 seconds and 4 git commands to generate.