]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/src/llvm_util.rs
Auto merge of #100801 - Kobzol:track-pgo-profile-paths, r=michaelwoerister
[rust.git] / compiler / rustc_codegen_llvm / src / llvm_util.rs
1 use crate::back::write::create_informational_target_machine;
2 use crate::{llvm, llvm_util};
3 use libc::c_int;
4 use libloading::Library;
5 use rustc_codegen_ssa::target_features::{
6     supported_target_features, tied_target_features, RUSTC_SPECIFIC_FEATURES,
7 };
8 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
9 use rustc_data_structures::small_c_str::SmallCStr;
10 use rustc_fs_util::path_to_c_string;
11 use rustc_middle::bug;
12 use rustc_session::config::PrintRequest;
13 use rustc_session::Session;
14 use rustc_span::symbol::Symbol;
15 use rustc_target::spec::{MergeFunctions, PanicStrategy};
16 use smallvec::{smallvec, SmallVec};
17 use std::ffi::{CStr, CString};
18
19 use std::mem;
20 use std::path::Path;
21 use std::ptr;
22 use std::slice;
23 use std::str;
24 use std::sync::Once;
25
26 static INIT: Once = Once::new();
27
28 pub(crate) fn init(sess: &Session) {
29     unsafe {
30         // Before we touch LLVM, make sure that multithreading is enabled.
31         if llvm::LLVMIsMultithreaded() != 1 {
32             bug!("LLVM compiled without support for threads");
33         }
34         INIT.call_once(|| {
35             configure_llvm(sess);
36         });
37     }
38 }
39
40 fn require_inited() {
41     if !INIT.is_completed() {
42         bug!("LLVM is not initialized");
43     }
44 }
45
46 unsafe fn configure_llvm(sess: &Session) {
47     let n_args = sess.opts.cg.llvm_args.len() + sess.target.llvm_args.len();
48     let mut llvm_c_strs = Vec::with_capacity(n_args + 1);
49     let mut llvm_args = Vec::with_capacity(n_args + 1);
50
51     llvm::LLVMRustInstallFatalErrorHandler();
52     // On Windows, an LLVM assertion will open an Abort/Retry/Ignore dialog
53     // box for the purpose of launching a debugger. However, on CI this will
54     // cause it to hang until it times out, which can take several hours.
55     if std::env::var_os("CI").is_some() {
56         llvm::LLVMRustDisableSystemDialogsOnCrash();
57     }
58
59     fn llvm_arg_to_arg_name(full_arg: &str) -> &str {
60         full_arg.trim().split(|c: char| c == '=' || c.is_whitespace()).next().unwrap_or("")
61     }
62
63     let cg_opts = sess.opts.cg.llvm_args.iter().map(AsRef::as_ref);
64     let tg_opts = sess.target.llvm_args.iter().map(AsRef::as_ref);
65     let sess_args = cg_opts.chain(tg_opts);
66
67     let user_specified_args: FxHashSet<_> =
68         sess_args.clone().map(|s| llvm_arg_to_arg_name(s)).filter(|s| !s.is_empty()).collect();
69
70     {
71         // This adds the given argument to LLVM. Unless `force` is true
72         // user specified arguments are *not* overridden.
73         let mut add = |arg: &str, force: bool| {
74             if force || !user_specified_args.contains(llvm_arg_to_arg_name(arg)) {
75                 let s = CString::new(arg).unwrap();
76                 llvm_args.push(s.as_ptr());
77                 llvm_c_strs.push(s);
78             }
79         };
80         // Set the llvm "program name" to make usage and invalid argument messages more clear.
81         add("rustc -Cllvm-args=\"...\" with", true);
82         if sess.time_llvm_passes() {
83             add("-time-passes", false);
84         }
85         if sess.print_llvm_passes() {
86             add("-debug-pass=Structure", false);
87         }
88         if sess.target.generate_arange_section
89             && !sess.opts.unstable_opts.no_generate_arange_section
90         {
91             add("-generate-arange-section", false);
92         }
93
94         match sess.opts.unstable_opts.merge_functions.unwrap_or(sess.target.merge_functions) {
95             MergeFunctions::Disabled | MergeFunctions::Trampolines => {}
96             MergeFunctions::Aliases => {
97                 add("-mergefunc-use-aliases", false);
98             }
99         }
100
101         if sess.target.os == "emscripten" && sess.panic_strategy() == PanicStrategy::Unwind {
102             add("-enable-emscripten-cxx-exceptions", false);
103         }
104
105         // HACK(eddyb) LLVM inserts `llvm.assume` calls to preserve align attributes
106         // during inlining. Unfortunately these may block other optimizations.
107         add("-preserve-alignment-assumptions-during-inlining=false", false);
108
109         // Use non-zero `import-instr-limit` multiplier for cold callsites.
110         add("-import-cold-multiplier=0.1", false);
111
112         for arg in sess_args {
113             add(&(*arg), true);
114         }
115     }
116
117     if sess.opts.unstable_opts.llvm_time_trace {
118         llvm::LLVMTimeTraceProfilerInitialize();
119     }
120
121     llvm::LLVMInitializePasses();
122
123     // Use the legacy plugin registration if we don't use the new pass manager
124     if !should_use_new_llvm_pass_manager(
125         &sess.opts.unstable_opts.new_llvm_pass_manager,
126         &sess.target.arch,
127     ) {
128         // Register LLVM plugins by loading them into the compiler process.
129         for plugin in &sess.opts.unstable_opts.llvm_plugins {
130             let lib = Library::new(plugin).unwrap_or_else(|e| bug!("couldn't load plugin: {}", e));
131             debug!("LLVM plugin loaded successfully {:?} ({})", lib, plugin);
132
133             // Intentionally leak the dynamic library. We can't ever unload it
134             // since the library can make things that will live arbitrarily long.
135             mem::forget(lib);
136         }
137     }
138
139     rustc_llvm::initialize_available_targets();
140
141     llvm::LLVMRustSetLLVMOptions(llvm_args.len() as c_int, llvm_args.as_ptr());
142 }
143
144 pub fn time_trace_profiler_finish(file_name: &Path) {
145     unsafe {
146         let file_name = path_to_c_string(file_name);
147         llvm::LLVMTimeTraceProfilerFinish(file_name.as_ptr());
148     }
149 }
150
151 // WARNING: the features after applying `to_llvm_features` must be known
152 // to LLVM or the feature detection code will walk past the end of the feature
153 // array, leading to crashes.
154 //
155 // To find a list of LLVM's names, check llvm-project/llvm/include/llvm/Support/*TargetParser.def
156 // where the * matches the architecture's name
157 // Beware to not use the llvm github project for this, but check the git submodule
158 // found in src/llvm-project
159 // Though note that Rust can also be build with an external precompiled version of LLVM
160 // which might lead to failures if the oldest tested / supported LLVM version
161 // doesn't yet support the relevant intrinsics
162 pub fn to_llvm_features<'a>(sess: &Session, s: &'a str) -> SmallVec<[&'a str; 2]> {
163     let arch = if sess.target.arch == "x86_64" { "x86" } else { &*sess.target.arch };
164     match (arch, s) {
165         ("x86", "sse4.2") => {
166             if get_version() >= (14, 0, 0) {
167                 smallvec!["sse4.2", "crc32"]
168             } else {
169                 smallvec!["sse4.2"]
170             }
171         }
172         ("x86", "pclmulqdq") => smallvec!["pclmul"],
173         ("x86", "rdrand") => smallvec!["rdrnd"],
174         ("x86", "bmi1") => smallvec!["bmi"],
175         ("x86", "cmpxchg16b") => smallvec!["cx16"],
176         ("x86", "avx512vaes") => smallvec!["vaes"],
177         ("x86", "avx512gfni") => smallvec!["gfni"],
178         ("x86", "avx512vpclmulqdq") => smallvec!["vpclmulqdq"],
179         ("aarch64", "rcpc2") => smallvec!["rcpc-immo"],
180         ("aarch64", "dpb") => smallvec!["ccpp"],
181         ("aarch64", "dpb2") => smallvec!["ccdp"],
182         ("aarch64", "frintts") => smallvec!["fptoint"],
183         ("aarch64", "fcma") => smallvec!["complxnum"],
184         ("aarch64", "pmuv3") => smallvec!["perfmon"],
185         ("aarch64", "paca") => smallvec!["pauth"],
186         ("aarch64", "pacg") => smallvec!["pauth"],
187         // Rust ties fp and neon together. In LLVM neon implicitly enables fp,
188         // but we manually enable neon when a feature only implicitly enables fp
189         ("aarch64", "f32mm") => smallvec!["f32mm", "neon"],
190         ("aarch64", "f64mm") => smallvec!["f64mm", "neon"],
191         ("aarch64", "fhm") => smallvec!["fp16fml", "neon"],
192         ("aarch64", "fp16") => smallvec!["fullfp16", "neon"],
193         ("aarch64", "jsconv") => smallvec!["jsconv", "neon"],
194         ("aarch64", "sve") => smallvec!["sve", "neon"],
195         ("aarch64", "sve2") => smallvec!["sve2", "neon"],
196         ("aarch64", "sve2-aes") => smallvec!["sve2-aes", "neon"],
197         ("aarch64", "sve2-sm4") => smallvec!["sve2-sm4", "neon"],
198         ("aarch64", "sve2-sha3") => smallvec!["sve2-sha3", "neon"],
199         ("aarch64", "sve2-bitperm") => smallvec!["sve2-bitperm", "neon"],
200         (_, s) => smallvec![s],
201     }
202 }
203
204 // Given a map from target_features to whether they are enabled or disabled,
205 // ensure only valid combinations are allowed.
206 pub fn check_tied_features(
207     sess: &Session,
208     features: &FxHashMap<&str, bool>,
209 ) -> Option<&'static [&'static str]> {
210     if !features.is_empty() {
211         for tied in tied_target_features(sess) {
212             // Tied features must be set to the same value, or not set at all
213             let mut tied_iter = tied.iter();
214             let enabled = features.get(tied_iter.next().unwrap());
215             if tied_iter.any(|f| enabled != features.get(f)) {
216                 return Some(tied);
217             }
218         }
219     }
220     return None;
221 }
222
223 // Used to generate cfg variables and apply features
224 // Must express features in the way Rust understands them
225 pub fn target_features(sess: &Session, allow_unstable: bool) -> Vec<Symbol> {
226     let target_machine = create_informational_target_machine(sess);
227     let mut features: Vec<Symbol> = supported_target_features(sess)
228         .iter()
229         .filter_map(|&(feature, gate)| {
230             if sess.is_nightly_build() || allow_unstable || gate.is_none() {
231                 Some(feature)
232             } else {
233                 None
234             }
235         })
236         .filter(|feature| {
237             // check that all features in a given smallvec are enabled
238             for llvm_feature in to_llvm_features(sess, feature) {
239                 let cstr = SmallCStr::new(llvm_feature);
240                 if !unsafe { llvm::LLVMRustHasFeature(target_machine, cstr.as_ptr()) } {
241                     return false;
242                 }
243             }
244             true
245         })
246         .map(|feature| Symbol::intern(feature))
247         .collect();
248
249     // LLVM 14 changed the ABI for i128 arguments to __float/__fix builtins on Win64
250     // (see https://reviews.llvm.org/D110413). This unstable target feature is intended for use
251     // by compiler-builtins, to export the builtins with the expected, LLVM-version-dependent ABI.
252     // The target feature can be dropped once we no longer support older LLVM versions.
253     if sess.is_nightly_build() && get_version() >= (14, 0, 0) {
254         features.push(Symbol::intern("llvm14-builtins-abi"));
255     }
256     features
257 }
258
259 pub fn print_version() {
260     let (major, minor, patch) = get_version();
261     println!("LLVM version: {}.{}.{}", major, minor, patch);
262 }
263
264 pub fn get_version() -> (u32, u32, u32) {
265     // Can be called without initializing LLVM
266     unsafe {
267         (llvm::LLVMRustVersionMajor(), llvm::LLVMRustVersionMinor(), llvm::LLVMRustVersionPatch())
268     }
269 }
270
271 pub fn print_passes() {
272     // Can be called without initializing LLVM
273     unsafe {
274         llvm::LLVMRustPrintPasses();
275     }
276 }
277
278 fn llvm_target_features(tm: &llvm::TargetMachine) -> Vec<(&str, &str)> {
279     let len = unsafe { llvm::LLVMRustGetTargetFeaturesCount(tm) };
280     let mut ret = Vec::with_capacity(len);
281     for i in 0..len {
282         unsafe {
283             let mut feature = ptr::null();
284             let mut desc = ptr::null();
285             llvm::LLVMRustGetTargetFeature(tm, i, &mut feature, &mut desc);
286             if feature.is_null() || desc.is_null() {
287                 bug!("LLVM returned a `null` target feature string");
288             }
289             let feature = CStr::from_ptr(feature).to_str().unwrap_or_else(|e| {
290                 bug!("LLVM returned a non-utf8 feature string: {}", e);
291             });
292             let desc = CStr::from_ptr(desc).to_str().unwrap_or_else(|e| {
293                 bug!("LLVM returned a non-utf8 feature string: {}", e);
294             });
295             ret.push((feature, desc));
296         }
297     }
298     ret
299 }
300
301 fn print_target_features(sess: &Session, tm: &llvm::TargetMachine) {
302     let mut target_features = llvm_target_features(tm);
303     let mut rustc_target_features = supported_target_features(sess)
304         .iter()
305         .filter_map(|(feature, _gate)| {
306             for llvm_feature in to_llvm_features(sess, *feature) {
307                 // LLVM asserts that these are sorted. LLVM and Rust both use byte comparison for these strings.
308                 match target_features.binary_search_by_key(&llvm_feature, |(f, _d)| f).ok().map(
309                     |index| {
310                         let (_f, desc) = target_features.remove(index);
311                         (*feature, desc)
312                     },
313                 ) {
314                     Some(v) => return Some(v),
315                     None => {}
316                 }
317             }
318             None
319         })
320         .collect::<Vec<_>>();
321     rustc_target_features.extend_from_slice(&[(
322         "crt-static",
323         "Enables C Run-time Libraries to be statically linked",
324     )]);
325     let max_feature_len = target_features
326         .iter()
327         .chain(rustc_target_features.iter())
328         .map(|(feature, _desc)| feature.len())
329         .max()
330         .unwrap_or(0);
331
332     println!("Features supported by rustc for this target:");
333     for (feature, desc) in &rustc_target_features {
334         println!("    {1:0$} - {2}.", max_feature_len, feature, desc);
335     }
336     println!("\nCode-generation features supported by LLVM for this target:");
337     for (feature, desc) in &target_features {
338         println!("    {1:0$} - {2}.", max_feature_len, feature, desc);
339     }
340     if target_features.is_empty() {
341         println!("    Target features listing is not supported by this LLVM version.");
342     }
343     println!("\nUse +feature to enable a feature, or -feature to disable it.");
344     println!("For example, rustc -C target-cpu=mycpu -C target-feature=+feature1,-feature2\n");
345     println!("Code-generation features cannot be used in cfg or #[target_feature],");
346     println!("and may be renamed or removed in a future version of LLVM or rustc.\n");
347 }
348
349 pub(crate) fn print(req: PrintRequest, sess: &Session) {
350     require_inited();
351     let tm = create_informational_target_machine(sess);
352     match req {
353         PrintRequest::TargetCPUs => unsafe { llvm::LLVMRustPrintTargetCPUs(tm) },
354         PrintRequest::TargetFeatures => print_target_features(sess, tm),
355         _ => bug!("rustc_codegen_llvm can't handle print request: {:?}", req),
356     }
357 }
358
359 fn handle_native(name: &str) -> &str {
360     if name != "native" {
361         return name;
362     }
363
364     unsafe {
365         let mut len = 0;
366         let ptr = llvm::LLVMRustGetHostCPUName(&mut len);
367         str::from_utf8(slice::from_raw_parts(ptr as *const u8, len)).unwrap()
368     }
369 }
370
371 pub fn target_cpu(sess: &Session) -> &str {
372     match sess.opts.cg.target_cpu {
373         Some(ref name) => handle_native(name),
374         None => handle_native(sess.target.cpu.as_ref()),
375     }
376 }
377
378 /// The list of LLVM features computed from CLI flags (`-Ctarget-cpu`, `-Ctarget-feature`,
379 /// `--target` and similar).
380 pub(crate) fn global_llvm_features(sess: &Session, diagnostics: bool) -> Vec<String> {
381     // Features that come earlier are overridden by conflicting features later in the string.
382     // Typically we'll want more explicit settings to override the implicit ones, so:
383     //
384     // * Features from -Ctarget-cpu=*; are overridden by [^1]
385     // * Features implied by --target; are overridden by
386     // * Features from -Ctarget-feature; are overridden by
387     // * function specific features.
388     //
389     // [^1]: target-cpu=native is handled here, other target-cpu values are handled implicitly
390     // through LLVM TargetMachine implementation.
391     //
392     // FIXME(nagisa): it isn't clear what's the best interaction between features implied by
393     // `-Ctarget-cpu` and `--target` are. On one hand, you'd expect CLI arguments to always
394     // override anything that's implicit, so e.g. when there's no `--target` flag, features implied
395     // the host target are overridden by `-Ctarget-cpu=*`. On the other hand, what about when both
396     // `--target` and `-Ctarget-cpu=*` are specified? Both then imply some target features and both
397     // flags are specified by the user on the CLI. It isn't as clear-cut which order of precedence
398     // should be taken in cases like these.
399     let mut features = vec![];
400
401     // -Ctarget-cpu=native
402     match sess.opts.cg.target_cpu {
403         Some(ref s) if s == "native" => {
404             let features_string = unsafe {
405                 let ptr = llvm::LLVMGetHostCPUFeatures();
406                 let features_string = if !ptr.is_null() {
407                     CStr::from_ptr(ptr)
408                         .to_str()
409                         .unwrap_or_else(|e| {
410                             bug!("LLVM returned a non-utf8 features string: {}", e);
411                         })
412                         .to_owned()
413                 } else {
414                     bug!("could not allocate host CPU features, LLVM returned a `null` string");
415                 };
416
417                 llvm::LLVMDisposeMessage(ptr);
418
419                 features_string
420             };
421             features.extend(features_string.split(',').map(String::from));
422         }
423         Some(_) | None => {}
424     };
425
426     // Features implied by an implicit or explicit `--target`.
427     features.extend(
428         sess.target
429             .features
430             .split(',')
431             .filter(|v| !v.is_empty() && backend_feature_name(v).is_some())
432             // Drop +atomics-32 feature introduced in LLVM 15.
433             .filter(|v| *v != "+atomics-32" || get_version() >= (15, 0, 0))
434             .map(String::from),
435     );
436
437     // -Ctarget-features
438     let supported_features = supported_target_features(sess);
439     let mut featsmap = FxHashMap::default();
440     let feats = sess
441         .opts
442         .cg
443         .target_feature
444         .split(',')
445         .filter_map(|s| {
446             let enable_disable = match s.chars().next() {
447                 None => return None,
448                 Some(c @ '+' | c @ '-') => c,
449                 Some(_) => {
450                     if diagnostics {
451                         let mut diag = sess.struct_warn(&format!(
452                             "unknown feature specified for `-Ctarget-feature`: `{}`",
453                             s
454                         ));
455                         diag.note("features must begin with a `+` to enable or `-` to disable it");
456                         diag.emit();
457                     }
458                     return None;
459                 }
460             };
461
462             let feature = backend_feature_name(s)?;
463             // Warn against use of LLVM specific feature names on the CLI.
464             if diagnostics && !supported_features.iter().any(|&(v, _)| v == feature) {
465                 let rust_feature = supported_features.iter().find_map(|&(rust_feature, _)| {
466                     let llvm_features = to_llvm_features(sess, rust_feature);
467                     if llvm_features.contains(&feature) && !llvm_features.contains(&rust_feature) {
468                         Some(rust_feature)
469                     } else {
470                         None
471                     }
472                 });
473                 let mut diag = sess.struct_warn(&format!(
474                     "unknown feature specified for `-Ctarget-feature`: `{}`",
475                     feature
476                 ));
477                 diag.note("it is still passed through to the codegen backend");
478                 if let Some(rust_feature) = rust_feature {
479                     diag.help(&format!("you might have meant: `{}`", rust_feature));
480                 } else {
481                     diag.note("consider filing a feature request");
482                 }
483                 diag.emit();
484             }
485
486             if diagnostics {
487                 // FIXME(nagisa): figure out how to not allocate a full hashset here.
488                 featsmap.insert(feature, enable_disable == '+');
489             }
490
491             // rustc-specific features do not get passed down to LLVM…
492             if RUSTC_SPECIFIC_FEATURES.contains(&feature) {
493                 return None;
494             }
495             // ... otherwise though we run through `to_llvm_features` when
496             // passing requests down to LLVM. This means that all in-language
497             // features also work on the command line instead of having two
498             // different names when the LLVM name and the Rust name differ.
499             Some(
500                 to_llvm_features(sess, feature)
501                     .into_iter()
502                     .map(move |f| format!("{}{}", enable_disable, f)),
503             )
504         })
505         .flatten();
506     features.extend(feats);
507
508     if diagnostics && let Some(f) = check_tied_features(sess, &featsmap) {
509         sess.err(&format!(
510             "target features {} must all be enabled or disabled together",
511             f.join(", ")
512         ));
513     }
514
515     features
516 }
517
518 /// Returns a feature name for the given `+feature` or `-feature` string.
519 ///
520 /// Only allows features that are backend specific (i.e. not [`RUSTC_SPECIFIC_FEATURES`].)
521 fn backend_feature_name(s: &str) -> Option<&str> {
522     // features must start with a `+` or `-`.
523     let feature = s.strip_prefix(&['+', '-'][..]).unwrap_or_else(|| {
524         bug!("target feature `{}` must begin with a `+` or `-`", s);
525     });
526     // Rustc-specific feature requests like `+crt-static` or `-crt-static`
527     // are not passed down to LLVM.
528     if RUSTC_SPECIFIC_FEATURES.contains(&feature) {
529         return None;
530     }
531     Some(feature)
532 }
533
534 pub fn tune_cpu(sess: &Session) -> Option<&str> {
535     let name = sess.opts.unstable_opts.tune_cpu.as_ref()?;
536     Some(handle_native(name))
537 }
538
539 pub(crate) fn should_use_new_llvm_pass_manager(user_opt: &Option<bool>, target_arch: &str) -> bool {
540     // The new pass manager is enabled by default for LLVM >= 13.
541     // This matches Clang, which also enables it since Clang 13.
542
543     // Since LLVM 15, the legacy pass manager is no longer supported.
544     if llvm_util::get_version() >= (15, 0, 0) {
545         return true;
546     }
547
548     // There are some perf issues with the new pass manager when targeting
549     // s390x with LLVM 13, so enable the new pass manager only with LLVM 14.
550     // See https://github.com/rust-lang/rust/issues/89609.
551     let min_version = if target_arch == "s390x" { 14 } else { 13 };
552     user_opt.unwrap_or_else(|| llvm_util::get_version() >= (min_version, 0, 0))
553 }