We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If there isn't too many context variables, store them separately.
At the moment we store them as a tuple in the generated FunC code
(int, slice, int, slice) __tact_context_get() inline { return __tact_context; }
and in resulting assembly we unpack the tuple onto stack
__tact_context_get PROCINLINE:<{ __tact_context GETGLOB 4 UNTUPLE }>
and then drop the components we don't need
__tact_context_get INLINECALLDICT 2 2 BLKDROP2
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If there isn't too many context variables, store them separately.
At the moment we store them as a tuple in the generated FunC code
and in resulting assembly we unpack the tuple onto stack
and then drop the components we don't need
The text was updated successfully, but these errors were encountered: