GDB (xrefs)
|
#include "defs.h"
#include "arch-utils.h"
#include "charset.h"
#include "cp-abi.h"
#include "target-float.h"
#include "symtab.h"
#include "language.h"
#include "valprint.h"
#include "value.h"
#include "guile-internal.h"
Go to the source code of this file.
Macros | |
#define | STRIP_REFERENCE(TYPE) ((TYPE->code () == TYPE_CODE_REF) ? ((TYPE)->target_type ()) : (TYPE)) |
Enumerations | |
enum | valscm_unary_opcode { VALSCM_NOT , VALSCM_NEG , VALSCM_NOP , VALSCM_ABS , VALSCM_LOGNOT } |
enum | valscm_binary_opcode { VALSCM_ADD , VALSCM_SUB , VALSCM_MUL , VALSCM_DIV , VALSCM_REM , VALSCM_MOD , VALSCM_POW , VALSCM_LSH , VALSCM_RSH , VALSCM_MIN , VALSCM_MAX , VALSCM_BITAND , VALSCM_BITOR , VALSCM_BITXOR } |
Functions | |
static SCM | vlscm_unop_gdbthrow (enum valscm_unary_opcode opcode, SCM x, const char *func_name) |
static SCM | vlscm_unop (enum valscm_unary_opcode opcode, SCM x, const char *func_name) |
static SCM | vlscm_binop_gdbthrow (enum valscm_binary_opcode opcode, SCM x, SCM y, const char *func_name) |
static SCM | vlscm_binop (enum valscm_binary_opcode opcode, SCM x, SCM y, const char *func_name) |
static SCM | gdbscm_value_add (SCM x, SCM y) |
static SCM | gdbscm_value_sub (SCM x, SCM y) |
static SCM | gdbscm_value_mul (SCM x, SCM y) |
static SCM | gdbscm_value_div (SCM x, SCM y) |
static SCM | gdbscm_value_rem (SCM x, SCM y) |
static SCM | gdbscm_value_mod (SCM x, SCM y) |
static SCM | gdbscm_value_pow (SCM x, SCM y) |
static SCM | gdbscm_value_neg (SCM x) |
static SCM | gdbscm_value_pos (SCM x) |
static SCM | gdbscm_value_abs (SCM x) |
static SCM | gdbscm_value_lsh (SCM x, SCM y) |
static SCM | gdbscm_value_rsh (SCM x, SCM y) |
static SCM | gdbscm_value_min (SCM x, SCM y) |
static SCM | gdbscm_value_max (SCM x, SCM y) |
static SCM | gdbscm_value_not (SCM x) |
static SCM | gdbscm_value_lognot (SCM x) |
static SCM | gdbscm_value_logand (SCM x, SCM y) |
static SCM | gdbscm_value_logior (SCM x, SCM y) |
static SCM | gdbscm_value_logxor (SCM x, SCM y) |
static SCM | vlscm_rich_compare (int op, SCM x, SCM y, const char *func_name) |
static SCM | gdbscm_value_eq_p (SCM x, SCM y) |
static SCM | gdbscm_value_lt_p (SCM x, SCM y) |
static SCM | gdbscm_value_le_p (SCM x, SCM y) |
static SCM | gdbscm_value_gt_p (SCM x, SCM y) |
static SCM | gdbscm_value_ge_p (SCM x, SCM y) |
static struct value * | vlscm_convert_typed_number (const char *func_name, int obj_arg_pos, SCM obj, int type_arg_pos, SCM type_scm, struct type *type, struct gdbarch *gdbarch, SCM *except_scmp) |
static int | vlscm_integer_fits_p (SCM obj, struct type *type) |
static struct value * | vlscm_convert_number (const char *func_name, int obj_arg_pos, SCM obj, struct gdbarch *gdbarch, SCM *except_scmp) |
static struct value * | vlscm_convert_bytevector (SCM bv, struct type *type, SCM type_scm, int arg_pos, const char *func_name, SCM *except_scmp, struct gdbarch *gdbarch) |
struct value * | vlscm_convert_typed_value_from_scheme (const char *func_name, int obj_arg_pos, SCM obj, int type_arg_pos, SCM type_scm, struct type *type, SCM *except_scmp, struct gdbarch *gdbarch, const struct language_defn *language) |
struct value * | vlscm_convert_value_from_scheme (const char *func_name, int obj_arg_pos, SCM obj, SCM *except_scmp, struct gdbarch *gdbarch, const struct language_defn *language) |
void | gdbscm_initialize_math (void) |
Variables | |
static const scheme_function | math_functions [] |
#define STRIP_REFERENCE | ( | TYPE | ) | ((TYPE->code () == TYPE_CODE_REF) ? ((TYPE)->target_type ()) : (TYPE)) |
Definition at line 67 of file scm-math.c.
Referenced by vlscm_binop_gdbthrow().
enum valscm_binary_opcode |
Enumerator | |
---|---|
VALSCM_ADD | |
VALSCM_SUB | |
VALSCM_MUL | |
VALSCM_DIV | |
VALSCM_REM | |
VALSCM_MOD | |
VALSCM_POW | |
VALSCM_LSH | |
VALSCM_RSH | |
VALSCM_MIN | |
VALSCM_MAX | |
VALSCM_BITAND | |
VALSCM_BITOR | |
VALSCM_BITXOR |
Definition at line 48 of file scm-math.c.
enum valscm_unary_opcode |
Enumerator | |
---|---|
VALSCM_NOT | |
VALSCM_NEG | |
VALSCM_NOP | |
VALSCM_ABS | |
VALSCM_LOGNOT |
Definition at line 37 of file scm-math.c.
void gdbscm_initialize_math | ( | void | ) |
Definition at line 968 of file scm-math.c.
References gdbscm_define_functions(), and math_functions.
|
static |
Definition at line 336 of file scm-math.c.
References FUNC_NAME, VALSCM_ABS, and vlscm_unop().
|
static |
Definition at line 264 of file scm-math.c.
References FUNC_NAME, VALSCM_ADD, and vlscm_binop().
|
static |
Definition at line 288 of file scm-math.c.
References FUNC_NAME, VALSCM_DIV, and vlscm_binop().
|
static |
Definition at line 473 of file scm-math.c.
References FUNC_NAME, and vlscm_rich_compare().
|
static |
Definition at line 505 of file scm-math.c.
References FUNC_NAME, and vlscm_rich_compare().
|
static |
Definition at line 497 of file scm-math.c.
References FUNC_NAME, and vlscm_rich_compare().
|
static |
Definition at line 489 of file scm-math.c.
References FUNC_NAME, and vlscm_rich_compare().
|
static |
Definition at line 392 of file scm-math.c.
References FUNC_NAME, VALSCM_BITAND, and vlscm_binop().
|
static |
Definition at line 400 of file scm-math.c.
References FUNC_NAME, VALSCM_BITOR, and vlscm_binop().
|
static |
Definition at line 384 of file scm-math.c.
References FUNC_NAME, VALSCM_LOGNOT, and vlscm_unop().
|
static |
Definition at line 408 of file scm-math.c.
References FUNC_NAME, VALSCM_BITXOR, and vlscm_binop().
|
static |
Definition at line 344 of file scm-math.c.
References FUNC_NAME, VALSCM_LSH, and vlscm_binop().
|
static |
Definition at line 481 of file scm-math.c.
References FUNC_NAME, and vlscm_rich_compare().
|
static |
Definition at line 368 of file scm-math.c.
References FUNC_NAME, VALSCM_MAX, and vlscm_binop().
|
static |
Definition at line 360 of file scm-math.c.
References FUNC_NAME, VALSCM_MIN, and vlscm_binop().
|
static |
Definition at line 304 of file scm-math.c.
References FUNC_NAME, VALSCM_MOD, and vlscm_binop().
|
static |
Definition at line 280 of file scm-math.c.
References FUNC_NAME, VALSCM_MUL, and vlscm_binop().
|
static |
Definition at line 320 of file scm-math.c.
References FUNC_NAME, VALSCM_NEG, and vlscm_unop().
|
static |
Definition at line 376 of file scm-math.c.
References FUNC_NAME, VALSCM_NOT, and vlscm_unop().
|
static |
Definition at line 328 of file scm-math.c.
References FUNC_NAME, VALSCM_NOP, and vlscm_unop().
|
static |
Definition at line 312 of file scm-math.c.
References FUNC_NAME, VALSCM_POW, and vlscm_binop().
|
static |
Definition at line 296 of file scm-math.c.
References FUNC_NAME, VALSCM_REM, and vlscm_binop().
|
static |
Definition at line 352 of file scm-math.c.
References FUNC_NAME, VALSCM_RSH, and vlscm_binop().
|
static |
Definition at line 272 of file scm-math.c.
References FUNC_NAME, VALSCM_SUB, and vlscm_binop().
|
static |
Definition at line 255 of file scm-math.c.
References gdbscm_wrap(), and vlscm_binop_gdbthrow().
Referenced by gdbscm_value_add(), gdbscm_value_div(), gdbscm_value_logand(), gdbscm_value_logior(), gdbscm_value_logxor(), gdbscm_value_lsh(), gdbscm_value_max(), gdbscm_value_min(), gdbscm_value_mod(), gdbscm_value_mul(), gdbscm_value_pow(), gdbscm_value_rem(), gdbscm_value_rsh(), and gdbscm_value_sub().
|
static |
Definition at line 138 of file scm-math.c.
References check_typedef(), type::code(), current_language, get_current_arch(), is_integral_type(), STRIP_REFERENCE, value::type(), VALSCM_ADD, VALSCM_BITAND, VALSCM_BITOR, VALSCM_BITXOR, VALSCM_DIV, VALSCM_LSH, VALSCM_MAX, VALSCM_MIN, VALSCM_MOD, VALSCM_MUL, VALSCM_POW, VALSCM_REM, VALSCM_RSH, VALSCM_SUB, value_as_long(), value_binop(), value_from_longest(), value_ptradd(), value_ptrdiff(), vlscm_convert_value_from_scheme(), and vlscm_scm_from_value().
Referenced by vlscm_binop().
|
static |
Definition at line 670 of file scm-math.c.
References builtin_type(), builtin_type::builtin_uint8, check_typedef(), gdbscm_make_out_of_range_error(), type::length(), lookup_array_range_type(), make_vector_type(), value, and value_from_contents().
Referenced by vlscm_convert_typed_value_from_scheme().
|
static |
Definition at line 621 of file scm-math.c.
References builtin_type(), gdbscm_make_out_of_range_error(), gdbscm_scm_to_longest(), gdbscm_scm_to_ulongest(), value_from_host_double(), value_from_longest(), and vlscm_integer_fits_p().
Referenced by vlscm_convert_typed_value_from_scheme().
|
static |
Definition at line 523 of file scm-math.c.
References type::code(), gdbscm_make_out_of_range_error(), gdbscm_make_type_error(), gdbscm_scm_to_longest(), gdbscm_scm_to_ulongest(), get_pointer_type_max(), get_signed_type_minmax(), get_unsigned_type_max(), is_integral_type(), type::is_unsigned(), value_from_host_double(), value_from_longest(), and value_from_pointer().
Referenced by vlscm_convert_typed_value_from_scheme().
struct value * vlscm_convert_typed_value_from_scheme | ( | const char * | func_name, |
int | obj_arg_pos, | ||
SCM | obj, | ||
int | type_arg_pos, | ||
SCM | type_scm, | ||
struct type * | type, | ||
SCM * | except_scmp, | ||
struct gdbarch * | gdbarch, | ||
const struct language_defn * | language ) |
Definition at line 716 of file scm-math.c.
References value::copy(), gdbscm_is_bool, gdbscm_is_true, gdbscm_make_misc_error(), gdbscm_make_type_error(), gdbscm_scm_from_gdb_exception(), gdbscm_scm_to_string(), is_integral_type(), language_bool_type(), lsscm_is_lazy_string(), lsscm_safe_lazy_string_to_value(), target_charset(), unpack(), value, value_from_longest(), vlscm_convert_bytevector(), vlscm_convert_number(), vlscm_convert_typed_number(), vlscm_is_value(), and vlscm_scm_to_value().
Referenced by gdbscm_make_value(), and vlscm_convert_value_from_scheme().
struct value * vlscm_convert_value_from_scheme | ( | const char * | func_name, |
int | obj_arg_pos, | ||
SCM | obj, | ||
SCM * | except_scmp, | ||
struct gdbarch * | gdbarch, | ||
const struct language_defn * | language ) |
Definition at line 853 of file scm-math.c.
References vlscm_convert_typed_value_from_scheme().
Referenced by gdbscm_value_call(), gdbscm_value_subscript(), ppscm_pretty_print_one_value(), ppscm_print_children(), vlscm_binop_gdbthrow(), vlscm_rich_compare(), and vlscm_unop_gdbthrow().
|
static |
Definition at line 584 of file scm-math.c.
References get_signed_type_minmax(), get_unsigned_type_max(), type::is_unsigned(), and type::length().
Referenced by vlscm_convert_number().
|
static |
Definition at line 417 of file scm-math.c.
References current_language, gdbscm_wrap(), get_current_arch(), value_equal(), value_less(), and vlscm_convert_value_from_scheme().
Referenced by gdbscm_value_eq_p(), gdbscm_value_ge_p(), gdbscm_value_gt_p(), gdbscm_value_le_p(), and gdbscm_value_lt_p().
|
static |
Definition at line 129 of file scm-math.c.
References gdbscm_wrap(), and vlscm_unop_gdbthrow().
Referenced by gdbscm_value_abs(), gdbscm_value_lognot(), gdbscm_value_neg(), gdbscm_value_not(), and gdbscm_value_pos().
|
static |
Definition at line 74 of file scm-math.c.
References current_language, get_current_arch(), language_bool_type(), not_lval, value::type(), VALSCM_ABS, VALSCM_LOGNOT, VALSCM_NEG, VALSCM_NOP, VALSCM_NOT, value_complement(), value_from_longest(), value_less(), value_logical_not(), value_neg(), vlscm_convert_value_from_scheme(), vlscm_scm_from_value(), and value::zero().
Referenced by vlscm_unop().
|
static |
Definition at line 866 of file scm-math.c.
Referenced by gdbscm_initialize_math().