summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-16 01:38:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-16 01:38:32 +0000
commitcd48eb8fd5a687b58b994fb39316c9aa2da8f9cc (patch)
treef455d74261c0b8515418f29ca90165cf005b8842 /vm.c
parent232836ea5aaa0e06954b24044ace818aececbf9f (diff)
* vm.c (vm_backtrace_each, vm_backtrace_push),
vm_eval.c (print_backtrace), vm_dump.c (bugreport_backtrace): rb_backtrace_iter_func now takes VALUE as file and method names. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24549 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/vm.c b/vm.c
index 8a9fb046a1..36a9776864 100644
--- a/vm.c
+++ b/vm.c
@@ -712,7 +712,7 @@ vm_backtrace_each(rb_thread_t *th, int lev, rb_backtrace_iter_func *iter, void *
{
const rb_control_frame_t *limit_cfp = th->cfp;
const rb_control_frame_t *cfp = (void *)(th->stack + th->stack_size);
- const char *file = "ruby";
+ VALUE file = Qnil;
int line_no = 0;
cfp -= 2;
@@ -722,19 +722,20 @@ vm_backtrace_each(rb_thread_t *th, int lev, rb_backtrace_iter_func *iter, void *
}
}
limit_cfp = RUBY_VM_NEXT_CONTROL_FRAME(limit_cfp);
- if (th->vm->progname) file = RSTRING_PTR(th->vm->progname);
+ if (th->vm->progname) file = th->vm->progname;
while (cfp > limit_cfp) {
if (cfp->iseq != 0) {
if (cfp->pc != 0) {
rb_iseq_t *iseq = cfp->iseq;
line_no = rb_vm_get_sourceline(cfp);
- file = RSTRING_PTR(iseq->filename);
- if ((*iter)(arg, file, line_no, RSTRING_PTR(iseq->name))) break;
+ file = iseq->filename;
+ if ((*iter)(arg, file, line_no, iseq->name)) break;
}
}
else if (RUBYVM_CFUNC_FRAME_P(cfp)) {
- if ((*iter)(arg, file, line_no, rb_id2name(cfp->me->original_id))) break;
+ if (NIL_P(file)) file = rb_str_new_cstr("ruby");
+ if ((*iter)(arg, file, line_no, rb_id2str(cfp->me->original_id))) break;
}
cfp = RUBY_VM_NEXT_CONTROL_FRAME(cfp);
}
@@ -742,13 +743,17 @@ vm_backtrace_each(rb_thread_t *th, int lev, rb_backtrace_iter_func *iter, void *
}
static int
-vm_backtrace_push(void *arg, const char *file, int line_no, const char *name)
+vm_backtrace_push(void *arg, VALUE file, int line_no, VALUE name)
{
VALUE *aryp = arg;
+ VALUE bt;
+
if (!*aryp) {
*aryp = rb_ary_new();
}
- rb_ary_push(*aryp, rb_sprintf("%s:%d:in `%s'", file, line_no, name));
+ bt = rb_enc_sprintf(rb_enc_compatible(file, name), "%s:%d:in `%s'",
+ RSTRING_PTR(file), line_no, RSTRING_PTR(name));
+ rb_ary_push(*aryp, bt);
return 0;
}