2012-06-02 19:23:37 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
2012-06-09 02:44:01 +04:00
|
|
|
vm_backtrace.c -
|
2012-06-02 19:23:37 +04:00
|
|
|
|
|
|
|
$Author: ko1 $
|
|
|
|
created at: Sun Jun 03 00:14:20 2012
|
|
|
|
|
|
|
|
Copyright (C) 1993-2012 Yukihiro Matsumoto
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
2012-06-02 19:59:37 +04:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
#include "ruby/encoding.h"
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
#include "vm_core.h"
|
|
|
|
#include "iseq.h"
|
2012-06-02 19:23:37 +04:00
|
|
|
|
|
|
|
static VALUE rb_cBacktrace;
|
2012-06-02 20:46:08 +04:00
|
|
|
static VALUE rb_cBacktraceLocation;
|
2012-06-02 19:23:37 +04:00
|
|
|
|
|
|
|
extern VALUE ruby_engine_name;
|
|
|
|
|
|
|
|
inline static int
|
2012-06-02 20:46:08 +04:00
|
|
|
calc_lineno(const rb_iseq_t *iseq, const VALUE *pc)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
|
|
|
return rb_iseq_line_no(iseq, pc - iseq->iseq_encoded);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_vm_get_sourceline(const rb_control_frame_t *cfp)
|
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
int lineno = 0;
|
2012-06-02 19:23:37 +04:00
|
|
|
const rb_iseq_t *iseq = cfp->iseq;
|
|
|
|
|
|
|
|
if (RUBY_VM_NORMAL_ISEQ_P(iseq)) {
|
2012-06-02 20:46:08 +04:00
|
|
|
lineno = calc_lineno(cfp->iseq, cfp->pc);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
2012-06-02 20:46:08 +04:00
|
|
|
return lineno;
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
typedef struct rb_backtrace_location_struct {
|
|
|
|
enum LOCATION_TYPE {
|
|
|
|
LOCATION_TYPE_ISEQ = 1,
|
|
|
|
LOCATION_TYPE_ISEQ_CALCED,
|
|
|
|
LOCATION_TYPE_CFUNC,
|
2012-06-11 06:57:02 +04:00
|
|
|
LOCATION_TYPE_IFUNC
|
2012-06-02 19:23:37 +04:00
|
|
|
} type;
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
const rb_iseq_t *iseq;
|
|
|
|
union {
|
|
|
|
const VALUE *pc;
|
2012-06-02 20:46:08 +04:00
|
|
|
int lineno;
|
|
|
|
} lineno;
|
2012-06-02 19:23:37 +04:00
|
|
|
} iseq;
|
|
|
|
struct {
|
|
|
|
ID mid;
|
2012-06-02 20:46:08 +04:00
|
|
|
struct rb_backtrace_location_struct *prev_loc;
|
2012-06-02 19:23:37 +04:00
|
|
|
} cfunc;
|
|
|
|
} body;
|
2012-06-02 20:46:08 +04:00
|
|
|
} rb_backtrace_location_t;
|
2012-06-02 19:23:37 +04:00
|
|
|
|
|
|
|
struct valued_frame_info {
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_backtrace_location_t *loc;
|
2012-06-02 19:23:37 +04:00
|
|
|
VALUE btobj;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2012-06-02 20:46:08 +04:00
|
|
|
location_mark(void *ptr)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
|
|
|
if (ptr) {
|
|
|
|
struct valued_frame_info *vfi = (struct valued_frame_info *)ptr;
|
|
|
|
rb_gc_mark(vfi->btobj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-02 20:46:08 +04:00
|
|
|
location_mark_entry(rb_backtrace_location_t *fi)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
|
|
|
switch (fi->type) {
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_ISEQ:
|
|
|
|
case LOCATION_TYPE_ISEQ_CALCED:
|
2012-06-02 19:23:37 +04:00
|
|
|
rb_gc_mark(fi->body.iseq.iseq->self);
|
|
|
|
break;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_CFUNC:
|
|
|
|
case LOCATION_TYPE_IFUNC:
|
2012-06-02 19:23:37 +04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-02 20:46:08 +04:00
|
|
|
location_free(void *ptr)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
|
|
|
if (ptr) {
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_backtrace_location_t *fi = (rb_backtrace_location_t *)ptr;
|
2012-06-02 19:23:37 +04:00
|
|
|
ruby_xfree(fi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
2012-06-02 20:46:08 +04:00
|
|
|
location_memsize(const void *ptr)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
/* rb_backtrace_location_t *fi = (rb_backtrace_location_t *)ptr; */
|
|
|
|
return sizeof(rb_backtrace_location_t);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
static const rb_data_type_t location_data_type = {
|
2012-06-02 19:23:37 +04:00
|
|
|
"frame_info",
|
2012-06-02 20:46:08 +04:00
|
|
|
{location_mark, location_free, location_memsize,},
|
2012-06-02 19:23:37 +04:00
|
|
|
};
|
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
static inline rb_backtrace_location_t *
|
|
|
|
location_ptr(VALUE locobj)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
struct valued_frame_info *vloc;
|
|
|
|
GetCoreDataFromValue(locobj, struct valued_frame_info, vloc);
|
|
|
|
return vloc->loc;
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-06-02 20:46:08 +04:00
|
|
|
location_lineno(rb_backtrace_location_t *loc)
|
|
|
|
{
|
|
|
|
switch (loc->type) {
|
|
|
|
case LOCATION_TYPE_ISEQ:
|
|
|
|
loc->type = LOCATION_TYPE_ISEQ_CALCED;
|
|
|
|
return (loc->body.iseq.lineno.lineno = calc_lineno(loc->body.iseq.iseq, loc->body.iseq.lineno.pc));
|
|
|
|
case LOCATION_TYPE_ISEQ_CALCED:
|
|
|
|
return loc->body.iseq.lineno.lineno;
|
|
|
|
case LOCATION_TYPE_CFUNC:
|
|
|
|
if (loc->body.cfunc.prev_loc) {
|
|
|
|
return location_lineno(loc->body.cfunc.prev_loc);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
default:
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_bug("location_lineno: unreachable");
|
2012-06-02 19:23:37 +04:00
|
|
|
UNREACHABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_lineno_m(VALUE self)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
return INT2FIX(location_lineno(location_ptr(self)));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_label(rb_backtrace_location_t *loc)
|
|
|
|
{
|
|
|
|
switch (loc->type) {
|
|
|
|
case LOCATION_TYPE_ISEQ:
|
|
|
|
case LOCATION_TYPE_ISEQ_CALCED:
|
2012-06-04 06:49:37 +04:00
|
|
|
return loc->body.iseq.iseq->location.label;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_CFUNC:
|
|
|
|
return rb_id2str(loc->body.cfunc.mid);
|
|
|
|
case LOCATION_TYPE_IFUNC:
|
2012-06-02 19:23:37 +04:00
|
|
|
default:
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_bug("location_label: unreachable");
|
2012-06-02 19:23:37 +04:00
|
|
|
UNREACHABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_label_m(VALUE self)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
return location_label(location_ptr(self));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_base_label(rb_backtrace_location_t *loc)
|
|
|
|
{
|
|
|
|
switch (loc->type) {
|
|
|
|
case LOCATION_TYPE_ISEQ:
|
|
|
|
case LOCATION_TYPE_ISEQ_CALCED:
|
2012-06-04 06:49:37 +04:00
|
|
|
return loc->body.iseq.iseq->location.base_label;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_CFUNC:
|
|
|
|
return rb_sym_to_s(ID2SYM(loc->body.cfunc.mid));
|
|
|
|
case LOCATION_TYPE_IFUNC:
|
2012-06-02 19:23:37 +04:00
|
|
|
default:
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_bug("location_base_label: unreachable");
|
2012-06-02 19:23:37 +04:00
|
|
|
UNREACHABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_base_label_m(VALUE self)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
return location_base_label(location_ptr(self));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_path(rb_backtrace_location_t *loc)
|
|
|
|
{
|
|
|
|
switch (loc->type) {
|
|
|
|
case LOCATION_TYPE_ISEQ:
|
|
|
|
case LOCATION_TYPE_ISEQ_CALCED:
|
2012-06-04 06:49:37 +04:00
|
|
|
return loc->body.iseq.iseq->location.path;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_CFUNC:
|
|
|
|
if (loc->body.cfunc.prev_loc) {
|
|
|
|
return location_path(loc->body.cfunc.prev_loc);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
return Qnil;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_IFUNC:
|
2012-06-02 19:23:37 +04:00
|
|
|
default:
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_bug("location_path: unreachable");
|
2012-06-02 19:23:37 +04:00
|
|
|
UNREACHABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_path_m(VALUE self)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
return location_path(location_ptr(self));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_absolute_path(rb_backtrace_location_t *loc)
|
|
|
|
{
|
|
|
|
switch (loc->type) {
|
|
|
|
case LOCATION_TYPE_ISEQ:
|
|
|
|
case LOCATION_TYPE_ISEQ_CALCED:
|
2012-06-04 06:49:37 +04:00
|
|
|
return loc->body.iseq.iseq->location.absolute_path;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_CFUNC:
|
|
|
|
if (loc->body.cfunc.prev_loc) {
|
|
|
|
return location_absolute_path(loc->body.cfunc.prev_loc);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
return Qnil;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_IFUNC:
|
2012-06-02 19:23:37 +04:00
|
|
|
default:
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_bug("location_absolute_path: unreachable");
|
2012-06-02 19:23:37 +04:00
|
|
|
UNREACHABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_absolute_path_m(VALUE self)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
return location_absolute_path(location_ptr(self));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_format(VALUE file, int lineno, VALUE name)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
if (lineno != 0) {
|
2012-06-02 19:23:37 +04:00
|
|
|
return rb_enc_sprintf(rb_enc_compatible(file, name), "%s:%d:in `%s'",
|
2012-06-02 20:46:08 +04:00
|
|
|
RSTRING_PTR(file), lineno, RSTRING_PTR(name));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
return rb_enc_sprintf(rb_enc_compatible(file, name), "%s:in `%s'",
|
|
|
|
RSTRING_PTR(file), RSTRING_PTR(name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_to_str(rb_backtrace_location_t *loc)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
|
|
|
VALUE file, name;
|
2012-06-02 20:46:08 +04:00
|
|
|
int lineno;
|
2012-06-02 19:23:37 +04:00
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
switch (loc->type) {
|
|
|
|
case LOCATION_TYPE_ISEQ:
|
2012-06-04 06:49:37 +04:00
|
|
|
file = loc->body.iseq.iseq->location.path;
|
|
|
|
name = loc->body.iseq.iseq->location.label;
|
2012-06-02 19:23:37 +04:00
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
lineno = loc->body.iseq.lineno.lineno = calc_lineno(loc->body.iseq.iseq, loc->body.iseq.lineno.pc);
|
|
|
|
loc->type = LOCATION_TYPE_ISEQ_CALCED;
|
2012-06-02 19:23:37 +04:00
|
|
|
break;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_ISEQ_CALCED:
|
2012-06-04 06:49:37 +04:00
|
|
|
file = loc->body.iseq.iseq->location.path;
|
2012-06-02 20:46:08 +04:00
|
|
|
lineno = loc->body.iseq.lineno.lineno;
|
2012-06-04 06:49:37 +04:00
|
|
|
name = loc->body.iseq.iseq->location.label;
|
2012-06-02 19:23:37 +04:00
|
|
|
break;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_CFUNC:
|
|
|
|
if (loc->body.cfunc.prev_loc) {
|
2012-06-04 06:49:37 +04:00
|
|
|
file = loc->body.cfunc.prev_loc->body.iseq.iseq->location.path;
|
2012-06-02 20:46:08 +04:00
|
|
|
lineno = location_lineno(loc->body.cfunc.prev_loc);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
file = th->vm->progname ? th->vm->progname : ruby_engine_name;
|
2012-06-02 20:46:08 +04:00
|
|
|
lineno = INT2FIX(0);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
2012-06-02 20:46:08 +04:00
|
|
|
name = rb_id2str(loc->body.cfunc.mid);
|
2012-06-02 19:23:37 +04:00
|
|
|
break;
|
2012-06-02 20:46:08 +04:00
|
|
|
case LOCATION_TYPE_IFUNC:
|
2012-06-02 19:23:37 +04:00
|
|
|
default:
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_bug("location_to_str: unreachable");
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
return location_format(file, lineno, name);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_to_str_m(VALUE self)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
return location_to_str(location_ptr(self));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct rb_backtrace_struct {
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_backtrace_location_t *backtrace;
|
|
|
|
rb_backtrace_location_t *backtrace_base;
|
2012-06-02 19:23:37 +04:00
|
|
|
int backtrace_size;
|
|
|
|
VALUE strary;
|
|
|
|
} rb_backtrace_t;
|
|
|
|
|
|
|
|
static void
|
|
|
|
backtrace_mark(void *ptr)
|
|
|
|
{
|
|
|
|
if (ptr) {
|
|
|
|
rb_backtrace_t *bt = (rb_backtrace_t *)ptr;
|
|
|
|
size_t i, s = bt->backtrace_size;
|
|
|
|
|
|
|
|
for (i=0; i<s; i++) {
|
2012-06-02 20:46:08 +04:00
|
|
|
location_mark_entry(&bt->backtrace[i]);
|
2012-06-02 19:23:37 +04:00
|
|
|
rb_gc_mark(bt->strary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
backtrace_free(void *ptr)
|
|
|
|
{
|
|
|
|
if (ptr) {
|
|
|
|
rb_backtrace_t *bt = (rb_backtrace_t *)ptr;
|
|
|
|
if (bt->backtrace) ruby_xfree(bt->backtrace_base);
|
|
|
|
ruby_xfree(bt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
backtrace_memsize(const void *ptr)
|
|
|
|
{
|
|
|
|
rb_backtrace_t *bt = (rb_backtrace_t *)ptr;
|
2012-06-02 20:46:08 +04:00
|
|
|
return sizeof(rb_backtrace_t) + sizeof(rb_backtrace_location_t) * bt->backtrace_size;
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const rb_data_type_t backtrace_data_type = {
|
|
|
|
"backtrace",
|
|
|
|
{backtrace_mark, backtrace_free, backtrace_memsize,},
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_backtrace_p(VALUE obj)
|
|
|
|
{
|
|
|
|
return rb_typeddata_is_kind_of(obj, &backtrace_data_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
backtrace_alloc(VALUE klass)
|
|
|
|
{
|
|
|
|
rb_backtrace_t *bt;
|
|
|
|
VALUE obj = TypedData_Make_Struct(klass, rb_backtrace_t, &backtrace_data_type, bt);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
backtrace_each(rb_thread_t *th,
|
|
|
|
void (*init)(void *arg, size_t size),
|
|
|
|
void (*iter_iseq)(void *arg, const rb_iseq_t *iseq, const VALUE *pc),
|
|
|
|
void (*iter_cfunc)(void *arg, ID mid),
|
|
|
|
void *arg)
|
|
|
|
{
|
|
|
|
rb_control_frame_t *last_cfp = th->cfp;
|
|
|
|
rb_control_frame_t *start_cfp = RUBY_VM_END_CONTROL_FRAME(th);
|
|
|
|
rb_control_frame_t *cfp;
|
|
|
|
ptrdiff_t size, i;
|
|
|
|
|
|
|
|
/* <- start_cfp (end control frame)
|
|
|
|
* top frame (dummy)
|
|
|
|
* top frame (dummy)
|
|
|
|
* top frame <- start_cfp
|
|
|
|
* top frame
|
|
|
|
* ...
|
|
|
|
* 2nd frame <- lev:0
|
|
|
|
* current frame <- th->cfp
|
|
|
|
*/
|
|
|
|
|
|
|
|
start_cfp =
|
|
|
|
RUBY_VM_NEXT_CONTROL_FRAME(
|
* vm_core.h: remove VM_FRAME_MAGIC_FINISH (finish frame type).
Before this commit:
`finish frame' was place holder which indicates that VM loop
needs to return function.
If a C method calls a Ruby methods (a method written by Ruby),
then VM loop will be (re-)invoked. When the Ruby method returns,
then also VM loop should be escaped. `finish frame' has only
one instruction `finish', which returns VM loop function.
VM loop function executes `finish' instruction, then VM loop
function returns itself.
With such mechanism, `leave' instruction (which returns one
frame from current scope) doesn't need to check that this `leave'
should also return from VM loop function.
Strictly, one branch can be removed from `leave' instructon.
Consideration:
However, pushing the `finish frame' needs costs because
it needs several memory accesses. The number of pushing
`finish frame' is greater than I had assumed. Of course,
pushing `finish frame' consumes additional control frame.
Moreover, recent processors has good branch prediction,
with which we can ignore such trivial checking.
After this commit:
Finally, I decide to remove `finish frame' and `finish'
instruction. Some parts of VM depend on `finish frame',
so the new frame flag VM_FRAME_FLAG_FINISH is introduced.
If this frame should escape from VM function loop, then
the result of VM_FRAME_TYPE_FINISH_P(cfp) is true.
`leave' instruction checks this flag every time.
I measured performance on it. However on my environments,
it improves some benchmarks and slows some benchmarks down.
Maybe it is because of C compiler optimization parameters.
I'll re-visit here if this cause problems.
* insns.def (leave, finish): remove finish instruction.
* vm.c, vm_eval.c, vm_exec.c, vm_backtrace.c, vm_dump.c:
apply above changes.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-15 14:22:34 +04:00
|
|
|
RUBY_VM_NEXT_CONTROL_FRAME(start_cfp)); /* skip top frames */
|
2012-06-02 19:23:37 +04:00
|
|
|
|
|
|
|
if (start_cfp < last_cfp) {
|
|
|
|
size = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
size = start_cfp - last_cfp + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
init(arg, size);
|
|
|
|
|
|
|
|
/* SDR(); */
|
|
|
|
for (i=0, cfp = start_cfp; i<size; i++, cfp = RUBY_VM_NEXT_CONTROL_FRAME(cfp)) {
|
|
|
|
/* fprintf(stderr, "cfp: %d\n", (rb_control_frame_t *)(th->stack + th->stack_size) - cfp); */
|
|
|
|
if (cfp->iseq) {
|
|
|
|
if (cfp->pc) {
|
|
|
|
iter_iseq(arg, cfp->iseq, cfp->pc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (RUBYVM_CFUNC_FRAME_P(cfp)) {
|
|
|
|
ID mid = cfp->me->def ? cfp->me->def->original_id : cfp->me->called_id;
|
|
|
|
|
2012-09-08 13:52:26 +04:00
|
|
|
iter_cfunc(arg, mid);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct bt_iter_arg {
|
|
|
|
rb_backtrace_t *bt;
|
|
|
|
VALUE btobj;
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_backtrace_location_t *prev_loc;
|
2012-06-02 19:23:37 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
bt_init(void *ptr, size_t size)
|
|
|
|
{
|
|
|
|
struct bt_iter_arg *arg = (struct bt_iter_arg *)ptr;
|
|
|
|
arg->btobj = backtrace_alloc(rb_cBacktrace);
|
|
|
|
GetCoreDataFromValue(arg->btobj, rb_backtrace_t, arg->bt);
|
2012-06-02 20:46:08 +04:00
|
|
|
arg->bt->backtrace_base = arg->bt->backtrace = ruby_xmalloc(sizeof(rb_backtrace_location_t) * size);
|
2012-06-02 19:23:37 +04:00
|
|
|
arg->bt->backtrace_size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bt_iter_iseq(void *ptr, const rb_iseq_t *iseq, const VALUE *pc)
|
|
|
|
{
|
|
|
|
struct bt_iter_arg *arg = (struct bt_iter_arg *)ptr;
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_backtrace_location_t *loc = &arg->bt->backtrace[arg->bt->backtrace_size++];
|
|
|
|
loc->type = LOCATION_TYPE_ISEQ;
|
|
|
|
loc->body.iseq.iseq = iseq;
|
|
|
|
loc->body.iseq.lineno.pc = pc;
|
|
|
|
arg->prev_loc = loc;
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bt_iter_cfunc(void *ptr, ID mid)
|
|
|
|
{
|
|
|
|
struct bt_iter_arg *arg = (struct bt_iter_arg *)ptr;
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_backtrace_location_t *loc = &arg->bt->backtrace[arg->bt->backtrace_size++];
|
|
|
|
loc->type = LOCATION_TYPE_CFUNC;
|
|
|
|
loc->body.cfunc.mid = mid;
|
|
|
|
loc->body.cfunc.prev_loc = arg->prev_loc;
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
backtrace_object(rb_thread_t *th)
|
|
|
|
{
|
|
|
|
struct bt_iter_arg arg;
|
2012-06-02 20:46:08 +04:00
|
|
|
arg.prev_loc = 0;
|
2012-06-02 19:23:37 +04:00
|
|
|
|
|
|
|
backtrace_each(th,
|
|
|
|
bt_init,
|
|
|
|
bt_iter_iseq,
|
|
|
|
bt_iter_cfunc,
|
|
|
|
&arg);
|
|
|
|
|
|
|
|
return arg.btobj;
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_vm_backtrace_object(void)
|
|
|
|
{
|
|
|
|
return backtrace_object(GET_THREAD());
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-15 16:01:45 +04:00
|
|
|
backtrace_collect(rb_backtrace_t *bt, int lev, int n, VALUE (*func)(rb_backtrace_location_t *, void *arg), void *arg)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
|
|
|
VALUE btary;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (UNLIKELY(lev < 0 || n < 0)) {
|
2012-06-15 16:01:45 +04:00
|
|
|
rb_bug("backtrace_collect: unreachable");
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
btary = rb_ary_new();
|
|
|
|
|
|
|
|
for (i=0; i+lev<bt->backtrace_size && i<n; i++) {
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_backtrace_location_t *loc = &bt->backtrace[bt->backtrace_size - 1 - (lev+i)];
|
|
|
|
rb_ary_push(btary, func(loc, arg));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return btary;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_to_str_dmyarg(rb_backtrace_location_t *loc, void *dmy)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
2012-06-02 20:46:08 +04:00
|
|
|
return location_to_str(loc);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_backtrace_to_str_ary(VALUE self)
|
|
|
|
{
|
|
|
|
rb_backtrace_t *bt;
|
|
|
|
GetCoreDataFromValue(self, rb_backtrace_t, bt);
|
|
|
|
|
|
|
|
if (bt->strary) {
|
|
|
|
return bt->strary;
|
|
|
|
}
|
|
|
|
else {
|
2012-06-15 16:01:45 +04:00
|
|
|
bt->strary = backtrace_collect(bt, 0, bt->backtrace_size, location_to_str_dmyarg, 0);
|
2012-06-02 19:23:37 +04:00
|
|
|
return bt->strary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
backtrace_to_str_ary2(VALUE self, int lev, int n)
|
|
|
|
{
|
|
|
|
rb_backtrace_t *bt;
|
|
|
|
int size;
|
|
|
|
GetCoreDataFromValue(self, rb_backtrace_t, bt);
|
|
|
|
size = bt->backtrace_size;
|
|
|
|
|
|
|
|
if (n == 0) {
|
|
|
|
n = size;
|
|
|
|
}
|
|
|
|
if (lev > size) {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2012-06-15 16:01:45 +04:00
|
|
|
return backtrace_collect(bt, lev, n, location_to_str_dmyarg, 0);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
location_create(rb_backtrace_location_t *srcloc, void *btobj)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
|
|
|
VALUE obj;
|
2012-06-02 20:46:08 +04:00
|
|
|
struct valued_frame_info *vloc;
|
|
|
|
obj = TypedData_Make_Struct(rb_cBacktraceLocation, struct valued_frame_info, &location_data_type, vloc);
|
2012-06-02 19:23:37 +04:00
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
vloc->loc = srcloc;
|
|
|
|
vloc->btobj = (VALUE)btobj;
|
2012-06-02 19:23:37 +04:00
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
backtrace_to_frame_ary(VALUE self, int lev, int n)
|
|
|
|
{
|
|
|
|
rb_backtrace_t *bt;
|
|
|
|
int size;
|
|
|
|
GetCoreDataFromValue(self, rb_backtrace_t, bt);
|
|
|
|
size = bt->backtrace_size;
|
|
|
|
|
|
|
|
if (n == 0) {
|
|
|
|
n = size;
|
|
|
|
}
|
|
|
|
if (lev > size) {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2012-06-15 16:01:45 +04:00
|
|
|
return backtrace_collect(bt, lev, n, location_create, (void *)self);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
backtrace_dump_data(VALUE self)
|
|
|
|
{
|
|
|
|
VALUE str = rb_backtrace_to_str_ary(self);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
backtrace_load_data(VALUE self, VALUE str)
|
|
|
|
{
|
|
|
|
rb_backtrace_t *bt;
|
|
|
|
GetCoreDataFromValue(self, rb_backtrace_t, bt);
|
|
|
|
bt->strary = str;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2012-06-02 19:59:37 +04:00
|
|
|
VALUE
|
2012-06-02 19:23:37 +04:00
|
|
|
vm_backtrace_str_ary(rb_thread_t *th, int lev, int n)
|
|
|
|
{
|
|
|
|
return backtrace_to_str_ary2(backtrace_object(th), lev, n);
|
|
|
|
}
|
|
|
|
|
2012-06-02 19:59:37 +04:00
|
|
|
VALUE
|
2012-06-02 19:23:37 +04:00
|
|
|
vm_backtrace_frame_ary(rb_thread_t *th, int lev, int n)
|
|
|
|
{
|
|
|
|
return backtrace_to_frame_ary(backtrace_object(th), lev, n);
|
|
|
|
}
|
|
|
|
|
2012-06-04 06:49:37 +04:00
|
|
|
/* make old style backtrace directly */
|
2012-06-02 19:23:37 +04:00
|
|
|
|
|
|
|
struct oldbt_arg {
|
|
|
|
VALUE filename;
|
2012-06-02 20:46:08 +04:00
|
|
|
int lineno;
|
|
|
|
void (*func)(void *data, VALUE file, int lineno, VALUE name);
|
2012-06-02 19:23:37 +04:00
|
|
|
void *data; /* result */
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
oldbt_init(void *ptr, size_t dmy)
|
|
|
|
{
|
|
|
|
struct oldbt_arg *arg = (struct oldbt_arg *)ptr;
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
|
|
|
|
arg->filename = th->vm->progname ? th->vm->progname : ruby_engine_name;;
|
2012-06-02 20:46:08 +04:00
|
|
|
arg->lineno = 0;
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
oldbt_iter_iseq(void *ptr, const rb_iseq_t *iseq, const VALUE *pc)
|
|
|
|
{
|
|
|
|
struct oldbt_arg *arg = (struct oldbt_arg *)ptr;
|
2012-06-04 06:49:37 +04:00
|
|
|
VALUE file = arg->filename = iseq->location.path;
|
|
|
|
VALUE name = iseq->location.label;
|
2012-06-02 20:46:08 +04:00
|
|
|
int lineno = arg->lineno = calc_lineno(iseq, pc);
|
2012-06-02 19:23:37 +04:00
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
(arg->func)(arg->data, file, lineno, name);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
oldbt_iter_cfunc(void *ptr, ID mid)
|
|
|
|
{
|
|
|
|
struct oldbt_arg *arg = (struct oldbt_arg *)ptr;
|
|
|
|
VALUE file = arg->filename;
|
|
|
|
VALUE name = rb_id2str(mid);
|
2012-06-02 20:46:08 +04:00
|
|
|
int lineno = arg->lineno;
|
2012-06-02 19:23:37 +04:00
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
(arg->func)(arg->data, file, lineno, name);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-02 20:46:08 +04:00
|
|
|
oldbt_print(void *data, VALUE file, int lineno, VALUE name)
|
2012-06-02 19:23:37 +04:00
|
|
|
{
|
|
|
|
FILE *fp = (FILE *)data;
|
|
|
|
|
|
|
|
if (NIL_P(name)) {
|
|
|
|
fprintf(fp, "\tfrom %s:%d:in unknown method\n",
|
2012-06-02 20:46:08 +04:00
|
|
|
RSTRING_PTR(file), lineno);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(fp, "\tfrom %s:%d:in `%s'\n",
|
2012-06-02 20:46:08 +04:00
|
|
|
RSTRING_PTR(file), lineno, RSTRING_PTR(name));
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vm_backtrace_print(FILE *fp)
|
|
|
|
{
|
|
|
|
struct oldbt_arg arg;
|
|
|
|
|
|
|
|
arg.func = oldbt_print;
|
|
|
|
arg.data = (void *)fp;
|
|
|
|
backtrace_each(GET_THREAD(),
|
|
|
|
oldbt_init,
|
|
|
|
oldbt_iter_iseq,
|
|
|
|
oldbt_iter_cfunc,
|
|
|
|
&arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
oldbt_bugreport(void *arg, VALUE file, int line, VALUE method)
|
|
|
|
{
|
|
|
|
const char *filename = NIL_P(file) ? "ruby" : RSTRING_PTR(file);
|
|
|
|
if (!*(int *)arg) {
|
|
|
|
fprintf(stderr, "-- Ruby level backtrace information "
|
|
|
|
"----------------------------------------\n");
|
|
|
|
*(int *)arg = 1;
|
|
|
|
}
|
|
|
|
if (NIL_P(method)) {
|
|
|
|
fprintf(stderr, "%s:%d:in unknown method\n", filename, line);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, "%s:%d:in `%s'\n", filename, line, RSTRING_PTR(method));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_backtrace_print_as_bugreport(void)
|
|
|
|
{
|
|
|
|
struct oldbt_arg arg;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
arg.func = oldbt_bugreport;
|
|
|
|
arg.data = (int *)&i;
|
|
|
|
|
|
|
|
backtrace_each(GET_THREAD(),
|
|
|
|
oldbt_init,
|
|
|
|
oldbt_iter_iseq,
|
|
|
|
oldbt_iter_cfunc,
|
|
|
|
&arg);
|
|
|
|
}
|
|
|
|
|
2012-06-02 19:59:37 +04:00
|
|
|
void
|
|
|
|
rb_backtrace(void)
|
|
|
|
{
|
|
|
|
vm_backtrace_print(stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_make_backtrace(void)
|
|
|
|
{
|
|
|
|
return vm_backtrace_str_ary(GET_THREAD(), 0, 0);
|
|
|
|
}
|
|
|
|
|
2012-11-19 10:07:06 +04:00
|
|
|
static VALUE
|
2012-11-19 17:31:26 +04:00
|
|
|
vm_backtrace_to_ary(rb_thread_t *th, int argc, VALUE *argv, int lev_default, int lev_plus, int to_str)
|
2012-11-19 10:07:06 +04:00
|
|
|
{
|
|
|
|
VALUE level, vn;
|
|
|
|
int lev, n;
|
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "02", &level, &vn);
|
|
|
|
|
2012-11-19 17:31:26 +04:00
|
|
|
lev = NIL_P(level) ? lev_default : NUM2INT(level);
|
2012-11-19 10:07:06 +04:00
|
|
|
|
|
|
|
if (NIL_P(vn)) {
|
|
|
|
n = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
n = NUM2INT(vn);
|
|
|
|
if (n == 0) {
|
|
|
|
return rb_ary_new();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lev < 0) {
|
|
|
|
rb_raise(rb_eArgError, "negative level (%d)", lev);
|
|
|
|
}
|
|
|
|
if (n < 0) {
|
|
|
|
rb_raise(rb_eArgError, "negative n (%d)", n);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (to_str) {
|
|
|
|
return vm_backtrace_str_ary(th, lev+lev_plus, n);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return vm_backtrace_frame_ary(th, lev+lev_plus, n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
thread_backtrace_to_ary(int argc, VALUE *argv, VALUE thval, int to_str)
|
2012-06-02 19:59:37 +04:00
|
|
|
{
|
|
|
|
rb_thread_t *th;
|
|
|
|
GetThreadPtr(thval, th);
|
|
|
|
|
|
|
|
switch (th->status) {
|
|
|
|
case THREAD_RUNNABLE:
|
|
|
|
case THREAD_STOPPED:
|
|
|
|
case THREAD_STOPPED_FOREVER:
|
|
|
|
break;
|
|
|
|
case THREAD_TO_KILL:
|
|
|
|
case THREAD_KILLED:
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2012-11-19 10:07:06 +04:00
|
|
|
return vm_backtrace_to_ary(th, argc, argv, 0, 0, to_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
vm_thread_backtrace(int argc, VALUE *argv, VALUE thval)
|
|
|
|
{
|
|
|
|
return thread_backtrace_to_ary(argc, argv, thval, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
vm_thread_backtrace_locations(int argc, VALUE *argv, VALUE thval)
|
|
|
|
{
|
|
|
|
return thread_backtrace_to_ary(argc, argv, thval, 0);
|
2012-06-02 19:59:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* caller(start=1) -> array or nil
|
|
|
|
*
|
|
|
|
* Returns the current execution stack---an array containing strings in
|
|
|
|
* the form ``<em>file:line</em>'' or ``<em>file:line: in
|
|
|
|
* `method'</em>''. The optional _start_ parameter
|
|
|
|
* determines the number of initial stack entries to omit from the
|
|
|
|
* result.
|
|
|
|
*
|
|
|
|
* Returns +nil+ if _start_ is greater than the size of
|
|
|
|
* current execution stack.
|
|
|
|
*
|
|
|
|
* def a(skip)
|
|
|
|
* caller(skip)
|
|
|
|
* end
|
|
|
|
* def b(skip)
|
|
|
|
* a(skip)
|
|
|
|
* end
|
|
|
|
* def c(skip)
|
|
|
|
* b(skip)
|
|
|
|
* end
|
|
|
|
* c(0) #=> ["prog:2:in `a'", "prog:5:in `b'", "prog:8:in `c'", "prog:10:in `<main>'"]
|
|
|
|
* c(1) #=> ["prog:5:in `b'", "prog:8:in `c'", "prog:11:in `<main>'"]
|
|
|
|
* c(2) #=> ["prog:8:in `c'", "prog:12:in `<main>'"]
|
|
|
|
* c(3) #=> ["prog:13:in `<main>'"]
|
|
|
|
* c(4) #=> []
|
|
|
|
* c(5) #=> nil
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_f_caller(int argc, VALUE *argv)
|
|
|
|
{
|
2012-11-19 10:07:06 +04:00
|
|
|
return vm_backtrace_to_ary(GET_THREAD(), argc, argv, 1, 1, 1);
|
2012-06-02 19:59:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_f_caller_locations(int argc, VALUE *argv)
|
2012-06-02 19:59:37 +04:00
|
|
|
{
|
2012-11-19 10:07:06 +04:00
|
|
|
return vm_backtrace_to_ary(GET_THREAD(), argc, argv, 1, 1, 0);
|
2012-06-02 19:59:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* called from Init_vm() in vm.c */
|
|
|
|
void
|
2012-06-02 19:23:37 +04:00
|
|
|
Init_vm_backtrace(void)
|
|
|
|
{
|
|
|
|
/* ::RubyVM::Backtrace */
|
|
|
|
rb_cBacktrace = rb_define_class_under(rb_cRubyVM, "Backtrace", rb_cObject);
|
|
|
|
rb_define_alloc_func(rb_cBacktrace, backtrace_alloc);
|
|
|
|
rb_undef_method(CLASS_OF(rb_cBacktrace), "new");
|
|
|
|
rb_marshal_define_compat(rb_cBacktrace, rb_cArray, backtrace_dump_data, backtrace_load_data);
|
|
|
|
|
2012-06-02 20:46:08 +04:00
|
|
|
/* ::RubyVM::Backtrace::Location */
|
|
|
|
rb_cBacktraceLocation = rb_define_class_under(rb_cBacktrace, "Location", rb_cObject);
|
|
|
|
rb_undef_alloc_func(rb_cBacktraceLocation);
|
|
|
|
rb_undef_method(CLASS_OF(rb_cBacktraceLocation), "new");
|
|
|
|
rb_define_method(rb_cBacktraceLocation, "lineno", location_lineno_m, 0);
|
|
|
|
rb_define_method(rb_cBacktraceLocation, "label", location_label_m, 0);
|
|
|
|
rb_define_method(rb_cBacktraceLocation, "base_label", location_base_label_m, 0);
|
|
|
|
rb_define_method(rb_cBacktraceLocation, "path", location_path_m, 0);
|
|
|
|
rb_define_method(rb_cBacktraceLocation, "absolute_path", location_absolute_path_m, 0);
|
|
|
|
rb_define_method(rb_cBacktraceLocation, "to_s", location_to_str_m, 0);
|
2012-06-02 19:59:37 +04:00
|
|
|
|
|
|
|
rb_define_global_function("caller", rb_f_caller, -1);
|
2012-06-02 20:46:08 +04:00
|
|
|
rb_define_global_function("caller_locations", rb_f_caller_locations, -1);
|
2012-06-02 19:23:37 +04:00
|
|
|
}
|