#include "ruby/ruby.h"
#include "ruby/st.h"
#include "ruby/util.h"
#include "ruby/encoding.h"
#include "node.h"
Go to the source code of this file.
#define check_autoload_table | ( | av | ) | (struct st_table *)rb_check_typeddata(av, &autoload_data_type) |
Definition at line 1425 of file variable.c.
Referenced by autoload_delete(), autoload_node(), and rb_autoload().
#define CVAR_LOOKUP | ( | v, | ||
r | ||||
) |
do {\ if (RCLASS_IV_TBL(klass) && st_lookup(RCLASS_IV_TBL(klass),(st_data_t)id,(v))) {\ r;\ }\ if (FL_TEST(klass, FL_SINGLETON) ) {\ VALUE obj = rb_iv_get(klass, "__attached__");\ switch (TYPE(obj)) {\ case T_MODULE:\ case T_CLASS:\ klass = obj;\ break;\ default:\ klass = RCLASS_SUPER(klass);\ break;\ }\ }\ else {\ klass = RCLASS_SUPER(klass);\ }\ while (klass) {\ if (RCLASS_IV_TBL(klass) && st_lookup(RCLASS_IV_TBL(klass),(st_data_t)id,(v))) {\ r;\ }\ klass = RCLASS_SUPER(klass);\ }\ } while(0)
Definition at line 1884 of file variable.c.
Referenced by rb_cvar_defined(), rb_cvar_get(), and rb_cvar_set().
#define global_entry rb_global_entry |
Definition at line 324 of file variable.c.
Referenced by rb_alias_variable(), rb_f_trace_var(), rb_f_untrace_var(), rb_global_entry(), rb_gv_get(), and rb_gv_set().
#define global_variable rb_global_variable |
Definition at line 323 of file variable.c.
#define gvar_getter_t rb_gvar_getter_t |
Definition at line 326 of file variable.c.
Referenced by rb_define_hooked_variable().
#define gvar_marker_t rb_gvar_marker_t |
Definition at line 328 of file variable.c.
#define gvar_setter_t rb_gvar_setter_t |
Definition at line 327 of file variable.c.
Referenced by rb_define_hooked_variable().
#define readonly_setter rb_gvar_readonly_setter |
Definition at line 359 of file variable.c.
Referenced by rb_define_readonly_variable().
#define undef_getter rb_gvar_undef_getter |
Definition at line 347 of file variable.c.
Referenced by rb_gvar_defined().
#define undef_marker rb_gvar_undef_marker |
Definition at line 349 of file variable.c.
#define undef_setter rb_gvar_undef_setter |
Definition at line 348 of file variable.c.
#define val_getter rb_gvar_val_getter |
Definition at line 351 of file variable.c.
#define val_marker rb_gvar_val_marker |
Definition at line 353 of file variable.c.
#define val_setter rb_gvar_val_setter |
Definition at line 352 of file variable.c.
#define var_getter rb_gvar_var_getter |
Definition at line 355 of file variable.c.
Referenced by rb_define_hooked_variable().
#define var_marker rb_gvar_var_marker |
Definition at line 357 of file variable.c.
#define var_setter rb_gvar_var_setter |
Definition at line 356 of file variable.c.
Referenced by rb_define_hooked_variable().
Definition at line 1462 of file variable.c.
References autoload, check_autoload_table, st_table::num_entries, RCLASS_IV_TBL, st_delete(), and st_lookup().
Referenced by mod_av_set(), and rb_const_remove().
static void autoload_free | ( | void * | ptr | ) | [static] |
Definition at line 1408 of file variable.c.
References st_free_table().
static void autoload_mark | ( | void * | ptr | ) | [static] |
Definition at line 1402 of file variable.c.
References rb_mark_tbl().
static size_t autoload_memsize | ( | const void * | ptr | ) | [static] |
Definition at line 1414 of file variable.c.
References st_memsize().
Definition at line 1496 of file variable.c.
References autoload, autoload_provided(), check_autoload_table, Check_Type, rb_eArgError, rb_ensure(), rb_raise(), rb_safe_level, rb_set_safe_level_force(), RCLASS_IV_TBL, reset_safe(), RSTRING_PTR, st_lookup(), and T_STRING.
Referenced by rb_autoload_load(), rb_autoload_p(), and rb_const_defined_0().
Definition at line 1529 of file variable.c.
References Qundef, RCLASS_IV_TBL, and st_lookup().
Referenced by rb_autoload_load(), and rb_autoload_p().
Definition at line 1482 of file variable.c.
References rb_feature_provided().
Referenced by autoload_node().
Definition at line 144 of file variable.c.
References classid, classpath, find_class_path(), OBJ_FREEZE, fc_result::path, rb_bug(), rb_cObject, rb_id2str(), rb_str_dup(), RCLASS_IV_TBL, st_delete(), st_insert(), st_lookup(), SYM2ID, and TYPE.
Referenced by rb_class_path(), and rb_mod_name().
Definition at line 1359 of file variable.c.
References ID2SYM, rb_funcall(), and rb_intern.
Referenced by rb_const_get_0().
Definition at line 2004 of file variable.c.
References ID2SYM, rb_ary_includes(), rb_ary_push(), and rb_is_class_id().
Referenced by rb_mod_class_variables().
Definition at line 74 of file variable.c.
References fc_path(), fc_result::klass, list, fc_result::name, fc_result::path, fc_result::prev, rb_is_const_id(), RCLASS_IV_TBL, st_foreach(), T_CLASS, T_MODULE, fc_result::track, and TYPE.
Referenced by find_class_path().
Definition at line 47 of file variable.c.
References classpath, fc_result::name, OBJ_FREEZE, fc_result::path, fc_result::prev, rb_cObject, rb_id2str(), rb_str_append(), rb_str_cat2(), rb_str_dup(), RCLASS_IV_TBL, st_lookup(), and fc_result::track.
Referenced by fc_i().
Definition at line 116 of file variable.c.
References classpath, fc_i(), fc_result::klass, fc_result::name, fc_result::path, fc_result::prev, rb_cObject, RCLASS_IV_TBL, st_delete(), st_foreach_safe(), st_init_numtable(), st_insert(), tmp_classpath, and fc_result::track.
Referenced by classname().
Definition at line 871 of file variable.c.
References trace_var::data, and st_lookup().
Referenced by rb_ivar_defined().
Definition at line 830 of file variable.c.
References rb_id2name(), rb_warning(), and st_lookup().
Referenced by ivar_get().
Definition at line 886 of file variable.c.
References trace_var::data, st_table::num_entries, st_delete(), st_free_table(), and st_lookup().
Referenced by rb_obj_remove_instance_variable().
Definition at line 848 of file variable.c.
References trace_var::data, FL_EXIVAR, FL_SET, rb_error_frozen(), rb_obj_frozen_p(), rb_special_const_p(), st_add_direct(), st_init_numtable(), st_insert(), and st_lookup().
Referenced by rb_ivar_set().
Definition at line 922 of file variable.c.
References givar_mark_i(), rb_special_const_p(), and st_foreach_safe().
Referenced by rb_mark_generic_ivar_tbl().
static ID global_id | ( | const char * | name | ) | [static] |
Definition at line 480 of file variable.c.
References ALLOCA_N, buf, id, len, rb_intern, and rb_intern2().
Referenced by rb_define_hooked_variable(), rb_gv_get(), and rb_gv_set().
Definition at line 746 of file variable.c.
References ID2SYM, and rb_ary_push().
Referenced by rb_f_global_variables().
void Init_var_tables | ( | void | ) |
Definition at line 28 of file variable.c.
References autoload, classid, classpath, CONST_ID, st_init_numtable(), and tmp_classpath.
Definition at line 989 of file variable.c.
References FL_EXIVAR, FL_TEST, generic_ivar_get(), len, Qundef, rb_id2name(), rb_special_const_p(), rb_warning(), RCLASS_IV_TBL, ROBJECT_IV_INDEX_TBL, ROBJECT_IVPTR, ROBJECT_NUMIV, st_lookup(), T_CLASS, T_MODULE, T_OBJECT, and TYPE.
Referenced by rb_attr_get(), and rb_ivar_get().
Definition at line 1240 of file variable.c.
References ID2SYM, rb_ary_push(), and rb_is_instance_id().
Referenced by rb_obj_instance_variables().
Definition at line 1711 of file variable.c.
References ID2SYM, and rb_ary_push().
Referenced by rb_const_list().
static int mark_global_entry | ( | ID | key, | |
struct global_entry * | entry | |||
) | [static] |
Definition at line 458 of file variable.c.
References trace_var::data, global_variable::data, global_variable::marker, trace_var::next, rb_gc_mark_maybe(), and global_variable::trace.
Referenced by rb_gc_mark_global_tbl().
Definition at line 1812 of file variable.c.
References autoload_delete(), BUILTIN_TYPE, OBJ_FROZEN, OBJ_UNTRUSTED, Qundef, rb_error_frozen(), rb_eSecurityError, rb_id2name(), rb_raise(), rb_safe_level, rb_vm_change_state(), rb_warn(), RCLASS_IV_TBL, st_init_numtable(), st_insert(), st_lookup(), and T_MODULE.
Referenced by rb_const_set(), and rb_cvar_set().
NORETURN | ( | static void | uninitialized_constantVALUE, ID | ) |
Definition at line 1159 of file variable.c.
References obj_ivar_tag::arg, func, obj_ivar_tag::func, obj_ivar_tag::obj, obj_ivar_i(), ROBJECT_IV_INDEX_TBL, and st_foreach_safe().
Referenced by rb_ivar_foreach().
Definition at line 1146 of file variable.c.
References obj_ivar_tag::arg, obj_ivar_tag::func, obj_ivar_tag::obj, Qundef, ROBJECT_IVPTR, and ROBJECT_NUMIV.
Referenced by obj_ivar_each().
Definition at line 1877 of file variable.c.
References RBASIC, T_ICLASS, and TYPE.
Referenced by rb_cvar_get(), and rb_cvar_set().
Definition at line 778 of file variable.c.
References ALLOC, global_variable::block_trace, global_variable::counter, global_entry, trace_var::next, rb_eRuntimeError, rb_eSecurityError, rb_global_entry(), rb_raise(), rb_safe_level, st_add_direct(), st_lookup(), global_variable::trace, and xfree().
Referenced by Init_load(), and m_core_set_variable_alias().
Definition at line 1031 of file variable.c.
References FALSE, and ivar_get().
Referenced by ecerr_destination_encoding(), ecerr_destination_encoding_name(), ecerr_error_bytes(), ecerr_error_char(), ecerr_incomplete_input(), ecerr_readagain_bytes(), ecerr_source_encoding(), ecerr_source_encoding_name(), eval_string_with_cref(), exc_backtrace(), exc_equal(), exc_to_s(), exit_status(), exit_success_p(), iconv_failure_failed(), iconv_failure_inspect(), iconv_failure_success(), ip_set_exc_message(), lib_fromUTF8_core(), lib_toUTF8_core(), name_err_name(), name_err_to_s(), nometh_err_args(), ossl_asn1_get_asn1type(), private_iv_get(), pst_pid(), readline_attempted_completion_function(), readline_s_get_completion_case_fold(), readline_s_get_completion_proc(), reg_compile_gen(), slicebefore_i(), sockopt_data(), sockopt_family_m(), sockopt_level(), sockopt_optname(), stop_result(), syck_parser_load(), syck_parser_load_documents(), syck_resolver_add_type(), syck_resolver_transfer(), syserr_eqq(), syserr_errno(), time_mload(), vm_call0(), and vm_call_method().
Definition at line 1429 of file variable.c.
References autoload, check_autoload_table, DATA_PTR, FL_TAINT, FL_UNSET, NODE_MEMO, OBJ_FREEZE, Qundef, rb_const_set(), rb_eArgError, rb_eNameError, rb_id2name(), rb_is_const_id(), rb_node_newnode, rb_raise(), rb_safe_level, rb_str_new2(), RCLASS_IV_TBL, st_add_direct(), st_init_numtable(), st_insert(), st_lookup(), and TypedData_Wrap_Struct.
Referenced by rb_dl_init_callbacks(), and rb_mod_autoload().
Definition at line 1541 of file variable.c.
References autoload_node(), autoload_node_id(), rb_require_safe(), and rb_sourcefile().
Referenced by rb_const_get_0(), and vm_get_ev_const().
Definition at line 1557 of file variable.c.
References autoload_node(), autoload_node_id(), and Qnil.
Referenced by rb_mod_autoload_p().
const char* rb_class2name | ( | VALUE | klass | ) |
Definition at line 311 of file variable.c.
References name, rb_class_name(), and RSTRING_PTR.
Referenced by check_iconv(), extract_user_token(), iconv_failure_inspect(), method_inspect(), method_missing(), mnew(), mSyslog_inspect(), mSyslog_log(), ossl_asn1_default_tag(), ossl_cipher_init(), ossl_config_inspect(), ossl_x509_inspect(), pst_inspect(), r_object0(), rb_class_path(), rb_const_get_0(), rb_const_remove(), rb_cvar_get(), rb_cvar_set(), rb_define_class_id_under(), rb_define_module_id_under(), rb_dlptr_inspect(), rb_io_s_new(), rb_method_entry_make(), rb_mod_define_method(), rb_mod_remove_cvar(), rb_obj_classname(), rb_print_undef(), rb_thread_current_status(), rb_undef(), remove_method(), strscan_inspect(), thread_s_new(), umethod_bind(), and uninitialized_constant().
Definition at line 305 of file variable.c.
References rb_class_path(), and rb_class_real().
Referenced by error_print(), exc_inspect(), exc_to_s(), inspect_struct(), mString_to_json_raw_object(), name_err_to_s(), rb_class2name(), rb_mod_freeze(), rb_mod_to_s(), and w_extended().
Definition at line 189 of file variable.c.
References classname(), NIL_P, OBJ_FREEZE, fc_result::path, rb_class2name(), rb_cModule, rb_ivar_set(), rb_obj_class(), rb_sprintf(), RBASIC, RCLASS_IV_TBL, st_lookup(), tmp_classpath, and TYPE.
Referenced by class2path(), rb_class_name(), rb_set_class_path(), and rb_set_class_path_string().
Definition at line 1800 of file variable.c.
References FALSE, rb_const_defined_0(), and TRUE.
Referenced by Init_cparse(), Init_strscan(), rb_define_class(), rb_define_module(), rb_mod_const_defined(), rb_path_to_class(), syck_const_find(), and vm_get_ev_const().
Definition at line 1768 of file variable.c.
References autoload_node(), BUILTIN_TYPE, Qundef, rb_cObject, RCLASS_IV_TBL, RCLASS_SUPER, st_lookup(), and T_MODULE.
Referenced by rb_const_defined(), rb_const_defined_at(), and rb_const_defined_from().
Definition at line 1806 of file variable.c.
References FALSE, rb_const_defined_0(), and TRUE.
Referenced by debug_lines(), make_struct(), rb_const_remove(), rb_define_class_id_under(), rb_define_module_id_under(), and rb_mod_const_defined().
Definition at line 1794 of file variable.c.
References rb_const_defined_0(), and TRUE.
Referenced by vm_get_ev_const().
Definition at line 1613 of file variable.c.
References FALSE, rb_const_get_0(), and TRUE.
Referenced by callback(), cbsubst_def_attr_aliases(), cbsubst_get_all_subst_keys(), cbsubst_get_subst_arg(), cbsubst_get_subst_key(), cbsubst_initialize(), cbsubst_scan_args(), cbsubst_sym_to_subst(), cState_from_state_s(), float_arg(), function_call(), generic_to_value(), Init_cparse(), Init_generator(), Init_objspace(), Init_parser(), Init_syck(), Init_tcltklib(), Init_tkutil(), ip_ruby_cmd_receiver_const_get(), mktime_r(), numeric_arg(), process_options(), raise_method_missing(), rb_define_class(), rb_define_module(), rb_mod_const_get(), save_env(), set_argv(), syck_const_find(), syserr_eqq(), syserr_initialize(), vm_get_ev_const(), vm_set_main_stack(), and yaml_org_handler().
Definition at line 1570 of file variable.c.
References BUILTIN_TYPE, const_missing(), Qundef, rb_autoload_load(), rb_class2name(), rb_cObject, rb_id2name(), rb_vm_inc_const_missing_count(), rb_warn(), RCLASS_IV_TBL, RCLASS_SUPER, RTEST, st_lookup(), and T_MODULE.
Referenced by rb_const_get(), rb_const_get_at(), and rb_const_get_from().
Definition at line 1619 of file variable.c.
References FALSE, rb_const_get_0(), and TRUE.
Referenced by debug_lines(), Init_cparse(), rb_define_class_id_under(), rb_define_module_id_under(), rb_mod_const_get(), and rb_path_to_class().
Definition at line 1607 of file variable.c.
References rb_const_get_0(), and TRUE.
Referenced by vm_get_ev_const().
VALUE rb_const_list | ( | void * | data | ) |
Definition at line 1718 of file variable.c.
References list_i(), st_table::num_entries, rb_ary_new2(), st_foreach_safe(), and st_free_table().
Referenced by rb_mod_constants(), and rb_mod_s_constants().
Definition at line 1645 of file variable.c.
References autoload_delete(), OBJ_FROZEN, OBJ_UNTRUSTED, Qundef, rb_class2name(), rb_const_defined_at(), rb_error_frozen(), rb_eSecurityError, rb_id2name(), rb_name_error(), rb_raise(), rb_safe_level, rb_vm_change_state(), RCLASS_IV_TBL, and st_delete().
Referenced by Init_prelude(), rb_mod_remove_const(), and ruby_init_gems().
Definition at line 1847 of file variable.c.
References mod_av_set(), NIL_P, rb_eTypeError, rb_id2name(), rb_raise(), and TRUE.
Referenced by boot_defclass(), cbsubst_init(), cbsubst_table_setup(), Init_prelude(), Init_strscan(), rb_autoload(), rb_define_class(), rb_define_class_id_under(), rb_define_const(), rb_define_module(), rb_define_module_id_under(), rb_mod_const_set(), and ruby_init_loadpath_safe().
Definition at line 958 of file variable.c.
References trace_var::data, FL_EXIVAR, FL_SET, FL_TEST, FL_UNSET, st_table::num_entries, rb_free_generic_ivar(), st_add_direct(), st_copy(), st_free_table(), st_insert(), and st_lookup().
Referenced by init_copy(), nucomp_marshal_dump(), nucomp_marshal_load(), nurat_marshal_dump(), nurat_marshal_load(), time_mdump(), and time_mload().
Definition at line 1983 of file variable.c.
References rb_cvar_get(), rb_intern, rb_is_class_id(), and rb_name_error().
Definition at line 1973 of file variable.c.
References rb_cvar_set(), rb_intern, rb_is_class_id(), and rb_name_error().
Definition at line 1965 of file variable.c.
References CVAR_LOOKUP, and Qtrue.
Referenced by rb_mod_cvar_defined(), and rb_mod_remove_cvar().
Definition at line 1939 of file variable.c.
References BUILTIN_TYPE, CVAR_LOOKUP, original_module(), rb_class2name(), rb_id2name(), rb_name_error(), rb_warning(), RCLASS_IV_TBL, RTEST, ruby_verbose, st_delete(), and T_CLASS.
Referenced by rb_cv_get(), and rb_mod_cvar_get().
Definition at line 1912 of file variable.c.
References BUILTIN_TYPE, CVAR_LOOKUP, FALSE, mod_av_set(), original_module(), rb_class2name(), rb_id2name(), rb_warning(), RCLASS_IV_TBL, RTEST, ruby_verbose, st_delete(), and T_CLASS.
Referenced by rb_cv_set(), rb_define_class_variable(), and rb_mod_cvar_set().
Definition at line 1993 of file variable.c.
References rb_cvar_set(), rb_intern, rb_is_class_id(), and rb_name_error().
Definition at line 1857 of file variable.c.
References rb_cObject, rb_const_set(), rb_intern, rb_is_const_id(), rb_secure(), and rb_warn().
Referenced by exp1(), Init_bigdecimal(), Init_callback(), Init_Complex(), init_constants(), Init_cparse(), Init_curses(), Init_dbm(), Init_dl(), Init_dlhandle(), Init_dlptr(), Init_etc(), Init_fcntl(), Init_fiddle(), Init_fiddle_function(), Init_File(), Init_gdbm(), Init_IO(), Init_marshal(), Init_nkf(), Init_Numeric(), Init_openssl(), Init_ossl_asn1(), Init_ossl_config(), Init_ossl_pkcs7(), Init_ossl_ssl(), Init_ossl_x509name(), Init_process(), Init_psych_parser(), Init_readline(), Init_Regexp(), Init_syck(), Init_tcltklib(), Init_Thread(), Init_tkutil(), Init_transcode(), Init_VM(), Init_win32ole(), Init_zlib(), ole_const_load(), rb_define_global_const(), rb_file_const(), ripper_init_eventids1(), ripper_init_eventids2_table(), set_encoding_const(), and set_syserr().
void rb_define_global_const | ( | const char * | name, | |
VALUE | val | |||
) |
Definition at line 1871 of file variable.c.
References rb_cObject, and rb_define_const().
Referenced by Init_Hash(), Init_IO(), Init_Object(), Init_version(), Init_VM(), load_file_internal(), and ruby_prog_init().
void rb_define_hooked_variable | ( | const char * | name, | |
VALUE * | var, | |||
VALUE(*)(ANYARGS) | getter, | |||
void(*)(ANYARGS) | setter | |||
) |
Definition at line 496 of file variable.c.
References global_variable::data, global_variable::getter, global_id(), gvar_getter_t, gvar_setter_t, global_variable::marker, RB_GC_GUARD, rb_global_entry(), global_variable::setter, rb_global_entry::var, var_getter, and var_setter.
Referenced by Init_IO(), Init_load(), rb_define_readonly_variable(), rb_define_variable(), rb_define_virtual_variable(), and ruby_prog_init().
void rb_define_readonly_variable | ( | const char * | name, | |
VALUE * | var | |||
) |
Definition at line 521 of file variable.c.
References rb_define_hooked_variable(), and readonly_setter.
Referenced by Init_IO().
void rb_define_variable | ( | const char * | name, | |
VALUE * | var | |||
) |
Definition at line 515 of file variable.c.
References rb_define_hooked_variable().
Referenced by Init_IO(), Init_String(), and ruby_prog_init().
void rb_define_virtual_variable | ( | const char * | name, | |
VALUE(*)(ANYARGS) | getter, | |||
void(*)(ANYARGS) | setter | |||
) |
Definition at line 527 of file variable.c.
References global_variable::getter, rb_define_hooked_variable(), and global_variable::setter.
Referenced by Init_eval(), Init_IO(), Init_load(), Init_process(), Init_Regexp(), Init_safe(), and Init_Time().
VALUE rb_f_global_variables | ( | void | ) |
Definition at line 762 of file variable.c.
References buf, gvar_i(), ID2SYM, rb_ary_new(), rb_ary_push(), rb_intern2(), and st_foreach_safe().
Referenced by Init_eval().
Definition at line 567 of file variable.c.
References ALLOC, trace_var::data, trace_var::func, global_entry, trace_var::next, NIL_P, OBJ_TAINTED, rb_block_proc(), rb_eSecurityError, rb_f_untrace_var(), rb_global_entry(), rb_raise(), rb_scan_args(), rb_secure(), rb_to_id(), and trace_var::removed.
Definition at line 627 of file variable.c.
References trace_var::data, global_entry, id, trace_var::next, NIL_P, rb_ary_new(), rb_ary_new3(), rb_ary_push(), rb_id2name(), rb_name_error(), rb_scan_args(), rb_secure(), rb_to_id(), remove_trace(), trace_var::removed, and st_lookup().
void rb_free_generic_ivar | ( | VALUE | obj | ) |
Definition at line 939 of file variable.c.
References st_delete(), and st_free_table().
Referenced by obj_free(), and rb_copy_generic_ivar().
void rb_gc_mark_global_tbl | ( | void | ) |
Definition at line 473 of file variable.c.
References mark_global_entry(), and st_foreach_safe().
Referenced by garbage_collect().
size_t rb_generic_ivar_memsize | ( | VALUE | obj | ) |
Definition at line 949 of file variable.c.
References st_lookup(), and st_memsize().
Referenced by memsize_of().
Definition at line 819 of file variable.c.
References FL_EXIVAR, FL_TEST, and st_lookup().
Referenced by time_mload().
struct global_entry* rb_global_entry | ( | ID | id | ) | [read] |
Definition at line 362 of file variable.c.
References ALLOC, global_variable::block_trace, global_variable::counter, global_variable::data, global_variable::getter, global_entry, global_variable::marker, global_variable::setter, st_add_direct(), st_lookup(), and global_variable::trace.
Referenced by iseq_build_body(), rb_alias_variable(), rb_define_hooked_variable(), rb_f_trace_var(), rb_gv_get(), and rb_gv_set().
VALUE rb_gv_get | ( | const char * | name | ) |
Definition at line 730 of file variable.c.
References global_entry, global_id(), rb_global_entry(), and rb_gvar_get().
Referenced by ip_ruby_cmd_receiver_get(), load_file(), and mSyslog_open().
Definition at line 721 of file variable.c.
References global_entry, global_id(), rb_global_entry(), and rb_gvar_set().
Referenced by process_sflag(), and restore_lineno().
VALUE rb_gvar_defined | ( | struct global_entry * | entry | ) |
Definition at line 739 of file variable.c.
References undef_getter.
VALUE rb_gvar_get | ( | struct global_entry * | entry | ) |
Definition at line 670 of file variable.c.
References global_variable::data, and global_variable::getter.
Definition at line 702 of file variable.c.
References global_variable::block_trace, global_variable::data, rb_ensure(), rb_eSecurityError, rb_raise(), rb_safe_level, global_variable::setter, trace_data::trace, global_variable::trace, trace_en(), trace_ev(), and trace_data::val.
Definition at line 2088 of file variable.c.
References rb_intern, and rb_ivar_get().
Referenced by call_trace_proc(), callback(), esignal_signo(), function_call(), localjump_reason(), localjump_xvalue(), method_inspect(), ossl_call_session_get_cb(), ossl_call_session_new_cb(), ossl_ssl_setup(), ossl_sslctx_setup(), ossl_x509extfactory_create_ext(), ossl_x509stctx_initialize(), ossl_x509stctx_verify(), ossl_x509store_verify(), parse(), pst_to_i(), rb_mod_to_s(), ruby_cleanup(), and sysexit_status().
Definition at line 2096 of file variable.c.
References rb_intern, and rb_ivar_set().
Referenced by build_exception(), esignal_init(), exc_initialize(), exc_set_backtrace(), exit_initialize(), initialize(), initialize_params(), ip_RubyExitCommand(), make_localjump_error(), name_err_initialize(), name_err_to_s(), nometh_err_initialize(), ossl_asn1_decode0(), ossl_ssl_initialize(), ossl_sslctx_initialize(), ossl_x509extfactory_alloc(), ossl_x509extfactory_set_crl(), ossl_x509extfactory_set_issuer_cert(), ossl_x509extfactory_set_subject_cert(), ossl_x509extfactory_set_subject_req(), ossl_x509stctx_initialize(), ossl_x509store_initialize(), ossl_x509store_set_flags(), ossl_x509store_set_purpose(), ossl_x509store_set_time(), ossl_x509store_set_trust(), ossl_x509store_set_vfy_cb(), ossl_x509store_verify(), raise_from_check(), rb_dlptr_s_to_ptr(), rb_last_status_set(), setup_exception(), syck_badalias_initialize(), syck_domaintype_initialize(), syck_genericresolver_node_import(), syck_map_initialize(), syck_map_style_set(), syck_map_value_set(), syck_node_type_id_set(), syck_privatetype_initialize(), syck_scalar_initialize(), syck_scalar_style_set(), syck_scalar_value_set(), syck_seq_initialize(), syck_seq_style_set(), syck_seq_value_set(), syck_set_ivars(), syck_yobject_initialize(), and syserr_initialize().
st_index_t rb_ivar_count | ( | VALUE | obj | ) |
Definition at line 1202 of file variable.c.
References count, FL_EXIVAR, FL_TEST, st_table::num_entries, Qundef, rb_special_const_p(), RCLASS_IV_TBL, ROBJECT_IV_INDEX_TBL, ROBJECT_IVPTR, st_lookup(), T_CLASS, T_MODULE, T_OBJECT, and TYPE.
Definition at line 1111 of file variable.c.
References FL_EXIVAR, FL_TEST, generic_ivar_defined(), Qundef, rb_special_const_p(), RCLASS_IV_TBL, ROBJECT_IV_INDEX_TBL, ROBJECT_IVPTR, ROBJECT_NUMIV, st_lookup(), T_CLASS, T_MODULE, T_OBJECT, and TYPE.
Referenced by get_digest_base_metadata(), rb_obj_ivar_defined(), and struct_ivar_get().
Definition at line 1176 of file variable.c.
References FL_EXIVAR, FL_TEST, func, obj_ivar_each(), rb_special_const_p(), RCLASS_IV_TBL, st_foreach_safe(), st_lookup(), T_CLASS, T_MODULE, T_OBJECT, and TYPE.
Referenced by inspect_obj(), rb_obj_instance_variables(), and w_objivar().
Definition at line 1025 of file variable.c.
References ivar_get(), and TRUE.
Referenced by add_event_call_back(), ary2list(), ary2list2(), chunk_i(), echild_status(), EVENTSINK_Invoke(), fev_get_handler(), fev_off_event(), fole_s_show_help(), folemethod_event(), folemethod_name(), foleparam_name(), foletype_name(), folevariable_name(), get_digest_base_metadata(), initialize_params(), ip_get_encoding_table(), lib_split_tklist_core(), ossl_start_ssl(), range_loader(), rb_enc_get_index(), rb_iv_get(), rb_method_entry_make(), rb_obj_ivar_get(), rb_undef(), reduce(), singleton_class_of(), slicebefore_i(), struct_ivar_get(), syck_badalias_cmp(), syck_emitter_emit(), syck_map_add_m(), syck_out_map(), syck_out_scalar(), syck_out_seq(), syck_seq_add_m(), syck_set_model(), tcl_protect_core(), tkobj_path(), and vm_getivar().
Definition at line 1037 of file variable.c.
References ALLOC_N, generic_ivar_set(), len, MEMCPY, st_table::num_entries, OBJ_FROZEN, OBJ_UNTRUSTED, Qundef, rb_error_frozen(), rb_eSecurityError, rb_obj_class(), rb_raise(), rb_safe_level, RBASIC, RCLASS_IV_INDEX_TBL, RCLASS_IV_TBL, REALLOC_N, ROBJECT, ROBJECT_EMBED_LEN_MAX, ROBJECT_IV_INDEX_TBL, ROBJECT_IVPTR, ROBJECT_NUMIV, st_add_direct(), st_init_numtable(), st_insert(), st_lookup(), T_CLASS, T_MODULE, T_OBJECT, and TYPE.
Referenced by add_event_call_back(), ary2list(), ary2list2(), cbsubst_initialize(), create_encoding_table_core(), create_ip_exc(), enum_chunk(), enum_slice_before(), eval_string_with_cref(), fev_initialize(), fev_set_handler(), iconv_failure_initialize(), Init_md5(), Init_rmd160(), Init_sha1(), initialize_params(), lib_fromUTF8_core(), lib_split_tklist_core(), lib_toUTF8_core(), lib_UTF_backslash_core(), make_econv_exception(), make_struct(), next_i(), ole_method_params(), ole_variables(), olemethod_set_member(), oleparam_ole_param_from_index(), oletype_set_member(), ossl_sslctx_session_get_cb(), ossl_sslctx_session_new_cb(), ossl_start_ssl(), parse_main(), pipe_open(), r_ivar(), range_dumper(), rb_class_path(), rb_enc_set_index(), rb_io_init_copy(), rb_iv_set(), rb_name_class(), rb_obj_ivar_set(), rb_set_class_path(), rb_set_class_path_string(), rb_struct_define_without_accessor(), readline_s_set_completion_case_fold(), readline_s_set_completion_proc(), ruby_init_loadpath_safe(), sockopt_initialize(), syck_emitter_emit(), syck_emitter_reset(), syck_emitter_s_alloc(), syck_emitter_set_resolver(), syck_out_initialize(), syck_out_mark(), syck_parser_initialize(), syck_parser_set_resolver(), syck_resolver_initialize(), syck_resolver_use_types_at(), time_mdump(), vm_call0(), vm_call_method(), and vm_setivar().
void rb_mark_generic_ivar | ( | VALUE | obj | ) |
Definition at line 904 of file variable.c.
References rb_mark_tbl(), and st_lookup().
Referenced by gc_mark_children().
void rb_mark_generic_ivar_tbl | ( | void | ) |
Definition at line 931 of file variable.c.
References givar_i(), and st_foreach_safe().
Referenced by garbage_collect().
Definition at line 2032 of file variable.c.
References cv_i(), rb_ary_new(), RCLASS_IV_TBL, and st_foreach_safe().
Referenced by Init_Object().
void* rb_mod_const_at | ( | VALUE | mod, | |
void * | data | |||
) |
Definition at line 1685 of file variable.c.
References RCLASS_IV_TBL, st_foreach_safe(), st_init_numtable(), and sv_i().
Referenced by rb_mod_const_of(), rb_mod_constants(), and rb_mod_s_constants().
Definition at line 1394 of file variable.c.
References rb_frame_pop(), rb_to_id(), and uninitialized_constant().
Referenced by Init_Object().
void* rb_mod_const_of | ( | VALUE | mod, | |
void * | data | |||
) |
Definition at line 1698 of file variable.c.
References rb_cObject, rb_mod_const_at(), and RCLASS_SUPER.
Referenced by rb_mod_constants(), and rb_mod_s_constants().
Definition at line 1747 of file variable.c.
References rb_const_list(), rb_mod_const_at(), rb_mod_const_of(), rb_scan_args(), and RTEST.
Referenced by Init_Object(), and rb_mod_s_constants().
Definition at line 180 of file variable.c.
References classname(), NIL_P, fc_result::path, and rb_str_dup().
Referenced by Init_Object().
Definition at line 1634 of file variable.c.
References rb_const_remove(), rb_id2name(), rb_is_const_id(), rb_name_error(), and rb_to_id().
Referenced by Init_Object(), and make_struct().
Definition at line 2063 of file variable.c.
References OBJ_FROZEN, OBJ_UNTRUSTED, rb_class2name(), rb_cvar_defined(), rb_error_frozen(), rb_eSecurityError, rb_id2name(), rb_is_class_id(), rb_name_error(), rb_raise(), rb_safe_level, rb_to_id(), RCLASS_IV_TBL, and st_delete().
Referenced by Init_Object().
Definition at line 299 of file variable.c.
References classid, ID2SYM, and rb_ivar_set().
Referenced by boot_defclass(), rb_define_class(), and rb_define_module_id().
const char* rb_obj_classname | ( | VALUE | obj | ) |
Definition at line 318 of file variable.c.
References CLASS_OF, and rb_class2name().
Referenced by addrinfo_inspect(), caller_setup_args(), check_strscan(), coerce_rescue(), convert_type(), define_final(), dir_inspect(), divmodv(), econv_inspect(), enc_inspect(), eval_string_with_cref(), folevariant_initialize(), generator_initialize(), GetVpValue(), init_copy(), inspect_enumerator(), iseq_inspect(), match_inspect(), method_inspect(), must_encoding(), must_respond_to(), name_err_mesg_to_str(), nucomp_coerce(), num_exact(), num_init_copy(), num_sadded(), nurat_coerce(), proc_to_s(), rand_init(), range_each(), range_step(), rb_any_to_s(), rb_big_coerce(), rb_check_convert_type(), rb_check_frozen(), rb_check_inheritable(), rb_check_safe_str(), rb_check_type(), rb_check_typeddata(), rb_cmperr(), rb_convert_type(), rb_define_module(), rb_define_module_id_under(), rb_digest_instance_inspect(), rb_digest_instance_method_unimpl(), rb_f_kill(), rb_hash_set_default_proc(), rb_io_inspect(), rb_mod_define_method(), rb_obj_clone(), rb_obj_dup(), rb_obj_inspect(), rb_stat_inspect(), rb_str_index_m(), rb_str_partition(), rb_str_rindex_m(), rb_str_rpartition(), rb_thread_inspect(), rb_thread_s_kill(), rb_to_float(), rb_to_integer(), reg_operand(), rescue_callback(), setup_exception(), sockopt_inspect(), time_timespec(), uscore_get(), vm_define_method(), w_object(), and wdivmod().
Definition at line 1266 of file variable.c.
References ivar_i(), rb_ary_new(), and rb_ivar_foreach().
Referenced by Init_Object().
Definition at line 1298 of file variable.c.
References FL_EXIVAR, FL_TEST, generic_ivar_remove(), OBJ_FROZEN, OBJ_UNTRUSTED, Qundef, rb_error_frozen(), rb_eSecurityError, rb_id2name(), rb_is_instance_id(), rb_name_error(), rb_raise(), rb_safe_level, rb_special_const_p(), rb_to_id(), RCLASS_IV_TBL, ROBJECT_IV_INDEX_TBL, ROBJECT_IVPTR, ROBJECT_NUMIV, st_delete(), st_lookup(), T_CLASS, T_MODULE, T_OBJECT, and TYPE.
Referenced by Init_Object().
VALUE rb_path2class | ( | const char * | path | ) |
Definition at line 293 of file variable.c.
References rb_path_to_class(), and rb_str_new_cstr().
Referenced by convert_UTF8_to_JSON_ASCII(), Init_bubblebabble(), Init_callback(), Init_generator(), Init_md5(), Init_ossl_digest(), Init_parser(), Init_rmd160(), Init_sha1(), Init_sha2(), Init_tcltklib(), and path2class().
Definition at line 253 of file variable.c.
References id, fc_result::path, rb_cObject, rb_const_defined(), rb_const_get_at(), rb_eArgError, rb_enc_asciicompat, rb_enc_get(), rb_eTypeError, rb_intern3(), rb_raise(), RSTRING_PTR, T_CLASS, T_MODULE, and TYPE.
Referenced by class2path(), path2class(), path2module(), r_object0(), and rb_path2class().
Definition at line 236 of file variable.c.
References classpath, OBJ_FREEZE, rb_class_path(), rb_cObject, rb_ivar_set(), rb_str_cat2(), rb_str_dup(), and rb_str_new2().
Referenced by Init_IO().
Definition at line 219 of file variable.c.
References classpath, OBJ_FREEZE, rb_class_path(), rb_cObject, rb_ivar_set(), rb_str_append(), rb_str_cat2(), rb_str_dup(), and rb_str_new_frozen().
Referenced by rb_define_class_id_under(), and rb_define_module_id_under().
Definition at line 538 of file variable.c.
References rb_ary_new3(), and rb_eval_cmd().
void rb_vm_change_state | ( | void | ) |
Definition at line 55 of file vm.c.
Referenced by mod_av_set(), rb_clear_cache(), rb_clear_cache_by_class(), rb_clear_cache_by_id(), rb_clear_cache_for_undef(), and rb_const_remove().
void rb_vm_inc_const_missing_count | ( | void | ) |
Definition at line 61 of file vm.c.
References ruby_vm_const_missing_count.
Referenced by rb_const_get_0().
void readonly_setter | ( | VALUE | val, | |
ID | id, | |||
void * | data, | |||
struct global_variable * | gvar | |||
) |
Definition at line 452 of file variable.c.
References rb_id2name(), and rb_name_error().
static void remove_trace | ( | struct global_variable * | var | ) | [static] |
Definition at line 595 of file variable.c.
References trace_var::next, trace_var::removed, global_variable::trace, and xfree().
Referenced by rb_f_untrace_var(), and trace_en().
Definition at line 1489 of file variable.c.
References rb_set_safe_level_force().
Referenced by autoload_node().
Definition at line 1674 of file variable.c.
References rb_is_const_id(), st_insert(), and st_lookup().
Referenced by rb_mod_const_at().
static VALUE trace_en | ( | struct global_variable * | var | ) | [static] |
Definition at line 694 of file variable.c.
References global_variable::block_trace, and remove_trace().
Referenced by rb_gvar_set().
static VALUE trace_ev | ( | struct trace_data * | data | ) | [static] |
Definition at line 682 of file variable.c.
References trace_var::data, trace_var::func, trace_var::next, trace_data::trace, and trace_data::val.
Referenced by rb_gvar_set().
VALUE undef_getter | ( | ID | id, | |
void * | data, | |||
struct global_variable * | var | |||
) |
Definition at line 390 of file variable.c.
References rb_id2name(), and rb_warning().
void undef_marker | ( | VALUE * | var | ) |
Definition at line 408 of file variable.c.
void undef_setter | ( | VALUE | val, | |
ID | id, | |||
void * | data, | |||
struct global_variable * | var | |||
) |
Definition at line 398 of file variable.c.
References global_variable::data, global_variable::getter, global_variable::marker, and global_variable::setter.
Definition at line 1347 of file variable.c.
References rb_class2name(), rb_cObject, rb_id2name(), and rb_name_error().
Referenced by rb_mod_const_missing().
VALUE val_getter | ( | ID | id, | |
void * | data, | |||
struct global_variable * | var | |||
) |
Definition at line 413 of file variable.c.
void val_marker | ( | VALUE * | var | ) |
Definition at line 425 of file variable.c.
References rb_gc_mark_maybe().
void val_setter | ( | VALUE | val, | |
ID | id, | |||
void * | data, | |||
struct global_variable * | var | |||
) |
Definition at line 419 of file variable.c.
References global_variable::data.
VALUE var_getter | ( | ID | id, | |
void * | data, | |||
struct global_variable * | gvar | |||
) |
Definition at line 432 of file variable.c.
void var_marker | ( | VALUE * | var | ) |
Definition at line 446 of file variable.c.
References rb_gc_mark_maybe().
void var_setter | ( | VALUE | val, | |
ID | id, | |||
void * | data, | |||
struct global_variable * | gvar | |||
) |
Definition at line 440 of file variable.c.
Definition at line 25 of file variable.c.
Referenced by autoload_delete(), autoload_node(), Init_var_tables(), and rb_autoload().
const rb_data_type_t autoload_data_type [static] |
{
"autoload",
autoload_mark, autoload_free, autoload_memsize,
}
Definition at line 1420 of file variable.c.
Definition at line 25 of file variable.c.
Referenced by classname(), Init_var_tables(), and rb_name_class().
Definition at line 25 of file variable.c.
Referenced by classname(), fc_path(), find_class_path(), Init_var_tables(), rb_set_class_path(), and rb_set_class_path_string().
st_table* generic_iv_tbl [static] |
Definition at line 816 of file variable.c.
Definition at line 23 of file variable.c.
int special_generic_ivar = 0 [static] |
Definition at line 815 of file variable.c.
ID tmp_classpath [static] |
Definition at line 25 of file variable.c.
Referenced by find_class_path(), Init_var_tables(), and rb_class_path().