Project

General

Profile

Actions

Bug #11203

closed

Change method entries into VALUE

Added by ko1 (Koichi Sasada) almost 9 years ago. Updated almost 9 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:69425]

Description

Now, rb_method_entry_t is an allocated data pointed from method tables (class/module has) and from control frame stacks.

I will change this data structure to make VALUE (T_IMEMO/ment).
And I put them onto value frames instead of control frame stacks.

This change has several advantages.

  • Solve these issues.
    • [Bug #11200] Memory leak of method entries
    • [Bug #11046] __callee__ returns incorrect method name in orphan proc
  • Simplify sweeping process of method entry
  • We can remove rb_control_frame_t::me
  • No need to push CREF for every method invocation. Method entries know required CREF.
  • We can share per method CREF only for make them public visibility scope.
  • We can introduce other optimization techniques.
    • We can remove rb_control_frame_t::klass field because method entries can manipulate this information.
    • We can introduce new method cache mechanism (maybe).

The following pictures show how SVAR/CREF/MENT are located at value stacks.

before-value-stack
after-value-stack

The following picture shows how alias was implemented.

alias-relation


Files

1.PNG (46.6 KB) 1.PNG ko1 (Koichi Sasada), 06/01/2015 10:05 AM
2.PNG (43.4 KB) 2.PNG ko1 (Koichi Sasada), 06/01/2015 10:05 AM
3.png (31.8 KB) 3.png ko1 (Koichi Sasada), 06/01/2015 10:46 AM
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0