]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/llvm_util.rs
Fix checking for missing stability annotations
[rust.git] / src / librustc_trans / llvm_util.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use syntax_pos::symbol::Symbol;
12 use back::write::create_target_machine;
13 use llvm;
14 use rustc::session::Session;
15 use rustc::session::config::PrintRequest;
16 use libc::{c_int, c_char};
17 use std::ffi::CString;
18
19 use std::sync::atomic::{AtomicBool, Ordering};
20 use std::sync::Once;
21
22 pub fn init(sess: &Session) {
23     unsafe {
24         // Before we touch LLVM, make sure that multithreading is enabled.
25         static POISONED: AtomicBool = AtomicBool::new(false);
26         static INIT: Once = Once::new();
27         INIT.call_once(|| {
28             if llvm::LLVMStartMultithreaded() != 1 {
29                 // use an extra bool to make sure that all future usage of LLVM
30                 // cannot proceed despite the Once not running more than once.
31                 POISONED.store(true, Ordering::SeqCst);
32             }
33
34             configure_llvm(sess);
35         });
36
37         if POISONED.load(Ordering::SeqCst) {
38             bug!("couldn't enable multi-threaded LLVM");
39         }
40     }
41 }
42
43 unsafe fn configure_llvm(sess: &Session) {
44     let mut llvm_c_strs = Vec::new();
45     let mut llvm_args = Vec::new();
46
47     {
48         let mut add = |arg: &str| {
49             let s = CString::new(arg).unwrap();
50             llvm_args.push(s.as_ptr());
51             llvm_c_strs.push(s);
52         };
53         add("rustc"); // fake program name
54         if sess.time_llvm_passes() { add("-time-passes"); }
55         if sess.print_llvm_passes() { add("-debug-pass=Structure"); }
56
57         for arg in &sess.opts.cg.llvm_args {
58             add(&(*arg));
59         }
60     }
61
62     llvm::LLVMInitializePasses();
63
64     llvm::initialize_available_targets();
65
66     llvm::LLVMRustSetLLVMOptions(llvm_args.len() as c_int,
67                                  llvm_args.as_ptr());
68 }
69
70 // WARNING: the features must be known to LLVM or the feature
71 // detection code will walk past the end of the feature array,
72 // leading to crashes.
73
74 const ARM_WHITELIST: &'static [&'static str] = &["neon\0", "vfp2\0", "vfp3\0", "vfp4\0"];
75
76 const X86_WHITELIST: &'static [&'static str] = &["avx\0", "avx2\0", "bmi\0", "bmi2\0", "sse\0",
77                                                  "sse2\0", "sse3\0", "sse4.1\0", "sse4.2\0",
78                                                  "ssse3\0", "tbm\0", "lzcnt\0", "popcnt\0",
79                                                  "sse4a\0", "rdrnd\0", "rdseed\0", "fma\0"];
80
81 const HEXAGON_WHITELIST: &'static [&'static str] = &["hvx\0", "hvx-double\0"];
82
83 pub fn target_features(sess: &Session) -> Vec<Symbol> {
84     let target_machine = create_target_machine(sess);
85
86     let whitelist = match &*sess.target.target.arch {
87         "arm" => ARM_WHITELIST,
88         "x86" | "x86_64" => X86_WHITELIST,
89         "hexagon" => HEXAGON_WHITELIST,
90         _ => &[],
91     };
92
93     let mut features = Vec::new();
94     for feat in whitelist {
95         assert_eq!(feat.chars().last(), Some('\0'));
96         if unsafe { llvm::LLVMRustHasFeature(target_machine, feat.as_ptr() as *const c_char) } {
97             features.push(Symbol::intern(&feat[..feat.len() - 1]));
98         }
99     }
100     features
101 }
102
103 pub fn print_version() {
104     unsafe {
105         println!("LLVM version: {}.{}",
106                  llvm::LLVMRustVersionMajor(), llvm::LLVMRustVersionMinor());
107     }
108 }
109
110 pub fn print_passes() {
111     unsafe { llvm::LLVMRustPrintPasses(); }
112 }
113
114 pub fn print(req: PrintRequest, sess: &Session) {
115     let tm = create_target_machine(sess);
116     unsafe {
117         match req {
118             PrintRequest::TargetCPUs => llvm::LLVMRustPrintTargetCPUs(tm),
119             PrintRequest::TargetFeatures => llvm::LLVMRustPrintTargetFeatures(tm),
120             _ => bug!("rustc_trans can't handle print request: {:?}", req),
121         }
122     }
123 }
124
125 pub fn enable_llvm_debug() {
126     unsafe { llvm::LLVMRustSetDebug(1); }
127 }