sisshiki1969 / monoruby

Ruby implementation with yet another JIT compiler.
Apache License 2.0
112 stars 4 forks source link

Optimize Object#send. #47

Closed sisshiki1969 closed 7 months ago

sisshiki1969 commented 7 months ago

Object#send is slow. It calls another method from within a method, which is slow because there is no inline cache.

This PR optimize this by: