-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mono] Fix support for calls to static virtual methods from gshared c…
…ode. (#65126) Fixes #65002. When called from gshared code, these methods cannot be resolved at compile time, since they depend on the constrained class which is only known at runtime. * For calls from normal gshared code, load the method address from the rgctx. * For calls from gsharedvt code, extend the existing mono_gsharedvt_constrained_call () JIT icall to be able to handle static virtual methods.
- Loading branch information
Showing
2 changed files
with
65 additions
and
38 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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