debase-ruby_core_source 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (118) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +5 -0
  4. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/addr2line.h +20 -0
  5. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/builtin.h +117 -0
  6. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/build_assert/build_assert.h +40 -0
  7. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/check_type/check_type.h +63 -0
  8. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/container_of/container_of.h +142 -0
  9. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/list/list.h +789 -0
  10. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ccan/str/str.h +17 -0
  11. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/constant.h +53 -0
  12. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/darray.h +179 -0
  13. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/debug_counter.h +426 -0
  14. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/dln.h +31 -0
  15. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/encindex.h +70 -0
  16. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/eval_intern.h +339 -0
  17. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/hrtime.h +227 -0
  18. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/id.h +299 -0
  19. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/id_table.h +39 -0
  20. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/insns.inc +249 -0
  21. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/insns_info.inc +9159 -0
  22. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/array.h +162 -0
  23. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/basic_operators.h +63 -0
  24. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/bignum.h +244 -0
  25. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/bits.h +564 -0
  26. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/class.h +221 -0
  27. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/cmdlineopt.h +61 -0
  28. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compar.h +29 -0
  29. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compile.h +35 -0
  30. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/compilers.h +107 -0
  31. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/complex.h +29 -0
  32. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/cont.h +32 -0
  33. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/dir.h +16 -0
  34. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enc.h +19 -0
  35. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/encoding.h +32 -0
  36. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enum.h +18 -0
  37. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/enumerator.h +21 -0
  38. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/error.h +191 -0
  39. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/eval.h +32 -0
  40. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/file.h +38 -0
  41. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/fixnum.h +184 -0
  42. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/gc.h +333 -0
  43. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/hash.h +216 -0
  44. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/imemo.h +241 -0
  45. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/inits.h +50 -0
  46. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/io.h +38 -0
  47. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/load.h +18 -0
  48. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/loadpath.h +16 -0
  49. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/math.h +23 -0
  50. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/missing.h +18 -0
  51. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/numeric.h +273 -0
  52. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/object.h +59 -0
  53. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/parse.h +25 -0
  54. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/proc.h +30 -0
  55. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/process.h +138 -0
  56. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/ractor.h +6 -0
  57. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/random.h +16 -0
  58. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/range.h +40 -0
  59. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/rational.h +71 -0
  60. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/re.h +28 -0
  61. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/sanitizers.h +186 -0
  62. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/serial.h +23 -0
  63. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/signal.h +21 -0
  64. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/static_assert.h +16 -0
  65. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/string.h +145 -0
  66. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/struct.h +152 -0
  67. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/symbol.h +42 -0
  68. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/thread.h +61 -0
  69. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/time.h +34 -0
  70. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/transcode.h +20 -0
  71. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/util.h +27 -0
  72. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/variable.h +88 -0
  73. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/vm.h +124 -0
  74. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal/warnings.h +16 -0
  75. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/internal.h +112 -0
  76. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/iseq.h +334 -0
  77. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/known_errors.inc +791 -0
  78. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/method.h +254 -0
  79. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/node.h +514 -0
  80. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/node_name.inc +210 -0
  81. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/opt_sc.inc +109 -0
  82. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/optinsn.inc +128 -0
  83. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/optunifs.inc +43 -0
  84. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/parse.h +230 -0
  85. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/probes_helper.h +42 -0
  86. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ractor_core.h +387 -0
  87. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regenc.h +254 -0
  88. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regint.h +996 -0
  89. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/regparse.h +370 -0
  90. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/revision.h +5 -0
  91. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/rjit.h +103 -0
  92. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/rjit_c.h +165 -0
  93. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ruby_assert.h +14 -0
  94. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/ruby_atomic.h +23 -0
  95. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/shape.h +232 -0
  96. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/siphash.h +48 -0
  97. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/symbol.h +119 -0
  98. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_none.h +20 -0
  99. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_pthread.h +128 -0
  100. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/thread_win32.h +63 -0
  101. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/timev.h +58 -0
  102. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/transcode_data.h +138 -0
  103. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/transient_heap.h +65 -0
  104. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/variable.h +30 -0
  105. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/version.h +65 -0
  106. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm.inc +5497 -0
  107. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_call_iseq_optimized.inc +244 -0
  108. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_callinfo.h +574 -0
  109. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_core.h +2107 -0
  110. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_debug.h +122 -0
  111. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_exec.h +198 -0
  112. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_insnhelper.h +274 -0
  113. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_opts.h +72 -0
  114. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vm_sync.h +137 -0
  115. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/vmtc.inc +243 -0
  116. data/lib/debase/ruby_core_source/ruby-3.3.0-preview1/yjit.h +72 -0
  117. data/lib/debase/ruby_core_source/version.rb +1 -1
  118. metadata +116 -3
