#include "frame.h"
#include "wrapper.h"
-/* Use this struct used to pass arguments to wrapper routines. We assume
+/* Use this struct to pass arguments to wrapper routines. We assume
(arbitrarily) that no gdb function takes more than ten arguments. */
struct gdb_wrapper_arguments
{
/* Pointer to some result from the gdb function call, if any */
- char *result;
+ union wrapper_results
+ {
+ int integer;
+ void *pointer;
+ } result;
+
/* The list of arguments. */
- char *args[10];
+ union wrapper_args
+ {
+ int integer;
+ void *pointer;
+ } args[10];
};
int gdb_parse_exp_1 PARAMS ((char **, struct block *,
struct expression **expression;
{
struct gdb_wrapper_arguments args;
- args.args[0] = (char *) stringptr;
- args.args[1] = (char *) block;
- args.args[2] = (char *) comma;
+ args.args[0].pointer = stringptr;
+ args.args[1].pointer = block;
+ args.args[2].integer = comma;
if (!catch_errors ((catch_errors_ftype *) wrap_parse_exp_1, &args,
"", RETURN_MASK_ERROR))
return 0;
}
- *expression = (struct expression *) args.result;
+ *expression = (struct expression *) args.result.pointer;
return 1;
}
{
struct gdb_wrapper_arguments *args
= (struct gdb_wrapper_arguments *) argptr;
- args->result = (char *) parse_exp_1((char **) args->args[0],
- (struct block *) args->args[1],
- (int) args->args[2]);
+ args->result.pointer = parse_exp_1((char **) args->args[0].pointer,
+ (struct block *) args->args[1].pointer,
+ args->args[2].integer);
return 1;
}
value_ptr *value;
{
struct gdb_wrapper_arguments args;
- args.args[0] = (char *) exp;
+ args.args[0].pointer = exp;
if (!catch_errors ((catch_errors_ftype *) wrap_evaluate_expression, &args,
"", RETURN_MASK_ERROR))
return 0;
}
- *value = (value_ptr) args.result;
+ *value = (value_ptr) args.result.pointer;
return 1;
}
{
struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
- (args)->result =
- (char *) evaluate_expression ((struct expression *) (args)->args[0]);
+ (args)->result.pointer =
+ (char *) evaluate_expression ((struct expression *) args->args[0].pointer);
return 1;
}
{
struct gdb_wrapper_arguments args;
- args.args[0] = (char *) value;
+ args.args[0].pointer = value;
return catch_errors ((catch_errors_ftype *) wrap_value_fetch_lazy, &args,
"", RETURN_MASK_ERROR);
}
{
struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
- value_fetch_lazy ((value_ptr) (args)->args[0]);
+ value_fetch_lazy ((value_ptr) (args)->args[0].pointer);
return 1;
}
{
struct gdb_wrapper_arguments args;
- args.args[0] = (char *) val1;
- args.args[1] = (char *) val2;
+ args.args[0].pointer = val1;
+ args.args[1].pointer = val2;
if (!catch_errors ((catch_errors_ftype *) wrap_value_equal, &args,
"", RETURN_MASK_ERROR))
return 0;
}
- *result = (int) args.result;
+ *result = args.result.integer;
return 1;
}
struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
value_ptr val1, val2;
- val1 = (value_ptr) (args)->args[0];
- val2 = (value_ptr) (args)->args[1];
+ val1 = (value_ptr) (args)->args[0].pointer;
+ val2 = (value_ptr) (args)->args[1].pointer;
- (args)->result = (char *) value_equal (val1, val2);
+ (args)->result.integer = value_equal (val1, val2);
return 1;
}
{
struct gdb_wrapper_arguments args;
- args.args[0] = (char *) val;
+ args.args[0].pointer = val;
if (!catch_errors ((catch_errors_ftype *) wrap_value_ind, &args,
"", RETURN_MASK_ERROR))
return 0;
}
- *rval = (value_ptr) args.result;
+ *rval = (value_ptr) args.result.pointer;
return 1;
}
struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) opaque_arg;
value_ptr val;
- val = (value_ptr) (args)->args[0];
- (args)->result = (char *) value_ind (val);
+ val = (value_ptr) (args)->args[0].pointer;
+ (args)->result.pointer = value_ind (val);
return 1;
}