From 1de3e801c40e5a0121198ae08cd5b32dd92a42a2 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 10 Dec 2014 19:35:07 +0000 Subject: * vm_core.h: introduce new field rb_thread_t::local_storage_recursive_hash_for_trace to store recursive hash to avoid creating new recursive (nested) hashes for each trace events. [Bug #10511] * vm_trace.c (rb_threadptr_exec_event_hooks_orig): use it. * cont.c: catch up this fix. * vm.c (rb_thread_mark): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- cont.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cont.c') diff --git a/cont.c b/cont.c index 035cfba71d..78ae0892b0 100644 --- a/cont.c +++ b/cont.c @@ -460,6 +460,7 @@ cont_init(rb_context_t *cont, rb_thread_t *th) cont->saved_thread.fiber = th->fiber; cont->saved_thread.local_storage = 0; cont->saved_thread.local_storage_recursive_hash = Qnil; + cont->saved_thread.local_storage_recursive_hash_for_trace = Qnil; } static rb_context_t * @@ -565,6 +566,7 @@ cont_restore_thread(rb_context_t *cont) th->stack_size = sth->stack_size; th->local_storage = sth->local_storage; th->local_storage_recursive_hash = sth->local_storage_recursive_hash; + th->local_storage_recursive_hash_for_trace = sth->local_storage_recursive_hash_for_trace; th->fiber = (rb_fiber_t*)cont; } @@ -1211,6 +1213,7 @@ fiber_init(VALUE fibval, VALUE proc) th->tag = 0; th->local_storage = st_init_numtable(); th->local_storage_recursive_hash = Qnil; + th->local_storage_recursive_hash_for_trace = Qnil; th->first_proc = proc; -- cgit v1.2.3