-
Notifications
You must be signed in to change notification settings - Fork 514
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
[dotnet] Support interpreter-only mode in the simulator #11421
Comments
Are you seeing the MT0141 error ? |
One way to test whether the interpreter is enabled is using
This test could be adjusted to (a) run, not just build; (b) try to use the above method to detect the execution engine. |
No, those projects don't have a way to communicate success/failure back to the runner. They exists so the tooling, like Even if we added a success/failure execution report on run it would not tell us much. The interpreter could be enabled but could be crashing in various places that not part of the simple app. To achieve more useful results we run existing unit tests under several configurations, including the interpreter (at least for legacy). That validates the build and that the feature works across a large set of tests. If would be easy to add a dotnet specific test for |
Example from xharness: All configurations of monotouch-test for
|
No I'm not. I guess it must be something else that is affecting the execution engine choice. Sorry. let me update the PR description with just the observable behavior and not my guesses. |
Update Hmm... I have a sneaking suspicion that this is due to xamarin-macios/tools/common/Target.cs Line 764 in b720b44
I think that (as opposed to The mono tests in dotnet/runtime use I'm going to try changing the runtime tests to use |
Hmm... actually I don't know that this is correct. I think it's possible the |
So here's what needs to happen to get the interpreter working on iOS simulator:
On iOSSimulator-arm64 we will run into W^X issues until a runtime pack that includes dotnet/runtime#53197 is used (I think .NET 6 Preview 6), but iOSSimulator-x64 should be ok now. @spouliot I think the steps above are similar to what is used for the interpreter on ios devices (although maybe it uses |
and #11724. (#12211) * Add support for the interpreter everywhere. * Add support for the AOT compiler everywhere we didn't support it before, because the interpreter needs it (at least System.Private.CoreLib.dll must be AOT-compiled when using the interpreter). * Do FullAOT compilation on Mac Catalyst/ARM64 if we're not using the interpreter, since we can't use the JIT. * Fix monotouch-test to be green on Mac Catalyst/ARM64. Fixes #11724. Fixes #11421.
… AOT when needed. Fixes #11421 and #11724. (#12237) * [dotnet] Refactor and extend the logic to determine whether we should run the AOT compiler or not. We also can't link dynamically with libmonosgen-2.0.dylib if we AOT compile anything, so make sure we don't do that. * [runtime] AOT is no longer limited to device builds. * [runtime/tools] Implement finding native mono lib for Mac Catalyst. This also meant propagating how libmono is linked from the MSBuild code to the Application class so that our existing logic is able to correctly determine which native mono lib to use. * [tools] Implement interpreter + AOT compilation for simulator + Mac Catalyst. The interpreter requires running the AOT compiler for System.Private.CoreLib.dll, so the first step in implementing the interpreter is to implement support for the AOT compiler as well. For .NET the logic is now as follows: * If the interpreter is enabled, AOT compile System.Private.CoreLib.dll. * If the interpreter is disabled, AOT everything on device + Mac Catalyst on ARM64. * [tests] Add a MyInterpretedApp test solution * [dotnet] Parse --dlsym and pass it to the dotnet-linker tasks. * [dotnet] Only list linker flags for assemblies after we've computed them. This means not listing per-assembly linker flags for only binding projects, but delay it until we've computed the linker flags for all assemblies (and reflect this in variable names as well). * [dotnet-linker] Add native references to libSystem.Security.Cryptography.Native.Apple for Mac Catalyst. Fixes these test failures: Ctor_Trust: System.DllNotFoundException : libSystem.Security.Cryptography.Native.Apple MailX1: System.DllNotFoundException : libSystem.Security.Cryptography.Native.Apple Encrypt_Empty: System.DllNotFoundException : libSystem.Security.Cryptography.Native.Apple KeyRecordTest: System.DllNotFoundException : libSystem.Security.Cryptography.Native.Apple Basic_Leaf_Only: System.DllNotFoundException : libSystem.Security.Cryptography.Native.Apple which are all because of Xamarin.MacCatalyst: Unable to resolve P/Invoke 'AppleCryptoNative_X509GetContentType' in the library 'libSystem.Security.Cryptography.Native.Apple' which happens because without this change we're not linking with the static version of libSystem.Security.Cryptography.Native.Apple. * [monotouch-test] Fix some formatting and add assert messages * [tools] Disable direct-pinvoke for AOT-compiled code on Mac Catalyst. Using 'direct-pinvoke' will tell the AOT compiler to emit a direct call to the native function declared in the DllImport, which doesn't work when we want to redirect to a different native funcion (in our xamarin_pinvoke_override/PINVOKE_OVERRIDE implementation). This fixes our exception marshalling tests in monotouch-test. * [monotouch-test] Improve the MTLDeviceTest to work on Mac Catalyst. * [tools] Always use '__Internal' as the native library for .NET. This is not the final fix, but this code will be reworked extensively, and this fix works for now to make the interpreter work. * [monotouch-test] Ignore the MTLDeviceTest.ReturnReleaseTest on Mac Catalyst. It requires a backport of other test fixes (which we're not really interested in), so just ignore it. Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
For .NET 6 hot reload to work, and for other scenarios, we need to be able to run apps using the interpreter on the simulator.
Currently calling the following code from
AppDelegate.FinishedLaunching
returns "JIT"The text was updated successfully, but these errors were encountered: