feat: add rv64im transpiler#2448
Merged
876pol merged 4 commits intodevelop-v1.8.0from Mar 3, 2026
Merged
Conversation
396a02c to
25b310d
Compare
ef3c002 to
7ac4789
Compare
This was referenced Feb 20, 2026
Contributor
There was a problem hiding this comment.
we can delete the rv32im transpiler
jonathanpwang
approved these changes
Mar 3, 2026
Contributor
jonathanpwang
left a comment
There was a problem hiding this comment.
LGTM after fixing typo
876pol
added a commit
that referenced
this pull request
Mar 3, 2026
…64im (#2446) Transpiler PRs should be reviewed in this order: #2446, #2447, #2448. Summary of this PR: - Some files related to the decoding of RV32 are copied from https://github.com/GregAC/rrs/tree/main/rrs-lib/src to `crates/toolchain/decoder`. - Everything in `extensions/rv32im/transpiler` has been copied to `extensions/rv64im/transpiler`.
a24d5b5 to
9e0aeae
Compare
876pol
added a commit
that referenced
this pull request
Mar 3, 2026
Base automatically changed from
rv64-transpiler-update-rrs-lib
to
develop-v1.8.0
March 3, 2026 15:14
c2cabfc to
b36df38
Compare
876pol
added a commit
that referenced
this pull request
Mar 3, 2026
…fix compilation errors (#2457) Resolves INT-6318. Summary: - The `extensions/rv32im` has been moved to `extensions/riscv`. - The old `extensions/rv32im/transpiler` module has been entirely deleted and replaced with the transpiler module created in #2448. - Many objects prefixed with `Rv32` are renamed to start with `Rv64`. A list of these objects can be found in https://docs.google.com/document/d/1mZTHk7n2LY-N1WMrjzn_BZmSYtP4PGnflH97Xjrs9EY/edit?tab=t.0.
shuklaayush
pushed a commit
that referenced
this pull request
Apr 27, 2026
…64im (#2446) Transpiler PRs should be reviewed in this order: #2446, #2447, #2448. Summary of this PR: - Some files related to the decoding of RV32 are copied from https://github.com/GregAC/rrs/tree/main/rrs-lib/src to `crates/toolchain/decoder`. - Everything in `extensions/rv32im/transpiler` has been copied to `extensions/rv64im/transpiler`.
shuklaayush
pushed a commit
that referenced
this pull request
Apr 27, 2026
shuklaayush
pushed a commit
that referenced
this pull request
Apr 27, 2026
Resolves INT-6044. Transpiler PRs should be reviewed in this order: #2446, #2447, #2448. Summary of this PR: - Code that was hardcoded for RV32 has been changed to RV64. - `rrs-lib` was removed as a dependency, and all crates now use `crates/toolchain/decoder`. - Some tests have been added to test the RV64 transpiler, but these tests are still messy -- this will be fixed in the ticket involving the integration tests for the full toolchain and interpreter flow.
shuklaayush
pushed a commit
that referenced
this pull request
Apr 27, 2026
…fix compilation errors (#2457) Resolves INT-6318. Summary: - The `extensions/rv32im` has been moved to `extensions/riscv`. - The old `extensions/rv32im/transpiler` module has been entirely deleted and replaced with the transpiler module created in #2448. - Many objects prefixed with `Rv32` are renamed to start with `Rv64`. A list of these objects can be found in https://docs.google.com/document/d/1mZTHk7n2LY-N1WMrjzn_BZmSYtP4PGnflH97Xjrs9EY/edit?tab=t.0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves INT-6044.
Transpiler PRs should be reviewed in this order: #2446, #2447, #2448.
Summary of this PR:
rrs-libwas removed as a dependency, and all crates now usecrates/toolchain/decoder.