-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[coreclr-interp] FEATURE_PORTABLE_ENTRYPOINTS for INTOP_CALL_HELPER_P_PA #119351
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
Conversation
|
Tagging subscribers to this area: @mangod9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds support for FEATURE_PORTABLE_ENTRYPOINTS in the INTOP_CALL_HELPER_P_PA case of the CoreCLR interpreter. The change enables the interpreter to handle portable entry points by detecting when a helper function doesn't have a native entry point and redirecting to interpret the method instead of calling the native helper directly.
Key changes:
- Modified the INTOP_CALL_HELPER_P_PA case to check for portable entry points
- Added logic to redirect to interpreted method execution when a portable entry point is detected
Co-authored-by: Aaron Robinson <[email protected]>
Co-authored-by: Aaron Robinson <[email protected]>
Co-authored-by: Aaron Robinson <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
I hit this when my test code tried to create managed exception