* 2022-01-18 [ci skip]
[ruby-80x24.org.git] / vm_debug.h
blobf2c89a193b8d2776a78cc29c472b8a500961f436
1 #ifndef RUBY_DEBUG_H
2 #define RUBY_DEBUG_H
3 /**********************************************************************
5 vm_debug.h - YARV Debug function interface
7 $Author$
8 created at: 04/08/25 02:33:49 JST
10 Copyright (C) 2004-2007 Koichi Sasada
12 **********************************************************************/
14 #include "ruby/ruby.h"
16 RUBY_SYMBOL_EXPORT_BEGIN
18 #define dpv(h,v) ruby_debug_print_value(-1, 0, (h), (v))
19 #define dp(v) ruby_debug_print_value(-1, 0, "", (v))
20 #define dpi(i) ruby_debug_print_id(-1, 0, "", (i))
21 #define dpn(n) ruby_debug_print_node(-1, 0, "", (n))
23 struct RNode;
25 VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v);
26 ID ruby_debug_print_id(int level, int debug_level, const char *header, ID id);
27 struct RNode *ruby_debug_print_node(int level, int debug_level, const char *header, const struct RNode *node);
28 int ruby_debug_print_indent(int level, int debug_level, int indent_level);
29 void ruby_debug_gc_check_func(void);
30 void ruby_set_debug_option(const char *str);
32 RUBY_SYMBOL_EXPORT_END
34 #ifndef USE_RUBY_DEBUG_LOG
35 #define USE_RUBY_DEBUG_LOG 0
36 #endif
38 /* RUBY_DEBUG_LOG: Logging debug information mechanism
40 * This feature provides a mechanism to store logging information
41 * to a file, stderr or memory space with simple macros.
43 * The following information will be stored.
44 * * (1) __FILE__, __LINE__ in C
45 * * (2) __FILE__, __LINE__ in Ruby
46 * * (3) __func__ in C (message title)
47 * * (4) given string with sprintf format
48 * * (5) Thread number (if multiple threads are running)
50 * This feature is enabled only USE_RUBY_DEBUG_LOG is enabled.
51 * Release version should not enable it.
53 * Running with the `RUBY_DEBUG_LOG` environment variable enables
54 * this feature.
56 * # logging into a file
57 * RUBY_DEBUG_LOG=/path/to/file STDERR
59 * # logging into STDERR
60 * RUBY_DEBUG_LOG=stderr
62 * # logging into memory space (check with a debugger)
63 * # It will help if the timing is important.
64 * RUBY_DEBUG_LOG=mem
66 * RUBY_DEBUG_LOG_FILTER environment variable can specify the filter string.
67 * If "(3) __func__ in C (message title)" contains the specified string, the
68 * information will be stored (example: RUBY_DEBUG_LOG_FILTER=str will enable
69 * only on str related information).
71 * In a MRI source code, you can use the following macros:
72 * * RUBY_DEBUG_LOG(fmt, ...): Above (1) to (4) will be logged.
73 * * RUBY_DEBUG_LOG2(file, line, fmt, ...):
74 * Same as RUBY_DEBUG_LOG(), but (1) will be replaced with given file, line.
77 extern enum ruby_debug_log_mode {
78 ruby_debug_log_disabled = 0x00,
79 ruby_debug_log_memory = 0x01,
80 ruby_debug_log_stderr = 0x02,
81 ruby_debug_log_file = 0x04,
82 } ruby_debug_log_mode;
84 RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 4, 5)
85 void ruby_debug_log(const char *file, int line, const char *func_name, const char *fmt, ...);
86 void ruby_debug_log_print(unsigned int n);
87 bool ruby_debug_log_filter(const char *func_name);
89 // convenient macro to log even if the USE_RUBY_DEBUG_LOG macro is not specified.
90 // You can use this macro for temporary usage (you should not commit it).
91 #define _RUBY_DEBUG_LOG(...) ruby_debug_log(__FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__)
93 #if USE_RUBY_DEBUG_LOG
94 # define RUBY_DEBUG_LOG_ENABLED(func_name) \
95 (ruby_debug_log_mode && ruby_debug_log_filter(func_name))
97 #define RUBY_DEBUG_LOG(...) do { \
98 if (RUBY_DEBUG_LOG_ENABLED(RUBY_FUNCTION_NAME_STRING)) \
99 ruby_debug_log(__FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__); \
100 } while (0)
102 #define RUBY_DEBUG_LOG2(file, line, ...) do { \
103 if (RUBY_DEBUG_LOG_ENABLED(RUBY_FUNCTION_NAME_STRING)) \
104 ruby_debug_log(file, line, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__); \
105 } while (0)
107 #else // USE_RUBY_DEBUG_LOG
108 // do nothing
109 #define RUBY_DEBUG_LOG(...)
110 #define RUBY_DEBUG_LOG2(file, line, ...)
111 #endif // USE_RUBY_DEBUG_LOG
113 #endif /* RUBY_DEBUG_H */