Ruby 3.5.0dev (2025-01-10 revision 5fab31b15e32622c4b71d1d347a41937e9f9c212)
vm_debug.h (5fab31b15e32622c4b71d1d347a41937e9f9c212)
1#ifndef RUBY_DEBUG_H
2#define RUBY_DEBUG_H
3/**********************************************************************
4
5 vm_debug.h - YARV Debug function interface
6
7 $Author$
8 created at: 04/08/25 02:33:49 JST
9
10 Copyright (C) 2004-2007 Koichi Sasada
11
12**********************************************************************/
13
14#include "ruby/ruby.h"
15
16RUBY_SYMBOL_EXPORT_BEGIN
17
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))
22
23struct RNode;
24
25VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v);
26void ruby_debug_print_v(VALUE v);
27ID ruby_debug_print_id(int level, int debug_level, const char *header, ID id);
28struct RNode *ruby_debug_print_node(int level, int debug_level, const char *header, const struct RNode *node);
29void ruby_debug_print_n(const struct RNode *node);
30int ruby_debug_print_indent(int level, int debug_level, int indent_level);
31void ruby_debug_gc_check_func(void);
32void ruby_set_debug_option(const char *str);
33
34RUBY_SYMBOL_EXPORT_END
35
36#ifndef USE_RUBY_DEBUG_LOG
37#define USE_RUBY_DEBUG_LOG 0
38#endif
39
40/* RUBY_DEBUG_LOG: Logging debug information mechanism
41 *
42 * This feature provides a mechanism to store logging information
43 * to a file, stderr or memory space with simple macros.
44 *
45 * The following information will be stored.
46 * * (1) __FILE__, __LINE__ in C
47 * * (2) __FILE__, __LINE__ in Ruby
48 * * (3) __func__ in C (message title)
49 * * (4) given string with sprintf format
50 * * (5) Thread number (if multiple threads are running)
51 *
52 * This feature is enabled only USE_RUBY_DEBUG_LOG is enabled.
53 * Release version should not enable it.
54 *
55 * Running with the `RUBY_DEBUG_LOG` environment variable enables
56 * this feature.
57 *
58 * # logging into a file
59 * RUBY_DEBUG_LOG=/path/to/file STDERR
60 *
61 * # logging into STDERR
62 * RUBY_DEBUG_LOG=stderr
63 *
64 * # logging into memory space (check with a debugger)
65 * # It will help if the timing is important.
66 * RUBY_DEBUG_LOG=mem
67 *
68 * RUBY_DEBUG_LOG_FILTER environment variable can specify the filter string.
69 * If "(3) __func__ in C (message title)" contains the specified string, the
70 * information will be stored (example: RUBY_DEBUG_LOG_FILTER=str will enable
71 * only on str related information).
72 *
73 * In a MRI source code, you can use the following macros:
74 * * RUBY_DEBUG_LOG(fmt, ...): Above (1) to (4) will be logged.
75 * * RUBY_DEBUG_LOG2(file, line, fmt, ...):
76 * Same as RUBY_DEBUG_LOG(), but (1) will be replaced with given file, line.
77 */
78
79extern enum ruby_debug_log_mode {
80 ruby_debug_log_disabled = 0x00,
81 ruby_debug_log_memory = 0x01,
82 ruby_debug_log_stderr = 0x02,
83 ruby_debug_log_file = 0x04,
84} ruby_debug_log_mode;
85
86RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 4, 5)
87void ruby_debug_log(const char *file, int line, const char *func_name, const char *fmt, ...);
88void ruby_debug_log_print(unsigned int n);
89bool ruby_debug_log_filter(const char *func_name, const char *file_name);
90
91#if RBIMPL_COMPILER_IS(GCC) && defined(__OPTIMIZE__)
92# define ruby_debug_log(...) \
93 RB_GNUC_EXTENSION_BLOCK( \
94 RBIMPL_WARNING_PUSH(); \
95 RBIMPL_WARNING_IGNORED(-Wformat-zero-length); \
96 ruby_debug_log(__VA_ARGS__); \
97 RBIMPL_WARNING_POP())
98#endif
99
100// convenient macro to log even if the USE_RUBY_DEBUG_LOG macro is not specified.
101// You can use this macro for temporary usage (you should not commit it).
102#define _RUBY_DEBUG_LOG(...) ruby_debug_log(__FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__)
103
104#if USE_RUBY_DEBUG_LOG
105# define RUBY_DEBUG_LOG_ENABLED(func_name, file_name) \
106 (ruby_debug_log_mode && ruby_debug_log_filter(func_name, file_name))
107
108#define RUBY_DEBUG_LOG(...) do { \
109 if (RUBY_DEBUG_LOG_ENABLED(RUBY_FUNCTION_NAME_STRING, __FILE__)) \
110 ruby_debug_log(__FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__); \
111} while (0)
112
113#define RUBY_DEBUG_LOG2(file, line, ...) do { \
114 if (RUBY_DEBUG_LOG_ENABLED(RUBY_FUNCTION_NAME_STRING, file)) \
115 ruby_debug_log(file, line, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__); \
116} while (0)
117
118#else // USE_RUBY_DEBUG_LOG
119// do nothing
120#define RUBY_DEBUG_LOG(...)
121#define RUBY_DEBUG_LOG2(file, line, ...)
122#endif // USE_RUBY_DEBUG_LOG
123
124#endif /* RUBY_DEBUG_H */
#define RBIMPL_ATTR_FORMAT(x, y, z)
Wraps (or simulates) __attribute__((format))
Definition format.h:29
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40