debase-ruby_core_source 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (118) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +5 -0
  4. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/addr2line.h +20 -0
  5. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/builtin.h +117 -0
  6. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/build_assert/build_assert.h +40 -0
  7. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/check_type/check_type.h +63 -0
  8. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/container_of/container_of.h +142 -0
  9. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/list/list.h +789 -0
  10. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/str/str.h +17 -0
  11. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/constant.h +53 -0
  12. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/darray.h +179 -0
  13. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/debug_counter.h +426 -0
  14. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/dln.h +31 -0
  15. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/encindex.h +70 -0
  16. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/eval_intern.h +339 -0
  17. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/hrtime.h +227 -0
  18. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/id.h +299 -0
  19. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/id_table.h +39 -0
  20. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/insns.inc +249 -0
  21. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/insns_info.inc +9159 -0
  22. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/array.h +162 -0
  23. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/basic_operators.h +63 -0
  24. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/bignum.h +244 -0
  25. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/bits.h +564 -0
  26. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/class.h +221 -0
  27. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/cmdlineopt.h +61 -0
  28. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compar.h +29 -0
  29. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compile.h +35 -0
  30. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compilers.h +107 -0
  31. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/complex.h +29 -0
  32. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/cont.h +32 -0
  33. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/dir.h +16 -0
  34. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enc.h +19 -0
  35. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/encoding.h +32 -0
  36. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enum.h +18 -0
  37. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enumerator.h +21 -0
  38. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/error.h +191 -0
  39. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/eval.h +32 -0
  40. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/file.h +38 -0
  41. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/fixnum.h +184 -0
  42. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/gc.h +333 -0
  43. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/hash.h +216 -0
  44. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/imemo.h +241 -0
  45. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/inits.h +50 -0
  46. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/io.h +38 -0
  47. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/load.h +18 -0
  48. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/loadpath.h +16 -0
  49. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/math.h +23 -0
  50. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/missing.h +18 -0
  51. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/numeric.h +273 -0
  52. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/object.h +59 -0
  53. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/parse.h +25 -0
  54. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/proc.h +30 -0
  55. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/process.h +138 -0
  56. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/ractor.h +6 -0
  57. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/random.h +16 -0
  58. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/range.h +40 -0
  59. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/rational.h +71 -0
  60. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/re.h +28 -0
  61. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/sanitizers.h +186 -0
  62. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/serial.h +23 -0
  63. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/signal.h +21 -0
  64. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/static_assert.h +16 -0
  65. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/string.h +145 -0
  66. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/struct.h +152 -0
  67. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/symbol.h +42 -0
  68. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/thread.h +61 -0
  69. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/time.h +34 -0
  70. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/transcode.h +20 -0
  71. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/util.h +27 -0
  72. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/variable.h +88 -0
  73. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/vm.h +124 -0
  74. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/warnings.h +16 -0
  75. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal.h +112 -0
  76. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/iseq.h +334 -0
  77. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/known_errors.inc +791 -0
  78. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/method.h +254 -0
  79. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/node.h +514 -0
  80. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/node_name.inc +210 -0
  81. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/opt_sc.inc +109 -0
  82. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/optinsn.inc +128 -0
  83. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/optunifs.inc +43 -0
  84. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/parse.h +230 -0
  85. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/probes_helper.h +42 -0
  86. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ractor_core.h +387 -0
  87. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regenc.h +254 -0
  88. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regint.h +996 -0
  89. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regparse.h +370 -0
  90. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/revision.h +5 -0
  91. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/rjit.h +103 -0
  92. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/rjit_c.h +165 -0
  93. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ruby_assert.h +14 -0
  94. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ruby_atomic.h +23 -0
  95. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/shape.h +232 -0
  96. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/siphash.h +48 -0
  97. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/symbol.h +119 -0
  98. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_none.h +20 -0
  99. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_pthread.h +128 -0
  100. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_win32.h +63 -0
  101. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/timev.h +58 -0
  102. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/transcode_data.h +138 -0
  103. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/transient_heap.h +65 -0
  104. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/variable.h +30 -0
  105. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/version.h +65 -0
  106. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm.inc +5497 -0
  107. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_call_iseq_optimized.inc +244 -0
  108. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_callinfo.h +574 -0
  109. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_core.h +2107 -0
  110. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_debug.h +122 -0
  111. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_exec.h +198 -0
  112. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_insnhelper.h +274 -0
  113. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_opts.h +72 -0
  114. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_sync.h +137 -0
  115. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vmtc.inc +243 -0
  116. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/yjit.h +72 -0
  117. data/lib/debase/ruby_core_source/version.rb +1 -1
  118. metadata +116 -3