@@ -0,0 +1,333 @@
1
+ #ifndef INTERNAL_GC_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_GC_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
+ * @brief Internal header for GC.
10
+ */
11
+ #include "ruby/internal/config.h"
12
+
13
+ #include <stddef.h> /* for size_t */
14
+
15
+ #include "internal/compilers.h" /* for __has_attribute */
16
+ #include "ruby/ruby.h" /* for rb_event_flag_t */
17
+ #include "vm_core.h" /* for GET_EC() */
18
+
19
+ #if defined(__x86_64__) && !defined(_ILP32) && defined(__GNUC__)
20
+ #define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("movq\t%%rsp, %0" : "=r" (*(p)))
21
+ #elif defined(__i386) && defined(__GNUC__)
22
+ #define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("movl\t%%esp, %0" : "=r" (*(p)))
23
+ #elif (defined(__powerpc__) || defined(__powerpc64__)) && defined(__GNUC__) && !defined(_AIX) && !defined(__APPLE__) // Not Apple is NEEDED to unbreak ppc64 build on Darwin. Don't ask.
24
+ #define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("mr\t%0, %%r1" : "=r" (*(p)))
25
+ #elif (defined(__powerpc__) || defined(__powerpc64__)) && defined(__GNUC__) && defined(_AIX)
26
+ #define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("mr %0,1" : "=r" (*(p)))
27
+ #elif defined(__POWERPC__) && defined(__APPLE__) // Darwin ppc and ppc64
28
+ #define SET_MACHINE_STACK_END(p) __asm__ volatile("mr %0, r1" : "=r" (*(p)))
29
+ #elif defined(__aarch64__) && defined(__GNUC__)
30
+ #define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("mov\t%0, sp" : "=r" (*(p)))
31
+ #else
32
+ NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p));
33
+ #define SET_MACHINE_STACK_END(p) rb_gc_set_stack_end(p)
34
+ #define USE_CONSERVATIVE_STACK_END
35
+ #endif
36
+
37
+ /* for GC debug */
38
+
39
+ #ifndef RUBY_MARK_FREE_DEBUG
40
+ #define RUBY_MARK_FREE_DEBUG 0
41
+ #endif
42
+
43
+ #if RUBY_MARK_FREE_DEBUG
44
+ extern int ruby_gc_debug_indent;
45
+
46
+ static inline void
47
+ rb_gc_debug_indent(void)
48
+ {
49
+ ruby_debug_printf("%*s", ruby_gc_debug_indent, "");
50
+ }
51
+
52
+ static inline void
53
+ rb_gc_debug_body(const char *mode, const char *msg, int st, void *ptr)
54
+ {
55
+ if (st == 0) {
56
+ ruby_gc_debug_indent--;
57
+ }
58
+ rb_gc_debug_indent();
59
+ ruby_debug_printf("%s: %s %s (%p)\n", mode, st ? "->" : "<-", msg, ptr);
60
+
61
+ if (st) {
62
+ ruby_gc_debug_indent++;
63
+ }
64
+
65
+ fflush(stdout);
66
+ }
67
+
68
+ #define RUBY_MARK_ENTER(msg) rb_gc_debug_body("mark", (msg), 1, ptr)
69
+ #define RUBY_MARK_LEAVE(msg) rb_gc_debug_body("mark", (msg), 0, ptr)
70
+ #define RUBY_FREE_ENTER(msg) rb_gc_debug_body("free", (msg), 1, ptr)
71
+ #define RUBY_FREE_LEAVE(msg) rb_gc_debug_body("free", (msg), 0, ptr)
72
+ #define RUBY_GC_INFO rb_gc_debug_indent(), ruby_debug_printf
73
+
74
+ #else
75
+ #define RUBY_MARK_ENTER(msg)
76
+ #define RUBY_MARK_LEAVE(msg)
77
+ #define RUBY_FREE_ENTER(msg)
78
+ #define RUBY_FREE_LEAVE(msg)
79
+ #define RUBY_GC_INFO if(0)printf
80
+ #endif
81
+
82
+ #define RUBY_MARK_MOVABLE_UNLESS_NULL(ptr) do { \
83
+ VALUE markobj = (ptr); \
84
+ if (RTEST(markobj)) {rb_gc_mark_movable(markobj);} \
85
+ } while (0)
86
+ #define RUBY_MARK_UNLESS_NULL(ptr) do { \
87
+ VALUE markobj = (ptr); \
88
+ if (RTEST(markobj)) {rb_gc_mark(markobj);} \
89
+ } while (0)
90
+ #define RUBY_FREE_UNLESS_NULL(ptr) if(ptr){ruby_xfree(ptr);(ptr)=NULL;}
91
+
92
+ #if STACK_GROW_DIRECTION > 0
93
+ # define STACK_UPPER(x, a, b) (a)
94
+ #elif STACK_GROW_DIRECTION < 0
95
+ # define STACK_UPPER(x, a, b) (b)
96
+ #else
97
+ RUBY_EXTERN int ruby_stack_grow_direction;
98
+ int ruby_get_stack_grow_direction(volatile VALUE *addr);
99
+ # define stack_growup_p(x) ( \
100
+ (ruby_stack_grow_direction ? \
101
+ ruby_stack_grow_direction : \
102
+ ruby_get_stack_grow_direction(x)) > 0)
103
+ # define STACK_UPPER(x, a, b) (stack_growup_p(x) ? (a) : (b))
104
+ #endif
105
+
106
+ /*
107
+ STACK_GROW_DIR_DETECTION is used with STACK_DIR_UPPER.
108
+
109
+ On most normal systems, stacks grow from high address to lower address. In
110
+ this case, STACK_DIR_UPPER(a, b) will return (b), but on exotic systems where
111
+ the stack grows UP (from low address to high address), it will return (a).
112
+ */
113
+
114
+ #if STACK_GROW_DIRECTION
115
+ #define STACK_GROW_DIR_DETECTION
116
+ #define STACK_DIR_UPPER(a,b) STACK_UPPER(0, (a), (b))
117
+ #else
118
+ #define STACK_GROW_DIR_DETECTION VALUE stack_grow_dir_detection
119
+ #define STACK_DIR_UPPER(a,b) STACK_UPPER(&stack_grow_dir_detection, (a), (b))
120
+ #endif
121
+ #define IS_STACK_DIR_UPPER() STACK_DIR_UPPER(1,0)
122
+
123
+ const char *rb_obj_info(VALUE obj);
124
+ const char *rb_raw_obj_info(char *const buff, const size_t buff_size, VALUE obj);
125
+
126
+ size_t rb_size_pool_slot_size(unsigned char pool_id);
127
+
128
+ struct rb_execution_context_struct; /* in vm_core.h */
129
+ struct rb_objspace; /* in vm_core.h */
130
+
131
+ #ifdef NEWOBJ_OF
132
+ # undef NEWOBJ_OF
133
+ # undef RB_NEWOBJ_OF
134
+ #endif
135
+
136
+ #define NEWOBJ_OF_0(var, T, c, f, s, ec) \
137
+ T *(var) = (T *)(((f) & FL_WB_PROTECTED) ? \
138
+ rb_wb_protected_newobj_of(GET_EC(), (c), (f) & ~FL_WB_PROTECTED, s) : \
139
+ rb_wb_unprotected_newobj_of((c), (f), s))
140
+ #define NEWOBJ_OF_ec(var, T, c, f, s, ec) \
141
+ T *(var) = (T *)(((f) & FL_WB_PROTECTED) ? \
142
+ rb_wb_protected_newobj_of((ec), (c), (f) & ~FL_WB_PROTECTED, s) : \
143
+ rb_wb_unprotected_newobj_of((c), (f), s))
144
+
145
+ #define NEWOBJ_OF(var, T, c, f, s, ec) \
146
+ NEWOBJ_OF_HELPER(ec)(var, T, c, f, s, ec)
147
+
148
+ #define NEWOBJ_OF_HELPER(ec) NEWOBJ_OF_ ## ec
149
+
150
+ #define RB_OBJ_GC_FLAGS_MAX 6 /* used in ext/objspace */
151
+
152
+ #ifndef USE_UNALIGNED_MEMBER_ACCESS
153
+ # define UNALIGNED_MEMBER_ACCESS(expr) (expr)
154
+ #elif ! USE_UNALIGNED_MEMBER_ACCESS
155
+ # define UNALIGNED_MEMBER_ACCESS(expr) (expr)
156
+ #elif ! (__has_warning("-Waddress-of-packed-member") || GCC_VERSION_SINCE(9, 0, 0))
157
+ # define UNALIGNED_MEMBER_ACCESS(expr) (expr)
158
+ #else
159
+ # include "internal/warnings.h"
160
+ # define UNALIGNED_MEMBER_ACCESS(expr) __extension__({ \
161
+ COMPILER_WARNING_PUSH; \
162
+ COMPILER_WARNING_IGNORED(-Waddress-of-packed-member); \
163
+ __typeof__(expr) unaligned_member_access_result = (expr); \
164
+ COMPILER_WARNING_POP; \
165
+ unaligned_member_access_result; \
166
+ })
167
+
168
+ # define UNALIGNED_MEMBER_PTR(ptr, mem) __extension__({ \
169
+ COMPILER_WARNING_PUSH; \
170
+ COMPILER_WARNING_IGNORED(-Waddress-of-packed-member); \
171
+ const volatile void *unaligned_member_ptr_result = &(ptr)->mem; \
172
+ COMPILER_WARNING_POP; \
173
+ (__typeof__((ptr)->mem) *)unaligned_member_ptr_result; \
174
+ })
175
+ #endif
176
+
177
+ #ifndef UNALIGNED_MEMBER_PTR
178
+ # define UNALIGNED_MEMBER_PTR(ptr, mem) UNALIGNED_MEMBER_ACCESS(&(ptr)->mem)
179
+ #endif
180
+
181
+ #define RB_OBJ_WRITE_UNALIGNED(old, slot, young) do { \
182
+ VALUE *_slot = UNALIGNED_MEMBER_ACCESS(slot); \
183
+ RB_OBJ_WRITE(old, _slot, young); \
184
+ } while (0)
185
+
186
+ // We use SIZE_POOL_COUNT number of shape IDs for transitions out of different size pools
187
+ // The next available shape ID will be the SPECIAL_CONST_SHAPE_ID
188
+ #ifndef SIZE_POOL_COUNT
189
+ # define SIZE_POOL_COUNT 5
190
+ #endif
191
+
192
+ typedef struct ractor_newobj_size_pool_cache {
193
+ struct RVALUE *freelist;
194
+ struct heap_page *using_page;
195
+ } rb_ractor_newobj_size_pool_cache_t;
196
+
197
+ typedef struct ractor_newobj_cache {
198
+ size_t incremental_mark_step_allocated_slots;
199
+ rb_ractor_newobj_size_pool_cache_t size_pool_caches[SIZE_POOL_COUNT];
200
+ } rb_ractor_newobj_cache_t;
201
+
202
+ /* gc.c */
203
+ extern VALUE *ruby_initial_gc_stress_ptr;
204
+ extern int ruby_disable_gc;
205
+ RUBY_ATTR_MALLOC void *ruby_mimmalloc(size_t size);
206
+ void ruby_mimfree(void *ptr);
207
+ void rb_objspace_set_event_hook(const rb_event_flag_t event);
208
+ VALUE rb_objspace_gc_enable(struct rb_objspace *);
209
+ VALUE rb_objspace_gc_disable(struct rb_objspace *);
210
+ void ruby_gc_set_params(void);
211
+ void rb_copy_wb_protected_attribute(VALUE dest, VALUE obj);
212
+ #if __has_attribute(alloc_align)
213
+ __attribute__((__alloc_align__(1)))
214
+ #endif
215
+ RUBY_ATTR_MALLOC void *rb_aligned_malloc(size_t, size_t) RUBY_ATTR_ALLOC_SIZE((2));
216
+ size_t rb_size_mul_or_raise(size_t, size_t, VALUE); /* used in compile.c */
217
+ size_t rb_size_mul_add_or_raise(size_t, size_t, size_t, VALUE); /* used in iseq.h */
218
+ RUBY_ATTR_MALLOC void *rb_xmalloc_mul_add(size_t, size_t, size_t);
219
+ RUBY_ATTR_MALLOC void *rb_xcalloc_mul_add(size_t, size_t, size_t);
220
+ void *rb_xrealloc_mul_add(const void *, size_t, size_t, size_t);
221
+ RUBY_ATTR_MALLOC void *rb_xmalloc_mul_add_mul(size_t, size_t, size_t, size_t);
222
+ RUBY_ATTR_MALLOC void *rb_xcalloc_mul_add_mul(size_t, size_t, size_t, size_t);
223
+ static inline void *ruby_sized_xrealloc_inlined(void *ptr, size_t new_size, size_t old_size) RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((2));
224
+ static inline void *ruby_sized_xrealloc2_inlined(void *ptr, size_t new_count, size_t elemsiz, size_t old_count) RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((2, 3));
225
+ static inline void ruby_sized_xfree_inlined(void *ptr, size_t size);
226
+ VALUE rb_class_allocate_instance(VALUE klass);
227
+ void rb_gc_ractor_newobj_cache_clear(rb_ractor_newobj_cache_t *newobj_cache);
228
+ size_t rb_gc_obj_slot_size(VALUE obj);
229
+ bool rb_gc_size_allocatable_p(size_t size);
230
+ int rb_objspace_garbage_object_p(VALUE obj);
231
+ bool rb_gc_is_ptr_to_obj(void *ptr);
232
+ VALUE rb_gc_id2ref_obj_tbl(VALUE objid);
233
+ VALUE rb_define_finalizer_no_check(VALUE obj, VALUE block);
234
+
235
+ void rb_gc_mark_and_move(VALUE *ptr);
236
+
237
+ #define rb_gc_mark_and_move_ptr(ptr) do { \
238
+ VALUE _obj = (VALUE)*(ptr); \
239
+ rb_gc_mark_and_move(&_obj); \
240
+ if (_obj != (VALUE)*(ptr)) *(ptr) = (void *)_obj; \
241
+ } while (0)
242
+
243
+ RUBY_SYMBOL_EXPORT_BEGIN
244
+ /* exports for objspace module */
245
+ size_t rb_objspace_data_type_memsize(VALUE obj);
246
+ void rb_objspace_reachable_objects_from(VALUE obj, void (func)(VALUE, void *), void *data);
247
+ void rb_objspace_reachable_objects_from_root(void (func)(const char *category, VALUE, void *), void *data);
248
+ int rb_objspace_markable_object_p(VALUE obj);
249
+ int rb_objspace_internal_object_p(VALUE obj);
250
+ int rb_objspace_marked_object_p(VALUE obj);
251
+
252
+ void rb_objspace_each_objects(
253
+ int (*callback)(void *start, void *end, size_t stride, void *data),
254
+ void *data);
255
+
256
+ void rb_objspace_each_objects_without_setup(
257
+ int (*callback)(void *, void *, size_t, void *),
258
+ void *data);
259
+
260
+ size_t rb_gc_obj_slot_size(VALUE obj);
261
+
262
+ VALUE rb_gc_disable_no_rest(void);
263
+
264
+
265
+ /* gc.c (export) */
266
+ const char *rb_objspace_data_type_name(VALUE obj);
267
+ VALUE rb_wb_protected_newobj_of(struct rb_execution_context_struct *, VALUE, VALUE, size_t);
268
+ VALUE rb_wb_unprotected_newobj_of(VALUE, VALUE, size_t);
269
+ size_t rb_obj_memsize_of(VALUE);
270
+ void rb_gc_verify_internal_consistency(void);
271
+ size_t rb_obj_gc_flags(VALUE, ID[], size_t);
272
+ void rb_gc_mark_values(long n, const VALUE *values);
273
+ void rb_gc_mark_vm_stack_values(long n, const VALUE *values);
274
+ void *ruby_sized_xrealloc(void *ptr, size_t new_size, size_t old_size) RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((2));
275
+ void *ruby_sized_xrealloc2(void *ptr, size_t new_count, size_t element_size, size_t old_count) RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((2, 3));
276
+ void ruby_sized_xfree(void *x, size_t size);
277
+ RUBY_SYMBOL_EXPORT_END
278
+
279
+ int rb_ec_stack_check(struct rb_execution_context_struct *ec);
280
+ void rb_gc_writebarrier_remember(VALUE obj);
281
+ const char *rb_obj_info(VALUE obj);
282
+
283
+ #if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE) || defined(_WIN32)
284
+
285
+ static inline void *
286
+ ruby_sized_xrealloc_inlined(void *ptr, size_t new_size, size_t old_size)
287
+ {
288
+ return ruby_xrealloc(ptr, new_size);
289
+ }
290
+
291
+ static inline void *
292
+ ruby_sized_xrealloc2_inlined(void *ptr, size_t new_count, size_t elemsiz, size_t old_count)
293
+ {
294
+ return ruby_xrealloc2(ptr, new_count, elemsiz);
295
+ }
296
+
297
+ static inline void
298
+ ruby_sized_xfree_inlined(void *ptr, size_t size)
299
+ {
300
+ ruby_xfree(ptr);
301
+ }
302
+
303
+ # define SIZED_REALLOC_N(x, y, z, w) REALLOC_N(x, y, z)
304
+
305
+ #else
306
+
307
+ static inline void *
308
+ ruby_sized_xrealloc_inlined(void *ptr, size_t new_size, size_t old_size)
309
+ {
310
+ return ruby_sized_xrealloc(ptr, new_size, old_size);
311
+ }
312
+
313
+ static inline void *
314
+ ruby_sized_xrealloc2_inlined(void *ptr, size_t new_count, size_t elemsiz, size_t old_count)
315
+ {
316
+ return ruby_sized_xrealloc2(ptr, new_count, elemsiz, old_count);
317
+ }
318
+
319
+ static inline void
320
+ ruby_sized_xfree_inlined(void *ptr, size_t size)
321
+ {
322
+ ruby_sized_xfree(ptr, size);
323
+ }
324
+
325
+ # define SIZED_REALLOC_N(v, T, m, n) \
326
+ ((v) = (T *)ruby_sized_xrealloc2((void *)(v), (m), sizeof(T), (n)))
327
+
328
+ #endif /* HAVE_MALLOC_USABLE_SIZE */
329
+
330
+ #define ruby_sized_xrealloc ruby_sized_xrealloc_inlined
331
+ #define ruby_sized_xrealloc2 ruby_sized_xrealloc2_inlined
332
+ #define ruby_sized_xfree ruby_sized_xfree_inlined
333
+ #endif /* INTERNAL_GC_H */
@@ -0,0 +1,216 @@
1
+ #ifndef INTERNAL_HASH_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_HASH_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
+ * @brief Internal header for Hash.
10
+ */
11
+ #include "ruby/internal/config.h"
12
+ #include <stddef.h> /* for size_t */
13
+ #include "ruby/internal/stdbool.h" /* for bool */
14
+ #include "ruby/ruby.h" /* for struct RBasic */
15
+ #include "ruby/st.h" /* for struct st_table */
16
+
17
+ #define RHASH_AR_TABLE_MAX_SIZE SIZEOF_VALUE
18
+
19
+ struct ar_table_struct;
20
+ typedef unsigned char ar_hint_t;
21
+
22
+ enum ruby_rhash_flags {
23
+ RHASH_PASS_AS_KEYWORDS = FL_USER1, /* FL 1 */
24
+ RHASH_PROC_DEFAULT = FL_USER2, /* FL 2 */
25
+ RHASH_ST_TABLE_FLAG = FL_USER3, /* FL 3 */
26
+ RHASH_AR_TABLE_SIZE_MASK = (FL_USER4|FL_USER5|FL_USER6|FL_USER7), /* FL 4..7 */
27
+ RHASH_AR_TABLE_SIZE_SHIFT = (FL_USHIFT+4),
28
+ RHASH_AR_TABLE_BOUND_MASK = (FL_USER8|FL_USER9|FL_USER10|FL_USER11), /* FL 8..11 */
29
+ RHASH_AR_TABLE_BOUND_SHIFT = (FL_USHIFT+8),
30
+
31
+ #if USE_TRANSIENT_HEAP
32
+ RHASH_TRANSIENT_FLAG = FL_USER12, /* FL 12 */
33
+ #endif
34
+
35
+ // we can not put it in "enum" because it can exceed "int" range.
36
+ #define RHASH_LEV_MASK (FL_USER13 | FL_USER14 | FL_USER15 | /* FL 13..19 */ \
37
+ FL_USER16 | FL_USER17 | FL_USER18 | FL_USER19)
38
+
39
+ RHASH_LEV_SHIFT = (FL_USHIFT + 13),
40
+ RHASH_LEV_MAX = 127, /* 7 bits */
41
+ };
42
+
43
+ struct RHash {
44
+ struct RBasic basic;
45
+ union {
46
+ st_table *st;
47
+ struct ar_table_struct *ar; /* possibly 0 */
48
+ } as;
49
+ const VALUE ifnone;
50
+ union {
51
+ ar_hint_t ary[RHASH_AR_TABLE_MAX_SIZE];
52
+ VALUE word;
53
+ } ar_hint;
54
+ };
55
+
56
+ #define RHASH(obj) ((struct RHash *)(obj))
57
+
58
+ #ifdef RHASH_IFNONE
59
+ # undef RHASH_IFNONE
60
+ #endif
61
+
62
+ #ifdef RHASH_SIZE
63
+ # undef RHASH_SIZE
64
+ #endif
65
+
66
+ #ifdef RHASH_EMPTY_P
67
+ # undef RHASH_EMPTY_P
68
+ #endif
69
+
70
+ /* hash.c */
71
+ void rb_hash_st_table_set(VALUE hash, st_table *st);
72
+ VALUE rb_hash_default_value(VALUE hash, VALUE key);
73
+ VALUE rb_hash_set_default_proc(VALUE hash, VALUE proc);
74
+ long rb_dbl_long_hash(double d);
75
+ st_table *rb_init_identtable(void);
76
+ st_index_t rb_any_hash(VALUE a);
77
+ int rb_any_cmp(VALUE a, VALUE b);
78
+ VALUE rb_to_hash_type(VALUE obj);
79
+ VALUE rb_hash_key_str(VALUE);
80
+ VALUE rb_hash_values(VALUE hash);
81
+ VALUE rb_hash_rehash(VALUE hash);
82
+ int rb_hash_add_new_element(VALUE hash, VALUE key, VALUE val);
83
+ VALUE rb_hash_set_pair(VALUE hash, VALUE pair);
84
+ int rb_hash_stlike_delete(VALUE hash, st_data_t *pkey, st_data_t *pval);
85
+ int rb_hash_stlike_foreach_with_replace(VALUE hash, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg);
86
+ int rb_hash_stlike_update(VALUE hash, st_data_t key, st_update_callback_func *func, st_data_t arg);
87
+ VALUE rb_ident_hash_new_with_size(st_index_t size);
88
+
89
+ static inline unsigned RHASH_AR_TABLE_SIZE_RAW(VALUE h);
90
+ static inline VALUE RHASH_IFNONE(VALUE h);
91
+ static inline size_t RHASH_SIZE(VALUE h);
92
+ static inline bool RHASH_EMPTY_P(VALUE h);
93
+ static inline bool RHASH_AR_TABLE_P(VALUE h);
94
+ static inline bool RHASH_ST_TABLE_P(VALUE h);
95
+ static inline struct ar_table_struct *RHASH_AR_TABLE(VALUE h);
96
+ static inline st_table *RHASH_ST_TABLE(VALUE h);
97
+ static inline size_t RHASH_ST_SIZE(VALUE h);
98
+ static inline void RHASH_ST_CLEAR(VALUE h);
99
+ static inline bool RHASH_TRANSIENT_P(VALUE h);
100
+ static inline void RHASH_SET_TRANSIENT_FLAG(VALUE h);
101
+ static inline void RHASH_UNSET_TRANSIENT_FLAG(VALUE h);
102
+
103
+ RUBY_SYMBOL_EXPORT_BEGIN
104
+ /* hash.c (export) */
105
+ VALUE rb_hash_delete_entry(VALUE hash, VALUE key);
106
+ VALUE rb_ident_hash_new(void);
107
+ int rb_hash_stlike_foreach(VALUE hash, st_foreach_callback_func *func, st_data_t arg);
108
+ RUBY_SYMBOL_EXPORT_END
109
+
110
+ VALUE rb_hash_new_with_size(st_index_t size);
111
+ VALUE rb_hash_resurrect(VALUE hash);
112
+ int rb_hash_stlike_lookup(VALUE hash, st_data_t key, st_data_t *pval);
113
+ VALUE rb_hash_keys(VALUE hash);
114
+ VALUE rb_hash_has_key(VALUE hash, VALUE key);
115
+ VALUE rb_hash_compare_by_id_p(VALUE hash);
116
+
117
+ st_table *rb_hash_tbl_raw(VALUE hash, const char *file, int line);
118
+ #define RHASH_TBL_RAW(h) rb_hash_tbl_raw(h, __FILE__, __LINE__)
119
+
120
+ VALUE rb_hash_compare_by_id(VALUE hash);
121
+
122
+ static inline bool
123
+ RHASH_AR_TABLE_P(VALUE h)
124
+ {
125
+ return ! FL_TEST_RAW(h, RHASH_ST_TABLE_FLAG);
126
+ }
127
+
128
+ static inline struct ar_table_struct *
129
+ RHASH_AR_TABLE(VALUE h)
130
+ {
131
+ return RHASH(h)->as.ar;
132
+ }
133
+
134
+ static inline st_table *
135
+ RHASH_ST_TABLE(VALUE h)
136
+ {
137
+ return RHASH(h)->as.st;
138
+ }
139
+
140
+ static inline VALUE
141
+ RHASH_IFNONE(VALUE h)
142
+ {
143
+ return RHASH(h)->ifnone;
144
+ }
145
+
146
+ static inline size_t
147
+ RHASH_SIZE(VALUE h)
148
+ {
149
+ if (RHASH_AR_TABLE_P(h)) {
150
+ return RHASH_AR_TABLE_SIZE_RAW(h);
151
+ }
152
+ else {
153
+ return RHASH_ST_SIZE(h);
154
+ }
155
+ }
156
+
157
+ static inline bool
158
+ RHASH_EMPTY_P(VALUE h)
159
+ {
160
+ return RHASH_SIZE(h) == 0;
161
+ }
162
+
163
+ static inline bool
164
+ RHASH_ST_TABLE_P(VALUE h)
165
+ {
166
+ return ! RHASH_AR_TABLE_P(h);
167
+ }
168
+
169
+ static inline size_t
170
+ RHASH_ST_SIZE(VALUE h)
171
+ {
172
+ return RHASH_ST_TABLE(h)->num_entries;
173
+ }
174
+
175
+ static inline void
176
+ RHASH_ST_CLEAR(VALUE h)
177
+ {
178
+ RHASH(h)->as.st = NULL;
179
+ FL_UNSET_RAW(h, RHASH_ST_TABLE_FLAG);
180
+ }
181
+
182
+ static inline unsigned
183
+ RHASH_AR_TABLE_SIZE_RAW(VALUE h)
184
+ {
185
+ VALUE ret = FL_TEST_RAW(h, RHASH_AR_TABLE_SIZE_MASK);
186
+ ret >>= RHASH_AR_TABLE_SIZE_SHIFT;
187
+ return (unsigned)ret;
188
+ }
189
+
190
+ static inline bool
191
+ RHASH_TRANSIENT_P(VALUE h)
192
+ {
193
+ #if USE_TRANSIENT_HEAP
194
+ return FL_TEST_RAW(h, RHASH_TRANSIENT_FLAG);
195
+ #else
196
+ return false;
197
+ #endif
198
+ }
199
+
200
+ static inline void
201
+ RHASH_SET_TRANSIENT_FLAG(VALUE h)
202
+ {
203
+ #if USE_TRANSIENT_HEAP
204
+ FL_SET_RAW(h, RHASH_TRANSIENT_FLAG);
205
+ #endif
206
+ }
207
+
208
+ static inline void
209
+ RHASH_UNSET_TRANSIENT_FLAG(VALUE h)
210
+ {
211
+ #if USE_TRANSIENT_HEAP
212
+ FL_UNSET_RAW(h, RHASH_TRANSIENT_FLAG);
213
+ #endif
214
+ }
215
+
216
+ #endif /* INTERNAL_HASH_H */