2006-12-31 18:02:22 +03:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
vm_dump.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
|
* blockinlining.c, compile.c, compile.h, debug.c, debug.h,
id.c, insnhelper.h, insns.def, thread.c, thread_pthread.ci,
thread_pthread.h, thread_win32.ci, thread_win32.h, vm.h,
vm_dump.c, vm_evalbody.ci, vm_opts.h: fix comments and
copyright year.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-14 01:13:04 +03:00
|
|
|
Copyright (C) 2004-2007 Koichi Sasada
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
2020-05-08 12:31:09 +03:00
|
|
|
#include "ruby/internal/config.h"
|
2019-12-05 08:39:03 +03:00
|
|
|
|
2018-09-22 23:13:08 +03:00
|
|
|
#ifdef HAVE_UCONTEXT_H
|
2019-12-04 11:16:30 +03:00
|
|
|
# include <ucontext.h>
|
2018-09-22 23:13:08 +03:00
|
|
|
#endif
|
2019-12-04 11:16:30 +03:00
|
|
|
|
2019-08-19 11:36:28 +03:00
|
|
|
#ifdef __APPLE__
|
2019-12-04 11:16:30 +03:00
|
|
|
# ifdef HAVE_LIBPROC_H
|
|
|
|
# include <libproc.h>
|
|
|
|
# endif
|
|
|
|
# include <mach/vm_map.h>
|
|
|
|
# include <mach/mach_init.h>
|
|
|
|
# ifdef __LP64__
|
|
|
|
# define vm_region_recurse vm_region_recurse_64
|
|
|
|
# endif
|
2019-12-26 18:46:50 +03:00
|
|
|
/* that is defined in sys/queue.h, and conflicts with
|
|
|
|
* ccan/list/list.h */
|
|
|
|
# undef LIST_HEAD
|
2019-08-19 11:36:28 +03:00
|
|
|
#endif
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2019-12-04 11:16:30 +03:00
|
|
|
#include "addr2line.h"
|
|
|
|
#include "internal.h"
|
2023-02-08 14:56:53 +03:00
|
|
|
#include "internal/gc.h"
|
2019-12-04 11:16:30 +03:00
|
|
|
#include "internal/variable.h"
|
|
|
|
#include "internal/vm.h"
|
|
|
|
#include "iseq.h"
|
|
|
|
#include "vm_core.h"
|
2020-11-17 10:40:47 +03:00
|
|
|
#include "ractor_core.h"
|
2019-12-04 11:16:30 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#define MAX_POSBUF 128
|
|
|
|
|
2017-10-29 17:31:01 +03:00
|
|
|
#define VM_CFP_CNT(ec, cfp) \
|
|
|
|
((rb_control_frame_t *)((ec)->vm_stack + (ec)->vm_stack_size) - \
|
2017-05-09 08:06:41 +03:00
|
|
|
(rb_control_frame_t *)(cfp))
|
* common.mk: clean up
- remove blockinlining.$(OBJEXT) to built
- make ENCODING_H_INCLDUES variable (include/ruby/encoding.h)
- make VM_CORE_H_INCLUDES variable (vm_core.h)
- simplify rules.
- make depends rule to output depend status using gcc -MM.
* include/ruby/mvm.h, include/ruby/vm.h: rename mvm.h to vm.h.
* include/ruby.h: ditto.
* load.c: add inclusion explicitly.
* enumerator.c, object.c, parse.y, thread.c, vm_dump.c:
remove useless inclusion.
* eval_intern.h: cleanup inclusion.
* vm_core.h: rb_thread_t should be defined in this file.
* vm_evalbody.c, vm_exec.c: rename vm_evalbody.c to vm_exec.c.
* vm.h, vm_exec.h: rename vm.h to vm_exec.h.
* insnhelper.h, vm_insnhelper.h: rename insnhelper.h to vm_insnhelper.h.
* vm.c, vm_insnhelper.c, vm_insnhelper.h:
- rename vm_eval() to vm_exec_core().
- rename vm_eval_body() to vm_exec().
- cleanup include order.
* vm_method.c: fix comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-23 04:20:28 +04:00
|
|
|
|
2019-12-05 08:39:03 +03:00
|
|
|
const char *rb_method_type_name(rb_method_type_t type);
|
|
|
|
int ruby_on_ci;
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
#define kprintf(...) if (fprintf(errout, __VA_ARGS__) < 0) goto error
|
|
|
|
#define kputs(s) if (fputs(s, errout) < 0) goto error
|
|
|
|
|
|
|
|
static bool
|
2023-07-31 21:04:42 +03:00
|
|
|
control_frame_dump(const rb_execution_context_t *ec, const rb_control_frame_t *cfp, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2012-09-28 08:05:36 +04:00
|
|
|
ptrdiff_t pc = -1;
|
2017-10-29 17:31:01 +03:00
|
|
|
ptrdiff_t ep = cfp->ep - ec->vm_stack;
|
2012-06-11 07:14:59 +04:00
|
|
|
char ep_in_heap = ' ';
|
2006-12-31 18:02:22 +03:00
|
|
|
char posbuf[MAX_POSBUF+1];
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
int line = 0;
|
2006-12-31 18:02:22 +03:00
|
|
|
const char *magic, *iseq_name = "-", *selfstr = "-", *biseq_name = "-";
|
|
|
|
VALUE tmp;
|
2019-12-05 08:39:03 +03:00
|
|
|
const rb_iseq_t *iseq = NULL;
|
|
|
|
const rb_callable_method_entry_t *me = rb_vm_frame_method_entry(cfp);
|
2015-06-02 07:20:30 +03:00
|
|
|
|
2017-10-29 17:31:01 +03:00
|
|
|
if (ep < 0 || (size_t)ep > ec->vm_stack_size) {
|
2012-06-11 07:14:59 +04:00
|
|
|
ep = (ptrdiff_t)cfp->ep;
|
|
|
|
ep_in_heap = 'p';
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2007-07-05 14:49:45 +04:00
|
|
|
switch (VM_FRAME_TYPE(cfp)) {
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
case VM_FRAME_MAGIC_TOP:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "TOP";
|
|
|
|
break;
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
case VM_FRAME_MAGIC_METHOD:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "METHOD";
|
|
|
|
break;
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
case VM_FRAME_MAGIC_CLASS:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "CLASS";
|
|
|
|
break;
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
case VM_FRAME_MAGIC_BLOCK:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "BLOCK";
|
|
|
|
break;
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
case VM_FRAME_MAGIC_CFUNC:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "CFUNC";
|
|
|
|
break;
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
case VM_FRAME_MAGIC_IFUNC:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "IFUNC";
|
|
|
|
break;
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
case VM_FRAME_MAGIC_EVAL:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "EVAL";
|
|
|
|
break;
|
2014-06-19 13:17:21 +04:00
|
|
|
case VM_FRAME_MAGIC_RESCUE:
|
|
|
|
magic = "RESCUE";
|
|
|
|
break;
|
2022-10-17 11:50:42 +03:00
|
|
|
case VM_FRAME_MAGIC_DUMMY:
|
|
|
|
magic = "DUMMY";
|
|
|
|
break;
|
* compile.c, dir.c, eval.c, eval_jump.h, eval_method.h, numeric.c,
pack.c, parse.y, re.c, thread.c, vm.c, vm_dump.c, call_cfunc.ci,
thread_pthread.ci, thread_win32.ci: fixed indentation.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-06-05 08:25:10 +04:00
|
|
|
case 0:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "------";
|
|
|
|
break;
|
* compile.c, dir.c, eval.c, eval_jump.h, eval_method.h, numeric.c,
pack.c, parse.y, re.c, thread.c, vm.c, vm_dump.c, call_cfunc.ci,
thread_pthread.ci, thread_win32.ci: fixed indentation.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-06-05 08:25:10 +04:00
|
|
|
default:
|
2006-12-31 18:02:22 +03:00
|
|
|
magic = "(none)";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
tmp = rb_inspect(cfp->self);
|
|
|
|
selfstr = StringValueCStr(tmp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
selfstr = "";
|
|
|
|
}
|
|
|
|
|
* 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
|
|
|
if (cfp->iseq != 0) {
|
2020-01-08 10:14:01 +03:00
|
|
|
#define RUBY_VM_IFUNC_P(ptr) IMEMO_TYPE_P(ptr, imemo_ifunc)
|
* blockinlining.c, compile.c, compile.h, error.c, eval.c,
eval_intern.h, eval_jump.h, eval_load.c, eval_method.h,
eval_safe.h, gc.c, insnhelper.h, insns.def, iseq.c, proc.c,
process.c, signal.c, thread.c, thread_pthread.ci, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, vm_macro.def,
yarv.h, yarvcore.h, yarvcore.c: change type and macro names:
* yarv_*_t -> rb_*_t
* yarv_*_struct -> rb_*_struct
* yarv_tag -> rb_vm_tag
* YARV_* -> RUBY_VM_*
* proc.c, vm.c: move functions about env object creation
from proc.c to vm.c.
* proc.c, yarvcore.c: fix rb_cVM initialization place.
* inits.c: change Init_ISeq() order (after Init_VM).
* ruby.h, proc.c: change declaration place of rb_cEnv
from proc.c to ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-06 22:00:03 +03:00
|
|
|
if (RUBY_VM_IFUNC_P(cfp->iseq)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
iseq_name = "<ifunc>";
|
|
|
|
}
|
2020-04-08 07:28:13 +03:00
|
|
|
else if (SYMBOL_P((VALUE)cfp->iseq)) {
|
2015-10-16 06:21:10 +03:00
|
|
|
tmp = rb_sym2str((VALUE)cfp->iseq);
|
|
|
|
iseq_name = RSTRING_PTR(tmp);
|
|
|
|
snprintf(posbuf, MAX_POSBUF, ":%s", iseq_name);
|
|
|
|
line = -1;
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
else {
|
2022-10-17 11:50:42 +03:00
|
|
|
if (cfp->pc) {
|
|
|
|
iseq = cfp->iseq;
|
|
|
|
pc = cfp->pc - ISEQ_BODY(iseq)->iseq_encoded;
|
|
|
|
iseq_name = RSTRING_PTR(ISEQ_BODY(iseq)->location.label);
|
|
|
|
line = rb_vm_get_sourceline(cfp);
|
|
|
|
if (line) {
|
|
|
|
snprintf(posbuf, MAX_POSBUF, "%s:%d", RSTRING_PTR(rb_iseq_path(iseq)), line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
iseq_name = "<dummy_frame>";
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-05 08:39:03 +03:00
|
|
|
else if (me != NULL) {
|
2015-06-02 07:20:30 +03:00
|
|
|
iseq_name = rb_id2name(me->def->original_id);
|
2009-08-28 06:45:41 +04:00
|
|
|
snprintf(posbuf, MAX_POSBUF, ":%s", iseq_name);
|
2006-12-31 18:02:22 +03:00
|
|
|
line = -1;
|
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("c:%04"PRIdPTRDIFF" ",
|
2017-10-29 17:31:01 +03:00
|
|
|
((rb_control_frame_t *)(ec->vm_stack + ec->vm_stack_size) - cfp));
|
2006-12-31 18:02:22 +03:00
|
|
|
if (pc == -1) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("p:---- ");
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
else {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("p:%04"PRIdPTRDIFF" ", pc);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("s:%04"PRIdPTRDIFF" ", cfp->sp - ec->vm_stack);
|
|
|
|
kprintf(ep_in_heap == ' ' ? "e:%06"PRIdPTRDIFF" " : "E:%06"PRIxPTRDIFF" ", ep % 10000);
|
|
|
|
kprintf("%-6s", magic);
|
* 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
|
|
|
if (line) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %s", posbuf);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2016-08-03 03:28:12 +03:00
|
|
|
if (VM_FRAME_FINISHED_P(cfp)) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" [FINISH]");
|
* 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
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
if (0) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" \t");
|
|
|
|
kprintf("iseq: %-24s ", iseq_name);
|
|
|
|
kprintf("self: %-24s ", selfstr);
|
|
|
|
kprintf("%-1s ", biseq_name);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n");
|
2019-12-05 08:39:03 +03:00
|
|
|
|
|
|
|
// additional information for CI machines
|
|
|
|
if (ruby_on_ci) {
|
|
|
|
char buff[0x100];
|
|
|
|
|
|
|
|
if (me) {
|
2020-01-08 10:14:01 +03:00
|
|
|
if (IMEMO_TYPE_P(me, imemo_ment)) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" me:\n");
|
|
|
|
kprintf(" called_id: %s, type: %s\n", rb_id2name(me->called_id), rb_method_type_name(me->def->type));
|
|
|
|
kprintf(" owner class: %s\n", rb_raw_obj_info(buff, 0x100, me->owner));
|
2019-12-05 08:39:03 +03:00
|
|
|
if (me->owner != me->defined_class) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" defined_class: %s\n", rb_raw_obj_info(buff, 0x100, me->defined_class));
|
2019-12-05 08:39:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" me is corrupted (%s)\n", rb_raw_obj_info(buff, 0x100, (VALUE)me));
|
2019-12-05 08:39:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" self: %s\n", rb_raw_obj_info(buff, 0x100, cfp->self));
|
2019-12-12 11:02:36 +03:00
|
|
|
|
2019-12-05 08:39:03 +03:00
|
|
|
if (iseq) {
|
2022-03-23 22:19:48 +03:00
|
|
|
if (ISEQ_BODY(iseq)->local_table_size > 0) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" lvars:\n");
|
2022-03-23 22:19:48 +03:00
|
|
|
for (unsigned int i=0; i<ISEQ_BODY(iseq)->local_table_size; i++) {
|
|
|
|
const VALUE *argv = cfp->ep - ISEQ_BODY(cfp->iseq)->local_table_size - VM_ENV_DATA_SIZE + 1;
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %s: %s\n",
|
2022-03-23 22:19:48 +03:00
|
|
|
rb_id2name(ISEQ_BODY(iseq)->local_table[i]),
|
2019-12-05 08:39:03 +03:00
|
|
|
rb_raw_obj_info(buff, 0x100, argv[i]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
return true;
|
|
|
|
error:
|
|
|
|
return false;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_stack_dump_raw(const rb_execution_context_t *ec, const rb_control_frame_t *cfp, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2008-06-15 20:49:19 +04:00
|
|
|
#if 0
|
2018-07-15 12:47:12 +03:00
|
|
|
VALUE *sp = cfp->sp;
|
|
|
|
const VALUE *ep = cfp->ep;
|
2006-12-31 18:02:22 +03:00
|
|
|
VALUE *p, *st, *t;
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("-- stack frame ------------\n");
|
2017-10-29 17:31:01 +03:00
|
|
|
for (p = st = ec->vm_stack; p < sp; p++) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("%04ld (%p): %08"PRIxVALUE, (long)(p - st), p, *p);
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
t = (VALUE *)*p;
|
2017-10-29 17:31:01 +03:00
|
|
|
if (ec->vm_stack <= t && t < sp) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" (= %ld)", (long)((VALUE *)GC_GUARDED_PTR_REF((VALUE)t) - ec->vm_stack));
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2012-06-11 07:14:59 +04:00
|
|
|
if (p == ep)
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" <- ep");
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n");
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2007-06-17 21:47:35 +04:00
|
|
|
#endif
|
* vm.c: some refactoring.
* rename th_* to vm_*.
* remove unused variables functions.
* add prototypes.
* blockinlining.c, compile.c, cont.c, eval.c, eval_intern.h,
eval_jump.h, eval_load.c, inits.c, insns.def, iseq.c, parse.y,
proc.c, process.c, signal.c, thread.c, vm.c, vm_dump.c,
vm_evalbody.ci, yarvcore.c, yarvcore.h: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-06-24 19:42:41 +04:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("-- Control frame information "
|
2010-10-23 06:02:50 +04:00
|
|
|
"-----------------------------------------------\n");
|
2017-10-29 17:31:01 +03:00
|
|
|
while ((void *)cfp < (void *)(ec->vm_stack + ec->vm_stack_size)) {
|
2023-07-31 21:04:42 +03:00
|
|
|
control_frame_dump(ec, cfp, errout);
|
2006-12-31 18:02:22 +03:00
|
|
|
cfp++;
|
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n");
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return false;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
* vm_dump.c: add a prefix "rb_vmdebug_" to
vm_stack_dump_raw(), vm_stack_dump_raw_current(),
vm_env_dump_raw(), vm_proc_dump_raw(), vm_stack_dump_th(),
vm_debug_print_register(), vm_thread_dump_regs(),
vm_debug_print_pre(), vm_debug_print_post(),
vm_thread_dump_state().
This change also may affect core (in fact, user of
above functions may be only ko1).
* vm_core.h: ditto.
* vm_exec.h (SDR2): remove duplicate definition.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-19 05:09:43 +03:00
|
|
|
rb_vmdebug_stack_dump_raw_current(void)
|
* vm.c, insns.def, eval.c, vm_insnhelper.c: fix CREF handling.
VM value stack frame of block contains cref information.
(dfp[-1] points CREF)
* compile.c, eval_intern.h, eval_method.c, load.c, proc.c,
vm_dump.h, vm_core.h: ditto.
* include/ruby/ruby.h, gc.c: remove T_VALUES because of above
changes.
* bootstraptest/test_eval.rb, test_knownbug.rb: move solved test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16468 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-05-19 07:08:50 +04:00
|
|
|
{
|
2017-10-29 17:31:01 +03:00
|
|
|
const rb_execution_context_t *ec = GET_EC();
|
2023-08-04 09:30:36 +03:00
|
|
|
return rb_vmdebug_stack_dump_raw(ec, ec->cfp, stderr);
|
* vm.c, insns.def, eval.c, vm_insnhelper.c: fix CREF handling.
VM value stack frame of block contains cref information.
(dfp[-1] points CREF)
* compile.c, eval_intern.h, eval_method.c, load.c, proc.c,
vm_dump.h, vm_core.h: ditto.
* include/ruby/ruby.h, gc.c: remove T_VALUES because of above
changes.
* bootstraptest/test_eval.rb, test_knownbug.rb: move solved test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16468 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-05-19 07:08:50 +04:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_env_dump_raw(const rb_env_t *env, const VALUE *ep, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2016-07-28 22:13:26 +03:00
|
|
|
unsigned int i;
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("-- env --------------------\n");
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
while (env) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("--\n");
|
2006-12-31 18:02:22 +03:00
|
|
|
for (i = 0; i < env->env_size; i++) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("%04d: %08"PRIxVALUE" (%p)", i, env->env[i], (void *)&env->env[i]);
|
|
|
|
if (&env->env[i] == ep) kprintf(" <- ep");
|
|
|
|
kprintf("\n");
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2016-07-28 22:13:26 +03:00
|
|
|
env = rb_vm_env_prev_env(env);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("---------------------------\n");
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return false;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_proc_dump_raw(rb_proc_t *proc, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2016-07-28 22:13:26 +03:00
|
|
|
const rb_env_t *env;
|
2006-12-31 18:02:22 +03:00
|
|
|
char *selfstr;
|
2016-07-28 14:02:30 +03:00
|
|
|
VALUE val = rb_inspect(vm_block_self(&proc->block));
|
2006-12-31 18:02:22 +03:00
|
|
|
selfstr = StringValueCStr(val);
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("-- proc -------------------\n");
|
|
|
|
kprintf("self: %s\n", selfstr);
|
2016-07-28 22:13:26 +03:00
|
|
|
env = VM_ENV_ENVVAL_PTR(vm_block_ep(&proc->block));
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_env_dump_raw(env, vm_block_ep(&proc->block), errout);
|
2023-08-04 09:30:36 +03:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return false;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_stack_dump_th(VALUE thval, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2017-06-28 07:49:30 +03:00
|
|
|
rb_thread_t *target_th = rb_thread_ptr(thval);
|
2023-08-04 09:30:36 +03:00
|
|
|
return rb_vmdebug_stack_dump_raw(target_th->ec, target_th->ec->cfp, errout);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2009-01-19 11:22:58 +03:00
|
|
|
#if VMDEBUG > 2
|
2012-10-10 21:55:57 +04:00
|
|
|
|
2023-07-17 20:57:58 +03:00
|
|
|
/* copy from vm_insnhelper.c */
|
2017-01-26 12:40:25 +03:00
|
|
|
static const VALUE *
|
2017-10-29 19:12:06 +03:00
|
|
|
vm_base_ptr(const rb_control_frame_t *cfp)
|
2012-10-10 21:55:57 +04:00
|
|
|
{
|
2017-10-29 19:12:06 +03:00
|
|
|
const rb_control_frame_t *prev_cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp);
|
2022-03-23 22:19:48 +03:00
|
|
|
const VALUE *bp = prev_cfp->sp + ISEQ_BODY(cfp->iseq)->local_table_size + VM_ENV_DATA_SIZE;
|
2012-10-10 21:55:57 +04:00
|
|
|
|
2023-07-17 20:57:58 +03:00
|
|
|
if (ISEQ_BODY(cfp->iseq)->type == ISEQ_TYPE_METHOD || VM_FRAME_BMETHOD_P(cfp)) {
|
2012-10-10 21:55:57 +04:00
|
|
|
bp += 1;
|
|
|
|
}
|
|
|
|
return bp;
|
|
|
|
}
|
|
|
|
|
* vm_dump.c: add a prefix "rb_vmdebug_" to
vm_stack_dump_raw(), vm_stack_dump_raw_current(),
vm_env_dump_raw(), vm_proc_dump_raw(), vm_stack_dump_th(),
vm_debug_print_register(), vm_thread_dump_regs(),
vm_debug_print_pre(), vm_debug_print_post(),
vm_thread_dump_state().
This change also may affect core (in fact, user of
above functions may be only ko1).
* vm_core.h: ditto.
* vm_exec.h (SDR2): remove duplicate definition.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-19 05:09:43 +03:00
|
|
|
static void
|
2023-07-31 21:04:42 +03:00
|
|
|
vm_stack_dump_each(const rb_execution_context_t *ec, const rb_control_frame_t *cfp, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2017-01-26 12:40:25 +03:00
|
|
|
int i, argc = 0, local_table_size = 0;
|
2006-12-31 18:02:22 +03:00
|
|
|
VALUE rstr;
|
|
|
|
VALUE *sp = cfp->sp;
|
2017-01-26 12:40:25 +03:00
|
|
|
const VALUE *ep = cfp->ep;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2016-08-03 04:50:50 +03:00
|
|
|
if (VM_FRAME_RUBYFRAME_P(cfp)) {
|
2017-01-26 12:40:25 +03:00
|
|
|
const rb_iseq_t *iseq = cfp->iseq;
|
2022-03-23 22:19:48 +03:00
|
|
|
argc = ISEQ_BODY(iseq)->param.lead_num;
|
|
|
|
local_table_size = ISEQ_BODY(iseq)->local_table_size;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* stack trace header */
|
|
|
|
|
2014-06-19 13:17:21 +04:00
|
|
|
if (VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_METHOD||
|
|
|
|
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_TOP ||
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_BLOCK ||
|
|
|
|
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_CLASS ||
|
|
|
|
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_CFUNC ||
|
|
|
|
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_IFUNC ||
|
2014-06-19 13:17:21 +04:00
|
|
|
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_EVAL ||
|
|
|
|
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_RESCUE)
|
2015-10-15 09:51:17 +03:00
|
|
|
{
|
2017-01-26 12:40:25 +03:00
|
|
|
const VALUE *ptr = ep - local_table_size;
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2023-07-31 21:04:42 +03:00
|
|
|
control_frame_dump(ec, cfp, errout);
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
rstr = rb_inspect(*ptr);
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" arg %2d: %8s (%p)\n", i, StringValueCStr(rstr),
|
2023-07-31 21:04:42 +03:00
|
|
|
(void *)ptr++);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2017-01-26 12:40:25 +03:00
|
|
|
for (; i < local_table_size - 1; i++) {
|
2006-12-31 18:02:22 +03:00
|
|
|
rstr = rb_inspect(*ptr);
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" local %2d: %8s (%p)\n", i, StringValueCStr(rstr),
|
2023-07-31 21:04:42 +03:00
|
|
|
(void *)ptr++);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2012-10-10 21:55:57 +04:00
|
|
|
ptr = vm_base_ptr(cfp);
|
2006-12-31 18:02:22 +03:00
|
|
|
for (; ptr < sp; ptr++, i++) {
|
2017-01-26 12:57:41 +03:00
|
|
|
switch (TYPE(*ptr)) {
|
|
|
|
case T_UNDEF:
|
2006-12-31 18:02:22 +03:00
|
|
|
rstr = rb_str_new2("undef");
|
2017-01-26 12:57:41 +03:00
|
|
|
break;
|
|
|
|
case T_IMEMO:
|
|
|
|
rstr = rb_str_new2("imemo"); /* TODO: can put mode detail information */
|
|
|
|
break;
|
|
|
|
default:
|
2006-12-31 18:02:22 +03:00
|
|
|
rstr = rb_inspect(*ptr);
|
2017-01-26 12:57:41 +03:00
|
|
|
break;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" stack %2d: %8s (%"PRIdPTRDIFF")\n", i, StringValueCStr(rstr),
|
2017-10-29 19:12:06 +03:00
|
|
|
(ptr - ec->vm_stack));
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
}
|
2016-08-03 03:28:12 +03:00
|
|
|
else if (VM_FRAME_FINISHED_P(cfp)) {
|
2017-10-29 19:12:06 +03:00
|
|
|
if (ec->vm_stack + ec->vm_stack_size > (VALUE *)(cfp + 1)) {
|
2023-07-31 21:04:42 +03:00
|
|
|
vm_stack_dump_each(ec, cfp + 1, errout);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
else {
|
* call_cfunc.ci, compile.c, compile.h, debug.h, eval.c,
eval_error.h, eval_jump.h, eval_load.c, eval_thread.c, gc.c,
insnhelper.h, insns.def, iseq.c, main.c, numeric.c, parse.y,
range.c, regenc.h, ruby.h, signal.c, thread.c, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fixed indents and non-C90 comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-02 19:26:04 +03:00
|
|
|
/* SDR(); */
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2019-12-20 03:19:39 +03:00
|
|
|
rb_bug("unsupported frame type: %08lx", VM_FRAME_TYPE(cfp));
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
}
|
2009-01-19 11:22:58 +03:00
|
|
|
#endif
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_debug_print_register(const rb_execution_context_t *ec, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2017-10-29 17:31:01 +03:00
|
|
|
rb_control_frame_t *cfp = ec->cfp;
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
ptrdiff_t pc = -1;
|
2017-10-29 17:31:01 +03:00
|
|
|
ptrdiff_t ep = cfp->ep - ec->vm_stack;
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
ptrdiff_t cfpi;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2016-08-03 04:50:50 +03:00
|
|
|
if (VM_FRAME_RUBYFRAME_P(cfp)) {
|
2022-03-23 22:19:48 +03:00
|
|
|
pc = cfp->pc - ISEQ_BODY(cfp->iseq)->iseq_encoded;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2017-10-29 17:31:01 +03:00
|
|
|
if (ep < 0 || (size_t)ep > ec->vm_stack_size) {
|
2012-06-11 07:14:59 +04:00
|
|
|
ep = -1;
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2017-10-29 17:31:01 +03:00
|
|
|
cfpi = ((rb_control_frame_t *)(ec->vm_stack + ec->vm_stack_size)) - cfp;
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" [PC] %04"PRIdPTRDIFF", [SP] %04"PRIdPTRDIFF", [EP] %04"PRIdPTRDIFF", [CFP] %04"PRIdPTRDIFF"\n",
|
2017-10-29 17:31:01 +03:00
|
|
|
pc, (cfp->sp - ec->vm_stack), ep, cfpi);
|
2023-08-04 09:30:36 +03:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return false;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_thread_dump_regs(VALUE thval, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2023-08-04 09:30:36 +03:00
|
|
|
return rb_vmdebug_debug_print_register(rb_thread_ptr(thval)->ec, errout);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_debug_print_pre(const rb_execution_context_t *ec, const rb_control_frame_t *cfp, const VALUE *_pc, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2015-07-22 00:41:04 +03:00
|
|
|
const rb_iseq_t *iseq = cfp->iseq;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2012-08-07 15:13:57 +04:00
|
|
|
if (iseq != 0) {
|
2022-03-23 22:19:48 +03:00
|
|
|
ptrdiff_t pc = _pc - ISEQ_BODY(iseq)->iseq_encoded;
|
2012-06-11 07:14:59 +04:00
|
|
|
int i;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2017-10-29 17:31:01 +03:00
|
|
|
for (i=0; i<(int)VM_CFP_CNT(ec, cfp); i++) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" ");
|
2012-06-11 07:14:59 +04:00
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("| ");
|
|
|
|
if(0) kprintf("[%03ld] ", (long)(cfp->sp - ec->vm_stack));
|
2013-11-29 16:01:18 +04:00
|
|
|
|
2017-10-29 17:31:01 +03:00
|
|
|
/* printf("%3"PRIdPTRDIFF" ", VM_CFP_CNT(ec, cfp)); */
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
if (pc >= 0) {
|
2015-07-22 00:41:04 +03:00
|
|
|
const VALUE *iseq_original = rb_iseq_original_iseq((rb_iseq_t *)iseq);
|
compile: translate iseq in-place
running "ruby -rpp -e 'pp GC.stat'", a reduction in
malloc usage is shown:
before:
:malloc_increase=>118784,
:oldmalloc_increase=>1178736,
after:
:malloc_increase=>99832,
:oldmalloc_increase=>1031976,
For "ruby -e exit", valgrind reports over 300K reduction in
overall allocations (and unnecessary memory copies).
before:
total heap usage: 49,622 allocs, 20,492 frees, 8,697,493 bytes allocated
after:
total heap usage: 48,935 allocs, 19,805 frees, 8,373,773 bytes allocated
(numbers from x86-64)
v2 changes based on ko1 recommendations [ruby-core:64883]:
- squashed in-place direct thread translation to avoid alloc+copy
- renamed rb_iseq_untranslate_threaded_code to rb_iseq_original_iseq,
cache new iseq->iseq_original field.
* compile.c (rb_iseq_translate_threaded_code): modify in-place w/o copy
(rb_vm_addr2insn): new function for debug
(rb_iseq_original_iseq): ditto
(iseq_set_sequence): assign iseq_encoded directly
[Feature #10185]
* vm_core (rb_iseq_t): move original ->iseq to bottom
* iseq.c (iseq_free, iseq_free): adjust for new layout
(rb_iseq_disasm): use original iseq for dump
(iseq_data_to_ary): ditto
(rb_iseq_line_trace_each): ditto
(rb_iseq_build_for_ruby2cext): use iseq_encoded directly
* vm_dump.c (rb_vmdebug_debug_print_pre): use original iseq
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2014-09-10 10:14:07 +04:00
|
|
|
|
|
|
|
rb_iseq_disasm_insn(0, iseq_original, (size_t)pc, iseq, 0);
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#if VMDEBUG > 3
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" (1)");
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_debug_print_register(errout, ec);
|
2006-12-31 18:02:22 +03:00
|
|
|
#endif
|
2023-08-04 09:30:36 +03:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return false;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_debug_print_post(const rb_execution_context_t *ec, const rb_control_frame_t *cfp, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
|
|
|
#if VMDEBUG > 9
|
2023-08-04 09:30:36 +03:00
|
|
|
if (!rb_vmdebug_stack_dump_raw(ec, cfp, errout)) goto errout;
|
2006-12-31 18:02:22 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if VMDEBUG > 3
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" (2)");
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_debug_print_register(errout, ec);
|
2006-12-31 18:02:22 +03:00
|
|
|
#endif
|
2017-10-29 17:31:01 +03:00
|
|
|
/* stack_dump_raw(ec, cfp); */
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#if VMDEBUG > 2
|
2017-10-29 17:31:01 +03:00
|
|
|
/* stack_dump_thobj(ec); */
|
2023-07-31 21:04:42 +03:00
|
|
|
vm_stack_dump_each(ec, ec->cfp, errout);
|
2012-10-10 21:55:57 +04:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf
|
2006-12-31 18:02:22 +03:00
|
|
|
("--------------------------------------------------------------\n");
|
2023-08-04 09:30:36 +03:00
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
|
|
|
|
#if VMDEBUG > 2
|
|
|
|
error:
|
|
|
|
return false;
|
2006-12-31 18:02:22 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_thread_dump_state(FILE *errout, VALUE self)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2017-06-28 07:49:30 +03:00
|
|
|
rb_thread_t *th = rb_thread_ptr(self);
|
2017-10-26 11:32:49 +03:00
|
|
|
rb_control_frame_t *cfp = th->ec->cfp;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("Thread state dump:\n");
|
|
|
|
kprintf("pc : %p, sp : %p\n", (void *)cfp->pc, (void *)cfp->sp);
|
|
|
|
kprintf("cfp: %p, ep : %p\n", (void *)cfp, (void *)cfp->ep);
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
error:
|
2006-12-31 18:02:22 +03:00
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2018-09-22 23:13:08 +03:00
|
|
|
#if defined __APPLE__
|
|
|
|
# if __DARWIN_UNIX03
|
|
|
|
# define MCTX_SS_REG(reg) __ss.__##reg
|
|
|
|
# else
|
|
|
|
# define MCTX_SS_REG(reg) ss.reg
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2013-02-19 01:46:00 +04:00
|
|
|
#if defined(HAVE_BACKTRACE)
|
2021-04-29 14:15:19 +03:00
|
|
|
# define USE_BACKTRACE 1
|
2014-09-04 12:50:31 +04:00
|
|
|
# ifdef HAVE_LIBUNWIND
|
2013-02-19 01:46:00 +04:00
|
|
|
# undef backtrace
|
|
|
|
# define backtrace unw_backtrace
|
2022-04-20 05:52:47 +03:00
|
|
|
# elif defined(__APPLE__) && defined(HAVE_LIBUNWIND_H)
|
2013-03-18 08:31:59 +04:00
|
|
|
# define UNW_LOCAL_ONLY
|
|
|
|
# include <libunwind.h>
|
2017-09-01 04:13:53 +03:00
|
|
|
# include <sys/mman.h>
|
2013-03-18 08:31:59 +04:00
|
|
|
# undef backtrace
|
2014-05-25 07:15:49 +04:00
|
|
|
int
|
|
|
|
backtrace(void **trace, int size)
|
|
|
|
{
|
2013-03-18 08:31:59 +04:00
|
|
|
unw_cursor_t cursor; unw_context_t uc;
|
|
|
|
unw_word_t ip;
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
unw_getcontext(&uc);
|
|
|
|
unw_init_local(&cursor, &uc);
|
2022-12-23 20:24:55 +03:00
|
|
|
# if defined(__x86_64__)
|
2013-03-18 08:31:59 +04:00
|
|
|
while (unw_step(&cursor) > 0) {
|
|
|
|
unw_get_reg(&cursor, UNW_REG_IP, &ip);
|
|
|
|
trace[n++] = (void *)ip;
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
unw_get_proc_name(&cursor, buf, 256, &ip);
|
|
|
|
if (strncmp("_sigtramp", buf, sizeof("_sigtramp")) == 0) {
|
|
|
|
goto darwin_sigtramp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
darwin_sigtramp:
|
2013-03-18 21:39:39 +04:00
|
|
|
/* darwin's bundled libunwind doesn't support signal trampoline */
|
2013-03-18 08:31:59 +04:00
|
|
|
{
|
|
|
|
ucontext_t *uctx;
|
2017-09-01 04:13:53 +03:00
|
|
|
char vec[1];
|
|
|
|
int r;
|
2017-09-14 12:21:48 +03:00
|
|
|
/* get previous frame information from %rbx at _sigtramp and set values to cursor
|
2022-04-09 10:53:13 +03:00
|
|
|
* https://www.opensource.apple.com/source/Libc/Libc-825.25/i386/sys/_sigtramp.s
|
|
|
|
* https://www.opensource.apple.com/source/libunwind/libunwind-35.1/src/unw_getcontext.s
|
2013-03-18 21:39:39 +04:00
|
|
|
*/
|
2013-03-18 08:31:59 +04:00
|
|
|
unw_get_reg(&cursor, UNW_X86_64_RBX, &ip);
|
|
|
|
uctx = (ucontext_t *)ip;
|
2018-09-22 23:13:08 +03:00
|
|
|
unw_set_reg(&cursor, UNW_X86_64_RAX, uctx->uc_mcontext->MCTX_SS_REG(rax));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_RBX, uctx->uc_mcontext->MCTX_SS_REG(rbx));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_RCX, uctx->uc_mcontext->MCTX_SS_REG(rcx));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_RDX, uctx->uc_mcontext->MCTX_SS_REG(rdx));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_RDI, uctx->uc_mcontext->MCTX_SS_REG(rdi));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_RSI, uctx->uc_mcontext->MCTX_SS_REG(rsi));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_RBP, uctx->uc_mcontext->MCTX_SS_REG(rbp));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_RSP, 8+(uctx->uc_mcontext->MCTX_SS_REG(rsp)));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_R8, uctx->uc_mcontext->MCTX_SS_REG(r8));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_R9, uctx->uc_mcontext->MCTX_SS_REG(r9));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_R10, uctx->uc_mcontext->MCTX_SS_REG(r10));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_R11, uctx->uc_mcontext->MCTX_SS_REG(r11));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_R12, uctx->uc_mcontext->MCTX_SS_REG(r12));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_R13, uctx->uc_mcontext->MCTX_SS_REG(r13));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_R14, uctx->uc_mcontext->MCTX_SS_REG(r14));
|
|
|
|
unw_set_reg(&cursor, UNW_X86_64_R15, uctx->uc_mcontext->MCTX_SS_REG(r15));
|
|
|
|
ip = uctx->uc_mcontext->MCTX_SS_REG(rip);
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2017-11-07 23:11:44 +03:00
|
|
|
/* There are 4 cases for SEGV:
|
2017-09-14 12:21:48 +03:00
|
|
|
* (1) called invalid address
|
|
|
|
* (2) read or write invalid address
|
|
|
|
* (3) received signal
|
|
|
|
*
|
|
|
|
* Detail:
|
|
|
|
* (1) called invalid address
|
|
|
|
* In this case, saved ip is invalid address.
|
|
|
|
* It needs to just save the address for the information,
|
|
|
|
* skip the frame, and restore the frame calling the
|
|
|
|
* invalid address from %rsp.
|
|
|
|
* The problem is how to check whether the ip is valid or not.
|
|
|
|
* This code uses mincore(2) and assume the address's page is
|
|
|
|
* incore/referenced or not reflects the problem.
|
|
|
|
* Note that High Sierra's mincore(2) may return -128.
|
|
|
|
* (2) read or write invalid address
|
|
|
|
* saved ip is valid. just restart backtracing.
|
|
|
|
* (3) received signal in user space
|
|
|
|
* Same as (2).
|
|
|
|
* (4) received signal in kernel
|
|
|
|
* In this case saved ip points just after syscall, but registers are
|
2017-09-15 15:03:42 +03:00
|
|
|
* already overwritten by kernel. To fix register consistency,
|
2017-09-14 12:21:48 +03:00
|
|
|
* skip libc's kernel wrapper.
|
|
|
|
* To detect this case, just previous two bytes of ip is "\x0f\x05",
|
|
|
|
* syscall instruction of x86_64.
|
|
|
|
*/
|
2017-09-01 04:13:53 +03:00
|
|
|
r = mincore((const void *)ip, 1, vec);
|
2017-09-14 12:21:48 +03:00
|
|
|
if (r || vec[0] <= 0 || memcmp((const char *)ip-2, "\x0f\x05", 2) == 0) {
|
2017-09-01 04:13:53 +03:00
|
|
|
/* if segv is caused by invalid call or signal received in syscall */
|
|
|
|
/* the frame is invalid; skip */
|
2016-08-30 07:49:26 +03:00
|
|
|
trace[n++] = (void *)ip;
|
2018-09-22 23:13:08 +03:00
|
|
|
ip = *(unw_word_t*)uctx->uc_mcontext->MCTX_SS_REG(rsp);
|
2016-08-29 21:43:17 +03:00
|
|
|
}
|
2022-04-20 05:52:47 +03:00
|
|
|
|
2013-03-18 08:31:59 +04:00
|
|
|
trace[n++] = (void *)ip;
|
2016-08-30 07:49:26 +03:00
|
|
|
unw_set_reg(&cursor, UNW_REG_IP, ip);
|
2013-03-18 08:31:59 +04:00
|
|
|
}
|
|
|
|
while (unw_step(&cursor) > 0) {
|
|
|
|
unw_get_reg(&cursor, UNW_REG_IP, &ip);
|
|
|
|
trace[n++] = (void *)ip;
|
|
|
|
}
|
|
|
|
return n;
|
2022-12-23 20:24:55 +03:00
|
|
|
|
|
|
|
# else /* defined(__arm64__) */
|
|
|
|
/* Since Darwin arm64's _sigtramp is implemented as normal function,
|
|
|
|
* unwind can unwind frames without special code.
|
|
|
|
* https://github.com/apple/darwin-libplatform/blob/215b09856ab5765b7462a91be7076183076600df/src/setjmp/generic/sigtramp.c
|
|
|
|
*/
|
|
|
|
while (unw_step(&cursor) > 0) {
|
|
|
|
unw_get_reg(&cursor, UNW_REG_IP, &ip);
|
|
|
|
// Strip Arm64's pointer authentication.
|
|
|
|
// https://developer.apple.com/documentation/security/preparing_your_app_to_work_with_pointer_authentication
|
|
|
|
// I wish I could use "ptrauth_strip()" but I get an error:
|
|
|
|
// "this target does not support pointer authentication"
|
|
|
|
trace[n++] = (void *)(ip & 0x7fffffffffffull);
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
# endif
|
2013-03-18 08:31:59 +04:00
|
|
|
}
|
2013-02-19 01:46:00 +04:00
|
|
|
# elif defined(BROKEN_BACKTRACE)
|
2021-04-29 14:15:19 +03:00
|
|
|
# undef USE_BACKTRACE
|
|
|
|
# define USE_BACKTRACE 0
|
2013-02-19 01:46:00 +04:00
|
|
|
# endif
|
|
|
|
#else
|
2021-04-29 14:15:19 +03:00
|
|
|
# define USE_BACKTRACE 0
|
2013-02-19 01:20:59 +04:00
|
|
|
#endif
|
2013-02-19 01:46:00 +04:00
|
|
|
|
2021-04-29 14:15:19 +03:00
|
|
|
#if USE_BACKTRACE
|
2010-09-28 15:08:56 +04:00
|
|
|
# include <execinfo.h>
|
|
|
|
#elif defined(_WIN32)
|
|
|
|
# include <imagehlp.h>
|
|
|
|
# ifndef SYMOPT_DEBUG
|
|
|
|
# define SYMOPT_DEBUG 0x80000000
|
|
|
|
# endif
|
|
|
|
# ifndef MAX_SYM_NAME
|
|
|
|
# define MAX_SYM_NAME 2000
|
|
|
|
typedef struct {
|
|
|
|
DWORD64 Offset;
|
|
|
|
WORD Segment;
|
|
|
|
ADDRESS_MODE Mode;
|
|
|
|
} ADDRESS64;
|
|
|
|
typedef struct {
|
|
|
|
DWORD64 Thread;
|
|
|
|
DWORD ThCallbackStack;
|
|
|
|
DWORD ThCallbackBStore;
|
|
|
|
DWORD NextCallback;
|
|
|
|
DWORD FramePointer;
|
|
|
|
DWORD64 KiCallUserMode;
|
|
|
|
DWORD64 KeUserCallbackDispatcher;
|
|
|
|
DWORD64 SystemRangeStart;
|
|
|
|
DWORD64 KiUserExceptionDispatcher;
|
|
|
|
DWORD64 StackBase;
|
|
|
|
DWORD64 StackLimit;
|
|
|
|
DWORD64 Reserved[5];
|
|
|
|
} KDHELP64;
|
|
|
|
typedef struct {
|
|
|
|
ADDRESS64 AddrPC;
|
|
|
|
ADDRESS64 AddrReturn;
|
|
|
|
ADDRESS64 AddrFrame;
|
|
|
|
ADDRESS64 AddrStack;
|
|
|
|
ADDRESS64 AddrBStore;
|
|
|
|
void *FuncTableEntry;
|
|
|
|
DWORD64 Params[4];
|
|
|
|
BOOL Far;
|
|
|
|
BOOL Virtual;
|
|
|
|
DWORD64 Reserved[3];
|
|
|
|
KDHELP64 KdHelp;
|
|
|
|
} STACKFRAME64;
|
|
|
|
typedef struct {
|
|
|
|
ULONG SizeOfStruct;
|
|
|
|
ULONG TypeIndex;
|
|
|
|
ULONG64 Reserved[2];
|
|
|
|
ULONG Index;
|
|
|
|
ULONG Size;
|
|
|
|
ULONG64 ModBase;
|
|
|
|
ULONG Flags;
|
|
|
|
ULONG64 Value;
|
|
|
|
ULONG64 Address;
|
|
|
|
ULONG Register;
|
|
|
|
ULONG Scope;
|
|
|
|
ULONG Tag;
|
|
|
|
ULONG NameLen;
|
|
|
|
ULONG MaxNameLen;
|
|
|
|
char Name[1];
|
|
|
|
} SYMBOL_INFO;
|
|
|
|
typedef struct {
|
|
|
|
DWORD SizeOfStruct;
|
|
|
|
void *Key;
|
|
|
|
DWORD LineNumber;
|
|
|
|
char *FileName;
|
|
|
|
DWORD64 Address;
|
|
|
|
} IMAGEHLP_LINE64;
|
|
|
|
typedef void *PREAD_PROCESS_MEMORY_ROUTINE64;
|
|
|
|
typedef void *PFUNCTION_TABLE_ACCESS_ROUTINE64;
|
|
|
|
typedef void *PGET_MODULE_BASE_ROUTINE64;
|
|
|
|
typedef void *PTRANSLATE_ADDRESS_ROUTINE64;
|
|
|
|
# endif
|
|
|
|
|
2023-07-31 21:04:42 +03:00
|
|
|
struct dump_thead_arg {
|
|
|
|
DWORD tid;
|
|
|
|
FILE *errout;
|
|
|
|
};
|
|
|
|
|
2010-09-28 15:08:56 +04:00
|
|
|
static void
|
|
|
|
dump_thread(void *arg)
|
|
|
|
{
|
|
|
|
HANDLE dbghelp;
|
|
|
|
BOOL (WINAPI *pSymInitialize)(HANDLE, const char *, BOOL);
|
|
|
|
BOOL (WINAPI *pSymCleanup)(HANDLE);
|
|
|
|
BOOL (WINAPI *pStackWalk64)(DWORD, HANDLE, HANDLE, STACKFRAME64 *, void *, PREAD_PROCESS_MEMORY_ROUTINE64, PFUNCTION_TABLE_ACCESS_ROUTINE64, PGET_MODULE_BASE_ROUTINE64, PTRANSLATE_ADDRESS_ROUTINE64);
|
2010-10-12 07:22:13 +04:00
|
|
|
DWORD64 (WINAPI *pSymGetModuleBase64)(HANDLE, DWORD64);
|
2010-09-28 15:08:56 +04:00
|
|
|
BOOL (WINAPI *pSymFromAddr)(HANDLE, DWORD64, DWORD64 *, SYMBOL_INFO *);
|
|
|
|
BOOL (WINAPI *pSymGetLineFromAddr64)(HANDLE, DWORD64, DWORD *, IMAGEHLP_LINE64 *);
|
|
|
|
HANDLE (WINAPI *pOpenThread)(DWORD, BOOL, DWORD);
|
2023-07-31 21:04:42 +03:00
|
|
|
DWORD tid = ((struct dump_thead_arg *)arg)->tid;
|
|
|
|
FILE *errout = ((struct dump_thead_arg *)arg)->errout;
|
2010-09-28 15:08:56 +04:00
|
|
|
HANDLE ph;
|
|
|
|
HANDLE th;
|
|
|
|
|
|
|
|
dbghelp = LoadLibrary("dbghelp.dll");
|
|
|
|
if (!dbghelp) return;
|
|
|
|
pSymInitialize = (BOOL (WINAPI *)(HANDLE, const char *, BOOL))GetProcAddress(dbghelp, "SymInitialize");
|
|
|
|
pSymCleanup = (BOOL (WINAPI *)(HANDLE))GetProcAddress(dbghelp, "SymCleanup");
|
|
|
|
pStackWalk64 = (BOOL (WINAPI *)(DWORD, HANDLE, HANDLE, STACKFRAME64 *, void *, PREAD_PROCESS_MEMORY_ROUTINE64, PFUNCTION_TABLE_ACCESS_ROUTINE64, PGET_MODULE_BASE_ROUTINE64, PTRANSLATE_ADDRESS_ROUTINE64))GetProcAddress(dbghelp, "StackWalk64");
|
2010-10-12 07:22:13 +04:00
|
|
|
pSymGetModuleBase64 = (DWORD64 (WINAPI *)(HANDLE, DWORD64))GetProcAddress(dbghelp, "SymGetModuleBase64");
|
2010-09-28 15:08:56 +04:00
|
|
|
pSymFromAddr = (BOOL (WINAPI *)(HANDLE, DWORD64, DWORD64 *, SYMBOL_INFO *))GetProcAddress(dbghelp, "SymFromAddr");
|
|
|
|
pSymGetLineFromAddr64 = (BOOL (WINAPI *)(HANDLE, DWORD64, DWORD *, IMAGEHLP_LINE64 *))GetProcAddress(dbghelp, "SymGetLineFromAddr64");
|
|
|
|
pOpenThread = (HANDLE (WINAPI *)(DWORD, BOOL, DWORD))GetProcAddress(GetModuleHandle("kernel32.dll"), "OpenThread");
|
|
|
|
if (pSymInitialize && pSymCleanup && pStackWalk64 && pSymGetModuleBase64 &&
|
|
|
|
pSymFromAddr && pSymGetLineFromAddr64 && pOpenThread) {
|
|
|
|
SymSetOptions(SYMOPT_UNDNAME | SYMOPT_DEFERRED_LOADS | SYMOPT_DEBUG | SYMOPT_LOAD_LINES);
|
|
|
|
ph = GetCurrentProcess();
|
|
|
|
pSymInitialize(ph, NULL, TRUE);
|
2010-11-26 05:42:46 +03:00
|
|
|
th = pOpenThread(THREAD_SUSPEND_RESUME|THREAD_GET_CONTEXT, FALSE, tid);
|
2010-09-28 15:08:56 +04:00
|
|
|
if (th) {
|
|
|
|
if (SuspendThread(th) != (DWORD)-1) {
|
|
|
|
CONTEXT context;
|
|
|
|
memset(&context, 0, sizeof(context));
|
|
|
|
context.ContextFlags = CONTEXT_FULL;
|
|
|
|
if (GetThreadContext(th, &context)) {
|
|
|
|
char libpath[MAX_PATH];
|
|
|
|
char buf[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
|
|
|
|
SYMBOL_INFO *info = (SYMBOL_INFO *)buf;
|
|
|
|
DWORD mac;
|
|
|
|
STACKFRAME64 frame;
|
|
|
|
memset(&frame, 0, sizeof(frame));
|
|
|
|
#if defined(_M_AMD64) || defined(__x86_64__)
|
|
|
|
mac = IMAGE_FILE_MACHINE_AMD64;
|
|
|
|
frame.AddrPC.Mode = AddrModeFlat;
|
|
|
|
frame.AddrPC.Offset = context.Rip;
|
|
|
|
frame.AddrFrame.Mode = AddrModeFlat;
|
|
|
|
frame.AddrFrame.Offset = context.Rbp;
|
|
|
|
frame.AddrStack.Mode = AddrModeFlat;
|
|
|
|
frame.AddrStack.Offset = context.Rsp;
|
|
|
|
#else /* i386 */
|
|
|
|
mac = IMAGE_FILE_MACHINE_I386;
|
|
|
|
frame.AddrPC.Mode = AddrModeFlat;
|
|
|
|
frame.AddrPC.Offset = context.Eip;
|
|
|
|
frame.AddrFrame.Mode = AddrModeFlat;
|
|
|
|
frame.AddrFrame.Offset = context.Ebp;
|
|
|
|
frame.AddrStack.Mode = AddrModeFlat;
|
|
|
|
frame.AddrStack.Offset = context.Esp;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
while (pStackWalk64(mac, ph, th, &frame, &context, NULL,
|
|
|
|
NULL, NULL, NULL)) {
|
|
|
|
DWORD64 addr = frame.AddrPC.Offset;
|
|
|
|
IMAGEHLP_LINE64 line;
|
2010-11-26 05:10:25 +03:00
|
|
|
DWORD64 displacement;
|
2010-11-26 03:34:04 +03:00
|
|
|
DWORD tmp;
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2010-09-30 04:35:23 +04:00
|
|
|
if (addr == frame.AddrReturn.Offset || addr == 0 ||
|
|
|
|
frame.AddrReturn.Offset == 0)
|
2010-09-28 15:08:56 +04:00
|
|
|
break;
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2010-09-28 15:08:56 +04:00
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
info->SizeOfStruct = sizeof(SYMBOL_INFO);
|
|
|
|
info->MaxNameLen = MAX_SYM_NAME;
|
2010-11-26 05:10:25 +03:00
|
|
|
if (pSymFromAddr(ph, addr, &displacement, info)) {
|
2010-10-13 18:08:29 +04:00
|
|
|
if (GetModuleFileName((HANDLE)(uintptr_t)pSymGetModuleBase64(ph, addr), libpath, sizeof(libpath)))
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("%s", libpath);
|
|
|
|
kprintf("(%s+0x%"PRI_64_PREFIX"x)",
|
2010-11-26 05:10:25 +03:00
|
|
|
info->Name, displacement);
|
2010-09-28 15:08:56 +04:00
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" [0x%p]", (void *)(VALUE)addr);
|
2010-09-28 15:08:56 +04:00
|
|
|
memset(&line, 0, sizeof(line));
|
|
|
|
line.SizeOfStruct = sizeof(line);
|
2010-11-26 03:34:04 +03:00
|
|
|
if (pSymGetLineFromAddr64(ph, addr, &tmp, &line))
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %s:%lu", line.FileName, line.LineNumber);
|
|
|
|
kprintf("\n");
|
2010-09-28 15:08:56 +04:00
|
|
|
}
|
|
|
|
}
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
error:
|
2010-09-28 15:08:56 +04:00
|
|
|
ResumeThread(th);
|
|
|
|
}
|
|
|
|
CloseHandle(th);
|
|
|
|
}
|
|
|
|
pSymCleanup(ph);
|
|
|
|
}
|
|
|
|
FreeLibrary(dbghelp);
|
|
|
|
}
|
2009-04-01 13:53:52 +04:00
|
|
|
#endif
|
2010-09-28 15:08:56 +04:00
|
|
|
|
2013-04-02 11:02:54 +04:00
|
|
|
void
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_print_backtrace(FILE *errout)
|
2013-04-02 11:02:54 +04:00
|
|
|
{
|
2021-04-29 14:15:19 +03:00
|
|
|
#if USE_BACKTRACE
|
2013-04-02 11:02:54 +04:00
|
|
|
#define MAX_NATIVE_TRACE 1024
|
|
|
|
static void *trace[MAX_NATIVE_TRACE];
|
2015-05-20 05:24:17 +03:00
|
|
|
int n = (int)backtrace(trace, MAX_NATIVE_TRACE);
|
2021-02-04 11:47:12 +03:00
|
|
|
#if (defined(USE_ELF) || defined(HAVE_MACH_O_LOADER_H)) && defined(HAVE_DLADDR) && !defined(__sparc)
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_dump_backtrace_with_lines(n, trace, errout);
|
2013-04-02 11:02:54 +04:00
|
|
|
#else
|
2014-03-26 08:30:43 +04:00
|
|
|
char **syms = backtrace_symbols(trace, n);
|
|
|
|
if (syms) {
|
2013-04-02 11:02:54 +04:00
|
|
|
int i;
|
|
|
|
for (i=0; i<n; i++) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("%s\n", syms[i]);
|
2013-04-02 11:02:54 +04:00
|
|
|
}
|
|
|
|
free(syms);
|
|
|
|
}
|
2023-09-25 20:15:38 +03:00
|
|
|
error:
|
2023-09-26 02:31:45 +03:00
|
|
|
/* ignore errors at writing */;
|
2014-03-26 08:30:43 +04:00
|
|
|
#endif
|
2013-04-02 11:02:54 +04:00
|
|
|
#elif defined(_WIN32)
|
2023-07-31 21:04:42 +03:00
|
|
|
struct dump_thead_arg arg = {
|
|
|
|
.tid = GetCurrentThreadId(),
|
|
|
|
.errout = errout,
|
|
|
|
};
|
|
|
|
HANDLE th = (HANDLE)_beginthread(dump_thread, 0, &arg);
|
2013-04-02 11:02:54 +04:00
|
|
|
if (th != (HANDLE)-1)
|
|
|
|
WaitForSingleObject(th, INFINITE);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-01-18 09:50:41 +03:00
|
|
|
#ifdef HAVE_LIBPROCSTAT
|
2023-10-12 09:06:45 +03:00
|
|
|
struct procstat;
|
|
|
|
struct kinfo_proc;
|
|
|
|
static void procstat_vm(struct procstat *, struct kinfo_proc *, FILE *);
|
2019-02-07 11:53:13 +03:00
|
|
|
#include "missing/procstat_vm.c"
|
2014-03-10 21:10:57 +04:00
|
|
|
#endif
|
|
|
|
|
2014-05-25 07:46:55 +04:00
|
|
|
#if defined __linux__
|
2023-02-22 10:45:58 +03:00
|
|
|
# if defined(__x86_64__) || defined(__i386__)
|
2023-07-31 21:04:42 +03:00
|
|
|
# define dump_machine_register(reg) (col_count = print_machine_register(errout, mctx->gregs[REG_##reg], #reg, col_count, 80))
|
2023-02-22 10:45:58 +03:00
|
|
|
# elif defined(__aarch64__) || defined(__arm__) || defined(__riscv) || defined(__loongarch64)
|
2023-07-31 21:04:42 +03:00
|
|
|
# define dump_machine_register(reg, regstr) (col_count = print_machine_register(errout, reg, regstr, col_count, 80))
|
2014-05-25 07:46:55 +04:00
|
|
|
# endif
|
|
|
|
#elif defined __APPLE__
|
2023-02-22 10:45:58 +03:00
|
|
|
# if defined(__aarch64__)
|
2023-07-31 21:04:42 +03:00
|
|
|
# define dump_machine_register(reg, regstr) (col_count = print_machine_register(errout, mctx->MCTX_SS_REG(reg), regstr, col_count, 80))
|
2023-02-22 10:45:58 +03:00
|
|
|
# else
|
2023-07-31 21:04:42 +03:00
|
|
|
# define dump_machine_register(reg) (col_count = print_machine_register(errout, mctx->MCTX_SS_REG(reg), #reg, col_count, 80))
|
2014-05-25 07:46:55 +04:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2023-02-22 10:45:58 +03:00
|
|
|
#ifdef dump_machine_register
|
2014-05-25 07:46:55 +04:00
|
|
|
static int
|
2023-07-31 21:04:42 +03:00
|
|
|
print_machine_register(FILE *errout, size_t reg, const char *reg_name, int col_count, int max_col)
|
2014-05-25 07:46:55 +04:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char buf[64];
|
2021-04-04 15:52:50 +03:00
|
|
|
static const int size_width = sizeof(size_t) * CHAR_BIT / 4;
|
2014-05-25 07:46:55 +04:00
|
|
|
|
2021-04-04 15:52:50 +03:00
|
|
|
ret = snprintf(buf, sizeof(buf), " %3.3s: 0x%.*" PRIxSIZE, reg_name, size_width, reg);
|
2014-05-25 07:46:55 +04:00
|
|
|
if (col_count + ret > max_col) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kputs("\n");
|
2014-05-25 07:46:55 +04:00
|
|
|
col_count = 0;
|
|
|
|
}
|
|
|
|
col_count += ret;
|
2023-08-04 09:30:36 +03:00
|
|
|
kputs(buf);
|
2014-05-25 07:46:55 +04:00
|
|
|
return col_count;
|
2023-08-04 09:30:36 +03:00
|
|
|
|
|
|
|
error:
|
|
|
|
return -1;
|
2014-05-25 07:46:55 +04:00
|
|
|
}
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
static bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_dump_machine_register(FILE *errout, const ucontext_t *ctx)
|
2014-05-25 07:46:55 +04:00
|
|
|
{
|
|
|
|
int col_count = 0;
|
2023-08-04 09:30:36 +03:00
|
|
|
if (!ctx) return true;
|
2014-05-25 07:46:55 +04:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("-- Machine register context "
|
2014-05-25 07:46:55 +04:00
|
|
|
"------------------------------------------------\n");
|
|
|
|
|
|
|
|
# if defined __linux__
|
|
|
|
{
|
|
|
|
const mcontext_t *const mctx = &ctx->uc_mcontext;
|
|
|
|
# if defined __x86_64__
|
|
|
|
dump_machine_register(RIP);
|
|
|
|
dump_machine_register(RBP);
|
|
|
|
dump_machine_register(RSP);
|
|
|
|
dump_machine_register(RAX);
|
|
|
|
dump_machine_register(RBX);
|
|
|
|
dump_machine_register(RCX);
|
|
|
|
dump_machine_register(RDX);
|
|
|
|
dump_machine_register(RDI);
|
|
|
|
dump_machine_register(RSI);
|
|
|
|
dump_machine_register(R8);
|
|
|
|
dump_machine_register(R9);
|
|
|
|
dump_machine_register(R10);
|
|
|
|
dump_machine_register(R11);
|
|
|
|
dump_machine_register(R12);
|
|
|
|
dump_machine_register(R13);
|
|
|
|
dump_machine_register(R14);
|
|
|
|
dump_machine_register(R15);
|
|
|
|
dump_machine_register(EFL);
|
|
|
|
# elif defined __i386__
|
|
|
|
dump_machine_register(GS);
|
|
|
|
dump_machine_register(FS);
|
|
|
|
dump_machine_register(ES);
|
|
|
|
dump_machine_register(DS);
|
|
|
|
dump_machine_register(EDI);
|
|
|
|
dump_machine_register(ESI);
|
|
|
|
dump_machine_register(EBP);
|
|
|
|
dump_machine_register(ESP);
|
|
|
|
dump_machine_register(EBX);
|
|
|
|
dump_machine_register(EDX);
|
|
|
|
dump_machine_register(ECX);
|
|
|
|
dump_machine_register(EAX);
|
|
|
|
dump_machine_register(TRAPNO);
|
|
|
|
dump_machine_register(ERR);
|
|
|
|
dump_machine_register(EIP);
|
|
|
|
dump_machine_register(CS);
|
|
|
|
dump_machine_register(EFL);
|
|
|
|
dump_machine_register(UESP);
|
|
|
|
dump_machine_register(SS);
|
2020-12-16 09:32:11 +03:00
|
|
|
# elif defined __aarch64__
|
|
|
|
dump_machine_register(mctx->regs[0], "x0");
|
|
|
|
dump_machine_register(mctx->regs[1], "x1");
|
|
|
|
dump_machine_register(mctx->regs[2], "x2");
|
|
|
|
dump_machine_register(mctx->regs[3], "x3");
|
|
|
|
dump_machine_register(mctx->regs[4], "x4");
|
|
|
|
dump_machine_register(mctx->regs[5], "x5");
|
|
|
|
dump_machine_register(mctx->regs[6], "x6");
|
|
|
|
dump_machine_register(mctx->regs[7], "x7");
|
|
|
|
dump_machine_register(mctx->regs[18], "x18");
|
|
|
|
dump_machine_register(mctx->regs[19], "x19");
|
|
|
|
dump_machine_register(mctx->regs[20], "x20");
|
|
|
|
dump_machine_register(mctx->regs[21], "x21");
|
|
|
|
dump_machine_register(mctx->regs[22], "x22");
|
|
|
|
dump_machine_register(mctx->regs[23], "x23");
|
|
|
|
dump_machine_register(mctx->regs[24], "x24");
|
|
|
|
dump_machine_register(mctx->regs[25], "x25");
|
|
|
|
dump_machine_register(mctx->regs[26], "x26");
|
|
|
|
dump_machine_register(mctx->regs[27], "x27");
|
|
|
|
dump_machine_register(mctx->regs[28], "x28");
|
|
|
|
dump_machine_register(mctx->regs[29], "x29");
|
|
|
|
dump_machine_register(mctx->sp, "sp");
|
|
|
|
dump_machine_register(mctx->fault_address, "fault_address");
|
|
|
|
# elif defined __arm__
|
|
|
|
dump_machine_register(mctx->arm_r0, "r0");
|
|
|
|
dump_machine_register(mctx->arm_r1, "r1");
|
|
|
|
dump_machine_register(mctx->arm_r2, "r2");
|
|
|
|
dump_machine_register(mctx->arm_r3, "r3");
|
|
|
|
dump_machine_register(mctx->arm_r4, "r4");
|
|
|
|
dump_machine_register(mctx->arm_r5, "r5");
|
|
|
|
dump_machine_register(mctx->arm_r6, "r6");
|
|
|
|
dump_machine_register(mctx->arm_r7, "r7");
|
|
|
|
dump_machine_register(mctx->arm_r8, "r8");
|
|
|
|
dump_machine_register(mctx->arm_r9, "r9");
|
|
|
|
dump_machine_register(mctx->arm_r10, "r10");
|
|
|
|
dump_machine_register(mctx->arm_sp, "sp");
|
|
|
|
dump_machine_register(mctx->fault_address, "fault_address");
|
2021-02-09 22:39:41 +03:00
|
|
|
# elif defined __riscv
|
|
|
|
dump_machine_register(mctx->__gregs[REG_SP], "sp");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S0], "s0");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S1], "s1");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_A0], "a0");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_A0+1], "a1");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_A0+2], "a2");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_A0+3], "a3");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_A0+4], "a4");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_A0+5], "a5");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_A0+6], "a6");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_A0+7], "a7");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2], "s2");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+1], "s3");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+2], "s4");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+3], "s5");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+4], "s6");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+5], "s7");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+6], "s8");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+7], "s9");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+8], "s10");
|
|
|
|
dump_machine_register(mctx->__gregs[REG_S2+9], "s11");
|
2023-02-22 07:11:33 +03:00
|
|
|
# elif defined __loongarch64
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_SP], "sp");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0], "s0");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S1], "s1");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0], "a0");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0+1], "a1");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0+2], "a2");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0+3], "a3");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0+4], "a4");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0+5], "a5");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0+6], "a6");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0+7], "a7");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_A0+7], "a7");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0], "s0");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0+1], "s1");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0+2], "s2");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0+3], "s3");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0+4], "s4");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0+5], "s5");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0+6], "s6");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0+7], "s7");
|
|
|
|
dump_machine_register(mctx->__gregs[LARCH_REG_S0+8], "s8");
|
2014-05-25 07:46:55 +04:00
|
|
|
# endif
|
|
|
|
}
|
|
|
|
# elif defined __APPLE__
|
|
|
|
{
|
|
|
|
const mcontext_t mctx = ctx->uc_mcontext;
|
|
|
|
# if defined __x86_64__
|
|
|
|
dump_machine_register(rax);
|
|
|
|
dump_machine_register(rbx);
|
|
|
|
dump_machine_register(rcx);
|
|
|
|
dump_machine_register(rdx);
|
|
|
|
dump_machine_register(rdi);
|
|
|
|
dump_machine_register(rsi);
|
|
|
|
dump_machine_register(rbp);
|
|
|
|
dump_machine_register(rsp);
|
|
|
|
dump_machine_register(r8);
|
|
|
|
dump_machine_register(r9);
|
|
|
|
dump_machine_register(r10);
|
|
|
|
dump_machine_register(r11);
|
|
|
|
dump_machine_register(r12);
|
|
|
|
dump_machine_register(r13);
|
|
|
|
dump_machine_register(r14);
|
|
|
|
dump_machine_register(r15);
|
|
|
|
dump_machine_register(rip);
|
|
|
|
dump_machine_register(rflags);
|
|
|
|
# elif defined __i386__
|
|
|
|
dump_machine_register(eax);
|
|
|
|
dump_machine_register(ebx);
|
|
|
|
dump_machine_register(ecx);
|
|
|
|
dump_machine_register(edx);
|
|
|
|
dump_machine_register(edi);
|
|
|
|
dump_machine_register(esi);
|
|
|
|
dump_machine_register(ebp);
|
|
|
|
dump_machine_register(esp);
|
|
|
|
dump_machine_register(ss);
|
|
|
|
dump_machine_register(eflags);
|
|
|
|
dump_machine_register(eip);
|
|
|
|
dump_machine_register(cs);
|
|
|
|
dump_machine_register(ds);
|
|
|
|
dump_machine_register(es);
|
|
|
|
dump_machine_register(fs);
|
|
|
|
dump_machine_register(gs);
|
2021-01-30 02:43:35 +03:00
|
|
|
# elif defined __aarch64__
|
2021-10-10 15:58:56 +03:00
|
|
|
dump_machine_register(x[0], "x0");
|
|
|
|
dump_machine_register(x[1], "x1");
|
|
|
|
dump_machine_register(x[2], "x2");
|
|
|
|
dump_machine_register(x[3], "x3");
|
|
|
|
dump_machine_register(x[4], "x4");
|
|
|
|
dump_machine_register(x[5], "x5");
|
|
|
|
dump_machine_register(x[6], "x6");
|
|
|
|
dump_machine_register(x[7], "x7");
|
|
|
|
dump_machine_register(x[18], "x18");
|
|
|
|
dump_machine_register(x[19], "x19");
|
|
|
|
dump_machine_register(x[20], "x20");
|
|
|
|
dump_machine_register(x[21], "x21");
|
|
|
|
dump_machine_register(x[22], "x22");
|
|
|
|
dump_machine_register(x[23], "x23");
|
|
|
|
dump_machine_register(x[24], "x24");
|
|
|
|
dump_machine_register(x[25], "x25");
|
|
|
|
dump_machine_register(x[26], "x26");
|
|
|
|
dump_machine_register(x[27], "x27");
|
|
|
|
dump_machine_register(x[28], "x28");
|
|
|
|
dump_machine_register(lr, "lr");
|
|
|
|
dump_machine_register(fp, "fp");
|
|
|
|
dump_machine_register(sp, "sp");
|
2014-05-25 07:46:55 +04:00
|
|
|
# endif
|
|
|
|
}
|
|
|
|
# endif
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n\n");
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return false;
|
2014-05-25 07:46:55 +04:00
|
|
|
}
|
|
|
|
#else
|
2023-07-31 21:04:42 +03:00
|
|
|
# define rb_dump_machine_register(errout, ctx) ((void)0)
|
2023-02-22 10:45:58 +03:00
|
|
|
#endif /* dump_machine_register */
|
2014-05-25 07:46:55 +04:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vm_bugreport(const void *ctx, FILE *errout)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2020-01-06 09:06:03 +03:00
|
|
|
const char *cmd = getenv("RUBY_ON_BUG");
|
|
|
|
if (cmd) {
|
|
|
|
char buf[0x100];
|
|
|
|
snprintf(buf, sizeof(buf), "%s %"PRI_PIDT_PREFIX"d", cmd, getpid());
|
|
|
|
int r = system(buf);
|
|
|
|
if (r == -1) {
|
|
|
|
snprintf(buf, sizeof(buf), "Launching RUBY_ON_BUG command failed.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-29 20:38:55 +03:00
|
|
|
// Thread unsafe best effort attempt to stop printing the bug report in an
|
|
|
|
// infinite loop. Can happen with corrupt Ruby stack.
|
|
|
|
{
|
|
|
|
static bool crashing = false;
|
|
|
|
if (crashing) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("Crashed while printing bug report\n");
|
|
|
|
return true;
|
2022-03-29 20:38:55 +03:00
|
|
|
}
|
|
|
|
crashing = true;
|
|
|
|
}
|
|
|
|
|
2011-11-11 12:09:48 +04:00
|
|
|
#ifdef __linux__
|
|
|
|
# define PROC_MAPS_NAME "/proc/self/maps"
|
|
|
|
#endif
|
|
|
|
#ifdef PROC_MAPS_NAME
|
|
|
|
enum {other_runtime_info = 1};
|
|
|
|
#else
|
|
|
|
enum {other_runtime_info = 0};
|
|
|
|
#endif
|
|
|
|
const rb_vm_t *const vm = GET_VM();
|
2021-06-03 07:39:11 +03:00
|
|
|
const rb_execution_context_t *ec = rb_current_execution_context(false);
|
2013-01-30 10:21:33 +04:00
|
|
|
|
2020-12-11 08:56:48 +03:00
|
|
|
if (vm && ec) {
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_vmdebug_stack_dump_raw(ec, ec->cfp, errout);
|
|
|
|
rb_backtrace_print_as_bugreport(errout);
|
2023-09-26 03:02:37 +03:00
|
|
|
kputs("\n");
|
2023-03-15 21:19:22 +03:00
|
|
|
// If we get here, hopefully things are intact enough that
|
|
|
|
// we can read these two numbers. It is an estimate because
|
|
|
|
// we are reading without synchronization.
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("-- Threading information "
|
2023-03-15 21:19:22 +03:00
|
|
|
"---------------------------------------------------\n");
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("Total ractor count: %u\n", vm->ractor.cnt);
|
|
|
|
kprintf("Ruby thread count for this ractor: %u\n", rb_ec_ractor_ptr(ec)->threads.cnt);
|
2023-09-26 03:02:37 +03:00
|
|
|
kputs("\n");
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_dump_machine_register(errout, ctx);
|
2014-05-25 07:46:55 +04:00
|
|
|
|
2021-04-29 14:15:19 +03:00
|
|
|
#if USE_BACKTRACE || defined(_WIN32)
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("-- C level backtrace information "
|
2014-03-28 05:17:51 +04:00
|
|
|
"-------------------------------------------\n");
|
2023-07-31 21:04:42 +03:00
|
|
|
rb_print_backtrace(errout);
|
2014-03-28 05:17:51 +04:00
|
|
|
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n");
|
2021-04-29 14:15:19 +03:00
|
|
|
#endif /* USE_BACKTRACE */
|
2014-03-28 05:17:51 +04:00
|
|
|
|
2011-11-11 12:09:48 +04:00
|
|
|
if (other_runtime_info || vm) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("-- Other runtime information "
|
2011-11-11 12:09:48 +04:00
|
|
|
"-----------------------------------------------\n\n");
|
|
|
|
}
|
2021-06-07 21:46:01 +03:00
|
|
|
if (vm && !rb_during_gc()) {
|
2010-10-23 06:02:50 +04:00
|
|
|
int i;
|
2011-11-11 12:09:48 +04:00
|
|
|
VALUE name;
|
2012-12-12 07:12:37 +04:00
|
|
|
long len;
|
|
|
|
const int max_name_length = 1024;
|
|
|
|
# define LIMITED_NAME_LENGTH(s) \
|
|
|
|
(((len = RSTRING_LEN(s)) > max_name_length) ? max_name_length : (int)len)
|
2010-10-23 06:02:50 +04:00
|
|
|
|
2011-11-11 12:09:48 +04:00
|
|
|
name = vm->progname;
|
2020-12-02 10:16:27 +03:00
|
|
|
if (name) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("* Loaded script: %.*s\n",
|
2020-12-02 10:16:27 +03:00
|
|
|
LIMITED_NAME_LENGTH(name), RSTRING_PTR(name));
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n");
|
2020-12-02 10:16:27 +03:00
|
|
|
}
|
2021-06-11 02:03:11 +03:00
|
|
|
if (vm->loaded_features) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("* Loaded features:\n\n");
|
2021-06-11 02:03:11 +03:00
|
|
|
for (i=0; i<RARRAY_LEN(vm->loaded_features); i++) {
|
|
|
|
name = RARRAY_AREF(vm->loaded_features, i);
|
|
|
|
if (RB_TYPE_P(name, T_STRING)) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %4d %.*s\n", i,
|
2021-06-11 02:03:11 +03:00
|
|
|
LIMITED_NAME_LENGTH(name), RSTRING_PTR(name));
|
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(name, T_CLASS) || RB_TYPE_P(name, T_MODULE)) {
|
|
|
|
const char *const type = RB_TYPE_P(name, T_CLASS) ?
|
|
|
|
"class" : "module";
|
|
|
|
name = rb_search_class_path(rb_class_real(name));
|
|
|
|
if (!RB_TYPE_P(name, T_STRING)) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %4d %s:<unnamed>\n", i, type);
|
2021-06-11 02:03:11 +03:00
|
|
|
continue;
|
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %4d %s:%.*s\n", i, type,
|
2021-06-11 02:03:11 +03:00
|
|
|
LIMITED_NAME_LENGTH(name), RSTRING_PTR(name));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
VALUE klass = rb_search_class_path(rb_obj_class(name));
|
|
|
|
if (!RB_TYPE_P(klass, T_STRING)) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %4d #<%p:%p>\n", i,
|
2021-06-11 02:03:11 +03:00
|
|
|
(void *)CLASS_OF(name), (void *)name);
|
|
|
|
continue;
|
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %4d #<%.*s:%p>\n", i,
|
2021-06-11 02:03:11 +03:00
|
|
|
LIMITED_NAME_LENGTH(klass), RSTRING_PTR(klass),
|
|
|
|
(void *)name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n");
|
2011-11-11 12:09:48 +04:00
|
|
|
}
|
2010-10-23 06:02:50 +04:00
|
|
|
|
2011-11-11 12:09:48 +04:00
|
|
|
{
|
|
|
|
#ifdef PROC_MAPS_NAME
|
2010-10-23 06:02:50 +04:00
|
|
|
{
|
2011-11-11 12:09:48 +04:00
|
|
|
FILE *fp = fopen(PROC_MAPS_NAME, "r");
|
2010-10-23 06:02:50 +04:00
|
|
|
if (fp) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("* Process memory map:\n\n");
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2010-10-23 06:02:50 +04:00
|
|
|
while (!feof(fp)) {
|
|
|
|
char buff[0x100];
|
|
|
|
size_t rn = fread(buff, 1, 0x100, fp);
|
2023-07-31 21:04:42 +03:00
|
|
|
if (fwrite(buff, 1, rn, errout) != rn)
|
2011-11-27 16:06:10 +04:00
|
|
|
break;
|
2010-10-23 06:02:50 +04:00
|
|
|
}
|
2022-07-21 19:23:58 +03:00
|
|
|
|
2010-10-23 06:02:50 +04:00
|
|
|
fclose(fp);
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n\n");
|
2010-10-23 06:02:50 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* __linux__ */
|
2015-01-18 09:50:41 +03:00
|
|
|
#ifdef HAVE_LIBPROCSTAT
|
2014-03-10 21:10:57 +04:00
|
|
|
# define MIB_KERN_PROC_PID_LEN 4
|
|
|
|
int mib[MIB_KERN_PROC_PID_LEN];
|
|
|
|
struct kinfo_proc kp;
|
|
|
|
size_t len = sizeof(struct kinfo_proc);
|
|
|
|
mib[0] = CTL_KERN;
|
|
|
|
mib[1] = KERN_PROC;
|
|
|
|
mib[2] = KERN_PROC_PID;
|
|
|
|
mib[3] = getpid();
|
|
|
|
if (sysctl(mib, MIB_KERN_PROC_PID_LEN, &kp, &len, NULL, 0) == -1) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("sysctl: %s\n", strerror(errno));
|
2014-03-10 21:10:57 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct procstat *prstat = procstat_open_sysctl();
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("* Process memory map:\n\n");
|
2023-09-26 03:02:37 +03:00
|
|
|
procstat_vm(prstat, &kp, errout);
|
2014-03-10 21:10:57 +04:00
|
|
|
procstat_close(prstat);
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n");
|
2014-03-10 21:10:57 +04:00
|
|
|
}
|
|
|
|
#endif /* __FreeBSD__ */
|
2019-08-19 11:36:28 +03:00
|
|
|
#ifdef __APPLE__
|
|
|
|
vm_address_t addr = 0;
|
|
|
|
vm_size_t size = 0;
|
|
|
|
struct vm_region_submap_info map;
|
|
|
|
mach_msg_type_number_t count = VM_REGION_SUBMAP_INFO_COUNT;
|
|
|
|
natural_t depth = 0;
|
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("* Process memory map:\n\n");
|
2019-08-19 11:36:28 +03:00
|
|
|
while (1) {
|
|
|
|
if (vm_region_recurse(mach_task_self(), &addr, &size, &depth,
|
|
|
|
(vm_region_recurse_info_t)&map, &count) != KERN_SUCCESS) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (map.is_submap) {
|
|
|
|
// We only look at main addresses
|
|
|
|
depth++;
|
2019-09-27 04:20:56 +03:00
|
|
|
}
|
|
|
|
else {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("%lx-%lx %s%s%s", addr, (addr+size),
|
2019-08-19 11:36:28 +03:00
|
|
|
((map.protection & VM_PROT_READ) != 0 ? "r" : "-"),
|
|
|
|
((map.protection & VM_PROT_WRITE) != 0 ? "w" : "-"),
|
|
|
|
((map.protection & VM_PROT_EXECUTE) != 0 ? "x" : "-"));
|
|
|
|
#ifdef HAVE_LIBPROC_H
|
|
|
|
char buff[PATH_MAX];
|
|
|
|
if (proc_regionfilename(getpid(), addr, buff, sizeof(buff)) > 0) {
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf(" %s", buff);
|
2019-08-19 11:36:28 +03:00
|
|
|
}
|
|
|
|
#endif
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("\n");
|
2019-08-19 11:36:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
addr += size;
|
|
|
|
size = 0;
|
|
|
|
}
|
|
|
|
#endif
|
2010-10-23 06:02:50 +04:00
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return false;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2017-04-20 07:50:53 +03:00
|
|
|
|
2023-08-04 09:30:36 +03:00
|
|
|
bool
|
2017-04-20 07:50:53 +03:00
|
|
|
rb_vmdebug_stack_dump_all_threads(void)
|
|
|
|
{
|
|
|
|
rb_thread_t *th = NULL;
|
2020-03-09 20:22:11 +03:00
|
|
|
rb_ractor_t *r = GET_RACTOR();
|
2023-07-31 21:04:42 +03:00
|
|
|
FILE *errout = stderr;
|
2017-04-20 07:50:53 +03:00
|
|
|
|
2020-03-09 20:22:11 +03:00
|
|
|
// TODO: now it only shows current ractor
|
2022-03-30 10:36:31 +03:00
|
|
|
ccan_list_for_each(&r->threads.set, th, lt_node) {
|
2017-04-21 03:53:26 +03:00
|
|
|
#ifdef NON_SCALAR_THREAD_ID
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("th: %p, native_id: N/A\n", th);
|
2017-04-21 03:53:26 +03:00
|
|
|
#else
|
2023-08-04 09:30:36 +03:00
|
|
|
kprintf("th: %p, native_id: %p\n", (void *)th, (void *)(uintptr_t)th->nt->thread_id);
|
2017-04-21 03:53:26 +03:00
|
|
|
#endif
|
2023-08-04 09:30:36 +03:00
|
|
|
if (!rb_vmdebug_stack_dump_raw(th->ec, th->ec->cfp, errout)) goto error;
|
2017-04-20 07:50:53 +03:00
|
|
|
}
|
2023-08-04 09:30:36 +03:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return false;
|
2017-04-20 07:50:53 +03:00
|
|
|
}
|