Skip to content
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

[Feature Request]: Implement support for native ARM64 enablement in NetFx AnyCPU executables #10060

Open
ladipro opened this issue Apr 23, 2024 · 1 comment
Assignees
Labels
Feature Request Partner request Priority:1 Work that is critical for the release, but we could probably ship without triaged

Comments

@ladipro
Copy link
Member

ladipro commented Apr 23, 2024

Summary

Windows is adding support for "arm64" as the supported architecture listed in the Win32 executable manifest. AnyCPU executables with such an element in the manifest will run natively on ARM64 Windows. This issue is about having MSBuild support the new thing by adding a new property called PreferNativeArm64.

Background and Motivation

The behavior on ARM64 Windows so far has been for AnyCPU executables to run emulated, out of the fear that the developer may not have anticipated such an architecture when they built the program. This is similar to the Prefer32Bit property, which was added some time ago to keep AnyCPU executables running in 32-bit WoW on x64 Windows.

Proposed Feature

A new property called PreferNativeArm64 is understood by common targets. Notable differences between PreferNativeArm64 and the existing Prefer32Bit prop are:

  • Prefer32Bit is true by default and the developer has to opt out by setting it to false. PreferNativeArm64 is a false-by-default opt-in switch.
  • Prefer32Bit translates to a bit in the COR header while PreferNativeArm64 makes the toolchain add an element to the Win32 manifest embedded in the executable.

At high level, if the new property is set to true, MSBuild will generate a manifest file with the following contents:

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
    <security>
      <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
        <requestedExecutionLevel level="asInvoker" uiAccess="false"/>
      </requestedPrivileges>
    </security>
  </trustInfo>
  <asmv3:application>
    <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2024/WindowsSettings">
      <supportedArchitectures>amd64 arm64</supportedArchitectures>
    </asmv3:windowsSettings>
  </asmv3:application>
</assembly>

The contents is combined from two sources. It is the new <supportedArchitectures> element merged with the contents of the file named default.win32manifest in the .NET Framework install folder (commonly C:\Windows\Microsoft.NET\Framework\v4.0.30319). This ensures that the manifest will be the same as what's embedded by the C#/VB compiler by default, other than the new element.

If the project already specifies a custom Win32 manifest using the ApplicationManifest property, this file is used as a source instead of default.win32manifest and the <supportedArchitectures> element is merged into it. That way the manifest will be the same as what's embedded by the C#/VB compiler when it's passed a -win32manifest, other than the new element.

Error conditions:

  • If PreferNativeArm64 is true and Prefer32Bit is explicitly set to true, a build error is reported. These two options are mutually exclusive.
  • If PreferNativeArm64 is true and the NoWin32Manifest is true, a build error is reported. These two options are mutually exclusive.
  • If PreferNativeArm64 is true, a custom manifest is specified using ApplicationManifest, and the manifest already contains the <supportedArchitectures> element with something else than "amd64 arm64", a build error is reported.
  • If PreferNativeArm64 is true and the project does not target .NET Framework, a build warning is reported. This is similar to how the build already warns about Prefer32Bit when not targeting .NET Framework.
  • If PreferNativeArm64 is true and the project targets other platform than AnyCPU, a build warning is reported. Prefer32Bit does not seem to implement this validation in common targets.

Alternative Designs

We could alternatively add a new flag to the C#/VB compiler, pushing the work of injecting the <supportedArchitectures> element to the default or user-specified manifest down to the compiler. However, MSBuild is better positioned for this work because it is a single choking point for potentially multiple compilers.

@ladipro
Copy link
Member Author

ladipro commented Apr 23, 2024

cc @rainersigwald @tmeschter

The project system in VS will likely expose the new prop as a check box with some of the validation specified above, e.g. enabled only when targeting NetFx AnyCPU.

@AR-May AR-May added the triaged label Apr 30, 2024
@rokonec rokonec added the Priority:1 Work that is critical for the release, but we could probably ship without label May 2, 2024
@rokonec rokonec assigned YuliiaKovalova and unassigned ladipro May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature Request Partner request Priority:1 Work that is critical for the release, but we could probably ship without triaged
Projects
None yet
Development

No branches or pull requests

4 participants