mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
* probes.d: add DTrace probe declarations. [ruby-core:27448]
* array.c (empty_ary_alloc, ary_new): added array create DTrace probe. * compile.c (rb_insns_name): allowing DTrace probes to access instruction sequence name. * Makefile.in: translate probes.d file to appropriate header file. * common.mk: declare dependencies on the DTrace header. * configure.in: add a test for existence of DTrace. * eval.c (setup_exception): add a probe for when an exception is raised. * gc.c: Add DTrace probes for mark begin and end, and sweep begin and end. * hash.c (empty_hash_alloc): Add a probe for hash allocation. * insns.def: Add probes for function entry and return. * internal.h: function declaration for compile.c change. * load.c (rb_f_load): add probes for `load` entry and exit, require entry and exit, and wrapping search_required for load path search. * object.c (rb_obj_alloc): added a probe for general object creation. * parse.y (yycompile0): added a probe around parse and compile phase. * string.c (empty_str_alloc, str_new): DTrace probes for string allocation. * test/dtrace/*: tests for DTrace probes. * vm.c (vm_invoke_proc): add probes for function return on exception raise, hash create, and instruction sequence execution. * vm_core.h: add probe declarations for function entry and exit. * vm_dump.c: add probes header file. * vm_eval.c (vm_call0_cfunc, vm_call0_cfunc_with_frame): add probe on function entry and return. * vm_exec.c: expose instruction number to instruction name function. * vm_insnshelper.c: add function entry and exit probes for cfunc methods. * vm_insnhelper.h: vm usage information is always collected, so uncomment the functions. 12 19:14:50 2012 Akinori MUSHA <knu@iDaemons.org> * configure.in (isinf, isnan): isinf() and isnan() are macros on DragonFly which cannot be found by AC_REPLACE_FUNCS(). This workaround enforces the fact that they exist on DragonFly. 12 15:59:38 2012 Shugo Maeda <shugo@ruby-lang.org> * vm_core.h (rb_call_info_t::refinements), compile.c (new_callinfo), vm_insnhelper.c (vm_search_method): revert r37616 because it's too slow. [ruby-dev:46477] * test/ruby/test_refinement.rb (test_inline_method_cache): skip the test until the bug is fixed efficiently. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
25f64fc62c
commit
4c740bae97
37 changed files with 850 additions and 25 deletions
20
string.c
20
string.c
|
@ -17,6 +17,7 @@
|
|||
#include "node.h"
|
||||
#include "eval_intern.h"
|
||||
#include "internal.h"
|
||||
#include "probes.h"
|
||||
#include <assert.h>
|
||||
|
||||
#define BEG(no) (regs->beg[(no)])
|
||||
|
@ -381,6 +382,15 @@ str_alloc(VALUE klass)
|
|||
return (VALUE)str;
|
||||
}
|
||||
|
||||
static inline VALUE
|
||||
empty_str_alloc(VALUE klass)
|
||||
{
|
||||
if(RUBY_DTRACE_STRING_CREATE_ENABLED()) {
|
||||
RUBY_DTRACE_STRING_CREATE(0, rb_sourcefile(), rb_sourceline());
|
||||
}
|
||||
return str_alloc(klass);
|
||||
}
|
||||
|
||||
static VALUE
|
||||
str_new(VALUE klass, const char *ptr, long len)
|
||||
{
|
||||
|
@ -390,6 +400,10 @@ str_new(VALUE klass, const char *ptr, long len)
|
|||
rb_raise(rb_eArgError, "negative string size (or size too big)");
|
||||
}
|
||||
|
||||
if(RUBY_DTRACE_STRING_CREATE_ENABLED()) {
|
||||
RUBY_DTRACE_STRING_CREATE(len, rb_sourcefile(), rb_sourceline());
|
||||
}
|
||||
|
||||
str = str_alloc(klass);
|
||||
if (len > RSTRING_EMBED_LEN_MAX) {
|
||||
RSTRING(str)->as.heap.aux.capa = len;
|
||||
|
@ -918,6 +932,10 @@ rb_str_dup(VALUE str)
|
|||
VALUE
|
||||
rb_str_resurrect(VALUE str)
|
||||
{
|
||||
if(RUBY_DTRACE_STRING_CREATE_ENABLED()) {
|
||||
RUBY_DTRACE_STRING_CREATE(
|
||||
RSTRING_LEN(str), rb_sourcefile(), rb_sourceline());
|
||||
}
|
||||
return str_replace(str_alloc(rb_cString), str);
|
||||
}
|
||||
|
||||
|
@ -7920,7 +7938,7 @@ Init_String(void)
|
|||
|
||||
rb_cString = rb_define_class("String", rb_cObject);
|
||||
rb_include_module(rb_cString, rb_mComparable);
|
||||
rb_define_alloc_func(rb_cString, str_alloc);
|
||||
rb_define_alloc_func(rb_cString, empty_str_alloc);
|
||||
rb_define_singleton_method(rb_cString, "try_convert", rb_str_s_try_convert, 1);
|
||||
rb_define_method(rb_cString, "initialize", rb_str_init, -1);
|
||||
rb_define_method(rb_cString, "initialize_copy", rb_str_replace, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue