2020-12-09 00:54:41 +03:00
|
|
|
//
|
2021-03-07 02:46:56 +03:00
|
|
|
// These are definitions YJIT uses to interface with the CRuby codebase,
|
|
|
|
// but which are only used internally by YJIT.
|
2020-12-09 00:54:41 +03:00
|
|
|
//
|
|
|
|
|
2021-03-07 02:46:56 +03:00
|
|
|
#ifndef YJIT_IFACE_H
|
|
|
|
#define YJIT_IFACE_H 1
|
2020-12-09 00:54:41 +03:00
|
|
|
|
2021-03-12 20:25:58 +03:00
|
|
|
#include "ruby/ruby.h"
|
2021-04-01 01:27:34 +03:00
|
|
|
#include "ruby/assert.h" // for RUBY_DEBUG
|
2020-12-09 00:54:41 +03:00
|
|
|
#include "vm_core.h"
|
2021-03-07 02:46:56 +03:00
|
|
|
#include "yjit_core.h"
|
2020-12-09 00:54:41 +03:00
|
|
|
|
2021-06-24 04:19:10 +03:00
|
|
|
#ifndef YJIT_DEFAULT_CALL_THRESHOLD
|
|
|
|
# define YJIT_DEFAULT_CALL_THRESHOLD 10
|
|
|
|
#endif
|
|
|
|
|
2021-04-01 01:27:34 +03:00
|
|
|
#if RUBY_DEBUG
|
|
|
|
|
2021-03-07 02:46:56 +03:00
|
|
|
#define YJIT_DECLARE_COUNTERS(...) struct rb_yjit_runtime_counters { \
|
2021-03-03 02:27:50 +03:00
|
|
|
int64_t __VA_ARGS__; \
|
|
|
|
}; \
|
2021-03-07 02:46:56 +03:00
|
|
|
static char yjit_counter_names[] = #__VA_ARGS__;
|
2021-03-03 02:27:50 +03:00
|
|
|
|
2021-03-07 02:46:56 +03:00
|
|
|
YJIT_DECLARE_COUNTERS(
|
2021-03-03 02:27:50 +03:00
|
|
|
exec_instruction,
|
|
|
|
|
2021-05-04 19:35:51 +03:00
|
|
|
send_callsite_not_simple,
|
|
|
|
send_kw_splat,
|
|
|
|
send_ivar_set_method,
|
|
|
|
send_zsuper_method,
|
|
|
|
send_undef_method,
|
|
|
|
send_optimized_method,
|
|
|
|
send_missing_method,
|
|
|
|
send_bmethod,
|
|
|
|
send_refined_method,
|
|
|
|
send_cfunc_ruby_array_varg,
|
|
|
|
send_cfunc_argc_mismatch,
|
|
|
|
send_cfunc_toomany_args,
|
|
|
|
send_iseq_tailcall,
|
|
|
|
send_iseq_arity_error,
|
|
|
|
send_iseq_only_keywords,
|
|
|
|
send_iseq_complex_callee,
|
|
|
|
send_not_implemented_method,
|
|
|
|
send_getter_arity,
|
|
|
|
send_se_cf_overflow,
|
|
|
|
send_se_protected_check_failed,
|
2021-03-03 02:27:50 +03:00
|
|
|
|
2021-03-04 01:31:20 +03:00
|
|
|
leave_se_interrupt,
|
2021-03-29 23:17:14 +03:00
|
|
|
leave_interp_return,
|
2021-07-15 21:09:08 +03:00
|
|
|
leave_start_pc_non_zero,
|
2021-03-04 01:31:20 +03:00
|
|
|
|
2021-03-12 20:22:19 +03:00
|
|
|
getivar_se_self_not_heap,
|
|
|
|
getivar_idx_out_of_range,
|
|
|
|
getivar_undef,
|
2021-04-01 21:31:57 +03:00
|
|
|
getivar_name_not_mapped,
|
2021-03-12 20:22:19 +03:00
|
|
|
|
2021-04-21 23:01:03 +03:00
|
|
|
setivar_se_self_not_heap,
|
|
|
|
setivar_idx_out_of_range,
|
|
|
|
setivar_val_heapobject,
|
|
|
|
setivar_name_not_mapped,
|
|
|
|
setivar_not_object,
|
|
|
|
setivar_frozen,
|
|
|
|
|
2021-03-11 19:25:19 +03:00
|
|
|
oaref_argc_not_one,
|
|
|
|
oaref_arg_not_fixnum,
|
|
|
|
|
2021-04-07 22:51:50 +03:00
|
|
|
binding_allocations,
|
|
|
|
binding_set,
|
|
|
|
|
2021-06-28 20:06:03 +03:00
|
|
|
vm_insns_count,
|
|
|
|
compiled_iseq_count,
|
|
|
|
|
2021-07-07 21:45:48 +03:00
|
|
|
expandarray_splat,
|
|
|
|
expandarray_postarg,
|
|
|
|
expandarray_not_array,
|
2021-07-14 20:46:18 +03:00
|
|
|
expandarray_rhs_too_small,
|
2021-07-07 21:45:48 +03:00
|
|
|
|
2021-03-03 02:27:50 +03:00
|
|
|
// Member with known name for iterating over counters
|
|
|
|
last_member
|
|
|
|
)
|
|
|
|
|
2021-03-07 02:46:56 +03:00
|
|
|
#undef YJIT_DECLARE_COUNTERS
|
2021-03-03 02:27:50 +03:00
|
|
|
|
2021-04-07 22:27:05 +03:00
|
|
|
struct yjit_comment {
|
2021-04-19 22:29:48 +03:00
|
|
|
uint32_t offset;
|
2021-04-07 22:27:05 +03:00
|
|
|
const char *comment;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef rb_darray(struct yjit_comment) yjit_comment_array_t;
|
|
|
|
|
|
|
|
extern yjit_comment_array_t yjit_code_comments;
|
|
|
|
|
2021-04-01 01:27:34 +03:00
|
|
|
#endif // if RUBY_DEBUG
|
|
|
|
|
2021-03-07 02:46:56 +03:00
|
|
|
RUBY_EXTERN struct rb_yjit_options rb_yjit_opts;
|
|
|
|
RUBY_EXTERN struct rb_yjit_runtime_counters yjit_runtime_counters;
|
2021-01-26 23:21:47 +03:00
|
|
|
|
2021-03-25 01:07:26 +03:00
|
|
|
void yjit_map_addr2insn(void *code_ptr, int insn);
|
|
|
|
VALUE *yjit_iseq_pc_at_idx(const rb_iseq_t *iseq, uint32_t insn_idx);
|
|
|
|
int yjit_opcode_at_pc(const rb_iseq_t *iseq, const VALUE *pc);
|
2021-01-16 01:10:52 +03:00
|
|
|
|
2021-03-23 04:04:00 +03:00
|
|
|
void check_cfunc_dispatch(VALUE receiver, struct rb_callinfo *ci, void *callee, rb_callable_method_entry_t *compile_time_cme);
|
2021-02-25 23:10:38 +03:00
|
|
|
|
2021-03-09 22:01:16 +03:00
|
|
|
RBIMPL_ATTR_NODISCARD() bool assume_bop_not_redefined(block_t *block, int redefined_flag, enum ruby_basic_operators bop);
|
2021-03-18 02:07:20 +03:00
|
|
|
void assume_method_lookup_stable(VALUE receiver_klass, const rb_callable_method_entry_t *cme, block_t *block);
|
2021-02-25 23:10:38 +03:00
|
|
|
RBIMPL_ATTR_NODISCARD() bool assume_single_ractor_mode(block_t *block);
|
2021-03-25 01:07:26 +03:00
|
|
|
void assume_stable_global_constant_state(block_t *block);
|
2021-02-25 23:10:38 +03:00
|
|
|
|
2021-01-28 00:13:27 +03:00
|
|
|
// this function *must* return passed exit_pc
|
2021-03-07 02:46:56 +03:00
|
|
|
const VALUE *rb_yjit_count_side_exit_op(const VALUE *exit_pc);
|
2021-02-25 23:10:38 +03:00
|
|
|
|
2021-03-07 02:46:56 +03:00
|
|
|
void yjit_unlink_method_lookup_dependency(block_t *block);
|
|
|
|
void yjit_block_assumptions_free(block_t *block);
|
2020-12-09 00:54:41 +03:00
|
|
|
|
2021-06-24 04:19:10 +03:00
|
|
|
#endif // #ifndef YJIT_IFACE_H
|