GDB (xrefs)
Macros | Enumerations | Functions | Variables
scm-math.c File Reference
#include "defs.h"
#include "arch-utils.h"
#include "charset.h"
#include "cp-abi.h"
#include "doublest.h"
#include "expression.h"
#include "dfp.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) == TYPE_CODE_REF) ? (TYPE_TARGET_TYPE (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 (enum valscm_unary_opcode opcode, SCM x, 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 valuevlscm_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 valuevlscm_convert_number (const char *func_name, int obj_arg_pos, SCM obj, struct gdbarch *gdbarch, SCM *except_scmp)
 
static struct valuevlscm_convert_bytevector (SCM bv, struct type *type, SCM type_scm, int arg_pos, const char *func_name, SCM *except_scmp, struct gdbarch *gdbarch)
 
struct valuevlscm_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 valuevlscm_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 []
 

Macro Definition Documentation

#define STRIP_REFERENCE (   TYPE)    ((TYPE_CODE (TYPE) == TYPE_CODE_REF) ? (TYPE_TARGET_TYPE (TYPE)) : (TYPE))

Definition at line 69 of file scm-math.c.

Referenced by vlscm_binop().

Enumeration Type Documentation

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 50 of file scm-math.c.

Enumerator
VALSCM_NOT 
VALSCM_NEG 
VALSCM_NOP 
VALSCM_ABS 
VALSCM_LOGNOT 

Definition at line 39 of file scm-math.c.

Function Documentation

void gdbscm_initialize_math ( void  )

Definition at line 1008 of file scm-math.c.

References gdbscm_define_functions().

static SCM gdbscm_value_abs ( SCM  x)
static

Definition at line 361 of file scm-math.c.

References FUNC_NAME, VALSCM_ABS, and vlscm_unop().

static SCM gdbscm_value_add ( SCM  x,
SCM  y 
)
static

Definition at line 289 of file scm-math.c.

References FUNC_NAME, VALSCM_ADD, and vlscm_binop().

static SCM gdbscm_value_div ( SCM  x,
SCM  y 
)
static

Definition at line 313 of file scm-math.c.

References FUNC_NAME, VALSCM_DIV, and vlscm_binop().

static SCM gdbscm_value_eq_p ( SCM  x,
SCM  y 
)
static

Definition at line 513 of file scm-math.c.

References FUNC_NAME, and vlscm_rich_compare().

static SCM gdbscm_value_ge_p ( SCM  x,
SCM  y 
)
static

Definition at line 545 of file scm-math.c.

References FUNC_NAME, and vlscm_rich_compare().

static SCM gdbscm_value_gt_p ( SCM  x,
SCM  y 
)
static

Definition at line 537 of file scm-math.c.

References FUNC_NAME, and vlscm_rich_compare().

static SCM gdbscm_value_le_p ( SCM  x,
SCM  y 
)
static

Definition at line 529 of file scm-math.c.

References FUNC_NAME, and vlscm_rich_compare().

static SCM gdbscm_value_logand ( SCM  x,
SCM  y 
)
static

Definition at line 417 of file scm-math.c.

References FUNC_NAME, VALSCM_BITAND, and vlscm_binop().

static SCM gdbscm_value_logior ( SCM  x,
SCM  y 
)
static

Definition at line 425 of file scm-math.c.

References FUNC_NAME, VALSCM_BITOR, and vlscm_binop().

static SCM gdbscm_value_lognot ( SCM  x)
static

Definition at line 409 of file scm-math.c.

References FUNC_NAME, VALSCM_LOGNOT, and vlscm_unop().

static SCM gdbscm_value_logxor ( SCM  x,
SCM  y 
)
static

Definition at line 433 of file scm-math.c.

References FUNC_NAME, VALSCM_BITXOR, and vlscm_binop().

static SCM gdbscm_value_lsh ( SCM  x,
SCM  y 
)
static

Definition at line 369 of file scm-math.c.

References FUNC_NAME, VALSCM_LSH, and vlscm_binop().

static SCM gdbscm_value_lt_p ( SCM  x,
SCM  y 
)
static

Definition at line 521 of file scm-math.c.

References FUNC_NAME, and vlscm_rich_compare().

static SCM gdbscm_value_max ( SCM  x,
SCM  y 
)
static

Definition at line 393 of file scm-math.c.

References FUNC_NAME, VALSCM_MAX, and vlscm_binop().

static SCM gdbscm_value_min ( SCM  x,
SCM  y 
)
static

Definition at line 385 of file scm-math.c.

References FUNC_NAME, VALSCM_MIN, and vlscm_binop().

static SCM gdbscm_value_mod ( SCM  x,
SCM  y 
)
static

Definition at line 329 of file scm-math.c.

References FUNC_NAME, VALSCM_MOD, and vlscm_binop().

static SCM gdbscm_value_mul ( SCM  x,
SCM  y 
)
static

Definition at line 305 of file scm-math.c.

References FUNC_NAME, VALSCM_MUL, and vlscm_binop().

static SCM gdbscm_value_neg ( SCM  x)
static

Definition at line 345 of file scm-math.c.

References FUNC_NAME, VALSCM_NEG, and vlscm_unop().

static SCM gdbscm_value_not ( SCM  x)
static

Definition at line 401 of file scm-math.c.

References FUNC_NAME, VALSCM_NOT, and vlscm_unop().

static SCM gdbscm_value_pos ( SCM  x)
static

Definition at line 353 of file scm-math.c.

References FUNC_NAME, VALSCM_NOP, and vlscm_unop().

static SCM gdbscm_value_pow ( SCM  x,
SCM  y 
)
static

Definition at line 337 of file scm-math.c.

References FUNC_NAME, VALSCM_POW, and vlscm_binop().

static SCM gdbscm_value_rem ( SCM  x,
SCM  y 
)
static

Definition at line 321 of file scm-math.c.

References FUNC_NAME, VALSCM_REM, and vlscm_binop().

static SCM gdbscm_value_rsh ( SCM  x,
SCM  y 
)
static

Definition at line 377 of file scm-math.c.

References FUNC_NAME, VALSCM_RSH, and vlscm_binop().

static SCM gdbscm_value_sub ( SCM  x,
SCM  y 
)
static

Definition at line 297 of file scm-math.c.

References FUNC_NAME, VALSCM_SUB, and vlscm_binop().

static SCM vlscm_binop ( enum valscm_binary_opcode  opcode,
SCM  x,
SCM  y,
const char *  func_name 
)
static
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 
)
static
static struct value* vlscm_convert_number ( const char *  func_name,
int  obj_arg_pos,
SCM  obj,
struct gdbarch gdbarch,
SCM *  except_scmp 
)
static
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
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 
)
static int vlscm_integer_fits_p ( SCM  obj,
struct type type 
)
static
static SCM vlscm_rich_compare ( int  op,
SCM  x,
SCM  y,
const char *  func_name 
)
static
static SCM vlscm_unop ( enum valscm_unary_opcode  opcode,
SCM  x,
const char *  func_name 
)
static

Variable Documentation

const scheme_function math_functions[]
static

Definition at line 906 of file scm-math.c.