1use std::collections::VecDeque;
2use std::ffi::{CStr, CString};
3use std::fmt::Write;
4use std::path::Path;
5use std::sync::Once;
6use std::{ptr, slice, str};
78use libc::c_int;
9use rustc_codegen_ssa::base::wants_wasm_eh;
10use rustc_codegen_ssa::target_features::internal_target_features;
11use rustc_codegen_ssa::{TargetConfig, target_features};
12use rustc_data_structures::fx::FxHashSet;
13use rustc_data_structures::small_c_str::SmallCStr;
14use rustc_fs_util::path_to_c_string;
15use rustc_middle::bug;
16use rustc_session::Session;
17use rustc_session::config::{NATIVE_CPU, PrintKind, PrintRequest};
18use rustc_target::spec::{
19Arch, CfgAbi, Env, MergeFunctions, Os, PanicStrategy, SmallDataThresholdSupport,
20};
21use smallvec::{SmallVec, smallvec};
2223use crate::back::write::create_informational_target_machine;
24use crate::{diagnostics, llvm};
2526static INIT: Once = Once::new();
2728pub(crate) fn init(sess: &Session) {
29unsafe {
30// Before we touch LLVM, make sure that multithreading is enabled.
31if !llvm::LLVMIsMultithreaded().is_true() {
32::rustc_middle::util::bug::bug_fmt(format_args!("LLVM compiled without support for threads"));bug!("LLVM compiled without support for threads");
33 }
34INIT.call_once(|| {
35configure_llvm(sess);
36 });
37 }
38}
3940fn require_inited() {
41if !INIT.is_completed() {
42::rustc_middle::util::bug::bug_fmt(format_args!("LLVM is not initialized"));bug!("LLVM is not initialized");
43 }
44}
4546unsafe fn configure_llvm(sess: &Session) {
47let n_args = sess.opts.cg.llvm_args.len() + sess.target.llvm_args.len();
48let mut llvm_c_strs = Vec::with_capacity(n_args + 1);
49let mut llvm_args = Vec::with_capacity(n_args + 1);
5051// Check to ensure we're running against the correct LLVM version.
52unsafe {
53let mut llvm_major = 0;
54let mut llvm_minor = 0;
55let mut llvm_patch = 0;
56 llvm::LLVMGetVersion(&mut llvm_major, &mut llvm_minor, &mut llvm_patch);
57let expected_version = llvm::LLVMRustVersionMajor();
58if llvm_major != expected_version {
59sess.dcx().emit_fatal(diagnostics::LlvmVersionMismatch {
60expected_version,
61llvm_major,
62llvm_minor,
63llvm_patch,
64 dll_loc: &match rustc_session::filesearch::dll_path(llvm::LLVMGetVersionas *mut _)
65 {
66Ok(path) => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" at {0}", path.display()))
})format!(" at {}", path.display()),
67Err(_) => String::new(),
68 },
69 })
70 }
71 }
7273unsafe {
74 llvm::LLVMRustInstallErrorHandlers();
75 }
76// On Windows, an LLVM assertion will open an Abort/Retry/Ignore dialog
77 // box for the purpose of launching a debugger. However, on CI this will
78 // cause it to hang until it times out, which can take several hours.
79if std::env::var_os("CI").is_some() {
80unsafe {
81 llvm::LLVMRustDisableSystemDialogsOnCrash();
82 }
83 }
8485fn llvm_arg_to_arg_name(full_arg: &str) -> &str {
86full_arg.trim().split(|c: char| c == '=' || c.is_whitespace()).next().unwrap_or("")
87 }
8889let cg_opts = sess.opts.cg.llvm_args.iter().map(AsRef::as_ref);
90let tg_opts = sess.target.llvm_args.iter().map(AsRef::as_ref);
91// Target-spec args are passed to LLVM before user `-Cllvm-args`. LLVM's
92 // `cl::opt` parser is last-wins, so this lets `-Cllvm-args=...` override
93 // a value already set in the target spec (e.g. `-wasm-use-legacy-eh`).
94let sess_args = tg_opts.chain(cg_opts);
9596let user_specified_args: FxHashSet<_> =
97sess_args.clone().map(|s| llvm_arg_to_arg_name(s)).filter(|s| !s.is_empty()).collect();
9899 {
100// This adds the given argument to LLVM. Unless `force` is true
101 // user specified arguments are *not* overridden.
102let mut add = |arg: &str, force: bool| {
103if force || !user_specified_args.contains(llvm_arg_to_arg_name(arg)) {
104let s = CString::new(arg).unwrap();
105llvm_args.push(s.as_ptr());
106llvm_c_strs.push(s);
107 }
108 };
109// Set the llvm "program name" to make usage and invalid argument messages more clear.
110add("rustc -Cllvm-args=\"...\" with", true);
111if sess.opts.unstable_opts.time_llvm_passes {
112add("-time-passes", false);
113 }
114if sess.opts.unstable_opts.print_llvm_passes {
115add("-debug-pass=Structure", false);
116 }
117if sess.target.generate_arange_section
118 && !sess.opts.unstable_opts.no_generate_arange_section
119 {
120add("-generate-arange-section", false);
121 }
122123match sess.opts.unstable_opts.merge_functions.unwrap_or(sess.target.merge_functions) {
124 MergeFunctions::Disabled | MergeFunctions::Trampolines => {}
125 MergeFunctions::Aliases => {
126add("-mergefunc-use-aliases", false);
127 }
128 }
129130if wants_wasm_eh(sess) {
131add("-wasm-enable-eh", false);
132 }
133134// HACK(eddyb) LLVM inserts `llvm.assume` calls to preserve align attributes
135 // during inlining. Unfortunately these may block other optimizations.
136add("-preserve-alignment-assumptions-during-inlining=false", false);
137138// Use non-zero `import-instr-limit` multiplier for cold callsites.
139add("-import-cold-multiplier=0.1", false);
140141if sess.print_llvm_stats() || sess.print_llvm_stats_json().is_some() {
142add("-stats", false);
143 }
144145for arg in sess_args {
146 add(&(*arg), true);
147 }
148149match (
150sess.opts.unstable_opts.small_data_threshold,
151sess.target.small_data_threshold_support(),
152 ) {
153// Set up the small-data optimization limit for architectures that use
154 // an LLVM argument to control this.
155(Some(threshold), SmallDataThresholdSupport::LlvmArg(arg)) => {
156add(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("--{0}={1}", arg, threshold))
})format!("--{arg}={threshold}"), false)
157 }
158_ => (),
159 };
160 }
161162if sess.opts.unstable_opts.llvm_time_trace {
163unsafe { llvm::LLVMRustTimeTraceProfilerInitialize() };
164 }
165166 rustc_llvm::initialize_available_targets();
167168unsafe { llvm::LLVMRustSetLLVMOptions(llvm_args.len() as c_int, llvm_args.as_ptr()) };
169}
170171pub(crate) fn time_trace_profiler_finish(file_name: &Path) {
172unsafe {
173let file_name = path_to_c_string(file_name);
174 llvm::LLVMRustTimeTraceProfilerFinish(file_name.as_ptr());
175 }
176}
177178enum TargetFeatureFoldStrength<'a> {
179// The feature is only tied when enabling the feature, disabling
180 // this feature shouldn't disable the tied feature.
181EnableOnly(&'a str),
182// The feature is tied for both enabling and disabling this feature.
183Both(&'a str),
184}
185186impl<'a> TargetFeatureFoldStrength<'a> {
187fn as_str(&self) -> &'a str {
188match self {
189 TargetFeatureFoldStrength::EnableOnly(feat) => feat,
190 TargetFeatureFoldStrength::Both(feat) => feat,
191 }
192 }
193}
194195pub(crate) struct LLVMFeature<'a> {
196 llvm_feature_name: &'a str,
197 dependencies: SmallVec<[TargetFeatureFoldStrength<'a>; 1]>,
198}
199200impl<'a> LLVMFeature<'a> {
201fn new(llvm_feature_name: &'a str) -> Self {
202Self { llvm_feature_name, dependencies: SmallVec::new() }
203 }
204205fn with_dependencies(
206 llvm_feature_name: &'a str,
207 dependencies: SmallVec<[TargetFeatureFoldStrength<'a>; 1]>,
208 ) -> Self {
209Self { llvm_feature_name, dependencies }
210 }
211}
212213impl<'a> IntoIteratorfor LLVMFeature<'a> {
214type Item = &'a str;
215type IntoIter = impl Iterator<Item = &'a str>;
216217fn into_iter(self) -> Self::IntoIter {
218let dependencies = self.dependencies.into_iter().map(|feat| feat.as_str());
219 std::iter::once(self.llvm_feature_name).chain(dependencies)
220 }
221}
222223/// Convert a Rust feature name to an LLVM feature name. Returning `None` means the
224/// feature should be skipped, usually because it is not supported by the current
225/// LLVM version.
226///
227/// WARNING: the features after applying `to_llvm_features` must be known
228/// to LLVM or the feature detection code will walk past the end of the feature
229/// array, leading to crashes.
230///
231/// To find a list of LLVM's names, see llvm-project/llvm/lib/Target/{ARCH}/*.td
232/// where `{ARCH}` is the architecture name. Look for instances of `SubtargetFeature`.
233///
234/// Check the current rustc fork of LLVM in the repo at
235/// <https://github.com/rust-lang/llvm-project/>. The commit in use can be found via the
236/// `llvm-project` submodule in <https://github.com/rust-lang/rust/tree/HEAD/src> Though note that
237/// Rust can also be build with an external precompiled version of LLVM which might lead to failures
238/// if the oldest tested / supported LLVM version doesn't yet support the relevant intrinsics.
239pub(crate) fn to_llvm_features<'a>(sess: &Session, s: &'a str) -> Option<LLVMFeature<'a>> {
240let (major, _, _) = get_version();
241match sess.target.arch {
242 Arch::AArch64 | Arch::Arm64EC => {
243match s {
244"rcpc2" => Some(LLVMFeature::new("rcpc-immo")),
245"dpb" => Some(LLVMFeature::new("ccpp")),
246"dpb2" => Some(LLVMFeature::new("ccdp")),
247"frintts" => Some(LLVMFeature::new("fptoint")),
248"fcma" => Some(LLVMFeature::new("complxnum")),
249"pmuv3" => Some(LLVMFeature::new("perfmon")),
250"paca" => Some(LLVMFeature::new("pauth")),
251"pacg" => Some(LLVMFeature::new("pauth")),
252"flagm2" => Some(LLVMFeature::new("altnzcv")),
253// Rust ties fp and neon together.
254"neon" => Some(LLVMFeature::with_dependencies(
255"neon",
256{
let count = 0usize + 1usize;
let mut vec = ::smallvec::SmallVec::new();
if count <= vec.inline_size() {
vec.push(TargetFeatureFoldStrength::Both("fp-armv8"));
vec
} else {
::smallvec::SmallVec::from_vec(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[TargetFeatureFoldStrength::Both("fp-armv8")])))
}
}smallvec![TargetFeatureFoldStrength::Both("fp-armv8")],
257 )),
258// In LLVM neon implicitly enables fp, but we manually enable
259 // neon when a feature only implicitly enables fp
260"fhm" => Some(LLVMFeature::new("fp16fml")),
261"fp16" => Some(LLVMFeature::new("fullfp16")),
262// Filter out features that are not supported by the current LLVM version
263"fpmr" => None, // only existed in 18
264 // Withdrawn by ARM; removed from LLVM in 22
265"tme" if major >= 22 => None,
266 s => Some(LLVMFeature::new(s)),
267 }
268 }
269 Arch::Arm => match s {
270"fp16" => Some(LLVMFeature::new("fullfp16")),
271 s => Some(LLVMFeature::new(s)),
272 },
273 Arch::Bpf => match s {
274"allows-misaligned-mem-access" if major < 22 => None,
275 s => Some(LLVMFeature::new(s)),
276 },
277 Arch::Nvptx64 => match s {
278"sm_101" if major >= 24 => Some(LLVMFeature::new("sm_110")),
279"sm_101a" if major >= 24 => Some(LLVMFeature::new("sm_110a")),
280"sm_101f" if major >= 24 => Some(LLVMFeature::new("sm_110f")),
281 s => Some(LLVMFeature::new(s)),
282 },
283// Filter out features that are not supported by the current LLVM version
284Arch::PowerPC | Arch::PowerPC64 => match s {
285"power8-crypto" => Some(LLVMFeature::new("crypto")),
286 s => Some(LLVMFeature::new(s)),
287 },
288 Arch::RiscV32 | Arch::RiscV64 => match s {
289// Filter out Rust-specific *virtual* target feature
290"zkne_or_zknd" => None,
291 s => Some(LLVMFeature::new(s)),
292 },
293 Arch::Sparc | Arch::Sparc64 => match s {
294"leoncasa" => Some(LLVMFeature::new("hasleoncasa")),
295 s => Some(LLVMFeature::new(s)),
296 },
297 Arch::Wasm32 | Arch::Wasm64 => match s {
298"gc" if major < 22 => None,
299 s => Some(LLVMFeature::new(s)),
300 },
301 Arch::X86 | Arch::X86_64 => {
302match s {
303"sse4.2" => Some(LLVMFeature::with_dependencies(
304"sse4.2",
305{
let count = 0usize + 1usize;
let mut vec = ::smallvec::SmallVec::new();
if count <= vec.inline_size() {
vec.push(TargetFeatureFoldStrength::EnableOnly("crc32"));
vec
} else {
::smallvec::SmallVec::from_vec(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[TargetFeatureFoldStrength::EnableOnly("crc32")])))
}
}smallvec![TargetFeatureFoldStrength::EnableOnly("crc32")],
306 )),
307"pclmulqdq" => Some(LLVMFeature::new("pclmul")),
308"rdrand" => Some(LLVMFeature::new("rdrnd")),
309"bmi1" => Some(LLVMFeature::new("bmi")),
310"cmpxchg16b" => Some(LLVMFeature::new("cx16")),
311"lahfsahf" => Some(LLVMFeature::new("sahf")),
312// Enable the evex512 target feature if an avx512 target feature is enabled.
313s if s.starts_with("avx512") && major < 22 => Some(LLVMFeature::with_dependencies(
314s,
315{
let count = 0usize + 1usize;
let mut vec = ::smallvec::SmallVec::new();
if count <= vec.inline_size() {
vec.push(TargetFeatureFoldStrength::EnableOnly("evex512"));
vec
} else {
::smallvec::SmallVec::from_vec(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[TargetFeatureFoldStrength::EnableOnly("evex512")])))
}
}smallvec![TargetFeatureFoldStrength::EnableOnly("evex512")],
316 )),
317"avx10.1" if major < 22 => Some(LLVMFeature::new("avx10.1-512")),
318"avx10.2" if major < 22 => Some(LLVMFeature::new("avx10.2-512")),
319"apxf" => Some(LLVMFeature::with_dependencies(
320"egpr",
321{
let count =
0usize + 1usize + 1usize + 1usize + 1usize + 1usize + 1usize + 1usize;
let mut vec = ::smallvec::SmallVec::new();
if count <= vec.inline_size() {
vec.push(TargetFeatureFoldStrength::Both("push2pop2"));
vec.push(TargetFeatureFoldStrength::Both("ppx"));
vec.push(TargetFeatureFoldStrength::Both("ndd"));
vec.push(TargetFeatureFoldStrength::Both("ccmp"));
vec.push(TargetFeatureFoldStrength::Both("cf"));
vec.push(TargetFeatureFoldStrength::Both("nf"));
vec.push(TargetFeatureFoldStrength::Both("zu"));
vec
} else {
::smallvec::SmallVec::from_vec(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[TargetFeatureFoldStrength::Both("push2pop2"),
TargetFeatureFoldStrength::Both("ppx"),
TargetFeatureFoldStrength::Both("ndd"),
TargetFeatureFoldStrength::Both("ccmp"),
TargetFeatureFoldStrength::Both("cf"),
TargetFeatureFoldStrength::Both("nf"),
TargetFeatureFoldStrength::Both("zu")])))
}
}smallvec![
322 TargetFeatureFoldStrength::Both("push2pop2"),
323 TargetFeatureFoldStrength::Both("ppx"),
324 TargetFeatureFoldStrength::Both("ndd"),
325 TargetFeatureFoldStrength::Both("ccmp"),
326 TargetFeatureFoldStrength::Both("cf"),
327 TargetFeatureFoldStrength::Both("nf"),
328 TargetFeatureFoldStrength::Both("zu"),
329 ],
330 )),
331 s => Some(LLVMFeature::new(s)),
332 }
333 }
334_ => Some(LLVMFeature::new(s)),
335 }
336}
337338/// Used to generate cfg variables and apply features.
339/// Must express features in the way Rust understands them.
340///
341/// We do not have to worry about RUSTC_SPECIFIC_FEATURES here, those are handled outside codegen.
342pub(crate) fn target_config(sess: &Session) -> TargetConfig {
343let target_machine = create_informational_target_machine(sess, true);
344345let internal_target_features = internal_target_features(
346sess,
347 |feature| {
348to_llvm_features(sess, feature)
349 .map(|f| SmallVec::<[&str; 2]>::from_iter(f.into_iter()))
350 .unwrap_or_default()
351 },
352 |feature| {
353// This closure determines whether the target CPU has the feature according to LLVM. We
354 // do *not* consider the `-Ctarget-feature`s here, as that will be handled later in
355 // `internal_target_features`.
356if let Some(feat) = to_llvm_features(sess, feature) {
357// All the LLVM features this expands to must be enabled.
358for llvm_feature in feat {
359let cstr = SmallCStr::new(llvm_feature);
360// `LLVMRustHasFeature` is moderately expensive. On targets with many
361 // features (e.g. x86) these calls take a non-trivial fraction of runtime
362 // when compiling very small programs.
363if !unsafe { llvm::LLVMRustHasFeature(target_machine.raw(), cstr.as_ptr()) } {
364return false;
365 }
366 }
367true
368} else {
369false
370}
371 },
372 );
373374let mut cfg = TargetConfig {
375internal_target_features,
376 has_reliable_f16: true,
377 has_reliable_f16_math: true,
378 has_reliable_f128: true,
379 has_reliable_f128_math: true,
380 };
381382update_target_reliable_float_cfg(sess, &mut cfg);
383cfg384}
385386/// Determine whether or not experimental float types are reliable based on known bugs.
387fn update_target_reliable_float_cfg(sess: &Session, cfg: &mut TargetConfig) {
388let target_arch = &sess.target.arch;
389let target_os = &sess.target.options.os;
390let target_env = &sess.target.options.env;
391let target_abi = &sess.target.options.cfg_abi;
392let target_pointer_width = sess.target.pointer_width;
393let version = get_version();
394let (major, _, _) = version;
395396cfg.has_reliable_f16 = match (target_arch, target_os) {
397// Unsupported <https://github.com/llvm/llvm-project/issues/94434> (fixed in llvm22)
398(Arch::Arm64EC, _) if major < 22 => false,
399// MinGW ABI bugs <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054> resolved in GCC 16
400 // but our toolchain hasn't been updated.
401(Arch::X86_64, Os::Windows) if *target_env == Env::Gnu && *target_abi != CfgAbi::Llvm => {
402false
403}
404// Infinite recursion <https://github.com/llvm/llvm-project/issues/97981>
405(Arch::CSky, _) if major < 22 => false, // (fixed in llvm22)
406(Arch::PowerPC | Arch::PowerPC64, _) if major < 22 => false, // (fixed in llvm22)
407(Arch::Sparc | Arch::Sparc64, _) if major < 22 => false, // (fixed in llvm22)
408(Arch::Wasm32 | Arch::Wasm64, _) if major < 22 => false, // (fixed in llvm22)
409 // `f16` support only requires that symbols converting to and from `f32` are available. We
410 // provide these in `compiler-builtins`, so `f16` should be available on all platforms that
411 // do not have other ABI issues or LLVM crashes.
412_ => true,
413 };
414415cfg.has_reliable_f128 = match (target_arch, target_os) {
416// Unsupported https://github.com/llvm/llvm-project/issues/121122
417(Arch::AmdGpu, _) => false,
418 (Arch::Arm64EC, _) if major < 23 => false, // (fixed in llvm23)
419 // Selection bug <https://github.com/llvm/llvm-project/issues/95471>. This issue is closed
420 // but basic math still does not work.
421(Arch::Nvptx64, _) => false,
422// ABI bugs <https://github.com/rust-lang/rust/issues/125109> et al. (full
423 // list at <https://github.com/rust-lang/rust/issues/116909>)
424(Arch::PowerPC | Arch::PowerPC64, _) => false,
425// ABI unsupported <https://github.com/llvm/llvm-project/issues/41838> (fixed in llvm22)
426(Arch::Sparc, _) if major < 22 => false,
427// MinGW ABI bugs <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054> (fixed in llvm23)
428(Arch::X86_64, Os::Windows)
429if *target_env == Env::Gnu && *target_abi != CfgAbi::Llvm && major < 23 =>
430 {
431false
432}
433// There are no known problems on other platforms, so the only requirement is that symbols
434 // are available. `compiler-builtins` provides all symbols required for core `f128`
435 // support, so this should work for everything else.
436_ => true,
437 };
438439// Assume that working `f16` means working `f16` math for most platforms, since
440 // operations just go through `f32`.
441cfg.has_reliable_f16_math = cfg.has_reliable_f16;
442443cfg.has_reliable_f128_math = match (target_arch, target_os) {
444// LLVM lowers `fp128` math to `long double` symbols even on platforms where
445 // `long double` is not IEEE binary128. See
446 // <https://github.com/llvm/llvm-project/issues/44744>.
447 //
448 // This rules out anything that doesn't have `long double` = `binary128`; <= 32 bits
449 // (ld is `f64`), anything other than Linux (Windows and MacOS use `f64`), and `x86`
450 // (ld is 80-bit extended precision).
451 //
452 // musl does not implement the symbols required for f128 math at all.
453_ if *target_env == Env::Musl => false,
454 (Arch::X86_64, _) => false,
455 (_, Os::Linux) if target_pointer_width == 64 => true,
456_ => false,
457 } && cfg.has_reliable_f128;
458}
459460pub(crate) fn print_version() {
461let (major, minor, patch) = get_version();
462{
::std::io::_print(format_args!("LLVM version: {0}.{1}.{2}\n", major,
minor, patch));
};println!("LLVM version: {major}.{minor}.{patch}");
463}
464465pub(crate) fn get_version() -> (u32, u32, u32) {
466// Can be called without initializing LLVM
467unsafe {
468 (llvm::LLVMRustVersionMajor(), llvm::LLVMRustVersionMinor(), llvm::LLVMRustVersionPatch())
469 }
470}
471472pub(crate) fn print_passes() {
473// Can be called without initializing LLVM
474unsafe {
475 llvm::LLVMRustPrintPasses();
476 }
477}
478479fn llvm_target_features(tm: &llvm::TargetMachine) -> Vec<(&str, &str)> {
480let len = unsafe { llvm::LLVMRustGetTargetFeaturesCount(tm) };
481let mut ret = Vec::with_capacity(len);
482for i in 0..len {
483unsafe {
484let mut feature = ptr::null();
485let mut desc = ptr::null();
486 llvm::LLVMRustGetTargetFeature(tm, i, &mut feature, &mut desc);
487if feature.is_null() || desc.is_null() {
488::rustc_middle::util::bug::bug_fmt(format_args!("LLVM returned a `null` target feature string"));bug!("LLVM returned a `null` target feature string");
489 }
490let feature = CStr::from_ptr(feature).to_str().unwrap_or_else(|e| {
491::rustc_middle::util::bug::bug_fmt(format_args!("LLVM returned a non-utf8 feature string: {0}",
e));bug!("LLVM returned a non-utf8 feature string: {}", e);
492 });
493let desc = CStr::from_ptr(desc).to_str().unwrap_or_else(|e| {
494::rustc_middle::util::bug::bug_fmt(format_args!("LLVM returned a non-utf8 feature string: {0}",
e));bug!("LLVM returned a non-utf8 feature string: {}", e);
495 });
496 ret.push((feature, desc));
497 }
498 }
499ret500}
501502pub(crate) fn print(req: &PrintRequest, out: &mut String, sess: &Session) {
503require_inited();
504let tm = create_informational_target_machine(sess, false);
505match req.kind {
506 PrintKind::TargetCPUs => print_target_cpus(sess, tm.raw(), out),
507 PrintKind::TargetFeatures => print_target_features(sess, tm.raw(), out),
508_ => ::rustc_middle::util::bug::bug_fmt(format_args!("rustc_codegen_llvm can\'t handle print request: {0:?}",
req))bug!("rustc_codegen_llvm can't handle print request: {:?}", req),
509 }
510}
511512fn print_target_cpus(sess: &Session, tm: &llvm::TargetMachine, out: &mut String) {
513let cpu_names = llvm::build_string(|s| unsafe {
514 llvm::LLVMRustPrintTargetCPUs(&tm, s);
515 })
516 .unwrap();
517518struct Cpu<'a> {
519 cpu_name: &'a str,
520 remark: String,
521 }
522// Compare CPU against current target to label the default.
523let target_cpu = handle_native(&sess.target.cpu);
524let make_remark = |cpu_name| {
525if cpu_name == target_cpu {
526// FIXME(#132514): This prints the LLVM target string, which can be
527 // different from the Rust target string. Is that intended?
528let target = &sess.target.llvm_target;
529::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" - This is the default target CPU for the current build target (currently {0}).",
target))
})format!(
530" - This is the default target CPU for the current build target (currently {target})."
531)532 } else {
533"".to_owned()
534 }
535 };
536let mut cpus = cpu_names537 .lines()
538 .filter(|cpu_name| {
539 !sess.target.unsupported_cpus.contains(&std::borrow::Cow::Borrowed(*cpu_name))
540 })
541 .map(|cpu_name| Cpu { cpu_name, remark: make_remark(cpu_name) })
542 .collect::<VecDeque<_>>();
543544// Only print the "native" entry when host and target are the same arch,
545 // since otherwise it could be wrong or misleading.
546 // Also do not print it if `requires_consistent_cpu` is set, because in this case
547 // "native" would be rejected.
548if sess.host.arch == sess.target.arch && !sess.target.requires_consistent_cpu {
549let host = get_host_cpu_name();
550cpus.push_front(Cpu {
551 cpu_name: NATIVE_CPU,
552 remark: ::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" - Select the CPU of the current host (currently {0}).",
host))
})format!(" - Select the CPU of the current host (currently {host})."),
553 });
554 }
555556let max_name_width = cpus.iter().map(|cpu| cpu.cpu_name.len()).max().unwrap_or(0);
557out.write_fmt(format_args!("Available CPUs for this target:\n"))writeln!(out, "Available CPUs for this target:").unwrap();
558for Cpu { cpu_name, remark } in cpus {
559// Only pad the CPU name if there's a remark to print after it.
560let width = if remark.is_empty() { 0 } else { max_name_width };
561out.write_fmt(format_args!(" {0:<1$}{2}\n", cpu_name, width, remark))writeln!(out, " {cpu_name:<width$}{remark}").unwrap();
562 }
563}
564565fn print_target_features(sess: &Session, tm: &llvm::TargetMachine, out: &mut String) {
566let mut llvm_target_features = llvm_target_features(tm);
567let mut known_llvm_target_features = FxHashSet::<&'static str>::default();
568let mut rustc_target_features = sess569 .target
570 .rust_target_features()
571 .iter()
572 .filter_map(|(feature, gate, _implied)| {
573if !gate.in_cfg() {
574// Only list (experimentally) supported features.
575return None;
576 }
577// LLVM asserts that these are sorted. LLVM and Rust both use byte comparison for these
578 // strings.
579let llvm_feature = to_llvm_features(sess, *feature)?.llvm_feature_name;
580let desc =
581match llvm_target_features.binary_search_by_key(&llvm_feature, |(f, _d)| f).ok() {
582Some(index) => {
583known_llvm_target_features.insert(llvm_feature);
584llvm_target_features[index].1
585}
586None => "",
587 };
588589Some((*feature, desc))
590 })
591 .collect::<Vec<_>>();
592593// Since we add this at the end ...
594rustc_target_features.extend_from_slice(&[(
595"crt-static",
596"Enables C Run-time Libraries to be statically linked",
597 )]);
598// ... we need to sort the list again.
599rustc_target_features.sort();
600601llvm_target_features.retain(|(f, _d)| !known_llvm_target_features.contains(f));
602603let max_feature_len = llvm_target_features604 .iter()
605 .chain(rustc_target_features.iter())
606 .map(|(feature, _desc)| feature.len())
607 .max()
608 .unwrap_or(0);
609610out.write_fmt(format_args!("Features supported by rustc for this target:\n"))writeln!(out, "Features supported by rustc for this target:").unwrap();
611for (feature, desc) in &rustc_target_features {
612out.write_fmt(format_args!(" {0:1$} - {2}.\n", feature, max_feature_len,
desc))writeln!(out, " {feature:max_feature_len$} - {desc}.").unwrap();
613 }
614out.write_fmt(format_args!("\nCode-generation features supported by LLVM for this target:\n"))writeln!(out, "\nCode-generation features supported by LLVM for this target:").unwrap();
615for (feature, desc) in &llvm_target_features {
616out.write_fmt(format_args!(" {0:1$} - {2}.\n", feature, max_feature_len,
desc))writeln!(out, " {feature:max_feature_len$} - {desc}.").unwrap();
617 }
618if llvm_target_features.is_empty() {
619out.write_fmt(format_args!(" Target features listing is not supported by this LLVM version.\n"))writeln!(out, " Target features listing is not supported by this LLVM version.")620 .unwrap();
621 }
622out.write_fmt(format_args!("\nUse +feature to enable a feature, or -feature to disable it.\n"))writeln!(out, "\nUse +feature to enable a feature, or -feature to disable it.").unwrap();
623out.write_fmt(format_args!("For example, rustc -C target-cpu=mycpu -C target-feature=+feature1,-feature2\n\n"))writeln!(out, "For example, rustc -C target-cpu=mycpu -C target-feature=+feature1,-feature2\n")624 .unwrap();
625out.write_fmt(format_args!("Code-generation features cannot be used in cfg or #[target_feature],\n"))writeln!(out, "Code-generation features cannot be used in cfg or #[target_feature],").unwrap();
626out.write_fmt(format_args!("and may be renamed or removed in a future version of LLVM or rustc.\n\n"))writeln!(out, "and may be renamed or removed in a future version of LLVM or rustc.\n").unwrap();
627}
628629/// Returns the host CPU name, according to LLVM.
630fn get_host_cpu_name() -> &'static str {
631let mut len = 0;
632// SAFETY: The underlying C++ global function returns a `StringRef` that
633 // isn't tied to any particular backing buffer, so it must be 'static.
634let slice: &'static [u8] = unsafe {
635let ptr = llvm::LLVMRustGetHostCPUName(&mut len);
636if !!ptr.is_null() {
::core::panicking::panic("assertion failed: !ptr.is_null()")
};assert!(!ptr.is_null());
637 slice::from_raw_parts(ptr, len)
638 };
639 str::from_utf8(slice).expect("host CPU name should be UTF-8")
640}
641642/// If the given string is `"native"`, returns the host CPU name according to
643/// LLVM. Otherwise, the string is returned as-is.
644fn handle_native(cpu_name: &str) -> &str {
645match cpu_name {
646NATIVE_CPU => get_host_cpu_name(),
647_ => cpu_name,
648 }
649}
650651pub(crate) fn target_cpu(sess: &Session) -> &str {
652let cpu_name = sess.opts.cg.target_cpu.as_deref().unwrap_or_else(|| &sess.target.cpu);
653handle_native(cpu_name)
654}
655656/// The target features for compiler flags other than `-Ctarget-features`.
657fn llvm_features_by_flags(sess: &Session, features: &mut Vec<String>) {
658if wants_wasm_eh(sess) && sess.panic_strategy() == PanicStrategy::Unwind {
659features.push("+exception-handling".into());
660 }
661662 target_features::retpoline_features_by_flags(sess, features);
663 target_features::sanitizer_features_by_flags(sess, features);
664665// -Zfixed-x18
666if sess.opts.unstable_opts.fixed_x18 {
667if sess.target.arch != Arch::AArch64 {
668sess.dcx()
669 .emit_fatal(diagnostics::FixedX18InvalidArch { arch: sess.target.arch.desc() });
670 } else {
671features.push("+reserve-x18".into());
672 }
673 }
674}
675676/// The list of LLVM features computed from CLI flags (`-Ctarget-cpu`, `-Ctarget-feature`,
677/// `--target` and similar).
678///
679/// If `for_cfg` is `true` then we are assembling the feature list for the purpose of populating
680/// [`rustc_codegen_ssa::TargetConfig`] based on what LLVM actually enables in this configuration.
681/// `-Ctarget-feature` should be ignored in that case since it is already processed separately.
682pub(crate) fn global_llvm_features(sess: &Session, for_cfg: bool) -> Vec<String> {
683// Features that come earlier are overridden by conflicting features later in the string.
684 // Typically we'll want more explicit settings to override the implicit ones, so:
685 //
686 // * Features from -Ctarget-cpu=*; are overridden by [^1]
687 // * Features implied by --target; are overridden by
688 // * Features from -Ctarget-feature; are overridden by
689 // * function specific features.
690 //
691 // [^1]: target-cpu=native is handled here, other target-cpu values are handled implicitly
692 // through LLVM TargetMachine implementation.
693 //
694 // FIXME(nagisa): it isn't clear what's the best interaction between features implied by
695 // `-Ctarget-cpu` and `--target` are. On one hand, you'd expect CLI arguments to always
696 // override anything that's implicit, so e.g. when there's no `--target` flag, features implied
697 // the host target are overridden by `-Ctarget-cpu=*`. On the other hand, what about when both
698 // `--target` and `-Ctarget-cpu=*` are specified? Both then imply some target features and both
699 // flags are specified by the user on the CLI. It isn't as clear-cut which order of precedence
700 // should be taken in cases like these.
701let mut features = ::alloc::vec::Vec::new()vec![];
702703// -Ctarget-cpu=native
704match sess.opts.cg.target_cpu {
705Some(ref s) if s == NATIVE_CPU => {
706// We have already figured out the actual CPU name with `LLVMRustGetHostCPUName` and set
707 // that for LLVM, so the features implied by that CPU name will be available everywhere.
708 // However, that is not sufficient: e.g. `skylake` alone is not sufficient to tell if
709 // some of the instructions are available or not. So we have to also explicitly ask for
710 // the exact set of features available on the host, and enable all of them.
711let features_string = unsafe {
712let ptr = llvm::LLVMGetHostCPUFeatures();
713let features_string = if !ptr.is_null() {
714CStr::from_ptr(ptr)
715 .to_str()
716 .unwrap_or_else(|e| {
717::rustc_middle::util::bug::bug_fmt(format_args!("LLVM returned a non-utf8 features string: {0}",
e));bug!("LLVM returned a non-utf8 features string: {}", e);
718 })
719 .to_owned()
720 } else {
721::rustc_middle::util::bug::bug_fmt(format_args!("could not allocate host CPU features, LLVM returned a `null` string"));bug!("could not allocate host CPU features, LLVM returned a `null` string");
722 };
723724 llvm::LLVMDisposeMessage(ptr);
725726features_string727 };
728if !features_string.is_empty() {
729features.extend(features_string.split(',').map(String::from));
730 }
731 }
732Some(_) | None => {}
733 };
734735let mut extend_backend_features = |feature: &str, enable: bool| {
736let enable_disable = if enable { '+' } else { '-' };
737// We run through `to_llvm_features` when
738 // passing requests down to LLVM. This means that all in-language
739 // features also work on the command line instead of having two
740 // different names when the LLVM name and the Rust name differ.
741let Some(llvm_feature) = to_llvm_features(sess, feature) else { return };
742743features.extend(
744 std::iter::once(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1}", enable_disable,
llvm_feature.llvm_feature_name))
})format!("{}{}", enable_disable, llvm_feature.llvm_feature_name)).chain(
745llvm_feature.dependencies.into_iter().filter_map(move |feat| {
746match (enable, feat) {
747 (_, TargetFeatureFoldStrength::Both(f))
748 | (true, TargetFeatureFoldStrength::EnableOnly(f)) => {
749Some(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1}", enable_disable, f))
})format!("{enable_disable}{f}"))
750 }
751_ => None,
752 }
753 }),
754 ),
755 );
756 };
757758// Features implied by an implicit or explicit `--target`.
759target_features::target_spec_to_backend_features(sess, &mut extend_backend_features);
760761// -Ctarget-features. Skipped for `cfg` as there we parse -Ctarget-features directly instead of
762 // going via an LLVM target machine (which avoids accidentally picking up LLVM-level target
763 // feature implications that we do not want).
764if !for_cfg {
765 target_features::flag_to_backend_features(sess, extend_backend_features);
766 }
767768// `-C` flags that map to LLVM target features.
769 // We need to include them even with `only_base_features` as this is used to populate
770 // `sess.internal_target_features` where we very much want them to be present (e.g. the inline
771 // asm logic uses that to check which registers may be used).
772llvm_features_by_flags(sess, &mut features);
773774// `-Zllvm-target-features`, all the way at the end to overwrite everything.
775 // Should be picked up by `cfg` (e.g. if someone enables AVX this way).
776for feature in sess.opts.unstable_opts.llvm_target_feature.split(',') {
777if feature.is_empty() {
778continue;
779 }
780if feature.starts_with('+') || feature.starts_with('-') {
781 features.push(feature.to_owned());
782 } else {
783// LLVM seems to silently ignore entries without leading `+`/`-`. Let's emit a warning
784 // to avoid confusion. But only emit this warning once, under `for_cfg`.
785if for_cfg {
786 sess.dcx().emit_warn(diagnostics::UnknownLlvmTargetFeaturePrefix { feature });
787 }
788 }
789 }
790791features792}
793794pub(crate) fn tune_cpu(sess: &Session) -> Option<&str> {
795let name = sess.opts.unstable_opts.tune_cpu.as_ref()?;
796Some(handle_native(name))
797}
798799pub(crate) fn target_has_mnemonic(sess: &Session, mnemonic: &str) -> bool {
800require_inited();
801let tm = create_informational_target_machine(sess, false);
802let cstr = SmallCStr::new(mnemonic);
803unsafe { llvm::LLVMRustTargetHasMnemonic(tm.raw(), cstr.as_ptr()) }
804}