debase-ruby_core_source 0.10.17 → 0.10.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/addr2line.h +20 -0
  4. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/builtin.h +121 -0
  5. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/ccan/build_assert/build_assert.h +40 -0
  6. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/ccan/check_type/check_type.h +63 -0
  7. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/ccan/container_of/container_of.h +142 -0
  8. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/ccan/list/list.h +789 -0
  9. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/ccan/str/str.h +17 -0
  10. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/constant.h +55 -0
  11. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/darray.h +179 -0
  12. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/debug_counter.h +468 -0
  13. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/dln.h +31 -0
  14. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/encindex.h +70 -0
  15. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/eval_intern.h +339 -0
  16. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/gc.h +147 -0
  17. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/hrtime.h +227 -0
  18. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/id.h +295 -0
  19. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/id_table.h +36 -0
  20. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/insns.inc +249 -0
  21. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/insns_info.inc +9061 -0
  22. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/array.h +163 -0
  23. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/bignum.h +246 -0
  24. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/bits.h +565 -0
  25. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/class.h +181 -0
  26. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/cmdlineopt.h +61 -0
  27. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/compar.h +49 -0
  28. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/compile.h +35 -0
  29. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/compilers.h +107 -0
  30. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/complex.h +29 -0
  31. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/cont.h +29 -0
  32. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/dir.h +16 -0
  33. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/enc.h +19 -0
  34. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/encoding.h +29 -0
  35. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/enum.h +18 -0
  36. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/enumerator.h +21 -0
  37. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/error.h +191 -0
  38. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/eval.h +32 -0
  39. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/file.h +38 -0
  40. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/fixnum.h +184 -0
  41. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/gc.h +191 -0
  42. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/hash.h +243 -0
  43. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/imemo.h +242 -0
  44. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/inits.h +50 -0
  45. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/io.h +38 -0
  46. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/load.h +18 -0
  47. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/loadpath.h +16 -0
  48. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/math.h +23 -0
  49. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/missing.h +18 -0
  50. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/numeric.h +275 -0
  51. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/object.h +61 -0
  52. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/parse.h +24 -0
  53. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/proc.h +32 -0
  54. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/process.h +137 -0
  55. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/ractor.h +6 -0
  56. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/random.h +16 -0
  57. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/range.h +40 -0
  58. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/rational.h +72 -0
  59. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/re.h +30 -0
  60. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/sanitizers.h +190 -0
  61. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/serial.h +23 -0
  62. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/signal.h +21 -0
  63. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/static_assert.h +16 -0
  64. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/string.h +147 -0
  65. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/struct.h +153 -0
  66. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/symbol.h +42 -0
  67. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/thread.h +55 -0
  68. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/time.h +34 -0
  69. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/transcode.h +20 -0
  70. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/util.h +27 -0
  71. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/variable.h +88 -0
  72. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/vm.h +134 -0
  73. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal/warnings.h +16 -0
  74. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/internal.h +113 -0
  75. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/iseq.h +329 -0
  76. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/known_errors.inc +791 -0
  77. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/method.h +254 -0
  78. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/mjit.h +132 -0
  79. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/mjit_compile_attr.inc +430 -0
  80. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/mjit_compiler.h +58 -0
  81. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/mjit_unit.h +29 -0
  82. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/node.h +511 -0
  83. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/node_name.inc +210 -0
  84. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/opt_sc.inc +109 -0
  85. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/optinsn.inc +128 -0
  86. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/optunifs.inc +43 -0
  87. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/parse.h +215 -0
  88. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/probes_helper.h +44 -0
  89. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/ractor_core.h +343 -0
  90. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/regenc.h +254 -0
  91. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/regint.h +984 -0
  92. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/regparse.h +370 -0
  93. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/revision.h +5 -0
  94. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/ruby_assert.h +14 -0
  95. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/ruby_atomic.h +23 -0
  96. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/shape.h +194 -0
  97. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/siphash.h +48 -0
  98. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/symbol.h +119 -0
  99. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/thread_none.h +20 -0
  100. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/thread_pthread.h +132 -0
  101. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/thread_win32.h +63 -0
  102. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/timev.h +57 -0
  103. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/transcode_data.h +138 -0
  104. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/transient_heap.h +65 -0
  105. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/variable.h +29 -0
  106. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/version.h +65 -0
  107. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm.inc +5476 -0
  108. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm_call_iseq_optimized.inc +244 -0
  109. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm_callinfo.h +550 -0
  110. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm_core.h +2137 -0
  111. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm_debug.h +122 -0
  112. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm_exec.h +197 -0
  113. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm_insnhelper.h +266 -0
  114. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm_opts.h +73 -0
  115. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vm_sync.h +137 -0
  116. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/vmtc.inc +243 -0
  117. data/lib/debase/ruby_core_source/ruby-3.2.0-preview3/yjit.h +72 -0
  118. data/lib/debase/ruby_core_source/version.rb +1 -1
  119. metadata +118 -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,197 @@
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
+ #ifdef MJIT_HEADER
169
+ #define THROW_EXCEPTION(exc) do { \
170
+ ec->errinfo = (VALUE)(exc); \
171
+ EC_JUMP_TAG(ec, ec->tag->state); \
172
+ } while (0)
173
+ #else
174
+ #if OPT_CALL_THREADED_CODE
175
+ #define THROW_EXCEPTION(exc) do { \
176
+ ec->errinfo = (VALUE)(exc); \
177
+ return 0; \
178
+ } while (0)
179
+ #else
180
+ #define THROW_EXCEPTION(exc) return (VALUE)(exc)
181
+ #endif
182
+ #endif
183
+
184
+ #define SCREG(r) (reg_##r)
185
+
186
+ #define VM_DEBUG_STACKOVERFLOW 0
187
+
188
+ #if VM_DEBUG_STACKOVERFLOW
189
+ #define CHECK_VM_STACK_OVERFLOW_FOR_INSN CHECK_VM_STACK_OVERFLOW
190
+ #else
191
+ #define CHECK_VM_STACK_OVERFLOW_FOR_INSN(cfp, margin)
192
+ #endif
193
+
194
+ #define INSN_LABEL2(insn, name) INSN_LABEL_ ## insn ## _ ## name
195
+ #define INSN_LABEL(x) INSN_LABEL2(NAME_OF_CURRENT_INSN, x)
196
+
197
+ #endif /* RUBY_VM_EXEC_H */
@@ -0,0 +1,266 @@
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
+ MJIT_SYMBOL_EXPORT_BEGIN
15
+
16
+ RUBY_EXTERN VALUE ruby_vm_const_missing_count;
17
+ RUBY_EXTERN rb_serial_t ruby_vm_constant_cache_invalidations;
18
+ RUBY_EXTERN rb_serial_t ruby_vm_constant_cache_misses;
19
+ RUBY_EXTERN rb_serial_t ruby_vm_global_cvar_state;
20
+
21
+ MJIT_SYMBOL_EXPORT_END
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 YJIT_STATS
29
+ /* for --yjit-stats */
30
+ #define COLLECT_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
+ #else
34
+ #define COLLECT_USAGE_INSN(insn) /* none */
35
+ #define COLLECT_USAGE_OPERAND(insn, n, op) /* none */
36
+ #define COLLECT_USAGE_REGISTER(reg, s) /* none */
37
+ #endif
38
+
39
+ /**********************************************************/
40
+ /* deal with stack */
41
+ /**********************************************************/
42
+
43
+ #define PUSH(x) (SET_SV(x), INC_SP(1))
44
+ #define TOPN(n) (*(GET_SP()-(n)-1))
45
+ #define POPN(n) (DEC_SP(n))
46
+ #define POP() (DEC_SP(1))
47
+ #define STACK_ADDR_FROM_TOP(n) (GET_SP()-(n))
48
+
49
+ /**********************************************************/
50
+ /* deal with registers */
51
+ /**********************************************************/
52
+
53
+ #define VM_REG_CFP (reg_cfp)
54
+ #define VM_REG_PC (VM_REG_CFP->pc)
55
+ #define VM_REG_SP (VM_REG_CFP->sp)
56
+ #define VM_REG_EP (VM_REG_CFP->ep)
57
+
58
+ #define RESTORE_REGS() do { \
59
+ VM_REG_CFP = ec->cfp; \
60
+ } while (0)
61
+
62
+ #if VM_COLLECT_USAGE_DETAILS
63
+ enum vm_regan_regtype {
64
+ VM_REGAN_PC = 0,
65
+ VM_REGAN_SP = 1,
66
+ VM_REGAN_EP = 2,
67
+ VM_REGAN_CFP = 3,
68
+ VM_REGAN_SELF = 4,
69
+ VM_REGAN_ISEQ = 5
70
+ };
71
+ enum vm_regan_acttype {
72
+ VM_REGAN_ACT_GET = 0,
73
+ VM_REGAN_ACT_SET = 1
74
+ };
75
+
76
+ #define COLLECT_USAGE_REGISTER_HELPER(a, b, v) \
77
+ (COLLECT_USAGE_REGISTER((VM_REGAN_##a), (VM_REGAN_ACT_##b)), (v))
78
+ #else
79
+ #define COLLECT_USAGE_REGISTER_HELPER(a, b, v) (v)
80
+ #endif
81
+
82
+ /* PC */
83
+ #define GET_PC() (COLLECT_USAGE_REGISTER_HELPER(PC, GET, VM_REG_PC))
84
+ #define SET_PC(x) (VM_REG_PC = (COLLECT_USAGE_REGISTER_HELPER(PC, SET, (x))))
85
+ #define GET_CURRENT_INSN() (*GET_PC())
86
+ #define GET_OPERAND(n) (GET_PC()[(n)])
87
+ #define ADD_PC(n) (SET_PC(VM_REG_PC + (n)))
88
+ #define JUMP(dst) (SET_PC(VM_REG_PC + (dst)))
89
+
90
+ /* frame pointer, environment pointer */
91
+ #define GET_CFP() (COLLECT_USAGE_REGISTER_HELPER(CFP, GET, VM_REG_CFP))
92
+ #define GET_EP() (COLLECT_USAGE_REGISTER_HELPER(EP, GET, VM_REG_EP))
93
+ #define SET_EP(x) (VM_REG_EP = (COLLECT_USAGE_REGISTER_HELPER(EP, SET, (x))))
94
+ #define GET_LEP() (VM_EP_LEP(GET_EP()))
95
+
96
+ /* SP */
97
+ #define GET_SP() (COLLECT_USAGE_REGISTER_HELPER(SP, GET, VM_REG_SP))
98
+ #define SET_SP(x) (VM_REG_SP = (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
99
+ #define INC_SP(x) (VM_REG_SP += (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
100
+ #define DEC_SP(x) (VM_REG_SP -= (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
101
+ #define SET_SV(x) (*GET_SP() = rb_ractor_confirm_belonging(x))
102
+ /* set current stack value as x */
103
+
104
+ /* instruction sequence C struct */
105
+ #define GET_ISEQ() (GET_CFP()->iseq)
106
+
107
+ /**********************************************************/
108
+ /* deal with variables */
109
+ /**********************************************************/
110
+
111
+ #define GET_PREV_EP(ep) ((VALUE *)((ep)[VM_ENV_DATA_INDEX_SPECVAL] & ~0x03))
112
+
113
+ /**********************************************************/
114
+ /* deal with values */
115
+ /**********************************************************/
116
+
117
+ #define GET_SELF() (COLLECT_USAGE_REGISTER_HELPER(SELF, GET, GET_CFP()->self))
118
+
119
+ /**********************************************************/
120
+ /* deal with control flow 2: method/iterator */
121
+ /**********************************************************/
122
+
123
+ /* set fastpath when cached method is *NOT* protected
124
+ * because inline method cache does not care about receiver.
125
+ */
126
+
127
+ static inline void
128
+ CC_SET_FASTPATH(const struct rb_callcache *cc, vm_call_handler func, bool enabled)
129
+ {
130
+ if (LIKELY(enabled)) {
131
+ vm_cc_call_set(cc, func);
132
+ }
133
+ }
134
+
135
+ #define GET_BLOCK_HANDLER() (GET_LEP()[VM_ENV_DATA_INDEX_SPECVAL])
136
+
137
+ /**********************************************************/
138
+ /* deal with control flow 3: exception */
139
+ /**********************************************************/
140
+
141
+
142
+ /**********************************************************/
143
+ /* deal with stack canary */
144
+ /**********************************************************/
145
+
146
+ #if VM_CHECK_MODE > 0
147
+ #define SETUP_CANARY(cond) \
148
+ VALUE *canary = 0; \
149
+ if (cond) { \
150
+ canary = GET_SP(); \
151
+ SET_SV(vm_stack_canary); \
152
+ } \
153
+ else {\
154
+ SET_SV(Qfalse); /* cleanup */ \
155
+ }
156
+ #define CHECK_CANARY(cond, insn) \
157
+ if (cond) { \
158
+ if (*canary == vm_stack_canary) { \
159
+ *canary = Qfalse; /* cleanup */ \
160
+ } \
161
+ else { \
162
+ rb_vm_canary_is_found_dead(insn, *canary); \
163
+ } \
164
+ }
165
+ #else
166
+ #define SETUP_CANARY(cond) if (cond) {} else {}
167
+ #define CHECK_CANARY(cond, insn) if (cond) {(void)(insn);}
168
+ #endif
169
+
170
+ /**********************************************************/
171
+ /* others */
172
+ /**********************************************************/
173
+
174
+ #ifndef MJIT_HEADER
175
+ #define CALL_SIMPLE_METHOD() do { \
176
+ rb_snum_t x = leaf ? INSN_ATTR(width) : 0; \
177
+ rb_snum_t y = attr_width_opt_send_without_block(0); \
178
+ rb_snum_t z = x - y; \
179
+ ADD_PC(z); \
180
+ DISPATCH_ORIGINAL_INSN(opt_send_without_block); \
181
+ } while (0)
182
+ #endif
183
+
184
+ #define GET_GLOBAL_CVAR_STATE() (ruby_vm_global_cvar_state)
185
+ #define INC_GLOBAL_CVAR_STATE() (++ruby_vm_global_cvar_state)
186
+
187
+ static inline struct vm_throw_data *
188
+ THROW_DATA_NEW(VALUE val, const rb_control_frame_t *cf, int st)
189
+ {
190
+ struct vm_throw_data *obj = (struct vm_throw_data *)rb_imemo_new(imemo_throw_data, val, (VALUE)cf, 0, 0);
191
+ obj->throw_state = st;
192
+ return obj;
193
+ }
194
+
195
+ static inline VALUE
196
+ THROW_DATA_VAL(const struct vm_throw_data *obj)
197
+ {
198
+ VM_ASSERT(THROW_DATA_P(obj));
199
+ return obj->throw_obj;
200
+ }
201
+
202
+ static inline const rb_control_frame_t *
203
+ THROW_DATA_CATCH_FRAME(const struct vm_throw_data *obj)
204
+ {
205
+ VM_ASSERT(THROW_DATA_P(obj));
206
+ return obj->catch_frame;
207
+ }
208
+
209
+ static inline int
210
+ THROW_DATA_STATE(const struct vm_throw_data *obj)
211
+ {
212
+ VM_ASSERT(THROW_DATA_P(obj));
213
+ return obj->throw_state;
214
+ }
215
+
216
+ static inline int
217
+ THROW_DATA_CONSUMED_P(const struct vm_throw_data *obj)
218
+ {
219
+ VM_ASSERT(THROW_DATA_P(obj));
220
+ return obj->flags & THROW_DATA_CONSUMED;
221
+ }
222
+
223
+ static inline void
224
+ THROW_DATA_CATCH_FRAME_SET(struct vm_throw_data *obj, const rb_control_frame_t *cfp)
225
+ {
226
+ VM_ASSERT(THROW_DATA_P(obj));
227
+ obj->catch_frame = cfp;
228
+ }
229
+
230
+ static inline void
231
+ THROW_DATA_STATE_SET(struct vm_throw_data *obj, int st)
232
+ {
233
+ VM_ASSERT(THROW_DATA_P(obj));
234
+ obj->throw_state = st;
235
+ }
236
+
237
+ static inline void
238
+ THROW_DATA_CONSUMED_SET(struct vm_throw_data *obj)
239
+ {
240
+ if (THROW_DATA_P(obj) &&
241
+ THROW_DATA_STATE(obj) == TAG_BREAK) {
242
+ obj->flags |= THROW_DATA_CONSUMED;
243
+ }
244
+ }
245
+
246
+ #define IS_ARGS_SPLAT(ci) (vm_ci_flag(ci) & VM_CALL_ARGS_SPLAT)
247
+ #define IS_ARGS_KEYWORD(ci) (vm_ci_flag(ci) & VM_CALL_KWARG)
248
+ #define IS_ARGS_KW_SPLAT(ci) (vm_ci_flag(ci) & VM_CALL_KW_SPLAT)
249
+ #define IS_ARGS_KW_OR_KW_SPLAT(ci) (vm_ci_flag(ci) & (VM_CALL_KWARG | VM_CALL_KW_SPLAT))
250
+ #define IS_ARGS_KW_SPLAT_MUT(ci) (vm_ci_flag(ci) & VM_CALL_KW_SPLAT_MUT)
251
+
252
+ static inline bool
253
+ vm_call_cacheable(const struct rb_callinfo *ci, const struct rb_callcache *cc)
254
+ {
255
+ return (vm_ci_flag(ci) & VM_CALL_FCALL) ||
256
+ METHOD_ENTRY_VISI(vm_cc_cme(cc)) != METHOD_VISI_PROTECTED;
257
+ }
258
+ /* If this returns true, an optimized function returned by `vm_call_iseq_setup_func`
259
+ can be used as a fastpath. */
260
+ static inline bool
261
+ vm_call_iseq_optimizable_p(const struct rb_callinfo *ci, const struct rb_callcache *cc)
262
+ {
263
+ return !IS_ARGS_SPLAT(ci) && !IS_ARGS_KEYWORD(ci) && vm_call_cacheable(ci, cc);
264
+ }
265
+
266
+ #endif /* RUBY_INSNHELPER_H */
@@ -0,0 +1,73 @@
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
+ #define OPT_BLOCKINLINING 0
49
+
50
+ #ifndef OPT_IC_FOR_IVAR
51
+ #define OPT_IC_FOR_IVAR 1
52
+ #endif
53
+
54
+ /* architecture independent, affects generated code */
55
+ #define OPT_OPERANDS_UNIFICATION 1
56
+ #define OPT_INSTRUCTIONS_UNIFICATION 0
57
+ #define OPT_UNIFY_ALL_COMBINATION 0
58
+ #define OPT_STACK_CACHING 0
59
+
60
+ /* misc */
61
+ #ifndef OPT_SUPPORT_JOKE
62
+ #define OPT_SUPPORT_JOKE 0
63
+ #endif
64
+
65
+ #ifndef OPT_SUPPORT_CALL_C_FUNCTION
66
+ #define OPT_SUPPORT_CALL_C_FUNCTION 0
67
+ #endif
68
+
69
+ #ifndef VM_COLLECT_USAGE_DETAILS
70
+ #define VM_COLLECT_USAGE_DETAILS 0
71
+ #endif
72
+
73
+ #endif /* RUBY_VM_OPTS_H */