mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
6b6bf4dd48
* array.c, numeric.c: ditto. * insnhelper.ci, insns.def, vm_evalbody.ci: ditto. * yarvcore.c: removed. * yarvcore.h: renamed to core.h. * cont.c, debug.c, error.c, process.c, signal.c : ditto. * ext/probeprofiler/probeprofiler.c: ditto. * id.c, id.h: added. * inits.c: ditto. * compile.c: rename internal functions. * compile.h: fix debug flag. * eval.c, object.c, vm.c: remove ruby_top_self. use rb_vm_top_self() instead. * eval_intern.h, eval_load: ditto. * gc.c: rename yarv_machine_stack_mark() to rb_gc_mark_machine_stack(). * insnhelper.h: remove unused macros. * iseq.c: add iseq_compile() to create iseq object from source string. * proc.c: rename a internal function. * template/insns.inc.tmpl: remove YARV prefix. * thread.c: * vm.c (rb_iseq_eval): added. * vm.c: move some functions from yarvcore.c. * vm_dump.c: fix to remove compiler warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
102 lines
2 KiB
C
102 lines
2 KiB
C
/**********************************************************************
|
|
|
|
debug.c -
|
|
|
|
$Author$
|
|
$Date$
|
|
created at: 04/08/25 02:31:54 JST
|
|
|
|
Copyright (C) 2004-2006 Koichi Sasada
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ruby/ruby.h"
|
|
#include "debug.h"
|
|
#include "vm_core.h"
|
|
|
|
void
|
|
ruby_debug_print_indent(int level, int debug_level, int indent_level)
|
|
{
|
|
if (level < debug_level) {
|
|
int i;
|
|
for (i = 0; i < indent_level; i++) {
|
|
fprintf(stderr, " ");
|
|
}
|
|
fflush(stderr);
|
|
}
|
|
}
|
|
|
|
VALUE
|
|
ruby_debug_print_value(int level, int debug_level, const char *header, VALUE obj)
|
|
{
|
|
if (level < debug_level) {
|
|
VALUE str;
|
|
str = rb_inspect(obj);
|
|
fprintf(stderr, "DBG> %s: %s\n", header,
|
|
obj == -1 ? "" : StringValueCStr(str));
|
|
fflush(stderr);
|
|
}
|
|
return obj;
|
|
}
|
|
|
|
void
|
|
ruby_debug_print_v(VALUE v)
|
|
{
|
|
ruby_debug_print_value(0, 1, "", v);
|
|
}
|
|
|
|
ID
|
|
ruby_debug_print_id(int level, int debug_level, const char *header, ID id)
|
|
{
|
|
if (level < debug_level) {
|
|
fprintf(stderr, "DBG> %s: %s\n", header, rb_id2name(id));
|
|
fflush(stderr);
|
|
}
|
|
return id;
|
|
}
|
|
|
|
NODE *
|
|
ruby_debug_print_node(int level, int debug_level, const char *header, const NODE *node)
|
|
{
|
|
if (level < debug_level) {
|
|
fprintf(stderr, "DBG> %s: %s (%lu)\n", header,
|
|
ruby_node_name(nd_type(node)), nd_line(node));
|
|
}
|
|
return (NODE *)node;
|
|
}
|
|
|
|
void
|
|
ruby_debug_breakpoint(void)
|
|
{
|
|
/* */
|
|
}
|
|
|
|
#ifdef RUBY_DEBUG_ENV
|
|
#include <ctype.h>
|
|
|
|
void
|
|
ruby_set_debug_option(const char *str)
|
|
{
|
|
const char *end;
|
|
int len;
|
|
|
|
if (!str) return;
|
|
for (; *str; str = end) {
|
|
while (ISSPACE(*str) || *str == ',') str++;
|
|
if (!*str) break;
|
|
end = str;
|
|
while (*end && !ISSPACE(*end) && *end != ',') end++;
|
|
len = end - str;
|
|
#define SET_WHEN(name, var) \
|
|
if (len == sizeof(name) - 1 && \
|
|
strncmp(str, name, len) == 0) { \
|
|
extern int ruby_##var; \
|
|
ruby_##var = 1; \
|
|
continue; \
|
|
}
|
|
SET_WHEN("gc_stress", gc_stress);
|
|
SET_WHEN("core", enable_coredump);
|
|
fprintf(stderr, "unexpected debug option: %.*s\n", len, str);
|
|
}
|
|
}
|
|
#endif
|