debase-ruby_core_source 3.2.0 → 3.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +10 -0
  4. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/addr2line.h +20 -0
  5. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/builtin.h +117 -0
  6. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/build_assert/build_assert.h +40 -0
  7. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/check_type/check_type.h +63 -0
  8. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/container_of/container_of.h +142 -0
  9. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/list/list.h +789 -0
  10. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/str/str.h +17 -0
  11. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/constant.h +53 -0
  12. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/darray.h +246 -0
  13. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/debug_counter.h +423 -0
  14. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/dln.h +31 -0
  15. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/encindex.h +70 -0
  16. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/eval_intern.h +341 -0
  17. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/hrtime.h +227 -0
  18. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/id.h +343 -0
  19. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/id_table.h +39 -0
  20. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/insns.inc +249 -0
  21. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/insns_info.inc +9133 -0
  22. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/array.h +144 -0
  23. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/basic_operators.h +63 -0
  24. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/bignum.h +244 -0
  25. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/bits.h +568 -0
  26. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/class.h +226 -0
  27. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/cmdlineopt.h +63 -0
  28. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compar.h +29 -0
  29. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compile.h +34 -0
  30. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compilers.h +107 -0
  31. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/complex.h +29 -0
  32. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/cont.h +32 -0
  33. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/dir.h +16 -0
  34. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enc.h +19 -0
  35. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/encoding.h +32 -0
  36. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enum.h +18 -0
  37. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enumerator.h +21 -0
  38. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/error.h +213 -0
  39. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/eval.h +32 -0
  40. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/file.h +38 -0
  41. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/fixnum.h +184 -0
  42. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/gc.h +361 -0
  43. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/hash.h +190 -0
  44. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/imemo.h +241 -0
  45. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/inits.h +50 -0
  46. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/io.h +137 -0
  47. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/load.h +18 -0
  48. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/loadpath.h +16 -0
  49. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/math.h +23 -0
  50. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/missing.h +18 -0
  51. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/numeric.h +273 -0
  52. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/object.h +59 -0
  53. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/parse.h +133 -0
  54. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/proc.h +30 -0
  55. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/process.h +124 -0
  56. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/ractor.h +6 -0
  57. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/random.h +16 -0
  58. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/range.h +40 -0
  59. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/rational.h +71 -0
  60. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/re.h +28 -0
  61. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/ruby_parser.h +69 -0
  62. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/sanitizers.h +186 -0
  63. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/serial.h +23 -0
  64. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/signal.h +25 -0
  65. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/static_assert.h +16 -0
  66. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/string.h +160 -0
  67. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/struct.h +127 -0
  68. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/symbol.h +42 -0
  69. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/thread.h +74 -0
  70. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/time.h +34 -0
  71. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/transcode.h +20 -0
  72. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/util.h +27 -0
  73. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/variable.h +71 -0
  74. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/vm.h +129 -0
  75. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/warnings.h +16 -0
  76. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal.h +112 -0
  77. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/iseq.h +334 -0
  78. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/known_errors.inc +791 -0
  79. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/method.h +254 -0
  80. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/node.h +125 -0
  81. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/node_name.inc +210 -0
  82. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/optinsn.inc +128 -0
  83. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/optunifs.inc +43 -0
  84. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parse.h +232 -0
  85. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_bits.h +564 -0
  86. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_node.h +133 -0
  87. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_st.h +162 -0
  88. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_value.h +106 -0
  89. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/probes_helper.h +42 -0
  90. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ractor_core.h +387 -0
  91. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regenc.h +254 -0
  92. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regint.h +996 -0
  93. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regparse.h +370 -0
  94. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/revision.h +5 -0
  95. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rjit.h +103 -0
  96. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rjit_c.h +165 -0
  97. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ruby_assert.h +14 -0
  98. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ruby_atomic.h +23 -0
  99. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rubyparser.h +628 -0
  100. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/shape.h +232 -0
  101. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/siphash.h +48 -0
  102. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/symbol.h +119 -0
  103. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_none.h +20 -0
  104. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_pthread.h +126 -0
  105. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_win32.h +58 -0
  106. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/timev.h +58 -0
  107. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/transcode_data.h +138 -0
  108. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/variable.h +30 -0
  109. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/version.h +65 -0
  110. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm.inc +5396 -0
  111. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_call_iseq_optimized.inc +244 -0
  112. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_callinfo.h +608 -0
  113. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_core.h +2089 -0
  114. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_debug.h +122 -0
  115. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_exec.h +199 -0
  116. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_insnhelper.h +271 -0
  117. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_opts.h +67 -0
  118. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_sync.h +137 -0
  119. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vmtc.inc +243 -0
  120. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/yjit.h +70 -0
  121. data/lib/debase/ruby_core_source/version.rb +1 -1
  122. metadata +120 -3
