Sha256: 6ab259cce3cbdc5d2108793663da74418c3cf4395afc4a7467966752c71d389d

Contents?: true

Size: 1.14 KB

Versions: 35

Compression:

Stored size: 1.14 KB

Contents

/**********************************************************************

  vm_debug.h - YARV Debug function interface

  $Author$
  created at: 04/08/25 02:33:49 JST

  Copyright (C) 2004-2007 Koichi Sasada

**********************************************************************/

#ifndef RUBY_DEBUG_H
#define RUBY_DEBUG_H

#include "ruby/ruby.h"
#include "node.h"

RUBY_SYMBOL_EXPORT_BEGIN

#define dpv(h,v) ruby_debug_print_value(-1, 0, (h), (v))
#define dp(v)    ruby_debug_print_value(-1, 0, "", (v))
#define dpi(i)   ruby_debug_print_id(-1, 0, "", (i))
#define dpn(n)   ruby_debug_print_node(-1, 0, "", (n))

#define bp()     ruby_debug_breakpoint()

VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v);
ID    ruby_debug_print_id(int level, int debug_level, const char *header, ID id);
NODE *ruby_debug_print_node(int level, int debug_level, const char *header, const NODE *node);
int   ruby_debug_print_indent(int level, int debug_level, int indent_level);
void  ruby_debug_breakpoint(void);
void  ruby_debug_gc_check_func(void);
void ruby_set_debug_option(const char *str);

RUBY_SYMBOL_EXPORT_END

#endif /* RUBY_DEBUG_H */

Version data entries

35 entries across 17 versions & 4 rubygems

Version Path
rhodes-7.6.0 platform/shared/ruby/vm_debug.h
rhodes-7.5.1 platform/shared/ruby/vm_debug.h
rhodes-7.4.1 platform/shared/ruby/vm_debug.h
rhodes-7.1.17 platform/shared/ruby/vm_debug.h
rhodes-6.2.0 platform/shared/ruby/vm_debug.h
rhodes-6.0.11 platform/shared/ruby/vm_debug.h
llrb-0.0.1 ext/llrb/cruby/vm_debug.h
bindex-0.2.0 ext/bindex/ruby_21/vm_debug.h
bindex-0.2.0 ext/bindex/ruby_21preview/vm_debug.h
bindex-0.1.1 ext/bindex/ruby_21preview/vm_debug.h
bindex-0.1.1 ext/bindex/ruby_21/vm_debug.h
bindex-0.1.0 ext/bindex/ruby_21/vm_debug.h
bindex-0.1.0 ext/bindex/ruby_21preview/vm_debug.h
did_you_mean-0.9.2 ext/did_you_mean/ruby_headers/220/vm_debug.h
did_you_mean-0.9.2 ext/did_you_mean/ruby_headers/210/vm_debug.h
did_you_mean-0.9.2 ext/did_you_mean/ruby_headers/211/vm_debug.h
did_you_mean-0.9.2 ext/did_you_mean/ruby_headers/212/vm_debug.h
did_you_mean-0.9.2 ext/did_you_mean/ruby_headers/213/vm_debug.h
did_you_mean-0.9.2 ext/did_you_mean/ruby_headers/214/vm_debug.h
did_you_mean-0.9.2 ext/did_you_mean/ruby_headers/215/vm_debug.h