debase-ruby_core_source 0.10.16 → 0.10.17

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