From dd460dc40875258aae373f6eb16220940603dc22 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 15 Jul 2009 23:59:15 +0000 Subject: * vm_method.c: separate clearing cache entry code. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_method.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'vm_method.c') diff --git a/vm_method.c b/vm_method.c index e84d4ccba..b85351a67 100644 --- a/vm_method.c +++ b/vm_method.c @@ -34,7 +34,8 @@ rb_clear_cache(void) ent = cache; end = ent + CACHE_SIZE; while (ent < end) { - ent->me = ent->mid = 0; + ent->me = 0; + ent->mid = 0; ent++; } } @@ -52,7 +53,8 @@ rb_clear_cache_for_undef(VALUE klass, ID id) end = ent + CACHE_SIZE; while (ent < end) { if ((ent->me && ent->me->klass == klass) && ent->mid == id) { - ent->me = ent->mid = 0; + ent->me = 0; + ent->mid = 0; } ent++; } @@ -71,7 +73,8 @@ rb_clear_cache_by_id(ID id) end = ent + CACHE_SIZE; while (ent < end) { if (ent->mid == id) { - ent->me = ent->mid = 0; + ent->me = 0; + ent->mid = 0; } ent++; } @@ -90,7 +93,8 @@ rb_clear_cache_by_class(VALUE klass) end = ent + CACHE_SIZE; while (ent < end) { if (ent->klass == klass || (ent->me && ent->me->klass == klass)) { - ent->me = ent->mid = 0; + ent->me = 0; + ent->mid = 0; } ent++; } -- cgit