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

Make a start on the JIT IR and the trace builder. #930

Merged
merged 2 commits into from
Jan 8, 2024

Commits on Dec 20, 2023

  1. Make a start on the JIT IR and the trace builder.

    The JIT IR is designed to be small. There are two kinds of instruction:
     - short instructions, with inlined operands.
     - long ones (unimplemented as of yet)
    
    Ideally, function, block and instruction IDs (which are indices read
    from the on-disk AOT IR) would be either converted to references as we
    decode, but this would require changes to the decoder. We may have to
    ditch deku:
    
    sharksforarms/deku#383
    
    Co-authored-by: Lukas Diekmann <[email protected]>
    vext01 and ptersilie committed Dec 20, 2023
    Configuration menu
    Copy the full SHA
    c8466d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    80279ae View commit details
    Browse the repository at this point in the history