From 76c4cca19c0c27b1c3ca6f597384707cccf3de06 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 21 Feb 2017 08:18:15 +0000 Subject: add performance counting mechanism for MRI debug/tuning purpose. * How to enable this feature? * define USE_DEBUG_COUNTER as 1. * you can disable to output the result with RUBY_DEBUG_COUNTER_DISABLE environment variable even if USE_DEBUG_COUNTER == 1. * How to add new counter? * add COUNTER() line on debug_counter.h. * include "debug_counter.h" * insert RB_DEBUG_COUNTER_INC() line on your favorite place. * counter output example: [RUBY_DEBUG_COUNTER] mc_inline_hit 999 [RUBY_DEBUG_COUNTER] mc_inline_miss 3 [RUBY_DEBUG_COUNTER] mc_global_hit 23 [RUBY_DEBUG_COUNTER] mc_global_miss 273 [RUBY_DEBUG_COUNTER] mc_global_state_miss 3 [RUBY_DEBUG_COUNTER] mc_class_serial_miss 0 [RUBY_DEBUG_COUNTER] mc_cme_complement 0 [RUBY_DEBUG_COUNTER] mc_cme_complement_hit 0 [RUBY_DEBUG_COUNTER] mc_search_super 1384 [RUBY_DEBUG_COUNTER] ivar_get_hit 0 [RUBY_DEBUG_COUNTER] ivar_get_miss 0 [RUBY_DEBUG_COUNTER] ivar_set_hit 0 [RUBY_DEBUG_COUNTER] ivar_set_miss 0 [RUBY_DEBUG_COUNTER] ivar_get 431 [RUBY_DEBUG_COUNTER] ivar_set 465 * mc_... is related to method caching. * ivar_... is related to instance variable accesses. * compare with dtrace/system tap features, there are completely no performacne penalties when it is disabled. * This feature is supported only on __GNUC__ compilers. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57676 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- common.mk | 13 +++++++++- debug_counter.c | 39 ++++++++++++++++++++++++++++++ debug_counter.h | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++ tool/debug_counter.rb | 6 +++++ variable.c | 4 +++ vm_insnhelper.c | 14 +++++++++-- vm_method.c | 5 ++++ 7 files changed, 145 insertions(+), 3 deletions(-) create mode 100644 debug_counter.c create mode 100644 debug_counter.h create mode 100644 tool/debug_counter.rb diff --git a/common.mk b/common.mk index ea3c2bd65a..e688639dfb 100644 --- a/common.mk +++ b/common.mk @@ -79,6 +79,7 @@ COMMONOBJS = array.$(OBJEXT) \ complex.$(OBJEXT) \ cont.$(OBJEXT) \ debug.$(OBJEXT) \ + debug_counter.$(OBJEXT) \ dir.$(OBJEXT) \ dln_find.$(OBJEXT) \ encoding.$(OBJEXT) \ @@ -849,10 +850,15 @@ incs: $(INSNS) {$(VPATH)}node_name.inc {$(VPATH)}known_errors.inc \ {$(VPATH)}vm_call_iseq_optimized.inc $(srcdir)/revision.h \ $(REVISION_H) \ $(UNICODE_DATA_HEADERS) $(srcdir)/enc/jis/props.h \ - {$(VPATH)}id.h {$(VPATH)}probes.dmyh + {$(VPATH)}id.h {$(VPATH)}probes.dmyh \ + {$(VPATH)}debug_counter_names.inc insns: $(INSNS) +debug_counter_names.inc: $(srcdir)/tool/debug_counter.rb $(srcdir)/debug_counter.h + $(ECHO) generating $@ + $(Q) $(BASERUBY) $(srcdir)/tool/debug_counter.rb $(srcdir)/debug_counter.h > $@ + id.h: $(srcdir)/tool/generic_erb.rb $(srcdir)/template/id.h.tmpl $(srcdir)/defs/id.def $(ECHO) generating $@ $(Q) $(BASERUBY) $(srcdir)/tool/generic_erb.rb --output=$@ \ @@ -1420,6 +1426,9 @@ debug.$(OBJEXT): {$(VPATH)}util.h debug.$(OBJEXT): {$(VPATH)}vm_core.h debug.$(OBJEXT): {$(VPATH)}vm_debug.h debug.$(OBJEXT): {$(VPATH)}vm_opts.h +debug_counter.$(OBJEXT): {$(VPATH)}debug_counter.h +debug_counter.$(OBJEXT): {$(VPATH)}debug_counter_names.inc +debug_counter.$(OBJEXT): {$(VPATH)}debug_counter.c dir.$(OBJEXT): $(hdrdir)/ruby/ruby.h dir.$(OBJEXT): $(top_srcdir)/include/ruby.h dir.$(OBJEXT): {$(VPATH)}config.h @@ -2534,6 +2543,7 @@ variable.$(OBJEXT): $(top_srcdir)/include/ruby.h variable.$(OBJEXT): {$(VPATH)}config.h variable.$(OBJEXT): {$(VPATH)}constant.h variable.$(OBJEXT): {$(VPATH)}defines.h +variable.$(OBJEXT): {$(VPATH)}debug_counter.h variable.$(OBJEXT): {$(VPATH)}encoding.h variable.$(OBJEXT): {$(VPATH)}id.h variable.$(OBJEXT): {$(VPATH)}id_table.h @@ -2568,6 +2578,7 @@ vm.$(OBJEXT): {$(VPATH)}constant.h vm.$(OBJEXT): {$(VPATH)}defines.h vm.$(OBJEXT): {$(VPATH)}encoding.h vm.$(OBJEXT): {$(VPATH)}eval_intern.h +vm.$(OBJEXT): {$(VPATH)}debug_counter.h vm.$(OBJEXT): {$(VPATH)}gc.h vm.$(OBJEXT): {$(VPATH)}id.h vm.$(OBJEXT): {$(VPATH)}id_table.h diff --git a/debug_counter.c b/debug_counter.c new file mode 100644 index 0000000000..7c23354df1 --- /dev/null +++ b/debug_counter.c @@ -0,0 +1,39 @@ +/********************************************************************** + + debug_counter.c - + + created at: Tue Feb 21 16:51:18 2017 + + Copyright (C) 2017 Koichi Sasada + +**********************************************************************/ + +#include "debug_counter.h" +#include + +#if USE_DEBUG_COUNTER + +/* do not modify manually. use a script above */ +const char * const debug_counter_names[] = { +#include "debug_counter_names.inc" + "" +}; + +size_t rb_debug_counter[RB_DEBUG_COUNTER_MAX + 1]; + +__attribute__((destructor)) +static void +rb_debug_counter_show_results(void) +{ + const char *env = getenv("RUBY_DEBUG_COUNTER_DISABLE"); + if (env == NULL || strcmp("1", env) != 0) { + int i; + for (i=0; imethod_state && RCLASS_SERIAL(klass) == cc->class_serial)) { + if (LIKELY(RB_DEBUG_COUNTER_INC_UNLESS(mc_global_state_miss, + GET_GLOBAL_METHOD_STATE() == cc->method_state) && + RB_DEBUG_COUNTER_INC_UNLESS(mc_class_serial_miss, + RCLASS_SERIAL(klass) == cc->class_serial))) { /* cache hit! */ VM_ASSERT(cc->call != NULL); + RB_DEBUG_COUNTER_INC(mc_inline_hit); return; } + RB_DEBUG_COUNTER_INC(mc_inline_miss); #endif - cc->me = rb_callable_method_entry(klass, ci->mid); VM_ASSERT(callable_method_entry_p(cc->me)); cc->call = vm_call_general; diff --git a/vm_method.c b/vm_method.c index 00b2763e5d..63b8aad9c7 100644 --- a/vm_method.c +++ b/vm_method.c @@ -695,6 +695,7 @@ search_method(VALUE klass, ID id, VALUE *defined_class_ptr) rb_method_entry_t *me; for (me = 0; klass; klass = RCLASS_SUPER(klass)) { + RB_DEBUG_COUNTER_INC(mc_search_super); if ((me = lookup_method_table(klass, id)) != 0) break; } @@ -778,10 +779,12 @@ method_entry_get(VALUE klass, ID id, VALUE *defined_class_ptr) verify_method_cache(klass, id, ent->defined_class, ent->me); #endif if (defined_class_ptr) *defined_class_ptr = ent->defined_class; + RB_DEBUG_COUNTER_INC(mc_global_hit); return ent->me; } #endif + RB_DEBUG_COUNTER_INC(mc_global_miss); return method_entry_get_without_cache(klass, id, defined_class_ptr); } @@ -798,6 +801,7 @@ prepare_callable_method_entry(VALUE defined_class, ID id, const rb_method_entry_ const rb_callable_method_entry_t *cme; if (me && me->defined_class == 0) { + RB_DEBUG_COUNTER_INC(mc_cme_complement); VM_ASSERT(RB_TYPE_P(defined_class, T_ICLASS) || RB_TYPE_P(defined_class, T_MODULE)); VM_ASSERT(me->defined_class == 0); @@ -806,6 +810,7 @@ prepare_callable_method_entry(VALUE defined_class, ID id, const rb_method_entry_ } if (rb_id_table_lookup(mtbl, id, (VALUE *)&me)) { + RB_DEBUG_COUNTER_INC(mc_cme_complement_hit); cme = (rb_callable_method_entry_t *)me; VM_ASSERT(callable_method_entry_p(cme)); } -- cgit v1.2.3