@@ -0,0 +1,370 @@
1
+ #ifndef ONIGMO_REGPARSE_H
2
+ #define ONIGMO_REGPARSE_H
3
+ /**********************************************************************
4
+ regparse.h - Onigmo (Oniguruma-mod) (regular expression library)
5
+ **********************************************************************/
6
+ /*-
7
+ * Copyright (c) 2002-2007 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
8
+ * Copyright (c) 2011-2016 K.Takata <kentkt AT csc DOT jp>
9
+ * All rights reserved.
10
+ *
11
+ * Redistribution and use in source and binary forms, with or without
12
+ * modification, are permitted provided that the following conditions
13
+ * are met:
14
+ * 1. Redistributions of source code must retain the above copyright
15
+ * notice, this list of conditions and the following disclaimer.
16
+ * 2. Redistributions in binary form must reproduce the above copyright
17
+ * notice, this list of conditions and the following disclaimer in the
18
+ * documentation and/or other materials provided with the distribution.
19
+ *
20
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30
+ * SUCH DAMAGE.
31
+ */
32
+
33
+ #include "regint.h"
34
+
35
+ RUBY_SYMBOL_EXPORT_BEGIN
36
+
37
+ /* node type */
38
+ #define NT_STR 0
39
+ #define NT_CCLASS 1
40
+ #define NT_CTYPE 2
41
+ #define NT_CANY 3
42
+ #define NT_BREF 4
43
+ #define NT_QTFR 5
44
+ #define NT_ENCLOSE 6
45
+ #define NT_ANCHOR 7
46
+ #define NT_LIST 8
47
+ #define NT_ALT 9
48
+ #define NT_CALL 10
49
+
50
+ /* node type bit */
51
+ #define NTYPE2BIT(type) (1<<(type))
52
+
53
+ #define BIT_NT_STR NTYPE2BIT(NT_STR)
54
+ #define BIT_NT_CCLASS NTYPE2BIT(NT_CCLASS)
55
+ #define BIT_NT_CTYPE NTYPE2BIT(NT_CTYPE)
56
+ #define BIT_NT_CANY NTYPE2BIT(NT_CANY)
57
+ #define BIT_NT_BREF NTYPE2BIT(NT_BREF)
58
+ #define BIT_NT_QTFR NTYPE2BIT(NT_QTFR)
59
+ #define BIT_NT_ENCLOSE NTYPE2BIT(NT_ENCLOSE)
60
+ #define BIT_NT_ANCHOR NTYPE2BIT(NT_ANCHOR)
61
+ #define BIT_NT_LIST NTYPE2BIT(NT_LIST)
62
+ #define BIT_NT_ALT NTYPE2BIT(NT_ALT)
63
+ #define BIT_NT_CALL NTYPE2BIT(NT_CALL)
64
+
65
+ #define IS_NODE_TYPE_SIMPLE(type) \
66
+ ((NTYPE2BIT(type) & (BIT_NT_STR | BIT_NT_CCLASS | BIT_NT_CTYPE |\
67
+ BIT_NT_CANY | BIT_NT_BREF)) != 0)
68
+
69
+ #define NTYPE(node) ((node)->u.base.type)
70
+ #define SET_NTYPE(node, ntype) \
71
+ do { \
72
+ int value = ntype; \
73
+ memcpy(&((node)->u.base.type), &value, sizeof(int)); \
74
+ } while (0)
75
+
76
+ #define NSTR(node) (&((node)->u.str))
77
+ #define NCCLASS(node) (&((node)->u.cclass))
78
+ #define NCTYPE(node) (&((node)->u.ctype))
79
+ #define NBREF(node) (&((node)->u.bref))
80
+ #define NQTFR(node) (&((node)->u.qtfr))
81
+ #define NENCLOSE(node) (&((node)->u.enclose))
82
+ #define NANCHOR(node) (&((node)->u.anchor))
83
+ #define NCONS(node) (&((node)->u.cons))
84
+ #define NCALL(node) (&((node)->u.call))
85
+
86
+ #define NCAR(node) (NCONS(node)->car)
87
+ #define NCDR(node) (NCONS(node)->cdr)
88
+
89
+
90
+
91
+ #define ANCHOR_ANYCHAR_STAR_MASK (ANCHOR_ANYCHAR_STAR | ANCHOR_ANYCHAR_STAR_ML)
92
+ #define ANCHOR_END_BUF_MASK (ANCHOR_END_BUF | ANCHOR_SEMI_END_BUF)
93
+
94
+ #define ENCLOSE_MEMORY (1<<0)
95
+ #define ENCLOSE_OPTION (1<<1)
96
+ #define ENCLOSE_STOP_BACKTRACK (1<<2)
97
+ #define ENCLOSE_CONDITION (1<<3)
98
+ #define ENCLOSE_ABSENT (1<<4)
99
+
100
+ #define NODE_STR_MARGIN 16
101
+ #define NODE_STR_BUF_SIZE 24 /* sizeof(CClassNode) - sizeof(int)*4 */
102
+ #define NODE_BACKREFS_SIZE 6
103
+
104
+ #define NSTR_RAW (1<<0) /* by backslashed number */
105
+ #define NSTR_AMBIG (1<<1)
106
+ #define NSTR_DONT_GET_OPT_INFO (1<<2)
107
+
108
+ #define NSTRING_LEN(node) (OnigDistance )((node)->u.str.end - (node)->u.str.s)
109
+ #define NSTRING_SET_RAW(node) (node)->u.str.flag |= NSTR_RAW
110
+ #define NSTRING_CLEAR_RAW(node) (node)->u.str.flag &= ~NSTR_RAW
111
+ #define NSTRING_SET_AMBIG(node) (node)->u.str.flag |= NSTR_AMBIG
112
+ #define NSTRING_SET_DONT_GET_OPT_INFO(node) \
113
+ (node)->u.str.flag |= NSTR_DONT_GET_OPT_INFO
114
+ #define NSTRING_IS_RAW(node) (((node)->u.str.flag & NSTR_RAW) != 0)
115
+ #define NSTRING_IS_AMBIG(node) (((node)->u.str.flag & NSTR_AMBIG) != 0)
116
+ #define NSTRING_IS_DONT_GET_OPT_INFO(node) \
117
+ (((node)->u.str.flag & NSTR_DONT_GET_OPT_INFO) != 0)
118
+
119
+ #define BACKREFS_P(br) \
120
+ (IS_NOT_NULL((br)->back_dynamic) ? (br)->back_dynamic : (br)->back_static);
121
+
122
+ #define NQ_TARGET_ISNOT_EMPTY 0
123
+ #define NQ_TARGET_IS_EMPTY 1
124
+ #define NQ_TARGET_IS_EMPTY_MEM 2
125
+ #define NQ_TARGET_IS_EMPTY_REC 3
126
+
127
+ /* status bits */
128
+ #define NST_MIN_FIXED (1<<0)
129
+ #define NST_MAX_FIXED (1<<1)
130
+ #define NST_CLEN_FIXED (1<<2)
131
+ #define NST_MARK1 (1<<3)
132
+ #define NST_MARK2 (1<<4)
133
+ #define NST_MEM_BACKREFED (1<<5)
134
+ #define NST_STOP_BT_SIMPLE_REPEAT (1<<6)
135
+ #define NST_RECURSION (1<<7)
136
+ #define NST_CALLED (1<<8)
137
+ #define NST_ADDR_FIXED (1<<9)
138
+ #define NST_NAMED_GROUP (1<<10)
139
+ #define NST_NAME_REF (1<<11)
140
+ #define NST_IN_REPEAT (1<<12) /* STK_REPEAT is nested in stack. */
141
+ #define NST_NEST_LEVEL (1<<13)
142
+ #define NST_BY_NUMBER (1<<14) /* {n,m} */
143
+
144
+ #define SET_ENCLOSE_STATUS(node,f) (node)->u.enclose.state |= (f)
145
+ #define CLEAR_ENCLOSE_STATUS(node,f) (node)->u.enclose.state &= ~(f)
146
+
147
+ #define IS_ENCLOSE_CALLED(en) (((en)->state & NST_CALLED) != 0)
148
+ #define IS_ENCLOSE_ADDR_FIXED(en) (((en)->state & NST_ADDR_FIXED) != 0)
149
+ #define IS_ENCLOSE_RECURSION(en) (((en)->state & NST_RECURSION) != 0)
150
+ #define IS_ENCLOSE_MARK1(en) (((en)->state & NST_MARK1) != 0)
151
+ #define IS_ENCLOSE_MARK2(en) (((en)->state & NST_MARK2) != 0)
152
+ #define IS_ENCLOSE_MIN_FIXED(en) (((en)->state & NST_MIN_FIXED) != 0)
153
+ #define IS_ENCLOSE_MAX_FIXED(en) (((en)->state & NST_MAX_FIXED) != 0)
154
+ #define IS_ENCLOSE_CLEN_FIXED(en) (((en)->state & NST_CLEN_FIXED) != 0)
155
+ #define IS_ENCLOSE_STOP_BT_SIMPLE_REPEAT(en) \
156
+ (((en)->state & NST_STOP_BT_SIMPLE_REPEAT) != 0)
157
+ #define IS_ENCLOSE_NAMED_GROUP(en) (((en)->state & NST_NAMED_GROUP) != 0)
158
+ #define IS_ENCLOSE_NAME_REF(en) (((en)->state & NST_NAME_REF) != 0)
159
+
160
+ #define SET_CALL_RECURSION(node) (node)->u.call.state |= NST_RECURSION
161
+ #define IS_CALL_RECURSION(cn) (((cn)->state & NST_RECURSION) != 0)
162
+ #define IS_CALL_NAME_REF(cn) (((cn)->state & NST_NAME_REF) != 0)
163
+ #define IS_BACKREF_NAME_REF(bn) (((bn)->state & NST_NAME_REF) != 0)
164
+ #define IS_BACKREF_NEST_LEVEL(bn) (((bn)->state & NST_NEST_LEVEL) != 0)
165
+ #define IS_QUANTIFIER_IN_REPEAT(qn) (((qn)->state & NST_IN_REPEAT) != 0)
166
+ #define IS_QUANTIFIER_BY_NUMBER(qn) (((qn)->state & NST_BY_NUMBER) != 0)
167
+
168
+ #define CALLNODE_REFNUM_UNDEF -1
169
+
170
+ typedef struct {
171
+ NodeBase base;
172
+ UChar* s;
173
+ UChar* end;
174
+ unsigned int flag;
175
+ int capa; /* (allocated size - 1) or 0: use buf[] */
176
+ UChar buf[NODE_STR_BUF_SIZE];
177
+ } StrNode;
178
+
179
+ typedef struct {
180
+ NodeBase base;
181
+ int state;
182
+ struct _Node* target;
183
+ int lower;
184
+ int upper;
185
+ int greedy;
186
+ int target_empty_info;
187
+ struct _Node* head_exact;
188
+ struct _Node* next_head_exact;
189
+ int is_referred; /* include called node. don't eliminate even if {0} */
190
+ #ifdef USE_COMBINATION_EXPLOSION_CHECK
191
+ int comb_exp_check_num; /* 1,2,3...: check, 0: no check */
192
+ #endif
193
+ } QtfrNode;
194
+
195
+ typedef struct {
196
+ NodeBase base;
197
+ int state;
198
+ int type;
199
+ int regnum;
200
+ OnigOptionType option;
201
+ AbsAddrType call_addr;
202
+ struct _Node* target;
203
+ /* for multiple call reference */
204
+ OnigDistance min_len; /* min length (byte) */
205
+ OnigDistance max_len; /* max length (byte) */
206
+ int char_len; /* character length */
207
+ int opt_count; /* referenced count in optimize_node_left() */
208
+ } EncloseNode;
209
+
210
+ #ifdef USE_SUBEXP_CALL
211
+
212
+ typedef struct {
213
+ int offset;
214
+ struct _Node* target;
215
+ } UnsetAddr;
216
+
217
+ typedef struct {
218
+ int num;
219
+ int alloc;
220
+ UnsetAddr* us;
221
+ } UnsetAddrList;
222
+
223
+ typedef struct {
224
+ NodeBase base;
225
+ int state;
226
+ int group_num;
227
+ UChar* name;
228
+ UChar* name_end;
229
+ struct _Node* target; /* EncloseNode : ENCLOSE_MEMORY */
230
+ UnsetAddrList* unset_addr_list;
231
+ } CallNode;
232
+
233
+ #endif
234
+
235
+ typedef struct {
236
+ NodeBase base;
237
+ int state;
238
+ int back_num;
239
+ int back_static[NODE_BACKREFS_SIZE];
240
+ int* back_dynamic;
241
+ int nest_level;
242
+ } BRefNode;
243
+
244
+ typedef struct {
245
+ NodeBase base;
246
+ int type;
247
+ struct _Node* target;
248
+ int char_len;
249
+ int ascii_range;
250
+ } AnchorNode;
251
+
252
+ typedef struct {
253
+ NodeBase base;
254
+ struct _Node* car;
255
+ struct _Node* cdr;
256
+ } ConsAltNode;
257
+
258
+ typedef struct {
259
+ NodeBase base;
260
+ int ctype;
261
+ int not;
262
+ int ascii_range;
263
+ } CtypeNode;
264
+
265
+ typedef struct _Node {
266
+ union {
267
+ NodeBase base;
268
+ StrNode str;
269
+ CClassNode cclass;
270
+ QtfrNode qtfr;
271
+ EncloseNode enclose;
272
+ BRefNode bref;
273
+ AnchorNode anchor;
274
+ ConsAltNode cons;
275
+ CtypeNode ctype;
276
+ #ifdef USE_SUBEXP_CALL
277
+ CallNode call;
278
+ #endif
279
+ } u;
280
+ } Node;
281
+
282
+
283
+ #define NULL_NODE ((Node* )0)
284
+
285
+ #define SCANENV_MEMNODES_SIZE 8
286
+ #define SCANENV_MEM_NODES(senv) \
287
+ (IS_NOT_NULL((senv)->mem_nodes_dynamic) ? \
288
+ (senv)->mem_nodes_dynamic : (senv)->mem_nodes_static)
289
+
290
+ typedef struct {
291
+ OnigOptionType option;
292
+ OnigCaseFoldType case_fold_flag;
293
+ OnigEncoding enc;
294
+ const OnigSyntaxType* syntax;
295
+ BitStatusType capture_history;
296
+ BitStatusType bt_mem_start;
297
+ BitStatusType bt_mem_end;
298
+ BitStatusType backrefed_mem;
299
+ UChar* pattern;
300
+ UChar* pattern_end;
301
+ UChar* error;
302
+ UChar* error_end;
303
+ regex_t* reg; /* for reg->names only */
304
+ #ifdef USE_SUBEXP_CALL
305
+ UnsetAddrList* unset_addr_list;
306
+ #endif
307
+ int num_call;
308
+ int num_mem;
309
+ #ifdef USE_NAMED_GROUP
310
+ int num_named;
311
+ #endif
312
+ int mem_alloc;
313
+ Node* mem_nodes_static[SCANENV_MEMNODES_SIZE];
314
+ Node** mem_nodes_dynamic;
315
+ #ifdef USE_COMBINATION_EXPLOSION_CHECK
316
+ int num_comb_exp_check;
317
+ int comb_exp_max_regnum;
318
+ int curr_max_regnum;
319
+ int has_recursion;
320
+ #endif
321
+ unsigned int parse_depth;
322
+ int warnings_flag;
323
+ #ifdef RUBY
324
+ const char* sourcefile;
325
+ int sourceline;
326
+ #endif
327
+ } ScanEnv;
328
+
329
+
330
+ #define IS_SYNTAX_OP(syn, opm) (((syn)->op & (opm)) != 0)
331
+ #define IS_SYNTAX_OP2(syn, opm) (((syn)->op2 & (opm)) != 0)
332
+ #define IS_SYNTAX_BV(syn, bvm) (((syn)->behavior & (bvm)) != 0)
333
+
334
+ #ifdef USE_NAMED_GROUP
335
+ typedef struct {
336
+ int new_val;
337
+ } GroupNumRemap;
338
+
339
+ extern int onig_renumber_name_table(regex_t* reg, GroupNumRemap* map);
340
+ #endif
341
+
342
+ extern int onig_strncmp(const UChar* s1, const UChar* s2, int n);
343
+ extern void onig_strcpy(UChar* dest, const UChar* src, const UChar* end);
344
+ extern void onig_scan_env_set_error_string(ScanEnv* env, int ecode, UChar* arg, UChar* arg_end);
345
+ extern int onig_scan_unsigned_number(UChar** src, const UChar* end, OnigEncoding enc);
346
+ extern void onig_reduce_nested_quantifier(Node* pnode, Node* cnode);
347
+ extern void onig_node_conv_to_str_node(Node* node, int raw);
348
+ extern int onig_node_str_cat(Node* node, const UChar* s, const UChar* end);
349
+ extern int onig_node_str_set(Node* node, const UChar* s, const UChar* end);
350
+ extern void onig_node_free(Node* node);
351
+ extern Node* onig_node_new_enclose(int type);
352
+ extern Node* onig_node_new_anchor(int type);
353
+ extern Node* onig_node_new_str(const UChar* s, const UChar* end);
354
+ extern Node* onig_node_new_list(Node* left, Node* right);
355
+ extern Node* onig_node_list_add(Node* list, Node* x);
356
+ extern Node* onig_node_new_alt(Node* left, Node* right);
357
+ extern void onig_node_str_clear(Node* node);
358
+ extern int onig_names_free(regex_t* reg);
359
+ extern int onig_parse_make_tree(Node** root, const UChar* pattern, const UChar* end, regex_t* reg, ScanEnv* env);
360
+ extern int onig_free_shared_cclass_table(void);
361
+
362
+ #ifdef ONIG_DEBUG
363
+ # ifdef USE_NAMED_GROUP
364
+ extern int onig_print_names(FILE*, regex_t*);
365
+ # endif
366
+ #endif
367
+
368
+ RUBY_SYMBOL_EXPORT_END
369
+
370
+ #endif /* ONIGMO_REGPARSE_H */
@@ -0,0 +1,5 @@
1
+ #define RUBY_REVISION "e50fcca9a7"
2
+ #define RUBY_FULL_REVISION "e50fcca9a79d8e25b33ad3611df6bf4627faafbf"
3
+ #define RUBY_RELEASE_YEAR 2023
4
+ #define RUBY_RELEASE_MONTH 9
5
+ #define RUBY_RELEASE_DAY 14
@@ -0,0 +1,103 @@
1
+ #ifndef RUBY_RJIT_H
2
+ #define RUBY_RJIT_H 1
3
+ /**********************************************************************
4
+
5
+ rjit.h - Interface to RJIT
6
+
7
+ Copyright (C) 2023 Takashi Kokubun <k0kubun@ruby-lang.org>.
8
+
9
+ **********************************************************************/
10
+
11
+ #include "ruby/internal/config.h" // defines USE_RJIT
12
+ #include "ruby/internal/stdbool.h"
13
+ #include "vm_core.h"
14
+
15
+ # if USE_RJIT
16
+
17
+ #ifndef RJIT_STATS
18
+ # define RJIT_STATS RUBY_DEBUG
19
+ #endif
20
+
21
+ #include "ruby.h"
22
+ #include "vm_core.h"
23
+
24
+ // RJIT options which can be defined on the MRI command line.
25
+ struct rb_rjit_options {
26
+ // Converted from "rjit" feature flag to tell the enablement
27
+ // information to ruby_show_version().
28
+ bool on;
29
+ // Number of calls to trigger JIT compilation.
30
+ unsigned int call_threshold;
31
+ // Size of executable memory block in MiB
32
+ unsigned int exec_mem_size;
33
+ // Collect RJIT statistics
34
+ bool stats;
35
+ // Trace side exit locations
36
+ bool trace_exits;
37
+ // Enable disasm of all JIT code
38
+ bool dump_disasm;
39
+ // Verify context objects
40
+ bool verify_ctx;
41
+ // [experimental] Do not start RJIT until RJIT.resume is called.
42
+ bool pause;
43
+ };
44
+
45
+ RUBY_SYMBOL_EXPORT_BEGIN
46
+ RUBY_EXTERN struct rb_rjit_options rb_rjit_opts;
47
+ RUBY_EXTERN bool rb_rjit_call_p;
48
+
49
+ #define rb_rjit_call_threshold() rb_rjit_opts.call_threshold
50
+
51
+ extern void rb_rjit_compile(const rb_iseq_t *iseq);
52
+ RUBY_SYMBOL_EXPORT_END
53
+
54
+ extern void rb_rjit_cancel_all(const char *reason);
55
+ extern void rb_rjit_init(const struct rb_rjit_options *opts);
56
+ extern void rb_rjit_free_iseq(const rb_iseq_t *iseq);
57
+ extern void rb_rjit_iseq_update_references(struct rb_iseq_constant_body *const body);
58
+ extern void rb_rjit_mark(void);
59
+ extern void rb_rjit_iseq_mark(VALUE rjit_blocks);
60
+ extern void rjit_notify_waitpid(int exit_code);
61
+
62
+ extern void rb_rjit_bop_redefined(int redefined_flag, enum ruby_basic_operators bop);
63
+ extern void rb_rjit_cme_invalidate(rb_callable_method_entry_t *cme);
64
+ extern void rb_rjit_before_ractor_spawn(void);
65
+ extern void rb_rjit_constant_state_changed(ID id);
66
+ extern void rb_rjit_constant_ic_update(const rb_iseq_t *const iseq, IC ic, unsigned insn_idx);
67
+ extern void rb_rjit_tracing_invalidate_all(rb_event_flag_t new_iseq_events);
68
+
69
+ extern void rb_rjit_bop_redefined(int redefined_flag, enum ruby_basic_operators bop);
70
+ extern void rb_rjit_before_ractor_spawn(void);
71
+ extern void rb_rjit_tracing_invalidate_all(rb_event_flag_t new_iseq_events);
72
+ extern void rb_rjit_collect_vm_usage_insn(int insn);
73
+
74
+ extern bool rb_rjit_enabled;
75
+ extern bool rb_rjit_stats_enabled;
76
+ extern bool rb_rjit_trace_exits_enabled;
77
+
78
+ # else // USE_RJIT
79
+
80
+ static inline void rb_rjit_compile(const rb_iseq_t *iseq){}
81
+
82
+ static inline void rb_rjit_cancel_all(const char *reason){}
83
+ static inline void rb_rjit_free_iseq(const rb_iseq_t *iseq){}
84
+ static inline void rb_rjit_mark(void){}
85
+
86
+ static inline void rb_rjit_bop_redefined(int redefined_flag, enum ruby_basic_operators bop) {}
87
+ static inline void rb_rjit_cme_invalidate(rb_callable_method_entry_t *cme) {}
88
+ static inline void rb_rjit_before_ractor_spawn(void) {}
89
+ static inline void rb_rjit_constant_state_changed(ID id) {}
90
+ static inline void rb_rjit_constant_ic_update(const rb_iseq_t *const iseq, IC ic, unsigned insn_idx) {}
91
+ static inline void rb_rjit_tracing_invalidate_all(rb_event_flag_t new_iseq_events) {}
92
+
93
+ #define rb_rjit_enabled false
94
+ #define rb_rjit_call_p false
95
+ #define rb_rjit_stats_enabled false
96
+ #define rb_rjit_trace_exits_enabled false
97
+
98
+ #define rb_rjit_call_threshold() UINT_MAX
99
+
100
+ static inline void rb_rjit_collect_vm_usage_insn(int insn) {}
101
+
102
+ # endif // USE_RJIT
103
+ #endif // RUBY_RJIT_H
@@ -0,0 +1,165 @@
1
+ // This file is parsed by tool/rjit/generate.rb to generate rjit_c.rb
2
+ #ifndef RJIT_C_H
3
+ #define RJIT_C_H
4
+
5
+ #include "ruby/internal/config.h"
6
+ #include "internal/string.h"
7
+ #include "internal/struct.h"
8
+ #include "internal/variable.h"
9
+ #include "vm_core.h"
10
+ #include "vm_callinfo.h"
11
+ #include "builtin.h"
12
+ #include "ccan/list/list.h"
13
+ #include "rjit.h"
14
+ #include "shape.h"
15
+
16
+ extern uint8_t *rb_rjit_mem_block;
17
+
18
+ #define RJIT_RUNTIME_COUNTERS(...) struct rb_rjit_runtime_counters { size_t __VA_ARGS__; };
19
+ RJIT_RUNTIME_COUNTERS(
20
+ vm_insns_count,
21
+ rjit_insns_count,
22
+
23
+ send_args_splat_kw_splat,
24
+ send_args_splat,
25
+ send_args_splat_not_array,
26
+ send_args_splat_length_not_equal,
27
+ send_args_splat_cfunc_var_args,
28
+ send_args_splat_arity_error,
29
+ send_args_splat_ruby2_hash,
30
+ send_args_splat_cfunc_zuper,
31
+ send_args_splat_cfunc_ruby2_keywords,
32
+ send_kw_splat,
33
+ send_kwarg,
34
+ send_klass_megamorphic,
35
+ send_missing_cme,
36
+ send_private,
37
+ send_protected_check_failed,
38
+ send_tailcall,
39
+ send_notimplemented,
40
+ send_missing,
41
+ send_bmethod,
42
+ send_alias,
43
+ send_undef,
44
+ send_zsuper,
45
+ send_refined,
46
+ send_stackoverflow,
47
+ send_arity,
48
+ send_c_tracing,
49
+ send_is_a_class_mismatch,
50
+ send_instance_of_class_mismatch,
51
+ send_keywords,
52
+
53
+ send_blockiseq,
54
+ send_block_handler,
55
+ send_block_setup,
56
+ send_block_not_nil,
57
+ send_block_not_proxy,
58
+ send_block_arg,
59
+
60
+ send_iseq_kwparam,
61
+ send_iseq_accepts_no_kwarg,
62
+ send_iseq_has_opt,
63
+ send_iseq_has_kwrest,
64
+ send_iseq_ruby2_keywords,
65
+ send_iseq_has_rest_and_captured,
66
+ send_iseq_has_rest_and_kw_supplied,
67
+ send_iseq_has_no_kw,
68
+ send_iseq_zsuper,
69
+ send_iseq_materialized_block,
70
+ send_iseq_has_rest,
71
+ send_iseq_block_arg0_splat,
72
+ send_iseq_kw_call,
73
+ send_iseq_splat,
74
+ send_iseq_has_rest_and_optional,
75
+ send_iseq_arity_error,
76
+ send_iseq_missing_optional_kw,
77
+ send_iseq_too_many_kwargs,
78
+ send_iseq_kwargs_mismatch,
79
+ send_iseq_splat_with_kw,
80
+ send_iseq_splat_arity_error,
81
+ send_iseq_has_rest_and_splat_not_equal,
82
+
83
+ send_cfunc_variadic,
84
+ send_cfunc_too_many_args,
85
+ send_cfunc_ruby_array_varg,
86
+ send_cfunc_splat_with_kw,
87
+ send_cfunc_tracing,
88
+ send_cfunc_argc_mismatch,
89
+ send_cfunc_toomany_args,
90
+
91
+ send_attrset_splat,
92
+ send_attrset_kwarg,
93
+ send_attrset_method,
94
+
95
+ send_ivar_splat,
96
+ send_ivar_opt_send,
97
+
98
+ send_optimized_send_no_args,
99
+ send_optimized_send_not_sym_or_str,
100
+ send_optimized_send_mid_class_changed,
101
+ send_optimized_send_mid_id_changed,
102
+ send_optimized_send_null_mid,
103
+ send_optimized_send_send,
104
+ send_optimized_call_block,
105
+ send_optimized_call_kwarg,
106
+ send_optimized_call_splat,
107
+ send_optimized_struct_aref_error,
108
+
109
+ send_optimized_block_call,
110
+ send_optimized_struct_aset,
111
+
112
+ send_bmethod_not_iseq,
113
+ send_bmethod_blockarg,
114
+
115
+ invokesuper_me_changed,
116
+ invokesuper_block,
117
+
118
+ invokeblock_none,
119
+ invokeblock_symbol,
120
+ invokeblock_proc,
121
+ invokeblock_tag_changed,
122
+ invokeblock_iseq_block_changed,
123
+ invokeblock_iseq_arity,
124
+ invokeblock_iseq_arg0_splat,
125
+ invokeblock_ifunc_args_splat,
126
+ invokeblock_ifunc_kw_splat,
127
+ invokeblock_iseq_arg0_args_splat,
128
+ invokeblock_iseq_arg0_has_kw,
129
+
130
+ getivar_megamorphic,
131
+ getivar_not_heap,
132
+ getivar_special_const,
133
+ getivar_too_complex,
134
+
135
+ optaref_arg_not_fixnum,
136
+ optaref_argc_not_one,
137
+ optaref_recv_not_array,
138
+ optaref_recv_not_hash,
139
+ optaref_send,
140
+
141
+ optgetconst_not_cached,
142
+ optgetconst_cref,
143
+ optgetconst_cache_miss,
144
+
145
+ setivar_frozen,
146
+ setivar_not_heap,
147
+ setivar_megamorphic,
148
+ setivar_too_complex,
149
+
150
+ expandarray_splat,
151
+ expandarray_postarg,
152
+ expandarray_not_array,
153
+ expandarray_rhs_too_small,
154
+
155
+ getblockpp_block_param_modified,
156
+ getblockpp_block_handler_none,
157
+ getblockpp_not_gc_guarded,
158
+ getblockpp_not_iseq_block,
159
+
160
+ compiled_block_count
161
+ )
162
+ #undef RJIT_RUNTIME_COUNTERS
163
+ extern struct rb_rjit_runtime_counters rb_rjit_counters;
164
+
165
+ #endif /* RJIT_C_H */
@@ -0,0 +1,14 @@
1
+ #ifndef RUBY_TOPLEVEL_ASSERT_H /*-*-C-*-vi:se ft=c:*/
2
+ #define RUBY_TOPLEVEL_ASSERT_H
3
+ /**
4
+ * @author Ruby developers <ruby-core@ruby-lang.org>
5
+ * @copyright This file is a part of the programming language Ruby.
6
+ * Permission is hereby granted, to either redistribute and/or
7
+ * modify this file, provided that the conditions mentioned in the
8
+ * file COPYING are met. Consult the file for details.
9
+ */
10
+ #include "ruby/assert.h"
11
+ #undef assert
12
+ #define assert RUBY_ASSERT_NDEBUG
13
+
14
+ #endif /* RUBY_TOPLEVEL_ASSERT_H */
@@ -0,0 +1,23 @@
1
+ #include "ruby/atomic.h"
2
+
3
+ /* shim macros only */
4
+ #define ATOMIC_ADD(var, val) RUBY_ATOMIC_ADD(var, val)
5
+ #define ATOMIC_CAS(var, oldval, newval) RUBY_ATOMIC_CAS(var, oldval, newval)
6
+ #define ATOMIC_DEC(var) RUBY_ATOMIC_DEC(var)
7
+ #define ATOMIC_EXCHANGE(var, val) RUBY_ATOMIC_EXCHANGE(var, val)
8
+ #define ATOMIC_FETCH_ADD(var, val) RUBY_ATOMIC_FETCH_ADD(var, val)
9
+ #define ATOMIC_FETCH_SUB(var, val) RUBY_ATOMIC_FETCH_SUB(var, val)
10
+ #define ATOMIC_INC(var) RUBY_ATOMIC_INC(var)
11
+ #define ATOMIC_OR(var, val) RUBY_ATOMIC_OR(var, val)
12
+ #define ATOMIC_PTR_CAS(var, oldval, newval) RUBY_ATOMIC_PTR_CAS(var, oldval, newval)
13
+ #define ATOMIC_PTR_EXCHANGE(var, val) RUBY_ATOMIC_PTR_EXCHANGE(var, val)
14
+ #define ATOMIC_SET(var, val) RUBY_ATOMIC_SET(var, val)
15
+ #define ATOMIC_SIZE_ADD(var, val) RUBY_ATOMIC_SIZE_ADD(var, val)
16
+ #define ATOMIC_SIZE_CAS(var, oldval, newval) RUBY_ATOMIC_SIZE_CAS(var, oldval, newval)
17
+ #define ATOMIC_SIZE_DEC(var) RUBY_ATOMIC_SIZE_DEC(var)
18
+ #define ATOMIC_SIZE_EXCHANGE(var, val) RUBY_ATOMIC_SIZE_EXCHANGE(var, val)
19
+ #define ATOMIC_SIZE_INC(var) RUBY_ATOMIC_SIZE_INC(var)
20
+ #define ATOMIC_SIZE_SUB(var, val) RUBY_ATOMIC_SIZE_SUB(var, val)
21
+ #define ATOMIC_SUB(var, val) RUBY_ATOMIC_SUB(var, val)
22
+ #define ATOMIC_VALUE_CAS(var, oldval, val) RUBY_ATOMIC_VALUE_CAS(var, oldval, val)
23
+ #define ATOMIC_VALUE_EXCHANGE(var, val) RUBY_ATOMIC_VALUE_EXCHANGE(var, val)