13#include "internal/coverage.h"
14#include "internal/gc.h"
17#include "prism_compile.h"
20#define ISEQ_MAJOR_VERSION ((unsigned int)ruby_api_version[0])
21#define ISEQ_MINOR_VERSION ((unsigned int)ruby_api_version[1])
23#define ISEQ_MBITS_SIZE sizeof(iseq_bits_t)
24#define ISEQ_MBITS_BITLENGTH (ISEQ_MBITS_SIZE * CHAR_BIT)
25#define ISEQ_MBITS_SET(buf, i) (buf[(i) / ISEQ_MBITS_BITLENGTH] |= ((iseq_bits_t)1 << ((i) % ISEQ_MBITS_BITLENGTH)))
26#define ISEQ_MBITS_SET_P(buf, i) ((buf[(i) / ISEQ_MBITS_BITLENGTH] >> ((i) % ISEQ_MBITS_BITLENGTH)) & 0x1)
27#define ISEQ_MBITS_BUFLEN(size) roomof(size, ISEQ_MBITS_BITLENGTH)
29#define ISEQ_LVAR_STATE_BITS 2
30#define ISEQ_LVAR_STATES_PER_BYTE (CHAR_BIT / ISEQ_LVAR_STATE_BITS)
31#define ISEQ_LVAR_STATES_BUFLEN(size) roomof(size, ISEQ_LVAR_STATES_PER_BYTE)
32#define ISEQ_LVAR_STATES_EMBED_P(size) (ISEQ_LVAR_STATES_BUFLEN(size) <= sizeof(uint8_t *))
33STATIC_ASSERT(lvar_state_fits_in_iseq_lvar_state_bits, lvar_reassigned < (1 << ISEQ_LVAR_STATE_BITS));
35static inline enum lvar_state
36iseq_lvar_state_get(
const uint8_t *buf,
unsigned int i)
38 const unsigned int shift = (i % ISEQ_LVAR_STATES_PER_BYTE) * ISEQ_LVAR_STATE_BITS;
39 return (
enum lvar_state)((buf[i / ISEQ_LVAR_STATES_PER_BYTE] >> shift) & ((1 << ISEQ_LVAR_STATE_BITS) - 1));
43iseq_lvar_state_set(uint8_t *buf,
unsigned int i,
enum lvar_state state)
45 uint8_t *
const byte = &buf[i / ISEQ_LVAR_STATES_PER_BYTE];
46 const unsigned int shift = (i % ISEQ_LVAR_STATES_PER_BYTE) * ISEQ_LVAR_STATE_BITS;
47 *
byte = (*
byte & ~(((1 << ISEQ_LVAR_STATE_BITS) - 1) << shift)) | ((uint8_t)state << shift);
50#ifndef USE_ISEQ_NODE_ID
51#define USE_ISEQ_NODE_ID 1
56#define rb_iseq_t rb_iseq_t
59extern const ID rb_iseq_shared_exc_local_tbl[];
64 return body->local_table_size > 0 && body->local_table != rb_iseq_shared_exc_local_tbl;
67static inline uint8_t *
70 if (ISEQ_LVAR_STATES_EMBED_P(body->local_table_size)) {
71 return (uint8_t *)body->lvar_states.single;
74 return body->lvar_states.list;
84 return ISEQ_BODY(iseq)->variable;
89ISEQ_BODY_VARIABLE_SCRIPT_LINES(
const rb_iseq_t *iseq)
92 return v ? v->script_lines :
Qnil;
96ISEQ_BODY_VARIABLE_COVERAGE(
const rb_iseq_t *iseq)
99 return v ? v->coverage :
Qfalse;
103ISEQ_BODY_VARIABLE_PC2BRANCHINDEX(
const rb_iseq_t *iseq)
106 return v ? v->pc2branchindex :
Qfalse;
109static inline rb_snum_t
110ISEQ_BODY_VARIABLE_FLIP_CNT(
const rb_iseq_t *iseq)
113 return v ? v->flip_count : 0;
117ISEQ_BODY_VARIABLE_ORIGINAL_ISEQ(
const rb_iseq_t *iseq)
120 return v ? v->original_iseq : NULL;
126rb_snum_t rb_iseq_flip_cnt_increment(
const rb_iseq_t *iseq);
129#define ISEQ_VARIABLE(iseq) ISEQ_BODY_VARIABLE(iseq)
130#define ISEQ_SCRIPT_LINES(iseq) ISEQ_BODY_VARIABLE_SCRIPT_LINES(iseq)
131#define ISEQ_COVERAGE(iseq) ISEQ_BODY_VARIABLE_COVERAGE(iseq)
132#define ISEQ_COVERAGE_SET(iseq, cov) rb_iseq_coverage_set(iseq, cov)
133#define ISEQ_LINE_COVERAGE(iseq) RARRAY_AREF(ISEQ_COVERAGE(iseq), COVERAGE_INDEX_LINES)
134#define ISEQ_BRANCH_COVERAGE(iseq) RARRAY_AREF(ISEQ_COVERAGE(iseq), COVERAGE_INDEX_BRANCHES)
136#define ISEQ_PC2BRANCHINDEX(iseq) ISEQ_BODY_VARIABLE_PC2BRANCHINDEX(iseq)
137#define ISEQ_PC2BRANCHINDEX_SET(iseq,h) rb_iseq_pc2branchindex_set(iseq, h)
139#define ISEQ_FLIP_CNT(iseq) ISEQ_BODY_VARIABLE_FLIP_CNT(iseq)
140#define ISEQ_FLIP_CNT_INCREMENT(iseq) rb_iseq_flip_cnt_increment(iseq)
141#define ISEQ_ORIGINAL_ISEQ(iseq) ISEQ_BODY_VARIABLE_ORIGINAL_ISEQ(iseq)
143#define ISEQ_FROZEN_STRING_LITERAL_ENABLED 1
144#define ISEQ_FROZEN_STRING_LITERAL_DISABLED 0
145#define ISEQ_FROZEN_STRING_LITERAL_UNSET -1
148ISEQ_ORIGINAL_ISEQ_CLEAR(
const rb_iseq_t *iseq)
152 VALUE *ptr = v->original_iseq;
154 v->original_iseq = NULL;
155 SIZED_FREE_N(ptr, ISEQ_BODY(iseq)->iseq_size);
160#define ISEQ_TRACE_EVENTS (RUBY_EVENT_LINE | \
166 RUBY_EVENT_C_RETURN | \
167 RUBY_EVENT_B_CALL | \
168 RUBY_EVENT_B_RETURN | \
169 RUBY_EVENT_RESCUE | \
170 RUBY_EVENT_COVERAGE_LINE| \
171 RUBY_EVENT_COVERAGE_BRANCH)
173#define ISEQ_NOT_LOADED_YET IMEMO_FL_USER1
174#define ISEQ_USE_COMPILE_DATA IMEMO_FL_USER2
175#define ISEQ_TRANSLATED IMEMO_FL_USER3
177#define ISEQ_REFINED_COPY IMEMO_FL_USER4
179#define ISEQ_EXECUTABLE_P(iseq) (FL_TEST_RAW(((VALUE)iseq), ISEQ_NOT_LOADED_YET | ISEQ_USE_COMPILE_DATA) == 0)
183 const VALUE err_info;
184 const VALUE catch_table_ary;
187 unsigned int iseq_size;
189 bool is_single_mark_bit;
216 unsigned int ci_index;
217 unsigned int ic_index;
221 const NODE *root_node;
231 if (iseq->flags & ISEQ_USE_COMPILE_DATA) {
232 return iseq->aux.compile_data;
243 iseq->flags |= ISEQ_USE_COMPILE_DATA;
249 iseq->flags &= ~ISEQ_USE_COMPILE_DATA;
250 iseq->aux.compile_data = NULL;
254iseq_imemo_alloc(
void)
265void rb_ibf_load_iseq_complete(
rb_iseq_t *iseq);
267const rb_iseq_t *rb_iseq_ibf_load_bytes(
const char *cstr,
size_t);
271int rb_iseq_add_local_tracepoint_recursively(
const rb_iseq_t *iseq,
rb_event_flag_t turnon_events,
VALUE tpval,
unsigned int target_line,
bool target_bmethod);
275int rb_iseq_opt_frozen_string_literal(
void);
279#if VM_INSN_INFO_TABLE_IMPL == 2
283int rb_vm_insn_addr2opcode(
const void *addr);
285RUBY_SYMBOL_EXPORT_BEGIN
298unsigned int rb_iseq_line_no(
const rb_iseq_t *iseq,
size_t pos);
299#ifdef USE_ISEQ_NODE_ID
300int rb_iseq_node_id(
const rb_iseq_t *iseq,
size_t pos);
304void rb_iseq_insns_info_encode_positions(
const rb_iseq_t *iseq);
311int rb_iseq_from_eval_p(
const rb_iseq_t *iseq);
317void rb_iseq_code_location(
const rb_iseq_t *iseq,
int *first_lineno,
int *first_column,
int *last_lineno,
int *last_column);
319void rb_iseq_remove_coverage_all(
void);
326 unsigned int inline_const_cache: 1;
327 unsigned int peephole_optimization: 1;
328 unsigned int tailcall_optimization: 1;
329 unsigned int specialized_instruction: 1;
330 unsigned int operands_unification: 1;
331 unsigned int instructions_unification: 1;
332 signed int frozen_string_literal: 2;
333 unsigned int debug_frozen_string_literal: 1;
334 unsigned int coverage_enabled: 1;
340#ifdef USE_ISEQ_NODE_ID
359 CATCH_TYPE_RESCUE =
INT2FIX(1),
360 CATCH_TYPE_ENSURE =
INT2FIX(2),
368 enum rb_catch_type type;
377RBIMPL_ATTR_PACKED_STRUCT_UNALIGNED_BEGIN()
381} RBIMPL_ATTR_PACKED_STRUCT_UNALIGNED_END();
384iseq_catch_table_bytes(
int n)
388 catch_table_entries_max = (INT_MAX - offsetof(
struct iseq_catch_table, entries)) / catch_table_entry_size
390 if (n > catch_table_entries_max) rb_fatal(
"too large iseq_catch_table - %d", n);
392 n * catch_table_entry_size);
395#define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)
401 char buff[FLEX_ARY_LEN];
427VALUE rb_iseq_defined_string(
enum defined_type
type);
432attr_index_t rb_estimate_iv_count(
VALUE klass,
const rb_iseq_t * initialize_iseq);
434void rb_free_encoded_insn_data(
void);
436RUBY_SYMBOL_EXPORT_END
#define RUBY_EXTERN
Declaration of externally visible global variables.
uint32_t rb_event_flag_t
Represents event(s).
#define INT2FIX
Old name of RB_INT2FIX.
#define ZALLOC
Old name of RB_ZALLOC.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
const int ruby_api_version[3]
API versions, in { major, minor, teeny } order.
VALUE type(ANYARGS)
ANYARGS-ed function type.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.