-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Switch MacCatalyst interpreter runs to use AOT JustInterp #52848
Conversation
Tagging subscribers to this area: @directhex Issue DetailsSince we cannot easily JIT on arm64, we need to change how we run in interp mode. The old way apparently has some JIT fallbacks, so we need to switch to the mode supported by AOT.
|
As of right now, I hit an assert when running tests:
|
We need to generate more trampolines since a lot of runtime code generates trampolines even in --full-aot-interp mode. Fixes dotnet#52848.
We need to either skip This is the same issue as #46856 |
…ip during System.Diagnostics.FileVersionInfo test run
Superceded by #53197 |
Since we cannot easily JIT on arm64, we need to change how we run in interp mode. The old way apparently has some JIT fallbacks, so we need to switch to the mode supported by AOT.