summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog37
-rw-r--r--eval.c24
-rw-r--r--gc.c27
-rw-r--r--numeric.c16
-rw-r--r--string.c3
5 files changed, 69 insertions, 38 deletions
diff --git a/ChangeLog b/ChangeLog
index 899da6e121..44080420e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,11 +7,24 @@ Tue Feb 25 23:03:08 2003 NAKAMURA Hiroshi <nahi@ruby-lang.org>
* lib/debug.rb (DEBUGGER__::Context#debug_command): bp filename must
be the basename of it. [ruby-talk:65644]
+Mon Feb 24 08:06:29 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * string.c (str_new): need no MEMZERO().
+
Sun Feb 23 17:57:06 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* lib/fileutils (fu_stream_blksize): wrong logial condition.
(and -> or).
+Sat Feb 22 03:12:56 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * numeric.c (fix_gt): use rb_num_coerce_cmp() instead of
+ rb_num_coerce_bin.
+
+ * numeric.c (fix_ge, fix_lt, fix_le): ditto.
+
+ * numeric.c (flo_gt, flo_ge, flo_lt, flo_le): ditto.
+
Sat Feb 22 02:45:20 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_thread_create): may called from place higher than
@@ -57,9 +70,7 @@ Fri Feb 21 05:16:14 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* compar.c (cmp_gt): return nil if "<=>" returns nil (means
incomparable).
- * compar.c (cmp_ge): ditto.
-
- * compar.c (cmp_lt): ditto.
+ * compar.c (cmp_ge, cmp_lt, cmp_le): ditto.
* compar.c (cmp_between): use RTEST(), since cmp_lt and cmp_gt may
return nil.
@@ -102,9 +113,7 @@ Thu Feb 20 04:07:06 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* eval.c (is_defined): private "[]=" and "foo=" support.
- * eval.c (rb_eval): ditto.
-
- * eval.c (assign): ditto.
+ * eval.c (rb_eval, assign): ditto.
Thu Feb 20 03:58:34 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
@@ -755,7 +764,7 @@ Mon Jan 13 20:45:19 2003 Guy Decoux <ts@moulon.inra.fr>
* parse.y (list_append): avoid O(n) search using node->nd_next->nd_end.
- * parse.y (list_append): ditto.
+ * parse.y (list_concat): ditto.
* eval.c (rb_eval): NODE_ARRY nd_end adoption.
@@ -853,13 +862,7 @@ Tue Jan 7 02:46:29 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* hash.c (env_clear): new Hash compatible method.
- * hash.c (env_shift): ditto.
-
- * hash.c (env_invert): ditto.
-
- * hash.c (env_replace): ditto.
-
- * hash.c (env_update): ditto.
+ * hash.c (env_shift, env_invert, env_replace, env_update): ditto.
Mon Jan 6 23:36:29 2003 Akinori MUSHA <knu@iDaemons.org>
@@ -895,11 +898,7 @@ Mon Jan 6 16:44:52 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* array.c (rb_ary_join): dispatch based on "to_str".
- * array.c (rb_ary_times): ditto.
-
- * array.c (rb_ary_equal): ditto.
-
- * process.c (rb_f_exec): dispatch based on "to_ary".
+ * array.c (rb_ary_times, rb_ary_equal): ditto.
Mon Jan 6 13:26:35 2003 NAKAMURA Usaku <usa@ruby-lang.org>
diff --git a/eval.c b/eval.c
index 83f9def7cc..17f7f774f3 100644
--- a/eval.c
+++ b/eval.c
@@ -5164,9 +5164,9 @@ eval(self, src, scope, file, line)
ruby_cref = (NODE*)ruby_frame->cbase;
old_wrapper = ruby_wrapper;
ruby_wrapper = data->wrapper;
- if ((file == 0 || (line == 1 && strcmp(file, "(eval)") == 0)) &&
- data->body && data->body->nd_file) {
+ if ((file == 0 || (line == 1 && strcmp(file, "(eval)") == 0)) && data->body) {
file = data->body->nd_file;
+ if (!file) file = "__builtin__";
line = nd_line(data->body);
}
@@ -7223,7 +7223,8 @@ method_inspect(method)
}
static VALUE
-mproc()
+mproc(method)
+ VALUE method;
{
VALUE proc;
@@ -7234,6 +7235,16 @@ mproc()
POP_FRAME();
POP_ITER();
+ if (method) {
+ struct METHOD *mdata;
+ struct BLOCK *bdata;
+
+ Data_Get_Struct(method, struct METHOD, mdata);
+ Data_Get_Struct(proc, struct BLOCK, bdata);
+ bdata->body->nd_file = mdata->body->nd_file;
+ nd_set_line(bdata->body, nd_line(mdata->body));
+ }
+
return proc;
}
@@ -7264,14 +7275,14 @@ static VALUE
method_proc(method)
VALUE method;
{
- return rb_iterate((VALUE(*)_((VALUE)))mproc, 0, bmcall, method);
+ return rb_iterate((VALUE(*)_((VALUE)))mproc, method, bmcall, method);
}
static VALUE
umethod_proc(method)
VALUE method;
{
- return rb_iterate((VALUE(*)_((VALUE)))mproc, 0, umcall, method);
+ return rb_iterate((VALUE(*)_((VALUE)))mproc, method, umcall, method);
}
static VALUE
@@ -7456,7 +7467,7 @@ enum thread_status {
THREAD_TO_KILL,
THREAD_RUNNABLE,
THREAD_STOPPED,
- THREAD_KILLED
+ THREAD_KILLED,
};
#define WAIT_FD (1<<0)
@@ -9010,6 +9021,7 @@ rb_thread_create(fn, arg)
VALUE (*fn)();
void *arg;
{
+ Init_stack((VALUE*)&arg);
return rb_thread_start_0(fn, arg, rb_thread_alloc(rb_cThread));
}
diff --git a/gc.c b/gc.c
index 4c12105700..74ea83eacd 100644
--- a/gc.c
+++ b/gc.c
@@ -562,7 +562,7 @@ rb_mark_tbl(tbl)
}
static int
-mark_hashentry(key, value)
+mark_keyvalue(key, value)
VALUE key;
VALUE value;
{
@@ -576,7 +576,7 @@ rb_mark_hash(tbl)
st_table *tbl;
{
if (!tbl) return;
- st_foreach(tbl, mark_hashentry, 0);
+ st_foreach(tbl, mark_keyvalue, 0);
}
void
@@ -1246,6 +1246,18 @@ rb_gc_start()
return Qnil;
}
+#if !defined(__human68k__)
+static int
+stack_growup_p(addr)
+ VALUE *addr;
+{
+ SET_STACK_END;
+
+ if (STACK_END > addr) return Qtrue;
+ return Qfalse;
+}
+#endif
+
void
Init_stack(addr)
VALUE *addr;
@@ -1255,6 +1267,17 @@ Init_stack(addr)
rb_gc_stack_start = _SEND;
#else
if (!addr) addr = (VALUE *)&addr;
+ if (rb_gc_stack_start) {
+ if (stack_growup_p(addr)) {
+ if (rb_gc_stack_start > addr)
+ rb_gc_stack_start = addr;
+ }
+ else {
+ if (rb_gc_stack_start < addr)
+ rb_gc_stack_start = addr;
+ }
+ return;
+ }
rb_gc_stack_start = addr;
#endif
#ifdef HAVE_GETRLIMIT
diff --git a/numeric.c b/numeric.c
index 646f9ba571..fe549fb1ee 100644
--- a/numeric.c
+++ b/numeric.c
@@ -594,7 +594,7 @@ flo_gt(x, y)
break;
default:
- return rb_num_coerce_bin(x, y);
+ return rb_num_coerce_cmp(x, y);
}
return (a > b)?Qtrue:Qfalse;
}
@@ -620,7 +620,7 @@ flo_ge(x, y)
break;
default:
- return rb_num_coerce_bin(x, y);
+ return rb_num_coerce_cmp(x, y);
}
return (a >= b)?Qtrue:Qfalse;
}
@@ -646,7 +646,7 @@ flo_lt(x, y)
break;
default:
- return rb_num_coerce_bin(x, y);
+ return rb_num_coerce_cmp(x, y);
}
return (a < b)?Qtrue:Qfalse;
}
@@ -672,7 +672,7 @@ flo_le(x, y)
break;
default:
- return rb_num_coerce_bin(x, y);
+ return rb_num_coerce_cmp(x, y);
}
return (a <= b)?Qtrue:Qfalse;
}
@@ -1407,7 +1407,7 @@ fix_gt(x, y)
return Qfalse;
}
else {
- return rb_num_coerce_bin(x, y);
+ return rb_num_coerce_cmp(x, y);
}
}
@@ -1422,7 +1422,7 @@ fix_ge(x, y)
return Qfalse;
}
else {
- return rb_num_coerce_bin(x, y);
+ return rb_num_coerce_cmp(x, y);
}
}
@@ -1437,7 +1437,7 @@ fix_lt(x, y)
return Qfalse;
}
else {
- return rb_num_coerce_bin(x, y);
+ return rb_num_coerce_cmp(x, y);
}
}
@@ -1452,7 +1452,7 @@ fix_le(x, y)
return Qfalse;
}
else {
- return rb_num_coerce_bin(x, y);
+ return rb_num_coerce_cmp(x, y);
}
}
diff --git a/string.c b/string.c
index f567f75bfe..e4308be0f5 100644
--- a/string.c
+++ b/string.c
@@ -70,9 +70,6 @@ str_new(klass, ptr, len)
if (ptr) {
memcpy(RSTRING(str)->ptr, ptr, len);
}
- else {
- MEMZERO(RSTRING(str)->ptr, char, len);
- }
RSTRING(str)->ptr[len] = '\0';
return str;
}