-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[mono][interp] Refactor icall opcodes #87269
Conversation
Tagging subscribers to this area: @BrzVlad, @kotlarmilos Issue DetailsHaving per signature opcode is overkill. Get rid of these opcodes and refactor so we have a 0 based enum instead for the signature that is passed into the code stream to a generic icall opcode.
|
re the build errors you can just remove the entries from the opcode values header. It's fine for opcodes to be missing from that header |
MINT_ICALL_* opcodes are pretty much dead and untested
Having the signature hardcoded in the opcode seems overkill for icalls.
d04d7af
to
5bbd003
Compare
Having per signature opcode is overkill. Get rid of these opcodes and refactor so we have a 0 based enum instead for the signature that is passed into the code stream to a generic icall opcode.