Ruby
1.9.3p448(2013-06-27revision41675)
|
#include "ruby/ruby.h"
#include "internal.h"
#include <math.h>
#include "vm_core.h"
#include "iseq.h"
#include "insns.inc"
#include "insns_info.inc"
#include "optinsn.inc"
Go to the source code of this file.
Data Structures | |
struct | iseq_link_element |
struct | iseq_link_anchor |
struct | iseq_label_data |
struct | iseq_insn_data |
struct | iseq_adjust_data |
struct | ensure_range |
struct | iseq_compile_data_ensure_node_stack |
Macros | |
#define | USE_INSN_STACK_INCREASE 1 |
#define | numberof(array) (int)(sizeof(array) / sizeof((array)[0])) |
#define | FIXNUM_INC(n, i) ((n)+(INT2FIX(i)&~FIXNUM_FLAG)) |
#define | FIXNUM_OR(n, i) ((n)|INT2FIX(i)) |
#define | CPDEBUG 0 |
debug function(macro) interface depend on CPDEBUG if it is less than 0, runtime option is in effect. | |
#define | compile_debug CPDEBUG |
#define | debugi(header, id) r_id(id) |
#define | debugp(header, value) r_value(value) |
#define | debugp_verbose(header, value) r_value(value) |
#define | debugp_verbose_node(header, value) r_value(value) |
#define | debugp_param(header, value) r_value(value) |
#define | debug_node_start(node) ((void)0) |
#define | debug_node_end() ((void)0) |
#define | debugs if(0)printf |
#define | debug_compile(msg, v) (v) |
#define | NEW_LABEL(l) new_label_body(iseq, (l)) |
#define | iseq_filename(iseq) (((rb_iseq_t*)DATA_PTR(iseq))->filename) |
#define | iseq_filepath(iseq) (((rb_iseq_t*)DATA_PTR(iseq))->filepath) |
#define | NEW_ISEQVAL(node, name, type, line_no) new_child_iseq(iseq, (node), (name), 0, (type), (line_no)) |
#define | NEW_CHILD_ISEQVAL(node, name, type, line_no) new_child_iseq(iseq, (node), (name), iseq->self, (type), (line_no)) |
#define | ADD_SEQ(seq1, seq2) APPEND_LIST((seq1), (seq2)) |
#define | ADD_INSN(seq, line, insn) ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_body(iseq, (line), BIN(insn), 0)) |
#define | ADD_INSNL(seq, line, insn, label) |
#define | ADD_INSN1(seq, line, insn, op1) |
#define | ADD_INSN2(seq, line, insn, op1, op2) |
#define | ADD_INSN3(seq, line, insn, op1, op2, op3) |
#define | ADD_SEND(seq, line, id, argc) ADD_SEND_R((seq), (line), (id), (argc), (VALUE)Qfalse, (VALUE)INT2FIX(0)) |
#define | ADD_CALL_RECEIVER(seq, line) ADD_INSN((seq), (line), putself) |
#define | ADD_CALL(seq, line, id, argc) ADD_SEND_R((seq), (line), (id), (argc), (VALUE)Qfalse, (VALUE)INT2FIX(VM_CALL_FCALL_BIT)) |
#define | ADD_CALL_WITH_BLOCK(seq, line, id, argc, block) ADD_SEND_R((seq), (line), (id), (argc), (block), (VALUE)INT2FIX(VM_CALL_FCALL_BIT)) |
#define | ADD_SEND_R(seq, line, id, argc, block, flag) |
#define | ADD_TRACE(seq, line, event) |
#define | ADD_LABEL(seq, label) ADD_ELEM((seq), (LINK_ELEMENT *) (label)) |
#define | APPEND_LABEL(seq, before, label) APPEND_ELEM((seq), (before), (LINK_ELEMENT *) (label)) |
#define | ADD_ADJUST(seq, line, label) ADD_ELEM((seq), (LINK_ELEMENT *) new_adjust_body(iseq, (label), (line))) |
#define | ADD_ADJUST_RESTORE(seq, label) ADD_ELEM((seq), (LINK_ELEMENT *) new_adjust_body(iseq, (label), -1)) |
#define | ADD_CATCH_ENTRY(type, ls, le, iseqv, lc) |
#define | COMPILE(anchor, desc, node) |
#define | COMPILE_POPED(anchor, desc, node) |
#define | COMPILE_(anchor, desc, node, poped) |
#define | OPERAND_AT(insn, idx) (((INSN*)(insn))->operands[(idx)]) |
#define | INSN_OF(insn) (((INSN*)(insn))->insn_id) |
#define | COMPILE_ERROR(strs) |
#define | ERROR_ARGS ruby_sourcefile, nd_line(node), |
#define | COMPILE_OK 1 |
#define | COMPILE_NG 0 |
#define | DECL_ANCHOR(name) LINK_ANCHOR *name, name##_body__ = {{0,},} |
#define | INIT_ANCHOR(name) (name##_body__.last = &name##_body__.anchor, name = &name##_body__) |
#define | hide_obj(obj) do {OBJ_FREEZE(obj); RBASIC(obj)->klass = 0;} while (0) |
#define | ISEQ_ARG |
#define | ISEQ_ARG_DECLARE |
#define | ruby_sourcefile RSTRING_PTR(iseq->filename) |
#define | MEMORY(v) |
#define | defined_expr defined_expr0 |
#define | BUFSIZE 0x100 |
#define | rb_intern(str) rb_intern_const(str) |
#define | CHECK_ARRAY(v) rb_convert_type((v), T_ARRAY, "Array", "to_ary") |
#define | CHECK_STRING(v) rb_convert_type((v), T_STRING, "String", "to_str") |
#define | CHECK_SYMBOL(v) rb_convert_type((v), T_SYMBOL, "Symbol", "to_sym") |
Typedefs | |
typedef struct iseq_link_element | LINK_ELEMENT |
typedef struct iseq_link_anchor | LINK_ANCHOR |
typedef struct iseq_label_data | LABEL |
typedef struct iseq_insn_data | INSN |
typedef struct iseq_adjust_data | ADJUST |
Variables | |
static struct st_hash_type | cdhash_type |
#define ADD_ADJUST | ( | seq, | |
line, | |||
label | |||
) | ADD_ELEM((seq), (LINK_ELEMENT *) new_adjust_body(iseq, (label), (line))) |
Definition at line 244 of file compile.c.
Referenced by iseq_compile_each().
#define ADD_ADJUST_RESTORE | ( | seq, | |
label | |||
) | ADD_ELEM((seq), (LINK_ELEMENT *) new_adjust_body(iseq, (label), -1)) |
Definition at line 247 of file compile.c.
Referenced by iseq_compile_each().
#define ADD_CALL | ( | seq, | |
line, | |||
id, | |||
argc | |||
) | ADD_SEND_R((seq), (line), (id), (argc), (VALUE)Qfalse, (VALUE)INT2FIX(VM_CALL_FCALL_BIT)) |
Definition at line 213 of file compile.c.
Referenced by iseq_compile_each().
#define ADD_CALL_RECEIVER | ( | seq, | |
line | |||
) | ADD_INSN((seq), (line), putself) |
Definition at line 210 of file compile.c.
Referenced by iseq_compile_each().
#define ADD_CALL_WITH_BLOCK | ( | seq, | |
line, | |||
id, | |||
argc, | |||
block | |||
) | ADD_SEND_R((seq), (line), (id), (argc), (block), (VALUE)INT2FIX(VM_CALL_FCALL_BIT)) |
Definition at line 216 of file compile.c.
Referenced by iseq_compile_each().
Definition at line 250 of file compile.c.
Referenced by iseq_build_from_ary_exception(), iseq_compile_each(), and rb_iseq_compile_node().
#define ADD_INSN | ( | seq, | |
line, | |||
insn | |||
) | ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_body(iseq, (line), BIN(insn), 0)) |
Definition at line 185 of file compile.c.
Referenced by compile_colon2(), compile_massign(), compile_massign_lhs(), compile_massign_opt(), defined_expr(), iseq_compile_each(), rb_iseq_compile_node(), and setup_args().
#define ADD_INSN1 | ( | seq, | |
line, | |||
insn, | |||
op1 | |||
) |
Definition at line 194 of file compile.c.
Referenced by compile_array_(), compile_colon2(), compile_cpath(), compile_dstr(), compile_dstr_fragments(), compile_massign_lhs(), defined_expr(), iseq_compile_each(), rb_iseq_compile_node(), setup_args(), and when_vals().
#define ADD_INSN2 | ( | seq, | |
line, | |||
insn, | |||
op1, | |||
op2 | |||
) |
Definition at line 198 of file compile.c.
Referenced by compile_dregx(), compile_massign(), iseq_compile_each(), and rb_iseq_compile_node().
#define ADD_INSN3 | ( | seq, | |
line, | |||
insn, | |||
op1, | |||
op2, | |||
op3 | |||
) |
Definition at line 202 of file compile.c.
Referenced by defined_expr(), and iseq_compile_each().
#define ADD_INSNL | ( | seq, | |
line, | |||
insn, | |||
label | |||
) |
Definition at line 189 of file compile.c.
Referenced by compile_branch_condition(), defined_expr(), iseq_compile_each(), and when_vals().
#define ADD_LABEL | ( | seq, | |
label | |||
) | ADD_ELEM((seq), (LINK_ELEMENT *) (label)) |
Definition at line 238 of file compile.c.
Referenced by add_ensure_iseq(), compile_branch_condition(), iseq_build_from_ary_body(), iseq_compile_each(), iseq_set_arguments(), and rb_iseq_compile_node().
#define ADD_SEND | ( | seq, | |
line, | |||
id, | |||
argc | |||
) | ADD_SEND_R((seq), (line), (id), (argc), (VALUE)Qfalse, (VALUE)INT2FIX(0)) |
Definition at line 207 of file compile.c.
Referenced by iseq_compile_each(), and when_vals().
Definition at line 219 of file compile.c.
Referenced by iseq_compile_each().
#define ADD_SEQ | ( | seq1, | |
seq2 | |||
) | APPEND_LIST((seq1), (seq2)) |
Definition at line 181 of file compile.c.
Referenced by add_ensure_iseq(), compile_massign(), compile_massign_lhs(), iseq_compile_each(), and setup_args().
#define ADD_TRACE | ( | seq, | |
line, | |||
event | |||
) |
Definition at line 224 of file compile.c.
Referenced by iseq_compile_each(), and rb_iseq_compile_node().
#define APPEND_LABEL | ( | seq, | |
before, | |||
label | |||
) | APPEND_ELEM((seq), (before), (LINK_ELEMENT *) (label)) |
#define CHECK_ARRAY | ( | v | ) | rb_convert_type((v), T_ARRAY, "Array", "to_ary") |
Definition at line 5446 of file compile.c.
Referenced by rb_iseq_build_from_ary().
#define CHECK_STRING | ( | v | ) | rb_convert_type((v), T_STRING, "String", "to_str") |
#define CHECK_SYMBOL | ( | v | ) | rb_convert_type((v), T_SYMBOL, "Symbol", "to_sym") |
Definition at line 5448 of file compile.c.
Referenced by rb_iseq_build_from_ary().
#define COMPILE | ( | anchor, | |
desc, | |||
node | |||
) |
Definition at line 257 of file compile.c.
Referenced by compile_branch_condition(), compile_colon2(), compile_cpath(), compile_dstr_fragments(), compile_massign(), compile_massign_opt(), defined_expr(), iseq_compile_each(), rb_iseq_compile_node(), setup_args(), and when_vals().
#define COMPILE_ | ( | anchor, | |
desc, | |||
node, | |||
poped | |||
) |
Definition at line 267 of file compile.c.
Referenced by compile_array_(), and iseq_compile_each().
#define compile_debug CPDEBUG |
Definition at line 96 of file compile.c.
Referenced by iseq_setup(), and verify_list().
#define COMPILE_ERROR | ( | strs | ) |
Definition at line 278 of file compile.c.
Referenced by iseq_compile_each(), and validate_label().
#define COMPILE_NG 0 |
Definition at line 294 of file compile.c.
Referenced by iseq_compile_each().
#define COMPILE_OK 1 |
Definition at line 293 of file compile.c.
Referenced by compile_branch_condition(), compile_colon2(), compile_dregx(), compile_dstr(), compile_dstr_fragments(), compile_massign(), compile_massign_lhs(), insn_set_specialized_instruction(), iseq_add_mark_object(), iseq_add_mark_object_compile_time(), iseq_build_from_ary_body(), iseq_build_from_ary_exception(), iseq_compile_each(), iseq_insns_unification(), iseq_optimize(), iseq_peephole_optimize(), iseq_set_arguments(), iseq_set_exception_local_table(), iseq_set_exception_table(), iseq_set_local_table(), iseq_set_optargs_table(), iseq_set_sequence(), iseq_set_sequence_stackcaching(), iseq_specialized_instruction(), and rb_iseq_translate_threaded_code().
#define COMPILE_POPED | ( | anchor, | |
desc, | |||
node | |||
) |
Definition at line 262 of file compile.c.
Referenced by add_ensure_iseq(), compile_massign_lhs(), compile_massign_opt(), iseq_compile_each(), iseq_set_arguments(), and rb_iseq_compile_node().
#define CPDEBUG 0 |
#define debug_node_end | ( | ) | ((void)0) |
Definition at line 153 of file compile.c.
Referenced by iseq_compile_each().
#define debug_node_start | ( | node | ) | ((void)0) |
Definition at line 152 of file compile.c.
Referenced by iseq_compile_each().
Definition at line 147 of file compile.c.
Referenced by compile_colon2(), and iseq_compile_each().
#define debugp_param | ( | header, | |
value | |||
) | r_value(value) |
Definition at line 151 of file compile.c.
Referenced by compile_dstr_fragments(), iseq_compile_each(), and when_vals().
#define debugp_verbose_node | ( | header, | |
value | |||
) | r_value(value) |
#define debugs if(0)printf |
Definition at line 160 of file compile.c.
Referenced by iseq_compile_each(), iseq_set_arguments(), iseq_set_local_table(), iseq_setup(), and new_child_iseq().
#define DECL_ANCHOR | ( | name | ) | LINK_ANCHOR *name, name##_body__ = {{0,},} |
Definition at line 299 of file compile.c.
Referenced by add_ensure_iseq(), compile_array_(), compile_massign(), compile_massign_lhs(), iseq_compile_each(), rb_iseq_build_from_ary(), rb_iseq_compile_node(), and setup_args().
#define defined_expr defined_expr0 |
Definition at line 2621 of file compile.c.
Referenced by defined_expr(), and iseq_compile_each().
#define ERROR_ARGS ruby_sourcefile, nd_line(node), |
Definition at line 290 of file compile.c.
Referenced by iseq_compile_each(), and rb_iseq_compile_node().
#define FIXNUM_INC | ( | n, | |
i | |||
) | ((n)+(INT2FIX(i)&~FIXNUM_FLAG)) |
Definition at line 23 of file compile.c.
Referenced by compile_massign_lhs(), and iseq_compile_each().
Definition at line 24 of file compile.c.
Referenced by iseq_peephole_optimize().
#define hide_obj | ( | obj | ) | do {OBJ_FREEZE(obj); RBASIC(obj)->klass = 0;} while (0) |
Definition at line 304 of file compile.c.
Referenced by compile_dstr_fragments(), defined_expr(), and iseq_set_sequence().
Definition at line 301 of file compile.c.
Referenced by add_ensure_iseq(), compile_array_(), compile_massign(), compile_massign_lhs(), iseq_compile_each(), rb_iseq_build_from_ary(), rb_iseq_compile_node(), and setup_args().
#define INSN_OF | ( | insn | ) | (((INSN*)(insn))->insn_id) |
Definition at line 274 of file compile.c.
Referenced by iseq_compile_each().
Definition at line 168 of file compile.c.
Referenced by new_child_iseq().
Definition at line 171 of file compile.c.
Referenced by new_child_iseq().
#define MEMORY | ( | v | ) |
#define NEW_CHILD_ISEQVAL | ( | node, | |
name, | |||
type, | |||
line_no | |||
) | new_child_iseq(iseq, (node), (name), iseq->self, (type), (line_no)) |
Definition at line 177 of file compile.c.
Referenced by iseq_compile_each().
#define NEW_ISEQVAL | ( | node, | |
name, | |||
type, | |||
line_no | |||
) | new_child_iseq(iseq, (node), (name), 0, (type), (line_no)) |
Definition at line 174 of file compile.c.
Referenced by iseq_compile_each().
#define NEW_LABEL | ( | l | ) | new_label_body(iseq, (l)) |
Definition at line 166 of file compile.c.
Referenced by add_ensure_iseq(), compile_branch_condition(), defined_expr(), iseq_compile_each(), iseq_set_arguments(), rb_iseq_compile_node(), and register_label().
Definition at line 22 of file compile.c.
Referenced by compile_massign_opt(), and rb_insns_name_array().
#define OPERAND_AT | ( | insn, | |
idx | |||
) | (((INSN*)(insn))->operands[(idx)]) |
Definition at line 271 of file compile.c.
Referenced by get_destination_insn(), insn_data_to_s_detail(), iseq_compile_each(), iseq_peephole_optimize(), and iseq_specialized_instruction().
#define rb_intern | ( | str | ) | rb_intern_const(str) |
#define ruby_sourcefile RSTRING_PTR(iseq->filename) |
Definition at line 426 of file compile.c.
Referenced by e_option_supplied(), gettable_gen(), parser_set_encode(), parser_set_token_info(), parser_warn(), parser_warning(), reg_compile_gen(), token_info_pop(), validate_label(), warn_unused_var(), yycompile(), and yycompile0().
typedef struct iseq_adjust_data ADJUST |
typedef struct iseq_insn_data INSN |
typedef struct iseq_label_data LABEL |
typedef struct iseq_link_anchor LINK_ANCHOR |
typedef struct iseq_link_element LINK_ELEMENT |
|
static |
Definition at line 391 of file compile.c.
References iseq_link_element::next, iseq_link_element::prev, and verify_list().
Referenced by compile_massign_lhs(), and iseq_build_from_ary_body().
|
static |
Definition at line 2888 of file compile.c.
References add_ensure_range(), ADD_LABEL, ADD_SEQ, rb_iseq_struct::compile_data, COMPILE_POPED, DECL_ANCHOR, iseq_compile_data_ensure_node_stack::ensure_node, iseq_compile_data::ensure_node_stack, iseq_compile_data_ensure_node_stack::erange, INIT_ANCHOR, NEW_LABEL, and iseq_compile_data_ensure_node_stack::prev.
Referenced by iseq_compile_each().
|
static |
Definition at line 2870 of file compile.c.
References ensure_range::begin, compile_data_alloc(), ensure_range::end, ne, and ensure_range::next.
Referenced by add_ensure_iseq().
|
static |
Definition at line 403 of file compile.c.
References iseq_link_element::next, iseq_link_element::prev, and verify_list().
|
static |
Definition at line 755 of file compile.c.
References iseq_link_anchor::anchor, iseq_link_anchor::last, iseq_link_element::next, iseq_link_element::prev, and verify_list().
Referenced by compile_array_().
|
static |
Definition at line 5084 of file compile.c.
References iseq_insn_data::insn_id, and iseq_insn_data::operands.
Referenced by iseq_set_sequence().
Definition at line 2344 of file compile.c.
References FIXABLE, LONG2FIX, nd_type, NODE_LIT, NODE_STR, Qfalse, rb_cNumeric, rb_dbl2big(), rb_obj_is_kind_of(), RFLOAT_VALUE, SYMBOL_P, T_FLOAT, TYPE, and v.
Referenced by when_vals().
Definition at line 1265 of file compile.c.
References BUILTIN_TYPE, rb_eql(), rb_str_hash_cmp(), SPECIAL_CONST_P, and T_STRING.
|
static |
Definition at line 1281 of file compile.c.
References FIX2LONG, rb_hash(), rb_str_hash(), SPECIAL_CONST_P, T_STRING, and TYPE.
Definition at line 5449 of file compile.c.
References NUM2LONG(), and v.
Referenced by rb_iseq_build_from_ary().
|
static |
Definition at line 2338 of file compile.c.
References compile_array_().
Referenced by iseq_compile_each(), and setup_args().
|
static |
Definition at line 2283 of file compile.c.
References ADD_INSN1, APPEND_LIST(), COMPILE_, DECL_ANCHOR, i, INIT_ANCHOR, INT2FIX, iseq_add_mark_object_compile_time(), len, nd_line, nd_type, NODE_ARRAY, NODE_LIT, NODE_ZARRAY, OBJ_FREEZE, Qfalse, Qtrue, rb_ary_push(), rb_ary_tmp_new(), rb_bug(), and ruby_node_name().
Referenced by compile_array(), and iseq_compile_each().
|
static |
|
static |
Definition at line 2574 of file compile.c.
References ADD_INSN, ADD_INSN1, COMPILE, COMPILE_OK, debugi, ID2SYM, nd_line, nd_type, NODE_COLON2, NODE_COLON3, NODE_CONST, and rb_cObject.
Referenced by iseq_compile_each().
|
static |
Definition at line 2601 of file compile.c.
References ADD_INSN1, COMPILE, INT2FIX, nd_line, nd_type, NODE_COLON3, Qfalse, Qtrue, rb_cObject, and VM_SPECIAL_OBJECT_CONST_BASE.
Referenced by iseq_compile_each().
|
static |
Definition at line 581 of file compile.c.
References ALLOC_N, iseq_compile_data_storage::buff, rb_iseq_struct::compile_data, iseq_compile_data_storage::next, iseq_compile_data_storage::pos, iseq_compile_data_storage::size, and iseq_compile_data::storage_current.
Referenced by add_ensure_range(), compile_data_alloc_adjust(), compile_data_alloc_insn(), compile_data_alloc_label(), insn_set_specialized_instruction(), iseq_build_from_ary_body(), new_insn_body(), and new_insn_send().
Definition at line 623 of file compile.c.
References compile_data_alloc().
Referenced by new_adjust_body().
Definition at line 611 of file compile.c.
References compile_data_alloc().
Referenced by new_insn_core().
Definition at line 617 of file compile.c.
References compile_data_alloc().
Referenced by new_label_body().
|
static |
Definition at line 2229 of file compile.c.
References ADD_INSN2, cnt, compile_dstr_fragments(), COMPILE_OK, INT2FIX, and nd_line.
Referenced by iseq_compile_each().
|
static |
Definition at line 2220 of file compile.c.
References ADD_INSN1, cnt, compile_dstr_fragments(), COMPILE_OK, INT2FIX, and nd_line.
Referenced by iseq_compile_each().
|
static |
Definition at line 2196 of file compile.c.
References ADD_INSN1, cnt, COMPILE, COMPILE_OK, debugp_param, hide_obj, nd_line, and NIL_P.
Referenced by compile_dregx(), and compile_dstr().
|
static |
Definition at line 2516 of file compile.c.
References ADD_INSN, ADD_INSN2, ADD_SEQ, COMPILE, compile_massign_lhs(), compile_massign_opt(), COMPILE_OK, DECL_ANCHOR, INIT_ANCHOR, INT2FIX, nd_line, nd_type, and NODE_POSTARG.
Referenced by iseq_compile_each().
|
static |
Definition at line 2400 of file compile.c.
References ADD_ELEM(), ADD_INSN, ADD_INSN1, ADD_SEQ, COMPILE_OK, COMPILE_POPED, DECL_ANCHOR, FIRST_ELEMENT(), FIXNUM_INC, INIT_ANCHOR, nd_line, nd_type, NODE_ATTRASGN, NODE_MASGN, iseq_insn_data::operands, POP_ELEMENT(), and REMOVE_ELEM().
Referenced by compile_massign(), and compile_massign_opt_lhs().
|
static |
Definition at line 2451 of file compile.c.
References ADD_INSN, COMPILE, compile_massign_opt_lhs(), COMPILE_POPED, i, MEMORY, nd_line, nd_type, NODE_ARRAY, NODE_CVASGN, NODE_DASGN, NODE_DASGN_CURR, NODE_IASGN, NODE_IASGN2, NODE_LASGN, and numberof.
Referenced by compile_massign().
|
static |
Definition at line 2442 of file compile.c.
References compile_massign_lhs().
Referenced by compile_massign_opt().
|
static |
Definition at line 2623 of file compile.c.
References ADD_INSN, ADD_INSN1, ADD_INSN3, ADD_INSNL, COMPILE, DEFINED_CONST, DEFINED_CVAR, defined_expr, DEFINED_FUNC, DEFINED_GVAR, DEFINED_IVAR, DEFINED_METHOD, DEFINED_REF, DEFINED_YIELD, DEFINED_ZSUPER, FALSE, hide_obj, RNode::id, ID2SYM, INT2FIX, iseq_add_mark_object_compile_time(), nd_line, nd_type, NEW_LABEL, NODE_AND, NODE_ARRAY, NODE_ATTRASGN, NODE_BACK_REF, NODE_CALL, NODE_CDECL, NODE_COLON2, NODE_COLON3, NODE_CONST, NODE_CVAR, NODE_CVASGN, NODE_CVDECL, NODE_DASGN, NODE_DASGN_CURR, NODE_DVAR, NODE_FALSE, NODE_FCALL, NODE_GASGN, NODE_GVAR, NODE_IASGN, NODE_IVAR, NODE_LASGN, NODE_LIT, NODE_LVAR, NODE_MASGN, NODE_NIL, NODE_NTH_REF, NODE_OP_ASGN1, NODE_OP_ASGN2, NODE_OP_ASGN_AND, NODE_OP_ASGN_OR, NODE_OR, NODE_SELF, NODE_STR, NODE_SUPER, NODE_TRUE, NODE_VCALL, NODE_YIELD, NODE_ZARRAY, NODE_ZSUPER, NULL, Qfalse, Qtrue, rb_cObject, rb_is_const_id(), rb_str_new2(), TRUE, and type.
|
static |
Definition at line 5160 of file compile.c.
References FIX2LONG, insn_data_length(), insn_data_line_no(), insn_data_to_s_detail(), iseq_adjust_data::label, iseq_label_data::label_no, iseq_link_element::next, rb_eSyntaxError, rb_raise(), StringValueCStr, and iseq_link_element::type.
Referenced by iseq_set_sequence(), and iseq_setup().
|
static |
Definition at line 684 of file compile.c.
References iseq_link_anchor::anchor, and iseq_link_element::next.
Referenced by compile_massign_lhs(), iseq_insns_unification(), iseq_optimize(), iseq_set_sequence(), iseq_set_sequence_stackcaching(), and iseq_setup().
|
static |
Definition at line 1662 of file compile.c.
References iseq_label_data::link, list, iseq_link_element::next, OPERAND_AT, and iseq_link_element::type.
Referenced by iseq_peephole_optimize().
Definition at line 1060 of file compile.c.
References get_dyna_var_idx_at_raw(), rb_iseq_struct::local_size, rb_iseq_struct::parent_iseq, and rb_bug().
Referenced by iseq_compile_each().
Definition at line 1035 of file compile.c.
References i, rb_iseq_struct::local_table, and rb_iseq_struct::local_table_size.
Referenced by get_dyna_var_idx(), get_local_var_idx(), and iseq_set_arguments().
Definition at line 5235 of file compile.c.
References ID2SYM, rb_eSyntaxError, rb_inspect(), rb_intern, rb_raise(), StringValuePtr, and sym_inspect().
Referenced by iseq_build_from_ary_exception().
Definition at line 1048 of file compile.c.
References get_dyna_var_idx_at_raw(), rb_iseq_struct::local_iseq, and rb_bug().
Referenced by iseq_compile_each().
|
static |
Definition at line 1678 of file compile.c.
References iseq_insn_data::link, list, iseq_link_element::next, and iseq_link_element::type.
Referenced by iseq_peephole_optimize().
|
static |
Definition at line 1692 of file compile.c.
References iseq_insn_data::link, list, iseq_link_element::prev, and iseq_link_element::type.
Referenced by iseq_peephole_optimize().
|
static |
Definition at line 632 of file compile.c.
References iseq_link_element::next, and iseq_link_element::prev.
Referenced by iseq_peephole_optimize().
|
static |
Definition at line 776 of file compile.c.
References iseq_link_anchor::anchor, iseq_link_anchor::last, iseq_link_element::next, iseq_link_element::prev, and verify_list().
Referenced by setup_args().
|
static |
Definition at line 5078 of file compile.c.
References iseq_insn_data::insn_id.
Referenced by dump_disasm_list(), and iseq_set_sequence().
|
static |
Definition at line 5090 of file compile.c.
References iseq_insn_data::line_no.
Referenced by dump_disasm_list().
Definition at line 5096 of file compile.c.
References FIX2INT, rb_global_entry::id, iseq_insn_data::insn_id, iseq_label_data::label_no, OPERAND_AT, iseq_insn_data::operands, PRIxVALUE, Qnil, rb_eSyntaxError, rb_id2name(), rb_inspect(), rb_raise(), rb_sprintf(), rb_str_cat2(), rb_str_catf(), rb_str_concat(), rb_iseq_struct::self, and type.
Referenced by dump_disasm_list().
|
staticread |
Definition at line 5300 of file compile.c.
References i, ID2SYM, rb_intern, st_init_numtable, and st_insert.
Referenced by iseq_build_from_ary_body().
Definition at line 1823 of file compile.c.
References compile_data_alloc(), COMPILE_OK, i, rb_iseq_struct::ic_size, iseq_insn_data::insn_id, INT2FIX, iseq_insn_data::operand_size, and iseq_insn_data::operands.
Referenced by iseq_specialized_instruction().
Definition at line 418 of file compile.c.
References COMPILE_OK, rb_iseq_struct::mark_ary, rb_ary_push(), and SPECIAL_CONST_P.
Referenced by iseq_build_from_ary_body(), iseq_set_exception_table(), iseq_set_sequence(), and new_child_iseq().
Definition at line 429 of file compile.c.
References rb_iseq_struct::compile_data, COMPILE_OK, iseq_compile_data::mark_ary, rb_ary_push(), and SPECIAL_CONST_P.
Referenced by compile_array_(), defined_expr(), iseq_build_from_ary_body(), and iseq_compile_each().
|
static |
Definition at line 5314 of file compile.c.
References ADD_ELEM(), ADD_LABEL, argc, argv, CLASS_OF, compile_data_alloc(), COMPILE_OK, rb_iseq_struct::filename, FIXNUM_P, i, rb_iseq_struct::ic_size, insn_make_insn_table(), iseq_add_mark_object(), iseq_add_mark_object_compile_time(), iseq_setup(), len, new_insn_core(), NUM2INT, Qnil, RARRAY_LEN, RARRAY_LENINT, RARRAY_PTR, rb_ary_dup(), rb_ary_entry(), rb_ary_store(), rb_cISeq, rb_compile_error(), rb_convert_type(), rb_eSyntaxError, rb_eTypeError, RB_GC_GUARD, rb_global_entry(), rb_inspect(), rb_iseq_load(), rb_raise(), register_label(), RSTRING_PTR, rb_iseq_struct::self, st_free_table, st_lookup, sym, SYM2ID, SYMBOL_P, T_ARRAY, T_SYMBOL, TYPE, and validate_labels().
Referenced by rb_iseq_build_from_ary().
|
static |
Definition at line 5265 of file compile.c.
References ADD_CATCH_ENTRY, COMPILE_OK, get_exception_sym2type(), i, NUM2INT, Qnil, RARRAY_LEN, RARRAY_PTR, rb_convert_type(), rb_eSyntaxError, RB_GC_GUARD, rb_iseq_load(), rb_raise(), register_label(), rb_iseq_struct::self, T_ARRAY, type, and v.
Referenced by rb_iseq_build_from_ary().
|
static |
compile each node
self: InstructionSequence node: Ruby compiled node poped: This node will be poped
Definition at line 3017 of file compile.c.
References ADD_ADJUST, ADD_ADJUST_RESTORE, ADD_CALL, ADD_CALL_RECEIVER, ADD_CALL_WITH_BLOCK, ADD_CATCH_ENTRY, add_ensure_iseq(), ADD_INSN, ADD_INSN1, ADD_INSN2, ADD_INSN3, ADD_INSNL, ADD_LABEL, ADD_SEND, ADD_SEND_R, ADD_SEQ, ADD_TRACE, rb_iseq_struct::arg_opts, rb_iseq_struct::arg_post_len, rb_iseq_struct::arg_post_start, rb_iseq_struct::arg_rest, rb_iseq_struct::arg_simple, argc, rb_iseq_struct::argc, args, ensure_range::begin, cnt, COMPILE, COMPILE_, compile_array(), compile_array_(), compile_branch_condition(), compile_colon2(), compile_cpath(), rb_iseq_struct::compile_data, compile_dregx(), compile_dstr(), COMPILE_ERROR, compile_massign(), COMPILE_NG, COMPILE_OK, COMPILE_POPED, CONST_ID, iseq_compile_data::current_block, debug_node_end, debug_node_start, debugi, debugp_param, debugs, DECL_ANCHOR, DEFAULT_SPECIAL_VAR_COUNT, defined_expr, ensure_range::end, iseq_compile_data::end_label, iseq_compile_data::ensure_node_stack, iseq_compile_data_ensure_node_stack::erange, ERROR_ARGS, FIXNUM_INC, RNode::flags, rb_iseq_struct::flip_cnt, get_dyna_var_idx(), get_local_var_idx(), i, rb_iseq_struct::ic_size, RNode::id, ID2SYM, id_core_define_method, id_core_define_singleton_method, id_core_set_method_alias, id_core_set_postexe, id_core_set_variable_alias, id_core_undef_method, idAREF, idASET, idBackquote, idEqq, idEqTilde, INIT_ANCHOR, rb_compile_option_struct::inline_const_cache, INSN_OF, INT2FIX, iseq_add_mark_object_compile_time(), key, iseq_compile_data::last_line, LIST_SIZE_ZERO(), rb_iseq_struct::local_iseq, rb_iseq_struct::local_size, LONG2FIX, iseq_compile_data::loopval_popped, make_name_for_block(), rb_iseq_struct::name, nd_line, nd_type, NEW_CHILD_ISEQVAL, NEW_ISEQVAL, NEW_LABEL, ensure_range::next, RNode::node, NODE_ALIAS, NODE_AND, NODE_ARGSCAT, NODE_ARGSPUSH, NODE_ARRAY, NODE_ATTRASGN, NODE_BACK_REF, NODE_BEGIN, NODE_BLOCK, NODE_BLOCK_PASS, NODE_BREAK, NODE_CALL, NODE_CASE, NODE_CDECL, NODE_CLASS, NODE_COLON2, NODE_COLON3, NODE_CONST, NODE_CVAR, NODE_CVASGN, NODE_DASGN, NODE_DASGN_CURR, NODE_DEFINED, NODE_DEFN, NODE_DEFS, NODE_DOT2, NODE_DOT3, NODE_DREGX, NODE_DREGX_ONCE, NODE_DSTR, NODE_DSYM, NODE_DVAR, NODE_DXSTR, NODE_ENSURE, NODE_ERRINFO, NODE_EVSTR, NODE_FALSE, NODE_FCALL, NODE_FL_NEWLINE, NODE_FLIP2, NODE_FLIP3, NODE_FOR, NODE_GASGN, NODE_GVAR, NODE_HASH, NODE_IASGN, NODE_IASGN2, NODE_IF, NODE_ITER, NODE_IVAR, NODE_LAMBDA, NODE_LASGN, NODE_LIT, NODE_LVAR, NODE_MASGN, NODE_MATCH, NODE_MATCH2, NODE_MATCH3, NODE_MODULE, NODE_NEXT, NODE_NIL, NODE_NTH_REF, NODE_OP_ASGN1, NODE_OP_ASGN2, NODE_OP_ASGN_AND, NODE_OP_ASGN_OR, NODE_OPT_N, NODE_OPTBLOCK, NODE_OR, NODE_POSTEXE, NODE_PRELUDE, NODE_REDO, NODE_RESBODY, NODE_RESCUE, NODE_RETRY, NODE_RETURN, NODE_SCLASS, NODE_SELF, NODE_SPLAT, NODE_STR, NODE_SUPER, NODE_TRUE, NODE_UNDEF, NODE_UNTIL, NODE_VALIAS, NODE_VALUES, NODE_VCALL, NODE_WHEN, NODE_WHILE, NODE_XSTR, NODE_YIELD, NODE_ZARRAY, NODE_ZSUPER, NULL, OBJ_FREEZE, OPERAND_AT, iseq_compile_data::option, rb_iseq_struct::parent_iseq, POP_ELEMENT(), iseq_label_data::position, iseq_compile_data_ensure_node_stack::prev, push_ensure_entry(), Qfalse, Qtrue, Qundef, rb_ary_tmp_new(), rb_bug(), rb_cObject, rb_eStandardError, rb_id2name(), rb_id2str(), rb_is_const_id(), rb_sprintf(), rb_str_concat(), rb_str_dup(), rb_str_new2(), iseq_compile_data::redo_label, RUBY_EVENT_LINE, RUBY_EVENT_RETURN, ruby_node_name(), setup_args(), rb_compile_option_struct::specialized_instruction, st_init_numtable, st_insert, st_lookup, iseq_compile_data::start_label, SYM2ID, SYMBOL_P, rb_compile_option_struct::tailcall_optimization, type, rb_iseq_struct::type, RNode::u1, RNode::u2, VM_CALL_ARGS_BLOCKARG_BIT, VM_CALL_ARGS_SPLAT_BIT, VM_CALL_FCALL_BIT, VM_CALL_VCALL_BIT, VM_SPECIAL_OBJECT_CBASE, VM_SPECIAL_OBJECT_CONST_BASE, VM_SPECIAL_OBJECT_VMCORE, and when_vals().
|
static |
Definition at line 1984 of file compile.c.
References COMPILE_OK, FIRST_ELEMENT(), id, if(), iseq_insn_data::insn_id, iseq_insn_data::link, list, iseq_link_element::next, iseq_link_element::prev, and iseq_link_element::type.
Referenced by iseq_setup().
|
static |
Definition at line 1916 of file compile.c.
References rb_iseq_struct::compile_data, COMPILE_OK, FIRST_ELEMENT(), iseq_peephole_optimize(), iseq_specialized_instruction(), list, iseq_link_element::next, rb_compile_option_struct::operands_unification, iseq_compile_data::option, rb_compile_option_struct::peephole_optimization, rb_compile_option_struct::specialized_instruction, rb_compile_option_struct::tailcall_optimization, and iseq_link_element::type.
Referenced by iseq_setup().
|
static |
Definition at line 1706 of file compile.c.
References COMPILE_OK, FIXNUM_OR, get_destination_insn(), get_next_insn(), get_prev_insn(), INSERT_ELEM_NEXT(), iseq_insn_data::insn_id, iseq_insn_data::line_no, iseq_insn_data::link, list, new_insn_core(), OPERAND_AT, iseq_insn_data::operand_size, iseq_insn_data::operands, REMOVE_ELEM(), REPLACE_ELEM(), and VM_CALL_TAILCALL_BIT.
Referenced by iseq_optimize().
|
static |
Definition at line 1083 of file compile.c.
References ADD_LABEL, ALLOC_N, rb_iseq_struct::arg_block, rb_iseq_struct::arg_opt_table, rb_iseq_struct::arg_opts, rb_iseq_struct::arg_post_len, rb_iseq_struct::arg_post_start, rb_iseq_struct::arg_rest, rb_iseq_struct::arg_simple, rb_iseq_struct::arg_size, rb_iseq_struct::argc, COMPILE_OK, COMPILE_POPED, debugs, get_dyna_var_idx_at_raw(), i, if(), MEMCPY, nd_line, nd_type, NEW_LABEL, NODE_ARGS, RARRAY_PTR, rb_ary_clear(), rb_ary_push(), rb_ary_tmp_new(), rb_bug(), ruby_node_name(), and rb_iseq_struct::type.
Referenced by rb_iseq_compile_node().
|
static |
Definition at line 1022 of file compile.c.
References ALLOC_N, COMPILE_OK, CONST_ID, rb_iseq_struct::local_size, rb_iseq_struct::local_table, and rb_iseq_struct::local_table_size.
Referenced by rb_iseq_compile_node().
|
static |
Definition at line 1591 of file compile.c.
References ALLOC_N, rb_iseq_struct::catch_table, iseq_compile_data::catch_table_ary, rb_iseq_struct::catch_table_size, catch_type(), iseq_catch_table_entry::CATCH_TYPE_BREAK, iseq_catch_table_entry::CATCH_TYPE_NEXT, iseq_catch_table_entry::CATCH_TYPE_RESCUE, rb_iseq_struct::compile_data, COMPILE_OK, iseq_catch_table_entry::cont, iseq_catch_table_entry::end, i, iseq_catch_table_entry::iseq, iseq_add_mark_object(), label_get_position(), label_get_sp(), RARRAY_LEN, RARRAY_PTR, iseq_catch_table_entry::sp, iseq_catch_table_entry::start, and iseq_catch_table_entry::type.
Referenced by iseq_setup().
Definition at line 1233 of file compile.c.
References ALLOC_N, COMPILE_OK, debugs, rb_iseq_struct::local_size, rb_iseq_struct::local_table, rb_iseq_struct::local_table_size, MEMCPY, and size.
Referenced by rb_iseq_compile_node().
|
static |
Definition at line 1648 of file compile.c.
References rb_iseq_struct::arg_opt_table, rb_iseq_struct::arg_opts, COMPILE_OK, i, and label_get_position().
Referenced by iseq_setup().
|
static |
ruby insn object list -> raw instruction sequence
Definition at line 1300 of file compile.c.
References ALLOC_N, calc_sp_depth(), cdhash_type, COMPILE_OK, dump_disasm_list(), rb_iseq_struct::filename, FIRST_ELEMENT(), FIX2INT, GetISeqPtr, hide_obj, i, rb_iseq_struct::ic_entries, rb_iseq_struct::ic_size, insn_data_length(), iseq_insn_data::insn_id, rb_iseq_struct::insn_info_size, rb_iseq_struct::insn_info_table, INT2FIX, rb_iseq_struct::iseq, iseq_add_mark_object(), rb_iseq_struct::iseq_size, iseq_adjust_data::label, len, iseq_insn_info_entry::line_no, iseq_insn_data::line_no, iseq_adjust_data::line_no, list, MEMZERO, rb_iseq_struct::name, iseq_link_element::next, iseq_insn_data::operand_size, iseq_insn_data::operands, iseq_label_data::position, iseq_insn_info_entry::position, RARRAY_LEN, rb_ary_entry(), rb_bug(), rb_compile_error(), rb_compile_warning(), rb_hash_aset(), rb_hash_new(), rb_hash_tbl(), RHASH_TBL, RSTRING_PTR, iseq_label_data::set, iseq_label_data::sp, iseq_insn_info_entry::sp, st_lookup, rb_iseq_struct::stack_max, SYM2ID, TRUE, iseq_link_element::type, type, UNLIKELY, v, and xfree().
Referenced by iseq_setup().
|
static |
Definition at line 2098 of file compile.c.
References COMPILE_OK, rb_iseq_struct::filename, FIRST_ELEMENT(), iseq_insn_data::insn_id, iseq_insn_data::line_no, list, new_insn_body(), iseq_link_element::next, rb_compile_error(), REMOVE_ELEM(), REPLACE_ELEM(), RSTRING_PTR, and iseq_link_element::type.
Referenced by iseq_setup().
|
static |
Definition at line 970 of file compile.c.
References rb_iseq_struct::compile_data, compile_debug, debugs, dump_disasm_list(), FIRST_ELEMENT(), rb_compile_option_struct::instructions_unification, iseq_insns_unification(), iseq_optimize(), iseq_set_exception_table(), iseq_set_optargs_table(), iseq_set_sequence(), iseq_set_sequence_stackcaching(), iseq_compile_data::option, rb_iseq_disasm(), rb_iseq_translate_threaded_code(), rb_iseq_struct::self, rb_compile_option_struct::stack_caching, and StringValueCStr.
Referenced by iseq_build_from_ary_body(), and rb_iseq_compile_node().
Definition at line 1843 of file compile.c.
References argc, COMPILE_OK, FIX2INT, idAREF, idDIV, idEq, idGE, idGT, idLE, idLT, idLTLT, idMINUS, idMOD, idMULT, idNeq, idNot, idPLUS, iseq_insn_data::insn_id, insn_set_specialized_instruction(), INT2FIX, OPERAND_AT, and SYM2ID.
Referenced by iseq_optimize().
|
static |
Definition at line 1579 of file compile.c.
References iseq_label_data::position.
Referenced by iseq_set_exception_table(), and iseq_set_optargs_table().
|
static |
Definition at line 1585 of file compile.c.
References iseq_label_data::sp.
Referenced by iseq_set_exception_table().
|
static |
Definition at line 737 of file compile.c.
References iseq_link_anchor::anchor, and iseq_link_element::next.
Referenced by iseq_compile_each(), and setup_args().
Definition at line 2836 of file compile.c.
References iseq_catch_table_entry::iseq, rb_iseq_struct::local_iseq, rb_iseq_struct::name, rb_iseq_struct::parent_iseq, rb_sprintf(), RSTRING_PTR, and rb_iseq_struct::type.
Referenced by iseq_compile_each().
Definition at line 894 of file compile.c.
References compile_data_alloc_adjust(), iseq_adjust_data::label, iseq_adjust_data::line_no, iseq_adjust_data::link, iseq_link_element::next, and iseq_link_element::type.
|
static |
Definition at line 956 of file compile.c.
References rb_iseq_struct::compile_data, debugs, INT2FIX, iseq_add_mark_object(), iseq_filename, iseq_filepath, iseq_compile_data::option, rb_iseq_new_with_opt(), and rb_iseq_struct::self.
Definition at line 922 of file compile.c.
References argc, argv, compile_data_alloc(), i, new_insn_core(), v, and va_init_list.
Referenced by iseq_set_sequence_stackcaching().
|
static |
Definition at line 905 of file compile.c.
References argc, argv, compile_data_alloc_insn(), iseq_insn_data::insn_id, iseq_insn_data::line_no, iseq_insn_data::link, iseq_link_element::next, iseq_insn_data::operand_size, iseq_insn_data::operands, iseq_insn_data::sc_state, and iseq_link_element::type.
Referenced by iseq_build_from_ary_body(), iseq_peephole_optimize(), new_insn_body(), and new_insn_send().
|
static |
Definition at line 940 of file compile.c.
References argc, compile_data_alloc(), rb_iseq_struct::ic_size, id, INT2FIX, and new_insn_core().
Definition at line 880 of file compile.c.
References rb_iseq_struct::compile_data, compile_data_alloc_label(), iseq_label_data::label_no, iseq_compile_data::label_no, iseq_label_data::link, iseq_link_element::next, iseq_label_data::sc_state, iseq_label_data::sp, and iseq_link_element::type.
|
static |
Definition at line 698 of file compile.c.
References iseq_link_element::next, iseq_link_element::prev, and verify_list().
Referenced by compile_massign_lhs(), iseq_compile_each(), and setup_args().
|
static |
Definition at line 2859 of file compile.c.
References rb_iseq_struct::compile_data, iseq_compile_data_ensure_node_stack::ensure_node, iseq_compile_data::ensure_node_stack, iseq_compile_data_ensure_node_stack::erange, and iseq_compile_data_ensure_node_stack::prev.
Referenced by iseq_compile_each().
int rb_dvar_defined | ( | ID | id | ) |
Definition at line 5526 of file compile.c.
References rb_thread_struct::base_block, GET_THREAD, i, rb_block_struct::iseq, rb_iseq_struct::local_table, rb_iseq_struct::local_table_size, rb_iseq_struct::parent_iseq, and rb_iseq_struct::type.
Referenced by dvar_defined_gen().
VALUE rb_insns_name_array | ( | void | ) |
Definition at line 5207 of file compile.c.
References i, numberof, rb_ary_new(), rb_ary_push(), rb_obj_freeze(), and rb_str_new2().
Referenced by Init_VM().
VALUE rb_iseq_build_from_ary | ( | rb_iseq_t * | iseq, |
VALUE | locals, | ||
VALUE | args, | ||
VALUE | exception, | ||
VALUE | body | ||
) |
Definition at line 5452 of file compile.c.
References ALLOC_N, rb_iseq_struct::arg_block, rb_iseq_struct::arg_opt_table, rb_iseq_struct::arg_opts, rb_iseq_struct::arg_post_len, rb_iseq_struct::arg_post_start, rb_iseq_struct::arg_rest, rb_iseq_struct::arg_simple, rb_iseq_struct::arg_size, rb_iseq_struct::argc, CHECK_ARRAY, CHECK_INTEGER(), CHECK_SYMBOL, DECL_ANCHOR, FIX2INT, FIX2LONG, FIXNUM_P, i, INIT_ANCHOR, iseq_build_from_ary_body(), iseq_build_from_ary_exception(), rb_iseq_struct::local_size, rb_iseq_struct::local_table, rb_iseq_struct::local_table_size, NUM2INT, RARRAY_LEN, RARRAY_LENINT, RARRAY_PTR, rb_ary_entry(), register_label(), rb_iseq_struct::self, st_init_numtable, and SYM2ID.
Referenced by iseq_load().
Definition at line 462 of file compile.c.
References ADD_CATCH_ENTRY, ADD_INSN, ADD_INSN1, ADD_INSN2, ADD_LABEL, ADD_TRACE, COMPILE, rb_iseq_struct::compile_data, COMPILE_POPED, DECL_ANCHOR, ensure_range::end, iseq_compile_data::end_label, ERROR_ARGS, FIX2INT, GetISeqPtr, INIT_ANCHOR, INT2FIX, iseq_set_arguments(), iseq_set_exception_local_table(), iseq_set_local_table(), iseq_setup(), iseq_compile_data::last_line, rb_iseq_struct::line_no, nd_line, nd_type, NEW_LABEL, NODE_SCOPE, rb_bug(), rb_compile_error(), RUBY_EVENT_CALL, RUBY_EVENT_CLASS, RUBY_EVENT_END, RUBY_EVENT_RETURN, iseq_compile_data::start_label, rb_iseq_struct::type, and validate_labels().
Referenced by rb_iseq_new_with_bopt_and_opt().
int rb_iseq_translate_threaded_code | ( | rb_iseq_t * | iseq | ) |
Definition at line 555 of file compile.c.
References ALLOC_N, COMPILE_OK, i, rb_iseq_struct::iseq, rb_iseq_struct::iseq_encoded, rb_iseq_struct::iseq_size, len, MEMCPY, and rb_vm_get_insns_address_table().
Referenced by iseq_setup(), and rb_iseq_build_for_ruby2cext().
int rb_local_defined | ( | ID | id | ) |
Definition at line 5551 of file compile.c.
References rb_thread_struct::base_block, GET_THREAD, i, rb_block_struct::iseq, rb_iseq_struct::local_iseq, rb_iseq_struct::local_table, and rb_iseq_struct::local_table_size.
Referenced by local_id_gen().
int rb_parse_in_eval | ( | void | ) |
Definition at line 5570 of file compile.c.
References GET_THREAD.
Referenced by parser_compile_string(), and rb_parser_compile_file().
int rb_parse_in_main | ( | void | ) |
Definition at line 5218 of file compile.c.
References NEW_LABEL, rb_convert_type(), st_insert, st_lookup, and T_SYMBOL.
Referenced by iseq_build_from_ary_body(), iseq_build_from_ary_exception(), and rb_iseq_build_from_ary().
|
static |
Definition at line 675 of file compile.c.
References iseq_link_element::next, and iseq_link_element::prev.
Referenced by compile_massign_lhs(), iseq_peephole_optimize(), and iseq_set_sequence_stackcaching().
|
static |
Definition at line 662 of file compile.c.
References iseq_link_element::next, and iseq_link_element::prev.
Referenced by iseq_peephole_optimize(), and iseq_set_sequence_stackcaching().
|
static |
Definition at line 2923 of file compile.c.
References ADD_INSN, ADD_INSN1, ADD_SEQ, argc, COMPILE, compile_array(), DECL_ANCHOR, i, INIT_ANCHOR, INSERT_LIST(), INT2FIX, LIST_SIZE_ZERO(), nd_line, nd_type, NODE_ARGSCAT, NODE_ARGSPUSH, NODE_ARRAY, NODE_BLOCK_PASS, NODE_SPLAT, POP_ELEMENT(), Qfalse, rb_bug(), ruby_node_name(), VM_CALL_ARGS_BLOCKARG_BIT, and VM_CALL_ARGS_SPLAT_BIT.
Referenced by iseq_compile_each().
Definition at line 438 of file compile.c.
References COMPILE_ERROR, iseq_label_data::link, iseq_link_element::next, iseq_label_data::position, rb_id2name(), ruby_sourcefile, and ST_CONTINUE.
Referenced by validate_labels().
Definition at line 453 of file compile.c.
References NIL_P, rb_exc_raise(), st_foreach, and validate_label().
Referenced by iseq_build_from_ary_body(), and rb_iseq_compile_node().
|
static |
Definition at line 356 of file compile.c.
References iseq_link_anchor::anchor, compile_debug, iseq_link_anchor::last, list, iseq_link_element::next, iseq_link_element::prev, and rb_bug().
Referenced by ADD_ELEM(), APPEND_ELEM(), APPEND_LIST(), INSERT_LIST(), and POP_ELEMENT().
|
static |
Definition at line 2366 of file compile.c.
References ADD_INSN1, ADD_INSNL, ADD_SEND, case_when_optimizable_literal(), COMPILE, debugp_param, ID2SYM, idEqq, INT2FIX, nd_line, nd_type, NODE_STR, OBJ_FREEZE, Qfalse, and rb_ary_push().
Referenced by iseq_compile_each().
|
static |
Definition at line 1291 of file compile.c.
Referenced by iseq_set_sequence().