-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #64334 - jyao1:i686-master, r=joshtriplett
Add i686-unknown-uefi target This adds a new rustc target-configuration called 'i686-unknown_uefi'. This is similar to existing x86_64-unknown_uefi target. The i686-unknown-uefi target can be used to build Intel Architecture 32bit UEFI application. The ABI defined in UEFI environment (aka IA32) is similar to cdecl. We choose i686-unknown-uefi-gnu instead of i686-unknown-uefi to avoid the intrinsics generated by LLVM. The detail of root-cause and solution analysis is added as comment in the code. For x86_64-unknown-uefi, we cannot use -gnu, because the ABI between MSVC and GNU is totally different, and UEFI chooses ABI similar to MSVC. For i686-unknown-uefi, the UEFI chooses cdecl ABI, which is same as MSVC and GNU. According to LLVM code, the only differences between MSVC and GNU are fmodf(f32), longjmp() and TLS, which have no impact to UEFI. As such, using i686-unknown-uefi-gnu is the simplest way to pass the build. Adding the undefined symbols, such as _aulldiv() to rust compiler-builtins is out of scope. But it may be considered later. The scope of this patch is limited to support target-configuration. No standard library support is added in this patch. Such work can be done in future enhancement. Cc: Josh Triplett <josh.triplett@intel.com> Reviewed-by: Josh Triplett <josh.triplett@intel.com>
- Loading branch information
Showing
2 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
// This defines the ia32 target for UEFI systems as described in the UEFI specification. See the | ||
// uefi-base module for generic UEFI options. On ia32 systems | ||
// UEFI systems always run in protected-mode, have the interrupt-controller pre-configured and | ||
// force a single-CPU execution. | ||
// The cdecl ABI is used. It differs from the stdcall or fastcall ABI. | ||
// "i686-unknown-windows" is used to get the minimal subset of windows-specific features. | ||
|
||
use crate::spec::{LinkerFlavor, LldFlavor, Target, TargetResult}; | ||
|
||
pub fn target() -> TargetResult { | ||
let mut base = super::uefi_base::opts(); | ||
base.cpu = "pentium4".to_string(); | ||
base.max_atomic_width = Some(64); | ||
|
||
// We disable MMX and SSE for now, even though UEFI allows using them. Problem is, you have to | ||
// enable these CPU features explicitly before their first use, otherwise their instructions | ||
// will trigger an exception. Rust does not inject any code that enables AVX/MMX/SSE | ||
// instruction sets, so this must be done by the firmware. However, existing firmware is known | ||
// to leave these uninitialized, thus triggering exceptions if we make use of them. Which is | ||
// why we avoid them and instead use soft-floats. This is also what GRUB and friends did so | ||
// far. | ||
// If you initialize FP units yourself, you can override these flags with custom linker | ||
// arguments, thus giving you access to full MMX/SSE acceleration. | ||
base.features = "-mmx,-sse,+soft-float".to_string(); | ||
|
||
// UEFI mirrors the calling-conventions used on windows. In case of i686 this means small | ||
// structs will be returned as int. This shouldn't matter much, since the restrictions placed | ||
// by the UEFI specifications forbid any ABI to return structures. | ||
base.abi_return_struct_as_int = true; | ||
|
||
// Use -GNU here, because of the reason below: | ||
// Backgound and Problem: | ||
// If we use i686-unknown-windows, the LLVM IA32 MSVC generates compiler intrinsic | ||
// _alldiv, _aulldiv, _allrem, _aullrem, _allmul, which will cause undefined symbol. | ||
// A real issue is __aulldiv() is refered by __udivdi3() - udivmod_inner!(), from | ||
// https://github.com/rust-lang-nursery/compiler-builtins. | ||
// As result, rust-lld generates link error finally. | ||
// Root-cause: | ||
// In rust\src\llvm-project\llvm\lib\Target\X86\X86ISelLowering.cpp, | ||
// we have below code to use MSVC intrinsics. It assumes MSVC target | ||
// will link MSVC library. But that is NOT true in UEFI environment. | ||
// UEFI does not link any MSVC or GCC standard library. | ||
// if (Subtarget.isTargetKnownWindowsMSVC() || | ||
// Subtarget.isTargetWindowsItanium()) { | ||
// // Setup Windows compiler runtime calls. | ||
// setLibcallName(RTLIB::SDIV_I64, "_alldiv"); | ||
// setLibcallName(RTLIB::UDIV_I64, "_aulldiv"); | ||
// setLibcallName(RTLIB::SREM_I64, "_allrem"); | ||
// setLibcallName(RTLIB::UREM_I64, "_aullrem"); | ||
// setLibcallName(RTLIB::MUL_I64, "_allmul"); | ||
// setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall); | ||
// setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall); | ||
// setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall); | ||
// setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall); | ||
// setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall); | ||
// } | ||
// The compiler intrisics should be implemented by compiler-builtins. | ||
// Unfortunately, compiler-builtins has not provided those intrinsics yet. Such as: | ||
// i386/divdi3.S | ||
// i386/lshrdi3.S | ||
// i386/moddi3.S | ||
// i386/muldi3.S | ||
// i386/udivdi3.S | ||
// i386/umoddi3.S | ||
// Possible solution: | ||
// 1. Eliminate Intrinsics generation. | ||
// 1.1 Choose differnt target to bypass isTargetKnownWindowsMSVC(). | ||
// 1.2 Remove the "Setup Windows compiler runtime calls" in LLVM | ||
// 2. Implement Intrinsics. | ||
// We evaluated all options. | ||
// #2 is hard because we need implement the intrinsics (_aulldiv) generated | ||
// from the other intrinscis (__udivdi3) implementation with the same | ||
// functionality (udivmod_inner). If we let _aulldiv() call udivmod_inner!(), | ||
// then we are in loop. We may have to find another way to implement udivmod_inner!(). | ||
// #1.2 may break the existing usage. | ||
// #1.1 seems the simplest solution today. | ||
// The IA32 -gnu calling convention is same as the one defined in UEFI specification. | ||
// It uses cdecl, EAX/ECX/EDX as volatile register, and EAX/EDX as return value. | ||
// We also checked the LLVM X86TargetLowering, the differences between -gnu and -msvc | ||
// is fmodf(f32), longjmp() and TLS. None of them impacts the UEFI code. | ||
// As a result, we choose -gnu for i686 version before those intrisics are implemented in | ||
// compiler-builtins. After compiler-builtins implements all required intrinsics, we may | ||
// remove -gnu and use the default one. | ||
Ok(Target { | ||
llvm_target: "i686-unknown-windows-gnu".to_string(), | ||
target_endian: "little".to_string(), | ||
target_pointer_width: "32".to_string(), | ||
target_c_int_width: "32".to_string(), | ||
data_layout: "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32".to_string(), | ||
target_os: "uefi".to_string(), | ||
target_env: "".to_string(), | ||
target_vendor: "unknown".to_string(), | ||
arch: "x86".to_string(), | ||
linker_flavor: LinkerFlavor::Lld(LldFlavor::Link), | ||
|
||
options: base, | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters