NGEN x86 与 x64 与 .NET 可执行文件
我有以下问题:
我的 .NET 程序集是在 x86 模式下编译的。我仍然可以在 x64 Windows 系统上利用 NGEN 的性能优势吗? x86 程序集会被编译成 x64 上的本机代码吗?
I have the following question:
My .NET assemblies are compiled in x86 mode. Can I still leverage the performance benefits of NGEN on x64 Windows systems? Will x86 assemblies be compiled into native code on x64?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 x86 编译的程序集将在 64 位系统上运行 i wow64,但使用 AnyCPU 编译的程序集将本机运行,无论 NGEN 为何。为 x86 编译的程序集可以在 64 位系统上加载 32 位程序集,而为 AnyCPU 编译的代码不会加载 32 位 dll。
当您使用 NGEN 时,您将避免对程序集进行 JIT 编译,并且在 x64 系统上使用 x86 编译时,程序集将是本机 x86 代码。
Assemblies compiled with x86 will run i wow64 on 64-bits systems, but assemblies copiled with AnyCPU will run natively, regardless of NGEN. Assemblies compiled for x86 can load 32-bit assemblies on 64-bit systems and code compiled for AnyCPU will not load 32-bit dlls.
When you use NGEN you will avoid JIT-compiling of the assembly and the assembly will be native x86 code when compiled with x86 also on x64 systems.