debase-ruby_core_source 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +5 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/addr2line.h +20 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/builtin.h +117 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/build_assert/build_assert.h +40 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/check_type/check_type.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/container_of/container_of.h +142 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/list/list.h +789 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/str/str.h +17 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/constant.h +53 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/darray.h +179 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/debug_counter.h +426 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/dln.h +31 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/encindex.h +70 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/eval_intern.h +339 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/hrtime.h +227 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/id.h +299 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/id_table.h +39 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/insns.inc +249 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/insns_info.inc +9159 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/array.h +162 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/basic_operators.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/bignum.h +244 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/bits.h +564 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/class.h +221 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/cmdlineopt.h +61 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compar.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compile.h +35 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compilers.h +107 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/complex.h +29 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/cont.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/dir.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enc.h +19 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/encoding.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enum.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enumerator.h +21 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/error.h +191 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/eval.h +32 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/file.h +38 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/fixnum.h +184 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/gc.h +333 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/hash.h +216 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/imemo.h +241 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/inits.h +50 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/io.h +38 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/load.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/loadpath.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/math.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/missing.h +18 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/numeric.h +273 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/object.h +59 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/parse.h +25 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/proc.h +30 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/process.h +138 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/ractor.h +6 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/random.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/range.h +40 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/rational.h +71 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/re.h +28 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/sanitizers.h +186 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/serial.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/signal.h +21 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/static_assert.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/string.h +145 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/struct.h +152 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/symbol.h +42 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/thread.h +61 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/time.h +34 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/transcode.h +20 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/util.h +27 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/variable.h +88 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/vm.h +124 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/warnings.h +16 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal.h +112 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/iseq.h +334 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/known_errors.inc +791 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/method.h +254 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/node.h +514 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/node_name.inc +210 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/opt_sc.inc +109 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/optinsn.inc +128 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/optunifs.inc +43 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/parse.h +230 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/probes_helper.h +42 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ractor_core.h +387 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regenc.h +254 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regint.h +996 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regparse.h +370 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/revision.h +5 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/rjit.h +103 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/rjit_c.h +165 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ruby_assert.h +14 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ruby_atomic.h +23 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/shape.h +232 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/symbol.h +119 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_none.h +20 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_pthread.h +128 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_win32.h +63 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/timev.h +58 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/transcode_data.h +138 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/transient_heap.h +65 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/variable.h +30 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/version.h +65 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm.inc +5497 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_call_iseq_optimized.inc +244 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_callinfo.h +574 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_core.h +2107 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_debug.h +122 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_exec.h +198 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_insnhelper.h +274 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_opts.h +72 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_sync.h +137 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vmtc.inc +243 -0
- data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/yjit.h +72 -0
- data/lib/debase/ruby_core_source/version.rb +1 -1
- metadata +116 -3
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
#ifndef RUBY_VM_SYNC_H
|
|
2
|
+
#define RUBY_VM_SYNC_H
|
|
3
|
+
|
|
4
|
+
#include "vm_debug.h"
|
|
5
|
+
#include "debug_counter.h"
|
|
6
|
+
|
|
7
|
+
#if USE_RUBY_DEBUG_LOG
|
|
8
|
+
#define LOCATION_ARGS const char *file, int line
|
|
9
|
+
#define LOCATION_PARAMS file, line
|
|
10
|
+
#define APPEND_LOCATION_ARGS , const char *file, int line
|
|
11
|
+
#define APPEND_LOCATION_PARAMS , file, line
|
|
12
|
+
#else
|
|
13
|
+
#define LOCATION_ARGS void
|
|
14
|
+
#define LOCATION_PARAMS
|
|
15
|
+
#define APPEND_LOCATION_ARGS
|
|
16
|
+
#define APPEND_LOCATION_PARAMS
|
|
17
|
+
#endif
|
|
18
|
+
|
|
19
|
+
bool rb_vm_locked_p(void);
|
|
20
|
+
void rb_vm_lock_body(LOCATION_ARGS);
|
|
21
|
+
void rb_vm_unlock_body(LOCATION_ARGS);
|
|
22
|
+
|
|
23
|
+
struct rb_ractor_struct;
|
|
24
|
+
void rb_vm_lock_enter_body_cr(struct rb_ractor_struct *cr, unsigned int *lev APPEND_LOCATION_ARGS);
|
|
25
|
+
void rb_vm_lock_enter_body_nb(unsigned int *lev APPEND_LOCATION_ARGS);
|
|
26
|
+
void rb_vm_lock_enter_body(unsigned int *lev APPEND_LOCATION_ARGS);
|
|
27
|
+
void rb_vm_lock_leave_body(unsigned int *lev APPEND_LOCATION_ARGS);
|
|
28
|
+
void rb_vm_barrier(void);
|
|
29
|
+
|
|
30
|
+
#if RUBY_DEBUG
|
|
31
|
+
// GET_VM()
|
|
32
|
+
#include "vm_core.h"
|
|
33
|
+
#endif
|
|
34
|
+
|
|
35
|
+
RUBY_EXTERN struct rb_ractor_struct *ruby_single_main_ractor; // ractor.c
|
|
36
|
+
|
|
37
|
+
static inline bool
|
|
38
|
+
rb_multi_ractor_p(void)
|
|
39
|
+
{
|
|
40
|
+
if (LIKELY(ruby_single_main_ractor)) {
|
|
41
|
+
// 0 on boot time.
|
|
42
|
+
RUBY_ASSERT(GET_VM()->ractor.cnt <= 1);
|
|
43
|
+
return false;
|
|
44
|
+
}
|
|
45
|
+
else {
|
|
46
|
+
// multi-ractor mode can run ractor.cnt == 1
|
|
47
|
+
return true;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
static inline void
|
|
52
|
+
rb_vm_lock(const char *file, int line)
|
|
53
|
+
{
|
|
54
|
+
RB_DEBUG_COUNTER_INC(vm_sync_lock);
|
|
55
|
+
|
|
56
|
+
if (rb_multi_ractor_p()) {
|
|
57
|
+
rb_vm_lock_body(LOCATION_PARAMS);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
static inline void
|
|
62
|
+
rb_vm_unlock(const char *file, int line)
|
|
63
|
+
{
|
|
64
|
+
if (rb_multi_ractor_p()) {
|
|
65
|
+
rb_vm_unlock_body(LOCATION_PARAMS);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
static inline void
|
|
70
|
+
rb_vm_lock_enter(unsigned int *lev, const char *file, int line)
|
|
71
|
+
{
|
|
72
|
+
RB_DEBUG_COUNTER_INC(vm_sync_lock_enter);
|
|
73
|
+
|
|
74
|
+
if (rb_multi_ractor_p()) {
|
|
75
|
+
rb_vm_lock_enter_body(lev APPEND_LOCATION_PARAMS);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
static inline void
|
|
80
|
+
rb_vm_lock_enter_nb(unsigned int *lev, const char *file, int line)
|
|
81
|
+
{
|
|
82
|
+
RB_DEBUG_COUNTER_INC(vm_sync_lock_enter_nb);
|
|
83
|
+
|
|
84
|
+
if (rb_multi_ractor_p()) {
|
|
85
|
+
rb_vm_lock_enter_body_nb(lev APPEND_LOCATION_PARAMS);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
static inline void
|
|
90
|
+
rb_vm_lock_leave(unsigned int *lev, const char *file, int line)
|
|
91
|
+
{
|
|
92
|
+
if (rb_multi_ractor_p()) {
|
|
93
|
+
rb_vm_lock_leave_body(lev APPEND_LOCATION_PARAMS);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
static inline void
|
|
98
|
+
rb_vm_lock_enter_cr(struct rb_ractor_struct *cr, unsigned int *levp, const char *file, int line)
|
|
99
|
+
{
|
|
100
|
+
RB_DEBUG_COUNTER_INC(vm_sync_lock_enter_cr);
|
|
101
|
+
rb_vm_lock_enter_body_cr(cr, levp APPEND_LOCATION_PARAMS);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
static inline void
|
|
105
|
+
rb_vm_lock_leave_cr(struct rb_ractor_struct *cr, unsigned int *levp, const char *file, int line)
|
|
106
|
+
{
|
|
107
|
+
rb_vm_lock_leave_body(levp APPEND_LOCATION_PARAMS);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
#define RB_VM_LOCKED_P() rb_vm_locked_p()
|
|
111
|
+
|
|
112
|
+
#define RB_VM_LOCK() rb_vm_lock(__FILE__, __LINE__)
|
|
113
|
+
#define RB_VM_UNLOCK() rb_vm_unlock(__FILE__, __LINE__)
|
|
114
|
+
|
|
115
|
+
#define RB_VM_LOCK_ENTER_CR_LEV(cr, levp) rb_vm_lock_enter_cr(cr, levp, __FILE__, __LINE__)
|
|
116
|
+
#define RB_VM_LOCK_LEAVE_CR_LEV(cr, levp) rb_vm_lock_leave_cr(cr, levp, __FILE__, __LINE__)
|
|
117
|
+
#define RB_VM_LOCK_ENTER_LEV(levp) rb_vm_lock_enter(levp, __FILE__, __LINE__)
|
|
118
|
+
#define RB_VM_LOCK_LEAVE_LEV(levp) rb_vm_lock_leave(levp, __FILE__, __LINE__)
|
|
119
|
+
|
|
120
|
+
#define RB_VM_LOCK_ENTER() { unsigned int _lev; RB_VM_LOCK_ENTER_LEV(&_lev);
|
|
121
|
+
#define RB_VM_LOCK_LEAVE() RB_VM_LOCK_LEAVE_LEV(&_lev); }
|
|
122
|
+
|
|
123
|
+
#define RB_VM_LOCK_ENTER_LEV_NB(levp) rb_vm_lock_enter_nb(levp, __FILE__, __LINE__)
|
|
124
|
+
#define RB_VM_LOCK_ENTER_NO_BARRIER() { unsigned int _lev; RB_VM_LOCK_ENTER_LEV_NB(&_lev);
|
|
125
|
+
#define RB_VM_LOCK_LEAVE_NO_BARRIER() RB_VM_LOCK_LEAVE_LEV(&_lev); }
|
|
126
|
+
|
|
127
|
+
#if RUBY_DEBUG > 0
|
|
128
|
+
void RUBY_ASSERT_vm_locking(void);
|
|
129
|
+
void RUBY_ASSERT_vm_unlocking(void);
|
|
130
|
+
#define ASSERT_vm_locking() RUBY_ASSERT_vm_locking()
|
|
131
|
+
#define ASSERT_vm_unlocking() RUBY_ASSERT_vm_unlocking()
|
|
132
|
+
#else
|
|
133
|
+
#define ASSERT_vm_locking()
|
|
134
|
+
#define ASSERT_vm_unlocking()
|
|
135
|
+
#endif
|
|
136
|
+
|
|
137
|
+
#endif // RUBY_VM_SYNC_H
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
/* -*- C -*- */
|
|
2
|
+
|
|
3
|
+
/* This is an auto-generated file and is a part of the programming language
|
|
4
|
+
* Ruby. The person who created a program to generate this file (``I''
|
|
5
|
+
* hereafter) would like to refrain from defining licensing of this generated
|
|
6
|
+
* source code.
|
|
7
|
+
*
|
|
8
|
+
* This file consists of many small parts of codes copyrighted by each author,
|
|
9
|
+
* not only the ``I'' person. Those original authors agree with some
|
|
10
|
+
* open-source license. I believe that the license we agree is the condition
|
|
11
|
+
* mentioned in the file COPYING. It states "4. You may modify and include
|
|
12
|
+
* the part of the software into any other software ...". But the problem is,
|
|
13
|
+
* the license never makes it clear if such modified parts still remain in the
|
|
14
|
+
* same license, or not. The fact that we agree with the source code's
|
|
15
|
+
* licensing terms does not automatically define that of generated ones. This
|
|
16
|
+
* is the reason why this file is under an unclear situation. All what I know
|
|
17
|
+
* is that above provision guarantees this file to exist.
|
|
18
|
+
*
|
|
19
|
+
* Please let me hesitate to declare something about this nuanced contract. I
|
|
20
|
+
* am not in the position to take over other authors' license to merge into my
|
|
21
|
+
* one. Changing them to (say) GPLv3 is not doable by myself. Perhaps someday
|
|
22
|
+
* it might turn out to be okay to say this file is under a license. I wish
|
|
23
|
+
* the situation would become more clear in the future. */
|
|
24
|
+
/*******************************************************************/
|
|
25
|
+
/*******************************************************************/
|
|
26
|
+
/*******************************************************************/
|
|
27
|
+
/**
|
|
28
|
+
This file is for threaded code.
|
|
29
|
+
|
|
30
|
+
----
|
|
31
|
+
This file is auto generated by insns2vm.rb
|
|
32
|
+
DO NOT TOUCH!
|
|
33
|
+
|
|
34
|
+
If you want to fix something, you must edit "tool/ruby_vm/views/vmtc.inc.erb"
|
|
35
|
+
or tool/insns2vm.rb
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
static const void *const insns_address_table[] = {
|
|
39
|
+
LABEL_PTR(nop),
|
|
40
|
+
LABEL_PTR(getlocal),
|
|
41
|
+
LABEL_PTR(setlocal),
|
|
42
|
+
LABEL_PTR(getblockparam),
|
|
43
|
+
LABEL_PTR(setblockparam),
|
|
44
|
+
LABEL_PTR(getblockparamproxy),
|
|
45
|
+
LABEL_PTR(getspecial),
|
|
46
|
+
LABEL_PTR(setspecial),
|
|
47
|
+
LABEL_PTR(getinstancevariable),
|
|
48
|
+
LABEL_PTR(setinstancevariable),
|
|
49
|
+
LABEL_PTR(getclassvariable),
|
|
50
|
+
LABEL_PTR(setclassvariable),
|
|
51
|
+
LABEL_PTR(opt_getconstant_path),
|
|
52
|
+
LABEL_PTR(getconstant),
|
|
53
|
+
LABEL_PTR(setconstant),
|
|
54
|
+
LABEL_PTR(getglobal),
|
|
55
|
+
LABEL_PTR(setglobal),
|
|
56
|
+
LABEL_PTR(putnil),
|
|
57
|
+
LABEL_PTR(putself),
|
|
58
|
+
LABEL_PTR(putobject),
|
|
59
|
+
LABEL_PTR(putspecialobject),
|
|
60
|
+
LABEL_PTR(putstring),
|
|
61
|
+
LABEL_PTR(concatstrings),
|
|
62
|
+
LABEL_PTR(anytostring),
|
|
63
|
+
LABEL_PTR(toregexp),
|
|
64
|
+
LABEL_PTR(intern),
|
|
65
|
+
LABEL_PTR(newarray),
|
|
66
|
+
LABEL_PTR(newarraykwsplat),
|
|
67
|
+
LABEL_PTR(duparray),
|
|
68
|
+
LABEL_PTR(duphash),
|
|
69
|
+
LABEL_PTR(expandarray),
|
|
70
|
+
LABEL_PTR(concatarray),
|
|
71
|
+
LABEL_PTR(splatarray),
|
|
72
|
+
LABEL_PTR(newhash),
|
|
73
|
+
LABEL_PTR(newrange),
|
|
74
|
+
LABEL_PTR(pop),
|
|
75
|
+
LABEL_PTR(dup),
|
|
76
|
+
LABEL_PTR(dupn),
|
|
77
|
+
LABEL_PTR(swap),
|
|
78
|
+
LABEL_PTR(opt_reverse),
|
|
79
|
+
LABEL_PTR(topn),
|
|
80
|
+
LABEL_PTR(setn),
|
|
81
|
+
LABEL_PTR(adjuststack),
|
|
82
|
+
LABEL_PTR(defined),
|
|
83
|
+
LABEL_PTR(definedivar),
|
|
84
|
+
LABEL_PTR(checkmatch),
|
|
85
|
+
LABEL_PTR(checkkeyword),
|
|
86
|
+
LABEL_PTR(checktype),
|
|
87
|
+
LABEL_PTR(defineclass),
|
|
88
|
+
LABEL_PTR(definemethod),
|
|
89
|
+
LABEL_PTR(definesmethod),
|
|
90
|
+
LABEL_PTR(send),
|
|
91
|
+
LABEL_PTR(opt_send_without_block),
|
|
92
|
+
LABEL_PTR(objtostring),
|
|
93
|
+
LABEL_PTR(opt_str_freeze),
|
|
94
|
+
LABEL_PTR(opt_nil_p),
|
|
95
|
+
LABEL_PTR(opt_str_uminus),
|
|
96
|
+
LABEL_PTR(opt_newarray_send),
|
|
97
|
+
LABEL_PTR(invokesuper),
|
|
98
|
+
LABEL_PTR(invokeblock),
|
|
99
|
+
LABEL_PTR(leave),
|
|
100
|
+
LABEL_PTR(throw),
|
|
101
|
+
LABEL_PTR(jump),
|
|
102
|
+
LABEL_PTR(branchif),
|
|
103
|
+
LABEL_PTR(branchunless),
|
|
104
|
+
LABEL_PTR(branchnil),
|
|
105
|
+
LABEL_PTR(once),
|
|
106
|
+
LABEL_PTR(opt_case_dispatch),
|
|
107
|
+
LABEL_PTR(opt_plus),
|
|
108
|
+
LABEL_PTR(opt_minus),
|
|
109
|
+
LABEL_PTR(opt_mult),
|
|
110
|
+
LABEL_PTR(opt_div),
|
|
111
|
+
LABEL_PTR(opt_mod),
|
|
112
|
+
LABEL_PTR(opt_eq),
|
|
113
|
+
LABEL_PTR(opt_neq),
|
|
114
|
+
LABEL_PTR(opt_lt),
|
|
115
|
+
LABEL_PTR(opt_le),
|
|
116
|
+
LABEL_PTR(opt_gt),
|
|
117
|
+
LABEL_PTR(opt_ge),
|
|
118
|
+
LABEL_PTR(opt_ltlt),
|
|
119
|
+
LABEL_PTR(opt_and),
|
|
120
|
+
LABEL_PTR(opt_or),
|
|
121
|
+
LABEL_PTR(opt_aref),
|
|
122
|
+
LABEL_PTR(opt_aset),
|
|
123
|
+
LABEL_PTR(opt_aset_with),
|
|
124
|
+
LABEL_PTR(opt_aref_with),
|
|
125
|
+
LABEL_PTR(opt_length),
|
|
126
|
+
LABEL_PTR(opt_size),
|
|
127
|
+
LABEL_PTR(opt_empty_p),
|
|
128
|
+
LABEL_PTR(opt_succ),
|
|
129
|
+
LABEL_PTR(opt_not),
|
|
130
|
+
LABEL_PTR(opt_regexpmatch2),
|
|
131
|
+
LABEL_PTR(invokebuiltin),
|
|
132
|
+
LABEL_PTR(opt_invokebuiltin_delegate),
|
|
133
|
+
LABEL_PTR(opt_invokebuiltin_delegate_leave),
|
|
134
|
+
LABEL_PTR(getlocal_WC_0),
|
|
135
|
+
LABEL_PTR(getlocal_WC_1),
|
|
136
|
+
LABEL_PTR(setlocal_WC_0),
|
|
137
|
+
LABEL_PTR(setlocal_WC_1),
|
|
138
|
+
LABEL_PTR(putobject_INT2FIX_0_),
|
|
139
|
+
LABEL_PTR(putobject_INT2FIX_1_),
|
|
140
|
+
LABEL_PTR(trace_nop),
|
|
141
|
+
LABEL_PTR(trace_getlocal),
|
|
142
|
+
LABEL_PTR(trace_setlocal),
|
|
143
|
+
LABEL_PTR(trace_getblockparam),
|
|
144
|
+
LABEL_PTR(trace_setblockparam),
|
|
145
|
+
LABEL_PTR(trace_getblockparamproxy),
|
|
146
|
+
LABEL_PTR(trace_getspecial),
|
|
147
|
+
LABEL_PTR(trace_setspecial),
|
|
148
|
+
LABEL_PTR(trace_getinstancevariable),
|
|
149
|
+
LABEL_PTR(trace_setinstancevariable),
|
|
150
|
+
LABEL_PTR(trace_getclassvariable),
|
|
151
|
+
LABEL_PTR(trace_setclassvariable),
|
|
152
|
+
LABEL_PTR(trace_opt_getconstant_path),
|
|
153
|
+
LABEL_PTR(trace_getconstant),
|
|
154
|
+
LABEL_PTR(trace_setconstant),
|
|
155
|
+
LABEL_PTR(trace_getglobal),
|
|
156
|
+
LABEL_PTR(trace_setglobal),
|
|
157
|
+
LABEL_PTR(trace_putnil),
|
|
158
|
+
LABEL_PTR(trace_putself),
|
|
159
|
+
LABEL_PTR(trace_putobject),
|
|
160
|
+
LABEL_PTR(trace_putspecialobject),
|
|
161
|
+
LABEL_PTR(trace_putstring),
|
|
162
|
+
LABEL_PTR(trace_concatstrings),
|
|
163
|
+
LABEL_PTR(trace_anytostring),
|
|
164
|
+
LABEL_PTR(trace_toregexp),
|
|
165
|
+
LABEL_PTR(trace_intern),
|
|
166
|
+
LABEL_PTR(trace_newarray),
|
|
167
|
+
LABEL_PTR(trace_newarraykwsplat),
|
|
168
|
+
LABEL_PTR(trace_duparray),
|
|
169
|
+
LABEL_PTR(trace_duphash),
|
|
170
|
+
LABEL_PTR(trace_expandarray),
|
|
171
|
+
LABEL_PTR(trace_concatarray),
|
|
172
|
+
LABEL_PTR(trace_splatarray),
|
|
173
|
+
LABEL_PTR(trace_newhash),
|
|
174
|
+
LABEL_PTR(trace_newrange),
|
|
175
|
+
LABEL_PTR(trace_pop),
|
|
176
|
+
LABEL_PTR(trace_dup),
|
|
177
|
+
LABEL_PTR(trace_dupn),
|
|
178
|
+
LABEL_PTR(trace_swap),
|
|
179
|
+
LABEL_PTR(trace_opt_reverse),
|
|
180
|
+
LABEL_PTR(trace_topn),
|
|
181
|
+
LABEL_PTR(trace_setn),
|
|
182
|
+
LABEL_PTR(trace_adjuststack),
|
|
183
|
+
LABEL_PTR(trace_defined),
|
|
184
|
+
LABEL_PTR(trace_definedivar),
|
|
185
|
+
LABEL_PTR(trace_checkmatch),
|
|
186
|
+
LABEL_PTR(trace_checkkeyword),
|
|
187
|
+
LABEL_PTR(trace_checktype),
|
|
188
|
+
LABEL_PTR(trace_defineclass),
|
|
189
|
+
LABEL_PTR(trace_definemethod),
|
|
190
|
+
LABEL_PTR(trace_definesmethod),
|
|
191
|
+
LABEL_PTR(trace_send),
|
|
192
|
+
LABEL_PTR(trace_opt_send_without_block),
|
|
193
|
+
LABEL_PTR(trace_objtostring),
|
|
194
|
+
LABEL_PTR(trace_opt_str_freeze),
|
|
195
|
+
LABEL_PTR(trace_opt_nil_p),
|
|
196
|
+
LABEL_PTR(trace_opt_str_uminus),
|
|
197
|
+
LABEL_PTR(trace_opt_newarray_send),
|
|
198
|
+
LABEL_PTR(trace_invokesuper),
|
|
199
|
+
LABEL_PTR(trace_invokeblock),
|
|
200
|
+
LABEL_PTR(trace_leave),
|
|
201
|
+
LABEL_PTR(trace_throw),
|
|
202
|
+
LABEL_PTR(trace_jump),
|
|
203
|
+
LABEL_PTR(trace_branchif),
|
|
204
|
+
LABEL_PTR(trace_branchunless),
|
|
205
|
+
LABEL_PTR(trace_branchnil),
|
|
206
|
+
LABEL_PTR(trace_once),
|
|
207
|
+
LABEL_PTR(trace_opt_case_dispatch),
|
|
208
|
+
LABEL_PTR(trace_opt_plus),
|
|
209
|
+
LABEL_PTR(trace_opt_minus),
|
|
210
|
+
LABEL_PTR(trace_opt_mult),
|
|
211
|
+
LABEL_PTR(trace_opt_div),
|
|
212
|
+
LABEL_PTR(trace_opt_mod),
|
|
213
|
+
LABEL_PTR(trace_opt_eq),
|
|
214
|
+
LABEL_PTR(trace_opt_neq),
|
|
215
|
+
LABEL_PTR(trace_opt_lt),
|
|
216
|
+
LABEL_PTR(trace_opt_le),
|
|
217
|
+
LABEL_PTR(trace_opt_gt),
|
|
218
|
+
LABEL_PTR(trace_opt_ge),
|
|
219
|
+
LABEL_PTR(trace_opt_ltlt),
|
|
220
|
+
LABEL_PTR(trace_opt_and),
|
|
221
|
+
LABEL_PTR(trace_opt_or),
|
|
222
|
+
LABEL_PTR(trace_opt_aref),
|
|
223
|
+
LABEL_PTR(trace_opt_aset),
|
|
224
|
+
LABEL_PTR(trace_opt_aset_with),
|
|
225
|
+
LABEL_PTR(trace_opt_aref_with),
|
|
226
|
+
LABEL_PTR(trace_opt_length),
|
|
227
|
+
LABEL_PTR(trace_opt_size),
|
|
228
|
+
LABEL_PTR(trace_opt_empty_p),
|
|
229
|
+
LABEL_PTR(trace_opt_succ),
|
|
230
|
+
LABEL_PTR(trace_opt_not),
|
|
231
|
+
LABEL_PTR(trace_opt_regexpmatch2),
|
|
232
|
+
LABEL_PTR(trace_invokebuiltin),
|
|
233
|
+
LABEL_PTR(trace_opt_invokebuiltin_delegate),
|
|
234
|
+
LABEL_PTR(trace_opt_invokebuiltin_delegate_leave),
|
|
235
|
+
LABEL_PTR(trace_getlocal_WC_0),
|
|
236
|
+
LABEL_PTR(trace_getlocal_WC_1),
|
|
237
|
+
LABEL_PTR(trace_setlocal_WC_0),
|
|
238
|
+
LABEL_PTR(trace_setlocal_WC_1),
|
|
239
|
+
LABEL_PTR(trace_putobject_INT2FIX_0_),
|
|
240
|
+
LABEL_PTR(trace_putobject_INT2FIX_1_),
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
ASSERT_VM_INSTRUCTION_SIZE(insns_address_table);
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
#ifndef YJIT_H
|
|
2
|
+
#define YJIT_H 1
|
|
3
|
+
//
|
|
4
|
+
// This file contains definitions YJIT exposes to the CRuby codebase
|
|
5
|
+
//
|
|
6
|
+
|
|
7
|
+
#include "ruby/internal/config.h"
|
|
8
|
+
#include "ruby_assert.h" // for RUBY_DEBUG
|
|
9
|
+
#include "vm_core.h"
|
|
10
|
+
#include "method.h"
|
|
11
|
+
|
|
12
|
+
// YJIT_STATS controls whether to support runtime counters in generated code
|
|
13
|
+
// and in the interpreter.
|
|
14
|
+
#ifndef YJIT_STATS
|
|
15
|
+
# define YJIT_STATS RUBY_DEBUG
|
|
16
|
+
#endif
|
|
17
|
+
|
|
18
|
+
#if USE_YJIT
|
|
19
|
+
|
|
20
|
+
// We generate x86 or arm64 assembly
|
|
21
|
+
#if defined(_WIN32) ? defined(_M_AMD64) : (defined(__x86_64__) || defined(__aarch64__))
|
|
22
|
+
// x86_64 platforms without mingw/msys or x64-mswin
|
|
23
|
+
#else
|
|
24
|
+
# error YJIT unsupported platform
|
|
25
|
+
#endif
|
|
26
|
+
|
|
27
|
+
// Expose these as declarations since we are building YJIT.
|
|
28
|
+
bool rb_yjit_enabled_p(void);
|
|
29
|
+
bool rb_yjit_compile_new_iseqs(void);
|
|
30
|
+
unsigned rb_yjit_call_threshold(void);
|
|
31
|
+
void rb_yjit_invalidate_all_method_lookup_assumptions(void);
|
|
32
|
+
void rb_yjit_cme_invalidate(rb_callable_method_entry_t *cme);
|
|
33
|
+
void rb_yjit_collect_vm_usage_insn(int insn);
|
|
34
|
+
void rb_yjit_collect_binding_alloc(void);
|
|
35
|
+
void rb_yjit_collect_binding_set(void);
|
|
36
|
+
bool rb_yjit_compile_iseq(const rb_iseq_t *iseq, rb_execution_context_t *ec);
|
|
37
|
+
void rb_yjit_init(void);
|
|
38
|
+
void rb_yjit_bop_redefined(int redefined_flag, enum ruby_basic_operators bop);
|
|
39
|
+
void rb_yjit_constant_state_changed(ID id);
|
|
40
|
+
void rb_yjit_iseq_mark(void *payload);
|
|
41
|
+
void rb_yjit_iseq_update_references(void *payload);
|
|
42
|
+
void rb_yjit_iseq_free(void *payload);
|
|
43
|
+
void rb_yjit_before_ractor_spawn(void);
|
|
44
|
+
void rb_yjit_constant_ic_update(const rb_iseq_t *const iseq, IC ic, unsigned insn_idx);
|
|
45
|
+
void rb_yjit_tracing_invalidate_all(void);
|
|
46
|
+
|
|
47
|
+
#else
|
|
48
|
+
// !USE_YJIT
|
|
49
|
+
// In these builds, YJIT could never be turned on. Provide dummy implementations.
|
|
50
|
+
|
|
51
|
+
static inline bool rb_yjit_enabled_p(void) { return false; }
|
|
52
|
+
static inline bool rb_yjit_compile_new_iseqs(void) { return false; }
|
|
53
|
+
static inline unsigned rb_yjit_call_threshold(void) { return UINT_MAX; }
|
|
54
|
+
static inline void rb_yjit_invalidate_all_method_lookup_assumptions(void) {}
|
|
55
|
+
static inline void rb_yjit_cme_invalidate(rb_callable_method_entry_t *cme) {}
|
|
56
|
+
static inline void rb_yjit_collect_vm_usage_insn(int insn) {}
|
|
57
|
+
static inline void rb_yjit_collect_binding_alloc(void) {}
|
|
58
|
+
static inline void rb_yjit_collect_binding_set(void) {}
|
|
59
|
+
static inline bool rb_yjit_compile_iseq(const rb_iseq_t *iseq, rb_execution_context_t *ec) { return false; }
|
|
60
|
+
static inline void rb_yjit_init(void) {}
|
|
61
|
+
static inline void rb_yjit_bop_redefined(int redefined_flag, enum ruby_basic_operators bop) {}
|
|
62
|
+
static inline void rb_yjit_constant_state_changed(ID id) {}
|
|
63
|
+
static inline void rb_yjit_iseq_mark(void *payload) {}
|
|
64
|
+
static inline void rb_yjit_iseq_update_references(void *payload) {}
|
|
65
|
+
static inline void rb_yjit_iseq_free(void *payload) {}
|
|
66
|
+
static inline void rb_yjit_before_ractor_spawn(void) {}
|
|
67
|
+
static inline void rb_yjit_constant_ic_update(const rb_iseq_t *const iseq, IC ic, unsigned insn_idx) {}
|
|
68
|
+
static inline void rb_yjit_tracing_invalidate_all(void) {}
|
|
69
|
+
|
|
70
|
+
#endif // #if USE_YJIT
|
|
71
|
+
|
|
72
|
+
#endif // #ifndef YJIT_H
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: debase-ruby_core_source
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mark Moseley
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2023-05-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: archive-tar-minitar
|
|
@@ -2138,6 +2138,119 @@ files:
|
|
|
2138
2138
|
- lib/debase/ruby_core_source/ruby-3.2.0-p0/vm_sync.h
|
|
2139
2139
|
- lib/debase/ruby_core_source/ruby-3.2.0-p0/vmtc.inc
|
|
2140
2140
|
- lib/debase/ruby_core_source/ruby-3.2.0-p0/yjit.h
|
|
2141
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/addr2line.h
|
|
2142
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/builtin.h
|
|
2143
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/build_assert/build_assert.h
|
|
2144
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/check_type/check_type.h
|
|
2145
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/container_of/container_of.h
|
|
2146
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/list/list.h
|
|
2147
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/str/str.h
|
|
2148
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/constant.h
|
|
2149
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/darray.h
|
|
2150
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/debug_counter.h
|
|
2151
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/dln.h
|
|
2152
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/encindex.h
|
|
2153
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/eval_intern.h
|
|
2154
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/hrtime.h
|
|
2155
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/id.h
|
|
2156
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/id_table.h
|
|
2157
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/insns.inc
|
|
2158
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/insns_info.inc
|
|
2159
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal.h
|
|
2160
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/array.h
|
|
2161
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/basic_operators.h
|
|
2162
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/bignum.h
|
|
2163
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/bits.h
|
|
2164
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/class.h
|
|
2165
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/cmdlineopt.h
|
|
2166
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compar.h
|
|
2167
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compile.h
|
|
2168
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compilers.h
|
|
2169
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/complex.h
|
|
2170
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/cont.h
|
|
2171
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/dir.h
|
|
2172
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enc.h
|
|
2173
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/encoding.h
|
|
2174
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enum.h
|
|
2175
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enumerator.h
|
|
2176
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/error.h
|
|
2177
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/eval.h
|
|
2178
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/file.h
|
|
2179
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/fixnum.h
|
|
2180
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/gc.h
|
|
2181
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/hash.h
|
|
2182
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/imemo.h
|
|
2183
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/inits.h
|
|
2184
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/io.h
|
|
2185
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/load.h
|
|
2186
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/loadpath.h
|
|
2187
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/math.h
|
|
2188
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/missing.h
|
|
2189
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/numeric.h
|
|
2190
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/object.h
|
|
2191
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/parse.h
|
|
2192
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/proc.h
|
|
2193
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/process.h
|
|
2194
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/ractor.h
|
|
2195
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/random.h
|
|
2196
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/range.h
|
|
2197
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/rational.h
|
|
2198
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/re.h
|
|
2199
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/sanitizers.h
|
|
2200
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/serial.h
|
|
2201
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/signal.h
|
|
2202
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/static_assert.h
|
|
2203
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/string.h
|
|
2204
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/struct.h
|
|
2205
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/symbol.h
|
|
2206
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/thread.h
|
|
2207
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/time.h
|
|
2208
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/transcode.h
|
|
2209
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/util.h
|
|
2210
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/variable.h
|
|
2211
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/vm.h
|
|
2212
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/warnings.h
|
|
2213
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/iseq.h
|
|
2214
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/known_errors.inc
|
|
2215
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/method.h
|
|
2216
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/node.h
|
|
2217
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/node_name.inc
|
|
2218
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/opt_sc.inc
|
|
2219
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/optinsn.inc
|
|
2220
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/optunifs.inc
|
|
2221
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/parse.h
|
|
2222
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/probes_helper.h
|
|
2223
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/ractor_core.h
|
|
2224
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/regenc.h
|
|
2225
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/regint.h
|
|
2226
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/regparse.h
|
|
2227
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/revision.h
|
|
2228
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/rjit.h
|
|
2229
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/rjit_c.h
|
|
2230
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/ruby_assert.h
|
|
2231
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/ruby_atomic.h
|
|
2232
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/shape.h
|
|
2233
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/siphash.h
|
|
2234
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/symbol.h
|
|
2235
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_none.h
|
|
2236
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_pthread.h
|
|
2237
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_win32.h
|
|
2238
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/timev.h
|
|
2239
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/transcode_data.h
|
|
2240
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/transient_heap.h
|
|
2241
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/variable.h
|
|
2242
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/version.h
|
|
2243
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm.inc
|
|
2244
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_call_iseq_optimized.inc
|
|
2245
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_callinfo.h
|
|
2246
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_core.h
|
|
2247
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_debug.h
|
|
2248
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_exec.h
|
|
2249
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_insnhelper.h
|
|
2250
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_opts.h
|
|
2251
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_sync.h
|
|
2252
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/vmtc.inc
|
|
2253
|
+
- lib/debase/ruby_core_source/ruby-3.3.0-preview1/yjit.h
|
|
2141
2254
|
- lib/debase/ruby_core_source/version.rb
|
|
2142
2255
|
homepage: https://github.com/ruby-debug/debase-ruby_core_source
|
|
2143
2256
|
licenses:
|
|
@@ -2158,7 +2271,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
2158
2271
|
- !ruby/object:Gem::Version
|
|
2159
2272
|
version: 1.3.6
|
|
2160
2273
|
requirements: []
|
|
2161
|
-
rubygems_version: 3.
|
|
2274
|
+
rubygems_version: 3.5.0.dev
|
|
2162
2275
|
signing_key:
|
|
2163
2276
|
specification_version: 4
|
|
2164
2277
|
summary: Provide Ruby core source files
|