Switch MacCatalyst interpreter runs to use AOT JustInterp#52848
Switch MacCatalyst interpreter runs to use AOT JustInterp#52848steveisok wants to merge 5 commits into
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.