[release/8.0-staging] [mono][interp] Resolve virtual method on delegates created by compiled code #101290
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.
Backport of #101168 to release/8.0-staging
/cc @simonrozsival @BrzVlad
Customer Impact
This issue caused customer's MacCatalyst app to crash. Because of this issue, delegates are potentially broken when mixing aot and interpreted code. Delegates created in aot-code that contain a virtual method on a target object are not invoked properly in the interpreter because we don't resolve the virtual method on the object.
Regression
Testing
Manual testing. This change only affects calls from code that is compiled with Mono AOT and code that is using the Mono Interpreter. This is a configuration that is sometimes used in iOS and Mac Catalyst apps and it is hard to test with automated tests. The fix was verified in the context of a Mac Catalyst repro app (#101074).
Risk
Low