mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
iseq.c: struct accessors
* iseq.c (rb_method_for_self_aref, rb_method_for_self_aset): call accessor functions directly, not to be affected by [] and []= methods. [ruby-core:66846] [Bug #10601] * struct.c (define_aref_method, define_aset_method): ditto. * vm_insnhelper.c (rb_vm_opt_struct_aref, rb_vm_opt_struct_aset): direct accessors of Struct. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48864 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
97628bff12
commit
e4717eaa4c
5 changed files with 84 additions and 32 deletions
10
struct.c
10
struct.c
|
@ -13,8 +13,8 @@
|
|||
#include "vm_core.h"
|
||||
#include "method.h"
|
||||
|
||||
VALUE rb_method_for_self_aref(VALUE name, VALUE arg);
|
||||
VALUE rb_method_for_self_aset(VALUE name, VALUE arg);
|
||||
VALUE rb_method_for_self_aref(VALUE name, VALUE arg, rb_insn_func_t func);
|
||||
VALUE rb_method_for_self_aset(VALUE name, VALUE arg, rb_insn_func_t func);
|
||||
|
||||
VALUE rb_cStruct;
|
||||
static ID id_members;
|
||||
|
@ -175,7 +175,8 @@ new_struct(VALUE name, VALUE super)
|
|||
static void
|
||||
define_aref_method(VALUE nstr, VALUE name, VALUE off)
|
||||
{
|
||||
VALUE iseqval = rb_method_for_self_aref(name, off);
|
||||
rb_control_frame_t *FUNC_FASTCALL(rb_vm_opt_struct_aref)(rb_thread_t *, rb_control_frame_t *);
|
||||
VALUE iseqval = rb_method_for_self_aref(name, off, rb_vm_opt_struct_aref);
|
||||
rb_iseq_t *iseq = DATA_PTR(iseqval);
|
||||
|
||||
rb_add_method(nstr, SYM2ID(name), VM_METHOD_TYPE_ISEQ, iseq, NOEX_PUBLIC);
|
||||
|
@ -185,7 +186,8 @@ define_aref_method(VALUE nstr, VALUE name, VALUE off)
|
|||
static void
|
||||
define_aset_method(VALUE nstr, VALUE name, VALUE off)
|
||||
{
|
||||
VALUE iseqval = rb_method_for_self_aset(name, off);
|
||||
rb_control_frame_t *FUNC_FASTCALL(rb_vm_opt_struct_aset)(rb_thread_t *, rb_control_frame_t *);
|
||||
VALUE iseqval = rb_method_for_self_aset(name, off, rb_vm_opt_struct_aset);
|
||||
rb_iseq_t *iseq = DATA_PTR(iseqval);
|
||||
|
||||
rb_add_method(nstr, SYM2ID(name), VM_METHOD_TYPE_ISEQ, iseq, NOEX_PUBLIC);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue