23 #define ISEQ_MAJOR_VERSION 1 24 #define ISEQ_MINOR_VERSION 2 28 #define hidden_obj_p(obj) (!SPECIAL_CONST_P(obj) && !RBASIC(obj)->klass) 184 if (
type == ISEQ_TYPE_TOP) {
195 else if (
type == ISEQ_TYPE_METHOD ||
type == ISEQ_TYPE_CLASS) {
198 else if (
RTEST(parent)) {
204 if (
type == ISEQ_TYPE_TOP ||
205 type == ISEQ_TYPE_METHOD ||
type == ISEQ_TYPE_CLASS) {
208 else if (
RTEST(parent)) {
220 if (
type == ISEQ_TYPE_MAIN) {
237 iseq->
line_no = (
unsigned short)line_no;
279 if (
RTEST(coverages)) {
324 else if (opt ==
Qtrue) {
330 #define SET_COMPILE_OPTION(o, h, mem) \ 331 { VALUE flag = rb_hash_aref((h), ID2SYM(rb_intern(#mem))); \ 332 if (flag == Qtrue) { (o)->mem = 1; } \ 333 else if (flag == Qfalse) { (o)->mem = 0; } \ 335 #define SET_COMPILE_OPTION_NUM(o, h, mem) \ 336 { VALUE num = rb_hash_aref(opt, ID2SYM(rb_intern(#mem))); \ 337 if (!NIL_P(num)) (o)->mem = NUM2INT(num); \ 348 #undef SET_COMPILE_OPTION 349 #undef SET_COMPILE_OPTION_NUM 360 #define SET_COMPILE_OPTION(o, h, mem) \ 361 rb_hash_aset((h), ID2SYM(rb_intern(#mem)), (o)->mem ? Qtrue : Qfalse) 362 #define SET_COMPILE_OPTION_NUM(o, h, mem) \ 363 rb_hash_aset((h), ID2SYM(rb_intern(#mem)), INT2NUM((o)->mem)) 374 #undef SET_COMPILE_OPTION 375 #undef SET_COMPILE_OPTION_NUM 439 #define CHECK_ARRAY(v) rb_convert_type((v), T_ARRAY, "Array", "to_ary") 440 #define CHECK_STRING(v) rb_convert_type((v), T_STRING, "String", "to_str") 441 #define CHECK_SYMBOL(v) rb_convert_type((v), T_SYMBOL, "Symbol", "to_sym") 448 VALUE magic, version1, version2, format_type, misc;
453 static struct st_table *type_map_cache = 0;
490 iseq->
self = iseqval;
492 type_map = type_map_cache;
508 type_map = cached_map;
520 if (parent ==
Qnil) {
526 parent, (
enum iseq_type)iseq_type, 0, &option);
574 ISEQ_TYPE_EVAL, &option);
578 ISEQ_TYPE_TOP, &option);
624 ISEQ_TYPE_TOP, &option);
710 static unsigned short 722 static unsigned short 747 const char *
types = insn_op_types(insn);
775 if (insn == BIN(getdynamic) || insn == BIN(setdynamic)) {
779 for (
i = 0;
i < level;
i++) {
839 rb_bug(
"rb_iseq_disasm: unknown operand type: %c",
type);
852 VALUE insn = iseq[pos];
853 int len = insn_len(insn);
855 const char *
types = insn_op_types(insn);
857 const char *insn_name_buff;
859 insn_name_buff = insn_name(insn);
865 (
int)strcspn(insn_name_buff,
"_"), insn_name_buff);
868 for (j = 0;
types[j]; j++) {
869 const char *
types = insn_op_types(insn);
871 len, pos, &iseq[pos + j + 2],
883 if (line_no && line_no != prev) {
885 slen = (slen > 70) ? 0 : (70 - slen);
886 str =
rb_str_catf(str,
"%*s(%4d)", (
int)slen,
"", line_no);
893 slen = (slen > 60) ? 0 : (60 - slen);
895 (
int)slen,
"", entry->
line_no, entry->
sp);
912 case CATCH_TYPE_RESCUE:
914 case CATCH_TYPE_ENSURE:
916 case CATCH_TYPE_RETRY:
918 case CATCH_TYPE_BREAK:
920 case CATCH_TYPE_REDO:
922 case CATCH_TYPE_NEXT:
942 enum {header_minlen = 72};
946 iseq = iseqdat->
iseq;
954 memset(
RSTRING_PTR(str) + l,
'=', header_minlen - l);
965 "| catch type: %-6s st: %04d ed: %04d sp: %04d cont: %04d\n",
967 (
int)entry->
end, (
int)entry->
sp, (
int)entry->
cont);
973 rb_str_cat2(str,
"|-------------------------------------" 974 "-----------------------------------\n");
982 "local table (size: %d, argc: %d " 983 "[opts: %d, rest: %d, post: %d, block: %d] s%d)\n",
992 char argi[0x100] =
"";
993 char opti[0x100] =
"";
1004 snprintf(argi,
sizeof(argi),
"%s%s%s%s%s",
1005 iseqdat->
argc >
i ?
"Arg" :
"",
1009 i < iseqdat->arg_post_start + iseqdat->
arg_post_len) ?
"Post" :
"",
1013 *argi ?
"<" :
"", argi, *argi ?
">" :
"");
1021 for (n = 0; n <
size;) {
1062 rb_bug(
"unknown node (%d)", node);
1067 #define DECL_SYMBOL(name) \ 1068 static VALUE sym_##name 1070 #define INIT_SYMBOL(name) \ 1071 sym_##name = ID2SYM(rb_intern(#name)) 1077 char buff[8 + (
sizeof(idx) *
CHAR_BIT * 32 / 100)];
1079 snprintf(buff,
sizeof(buff),
"label_%lu", idx);
1126 static VALUE insn_syms[VM_INSTRUCTION_SIZE];
1141 for (
i=0;
i<VM_INSTRUCTION_SIZE;
i++) {
1156 switch(iseq->
type) {
1157 case ISEQ_TYPE_TOP:
type = sym_top;
break;
1158 case ISEQ_TYPE_METHOD:
type = sym_method;
break;
1159 case ISEQ_TYPE_BLOCK:
type = sym_block;
break;
1160 case ISEQ_TYPE_CLASS:
type = sym_class;
break;
1161 case ISEQ_TYPE_RESCUE:
type = sym_rescue;
break;
1162 case ISEQ_TYPE_ENSURE:
type = sym_ensure;
break;
1163 case ISEQ_TYPE_EVAL:
type = sym_eval;
break;
1164 case ISEQ_TYPE_MAIN:
type = sym_main;
break;
1165 case ISEQ_TYPE_DEFINED_GUARD:
type = sym_defined_guard;
break;
1166 default:
rb_bug(
"unsupported iseq type");
1216 for (seq = iseq->
iseq; seq < iseq->iseq + iseq->
iseq_size; ) {
1217 VALUE insn = *seq++;
1218 int j,
len = insn_len(insn);
1223 for (j=0; j<
len-1; j++, seq++) {
1224 switch (insn_op_type(insn, j)) {
1226 unsigned long idx = nseq - iseq->
iseq + *seq;
1274 unsigned long idx = nseq - iseq->
iseq + pos;
1283 rb_bug(
"unknown operand: %c", insn_op_type(insn, j));
1318 if (
st_lookup(labels_table, pos, &label)) {
1322 if (
iseq->insn_info_table[
i].line_no != line) {
1323 line =
iseq->insn_info_table[
i].line_no;
1369 iseq1->
self = newiseq;
1371 iseq1->
orig = iseqval;
1381 iseq1->
klass = newcbase;
1392 ID req, opt, rest, block;
1393 #define PARAM_TYPE(type) rb_ary_push(a = rb_ary_new2(2), ID2SYM(type)) 1394 #define PARAM_ID(i) iseq->local_table[(i)] 1395 #define PARAM(i, type) ( \ 1397 rb_id2name(PARAM_ID(i)) ? \ 1398 rb_ary_push(a, ID2SYM(PARAM_ID(i))) : \ 1404 for (
i = 0;
i <
iseq->argc;
i++) {
1411 for (
i = 0;
i <
iseq->argc;
i++) {
1415 r =
iseq->arg_rest != -1 ?
iseq->arg_rest :
1416 iseq->arg_post_len > 0 ?
iseq->arg_post_start :
1417 iseq->arg_block != -1 ?
iseq->arg_block :
1419 for (s =
i;
i < r;
i++) {
1426 if (
iseq->arg_rest != -1) {
1430 r =
iseq->arg_post_start +
iseq->arg_post_len;
1432 for (
i =
iseq->arg_post_start;
i < r;
i++) {
1439 for (
i =
iseq->arg_post_start;
i < r;
i++) {
1443 if (
iseq->arg_block != -1) {
1457 const char **local_table,
1458 const VALUE *arg_opt_table,
1461 const char *filename,
1462 const unsigned short line_no)
1470 *
iseq = *iseq_template;
1473 iseq->line_no = line_no;
1476 iseq->self = iseqval;
1480 for (
i=0;
i<
iseq->iseq_size;
i+=2) {
1481 iseq->iseq[
i] = BIN(opt_call_c_function);
1487 #define ALLOC_AND_COPY(dst, src, type, size) do { \ 1489 (dst) = ALLOC_N(type, (size)); \ 1490 MEMCPY((dst), (src), type, (size)); \ #define RSTRING_LEN(string)
static long NUM2LONG(VALUE x)
int rb_iseq_disasm_insn(VALUE ret, VALUE *iseq, size_t pos, rb_iseq_t *iseqdat, VALUE child)
Disassemble a instruction Iseq -> Iseq inspect object.
int rb_iseq_first_lineno(rb_iseq_t *iseq)
VALUE rb_ary_entry(VALUE ary, long offset)
void rb_bug(const char *fmt,...)
#define DECL_SYMBOL(name)
NODE * rb_parser_compile_file(volatile VALUE vparser, const char *f, VALUE file, int start)
static void iseq_mark(void *ptr)
static void make_compile_option(rb_compile_option_t *option, VALUE opt)
void rb_define_singleton_method(VALUE obj, const char *name, VALUE(*func)(ANYARGS), int argc)
Defines a singleton method for obj.
#define GetProcPtr(obj, ptr)
#define RUBY_VM_NORMAL_ISEQ_P(ptr)
static void set_relation(rb_iseq_t *iseq, const VALUE parent)
#define ATOMIC_PTR_CAS(var, oldval, val)
struct iseq_compile_data * compile_data
static unsigned short find_line_no(rb_iseq_t *iseq, unsigned long pos)
struct iseq_compile_data_storage * storage_head
static VALUE iseq_s_compile(int argc, VALUE *argv, VALUE self)
int rb_iseq_translate_threaded_code(rb_iseq_t *iseq)
VALUE rb_ary_push(VALUE ary, VALUE item)
SSL_METHOD *(* func)(void)
VALUE rb_str_concat(VALUE, VALUE)
#define OPT_INLINE_CONST_CACHE
VALUE rb_ary_tmp_new(long capa)
static int cdhash_each(VALUE key, VALUE value, VALUE ary)
#define RSTRING_PTR(string)
struct rb_iseq_struct * local_iseq
VALUE rb_define_class_under(VALUE outer, const char *name, VALUE super)
Defines a class under the namespace of outer.
void rb_raise(VALUE exc, const char *fmt,...)
#define RUBY_MARK_LEAVE(msg)
struct iseq_compile_data_storage * next
void rb_define_alloc_func(VALUE, rb_alloc_func_t)
struct iseq_inline_cache_entry * ic_entries
#define RARRAY_LEN(ARRAY)
VALUE rb_iseq_compile_node(VALUE self, NODE *node)
#define ALLOC_AND_COPY(dst, src, type, size)
VALUE rb_file_open_str(VALUE, const char *)
static VALUE rb_iseq_new_with_bopt_and_opt(NODE *node, VALUE name, VALUE filename, VALUE filepath, VALUE line_no, VALUE parent, enum iseq_type type, VALUE bopt, const rb_compile_option_t *option)
const char * rb_obj_classname(VALUE)
#define OPT_TAILCALL_OPTIMIZATION
const rb_compile_option_t * option
enum iseq_catch_table_entry::catch_type type
void rb_hash_foreach(VALUE hash, int(*func)(ANYARGS), VALUE farg)
void rb_exc_raise(VALUE mesg)
#define SET_COMPILE_OPTION_NUM(o, h, mem)
static VALUE iseq_s_compile_file(int argc, VALUE *argv, VALUE self)
enum rb_iseq_struct::iseq_type type
static VALUE iseq_load(VALUE self, VALUE data, VALUE parent, VALUE opt)
#define MEMZERO(p, type, n)
static rb_compile_option_t COMPILE_OPTION_DEFAULT
#define OPT_PEEPHOLE_OPTIMIZATION
NODE * rb_parser_compile_string(volatile VALUE vparser, const char *f, VALUE s, int line)
static VALUE CHECK_INTEGER(VALUE v)
VALUE rb_hash_aset(VALUE hash, VALUE key, VALUE val)
RUBY_EXTERN VALUE rb_cObject
static VALUE register_label(struct st_table *table, unsigned long idx)
VALUE rb_get_coverages(void)
VALUE rb_str_cat2(VALUE, const char *)
static VALUE obj_resurrect(VALUE obj)
VALUE rb_iseq_new_top(NODE *node, VALUE name, VALUE filename, VALUE filepath, VALUE parent)
static VALUE make_compile_option_value(rb_compile_option_t *option)
VALUE rb_iseq_new_with_bopt(NODE *node, VALUE name, VALUE filename, VALUE filepath, VALUE line_no, VALUE parent, enum iseq_type type, VALUE bopt)
int argc
argument information
static VALUE iseq_eval(VALUE self)
void rb_ary_store(VALUE ary, long idx, VALUE val)
#define RUBY_MARK_ENTER(msg)
static unsigned short find_prev_line_no(rb_iseq_t *iseqdat, unsigned long pos)
#define OPT_INSTRUCTIONS_UNIFICATION
static struct iseq_insn_info_entry * get_insn_info(const rb_iseq_t *iseq, const unsigned long pos)
VALUE rb_str_resurrect(VALUE str)
VALUE rb_str_resize(VALUE, long)
static VALUE exception_type2symbol(VALUE type)
#define INIT_SYMBOL(name)
#define hidden_obj_p(obj)
VALUE rb_iseq_build_for_ruby2cext(const rb_iseq_t *iseq_template, const rb_insn_func_t *func, const struct iseq_insn_info_entry *insn_info_table, const char **local_table, const VALUE *arg_opt_table, const struct iseq_catch_table_entry *catch_table, const char *name, const char *filename, const unsigned short line_no)
VALUE rb_obj_is_proc(VALUE)
VALUE rb_funcall2(VALUE, ID, int, const VALUE *)
Calls a method.
VALUE rb_iseq_new_main(NODE *node, VALUE filename, VALUE filepath)
#define ISEQ_MINOR_VERSION
VALUE rb_sprintf(const char *format,...)
static VALUE prepare_iseq_build(rb_iseq_t *iseq, VALUE name, VALUE filename, VALUE filepath, VALUE line_no, VALUE parent, enum iseq_type type, VALUE block_opt, const rb_compile_option_t *option)
#define OPT_TRACE_INSTRUCTION
VALUE rb_iseq_build_from_ary(rb_iseq_t *iseq, VALUE locals, VALUE args, VALUE exception, VALUE body)
static VALUE iseq_data_to_ary(rb_iseq_t *iseq)
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
struct rb_iseq_struct * parent_iseq
static VALUE iseq_s_compile_option_set(VALUE self, VALUE opt)
#define SET_COMPILE_OPTION(o, h, mem)
VALUE rb_iseq_eval(VALUE iseqval)
register unsigned int len
VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt)
#define RARRAY_PTR(ARRAY)
#define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE
#define OPT_STACK_CACHING
#define RARRAY_LENINT(ary)
static VALUE cleanup_iseq_build(rb_iseq_t *iseq)
#define StringValueCStr(v)
static VALUE iseq_s_disasm(VALUE klass, VALUE body)
static VALUE iseq_s_load(int argc, VALUE *argv, VALUE self)
#define RUBY_FREE_UNLESS_NULL(ptr)
struct rb_iseq_struct rb_iseq_t
#define OPT_SPECIALISED_INSTRUCTION
static VALUE iseq_alloc(VALUE klass)
#define ISEQ_MAJOR_VERSION
static VALUE insn_operand_intern(rb_iseq_t *iseq, VALUE insn, int op_no, VALUE op, int len, size_t pos, VALUE *pnop, VALUE child)
static NODE * parse_string(VALUE str, const char *file, int line)
#define RUBY_FREE_LEAVE(msg)
#define RUBY_FREE_ENTER(msg)
const char * ruby_node_name(int node)
VALUE rb_str_catf(VALUE str, const char *format,...)
struct iseq_compile_data_storage * storage_current
struct iseq_catch_table_entry * catch_table
rb_control_frame_t *FUNC_FASTCALL rb_insn_func_t(rb_thread_t *, rb_control_frame_t *)
static VALUE iseq_to_a(VALUE self)
static VALUE iseq_inspect(VALUE self)
VALUE rb_iseq_compile_with_option(VALUE src, VALUE file, VALUE filepath, VALUE line, VALUE opt)
#define RUBY_MARK_UNLESS_NULL(ptr)
static const rb_data_type_t iseq_data_type
#define TypedData_Make_Struct(klass, type, data_type, sval)
rb_iseq_t * rb_method_get_iseq(VALUE body)
static unsigned int hash(const char *str, unsigned int len)
VALUE rb_ary_new2(long capa)
static const char * catch_type(int type)
VALUE rb_parser_new(void)
VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict)
int main(int argc, char **argv)
#define GetISeqPtr(obj, ptr)
const char * rb_id2name(ID id)
static const rb_compile_option_t COMPILE_OPTION_FALSE
#define CONST_ID(var, str)
VALUE rb_iseq_new(NODE *node, VALUE name, VALUE filename, VALUE filepath, VALUE parent, enum iseq_type type)
struct iseq_insn_info_entry * insn_info_table
VALUE rb_ary_resurrect(VALUE ary)
static void iseq_free(void *ptr)
void rb_define_method(VALUE klass, const char *name, VALUE(*func)(ANYARGS), int argc)
VALUE rb_iseq_disasm(VALUE self)
VALUE rb_str_new2(const char *)
VALUE rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc)
VALUE rb_iseq_new_with_opt(NODE *node, VALUE name, VALUE filename, VALUE filepath, VALUE line_no, VALUE parent, enum iseq_type type, const rb_compile_option_t *option)
#define OPT_OPERANDS_UNIFICATION
static size_t iseq_memsize(const void *ptr)
VALUE rb_iseq_compile(VALUE src, VALUE file, VALUE line)
static void compile_data_free(struct iseq_compile_data *compile_data)
static rb_iseq_t * iseq_check(VALUE val)
static VALUE iseq_s_compile_option_get(VALUE self)
VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase)
VALUE rb_str_new(const char *, long)