1#ifndef INTERNAL_IMEMO_H
2#define INTERNAL_IMEMO_H
11#include "ruby/internal/config.h"
14#include "internal/array.h"
18#define IMEMO_MASK (FL_USER0 | FL_USER1 | FL_USER2 | FL_USER3 | FL_USER4)
21#define IMEMO_FL_USHIFT (FL_USHIFT + 5)
22#define IMEMO_FL_USER0 FL_USER5
23#define IMEMO_FL_USER1 FL_USER6
24#define IMEMO_FL_USER2 FL_USER7
25#define IMEMO_FL_USER3 FL_USER8
26#define IMEMO_FL_USER4 FL_USER9
27#define IMEMO_FL_USER5 FL_USER10
28#define IMEMO_FL_USER6 FL_USER11
43 imemo_constcache = 12,
45 imemo_subclasses = 14,
63 const VALUE throw_obj;
68#define THROW_DATA_CONSUMED IMEMO_FL_USER0
73#if SIZEOF_INT * 2 > SIZEOF_VALUE
94#define IFUNC_YIELD_OPTIMIZABLE IMEMO_FL_USER0
110#define MEMO_U3_IS_VALUE IMEMO_FL_USER0
127#define IMEMO_NEW(T, type, v0) ((T *)rb_imemo_new((type), (v0), sizeof(T), false))
128#define SHAREABLE_IMEMO_NEW(T, type, v0) ((T *)rb_imemo_new((type), (v0), sizeof(T), true))
132#define THROW_DATA_P(err) imemo_throw_data_p((VALUE)err)
133#define MEMO_CAST(m) ((struct MEMO *)(m))
134#define MEMO_FOR(type, value) ((type *)RARRAY_PTR(value))
135#define NEW_MEMO_FOR(type, value) \
136 ((value) = rb_ary_hidden_new_fill(type_roomof(type, VALUE)), MEMO_FOR(type, value))
137#define NEW_PARTIAL_MEMO_FOR(type, value, member) \
138 ((value) = rb_ary_hidden_new_fill(type_roomof(type, VALUE)), \
139 rb_ary_set_len((value), offsetof(type, member) / sizeof(VALUE)), \
140 MEMO_FOR(type, value))
142#ifndef RUBY_RUBYPARSER_H
145VALUE rb_imemo_new(
enum imemo_type
type,
VALUE v0,
size_t size,
bool is_shareable);
149static inline enum imemo_type imemo_type(
VALUE imemo);
150static inline int imemo_type_p(
VALUE imemo,
enum imemo_type imemo_type);
151static inline bool imemo_throw_data_p(
VALUE imemo);
153static inline void *RB_IMEMO_TMPBUF_PTR(
VALUE v);
154static inline void MEMO_V1_SET(
struct MEMO *m,
VALUE v);
155static inline void MEMO_V2_SET(
struct MEMO *m,
VALUE v);
157size_t rb_imemo_memsize(
VALUE obj);
158void rb_imemo_mark_and_move(
VALUE obj,
bool reference_updating);
159void rb_imemo_free(
VALUE obj);
161RUBY_SYMBOL_EXPORT_BEGIN
162const char *rb_imemo_name(
enum imemo_type
type);
163ID rb_imemo_callinfo_mid(
VALUE obj);
169RUBY_SYMBOL_EXPORT_END
171static inline enum imemo_type
172imemo_type(
VALUE imemo)
178imemo_type_p(
VALUE imemo,
enum imemo_type imemo_type)
185 return expected_type == (
RBASIC(imemo)->flags & mask);
192#define IMEMO_TYPE_P(v, t) imemo_type_p((VALUE)(v), t)
195imemo_throw_data_p(
VALUE imemo)
207RB_IMEMO_TMPBUF_PTR(
VALUE v)
214rb_imemo_tmpbuf_new_from_an_RString(
VALUE str)
220 len = RSTRING_LEN(str);
221 rb_alloc_tmp_buffer(&imemo,
len,
false);
222 memcpy(RB_IMEMO_TMPBUF_PTR(imemo), RSTRING_PTR(str),
len);
241rb_imemo_cdhash_tbl(
VALUE obj)
261STATIC_ASSERT(imemo_fields_embed_offset, offsetof(
struct RObject, as.ary) == offsetof(
struct rb_fields, as.embed.fields));
263#define IMEMO_OBJ_FIELDS(fields) ((struct rb_fields *)fields)
265#define IMEMO_SUBCLASSES_HEAP IMEMO_FL_USER0
278rb_imemo_subclasses_entries(
VALUE v)
281 return FL_TEST_RAW(v, IMEMO_SUBCLASSES_HEAP) ? s->as.external : s->as.embed;
284VALUE rb_imemo_fields_new(
VALUE owner, uint32_t shape_id,
bool shareable);
285VALUE rb_imemo_subclasses_new(uint32_t capacity);
286VALUE rb_imemo_fields_new_complex(
VALUE owner, uint32_t shape_id,
size_t capa,
bool shareable);
287VALUE rb_imemo_fields_new_complex_empty(
VALUE owner);
289void rb_imemo_fields_clear(
VALUE fields_obj);
292rb_imemo_fields_owner(
VALUE fields_obj)
294 RUBY_ASSERT(IMEMO_TYPE_P(fields_obj, imemo_fields));
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define T_IMEMO
Old name of RUBY_T_IMEMO.
#define CLASS_OF
Old name of rb_class_of.
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
#define FL_USHIFT
Old name of RUBY_FL_USHIFT.
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
#define UNLIMITED_ARGUMENTS
This macro is used in conjunction with rb_check_arity().
int capa
Designed capacity of the buffer.
int len
Length of the buffer.
rb_block_call_func * rb_block_call_func_t
Shorthand type that represents an iterator-written-in-C function pointer.
VALUE type(ANYARGS)
ANYARGS-ed function type.
#define RBASIC(obj)
Convenient casting macro.
#define StringValue(v)
Ensures that the parameter object is a String.
static bool RB_SPECIAL_CONST_P(VALUE obj)
Checks if the given object is of enum ruby_special_consts.
Ruby object's base components.
IFUNC (Internal FUNCtion)
const VALUE cref_or_me
class reference or rb_method_entry_t
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
#define SIZEOF_VALUE
Identical to sizeof(VALUE), except it is a macro that can also be used inside of preprocessor directi...
uintptr_t VALUE
Type that represents a Ruby object.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
@ RUBY_T_MASK
Bitmask of ruby_value_type.