fix(lang-v2): allow handlers to opt out of wrapper inlining - #4959
Open
abhineet-biju wants to merge 2 commits into
Open
fix(lang-v2): allow handlers to opt out of wrapper inlining#4959abhineet-biju wants to merge 2 commits into
abhineet-biju wants to merge 2 commits into
Conversation
- add a per-handler inline policy while preserving the existing default - cover parsing behavior and the SBF dispatcher stack overflow regression - document the opt-in syntax and performance tradeoff
|
@abhineet-biju is attempting to deploy a commit to the OtterSec Team on Vercel. A member of the Team first needs to authorize it. |
abhineet-biju
marked this pull request as ready for review
August 26, 2026 07:01
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.
Summary
#[handler(inline = false)]policy for generated instruction wrappers#[inline(always)]defaultThe regression uses platform-tools v1.52. The forced-inline build reproduces
the oversized
__anchor_dispatch_internalframe, while isolated wrappers staywithin the 4096-byte SBF stack-frame limit.
Fixes #4941.
Branch Target
This is a v2-only change and targets
anchor-next.Testing
cargo test --locked -p anchor-derive-accountscargo test --locked -p anchor-lang --testscargo test --locked -p tests-v2 --test handler_inline_policycargo test --locked -p tests-v2 --tests --no-runcargo check --locked -p handler-inline-policy --all-targets --all-features