summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-03 15:36:17 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-03 15:36:17 +0000
commit72b199940d8a19d869bb9f0bb6065d15bbb030d7 (patch)
treea10f236e37c0e673ffc68fb8ab547608e34e9ccb /ext
parent0e8fae89ab921e1be06ee7285c5e919e386a1b26 (diff)
* trace.h: new file. wraps tracing mechanisms.
* defs/dtrace.d: new file. defined a dtrace provider "ruby". * include/ruby/ruby.h (LIKELY): moved from vm.c. (UNLIKELY): ditto. (OBJSETUP): probe "object-create". (RUBY_EVENT_RESCUE): new event. * vm_exec.c (DEBUG_ENTER_INSN): embeded a probe insn-entry into it. (DEBUG_END_INSN): insn-return. * vm.c (LIKELY): moved into ruby.h. (UNLIKELY): ditto. (Init_BareVM): embeded a probe "raise" into it. * variable.c (rb_class2name_without_alloc): new utility function. * tool/rbinstall.rb (install?(:ext, :arch, :'ext-arch')): installs dtrace.d if necessary. * thread_pthread.c (add_signal_thread_list): probe "raise". (rb_thread_create_timer_thread): ditto. * thread.c (rb_thread_schedule_rec): probes "thread-enter" and "thread-leave", (thread_start_func_2): ditto. (thread_cleanup_func): probe "thread-term" * lib/mkmf.rb: supports dtrace postprocessor on making an extension. * iseq.c (rb_vm_insn_name): new utility function. (rb_vm_insn_len): ditto. * insns.def (hook): probes "method-etnry", "method-return", "line", and "rescue". * compile.c (iseq_compile_each): adds a trace op for "rescue" probe. * gc.c (garbage_collect): probes "gc-begin" and "gc-end". (obj_free): probe "object-free" (garbage_collect_with_gvl): probe "raise" (negative_size_allocation_error): ditto. (rb_memerror): ditto. * eval.c (rb_rescue2): probe "rescue" (rb_longjmp): probe "raise" * ext/probe/probe.c: new extension for application defined probes. * ext/probe/extconf.rb: ditto. * configure.in (--with-tracing-model): new option to choose a tracing mechanism. (DTRACE): new substitution. name of dtrace(1). (RUBY_TRACING_MODEL): new substitution. (DTRACE_OBJ): ditto. (MINIDTRACE_OBJ): ditto. (GOLFDTRACE_OBJ): ditto. (LIBRUBY_DTRACE_OBJ): ditto. (RUBY_DTRACE_POSTPROCESS): new macro. checks whether the dtrace on the system needs postprocessing. (RUBY_DTRACE_BSD_BROKEN): new macro. checks whether the dtrace supports USDT. * Makefile.in: (DTRACE): new variable. name of dtrace(1). (TRACING_MODEL): new variable. name of the chosen tracing mechanism. (DTRACE_OBJ): same as the one in configure.in. (MINIDTRACE_OBJ): ditto. (GOLFDTRACE_OBJ): ditto. (LIBRUBY_DTRACE_OBJ): ditto. (CPPOUTFILE): new substitution. necessary for generating dtrace.d (trace_none.h): new target for TRACING_MODEL=none (RUBY_H_INCLUDES): appended a header for tracing. (distclean-local): also removes preprocessed version of dtrace.d ($(LIBRUBY_A)): needs $(LIBRUBY_DTRACE_OBJ) if dtrace needs postprocessing. ($(PROGRAM)): ditto. (golf): ditto. (miniruby): ditto. ($(arch_hdrdir)/ruby/dtrace.d): new target. preprocessed verson of defs/dtrace.d. generated if necessary. ($(arch_hdrdir)/ruby/trace_dtrace.h): new target. definition of probes. ($(LIBRUBY_DTRACE_OBJ)): new target. generated if dtrace needs postprocessing. ($(DTRACE_OBJ)): ditto. ($(MINIDTRACE_OBJ)): ditto. ($(GOLFDTRACE_OBJ)): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/probe/extconf.rb3
-rw-r--r--ext/probe/probe.c47
2 files changed, 50 insertions, 0 deletions
diff --git a/ext/probe/extconf.rb b/ext/probe/extconf.rb
new file mode 100644
index 0000000000..41b4bc3dd3
--- /dev/null
+++ b/ext/probe/extconf.rb
@@ -0,0 +1,3 @@
+require 'mkmf'
+create_makefile('probe')
+
diff --git a/ext/probe/probe.c b/ext/probe/probe.c
new file mode 100644
index 0000000000..e252b767b9
--- /dev/null
+++ b/ext/probe/probe.c
@@ -0,0 +1,47 @@
+/**
+ * probe.c -
+ *
+ * $Author$
+ *
+ * Based on the patch for Ruby 1.8.6 by Joyent Inc.
+ *
+ * Copyright 2007 Joyent Inc.
+ * Copyright 2009 Yuki Sonoda (Yugui).
+ */
+#include "ruby/ruby.h"
+
+#define FIRE_WITH_SUFFIXED_MSG(probe_name, probe_data, suffix) \
+ if (TRACE_RUBY_PROBE_ENABLED()) { \
+ char *msg = ALLOCA_N(char, strlen(probe_name) + strlen("-" #suffix) ); \
+ sprintf(msg, "%s%s", probe_name, "-" #suffix); \
+ FIRE_RUBY_PROBE(msg, (char*)probe_data); \
+ }
+
+static VALUE
+probe_fire(int argc, VALUE *argv, VALUE klass)
+{
+ int args;
+ VALUE name, data, ret;
+ const char *probe_data;
+ char *probe_name;
+
+ args = rb_scan_args(argc, argv, "11", &name, &data);
+ probe_data = args == 2 ? StringValuePtr(data) : "";
+ probe_name = StringValuePtr(name);
+
+ if (rb_block_given_p()) {
+ FIRE_WITH_SUFFIXED_MSG(probe_name, probe_data, start);
+ ret = rb_yield(Qnil);
+ FIRE_WITH_SUFFIXED_MSG(probe_name, probe_data, end);
+ } else {
+ if (TRACE_RUBY_PROBE_ENABLED())
+ FIRE_RUBY_PROBE(probe_name, (char*)probe_data);
+ ret = Qnil;
+ }
+ return ret;
+}
+
+void Init_probe()
+{
+ rb_define_global_function("fire_probe", probe_fire, -1);
+}