1 /* Longjump free calls to GDB internal routines.
3 Copyright 1999, 2000, 2005 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
22 #include "exceptions.h"
27 gdb_parse_exp_1 (char **stringptr, struct block *block, int comma,
28 struct expression **expression)
30 volatile struct exception except;
32 TRY_CATCH (except, RETURN_MASK_ERROR)
34 *expression = parse_exp_1 (stringptr, block, comma);
37 if (except.reason < 0)
43 gdb_evaluate_expression (struct expression *exp, struct value **value)
45 volatile struct exception except;
47 TRY_CATCH (except, RETURN_MASK_ERROR)
49 *value = evaluate_expression(exp);
52 if (except.reason < 0)
58 gdb_value_fetch_lazy (struct value *val)
60 volatile struct exception except;
62 TRY_CATCH (except, RETURN_MASK_ERROR)
64 value_fetch_lazy (val);
67 if (except.reason < 0)
73 gdb_value_equal (struct value *val1, struct value *val2, int *result)
75 volatile struct exception except;
77 TRY_CATCH (except, RETURN_MASK_ERROR)
79 *result = value_equal (val1, val2);
82 if (except.reason < 0)
88 gdb_value_assign (struct value *val1, struct value *val2,
89 struct value **result)
91 volatile struct exception except;
93 TRY_CATCH (except, RETURN_MASK_ERROR)
95 *result = value_assign (val1, val2);
98 if (except.reason < 0)
104 gdb_value_subscript (struct value *val1, struct value *val2,
105 struct value **result)
107 volatile struct exception except;
109 TRY_CATCH (except, RETURN_MASK_ERROR)
111 *result = value_subscript (val1, val2);
114 if (except.reason < 0)
120 gdb_value_ind (struct value *val, struct value **result)
122 volatile struct exception except;
124 TRY_CATCH (except, RETURN_MASK_ERROR)
126 *result = value_ind (val);
129 if (except.reason < 0)
135 gdb_parse_and_eval_type (char *p, int length, struct type **type)
137 volatile struct exception except;
139 TRY_CATCH (except, RETURN_MASK_ERROR)
141 *type = parse_and_eval_type (p, length);
144 if (except.reason < 0)
150 gdb_value_struct_elt (struct ui_out *uiout, struct value **result,
151 struct value **argp, struct value **args, char *name,
152 int *static_memfuncp, char *err)
154 volatile struct exception except;
156 TRY_CATCH (except, RETURN_MASK_ALL)
158 *result = value_struct_elt (argp, args, name, static_memfuncp, err);
161 if (except.reason < 0)