Ruby 3.0.5p211 (2022-11-24 revision ba5cf0f7c52d4d35cc6a173c89eda98ceffa2dcf)
|
Go to the source code of this file.
Macros | |
#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 | _RUBY_DEBUG_LOG(fmt, ...) ruby_debug_log(__FILE__, __LINE__, __func__, fmt, __VA_ARGS__) |
#define | RUBY_DEBUG_LOG(fmt, ...) |
#define | RUBY_DEBUG_LOG2(file, line, fmt, ...) |
Enumerations | |
enum | ruby_debug_log_mode { ruby_debug_log_disabled = 0x00 , ruby_debug_log_memory = 0x01 , ruby_debug_log_stderr = 0x02 , ruby_debug_log_file = 0x04 } |
Functions | |
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_gc_check_func (void) |
void | ruby_set_debug_option (const char *str) |
void | ruby_debug_log (const char *file, int line, const char *func_name, const char *fmt,...) |
void | ruby_debug_log_print (unsigned int n) |
bool | ruby_debug_log_filter (const char *func_name) |
Variables | |
enum ruby_debug_log_mode | ruby_debug_log_mode |
#define _RUBY_DEBUG_LOG | ( | fmt, | |
... | |||
) | ruby_debug_log(__FILE__, __LINE__, __func__, fmt, __VA_ARGS__) |
Definition at line 96 of file vm_debug.h.
#define dp | ( | v | ) | ruby_debug_print_value(-1, 0, "", (v)) |
Definition at line 20 of file vm_debug.h.
#define dpi | ( | i | ) | ruby_debug_print_id(-1, 0, "", (i)) |
Definition at line 21 of file vm_debug.h.
#define dpn | ( | n | ) | ruby_debug_print_node(-1, 0, "", (n)) |
Definition at line 22 of file vm_debug.h.
#define dpv | ( | h, | |
v | |||
) | ruby_debug_print_value(-1, 0, (h), (v)) |
Definition at line 19 of file vm_debug.h.
#define RUBY_DEBUG_LOG | ( | fmt, | |
... | |||
) |
Definition at line 112 of file vm_debug.h.
#define RUBY_DEBUG_LOG2 | ( | file, | |
line, | |||
fmt, | |||
... | |||
) |
Definition at line 113 of file vm_debug.h.
enum ruby_debug_log_mode |
Enumerator | |
---|---|
ruby_debug_log_disabled | |
ruby_debug_log_memory | |
ruby_debug_log_stderr | |
ruby_debug_log_file |
Definition at line 83 of file vm_debug.h.
void ruby_debug_gc_check_func | ( | void | ) |
bool ruby_debug_log_filter | ( | const char * | func_name | ) |
void ruby_debug_log_print | ( | unsigned int | n | ) |
Definition at line 138 of file debug.c.
References id, and rb_id2name().
Definition at line 148 of file debug.c.
References nd_line, nd_type, and ruby_node_name().
Definition at line 119 of file debug.c.
References rb_raw_obj_info().
Referenced by ruby_debug_print_v().
void ruby_set_debug_option | ( | const char * | str | ) |
Definition at line 259 of file debug.c.
References ruby_each_words(), setup_debug_log, and str.
Referenced by main().