]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_llvm/llvm_util.rs
Auto merge of #73882 - nnethercote:avoid-unwrap_or_else-in-allocate_in, r=Amanieu
[rust.git] / src / librustc_codegen_llvm / llvm_util.rs
1 use crate::back::write::create_informational_target_machine;
2 use crate::llvm;
3 use libc::c_int;
4 use rustc_data_structures::fx::FxHashSet;
5 use rustc_feature::UnstableFeatures;
6 use rustc_middle::bug;
7 use rustc_session::config::PrintRequest;
8 use rustc_session::Session;
9 use rustc_span::symbol::sym;
10 use rustc_span::symbol::Symbol;
11 use rustc_target::spec::{MergeFunctions, PanicStrategy};
12 use std::ffi::CString;
13
14 use std::slice;
15 use std::str;
16 use std::sync::atomic::{AtomicBool, Ordering};
17 use std::sync::Once;
18
19 static POISONED: AtomicBool = AtomicBool::new(false);
20 static INIT: Once = Once::new();
21
22 pub(crate) fn init(sess: &Session) {
23     unsafe {
24         // Before we touch LLVM, make sure that multithreading is enabled.
25         INIT.call_once(|| {
26             if llvm::LLVMStartMultithreaded() != 1 {
27                 // use an extra bool to make sure that all future usage of LLVM
28                 // cannot proceed despite the Once not running more than once.
29                 POISONED.store(true, Ordering::SeqCst);
30             }
31
32             configure_llvm(sess);
33         });
34
35         if POISONED.load(Ordering::SeqCst) {
36             bug!("couldn't enable multi-threaded LLVM");
37         }
38     }
39 }
40
41 fn require_inited() {
42     INIT.call_once(|| bug!("llvm is not initialized"));
43     if POISONED.load(Ordering::SeqCst) {
44         bug!("couldn't enable multi-threaded LLVM");
45     }
46 }
47
48 unsafe fn configure_llvm(sess: &Session) {
49     let n_args = sess.opts.cg.llvm_args.len() + sess.target.target.options.llvm_args.len();
50     let mut llvm_c_strs = Vec::with_capacity(n_args + 1);
51     let mut llvm_args = Vec::with_capacity(n_args + 1);
52
53     llvm::LLVMRustInstallFatalErrorHandler();
54
55     fn llvm_arg_to_arg_name(full_arg: &str) -> &str {
56         full_arg.trim().split(|c: char| c == '=' || c.is_whitespace()).next().unwrap_or("")
57     }
58
59     let cg_opts = sess.opts.cg.llvm_args.iter();
60     let tg_opts = sess.target.target.options.llvm_args.iter();
61     let sess_args = cg_opts.chain(tg_opts);
62
63     let user_specified_args: FxHashSet<_> =
64         sess_args.clone().map(|s| llvm_arg_to_arg_name(s)).filter(|s| !s.is_empty()).collect();
65
66     {
67         // This adds the given argument to LLVM. Unless `force` is true
68         // user specified arguments are *not* overridden.
69         let mut add = |arg: &str, force: bool| {
70             if force || !user_specified_args.contains(llvm_arg_to_arg_name(arg)) {
71                 let s = CString::new(arg).unwrap();
72                 llvm_args.push(s.as_ptr());
73                 llvm_c_strs.push(s);
74             }
75         };
76         add("rustc", true); // fake program name
77         if sess.time_llvm_passes() {
78             add("-time-passes", false);
79         }
80         if sess.print_llvm_passes() {
81             add("-debug-pass=Structure", false);
82         }
83         if !sess.opts.debugging_opts.no_generate_arange_section {
84             add("-generate-arange-section", false);
85         }
86         match sess
87             .opts
88             .debugging_opts
89             .merge_functions
90             .unwrap_or(sess.target.target.options.merge_functions)
91         {
92             MergeFunctions::Disabled | MergeFunctions::Trampolines => {}
93             MergeFunctions::Aliases => {
94                 add("-mergefunc-use-aliases", false);
95             }
96         }
97
98         if sess.target.target.target_os == "emscripten"
99             && sess.panic_strategy() == PanicStrategy::Unwind
100         {
101             add("-enable-emscripten-cxx-exceptions", false);
102         }
103
104         // HACK(eddyb) LLVM inserts `llvm.assume` calls to preserve align attributes
105         // during inlining. Unfortunately these may block other optimizations.
106         add("-preserve-alignment-assumptions-during-inlining=false", false);
107
108         for arg in sess_args {
109             add(&(*arg), true);
110         }
111     }
112
113     if sess.opts.debugging_opts.llvm_time_trace && get_major_version() >= 9 {
114         // time-trace is not thread safe and running it in parallel will cause seg faults.
115         if !sess.opts.debugging_opts.no_parallel_llvm {
116             bug!("`-Z llvm-time-trace` requires `-Z no-parallel-llvm")
117         }
118
119         llvm::LLVMTimeTraceProfilerInitialize();
120     }
121
122     llvm::LLVMInitializePasses();
123
124     ::rustc_llvm::initialize_available_targets();
125
126     llvm::LLVMRustSetLLVMOptions(llvm_args.len() as c_int, llvm_args.as_ptr());
127 }
128
129 pub fn time_trace_profiler_finish(file_name: &str) {
130     unsafe {
131         if get_major_version() >= 9 {
132             let file_name = CString::new(file_name).unwrap();
133             llvm::LLVMTimeTraceProfilerFinish(file_name.as_ptr());
134         }
135     }
136 }
137
138 // WARNING: the features after applying `to_llvm_feature` must be known
139 // to LLVM or the feature detection code will walk past the end of the feature
140 // array, leading to crashes.
141
142 const ARM_WHITELIST: &[(&str, Option<Symbol>)] = &[
143     ("aclass", Some(sym::arm_target_feature)),
144     ("mclass", Some(sym::arm_target_feature)),
145     ("rclass", Some(sym::arm_target_feature)),
146     ("dsp", Some(sym::arm_target_feature)),
147     ("neon", Some(sym::arm_target_feature)),
148     ("crc", Some(sym::arm_target_feature)),
149     ("crypto", Some(sym::arm_target_feature)),
150     ("v5te", Some(sym::arm_target_feature)),
151     ("v6", Some(sym::arm_target_feature)),
152     ("v6k", Some(sym::arm_target_feature)),
153     ("v6t2", Some(sym::arm_target_feature)),
154     ("v7", Some(sym::arm_target_feature)),
155     ("v8", Some(sym::arm_target_feature)),
156     ("vfp2", Some(sym::arm_target_feature)),
157     ("vfp3", Some(sym::arm_target_feature)),
158     ("vfp4", Some(sym::arm_target_feature)),
159     // This is needed for inline assembly, but shouldn't be stabilized as-is
160     // since it should be enabled per-function using #[instruction_set], not
161     // #[target_feature].
162     ("thumb-mode", Some(sym::arm_target_feature)),
163 ];
164
165 const AARCH64_WHITELIST: &[(&str, Option<Symbol>)] = &[
166     ("fp", Some(sym::aarch64_target_feature)),
167     ("neon", Some(sym::aarch64_target_feature)),
168     ("sve", Some(sym::aarch64_target_feature)),
169     ("crc", Some(sym::aarch64_target_feature)),
170     ("crypto", Some(sym::aarch64_target_feature)),
171     ("ras", Some(sym::aarch64_target_feature)),
172     ("lse", Some(sym::aarch64_target_feature)),
173     ("rdm", Some(sym::aarch64_target_feature)),
174     ("fp16", Some(sym::aarch64_target_feature)),
175     ("rcpc", Some(sym::aarch64_target_feature)),
176     ("dotprod", Some(sym::aarch64_target_feature)),
177     ("tme", Some(sym::aarch64_target_feature)),
178     ("v8.1a", Some(sym::aarch64_target_feature)),
179     ("v8.2a", Some(sym::aarch64_target_feature)),
180     ("v8.3a", Some(sym::aarch64_target_feature)),
181 ];
182
183 const X86_WHITELIST: &[(&str, Option<Symbol>)] = &[
184     ("adx", Some(sym::adx_target_feature)),
185     ("aes", None),
186     ("avx", None),
187     ("avx2", None),
188     ("avx512bw", Some(sym::avx512_target_feature)),
189     ("avx512cd", Some(sym::avx512_target_feature)),
190     ("avx512dq", Some(sym::avx512_target_feature)),
191     ("avx512er", Some(sym::avx512_target_feature)),
192     ("avx512f", Some(sym::avx512_target_feature)),
193     ("avx512ifma", Some(sym::avx512_target_feature)),
194     ("avx512pf", Some(sym::avx512_target_feature)),
195     ("avx512vbmi", Some(sym::avx512_target_feature)),
196     ("avx512vl", Some(sym::avx512_target_feature)),
197     ("avx512vpopcntdq", Some(sym::avx512_target_feature)),
198     ("bmi1", None),
199     ("bmi2", None),
200     ("cmpxchg16b", Some(sym::cmpxchg16b_target_feature)),
201     ("f16c", Some(sym::f16c_target_feature)),
202     ("fma", None),
203     ("fxsr", None),
204     ("lzcnt", None),
205     ("mmx", Some(sym::mmx_target_feature)),
206     ("movbe", Some(sym::movbe_target_feature)),
207     ("pclmulqdq", None),
208     ("popcnt", None),
209     ("rdrand", None),
210     ("rdseed", None),
211     ("rtm", Some(sym::rtm_target_feature)),
212     ("sha", None),
213     ("sse", None),
214     ("sse2", None),
215     ("sse3", None),
216     ("sse4.1", None),
217     ("sse4.2", None),
218     ("sse4a", Some(sym::sse4a_target_feature)),
219     ("ssse3", None),
220     ("tbm", Some(sym::tbm_target_feature)),
221     ("xsave", None),
222     ("xsavec", None),
223     ("xsaveopt", None),
224     ("xsaves", None),
225 ];
226
227 const HEXAGON_WHITELIST: &[(&str, Option<Symbol>)] = &[
228     ("hvx", Some(sym::hexagon_target_feature)),
229     ("hvx-length128b", Some(sym::hexagon_target_feature)),
230 ];
231
232 const POWERPC_WHITELIST: &[(&str, Option<Symbol>)] = &[
233     ("altivec", Some(sym::powerpc_target_feature)),
234     ("power8-altivec", Some(sym::powerpc_target_feature)),
235     ("power9-altivec", Some(sym::powerpc_target_feature)),
236     ("power8-vector", Some(sym::powerpc_target_feature)),
237     ("power9-vector", Some(sym::powerpc_target_feature)),
238     ("vsx", Some(sym::powerpc_target_feature)),
239 ];
240
241 const MIPS_WHITELIST: &[(&str, Option<Symbol>)] =
242     &[("fp64", Some(sym::mips_target_feature)), ("msa", Some(sym::mips_target_feature))];
243
244 const RISCV_WHITELIST: &[(&str, Option<Symbol>)] = &[
245     ("m", Some(sym::riscv_target_feature)),
246     ("a", Some(sym::riscv_target_feature)),
247     ("c", Some(sym::riscv_target_feature)),
248     ("f", Some(sym::riscv_target_feature)),
249     ("d", Some(sym::riscv_target_feature)),
250     ("e", Some(sym::riscv_target_feature)),
251 ];
252
253 const WASM_WHITELIST: &[(&str, Option<Symbol>)] = &[
254     ("simd128", Some(sym::wasm_target_feature)),
255     ("atomics", Some(sym::wasm_target_feature)),
256     ("nontrapping-fptoint", Some(sym::wasm_target_feature)),
257 ];
258
259 /// When rustdoc is running, provide a list of all known features so that all their respective
260 /// primitives may be documented.
261 ///
262 /// IMPORTANT: If you're adding another whitelist to the above lists, make sure to add it to this
263 /// iterator!
264 pub fn all_known_features() -> impl Iterator<Item = (&'static str, Option<Symbol>)> {
265     ARM_WHITELIST
266         .iter()
267         .cloned()
268         .chain(AARCH64_WHITELIST.iter().cloned())
269         .chain(X86_WHITELIST.iter().cloned())
270         .chain(HEXAGON_WHITELIST.iter().cloned())
271         .chain(POWERPC_WHITELIST.iter().cloned())
272         .chain(MIPS_WHITELIST.iter().cloned())
273         .chain(RISCV_WHITELIST.iter().cloned())
274         .chain(WASM_WHITELIST.iter().cloned())
275 }
276
277 pub fn to_llvm_feature<'a>(sess: &Session, s: &'a str) -> &'a str {
278     let arch = if sess.target.target.arch == "x86_64" { "x86" } else { &*sess.target.target.arch };
279     match (arch, s) {
280         ("x86", "pclmulqdq") => "pclmul",
281         ("x86", "rdrand") => "rdrnd",
282         ("x86", "bmi1") => "bmi",
283         ("x86", "cmpxchg16b") => "cx16",
284         ("aarch64", "fp") => "fp-armv8",
285         ("aarch64", "fp16") => "fullfp16",
286         (_, s) => s,
287     }
288 }
289
290 pub fn target_features(sess: &Session) -> Vec<Symbol> {
291     let target_machine = create_informational_target_machine(sess);
292     target_feature_whitelist(sess)
293         .iter()
294         .filter_map(|&(feature, gate)| {
295             if UnstableFeatures::from_environment().is_nightly_build() || gate.is_none() {
296                 Some(feature)
297             } else {
298                 None
299             }
300         })
301         .filter(|feature| {
302             let llvm_feature = to_llvm_feature(sess, feature);
303             let cstr = CString::new(llvm_feature).unwrap();
304             unsafe { llvm::LLVMRustHasFeature(target_machine, cstr.as_ptr()) }
305         })
306         .map(|feature| Symbol::intern(feature))
307         .collect()
308 }
309
310 pub fn target_feature_whitelist(sess: &Session) -> &'static [(&'static str, Option<Symbol>)] {
311     match &*sess.target.target.arch {
312         "arm" => ARM_WHITELIST,
313         "aarch64" => AARCH64_WHITELIST,
314         "x86" | "x86_64" => X86_WHITELIST,
315         "hexagon" => HEXAGON_WHITELIST,
316         "mips" | "mips64" => MIPS_WHITELIST,
317         "powerpc" | "powerpc64" => POWERPC_WHITELIST,
318         "riscv32" | "riscv64" => RISCV_WHITELIST,
319         "wasm32" => WASM_WHITELIST,
320         _ => &[],
321     }
322 }
323
324 pub fn print_version() {
325     // Can be called without initializing LLVM
326     unsafe {
327         println!("LLVM version: {}.{}", llvm::LLVMRustVersionMajor(), llvm::LLVMRustVersionMinor());
328     }
329 }
330
331 pub fn get_major_version() -> u32 {
332     unsafe { llvm::LLVMRustVersionMajor() }
333 }
334
335 pub fn print_passes() {
336     // Can be called without initializing LLVM
337     unsafe {
338         llvm::LLVMRustPrintPasses();
339     }
340 }
341
342 pub(crate) fn print(req: PrintRequest, sess: &Session) {
343     require_inited();
344     let tm = create_informational_target_machine(sess);
345     unsafe {
346         match req {
347             PrintRequest::TargetCPUs => llvm::LLVMRustPrintTargetCPUs(tm),
348             PrintRequest::TargetFeatures => llvm::LLVMRustPrintTargetFeatures(tm),
349             _ => bug!("rustc_codegen_llvm can't handle print request: {:?}", req),
350         }
351     }
352 }
353
354 pub fn target_cpu(sess: &Session) -> &str {
355     let name = match sess.opts.cg.target_cpu {
356         Some(ref s) => &**s,
357         None => &*sess.target.target.options.cpu,
358     };
359     if name != "native" {
360         return name;
361     }
362
363     unsafe {
364         let mut len = 0;
365         let ptr = llvm::LLVMRustGetHostCPUName(&mut len);
366         str::from_utf8(slice::from_raw_parts(ptr as *const u8, len)).unwrap()
367     }
368 }