Project

General

Profile

Actions

Feature #11414

closed

Relax ID table ordering

Added by ko1 (Koichi Sasada) over 8 years ago. Updated over 8 years ago.

Status:
Closed
Target version:
-
[ruby-core:70237]

Description

Can we relax ordering rule for ID table such as method table, ivar table, and so on?
I believe nobody care about method table ordering, ivar table ordering.

background

From Ruby 1.9, Hash objects have order (insertion order).
This change was introduced by changing st data structure.

In Ruby interpreter, st is also used by many purpose.
For example, there are many tables which have ID keys, for method tables, ivar tables and so on.

We can make special table to optimize such ID keys table.

funny_falcon already proposed new data structure.
https://bugs.ruby-lang.org/issues/6962

Before introducing this patch, please consider about ordering.

BTW, here is my implementation of special ID keys table used by method table.
https://github.com/ruby/ruby/compare/trunk...ko1:mtbl

I will make another ticket for implementation. But please consider about ordering.

We have one test depends on method table ordering.

[ 72/143] TestModule#test_method_added = 0.00 s
  1) Failure:
TestModule#test_method_added [.../test/ruby/test_module.rb:1120]:
<[:f, :g, :a]> expected but was
<[:f, :a, :g]>.

Related issues 1 (0 open1 closed)

Related to Ruby master - Feature #11420: Introduce ID key table into MRIClosedko1 (Koichi Sasada)Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0