10#include "internal/sanitizers.h"
11#include "internal/string.h"
12#include "internal/hash.h"
13#include "internal/variable.h"
14#include "internal/compile.h"
15#include "internal/class.h"
16#include "internal/fixnum.h"
17#include "internal/numeric.h"
18#include "internal/gc.h"
20#include "vm_callinfo.h"
23#include "insns_info.inc"
26#include "vm_insnhelper.h"
28#include "probes_helper.h"
31#include "internal/cont.h"
44 ROBJECT_OFFSET_AS_ARY = offsetof(
struct RObject, as.ary),
49 RUBY_OFFSET_RSTRING_LEN = offsetof(
struct RString,
len)
54STATIC_ASSERT(64b_size_t, SIZE_MAX == UINT64_MAX);
57STATIC_ASSERT(size_t_no_padding_bits,
sizeof(
size_t) ==
sizeof(uint64_t));
61STATIC_ASSERT(pointer_tagging_scheme,
USE_FLONUM);
79rb_yjit_mark_writable(
void *mem_block, uint32_t mem_size)
81 return mprotect(mem_block, mem_size, PROT_READ | PROT_WRITE) == 0;
85rb_yjit_mark_executable(
void *mem_block, uint32_t mem_size)
92 if (mprotect(mem_block, mem_size, PROT_READ | PROT_EXEC)) {
93 rb_bug(
"Couldn't make JIT page (%p, %lu bytes) executable, errno: %s",
94 mem_block, (
unsigned long)mem_size, strerror(
errno));
100rb_yjit_mark_unused(
void *mem_block, uint32_t mem_size)
105 madvise(mem_block, mem_size, MADV_DONTNEED);
109 return mprotect(mem_block, mem_size, PROT_NONE) == 0;
113rb_yjit_array_len(
VALUE a)
120rb_yjit_icache_invalidate(
void *start,
void *end)
126 __builtin___clear_cache(start, end);
127#elif defined(__aarch64__)
128#error No instruction cache clear available with this compiler on Aarch64!
132# define PTR2NUM(x) (rb_int2inum((intptr_t)(void *)(x)))
139 VALUE frame_id = PTR2NUM(frame);
141 if (
RTEST(rb_hash_aref(hash, frame_id))) {
145 VALUE frame_info = rb_hash_new();
158 rb_hash_aset(frame_info,
ID2SYM(rb_intern(
"name")), name);
159 rb_hash_aset(frame_info,
ID2SYM(rb_intern(
"file")), file);
160 rb_hash_aset(frame_info,
ID2SYM(rb_intern(
"samples")),
INT2NUM(0));
161 rb_hash_aset(frame_info,
ID2SYM(rb_intern(
"total_samples")),
INT2NUM(0));
162 rb_hash_aset(frame_info,
ID2SYM(rb_intern(
"edges")), rb_hash_new());
163 rb_hash_aset(frame_info,
ID2SYM(rb_intern(
"lines")), rb_hash_new());
166 rb_hash_aset(frame_info,
ID2SYM(rb_intern(
"line")), line);
169 rb_hash_aset(hash, frame_id, frame_info);
179rb_yjit_exit_locations_dict(
VALUE *yjit_raw_samples,
int *yjit_line_samples,
int samples_len)
181 VALUE result = rb_hash_new();
182 VALUE raw_samples = rb_ary_new_capa(samples_len);
183 VALUE line_samples = rb_ary_new_capa(samples_len);
184 VALUE frames = rb_hash_new();
189 while (idx < samples_len) {
190 int num = (int)yjit_raw_samples[idx];
191 int line_num = (int)yjit_line_samples[idx];
195 rb_ary_push(raw_samples,
SIZET2NUM(num + 1));
196 rb_ary_push(line_samples,
INT2NUM(line_num + 1));
201 for (
int o = 0; o < num; o++) {
202 rb_yjit_add_frame(frames, yjit_raw_samples[idx]);
203 rb_ary_push(raw_samples,
SIZET2NUM(yjit_raw_samples[idx]));
204 rb_ary_push(line_samples,
INT2NUM(yjit_line_samples[idx]));
208 rb_ary_push(raw_samples,
SIZET2NUM(yjit_raw_samples[idx]));
209 rb_ary_push(line_samples,
INT2NUM(yjit_line_samples[idx]));
212 rb_ary_push(raw_samples,
SIZET2NUM(yjit_raw_samples[idx]));
213 rb_ary_push(line_samples,
INT2NUM(yjit_line_samples[idx]));
219 rb_hash_aset(result,
ID2SYM(rb_intern(
"raw")), raw_samples);
220 rb_hash_aset(result,
ID2SYM(rb_intern(
"lines")), line_samples);
221 rb_hash_aset(result,
ID2SYM(rb_intern(
"frames")), frames);
227rb_yjit_get_page_size(
void)
229#if defined(_SC_PAGESIZE)
230 long page_size = sysconf(_SC_PAGESIZE);
231 if (page_size <= 0) rb_bug(
"yjit: failed to get page size");
236 if (page_size > 0x40000000l) rb_bug(
"yjit page size too large");
238 return (uint32_t)page_size;
240#error "YJIT supports POSIX only for now"
244#if defined(MAP_FIXED_NOREPLACE) && defined(_SC_PAGESIZE)
247align_ptr(uint8_t *ptr, uint32_t multiple)
250 uint32_t rem = ((uint32_t)(uintptr_t)ptr) % multiple;
257 uint32_t pad = multiple - rem;
266rb_yjit_reserve_addr_space(uint32_t mem_size)
272 #if defined(MAP_FIXED_NOREPLACE) && defined(_SC_PAGESIZE)
273 uint32_t
const page_size = (uint32_t)sysconf(_SC_PAGESIZE);
274 uint8_t *
const cfunc_sample_addr = (
void *)(uintptr_t)&rb_yjit_reserve_addr_space;
275 uint8_t *
const probe_region_end = cfunc_sample_addr + INT32_MAX;
277 uint8_t *req_addr = align_ptr(cfunc_sample_addr, page_size);
286 MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED_NOREPLACE,
292 if (mem_block != MAP_FAILED) {
293 ruby_annotate_mmap(mem_block, mem_size,
"Ruby:rb_yjit_reserve_addr_space");
301 req_addr -= 4 * 1024 * 1024;
302 }
while (req_addr < probe_region_end);
308 (
void *)rb_yjit_reserve_addr_space,
311 MAP_PRIVATE | MAP_ANONYMOUS,
318 if (mem_block == MAP_FAILED) {
324 MAP_PRIVATE | MAP_ANONYMOUS,
329 if (mem_block != MAP_FAILED) {
330 ruby_annotate_mmap(mem_block, mem_size,
"Ruby:rb_yjit_reserve_addr_space:fallback");
335 if (mem_block == MAP_FAILED) {
336 perror(
"ruby: yjit: mmap:");
337 if(
errno == ENOMEM) {
341 rb_bug(
"mmap failed");
356 if (rb_multi_ractor_p()) {
357 tracing_events = ruby_vm_event_enabled_global_flags;
363 tracing_events = rb_ec_ractor_hooks(ec)->events;
387 EXEC_EVENT_HOOK(ec,
RUBY_EVENT_C_RETURN, cfp->self, me->def->original_id, me->called_id, me->owner, return_value);
391 RUBY_DTRACE_CMETHOD_RETURN_HOOK(ec, me->owner, me->def->original_id);
395 ec->cfp->sp[0] = return_value;
400rb_iseq_encoded_size(
const rb_iseq_t *iseq)
402 return iseq->body->iseq_size;
407rb_iseq_get_yjit_payload(
const rb_iseq_t *iseq)
411 return iseq->body->yjit_payload;
420rb_iseq_set_yjit_payload(
const rb_iseq_t *iseq,
void *payload)
425 iseq->body->yjit_payload = payload;
429rb_iseq_reset_jit_func(
const rb_iseq_t *iseq)
432 iseq->body->jit_entry = NULL;
433 iseq->body->jit_exception = NULL;
436 iseq->body->jit_entry_calls = 0;
437 iseq->body->jit_exception_calls = 0;
442rb_iseq_pc_at_idx(
const rb_iseq_t *iseq, uint32_t insn_idx)
446 VALUE *encoded = iseq->body->iseq_encoded;
447 VALUE *pc = &encoded[insn_idx];
458 const VALUE at_pc = *pc;
459 return rb_vm_insn_addr2opcode((
const void *)at_pc);
463rb_RSTRING_LEN(
VALUE str)
465 return RSTRING_LEN(str);
469rb_RSTRING_PTR(
VALUE str)
471 return RSTRING_PTR(str);
475rb_yjit_get_proc_ptr(
VALUE procv)
478 GetProcPtr(procv, proc);
485typedef struct rb_iseq_param_keyword rb_seq_param_keyword_struct;
488rb_insn_name(
VALUE insn)
490 return insn_name(insn);
496 return vm_ci_argc(ci);
502 return vm_ci_mid(ci);
508 return vm_ci_flag(ci);
514 return vm_ci_kwarg(ci);
520 return cikw->keyword_len;
526 return cikw->keywords[idx];
529rb_method_visibility_t
532 return METHOD_ENTRY_VISI(me);
538 if (UNDEFINED_METHOD_ENTRY_P(cme)) {
539 return VM_METHOD_TYPE_UNDEF;
542 return cme->def->type;
549 return cme->def->body.attr.id;
552ID rb_get_symbol_id(
VALUE namep);
554enum method_optimized_type
557 return cme->def->body.optimized.type;
563 return cme->def->body.optimized.index;
569 return UNALIGNED_MEMBER_PTR(cme->def, body.cfunc);
575 return def->method_serial;
581 return def->original_id;
593 return (
void*)(uintptr_t)mct->func;
599 return def_iseq_ptr(def);
606 return def->body.bmethod.proc;
610rb_get_iseq_body_local_iseq(
const rb_iseq_t *iseq)
612 return iseq->body->local_iseq;
616rb_get_iseq_body_parent_iseq(
const rb_iseq_t *iseq)
618 return iseq->body->parent_iseq;
622rb_get_iseq_body_local_table_size(
const rb_iseq_t *iseq)
624 return iseq->body->local_table_size;
628rb_get_iseq_body_iseq_encoded(
const rb_iseq_t *iseq)
630 return iseq->body->iseq_encoded;
634rb_get_iseq_body_stack_max(
const rb_iseq_t *iseq)
636 return iseq->body->stack_max;
640rb_get_iseq_body_type(
const rb_iseq_t *iseq)
642 return iseq->body->type;
646rb_get_iseq_flags_has_lead(
const rb_iseq_t *iseq)
648 return iseq->body->
param.flags.has_lead;
652rb_get_iseq_flags_has_opt(
const rb_iseq_t *iseq)
654 return iseq->body->
param.flags.has_opt;
658rb_get_iseq_flags_has_kw(
const rb_iseq_t *iseq)
660 return iseq->body->
param.flags.has_kw;
664rb_get_iseq_flags_has_post(
const rb_iseq_t *iseq)
666 return iseq->body->
param.flags.has_post;
670rb_get_iseq_flags_has_kwrest(
const rb_iseq_t *iseq)
672 return iseq->body->
param.flags.has_kwrest;
676rb_get_iseq_flags_anon_kwrest(
const rb_iseq_t *iseq)
678 return iseq->body->
param.flags.anon_kwrest;
682rb_get_iseq_flags_has_rest(
const rb_iseq_t *iseq)
684 return iseq->body->
param.flags.has_rest;
688rb_get_iseq_flags_ruby2_keywords(
const rb_iseq_t *iseq)
690 return iseq->body->
param.flags.ruby2_keywords;
694rb_get_iseq_flags_has_block(
const rb_iseq_t *iseq)
696 return iseq->body->
param.flags.has_block;
700rb_get_iseq_flags_ambiguous_param0(
const rb_iseq_t *iseq)
702 return iseq->body->
param.flags.ambiguous_param0;
706rb_get_iseq_flags_accepts_no_kwarg(
const rb_iseq_t *iseq)
708 return iseq->body->
param.flags.accepts_no_kwarg;
712rb_get_iseq_flags_forwardable(
const rb_iseq_t *iseq)
714 return iseq->body->
param.flags.forwardable;
717const rb_seq_param_keyword_struct *
718rb_get_iseq_body_param_keyword(
const rb_iseq_t *iseq)
720 return iseq->body->
param.keyword;
724rb_get_iseq_body_param_size(
const rb_iseq_t *iseq)
726 return iseq->body->
param.size;
730rb_get_iseq_body_param_lead_num(
const rb_iseq_t *iseq)
732 return iseq->body->
param.lead_num;
736rb_get_iseq_body_param_opt_num(
const rb_iseq_t *iseq)
738 return iseq->body->
param.opt_num;
742rb_get_iseq_body_param_opt_table(
const rb_iseq_t *iseq)
744 return iseq->body->
param.opt_table;
751 GetProcPtr(recv, proc);
752 return rb_vm_invoke_proc(ec, proc, argc, argv, kw_splat, block_handler);
756rb_yjit_iseq_builtin_attrs(
const rb_iseq_t *iseq)
758 return iseq->body->builtin_attrs;
763invokebuiltin_delegate_leave_p(
const rb_iseq_t *iseq)
765 int insn1 = rb_vm_insn_addr2opcode((
void *)iseq->body->iseq_encoded[0]);
766 if ((
int)iseq->body->iseq_size != insn_len(insn1) + insn_len(BIN(leave))) {
769 int insn2 = rb_vm_insn_addr2opcode((
void *)iseq->body->iseq_encoded[insn_len(insn1)]);
770 return (insn1 == BIN(opt_invokebuiltin_delegate) || insn1 == BIN(opt_invokebuiltin_delegate_leave)) &&
776rb_yjit_builtin_function(
const rb_iseq_t *iseq)
778 if (invokebuiltin_delegate_leave_p(iseq)) {
787rb_yjit_str_simple_append(
VALUE str1,
VALUE str2)
789 return rb_str_cat(str1, RSTRING_PTR(str2), RSTRING_LEN(str2));
807 return (
VALUE*)cfp->pc;
837 return (
VALUE*)cfp->ep;
845 for (i = 0; i < lv; i++) {
846 ep = VM_ENV_PREV_EP(ep);
854rb_yarv_class_of(
VALUE obj)
861rb_yarv_str_eql_internal(
VALUE str1,
VALUE str2)
864 return rb_str_eql_internal(str1, str2);
875rb_yarv_ary_entry_internal(
VALUE ary,
long offset)
877 return rb_ary_entry_internal(ary, offset);
883rb_yjit_rb_ary_subseq_length(
VALUE ary,
long beg)
886 return rb_ary_subseq(ary, beg,
len);
892 return rb_fix_div_fix(recv, obj);
898 return rb_fix_mod_fix(recv, obj);
904rb_yjit_ruby2_keywords_splat_p(
VALUE obj)
908 if (
len == 0)
return 0;
922 if (len < 0 || len > VM_ARGC_STACK_MAX)
return Qfalse;
942rb_yjit_splat_varg_cfunc(
VALUE *stack_splat_array)
944 VALUE splat_array = *stack_splat_array;
959rb_yjit_dump_iseq_loc(
const rb_iseq_t *iseq, uint32_t insn_idx)
963 VALUE path = rb_iseq_path(iseq);
965 fprintf(stderr,
"%s %.*s:%u\n", __func__, (
int)
len, ptr, rb_iseq_line_no(iseq, insn_idx));
970num_digits(
int integer)
973 while (integer /= 10) {
981rb_yjit_iseq_inspect(
const rb_iseq_t *iseq)
983 const char *label = RSTRING_PTR(iseq->body->location.label);
984 const char *path = RSTRING_PTR(rb_iseq_path(iseq));
985 int lineno = iseq->body->location.code_location.beg_pos.lineno;
987 char *buf =
ZALLOC_N(
char, strlen(label) + strlen(path) + num_digits(lineno) + 3);
988 sprintf(buf,
"%s@%s:%d", label, path, lineno);
1014rb_RSTRUCT_LEN(
VALUE st)
1016 return RSTRUCT_LEN(st);
1025 RSTRUCT_SET(st, k, v);
1035rb_BASIC_OP_UNREDEFINED_P(
enum ruby_basic_operators bop, uint32_t klass)
1037 return BASIC_OP_UNREDEFINED_P(bop, klass);
1041rb_RCLASS_ORIGIN(
VALUE c)
1043 return RCLASS_ORIGIN(c);
1048rb_ENCODING_GET(
VALUE obj)
1054rb_yjit_multi_ractor_p(
void)
1056 return rb_multi_ractor_p();
1061rb_assert_iseq_handle(
VALUE handle)
1067rb_IMEMO_TYPE_P(
VALUE imemo,
enum imemo_type imemo_type)
1069 return IMEMO_TYPE_P(imemo, imemo_type);
1075 return (ice->flags & IMEMO_CONST_CACHE_SHAREABLE) != 0;
1079rb_assert_cme_handle(
VALUE handle)
1087 rb_iseq_callback callback;
1093for_each_iseq_i(
void *vstart,
void *vend,
size_t stride,
void *data)
1097 for (; v != (
VALUE)vend; v += stride) {
1098 void *ptr = rb_asan_poisoned_object_p(v);
1099 rb_asan_unpoison_object(v,
false);
1101 if (rb_obj_is_iseq(v)) {
1103 callback_data->callback(iseq, callback_data->data);
1106 asan_poison_object_if(ptr, v);
1114rb_yjit_for_each_iseq(rb_iseq_callback callback,
void *data)
1117 rb_objspace_each_objects(for_each_iseq_i, (
void *)&callback_data);
1123rb_yjit_obj_written(
VALUE old,
VALUE young,
const char *file,
int line)
1125 rb_obj_written(old,
Qundef, young, file, line);
1133rb_yjit_vm_lock_then_barrier(
unsigned int *recursive_lock_level,
const char *file,
int line)
1135 rb_vm_lock_enter(recursive_lock_level, file, line);
1142rb_yjit_vm_unlock(
unsigned int *recursive_lock_level,
const char *file,
int line)
1144 rb_vm_lock_leave(recursive_lock_level, file, line);
1155 uintptr_t code_ptr = (uintptr_t)rb_yjit_iseq_gen_entry_point(iseq, ec, jit_exception);
1157 if (jit_exception) {
1158 iseq->body->jit_exception = (rb_jit_func_t)code_ptr;
1161 iseq->body->jit_entry = (rb_jit_func_t)code_ptr;
1174rb_yjit_invalidate_all_method_lookup_assumptions(
void)
1182rb_object_shape_count(
void)
1185 return ULONG2NUM((
unsigned long)GET_SHAPE_TREE()->next_shape_id);
1191rb_yjit_assert_holding_vm_lock(
void)
1193 ASSERT_vm_locking();
1198rb_yjit_sendish_sp_pops(
const struct rb_callinfo *ci)
1200 return 1 - sp_inc_of_sendish(ci);
1205rb_yjit_invokeblock_sp_pops(
const struct rb_callinfo *ci)
1207 return 1 - sp_inc_of_invokeblock(ci);
1213rb_yjit_set_exception_return(
rb_control_frame_t *cfp,
void *leave_exit,
void *leave_exception)
1215 if (VM_FRAME_FINISHED_P(cfp)) {
1217 cfp->jit_return = leave_exit;
1219 else if (cfp->jit_return) {
1220 while (!VM_FRAME_FINISHED_P(cfp)) {
1221 if (cfp->jit_return == leave_exit) {
1226 cfp->jit_return = leave_exception;
1229 cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp);
1235 cfp->jit_return = leave_exception;
1257#ifdef YJIT_C_BUILTIN
1260#define yjit_c_builtin_p rb_yjit_c_builtin_p
1264#include "yjit.rbinc"
#define RUBY_ASSERT_ALWAYS(expr,...)
A variant of RUBY_ASSERT that does not interface with RUBY_DEBUG.
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
VALUE rb_profile_frame_full_label(VALUE frame)
Identical to rb_profile_frame_label(), except it returns a qualified result.
VALUE rb_profile_frame_absolute_path(VALUE frame)
Identical to rb_profile_frame_path(), except it tries to expand the returning path.
VALUE rb_profile_frame_path(VALUE frame)
Queries the path of the passed backtrace.
VALUE rb_profile_frame_first_lineno(VALUE frame)
Queries the first line of the method of the passed frame pointer.
#define RUBY_EVENT_C_CALL
A method, written in C, is called.
#define RUBY_EVENT_C_RETURN
Return from a method, written in C.
uint32_t rb_event_flag_t
Represents event(s).
static VALUE RB_FL_TEST(VALUE obj, VALUE flags)
Tests if the given flag(s) are set or not.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define ID2SYM
Old name of RB_ID2SYM.
#define ULONG2NUM
Old name of RB_ULONG2NUM.
#define SIZET2NUM
Old name of RB_SIZE2NUM.
#define ZALLOC_N
Old name of RB_ZALLOC_N.
#define T_HASH
Old name of RUBY_T_HASH.
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
#define Qtrue
Old name of RUBY_Qtrue.
#define INT2NUM
Old name of RB_INT2NUM.
#define Qfalse
Old name of RUBY_Qfalse.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
#define NIL_P
Old name of RB_NIL_P.
static VALUE rb_class_of(VALUE obj)
Object to class mapping function.
static int RB_ENCODING_GET(VALUE obj)
Just another name of rb_enc_get_index.
Defines RBIMPL_HAS_BUILTIN.
VALUE rb_str_cat(VALUE dst, const char *src, long srclen)
Destructively appends the passed contents to the string.
int len
Length of the buffer.
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
#define RARRAY_LEN
Just another name of rb_array_len.
static long rb_array_len(VALUE a)
Queries the length of the array.
#define RARRAY_AREF(a, i)
#define RARRAY_CONST_PTR
Just another name of rb_array_const_ptr.
#define RSTRING_GETMEM(str, ptrvar, lenvar)
Convenient macro to obtain the contents and length at once.
#define errno
Ractor-aware version of errno.
#define RTEST
This is an old name of RB_TEST.
VALUE * ivptr
Pointer to a C array that holds instance variables.
struct RObject::@50::@51 heap
Object that use separated memory region for instance variables use this pattern.
struct rb_iseq_constant_body::@155 param
parameter information
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
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_value_type
C-level type of an object.