Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

experimental: Inline caches for the interpreter #17227

Draft
wants to merge 9 commits into
base: Pharo12
Choose a base branch
from

Commits on Oct 3, 2024

  1. Add a cache slot after message selectors.

    This slot is to be used by the interpreter so it can optimize message lookups.
    This change is missing some kind of "versioning"mechanism that can be used to signal which methods have cache slots and which do not.
    
    Methods with cache slots should still work in previous VMs (they just see a big compiled method that has a lot of nils stored at its literals).
    iglosiggio committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    c87b8d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d354d30 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Configuration menu
    Copy the full SHA
    5f6259c View commit details
    Browse the repository at this point in the history
  2. wtf

    iglosiggio committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    b412f18 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Add a bit that marks a compiled code as having inline caches

    This is temporary, a version number would be better. I think...
    iglosiggio committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    9eedcfa View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. s/asInteger/asBit/

    iglosiggio committed Oct 10, 2024
    Configuration menu
    Copy the full SHA
    7a0935f View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. Configuration menu
    Copy the full SHA
    3a411e6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cd3a4c9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2ff2f8f View commit details
    Browse the repository at this point in the history