/************************************************ numeric.c - $Author: matz $ $Date: 1994/12/06 09:30:05 $ created at: Fri Aug 13 18:33:09 JST 1993 Copyright (C) 1994 Yukihiro Matsumoto ************************************************/ #include "ruby.h" #include "env.h" #include static ID coerce; static ID to_i; VALUE C_Numeric; VALUE C_Float; VALUE C_Integer; VALUE C_Fixnum; double big2dbl(); VALUE float_new(d) double d; { NEWOBJ(flt, struct RFloat); OBJSETUP(flt, C_Float, T_FLOAT); flt->value = d; return (VALUE)flt; } static num_coerce_bin(x, y) VALUE x, y; { return rb_funcall(rb_funcall(y, coerce, 1, x), the_env->last_func, 1, y); } static VALUE Fnum_uplus(num) VALUE num; { return num; } static VALUE Fnum_uminus(num) VALUE num; { return rb_funcall(rb_funcall(num, coerce, 1, INT2FIX(0)), 1, num); } static VALUE Fnum_dot2(left, right) VALUE left, right; { Need_Fixnum(left); Need_Fixnum(right); return range_new(left, right); } static VALUE Fnum_next(num) VALUE num; { num = rb_funcall(num, rb_intern("to_i"), 0); return rb_funcall(num, '+', 1, INT2FIX(1)); } VALUE Fnum_upto(from, to) VALUE from, to; { int i, end; end = NUM2INT(to); for (i = NUM2INT(from); i <= end; i++) { rb_yield(INT2FIX(i)); } return from; } static VALUE Fnum_downto(from, to) VALUE from, to; { int i, end; end = NUM2INT(to); for (i=NUM2INT(from); i >= end; i--) { rb_yield(INT2FIX(i)); } return from; } static VALUE Fnum_step(from, to, step) VALUE from, to; { int i, end, diff; end = NUM2INT(to); diff = NUM2INT(step); if (diff == 0) { Fail("step cannot be 0"); } else if (diff > 0) { for (i=NUM2INT(from); i <= end; i+=diff) { rb_yield(INT2FIX(i)); } } else { for (i=NUM2INT(from); i >= end; i+=diff) { rb_yield(INT2FIX(i)); } } return from; } static VALUE Fnum_dotimes(num) VALUE num; { int i, end; end = NUM2INT(num); for (i=0; ivalue); if (RFLOAT(div)->value > d) { div = float_new(d); } } mod = rb_funcall(x, '%', 1, y); return assoc_new(div, mod); } static VALUE Fnum_is_int(num) VALUE num; { return FALSE; } static VALUE Fflo_to_s(flt) struct RFloat *flt; { char buf[32]; sprintf(buf, "%g", flt->value); return str_new2(buf); } static VALUE Fflo_coerce(x, y) VALUE x, y; { switch (TYPE(y)) { case T_FIXNUM: return float_new((double)FIX2INT(y)); case T_FLOAT: return y; case T_BIGNUM: return Fbig_to_f(y); default: Fail("can't coerce %s to Float", rb_class2name(CLASS_OF(y))); } /* not reached */ return Qnil; } static VALUE Fflo_uminus(flt) struct RFloat *flt; { return float_new(-flt->value); } static VALUE Fflo_plus(x, y) struct RFloat *x, *y; { switch (TYPE(y)) { case T_FIXNUM: return float_new(x->value + (double)FIX2INT(y)); case T_BIGNUM: return float_new(x->value + big2dbl(y)); case T_FLOAT: return float_new(x->value + y->value); case T_STRING: return Fstr_plus(obj_as_string(x), y); default: return num_coerce_bin(x, y); } } static VALUE Fflo_minus(x, y) struct RFloat *x, *y; { switch (TYPE(y)) { case T_FIXNUM: return float_new(x->value - (double)FIX2INT(y)); case T_BIGNUM: return float_new(x->value - big2dbl(y)); case T_FLOAT: return float_new(x->value - y->value); default: return num_coerce_bin(x, y); } } static VALUE Fflo_mul(x, y) struct RFloat *x, *y; { switch (TYPE(y)) { case T_FIXNUM: return float_new(x->value * (double)FIX2INT(y)); case T_BIGNUM: return float_new(x->value * big2dbl(y)); case T_FLOAT: return float_new(x->value * y->value); case T_STRING: return Fstr_times(y, INT2FIX((int)x->value)); default: return num_coerce_bin(x, y); } } static VALUE Fflo_div(x, y) struct RFloat *x, *y; { int f_y; double d; switch (TYPE(y)) { case T_FIXNUM: f_y = FIX2INT(y); if (f_y == 0) Fail("devided by 0"); return float_new(x->value / (double)f_y); case T_BIGNUM: d = big2dbl(y); if (d == 0.0) Fail("devided by 0"); return float_new(x->value + d); case T_FLOAT: if (y->value == 0.0) Fail("devided by 0"); return float_new(x->value / y->value); default: return num_coerce_bin(x, y); } } static VALUE Fflo_mod(x, y) struct RFloat *x, *y; { double value; switch (TYPE(y)) { case T_FIXNUM: value = (double)FIX2INT(y); break; case T_BIGNUM: value = big2dbl(y); break; case T_FLOAT: value = y->value; break; default: return num_coerce_bin(x, y); } #ifdef HAVE_FMOD { value = fmod(x->value, value); } #else { double value1 = x->value; double value2; modf(value1/value, &value2); value = value1 - value2 * value; } #endif return float_new(value); } Fflo_pow(x, y) struct RFloat *x, *y; { switch (TYPE(y)) { case T_FIXNUM: return float_new(pow(x->value, (double)FIX2INT(y))); case T_BIGNUM: return float_new(pow(x->value, big2dbl(y))); case T_FLOAT: return float_new(pow(x->value, y->value)); default: return num_coerce_bin(x, y); } } static VALUE Fflo_eq(x, y) struct RFloat *x, *y; { switch (TYPE(y)) { case T_NIL: return Qnil; case T_FIXNUM: if (x->value == FIX2INT(y)) return TRUE; return FALSE; case T_BIGNUM: return float_new(x->value == big2dbl(y)); case T_FLOAT: return (x->value == y->value)?TRUE:FALSE; default: return num_coerce_bin(x, y); } } static VALUE Fflo_hash(num) struct RFloat *num; { double d; char *c; int i, hash; d = num->value; c = (char*)&d; for (hash=0, i=0; ivalue; switch (TYPE(y)) { case T_FIXNUM: b = (double)FIX2INT(y); break; case T_BIGNUM: b = big2dbl(y); break; case T_FLOAT: b = y->value; break; default: return num_coerce_bin(x, y); } if (a == b) return INT2FIX(0); if (a > b) return INT2FIX(1); return INT2FIX(-1); } static VALUE Fflo_to_i(num) struct RFloat *num; { double f = num->value; int val; if (!FIXABLE(f)) { return dbl2big(f); } val = f; return INT2FIX(val); } static VALUE Fflo_to_f(num) VALUE num; { return num; } static VALUE Fflo_abs(flt) struct RFloat *flt; { double val = fabs(flt->value); return float_new(val); } static VALUE to_integer(val) VALUE val; { return rb_funcall(val, to_i, 0); } static VALUE fail_to_integer(val) VALUE val; { Fail("failed to convert %s into integer", rb_class2name(CLASS_OF(val))); } int num2int(val) VALUE val; { if (val == Qnil) return 0; switch (TYPE(val)) { case T_FIXNUM: return FIX2INT(val); break; case T_FLOAT: if (RFLOAT(val)->value <= (double) LONG_MAX && RFLOAT(val)->value >= (double) LONG_MIN) { return (int)(RFLOAT(val)->value); } else { Fail("float %g out of rang of integer", RFLOAT(val)->value); } break; case T_BIGNUM: return big2int(val); default: val = rb_resque(to_integer, val, fail_to_integer, val); return NUM2INT(val); } } VALUE num2fix(val) VALUE val; { int v; if (val == Qnil) return INT2FIX(0); switch (TYPE(val)) { case T_FIXNUM: return val; case T_FLOAT: case T_BIGNUM: default: v = num2int(val); if (!FIXABLE(v)) Fail("integer %d out of rang of Fixnum", v); return INT2FIX(v); } } static VALUE Fint_is_int(num) VALUE num; { return TRUE; } static VALUE Fint_chr(num) VALUE num; { char c; int i = NUM2INT(num); if (i < 0 || 0xff < i) Fail("%d out of char range", i); c = i; return str_new(&c, 1); } static VALUE Ffix_uminus(num) VALUE num; { return int2inum(-FIX2INT(num)); } VALUE fix2str(x, base) VALUE x; int base; { char fmt[3], buf[12]; fmt[0] = '%'; fmt[2] = '\0'; if (base == 10) fmt[1] = 'd'; else if (base == 16) fmt[1] = 'x'; else if (base == 8) fmt[1] = 'o'; else Fail("fixnum cannot treat base %d", base); sprintf(buf, fmt, FIX2INT(x)); return str_new2(buf); } VALUE Ffix_to_s(in) VALUE in; { return fix2str(in, 10); } static VALUE Ffix_plus(x, y) VALUE x; struct RFloat *y; { switch (TYPE(y)) { case T_FIXNUM: { int a, b, c; VALUE r; a = FIX2INT(x); b = FIX2INT(y); c = a + b; r = INT2FIX(c); if (FIX2INT(r) != c) { r = Fbig_plus(int2big(a), int2big(b)); } return r; } case T_FLOAT: return float_new((double)FIX2INT(x) + y->value); default: return num_coerce_bin(x, y); } } static VALUE Ffix_minus(x, y) VALUE x; struct RFloat *y; { switch (TYPE(y)) { case T_FIXNUM: { int a, b, c; VALUE r; a = FIX2INT(x); b = FIX2INT(y); c = a - b; r = INT2FIX(c); if (FIX2INT(r) != c) { r = Fbig_minus(int2big(a), int2big(b)); } return r; } case T_FLOAT: return float_new((double)FIX2INT(x) - y->value); default: return num_coerce_bin(x, y); } } static VALUE Ffix_mul(x, y) VALUE x; struct RFloat *y; { switch (TYPE(y)) { case T_FIXNUM: { int a = FIX2INT(x), b = FIX2INT(y); int c = a * b; VALUE r = INT2FIX(c); if (FIX2INT(r) != c) { r = Fbig_mul(int2big(a), int2big(b)); } return r; } case T_FLOAT: return float_new((double)FIX2INT(x) * y->value); default: return num_coerce_bin(x, y); } } static VALUE Ffix_div(x, y) VALUE x; struct RFloat *y; { int i; if (TYPE(y) == T_FIXNUM) { i = FIX2INT(y); if (i == 0) Fail("devided by 0"); i = FIX2INT(x)/i; return INT2FIX(i); } return num_coerce_bin(x, y); } static VALUE Ffix_mod(x, y) VALUE x, y; { int mod, i; if (TYPE(y) == T_FIXNUM) { i = FIX2INT(y); if (i == 0) Fail("devided by 0"); i = FIX2INT(x)%i; return INT2FIX(i); } return num_coerce_bin(x, y); } static VALUE Ffix_pow(x, y) VALUE x, y; { extern double pow(); if (FIXNUM_P(y)) { int a, b; b = FIX2INT(y); if (b == 0) return INT2FIX(1); a = FIX2INT(x); if (b > 0) { return Fbig_pow(int2big(a), y); } return float_new(pow((double)a, (double)b)); } else if (NIL_P(y)) { return INT2FIX(1); } return num_coerce_bin(x, y); } static VALUE Ffix_equal(x, y) VALUE x, y; { if (FIXNUM_P(y)) { return (FIX2INT(x) == FIX2INT(y))?TRUE:FALSE; } else if (NIL_P(y)) { return Qnil; } else { return num_coerce_bin(x, y); } } static VALUE Ffix_cmp(x, y) VALUE x, y; { if (FIXNUM_P(y)) { int a = FIX2INT(x), b = FIX2INT(y); if (a == b) return INT2FIX(0); if (a > b) return INT2FIX(1); return INT2FIX(-1); } else { return num_coerce_bin(x, y); } } static VALUE Ffix_gt(x, y) VALUE x, y; { if (FIXNUM_P(y)) { int a = FIX2INT(x), b = FIX2INT(y); if (a > b) return TRUE; return FALSE; } else { return num_coerce_bin(x, y); } } static VALUE Ffix_ge(x, y) VALUE x, y; { if (FIXNUM_P(y)) { int a = FIX2INT(x), b = FIX2INT(y); if (a >= b) return TRUE; return FALSE; } else { return num_coerce_bin(x, y); } } static VALUE Ffix_lt(x, y) VALUE x, y; { if (FIXNUM_P(y)) { int a = FIX2INT(x), b = FIX2INT(y); if (a < b) return TRUE; return FALSE; } else { return num_coerce_bin(x, y); } } static VALUE Ffix_le(x, y) VALUE x, y; { if (FIXNUM_P(y)) { int a = FIX2INT(x), b = FIX2INT(y); if (a <= b) return TRUE; return FALSE; } else { return num_coerce_bin(x, y); } } static VALUE Ffix_dot2(left, right) VALUE left, right; { Need_Fixnum(right); return range_new(left, right); } static VALUE Ffix_rev(num) VALUE num; { unsigned long val = FIX2UINT(num); val = ~val; return INT2FIX(val); } static VALUE Ffix_and(x, y) VALUE x, y; { long val; if (TYPE(y) == T_BIGNUM) { return Fbig_and(y, x); } val = NUM2INT(x) & NUM2INT(y); return int2inum(val); } static VALUE Ffix_or(x, y) VALUE x, y; { long val; if (TYPE(y) == T_BIGNUM) { return Fbig_or(y, x); } val = NUM2INT(x) | NUM2INT(y); return INT2FIX(val); } static VALUE Ffix_xor(x, y) VALUE x, y; { long val; if (TYPE(y) == T_BIGNUM) { return Fbig_xor(y, x); } val = NUM2INT(x) ^ NUM2INT(y); return INT2FIX(val); } static VALUE Ffix_lshift(x, y) VALUE x, y; { long val, width; val = NUM2INT(x); width = NUM2INT(y); if (width > (sizeof(VALUE)*CHAR_BIT-1) || (unsigned)val>>(sizeof(VALUE)*CHAR_BIT-width) > 0) { return Fbig_lshift(int2big(val), y); } val = val << width; return int2inum(val); } static VALUE Ffix_rshift(x, y) VALUE x, y; { long val; val = RSHIFT(NUM2INT(x), NUM2INT(y)); return INT2FIX(val); } static VALUE Ffix_aref(fix, idx) VALUE fix, idx; { unsigned long val = FIX2INT(fix); int i = FIX2INT(idx); if (i < 0 || sizeof(VALUE)*CHAR_BIT-1 < i) return INT2FIX(0); if (val & (1<", Ffix_cmp, 1); rb_define_method(C_Fixnum, ">", Ffix_gt, 1); rb_define_method(C_Fixnum, ">=", Ffix_ge, 1); rb_define_method(C_Fixnum, "<", Ffix_lt, 1); rb_define_method(C_Fixnum, "<=", Ffix_le, 1); rb_define_method(C_Fixnum, "..", Ffix_dot2, 1); rb_define_method(C_Fixnum, "~", Ffix_rev, 0); rb_define_method(C_Fixnum, "&", Ffix_and, 1); rb_define_method(C_Fixnum, "|", Ffix_or, 1); rb_define_method(C_Fixnum, "^", Ffix_xor, 1); rb_define_method(C_Fixnum, "[]", Ffix_aref, 1); rb_define_method(C_Fixnum, "<<", Ffix_lshift, 1); rb_define_method(C_Fixnum, ">>", Ffix_rshift, 1); rb_define_method(C_Fixnum, "to_i", Ffix_to_i, 0); rb_define_method(C_Fixnum, "to_f", Ffix_to_f, 0); rb_define_method(C_Fixnum, "next", Ffix_next, 0); C_Float = rb_define_class("Float", C_Numeric); rb_define_method(C_Float, "to_s", Fflo_to_s, 0); rb_define_method(C_Float, "coerce", Fflo_coerce, 1); rb_define_method(C_Float, "-@", Fflo_uminus, 0); rb_define_method(C_Float, "+", Fflo_plus, 1); rb_define_method(C_Float, "-", Fflo_minus, 1); rb_define_method(C_Float, "*", Fflo_mul, 1); rb_define_method(C_Float, "/", Fflo_div, 1); rb_define_method(C_Float, "%", Fflo_mod, 1); rb_define_method(C_Float, "**", Fflo_pow, 1); rb_define_method(C_Float, "==", Fflo_eq, 1); rb_define_method(C_Float, "<=>", Fflo_cmp, 1); rb_define_method(C_Float, "hash", Fflo_hash, 0); rb_define_method(C_Float, "to_i", Fflo_to_i, 0); rb_define_method(C_Float, "to_f", Fflo_to_f, 0); rb_define_method(C_Float, "abs", Fflo_abs, 0); }