@@ -0,0 +1,122 @@
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
+
16
+ RUBY_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
+
23
+ struct RNode;
24
+
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);
31
+
32
+ RUBY_SYMBOL_EXPORT_END
33
+
34
+ #ifndef USE_RUBY_DEBUG_LOG
35
+ #define USE_RUBY_DEBUG_LOG 0
36
+ #endif
37
+
38
+ /* RUBY_DEBUG_LOG: Logging debug information mechanism
39
+ *
40
+ * This feature provides a mechanism to store logging information
41
+ * to a file, stderr or memory space with simple macros.
42
+ *
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)
49
+ *
50
+ * This feature is enabled only USE_RUBY_DEBUG_LOG is enabled.
51
+ * Release version should not enable it.
52
+ *
53
+ * Running with the `RUBY_DEBUG_LOG` environment variable enables
54
+ * this feature.
55
+ *
56
+ * # logging into a file
57
+ * RUBY_DEBUG_LOG=/path/to/file STDERR
58
+ *
59
+ * # logging into STDERR
60
+ * RUBY_DEBUG_LOG=stderr
61
+ *
62
+ * # logging into memory space (check with a debugger)
63
+ * # It will help if the timing is important.
64
+ * RUBY_DEBUG_LOG=mem
65
+ *
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).
70
+ *
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.
75
+ */
76
+
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;
83
+
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, const char *file_name);
88
+
89
+ #if RBIMPL_COMPILER_IS(GCC) && defined(__OPTIMIZE__)
90
+ # define ruby_debug_log(...) \
91
+ RB_GNUC_EXTENSION_BLOCK( \
92
+ RBIMPL_WARNING_PUSH(); \
93
+ RBIMPL_WARNING_IGNORED(-Wformat-zero-length); \
94
+ ruby_debug_log(__VA_ARGS__); \
95
+ RBIMPL_WARNING_POP())
96
+ #endif
97
+
98
+ // convenient macro to log even if the USE_RUBY_DEBUG_LOG macro is not specified.
99
+ // You can use this macro for temporary usage (you should not commit it).
100
+ #define _RUBY_DEBUG_LOG(...) ruby_debug_log(__FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__)
101
+
102
+ #if USE_RUBY_DEBUG_LOG
103
+ # define RUBY_DEBUG_LOG_ENABLED(func_name, file_name) \
104
+ (ruby_debug_log_mode && ruby_debug_log_filter(func_name, file_name))
105
+
106
+ #define RUBY_DEBUG_LOG(...) do { \
107
+ if (RUBY_DEBUG_LOG_ENABLED(RUBY_FUNCTION_NAME_STRING, __FILE__)) \
108
+ ruby_debug_log(__FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__); \
109
+ } while (0)
110
+
111
+ #define RUBY_DEBUG_LOG2(file, line, ...) do { \
112
+ if (RUBY_DEBUG_LOG_ENABLED(RUBY_FUNCTION_NAME_STRING, file)) \
113
+ ruby_debug_log(file, line, RUBY_FUNCTION_NAME_STRING, "" __VA_ARGS__); \
114
+ } while (0)
115
+
116
+ #else // USE_RUBY_DEBUG_LOG
117
+ // do nothing
118
+ #define RUBY_DEBUG_LOG(...)
119
+ #define RUBY_DEBUG_LOG2(file, line, ...)
120
+ #endif // USE_RUBY_DEBUG_LOG
121
+
122
+ #endif /* RUBY_DEBUG_H */
@@ -0,0 +1,198 @@
1
+ #ifndef RUBY_VM_EXEC_H
2
+ #define RUBY_VM_EXEC_H
3
+ /**********************************************************************
4
+
5
+ vm.h -
6
+
7
+ $Author$
8
+ created at: 04/01/01 16:56:59 JST
9
+
10
+ Copyright (C) 2004-2007 Koichi Sasada
11
+
12
+ **********************************************************************/
13
+
14
+ typedef long OFFSET;
15
+ typedef unsigned long lindex_t;
16
+ typedef VALUE GENTRY;
17
+ typedef rb_iseq_t *ISEQ;
18
+
19
+ #if VMDEBUG > 0
20
+ #define debugs printf
21
+ #define DEBUG_ENTER_INSN(insn) \
22
+ rb_vmdebug_debug_print_pre(ec, GET_CFP(), GET_PC());
23
+
24
+ #if OPT_STACK_CACHING
25
+ #define SC_REGS() , reg_a, reg_b
26
+ #else
27
+ #define SC_REGS()
28
+ #endif
29
+
30
+ #define DEBUG_END_INSN() \
31
+ rb_vmdebug_debug_print_post(ec, GET_CFP() SC_REGS());
32
+
33
+ #else
34
+
35
+ #define debugs
36
+ #define DEBUG_ENTER_INSN(insn)
37
+ #define DEBUG_END_INSN()
38
+ #endif
39
+
40
+ #define throwdebug if(0)ruby_debug_printf
41
+ /* #define throwdebug ruby_debug_printf */
42
+
43
+ #ifndef USE_INSNS_COUNTER
44
+ #define USE_INSNS_COUNTER 0
45
+ #endif
46
+
47
+ /************************************************/
48
+ #if defined(DISPATCH_XXX)
49
+ error !
50
+ /************************************************/
51
+ #elif OPT_CALL_THREADED_CODE
52
+
53
+ #define LABEL(x) insn_func_##x
54
+ #define ELABEL(x)
55
+ #define LABEL_PTR(x) &LABEL(x)
56
+
57
+ #define INSN_ENTRY(insn) \
58
+ static rb_control_frame_t * \
59
+ FUNC_FASTCALL(LABEL(insn))(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp) {
60
+
61
+ #define END_INSN(insn) return reg_cfp;}
62
+
63
+ #define NEXT_INSN() return reg_cfp;
64
+
65
+ #define START_OF_ORIGINAL_INSN(x) /* ignore */
66
+ #define DISPATCH_ORIGINAL_INSN(x) return LABEL(x)(ec, reg_cfp);
67
+
68
+ /************************************************/
69
+ #elif OPT_TOKEN_THREADED_CODE || OPT_DIRECT_THREADED_CODE
70
+ /* threaded code with gcc */
71
+
72
+ #define LABEL(x) INSN_LABEL_##x
73
+ #define ELABEL(x) INSN_ELABEL_##x
74
+ #define LABEL_PTR(x) RB_GNUC_EXTENSION(&&LABEL(x))
75
+
76
+ #define INSN_ENTRY_SIG(insn) \
77
+ if (0) { \
78
+ ruby_debug_printf("exec: %s@(%"PRIdPTRDIFF", %"PRIdPTRDIFF")@%s:%u\n", #insn, \
79
+ (reg_pc - ISEQ_BODY(reg_cfp->iseq)->iseq_encoded), \
80
+ (reg_cfp->pc - ISEQ_BODY(reg_cfp->iseq)->iseq_encoded), \
81
+ RSTRING_PTR(rb_iseq_path(reg_cfp->iseq)), \
82
+ rb_iseq_line_no(reg_cfp->iseq, reg_pc - ISEQ_BODY(reg_cfp->iseq)->iseq_encoded)); \
83
+ } \
84
+ if (USE_INSNS_COUNTER) vm_insns_counter_count_insn(BIN(insn));
85
+
86
+ #define INSN_DISPATCH_SIG(insn)
87
+
88
+ #define INSN_ENTRY(insn) \
89
+ LABEL(insn): \
90
+ INSN_ENTRY_SIG(insn); \
91
+
92
+ /**********************************/
93
+ #if OPT_DIRECT_THREADED_CODE
94
+
95
+ /* for GCC 3.4.x */
96
+ #define TC_DISPATCH(insn) \
97
+ INSN_DISPATCH_SIG(insn); \
98
+ RB_GNUC_EXTENSION_BLOCK(goto *(void const *)GET_CURRENT_INSN()); \
99
+ ;
100
+
101
+ #else
102
+ /* token threaded code */
103
+
104
+ /* dispatcher */
105
+ #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && __GNUC__ == 3
106
+ #define DISPATCH_ARCH_DEPEND_WAY(addr) \
107
+ __asm__ __volatile__("jmp *%0;\t# -- inserted by vm.h\t[length = 2]" : : "r" (addr))
108
+
109
+ #else
110
+ #define DISPATCH_ARCH_DEPEND_WAY(addr) \
111
+ /* do nothing */
112
+ #endif
113
+ #define TC_DISPATCH(insn) \
114
+ DISPATCH_ARCH_DEPEND_WAY(insns_address_table[GET_CURRENT_INSN()]); \
115
+ INSN_DISPATCH_SIG(insn); \
116
+ RB_GNUC_EXTENSION_BLOCK(goto *insns_address_table[GET_CURRENT_INSN()]); \
117
+ rb_bug("tc error");
118
+
119
+ #endif /* OPT_DIRECT_THREADED_CODE */
120
+
121
+ #define END_INSN(insn) \
122
+ DEBUG_END_INSN(); \
123
+ TC_DISPATCH(insn);
124
+
125
+ #define INSN_DISPATCH() \
126
+ TC_DISPATCH(__START__) \
127
+ {
128
+
129
+ #define END_INSNS_DISPATCH() \
130
+ rb_bug("unknown insn: %"PRIdVALUE, GET_CURRENT_INSN()); \
131
+ } /* end of while loop */ \
132
+
133
+ #define NEXT_INSN() TC_DISPATCH(__NEXT_INSN__)
134
+
135
+ /************************************************/
136
+ #else /* no threaded code */
137
+ /* most common method */
138
+
139
+ #define INSN_ENTRY(insn) \
140
+ case BIN(insn):
141
+
142
+ #define END_INSN(insn) \
143
+ DEBUG_END_INSN(); \
144
+ break;
145
+
146
+ #define INSN_DISPATCH() \
147
+ while (1) { \
148
+ switch (GET_CURRENT_INSN()) {
149
+
150
+ #define END_INSNS_DISPATCH() \
151
+ default: \
152
+ SDR(); \
153
+ rb_bug("unknown insn: %ld", GET_CURRENT_INSN()); \
154
+ } /* end of switch */ \
155
+ } /* end of while loop */ \
156
+
157
+ #define NEXT_INSN() goto first
158
+
159
+ #endif
160
+
161
+ #ifndef START_OF_ORIGINAL_INSN
162
+ #define START_OF_ORIGINAL_INSN(x) if (0) goto start_of_##x; start_of_##x:
163
+ #define DISPATCH_ORIGINAL_INSN(x) goto start_of_##x;
164
+ #endif
165
+
166
+ #define VM_SP_CNT(ec, sp) ((sp) - (ec)->vm_stack)
167
+
168
+ #if OPT_CALL_THREADED_CODE
169
+ #define THROW_EXCEPTION(exc) do { \
170
+ ec->errinfo = (VALUE)(exc); \
171
+ return 0; \
172
+ } while (0)
173
+ #else
174
+ #define THROW_EXCEPTION(exc) return (VALUE)(exc)
175
+ #endif
176
+
177
+ #define JIT_EXEC(ec, val) do { \
178
+ rb_jit_func_t func; \
179
+ if (val == Qundef && (func = jit_compile(ec))) { \
180
+ val = func(ec, ec->cfp); \
181
+ if (ec->tag->state) THROW_EXCEPTION(val); \
182
+ } \
183
+ } while (0)
184
+
185
+ #define SCREG(r) (reg_##r)
186
+
187
+ #define VM_DEBUG_STACKOVERFLOW 0
188
+
189
+ #if VM_DEBUG_STACKOVERFLOW
190
+ #define CHECK_VM_STACK_OVERFLOW_FOR_INSN CHECK_VM_STACK_OVERFLOW
191
+ #else
192
+ #define CHECK_VM_STACK_OVERFLOW_FOR_INSN(cfp, margin)
193
+ #endif
194
+
195
+ #define INSN_LABEL2(insn, name) INSN_LABEL_ ## insn ## _ ## name
196
+ #define INSN_LABEL(x) INSN_LABEL2(NAME_OF_CURRENT_INSN, x)
197
+
198
+ #endif /* RUBY_VM_EXEC_H */
@@ -0,0 +1,274 @@
1
+ #ifndef RUBY_INSNHELPER_H
2
+ #define RUBY_INSNHELPER_H
3
+ /**********************************************************************
4
+
5
+ insnhelper.h - helper macros to implement each instructions
6
+
7
+ $Author$
8
+ created at: 04/01/01 15:50:34 JST
9
+
10
+ Copyright (C) 2004-2007 Koichi Sasada
11
+
12
+ **********************************************************************/
13
+
14
+ RUBY_EXTERN VALUE ruby_vm_const_missing_count;
15
+ RUBY_EXTERN rb_serial_t ruby_vm_constant_cache_invalidations;
16
+ RUBY_EXTERN rb_serial_t ruby_vm_constant_cache_misses;
17
+ RUBY_EXTERN rb_serial_t ruby_vm_global_cvar_state;
18
+
19
+ #ifndef RJIT_STATS
20
+ # define RJIT_STATS RUBY_DEBUG
21
+ #endif
22
+
23
+ #if VM_COLLECT_USAGE_DETAILS
24
+ #define COLLECT_USAGE_INSN(insn) vm_collect_usage_insn(insn)
25
+ #define COLLECT_USAGE_OPERAND(insn, n, op) vm_collect_usage_operand((insn), (n), ((VALUE)(op)))
26
+
27
+ #define COLLECT_USAGE_REGISTER(reg, s) vm_collect_usage_register((reg), (s))
28
+ #elif RJIT_STATS && YJIT_STATS
29
+ // Both flags could be enabled at the same time. You need to call both in that case.
30
+ #define COLLECT_USAGE_INSN(insn) rb_rjit_collect_vm_usage_insn(insn); rb_yjit_collect_vm_usage_insn(insn)
31
+ #define COLLECT_USAGE_OPERAND(insn, n, op) /* none */
32
+ #define COLLECT_USAGE_REGISTER(reg, s) /* none */
33
+ #elif RJIT_STATS
34
+ // for --rjit-stats
35
+ #define COLLECT_USAGE_INSN(insn) rb_rjit_collect_vm_usage_insn(insn)
36
+ #define COLLECT_USAGE_OPERAND(insn, n, op) /* none */
37
+ #define COLLECT_USAGE_REGISTER(reg, s) /* none */
38
+ #elif YJIT_STATS
39
+ /* for --yjit-stats */
40
+ #define COLLECT_USAGE_INSN(insn) rb_yjit_collect_vm_usage_insn(insn)
41
+ #define COLLECT_USAGE_OPERAND(insn, n, op) /* none */
42
+ #define COLLECT_USAGE_REGISTER(reg, s) /* none */
43
+ #else
44
+ #define COLLECT_USAGE_INSN(insn) /* none */
45
+ #define COLLECT_USAGE_OPERAND(insn, n, op) /* none */
46
+ #define COLLECT_USAGE_REGISTER(reg, s) /* none */
47
+ #endif
48
+
49
+ /**********************************************************/
50
+ /* deal with stack */
51
+ /**********************************************************/
52
+
53
+ #define PUSH(x) (SET_SV(x), INC_SP(1))
54
+ #define TOPN(n) (*(GET_SP()-(n)-1))
55
+ #define POPN(n) (DEC_SP(n))
56
+ #define POP() (DEC_SP(1))
57
+ #define STACK_ADDR_FROM_TOP(n) (GET_SP()-(n))
58
+
59
+ /**********************************************************/
60
+ /* deal with registers */
61
+ /**********************************************************/
62
+
63
+ #define VM_REG_CFP (reg_cfp)
64
+ #define VM_REG_PC (VM_REG_CFP->pc)
65
+ #define VM_REG_SP (VM_REG_CFP->sp)
66
+ #define VM_REG_EP (VM_REG_CFP->ep)
67
+
68
+ #define RESTORE_REGS() do { \
69
+ VM_REG_CFP = ec->cfp; \
70
+ } while (0)
71
+
72
+ #if VM_COLLECT_USAGE_DETAILS
73
+ enum vm_regan_regtype {
74
+ VM_REGAN_PC = 0,
75
+ VM_REGAN_SP = 1,
76
+ VM_REGAN_EP = 2,
77
+ VM_REGAN_CFP = 3,
78
+ VM_REGAN_SELF = 4,
79
+ VM_REGAN_ISEQ = 5
80
+ };
81
+ enum vm_regan_acttype {
82
+ VM_REGAN_ACT_GET = 0,
83
+ VM_REGAN_ACT_SET = 1
84
+ };
85
+
86
+ #define COLLECT_USAGE_REGISTER_HELPER(a, b, v) \
87
+ (COLLECT_USAGE_REGISTER((VM_REGAN_##a), (VM_REGAN_ACT_##b)), (v))
88
+ #else
89
+ #define COLLECT_USAGE_REGISTER_HELPER(a, b, v) (v)
90
+ #endif
91
+
92
+ /* PC */
93
+ #define GET_PC() (COLLECT_USAGE_REGISTER_HELPER(PC, GET, VM_REG_PC))
94
+ #define SET_PC(x) (VM_REG_PC = (COLLECT_USAGE_REGISTER_HELPER(PC, SET, (x))))
95
+ #define GET_CURRENT_INSN() (*GET_PC())
96
+ #define GET_OPERAND(n) (GET_PC()[(n)])
97
+ #define ADD_PC(n) (SET_PC(VM_REG_PC + (n)))
98
+ #define JUMP(dst) (SET_PC(VM_REG_PC + (dst)))
99
+
100
+ /* frame pointer, environment pointer */
101
+ #define GET_CFP() (COLLECT_USAGE_REGISTER_HELPER(CFP, GET, VM_REG_CFP))
102
+ #define GET_EP() (COLLECT_USAGE_REGISTER_HELPER(EP, GET, VM_REG_EP))
103
+ #define SET_EP(x) (VM_REG_EP = (COLLECT_USAGE_REGISTER_HELPER(EP, SET, (x))))
104
+ #define GET_LEP() (VM_EP_LEP(GET_EP()))
105
+
106
+ /* SP */
107
+ #define GET_SP() (COLLECT_USAGE_REGISTER_HELPER(SP, GET, VM_REG_SP))
108
+ #define SET_SP(x) (VM_REG_SP = (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
109
+ #define INC_SP(x) (VM_REG_SP += (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
110
+ #define DEC_SP(x) (VM_REG_SP -= (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
111
+ #define SET_SV(x) (*GET_SP() = rb_ractor_confirm_belonging(x))
112
+ /* set current stack value as x */
113
+
114
+ /* instruction sequence C struct */
115
+ #define GET_ISEQ() (GET_CFP()->iseq)
116
+
117
+ /**********************************************************/
118
+ /* deal with variables */
119
+ /**********************************************************/
120
+
121
+ #define GET_PREV_EP(ep) ((VALUE *)((ep)[VM_ENV_DATA_INDEX_SPECVAL] & ~0x03))
122
+
123
+ /**********************************************************/
124
+ /* deal with values */
125
+ /**********************************************************/
126
+
127
+ #define GET_SELF() (COLLECT_USAGE_REGISTER_HELPER(SELF, GET, GET_CFP()->self))
128
+
129
+ /**********************************************************/
130
+ /* deal with control flow 2: method/iterator */
131
+ /**********************************************************/
132
+
133
+ /* set fastpath when cached method is *NOT* protected
134
+ * because inline method cache does not care about receiver.
135
+ */
136
+
137
+ static inline void
138
+ CC_SET_FASTPATH(const struct rb_callcache *cc, vm_call_handler func, bool enabled)
139
+ {
140
+ if (LIKELY(enabled)) {
141
+ vm_cc_call_set(cc, func);
142
+ }
143
+ }
144
+
145
+ #define GET_BLOCK_HANDLER() (GET_LEP()[VM_ENV_DATA_INDEX_SPECVAL])
146
+
147
+ /**********************************************************/
148
+ /* deal with control flow 3: exception */
149
+ /**********************************************************/
150
+
151
+
152
+ /**********************************************************/
153
+ /* deal with stack canary */
154
+ /**********************************************************/
155
+
156
+ #if VM_CHECK_MODE > 0
157
+ #define SETUP_CANARY(cond) \
158
+ VALUE *canary = 0; \
159
+ if (cond) { \
160
+ canary = GET_SP(); \
161
+ SET_SV(vm_stack_canary); \
162
+ } \
163
+ else {\
164
+ SET_SV(Qfalse); /* cleanup */ \
165
+ }
166
+ #define CHECK_CANARY(cond, insn) \
167
+ if (cond) { \
168
+ if (*canary == vm_stack_canary) { \
169
+ *canary = Qfalse; /* cleanup */ \
170
+ } \
171
+ else { \
172
+ rb_vm_canary_is_found_dead(insn, *canary); \
173
+ } \
174
+ }
175
+ #else
176
+ #define SETUP_CANARY(cond) if (cond) {} else {}
177
+ #define CHECK_CANARY(cond, insn) if (cond) {(void)(insn);}
178
+ #endif
179
+
180
+ /**********************************************************/
181
+ /* others */
182
+ /**********************************************************/
183
+
184
+ #define CALL_SIMPLE_METHOD() do { \
185
+ rb_snum_t x = leaf ? INSN_ATTR(width) : 0; \
186
+ rb_snum_t y = attr_width_opt_send_without_block(0); \
187
+ rb_snum_t z = x - y; \
188
+ ADD_PC(z); \
189
+ DISPATCH_ORIGINAL_INSN(opt_send_without_block); \
190
+ } while (0)
191
+
192
+ #define GET_GLOBAL_CVAR_STATE() (ruby_vm_global_cvar_state)
193
+ #define INC_GLOBAL_CVAR_STATE() (++ruby_vm_global_cvar_state)
194
+
195
+ static inline struct vm_throw_data *
196
+ THROW_DATA_NEW(VALUE val, const rb_control_frame_t *cf, int st)
197
+ {
198
+ struct vm_throw_data *obj = (struct vm_throw_data *)rb_imemo_new(imemo_throw_data, val, (VALUE)cf, 0, 0);
199
+ obj->throw_state = st;
200
+ return obj;
201
+ }
202
+
203
+ static inline VALUE
204
+ THROW_DATA_VAL(const struct vm_throw_data *obj)
205
+ {
206
+ VM_ASSERT(THROW_DATA_P(obj));
207
+ return obj->throw_obj;
208
+ }
209
+
210
+ static inline const rb_control_frame_t *
211
+ THROW_DATA_CATCH_FRAME(const struct vm_throw_data *obj)
212
+ {
213
+ VM_ASSERT(THROW_DATA_P(obj));
214
+ return obj->catch_frame;
215
+ }
216
+
217
+ static inline int
218
+ THROW_DATA_STATE(const struct vm_throw_data *obj)
219
+ {
220
+ VM_ASSERT(THROW_DATA_P(obj));
221
+ return obj->throw_state;
222
+ }
223
+
224
+ static inline int
225
+ THROW_DATA_CONSUMED_P(const struct vm_throw_data *obj)
226
+ {
227
+ VM_ASSERT(THROW_DATA_P(obj));
228
+ return obj->flags & THROW_DATA_CONSUMED;
229
+ }
230
+
231
+ static inline void
232
+ THROW_DATA_CATCH_FRAME_SET(struct vm_throw_data *obj, const rb_control_frame_t *cfp)
233
+ {
234
+ VM_ASSERT(THROW_DATA_P(obj));
235
+ obj->catch_frame = cfp;
236
+ }
237
+
238
+ static inline void
239
+ THROW_DATA_STATE_SET(struct vm_throw_data *obj, int st)
240
+ {
241
+ VM_ASSERT(THROW_DATA_P(obj));
242
+ obj->throw_state = st;
243
+ }
244
+
245
+ static inline void
246
+ THROW_DATA_CONSUMED_SET(struct vm_throw_data *obj)
247
+ {
248
+ if (THROW_DATA_P(obj) &&
249
+ THROW_DATA_STATE(obj) == TAG_BREAK) {
250
+ obj->flags |= THROW_DATA_CONSUMED;
251
+ }
252
+ }
253
+
254
+ #define IS_ARGS_SPLAT(ci) (vm_ci_flag(ci) & VM_CALL_ARGS_SPLAT)
255
+ #define IS_ARGS_KEYWORD(ci) (vm_ci_flag(ci) & VM_CALL_KWARG)
256
+ #define IS_ARGS_KW_SPLAT(ci) (vm_ci_flag(ci) & VM_CALL_KW_SPLAT)
257
+ #define IS_ARGS_KW_OR_KW_SPLAT(ci) (vm_ci_flag(ci) & (VM_CALL_KWARG | VM_CALL_KW_SPLAT))
258
+ #define IS_ARGS_KW_SPLAT_MUT(ci) (vm_ci_flag(ci) & VM_CALL_KW_SPLAT_MUT)
259
+
260
+ static inline bool
261
+ vm_call_cacheable(const struct rb_callinfo *ci, const struct rb_callcache *cc)
262
+ {
263
+ return (vm_ci_flag(ci) & VM_CALL_FCALL) ||
264
+ METHOD_ENTRY_VISI(vm_cc_cme(cc)) != METHOD_VISI_PROTECTED;
265
+ }
266
+ /* If this returns true, an optimized function returned by `vm_call_iseq_setup_func`
267
+ can be used as a fastpath. */
268
+ static inline bool
269
+ vm_call_iseq_optimizable_p(const struct rb_callinfo *ci, const struct rb_callcache *cc)
270
+ {
271
+ return !IS_ARGS_SPLAT(ci) && !IS_ARGS_KEYWORD(ci) && vm_call_cacheable(ci, cc);
272
+ }
273
+
274
+ #endif /* RUBY_INSNHELPER_H */
@@ -0,0 +1,72 @@
1
+ #ifndef RUBY_VM_OPTS_H/*-*-c-*-*/
2
+ #define RUBY_VM_OPTS_H
3
+ /**********************************************************************
4
+
5
+ vm_opts.h - VM optimize option
6
+
7
+ $Author$
8
+
9
+ Copyright (C) 2004-2007 Koichi Sasada
10
+
11
+ **********************************************************************/
12
+
13
+ /* Compile options.
14
+ * You can change these options at runtime by VM::CompileOption.
15
+ * Following definitions are default values.
16
+ */
17
+
18
+ #define OPT_TAILCALL_OPTIMIZATION 0
19
+ #define OPT_PEEPHOLE_OPTIMIZATION 1
20
+ #define OPT_SPECIALISED_INSTRUCTION 1
21
+ #define OPT_INLINE_CONST_CACHE 1
22
+ #define OPT_FROZEN_STRING_LITERAL 0
23
+ #define OPT_DEBUG_FROZEN_STRING_LITERAL 0
24
+
25
+ /* Build Options.
26
+ * You can't change these options at runtime.
27
+ */
28
+
29
+ /* C compiler dependent */
30
+
31
+ /*
32
+ * 0: direct (using labeled goto using GCC special)
33
+ * 1: token (switch/case)
34
+ * 2: call (function call for each insn dispatch)
35
+ */
36
+ #ifndef OPT_THREADED_CODE
37
+ #define OPT_THREADED_CODE 0
38
+ #endif
39
+
40
+ #define OPT_DIRECT_THREADED_CODE (OPT_THREADED_CODE == 0)
41
+ #define OPT_TOKEN_THREADED_CODE (OPT_THREADED_CODE == 1)
42
+ #define OPT_CALL_THREADED_CODE (OPT_THREADED_CODE == 2)
43
+
44
+ /* VM running option */
45
+ #define OPT_CHECKED_RUN 1
46
+ #define OPT_INLINE_METHOD_CACHE 1
47
+ #define OPT_GLOBAL_METHOD_CACHE 1
48
+
49
+ #ifndef OPT_IC_FOR_IVAR
50
+ #define OPT_IC_FOR_IVAR 1
51
+ #endif
52
+
53
+ /* architecture independent, affects generated code */
54
+ #define OPT_OPERANDS_UNIFICATION 1
55
+ #define OPT_INSTRUCTIONS_UNIFICATION 0
56
+ #define OPT_UNIFY_ALL_COMBINATION 0
57
+ #define OPT_STACK_CACHING 0
58
+
59
+ /* misc */
60
+ #ifndef OPT_SUPPORT_JOKE
61
+ #define OPT_SUPPORT_JOKE 0
62
+ #endif
63
+
64
+ #ifndef OPT_SUPPORT_CALL_C_FUNCTION
65
+ #define OPT_SUPPORT_CALL_C_FUNCTION 0
66
+ #endif
67
+
68
+ #ifndef VM_COLLECT_USAGE_DETAILS
69
+ #define VM_COLLECT_USAGE_DETAILS 0
70
+ #endif
71
+
72
+ #endif /* RUBY_VM_OPTS_H */