feat: consolidate LK language, VM, AOT, and platform support - #32
Open
lollipopkit wants to merge 732 commits into
Open
feat: consolidate LK language, VM, AOT, and platform support#32lollipopkit wants to merge 732 commits into
lollipopkit wants to merge 732 commits into
Conversation
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.
Summary
This branch started by removing
try/catchfrom the AOT coverage allowlist and grew into a broad consolidation of LK's language implementation, VM, native backend, standard library, tooling, and bare-metal targets.The result is a substantially wider and more consistently tested language surface across the interpreter and Cranelift paths. The branch contains 732 commits and changes 506 files; the sections below describe the main outcomes rather than every individual fix.
Highlights
Language and front end
defer, and first-classtry/catch.VM and runtime correctness
Native backend
try/catchthrough outlined protected regions and thesetjmptrampoline.Standard library and platforms
no_std.Tooling and ecosystem
Verification
Verified locally on the current head:
cargo test --workspace --all-featurescargo clippy --workspace --all-targets --all-features -- -D warningscargo clippy -p lk-core --no-default-features --all-targets -- -D warningscargo clippy -p lkrt --no-default-features --all-targets -- -D warningscargo test -p lk-core --no-default-features: 1113 passed, 1 ignoredno_stdbuild checksThe GitHub Rust Check and Performance Gate for the current head are running.