]> git.lizzy.rs Git - rust.git/blob - src/librustc/back/link.rs
auto merge of #14481 : alexcrichton/rust/no-format-strbuf, r=sfackler
[rust.git] / src / librustc / back / link.rs
1 // Copyright 2012-2014 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 back::archive::{Archive, METADATA_FILENAME};
12 use back::rpath;
13 use back::svh::Svh;
14 use driver::driver::{CrateTranslation, OutputFilenames};
15 use driver::config::NoDebugInfo;
16 use driver::session::Session;
17 use driver::config;
18 use lib::llvm::llvm;
19 use lib::llvm::ModuleRef;
20 use lib;
21 use metadata::common::LinkMeta;
22 use metadata::{encoder, cstore, filesearch, csearch, loader};
23 use middle::trans::context::CrateContext;
24 use middle::trans::common::gensym_name;
25 use middle::ty;
26 use util::common::time;
27 use util::ppaux;
28 use util::sha2::{Digest, Sha256};
29
30 use std::c_str::{ToCStr, CString};
31 use std::char;
32 use std::io::{fs, TempDir, Command};
33 use std::io;
34 use std::ptr;
35 use std::str;
36 use std::string::String;
37 use flate;
38 use serialize::hex::ToHex;
39 use syntax::abi;
40 use syntax::ast;
41 use syntax::ast_map::{PathElem, PathElems, PathName};
42 use syntax::ast_map;
43 use syntax::attr;
44 use syntax::attr::AttrMetaMethods;
45 use syntax::crateid::CrateId;
46 use syntax::parse::token;
47
48 #[deriving(Clone, Eq, Ord, TotalOrd, TotalEq)]
49 pub enum OutputType {
50     OutputTypeBitcode,
51     OutputTypeAssembly,
52     OutputTypeLlvmAssembly,
53     OutputTypeObject,
54     OutputTypeExe,
55 }
56
57 pub fn llvm_err(sess: &Session, msg: String) -> ! {
58     unsafe {
59         let cstr = llvm::LLVMRustGetLastError();
60         if cstr == ptr::null() {
61             sess.fatal(msg.as_slice());
62         } else {
63             let err = CString::new(cstr, true);
64             let err = str::from_utf8_lossy(err.as_bytes());
65             sess.fatal(format!("{}: {}",
66                                msg.as_slice(),
67                                err.as_slice()).as_slice());
68         }
69     }
70 }
71
72 pub fn WriteOutputFile(
73         sess: &Session,
74         target: lib::llvm::TargetMachineRef,
75         pm: lib::llvm::PassManagerRef,
76         m: ModuleRef,
77         output: &Path,
78         file_type: lib::llvm::FileType) {
79     unsafe {
80         output.with_c_str(|output| {
81             let result = llvm::LLVMRustWriteOutputFile(
82                     target, pm, m, output, file_type);
83             if !result {
84                 llvm_err(sess, "could not write output".to_string());
85             }
86         })
87     }
88 }
89
90 pub mod write {
91
92     use back::lto;
93     use back::link::{WriteOutputFile, OutputType};
94     use back::link::{OutputTypeAssembly, OutputTypeBitcode};
95     use back::link::{OutputTypeExe, OutputTypeLlvmAssembly};
96     use back::link::{OutputTypeObject};
97     use driver::driver::{CrateTranslation, OutputFilenames};
98     use driver::config::NoDebugInfo;
99     use driver::session::Session;
100     use driver::config;
101     use lib::llvm::llvm;
102     use lib::llvm::{ModuleRef, TargetMachineRef, PassManagerRef};
103     use lib;
104     use util::common::time;
105     use syntax::abi;
106
107     use std::c_str::ToCStr;
108     use std::io::{Command};
109     use libc::{c_uint, c_int};
110     use std::str;
111
112     // On android, we by default compile for armv7 processors. This enables
113     // things like double word CAS instructions (rather than emulating them)
114     // which are *far* more efficient. This is obviously undesirable in some
115     // cases, so if any sort of target feature is specified we don't append v7
116     // to the feature list.
117     fn target_feature<'a>(sess: &'a Session) -> &'a str {
118         match sess.targ_cfg.os {
119             abi::OsAndroid => {
120                 if "" == sess.opts.cg.target_feature.as_slice() {
121                     "+v7"
122                 } else {
123                     sess.opts.cg.target_feature.as_slice()
124                 }
125             }
126             _ => sess.opts.cg.target_feature.as_slice()
127         }
128     }
129
130     pub fn run_passes(sess: &Session,
131                       trans: &CrateTranslation,
132                       output_types: &[OutputType],
133                       output: &OutputFilenames) {
134         let llmod = trans.module;
135         let llcx = trans.context;
136         unsafe {
137             configure_llvm(sess);
138
139             if sess.opts.cg.save_temps {
140                 output.with_extension("no-opt.bc").with_c_str(|buf| {
141                     llvm::LLVMWriteBitcodeToFile(llmod, buf);
142                 })
143             }
144
145             let opt_level = match sess.opts.optimize {
146               config::No => lib::llvm::CodeGenLevelNone,
147               config::Less => lib::llvm::CodeGenLevelLess,
148               config::Default => lib::llvm::CodeGenLevelDefault,
149               config::Aggressive => lib::llvm::CodeGenLevelAggressive,
150             };
151             let use_softfp = sess.opts.cg.soft_float;
152
153             // FIXME: #11906: Omitting frame pointers breaks retrieving the value of a parameter.
154             // FIXME: #11954: mac64 unwinding may not work with fp elim
155             let no_fp_elim = (sess.opts.debuginfo != NoDebugInfo) ||
156                              (sess.targ_cfg.os == abi::OsMacos &&
157                               sess.targ_cfg.arch == abi::X86_64);
158
159             // OSX has -dead_strip, which doesn't rely on ffunction_sections
160             // FIXME(#13846) this should be enabled for windows
161             let ffunction_sections = sess.targ_cfg.os != abi::OsMacos &&
162                                      sess.targ_cfg.os != abi::OsWin32;
163             let fdata_sections = ffunction_sections;
164
165             let reloc_model = match sess.opts.cg.relocation_model.as_slice() {
166                 "pic" => lib::llvm::RelocPIC,
167                 "static" => lib::llvm::RelocStatic,
168                 "default" => lib::llvm::RelocDefault,
169                 "dynamic-no-pic" => lib::llvm::RelocDynamicNoPic,
170                 _ => {
171                     sess.err(format!("{} is not a valid relocation mode",
172                                      sess.opts
173                                          .cg
174                                          .relocation_model).as_slice());
175                     sess.abort_if_errors();
176                     return;
177                 }
178             };
179
180             let tm = sess.targ_cfg
181                          .target_strs
182                          .target_triple
183                          .as_slice()
184                          .with_c_str(|t| {
185                 sess.opts.cg.target_cpu.as_slice().with_c_str(|cpu| {
186                     target_feature(sess).with_c_str(|features| {
187                         llvm::LLVMRustCreateTargetMachine(
188                             t, cpu, features,
189                             lib::llvm::CodeModelDefault,
190                             reloc_model,
191                             opt_level,
192                             true /* EnableSegstk */,
193                             use_softfp,
194                             no_fp_elim,
195                             ffunction_sections,
196                             fdata_sections,
197                         )
198                     })
199                 })
200             });
201
202             // Create the two optimizing pass managers. These mirror what clang
203             // does, and are by populated by LLVM's default PassManagerBuilder.
204             // Each manager has a different set of passes, but they also share
205             // some common passes.
206             let fpm = llvm::LLVMCreateFunctionPassManagerForModule(llmod);
207             let mpm = llvm::LLVMCreatePassManager();
208
209             // If we're verifying or linting, add them to the function pass
210             // manager.
211             let addpass = |pass: &str| {
212                 pass.as_slice().with_c_str(|s| llvm::LLVMRustAddPass(fpm, s))
213             };
214             if !sess.no_verify() { assert!(addpass("verify")); }
215
216             if !sess.opts.cg.no_prepopulate_passes {
217                 llvm::LLVMRustAddAnalysisPasses(tm, fpm, llmod);
218                 llvm::LLVMRustAddAnalysisPasses(tm, mpm, llmod);
219                 populate_llvm_passes(fpm, mpm, llmod, opt_level,
220                                      trans.no_builtins);
221             }
222
223             for pass in sess.opts.cg.passes.iter() {
224                 pass.as_slice().with_c_str(|s| {
225                     if !llvm::LLVMRustAddPass(mpm, s) {
226                         sess.warn(format!("unknown pass {}, ignoring",
227                                           *pass).as_slice());
228                     }
229                 })
230             }
231
232             // Finally, run the actual optimization passes
233             time(sess.time_passes(), "llvm function passes", (), |()|
234                  llvm::LLVMRustRunFunctionPassManager(fpm, llmod));
235             time(sess.time_passes(), "llvm module passes", (), |()|
236                  llvm::LLVMRunPassManager(mpm, llmod));
237
238             // Deallocate managers that we're now done with
239             llvm::LLVMDisposePassManager(fpm);
240             llvm::LLVMDisposePassManager(mpm);
241
242             // Emit the bytecode if we're either saving our temporaries or
243             // emitting an rlib. Whenever an rlib is created, the bytecode is
244             // inserted into the archive in order to allow LTO against it.
245             if sess.opts.cg.save_temps ||
246                (sess.crate_types.borrow().contains(&config::CrateTypeRlib) &&
247                 sess.opts.output_types.contains(&OutputTypeExe)) {
248                 output.temp_path(OutputTypeBitcode).with_c_str(|buf| {
249                     llvm::LLVMWriteBitcodeToFile(llmod, buf);
250                 })
251             }
252
253             if sess.lto() {
254                 time(sess.time_passes(), "all lto passes", (), |()|
255                      lto::run(sess, llmod, tm, trans.reachable.as_slice()));
256
257                 if sess.opts.cg.save_temps {
258                     output.with_extension("lto.bc").with_c_str(|buf| {
259                         llvm::LLVMWriteBitcodeToFile(llmod, buf);
260                     })
261                 }
262             }
263
264             // A codegen-specific pass manager is used to generate object
265             // files for an LLVM module.
266             //
267             // Apparently each of these pass managers is a one-shot kind of
268             // thing, so we create a new one for each type of output. The
269             // pass manager passed to the closure should be ensured to not
270             // escape the closure itself, and the manager should only be
271             // used once.
272             fn with_codegen(tm: TargetMachineRef, llmod: ModuleRef,
273                             no_builtins: bool, f: |PassManagerRef|) {
274                 unsafe {
275                     let cpm = llvm::LLVMCreatePassManager();
276                     llvm::LLVMRustAddAnalysisPasses(tm, cpm, llmod);
277                     llvm::LLVMRustAddLibraryInfo(cpm, llmod, no_builtins);
278                     f(cpm);
279                     llvm::LLVMDisposePassManager(cpm);
280                 }
281             }
282
283             let mut object_file = None;
284             let mut needs_metadata = false;
285             for output_type in output_types.iter() {
286                 let path = output.path(*output_type);
287                 match *output_type {
288                     OutputTypeBitcode => {
289                         path.with_c_str(|buf| {
290                             llvm::LLVMWriteBitcodeToFile(llmod, buf);
291                         })
292                     }
293                     OutputTypeLlvmAssembly => {
294                         path.with_c_str(|output| {
295                             with_codegen(tm, llmod, trans.no_builtins, |cpm| {
296                                 llvm::LLVMRustPrintModule(cpm, llmod, output);
297                             })
298                         })
299                     }
300                     OutputTypeAssembly => {
301                         // If we're not using the LLVM assembler, this function
302                         // could be invoked specially with output_type_assembly,
303                         // so in this case we still want the metadata object
304                         // file.
305                         let ty = OutputTypeAssembly;
306                         let path = if sess.opts.output_types.contains(&ty) {
307                            path
308                         } else {
309                             needs_metadata = true;
310                             output.temp_path(OutputTypeAssembly)
311                         };
312                         with_codegen(tm, llmod, trans.no_builtins, |cpm| {
313                             WriteOutputFile(sess, tm, cpm, llmod, &path,
314                                             lib::llvm::AssemblyFile);
315                         });
316                     }
317                     OutputTypeObject => {
318                         object_file = Some(path);
319                     }
320                     OutputTypeExe => {
321                         object_file = Some(output.temp_path(OutputTypeObject));
322                         needs_metadata = true;
323                     }
324                 }
325             }
326
327             time(sess.time_passes(), "codegen passes", (), |()| {
328                 match object_file {
329                     Some(ref path) => {
330                         with_codegen(tm, llmod, trans.no_builtins, |cpm| {
331                             WriteOutputFile(sess, tm, cpm, llmod, path,
332                                             lib::llvm::ObjectFile);
333                         });
334                     }
335                     None => {}
336                 }
337                 if needs_metadata {
338                     with_codegen(tm, trans.metadata_module,
339                                  trans.no_builtins, |cpm| {
340                         let out = output.temp_path(OutputTypeObject)
341                                         .with_extension("metadata.o");
342                         WriteOutputFile(sess, tm, cpm,
343                                         trans.metadata_module, &out,
344                                         lib::llvm::ObjectFile);
345                     })
346                 }
347             });
348
349             llvm::LLVMRustDisposeTargetMachine(tm);
350             llvm::LLVMDisposeModule(trans.metadata_module);
351             llvm::LLVMDisposeModule(llmod);
352             llvm::LLVMContextDispose(llcx);
353             if sess.time_llvm_passes() { llvm::LLVMRustPrintPassTimings(); }
354         }
355     }
356
357     pub fn run_assembler(sess: &Session, outputs: &OutputFilenames) {
358         let pname = super::get_cc_prog(sess);
359         let mut cmd = Command::new(pname.as_slice());
360
361         cmd.arg("-c").arg("-o").arg(outputs.path(OutputTypeObject))
362                                .arg(outputs.temp_path(OutputTypeAssembly));
363         debug!("{}", &cmd);
364
365         match cmd.output() {
366             Ok(prog) => {
367                 if !prog.status.success() {
368                     sess.err(format!("linking with `{}` failed: {}",
369                                      pname,
370                                      prog.status).as_slice());
371                     sess.note(format!("{}", &cmd).as_slice());
372                     let mut note = prog.error.clone();
373                     note.push_all(prog.output.as_slice());
374                     sess.note(str::from_utf8(note.as_slice()).unwrap()
375                                                              .as_slice());
376                     sess.abort_if_errors();
377                 }
378             },
379             Err(e) => {
380                 sess.err(format!("could not exec the linker `{}`: {}",
381                                  pname,
382                                  e).as_slice());
383                 sess.abort_if_errors();
384             }
385         }
386     }
387
388     unsafe fn configure_llvm(sess: &Session) {
389         use sync::one::{Once, ONCE_INIT};
390         static mut INIT: Once = ONCE_INIT;
391
392         // Copy what clang does by turning on loop vectorization at O2 and
393         // slp vectorization at O3
394         let vectorize_loop = !sess.opts.cg.no_vectorize_loops &&
395                              (sess.opts.optimize == config::Default ||
396                               sess.opts.optimize == config::Aggressive);
397         let vectorize_slp = !sess.opts.cg.no_vectorize_slp &&
398                             sess.opts.optimize == config::Aggressive;
399
400         let mut llvm_c_strs = Vec::new();
401         let mut llvm_args = Vec::new();
402         {
403             let add = |arg: &str| {
404                 let s = arg.to_c_str();
405                 llvm_args.push(s.with_ref(|p| p));
406                 llvm_c_strs.push(s);
407             };
408             add("rustc"); // fake program name
409             if vectorize_loop { add("-vectorize-loops"); }
410             if vectorize_slp  { add("-vectorize-slp");   }
411             if sess.time_llvm_passes() { add("-time-passes"); }
412             if sess.print_llvm_passes() { add("-debug-pass=Structure"); }
413
414             for arg in sess.opts.cg.llvm_args.iter() {
415                 add((*arg).as_slice());
416             }
417         }
418
419         INIT.doit(|| {
420             llvm::LLVMInitializePasses();
421
422             // Only initialize the platforms supported by Rust here, because
423             // using --llvm-root will have multiple platforms that rustllvm
424             // doesn't actually link to and it's pointless to put target info
425             // into the registry that Rust cannot generate machine code for.
426             llvm::LLVMInitializeX86TargetInfo();
427             llvm::LLVMInitializeX86Target();
428             llvm::LLVMInitializeX86TargetMC();
429             llvm::LLVMInitializeX86AsmPrinter();
430             llvm::LLVMInitializeX86AsmParser();
431
432             llvm::LLVMInitializeARMTargetInfo();
433             llvm::LLVMInitializeARMTarget();
434             llvm::LLVMInitializeARMTargetMC();
435             llvm::LLVMInitializeARMAsmPrinter();
436             llvm::LLVMInitializeARMAsmParser();
437
438             llvm::LLVMInitializeMipsTargetInfo();
439             llvm::LLVMInitializeMipsTarget();
440             llvm::LLVMInitializeMipsTargetMC();
441             llvm::LLVMInitializeMipsAsmPrinter();
442             llvm::LLVMInitializeMipsAsmParser();
443
444             llvm::LLVMRustSetLLVMOptions(llvm_args.len() as c_int,
445                                          llvm_args.as_ptr());
446         });
447     }
448
449     unsafe fn populate_llvm_passes(fpm: lib::llvm::PassManagerRef,
450                                    mpm: lib::llvm::PassManagerRef,
451                                    llmod: ModuleRef,
452                                    opt: lib::llvm::CodeGenOptLevel,
453                                    no_builtins: bool) {
454         // Create the PassManagerBuilder for LLVM. We configure it with
455         // reasonable defaults and prepare it to actually populate the pass
456         // manager.
457         let builder = llvm::LLVMPassManagerBuilderCreate();
458         match opt {
459             lib::llvm::CodeGenLevelNone => {
460                 // Don't add lifetime intrinsics at O0
461                 llvm::LLVMRustAddAlwaysInlinePass(builder, false);
462             }
463             lib::llvm::CodeGenLevelLess => {
464                 llvm::LLVMRustAddAlwaysInlinePass(builder, true);
465             }
466             // numeric values copied from clang
467             lib::llvm::CodeGenLevelDefault => {
468                 llvm::LLVMPassManagerBuilderUseInlinerWithThreshold(builder,
469                                                                     225);
470             }
471             lib::llvm::CodeGenLevelAggressive => {
472                 llvm::LLVMPassManagerBuilderUseInlinerWithThreshold(builder,
473                                                                     275);
474             }
475         }
476         llvm::LLVMPassManagerBuilderSetOptLevel(builder, opt as c_uint);
477         llvm::LLVMRustAddBuilderLibraryInfo(builder, llmod, no_builtins);
478
479         // Use the builder to populate the function/module pass managers.
480         llvm::LLVMPassManagerBuilderPopulateFunctionPassManager(builder, fpm);
481         llvm::LLVMPassManagerBuilderPopulateModulePassManager(builder, mpm);
482         llvm::LLVMPassManagerBuilderDispose(builder);
483     }
484 }
485
486
487 /*
488  * Name mangling and its relationship to metadata. This is complex. Read
489  * carefully.
490  *
491  * The semantic model of Rust linkage is, broadly, that "there's no global
492  * namespace" between crates. Our aim is to preserve the illusion of this
493  * model despite the fact that it's not *quite* possible to implement on
494  * modern linkers. We initially didn't use system linkers at all, but have
495  * been convinced of their utility.
496  *
497  * There are a few issues to handle:
498  *
499  *  - Linkers operate on a flat namespace, so we have to flatten names.
500  *    We do this using the C++ namespace-mangling technique. Foo::bar
501  *    symbols and such.
502  *
503  *  - Symbols with the same name but different types need to get different
504  *    linkage-names. We do this by hashing a string-encoding of the type into
505  *    a fixed-size (currently 16-byte hex) cryptographic hash function (CHF:
506  *    we use SHA256) to "prevent collisions". This is not airtight but 16 hex
507  *    digits on uniform probability means you're going to need 2**32 same-name
508  *    symbols in the same process before you're even hitting birthday-paradox
509  *    collision probability.
510  *
511  *  - Symbols in different crates but with same names "within" the crate need
512  *    to get different linkage-names.
513  *
514  *  - The hash shown in the filename needs to be predictable and stable for
515  *    build tooling integration. It also needs to be using a hash function
516  *    which is easy to use from Python, make, etc.
517  *
518  * So here is what we do:
519  *
520  *  - Consider the package id; every crate has one (specified with crate_id
521  *    attribute).  If a package id isn't provided explicitly, we infer a
522  *    versionless one from the output name. The version will end up being 0.0
523  *    in this case. CNAME and CVERS are taken from this package id. For
524  *    example, github.com/mozilla/CNAME#CVERS.
525  *
526  *  - Define CMH as SHA256(crateid).
527  *
528  *  - Define CMH8 as the first 8 characters of CMH.
529  *
530  *  - Compile our crate to lib CNAME-CMH8-CVERS.so
531  *
532  *  - Define STH(sym) as SHA256(CMH, type_str(sym))
533  *
534  *  - Suffix a mangled sym with ::STH@CVERS, so that it is unique in the
535  *    name, non-name metadata, and type sense, and versioned in the way
536  *    system linkers understand.
537  */
538
539 // FIXME (#9639): This needs to handle non-utf8 `out_filestem` values
540 pub fn find_crate_id(attrs: &[ast::Attribute], out_filestem: &str) -> CrateId {
541     match attr::find_crateid(attrs) {
542         None => from_str(out_filestem).unwrap_or_else(|| {
543             let mut s = out_filestem.chars().filter(|c| c.is_XID_continue());
544             from_str(s.collect::<String>().as_slice())
545                 .or(from_str("rust-out")).unwrap()
546         }),
547         Some(s) => s,
548     }
549 }
550
551 pub fn crate_id_hash(crate_id: &CrateId) -> String {
552     // This calculates CMH as defined above. Note that we don't use the path of
553     // the crate id in the hash because lookups are only done by (name/vers),
554     // not by path.
555     let mut s = Sha256::new();
556     s.input_str(crate_id.short_name_with_version().as_slice());
557     truncated_hash_result(&mut s).as_slice().slice_to(8).to_string()
558 }
559
560 // FIXME (#9639): This needs to handle non-utf8 `out_filestem` values
561 pub fn build_link_meta(krate: &ast::Crate, out_filestem: &str) -> LinkMeta {
562     let r = LinkMeta {
563         crateid: find_crate_id(krate.attrs.as_slice(), out_filestem),
564         crate_hash: Svh::calculate(krate),
565     };
566     info!("{}", r);
567     return r;
568 }
569
570 fn truncated_hash_result(symbol_hasher: &mut Sha256) -> String {
571     let output = symbol_hasher.result_bytes();
572     // 64 bits should be enough to avoid collisions.
573     output.slice_to(8).to_hex().to_string()
574 }
575
576
577 // This calculates STH for a symbol, as defined above
578 fn symbol_hash(tcx: &ty::ctxt,
579                symbol_hasher: &mut Sha256,
580                t: ty::t,
581                link_meta: &LinkMeta)
582                -> String {
583     // NB: do *not* use abbrevs here as we want the symbol names
584     // to be independent of one another in the crate.
585
586     symbol_hasher.reset();
587     symbol_hasher.input_str(link_meta.crateid.name.as_slice());
588     symbol_hasher.input_str("-");
589     symbol_hasher.input_str(link_meta.crate_hash.as_str());
590     symbol_hasher.input_str("-");
591     symbol_hasher.input_str(encoder::encoded_ty(tcx, t).as_slice());
592     // Prefix with 'h' so that it never blends into adjacent digits
593     let mut hash = String::from_str("h");
594     hash.push_str(truncated_hash_result(symbol_hasher).as_slice());
595     hash
596 }
597
598 fn get_symbol_hash(ccx: &CrateContext, t: ty::t) -> String {
599     match ccx.type_hashcodes.borrow().find(&t) {
600         Some(h) => return h.to_string(),
601         None => {}
602     }
603
604     let mut symbol_hasher = ccx.symbol_hasher.borrow_mut();
605     let hash = symbol_hash(ccx.tcx(), &mut *symbol_hasher, t, &ccx.link_meta);
606     ccx.type_hashcodes.borrow_mut().insert(t, hash.clone());
607     hash
608 }
609
610
611 // Name sanitation. LLVM will happily accept identifiers with weird names, but
612 // gas doesn't!
613 // gas accepts the following characters in symbols: a-z, A-Z, 0-9, ., _, $
614 pub fn sanitize(s: &str) -> String {
615     let mut result = String::new();
616     for c in s.chars() {
617         match c {
618             // Escape these with $ sequences
619             '@' => result.push_str("$SP$"),
620             '~' => result.push_str("$UP$"),
621             '*' => result.push_str("$RP$"),
622             '&' => result.push_str("$BP$"),
623             '<' => result.push_str("$LT$"),
624             '>' => result.push_str("$GT$"),
625             '(' => result.push_str("$LP$"),
626             ')' => result.push_str("$RP$"),
627             ',' => result.push_str("$C$"),
628
629             // '.' doesn't occur in types and functions, so reuse it
630             // for ':' and '-'
631             '-' | ':' => result.push_char('.'),
632
633             // These are legal symbols
634             'a' .. 'z'
635             | 'A' .. 'Z'
636             | '0' .. '9'
637             | '_' | '.' | '$' => result.push_char(c),
638
639             _ => {
640                 let mut tstr = String::new();
641                 char::escape_unicode(c, |c| tstr.push_char(c));
642                 result.push_char('$');
643                 result.push_str(tstr.as_slice().slice_from(1));
644             }
645         }
646     }
647
648     // Underscore-qualify anything that didn't start as an ident.
649     if result.len() > 0u &&
650         result.as_slice()[0] != '_' as u8 &&
651         ! char::is_XID_start(result.as_slice()[0] as char) {
652         return format!("_{}", result.as_slice()).to_string();
653     }
654
655     return result;
656 }
657
658 pub fn mangle<PI: Iterator<PathElem>>(mut path: PI,
659                                       hash: Option<&str>,
660                                       vers: Option<&str>) -> String {
661     // Follow C++ namespace-mangling style, see
662     // http://en.wikipedia.org/wiki/Name_mangling for more info.
663     //
664     // It turns out that on OSX you can actually have arbitrary symbols in
665     // function names (at least when given to LLVM), but this is not possible
666     // when using unix's linker. Perhaps one day when we just use a linker from LLVM
667     // we won't need to do this name mangling. The problem with name mangling is
668     // that it seriously limits the available characters. For example we can't
669     // have things like &T or ~[T] in symbol names when one would theoretically
670     // want them for things like impls of traits on that type.
671     //
672     // To be able to work on all platforms and get *some* reasonable output, we
673     // use C++ name-mangling.
674
675     let mut n = String::from_str("_ZN"); // _Z == Begin name-sequence, N == nested
676
677     fn push(n: &mut String, s: &str) {
678         let sani = sanitize(s);
679         n.push_str(format!("{}{}", sani.len(), sani).as_slice());
680     }
681
682     // First, connect each component with <len, name> pairs.
683     for e in path {
684         push(&mut n, token::get_name(e.name()).get().as_slice())
685     }
686
687     match hash {
688         Some(s) => push(&mut n, s),
689         None => {}
690     }
691     match vers {
692         Some(s) => push(&mut n, s),
693         None => {}
694     }
695
696     n.push_char('E'); // End name-sequence.
697     n
698 }
699
700 pub fn exported_name(path: PathElems, hash: &str, vers: &str) -> String {
701     // The version will get mangled to have a leading '_', but it makes more
702     // sense to lead with a 'v' b/c this is a version...
703     let vers = if vers.len() > 0 && !char::is_XID_start(vers.char_at(0)) {
704         format!("v{}", vers)
705     } else {
706         vers.to_string()
707     };
708
709     mangle(path, Some(hash), Some(vers.as_slice()))
710 }
711
712 pub fn mangle_exported_name(ccx: &CrateContext, path: PathElems,
713                             t: ty::t, id: ast::NodeId) -> String {
714     let mut hash = get_symbol_hash(ccx, t);
715
716     // Paths can be completely identical for different nodes,
717     // e.g. `fn foo() { { fn a() {} } { fn a() {} } }`, so we
718     // generate unique characters from the node id. For now
719     // hopefully 3 characters is enough to avoid collisions.
720     static EXTRA_CHARS: &'static str =
721         "abcdefghijklmnopqrstuvwxyz\
722          ABCDEFGHIJKLMNOPQRSTUVWXYZ\
723          0123456789";
724     let id = id as uint;
725     let extra1 = id % EXTRA_CHARS.len();
726     let id = id / EXTRA_CHARS.len();
727     let extra2 = id % EXTRA_CHARS.len();
728     let id = id / EXTRA_CHARS.len();
729     let extra3 = id % EXTRA_CHARS.len();
730     hash.push_char(EXTRA_CHARS[extra1] as char);
731     hash.push_char(EXTRA_CHARS[extra2] as char);
732     hash.push_char(EXTRA_CHARS[extra3] as char);
733
734     exported_name(path,
735                   hash.as_slice(),
736                   ccx.link_meta.crateid.version_or_default())
737 }
738
739 pub fn mangle_internal_name_by_type_and_seq(ccx: &CrateContext,
740                                             t: ty::t,
741                                             name: &str) -> String {
742     let s = ppaux::ty_to_str(ccx.tcx(), t);
743     let path = [PathName(token::intern(s.as_slice())),
744                 gensym_name(name)];
745     let hash = get_symbol_hash(ccx, t);
746     mangle(ast_map::Values(path.iter()), Some(hash.as_slice()), None)
747 }
748
749 pub fn mangle_internal_name_by_path_and_seq(path: PathElems, flav: &str) -> String {
750     mangle(path.chain(Some(gensym_name(flav)).move_iter()), None, None)
751 }
752
753 pub fn output_lib_filename(id: &CrateId) -> String {
754     format!("{}-{}-{}", id.name, crate_id_hash(id), id.version_or_default())
755 }
756
757 pub fn get_cc_prog(sess: &Session) -> String {
758     match sess.opts.cg.linker {
759         Some(ref linker) => return linker.to_string(),
760         None => {}
761     }
762
763     // In the future, FreeBSD will use clang as default compiler.
764     // It would be flexible to use cc (system's default C compiler)
765     // instead of hard-coded gcc.
766     // For win32, there is no cc command, so we add a condition to make it use gcc.
767     match sess.targ_cfg.os {
768         abi::OsWin32 => "gcc",
769         _ => "cc",
770     }.to_string()
771 }
772
773 pub fn get_ar_prog(sess: &Session) -> String {
774     match sess.opts.cg.ar {
775         Some(ref ar) => (*ar).clone(),
776         None => "ar".to_string()
777     }
778 }
779
780 fn remove(sess: &Session, path: &Path) {
781     match fs::unlink(path) {
782         Ok(..) => {}
783         Err(e) => {
784             sess.err(format!("failed to remove {}: {}",
785                              path.display(),
786                              e).as_slice());
787         }
788     }
789 }
790
791 /// Perform the linkage portion of the compilation phase. This will generate all
792 /// of the requested outputs for this compilation session.
793 pub fn link_binary(sess: &Session,
794                    trans: &CrateTranslation,
795                    outputs: &OutputFilenames,
796                    id: &CrateId) -> Vec<Path> {
797     let mut out_filenames = Vec::new();
798     for &crate_type in sess.crate_types.borrow().iter() {
799         let out_file = link_binary_output(sess, trans, crate_type, outputs, id);
800         out_filenames.push(out_file);
801     }
802
803     // Remove the temporary object file and metadata if we aren't saving temps
804     if !sess.opts.cg.save_temps {
805         let obj_filename = outputs.temp_path(OutputTypeObject);
806         if !sess.opts.output_types.contains(&OutputTypeObject) {
807             remove(sess, &obj_filename);
808         }
809         remove(sess, &obj_filename.with_extension("metadata.o"));
810     }
811
812     out_filenames
813 }
814
815 fn is_writeable(p: &Path) -> bool {
816     match p.stat() {
817         Err(..) => true,
818         Ok(m) => m.perm & io::UserWrite == io::UserWrite
819     }
820 }
821
822 pub fn filename_for_input(sess: &Session, crate_type: config::CrateType,
823                           id: &CrateId, out_filename: &Path) -> Path {
824     let libname = output_lib_filename(id);
825     match crate_type {
826         config::CrateTypeRlib => {
827             out_filename.with_filename(format!("lib{}.rlib", libname))
828         }
829         config::CrateTypeDylib => {
830             let (prefix, suffix) = match sess.targ_cfg.os {
831                 abi::OsWin32 => (loader::WIN32_DLL_PREFIX, loader::WIN32_DLL_SUFFIX),
832                 abi::OsMacos => (loader::MACOS_DLL_PREFIX, loader::MACOS_DLL_SUFFIX),
833                 abi::OsLinux => (loader::LINUX_DLL_PREFIX, loader::LINUX_DLL_SUFFIX),
834                 abi::OsAndroid => (loader::ANDROID_DLL_PREFIX, loader::ANDROID_DLL_SUFFIX),
835                 abi::OsFreebsd => (loader::FREEBSD_DLL_PREFIX, loader::FREEBSD_DLL_SUFFIX),
836             };
837             out_filename.with_filename(format!("{}{}{}", prefix, libname,
838                                                suffix))
839         }
840         config::CrateTypeStaticlib => {
841             out_filename.with_filename(format!("lib{}.a", libname))
842         }
843         config::CrateTypeExecutable => out_filename.clone(),
844     }
845 }
846
847 fn link_binary_output(sess: &Session,
848                       trans: &CrateTranslation,
849                       crate_type: config::CrateType,
850                       outputs: &OutputFilenames,
851                       id: &CrateId) -> Path {
852     let obj_filename = outputs.temp_path(OutputTypeObject);
853     let out_filename = match outputs.single_output_file {
854         Some(ref file) => file.clone(),
855         None => {
856             let out_filename = outputs.path(OutputTypeExe);
857             filename_for_input(sess, crate_type, id, &out_filename)
858         }
859     };
860
861     // Make sure the output and obj_filename are both writeable.
862     // Mac, FreeBSD, and Windows system linkers check this already --
863     // however, the Linux linker will happily overwrite a read-only file.
864     // We should be consistent.
865     let obj_is_writeable = is_writeable(&obj_filename);
866     let out_is_writeable = is_writeable(&out_filename);
867     if !out_is_writeable {
868         sess.fatal(format!("output file {} is not writeable -- check its \
869                             permissions.",
870                            out_filename.display()).as_slice());
871     }
872     else if !obj_is_writeable {
873         sess.fatal(format!("object file {} is not writeable -- check its \
874                             permissions.",
875                            obj_filename.display()).as_slice());
876     }
877
878     match crate_type {
879         config::CrateTypeRlib => {
880             link_rlib(sess, Some(trans), &obj_filename, &out_filename);
881         }
882         config::CrateTypeStaticlib => {
883             link_staticlib(sess, &obj_filename, &out_filename);
884         }
885         config::CrateTypeExecutable => {
886             link_natively(sess, trans, false, &obj_filename, &out_filename);
887         }
888         config::CrateTypeDylib => {
889             link_natively(sess, trans, true, &obj_filename, &out_filename);
890         }
891     }
892
893     out_filename
894 }
895
896 // Create an 'rlib'
897 //
898 // An rlib in its current incarnation is essentially a renamed .a file. The
899 // rlib primarily contains the object file of the crate, but it also contains
900 // all of the object files from native libraries. This is done by unzipping
901 // native libraries and inserting all of the contents into this archive.
902 fn link_rlib<'a>(sess: &'a Session,
903                  trans: Option<&CrateTranslation>, // None == no metadata/bytecode
904                  obj_filename: &Path,
905                  out_filename: &Path) -> Archive<'a> {
906     let mut a = Archive::create(sess, out_filename, obj_filename);
907
908     for &(ref l, kind) in sess.cstore.get_used_libraries().borrow().iter() {
909         match kind {
910             cstore::NativeStatic => {
911                 a.add_native_library(l.as_slice()).unwrap();
912             }
913             cstore::NativeFramework | cstore::NativeUnknown => {}
914         }
915     }
916
917     // Note that it is important that we add all of our non-object "magical
918     // files" *after* all of the object files in the archive. The reason for
919     // this is as follows:
920     //
921     // * When performing LTO, this archive will be modified to remove
922     //   obj_filename from above. The reason for this is described below.
923     //
924     // * When the system linker looks at an archive, it will attempt to
925     //   determine the architecture of the archive in order to see whether its
926     //   linkable.
927     //
928     //   The algorithm for this detection is: iterate over the files in the
929     //   archive. Skip magical SYMDEF names. Interpret the first file as an
930     //   object file. Read architecture from the object file.
931     //
932     // * As one can probably see, if "metadata" and "foo.bc" were placed
933     //   before all of the objects, then the architecture of this archive would
934     //   not be correctly inferred once 'foo.o' is removed.
935     //
936     // Basically, all this means is that this code should not move above the
937     // code above.
938     match trans {
939         Some(trans) => {
940             // Instead of putting the metadata in an object file section, rlibs
941             // contain the metadata in a separate file. We use a temp directory
942             // here so concurrent builds in the same directory don't try to use
943             // the same filename for metadata (stomping over one another)
944             let tmpdir = TempDir::new("rustc").expect("needs a temp dir");
945             let metadata = tmpdir.path().join(METADATA_FILENAME);
946             match fs::File::create(&metadata).write(trans.metadata
947                                                          .as_slice()) {
948                 Ok(..) => {}
949                 Err(e) => {
950                     sess.err(format!("failed to write {}: {}",
951                                      metadata.display(),
952                                      e).as_slice());
953                     sess.abort_if_errors();
954                 }
955             }
956             a.add_file(&metadata, false);
957             remove(sess, &metadata);
958
959             // For LTO purposes, the bytecode of this library is also inserted
960             // into the archive.
961             let bc = obj_filename.with_extension("bc");
962             let bc_deflated = obj_filename.with_extension("bc.deflate");
963             match fs::File::open(&bc).read_to_end().and_then(|data| {
964                 fs::File::create(&bc_deflated)
965                     .write(match flate::deflate_bytes(data.as_slice()) {
966                         Some(compressed) => compressed,
967                         None => sess.fatal("failed to compress bytecode")
968                      }.as_slice())
969             }) {
970                 Ok(()) => {}
971                 Err(e) => {
972                     sess.err(format!("failed to write compressed bytecode: \
973                                       {}",
974                                      e).as_slice());
975                     sess.abort_if_errors()
976                 }
977             }
978             a.add_file(&bc_deflated, false);
979             remove(sess, &bc_deflated);
980             if !sess.opts.cg.save_temps &&
981                !sess.opts.output_types.contains(&OutputTypeBitcode) {
982                 remove(sess, &bc);
983             }
984
985             // After adding all files to the archive, we need to update the
986             // symbol table of the archive. This currently dies on OSX (see
987             // #11162), and isn't necessary there anyway
988             match sess.targ_cfg.os {
989                 abi::OsMacos => {}
990                 _ => { a.update_symbols(); }
991             }
992         }
993
994         None => {}
995     }
996     return a;
997 }
998
999 // Create a static archive
1000 //
1001 // This is essentially the same thing as an rlib, but it also involves adding
1002 // all of the upstream crates' objects into the archive. This will slurp in
1003 // all of the native libraries of upstream dependencies as well.
1004 //
1005 // Additionally, there's no way for us to link dynamic libraries, so we warn
1006 // about all dynamic library dependencies that they're not linked in.
1007 //
1008 // There's no need to include metadata in a static archive, so ensure to not
1009 // link in the metadata object file (and also don't prepare the archive with a
1010 // metadata file).
1011 fn link_staticlib(sess: &Session, obj_filename: &Path, out_filename: &Path) {
1012     let mut a = link_rlib(sess, None, obj_filename, out_filename);
1013     a.add_native_library("morestack").unwrap();
1014     a.add_native_library("compiler-rt").unwrap();
1015
1016     let crates = sess.cstore.get_used_crates(cstore::RequireStatic);
1017     let mut all_native_libs = vec![];
1018
1019     for &(cnum, ref path) in crates.iter() {
1020         let name = sess.cstore.get_crate_data(cnum).name.clone();
1021         let p = match *path {
1022             Some(ref p) => p.clone(), None => {
1023                 sess.err(format!("could not find rlib for: `{}`",
1024                                  name).as_slice());
1025                 continue
1026             }
1027         };
1028         a.add_rlib(&p, name.as_slice(), sess.lto()).unwrap();
1029
1030         let native_libs = csearch::get_native_libraries(&sess.cstore, cnum);
1031         all_native_libs.extend(native_libs.move_iter());
1032     }
1033
1034     if !all_native_libs.is_empty() {
1035         sess.warn("link against the following native artifacts when linking against \
1036                   this static library");
1037         sess.note("the order and any duplication can be significant on some platforms, \
1038                   and so may need to be preserved");
1039     }
1040
1041     for &(kind, ref lib) in all_native_libs.iter() {
1042         let name = match kind {
1043             cstore::NativeStatic => "static library",
1044             cstore::NativeUnknown => "library",
1045             cstore::NativeFramework => "framework",
1046         };
1047         sess.note(format!("{}: {}", name, *lib).as_slice());
1048     }
1049 }
1050
1051 // Create a dynamic library or executable
1052 //
1053 // This will invoke the system linker/cc to create the resulting file. This
1054 // links to all upstream files as well.
1055 fn link_natively(sess: &Session, trans: &CrateTranslation, dylib: bool,
1056                  obj_filename: &Path, out_filename: &Path) {
1057     let tmpdir = TempDir::new("rustc").expect("needs a temp dir");
1058
1059     // The invocations of cc share some flags across platforms
1060     let pname = get_cc_prog(sess);
1061     let mut cmd = Command::new(pname.as_slice());
1062
1063     cmd.args(sess.targ_cfg.target_strs.cc_args.as_slice());
1064     link_args(&mut cmd, sess, dylib, tmpdir.path(),
1065               trans, obj_filename, out_filename);
1066
1067     if (sess.opts.debugging_opts & config::PRINT_LINK_ARGS) != 0 {
1068         println!("{}", &cmd);
1069     }
1070
1071     // May have not found libraries in the right formats.
1072     sess.abort_if_errors();
1073
1074     // Invoke the system linker
1075     debug!("{}", &cmd);
1076     let prog = time(sess.time_passes(), "running linker", (), |()| cmd.output());
1077     match prog {
1078         Ok(prog) => {
1079             if !prog.status.success() {
1080                 sess.err(format!("linking with `{}` failed: {}",
1081                                  pname,
1082                                  prog.status).as_slice());
1083                 sess.note(format!("{}", &cmd).as_slice());
1084                 let mut output = prog.error.clone();
1085                 output.push_all(prog.output.as_slice());
1086                 sess.note(str::from_utf8(output.as_slice()).unwrap()
1087                                                            .as_slice());
1088                 sess.abort_if_errors();
1089             }
1090         },
1091         Err(e) => {
1092             sess.err(format!("could not exec the linker `{}`: {}",
1093                              pname,
1094                              e).as_slice());
1095             sess.abort_if_errors();
1096         }
1097     }
1098
1099
1100     // On OSX, debuggers need this utility to get run to do some munging of
1101     // the symbols
1102     if sess.targ_cfg.os == abi::OsMacos && (sess.opts.debuginfo != NoDebugInfo) {
1103         match Command::new("dsymutil").arg(out_filename).status() {
1104             Ok(..) => {}
1105             Err(e) => {
1106                 sess.err(format!("failed to run dsymutil: {}", e).as_slice());
1107                 sess.abort_if_errors();
1108             }
1109         }
1110     }
1111 }
1112
1113 fn link_args(cmd: &mut Command,
1114              sess: &Session,
1115              dylib: bool,
1116              tmpdir: &Path,
1117              trans: &CrateTranslation,
1118              obj_filename: &Path,
1119              out_filename: &Path) {
1120
1121     // The default library location, we need this to find the runtime.
1122     // The location of crates will be determined as needed.
1123     let lib_path = sess.target_filesearch().get_lib_path();
1124     cmd.arg("-L").arg(lib_path);
1125
1126     cmd.arg("-o").arg(out_filename).arg(obj_filename);
1127
1128     // Stack growth requires statically linking a __morestack function. Note
1129     // that this is listed *before* all other libraries, even though it may be
1130     // used to resolve symbols in other libraries. The only case that this
1131     // wouldn't be pulled in by the object file is if the object file had no
1132     // functions.
1133     //
1134     // If we're building an executable, there must be at least one function (the
1135     // main function), and if we're building a dylib then we don't need it for
1136     // later libraries because they're all dylibs (not rlibs).
1137     //
1138     // I'm honestly not entirely sure why this needs to come first. Apparently
1139     // the --as-needed flag above sometimes strips out libstd from the command
1140     // line, but inserting this farther to the left makes the
1141     // "rust_stack_exhausted" symbol an outstanding undefined symbol, which
1142     // flags libstd as a required library (or whatever provides the symbol).
1143     cmd.arg("-lmorestack");
1144
1145     // When linking a dynamic library, we put the metadata into a section of the
1146     // executable. This metadata is in a separate object file from the main
1147     // object file, so we link that in here.
1148     if dylib {
1149         cmd.arg(obj_filename.with_extension("metadata.o"));
1150     }
1151
1152     // We want to prevent the compiler from accidentally leaking in any system
1153     // libraries, so we explicitly ask gcc to not link to any libraries by
1154     // default. Note that this does not happen for windows because windows pulls
1155     // in some large number of libraries and I couldn't quite figure out which
1156     // subset we wanted.
1157     //
1158     // FIXME(#11937) we should invoke the system linker directly
1159     if sess.targ_cfg.os != abi::OsWin32 {
1160         cmd.arg("-nodefaultlibs");
1161     }
1162
1163     // If we're building a dylib, we don't use --gc-sections because LLVM has
1164     // already done the best it can do, and we also don't want to eliminate the
1165     // metadata. If we're building an executable, however, --gc-sections drops
1166     // the size of hello world from 1.8MB to 597K, a 67% reduction.
1167     if !dylib && sess.targ_cfg.os != abi::OsMacos {
1168         cmd.arg("-Wl,--gc-sections");
1169     }
1170
1171     if sess.targ_cfg.os == abi::OsLinux {
1172         // GNU-style linkers will use this to omit linking to libraries which
1173         // don't actually fulfill any relocations, but only for libraries which
1174         // follow this flag. Thus, use it before specifying libraries to link to.
1175         cmd.arg("-Wl,--as-needed");
1176
1177         // GNU-style linkers support optimization with -O. GNU ld doesn't need a
1178         // numeric argument, but other linkers do.
1179         if sess.opts.optimize == config::Default ||
1180            sess.opts.optimize == config::Aggressive {
1181             cmd.arg("-Wl,-O1");
1182         }
1183     } else if sess.targ_cfg.os == abi::OsMacos {
1184         // The dead_strip option to the linker specifies that functions and data
1185         // unreachable by the entry point will be removed. This is quite useful
1186         // with Rust's compilation model of compiling libraries at a time into
1187         // one object file. For example, this brings hello world from 1.7MB to
1188         // 458K.
1189         //
1190         // Note that this is done for both executables and dynamic libraries. We
1191         // won't get much benefit from dylibs because LLVM will have already
1192         // stripped away as much as it could. This has not been seen to impact
1193         // link times negatively.
1194         cmd.arg("-Wl,-dead_strip");
1195     }
1196
1197     if sess.targ_cfg.os == abi::OsWin32 {
1198         // Make sure that we link to the dynamic libgcc, otherwise cross-module
1199         // DWARF stack unwinding will not work.
1200         // This behavior may be overridden by --link-args "-static-libgcc"
1201         cmd.arg("-shared-libgcc");
1202
1203         // And here, we see obscure linker flags #45. On windows, it has been
1204         // found to be necessary to have this flag to compile liblibc.
1205         //
1206         // First a bit of background. On Windows, the file format is not ELF,
1207         // but COFF (at least according to LLVM). COFF doesn't officially allow
1208         // for section names over 8 characters, apparently. Our metadata
1209         // section, ".note.rustc", you'll note is over 8 characters.
1210         //
1211         // On more recent versions of gcc on mingw, apparently the section name
1212         // is *not* truncated, but rather stored elsewhere in a separate lookup
1213         // table. On older versions of gcc, they apparently always truncated the
1214         // section names (at least in some cases). Truncating the section name
1215         // actually creates "invalid" objects [1] [2], but only for some
1216         // introspection tools, not in terms of whether it can be loaded.
1217         //
1218         // Long story short, passing this flag forces the linker to *not*
1219         // truncate section names (so we can find the metadata section after
1220         // it's compiled). The real kicker is that rust compiled just fine on
1221         // windows for quite a long time *without* this flag, so I have no idea
1222         // why it suddenly started failing for liblibc. Regardless, we
1223         // definitely don't want section name truncation, so we're keeping this
1224         // flag for windows.
1225         //
1226         // [1] - https://sourceware.org/bugzilla/show_bug.cgi?id=13130
1227         // [2] - https://code.google.com/p/go/issues/detail?id=2139
1228         cmd.arg("-Wl,--enable-long-section-names");
1229     }
1230
1231     if sess.targ_cfg.os == abi::OsAndroid {
1232         // Many of the symbols defined in compiler-rt are also defined in libgcc.
1233         // Android linker doesn't like that by default.
1234         cmd.arg("-Wl,--allow-multiple-definition");
1235     }
1236
1237     // Take careful note of the ordering of the arguments we pass to the linker
1238     // here. Linkers will assume that things on the left depend on things to the
1239     // right. Things on the right cannot depend on things on the left. This is
1240     // all formally implemented in terms of resolving symbols (libs on the right
1241     // resolve unknown symbols of libs on the left, but not vice versa).
1242     //
1243     // For this reason, we have organized the arguments we pass to the linker as
1244     // such:
1245     //
1246     //  1. The local object that LLVM just generated
1247     //  2. Upstream rust libraries
1248     //  3. Local native libraries
1249     //  4. Upstream native libraries
1250     //
1251     // This is generally fairly natural, but some may expect 2 and 3 to be
1252     // swapped. The reason that all native libraries are put last is that it's
1253     // not recommended for a native library to depend on a symbol from a rust
1254     // crate. If this is the case then a staticlib crate is recommended, solving
1255     // the problem.
1256     //
1257     // Additionally, it is occasionally the case that upstream rust libraries
1258     // depend on a local native library. In the case of libraries such as
1259     // lua/glfw/etc the name of the library isn't the same across all platforms,
1260     // so only the consumer crate of a library knows the actual name. This means
1261     // that downstream crates will provide the #[link] attribute which upstream
1262     // crates will depend on. Hence local native libraries are after out
1263     // upstream rust crates.
1264     //
1265     // In theory this means that a symbol in an upstream native library will be
1266     // shadowed by a local native library when it wouldn't have been before, but
1267     // this kind of behavior is pretty platform specific and generally not
1268     // recommended anyway, so I don't think we're shooting ourself in the foot
1269     // much with that.
1270     add_upstream_rust_crates(cmd, sess, dylib, tmpdir, trans);
1271     add_local_native_libraries(cmd, sess);
1272     add_upstream_native_libraries(cmd, sess);
1273
1274     // # Telling the linker what we're doing
1275
1276     if dylib {
1277         // On mac we need to tell the linker to let this library be rpathed
1278         if sess.targ_cfg.os == abi::OsMacos {
1279             cmd.args(["-dynamiclib", "-Wl,-dylib"]);
1280
1281             if !sess.opts.cg.no_rpath {
1282                 let mut v = Vec::from_slice("-Wl,-install_name,@rpath/".as_bytes());
1283                 v.push_all(out_filename.filename().unwrap());
1284                 cmd.arg(v.as_slice());
1285             }
1286         } else {
1287             cmd.arg("-shared");
1288         }
1289     }
1290
1291     if sess.targ_cfg.os == abi::OsFreebsd {
1292         cmd.args(["-L/usr/local/lib",
1293                   "-L/usr/local/lib/gcc46",
1294                   "-L/usr/local/lib/gcc44"]);
1295     }
1296
1297     // FIXME (#2397): At some point we want to rpath our guesses as to
1298     // where extern libraries might live, based on the
1299     // addl_lib_search_paths
1300     if !sess.opts.cg.no_rpath {
1301         cmd.args(rpath::get_rpath_flags(sess, out_filename).as_slice());
1302     }
1303
1304     // compiler-rt contains implementations of low-level LLVM helpers. This is
1305     // used to resolve symbols from the object file we just created, as well as
1306     // any system static libraries that may be expecting gcc instead. Most
1307     // symbols in libgcc also appear in compiler-rt.
1308     //
1309     // This is the end of the command line, so this library is used to resolve
1310     // *all* undefined symbols in all other libraries, and this is intentional.
1311     cmd.arg("-lcompiler-rt");
1312
1313     // Finally add all the linker arguments provided on the command line along
1314     // with any #[link_args] attributes found inside the crate
1315     cmd.args(sess.opts.cg.link_args.as_slice());
1316     for arg in sess.cstore.get_used_link_args().borrow().iter() {
1317         cmd.arg(arg.as_slice());
1318     }
1319 }
1320
1321 // # Native library linking
1322 //
1323 // User-supplied library search paths (-L on the command line). These are
1324 // the same paths used to find Rust crates, so some of them may have been
1325 // added already by the previous crate linking code. This only allows them
1326 // to be found at compile time so it is still entirely up to outside
1327 // forces to make sure that library can be found at runtime.
1328 //
1329 // Also note that the native libraries linked here are only the ones located
1330 // in the current crate. Upstream crates with native library dependencies
1331 // may have their native library pulled in above.
1332 fn add_local_native_libraries(cmd: &mut Command, sess: &Session) {
1333     for path in sess.opts.addl_lib_search_paths.borrow().iter() {
1334         cmd.arg("-L").arg(path);
1335     }
1336
1337     let rustpath = filesearch::rust_path();
1338     for path in rustpath.iter() {
1339         cmd.arg("-L").arg(path);
1340     }
1341
1342     // Some platforms take hints about whether a library is static or dynamic.
1343     // For those that support this, we ensure we pass the option if the library
1344     // was flagged "static" (most defaults are dynamic) to ensure that if
1345     // libfoo.a and libfoo.so both exist that the right one is chosen.
1346     let takes_hints = sess.targ_cfg.os != abi::OsMacos;
1347
1348     for &(ref l, kind) in sess.cstore.get_used_libraries().borrow().iter() {
1349         match kind {
1350             cstore::NativeUnknown | cstore::NativeStatic => {
1351                 if takes_hints {
1352                     if kind == cstore::NativeStatic {
1353                         cmd.arg("-Wl,-Bstatic");
1354                     } else {
1355                         cmd.arg("-Wl,-Bdynamic");
1356                     }
1357                 }
1358                 cmd.arg(format!("-l{}", *l));
1359             }
1360             cstore::NativeFramework => {
1361                 cmd.arg("-framework");
1362                 cmd.arg(l.as_slice());
1363             }
1364         }
1365     }
1366     if takes_hints {
1367         cmd.arg("-Wl,-Bdynamic");
1368     }
1369 }
1370
1371 // # Rust Crate linking
1372 //
1373 // Rust crates are not considered at all when creating an rlib output. All
1374 // dependencies will be linked when producing the final output (instead of
1375 // the intermediate rlib version)
1376 fn add_upstream_rust_crates(cmd: &mut Command, sess: &Session,
1377                             dylib: bool, tmpdir: &Path,
1378                             trans: &CrateTranslation) {
1379     // All of the heavy lifting has previously been accomplished by the
1380     // dependency_format module of the compiler. This is just crawling the
1381     // output of that module, adding crates as necessary.
1382     //
1383     // Linking to a rlib involves just passing it to the linker (the linker
1384     // will slurp up the object files inside), and linking to a dynamic library
1385     // involves just passing the right -l flag.
1386
1387     let data = if dylib {
1388         trans.crate_formats.get(&config::CrateTypeDylib)
1389     } else {
1390         trans.crate_formats.get(&config::CrateTypeExecutable)
1391     };
1392
1393     // Invoke get_used_crates to ensure that we get a topological sorting of
1394     // crates.
1395     let deps = sess.cstore.get_used_crates(cstore::RequireDynamic);
1396
1397     for &(cnum, _) in deps.iter() {
1398         // We may not pass all crates through to the linker. Some crates may
1399         // appear statically in an existing dylib, meaning we'll pick up all the
1400         // symbols from the dylib.
1401         let kind = match *data.get(cnum as uint - 1) {
1402             Some(t) => t,
1403             None => continue
1404         };
1405         let src = sess.cstore.get_used_crate_source(cnum).unwrap();
1406         match kind {
1407             cstore::RequireDynamic => {
1408                 add_dynamic_crate(cmd, sess, src.dylib.unwrap())
1409             }
1410             cstore::RequireStatic => {
1411                 add_static_crate(cmd, sess, tmpdir, cnum, src.rlib.unwrap())
1412             }
1413         }
1414
1415     }
1416
1417     // Converts a library file-stem into a cc -l argument
1418     fn unlib<'a>(config: &config::Config, stem: &'a [u8]) -> &'a [u8] {
1419         if stem.starts_with("lib".as_bytes()) && config.os != abi::OsWin32 {
1420             stem.tailn(3)
1421         } else {
1422             stem
1423         }
1424     }
1425
1426     // Adds the static "rlib" versions of all crates to the command line.
1427     fn add_static_crate(cmd: &mut Command, sess: &Session, tmpdir: &Path,
1428                         cnum: ast::CrateNum, cratepath: Path) {
1429         // When performing LTO on an executable output, all of the
1430         // bytecode from the upstream libraries has already been
1431         // included in our object file output. We need to modify all of
1432         // the upstream archives to remove their corresponding object
1433         // file to make sure we don't pull the same code in twice.
1434         //
1435         // We must continue to link to the upstream archives to be sure
1436         // to pull in native static dependencies. As the final caveat,
1437         // on linux it is apparently illegal to link to a blank archive,
1438         // so if an archive no longer has any object files in it after
1439         // we remove `lib.o`, then don't link against it at all.
1440         //
1441         // If we're not doing LTO, then our job is simply to just link
1442         // against the archive.
1443         if sess.lto() {
1444             let name = sess.cstore.get_crate_data(cnum).name.clone();
1445             time(sess.time_passes(),
1446                  format!("altering {}.rlib", name).as_slice(),
1447                  (), |()| {
1448                 let dst = tmpdir.join(cratepath.filename().unwrap());
1449                 match fs::copy(&cratepath, &dst) {
1450                     Ok(..) => {}
1451                     Err(e) => {
1452                         sess.err(format!("failed to copy {} to {}: {}",
1453                                          cratepath.display(),
1454                                          dst.display(),
1455                                          e).as_slice());
1456                         sess.abort_if_errors();
1457                     }
1458                 }
1459                 let mut archive = Archive::open(sess, dst.clone());
1460                 archive.remove_file(format!("{}.o", name).as_slice());
1461                 let files = archive.files();
1462                 if files.iter().any(|s| s.as_slice().ends_with(".o")) {
1463                     cmd.arg(dst);
1464                 }
1465             });
1466         } else {
1467             cmd.arg(cratepath);
1468         }
1469     }
1470
1471     // Same thing as above, but for dynamic crates instead of static crates.
1472     fn add_dynamic_crate(cmd: &mut Command, sess: &Session, cratepath: Path) {
1473         // If we're performing LTO, then it should have been previously required
1474         // that all upstream rust dependencies were available in an rlib format.
1475         assert!(!sess.lto());
1476
1477         // Just need to tell the linker about where the library lives and
1478         // what its name is
1479         let dir = cratepath.dirname();
1480         if !dir.is_empty() { cmd.arg("-L").arg(dir); }
1481
1482         let mut v = Vec::from_slice("-l".as_bytes());
1483         v.push_all(unlib(&sess.targ_cfg, cratepath.filestem().unwrap()));
1484         cmd.arg(v.as_slice());
1485     }
1486 }
1487
1488 // Link in all of our upstream crates' native dependencies. Remember that
1489 // all of these upstream native dependencies are all non-static
1490 // dependencies. We've got two cases then:
1491 //
1492 // 1. The upstream crate is an rlib. In this case we *must* link in the
1493 // native dependency because the rlib is just an archive.
1494 //
1495 // 2. The upstream crate is a dylib. In order to use the dylib, we have to
1496 // have the dependency present on the system somewhere. Thus, we don't
1497 // gain a whole lot from not linking in the dynamic dependency to this
1498 // crate as well.
1499 //
1500 // The use case for this is a little subtle. In theory the native
1501 // dependencies of a crate are purely an implementation detail of the crate
1502 // itself, but the problem arises with generic and inlined functions. If a
1503 // generic function calls a native function, then the generic function must
1504 // be instantiated in the target crate, meaning that the native symbol must
1505 // also be resolved in the target crate.
1506 fn add_upstream_native_libraries(cmd: &mut Command, sess: &Session) {
1507     // Be sure to use a topological sorting of crates because there may be
1508     // interdependencies between native libraries. When passing -nodefaultlibs,
1509     // for example, almost all native libraries depend on libc, so we have to
1510     // make sure that's all the way at the right (liblibc is near the base of
1511     // the dependency chain).
1512     //
1513     // This passes RequireStatic, but the actual requirement doesn't matter,
1514     // we're just getting an ordering of crate numbers, we're not worried about
1515     // the paths.
1516     let crates = sess.cstore.get_used_crates(cstore::RequireStatic);
1517     for (cnum, _) in crates.move_iter() {
1518         let libs = csearch::get_native_libraries(&sess.cstore, cnum);
1519         for &(kind, ref lib) in libs.iter() {
1520             match kind {
1521                 cstore::NativeUnknown => {
1522                     cmd.arg(format!("-l{}", *lib));
1523                 }
1524                 cstore::NativeFramework => {
1525                     cmd.arg("-framework");
1526                     cmd.arg(lib.as_slice());
1527                 }
1528                 cstore::NativeStatic => {
1529                     sess.bug("statics shouldn't be propagated");
1530                 }
1531             }
1532         }
1533     }
1534 }