]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/mod.rs
Rollup merge of #67666 - lzutao:ptr-null-cmp, r=dtolnay
[rust.git] / src / librustc_target / spec / mod.rs
1 //! [Flexible target specification.](https://github.com/rust-lang/rfcs/pull/131)
2 //!
3 //! Rust targets a wide variety of usecases, and in the interest of flexibility,
4 //! allows new target triples to be defined in configuration files. Most users
5 //! will not need to care about these, but this is invaluable when porting Rust
6 //! to a new platform, and allows for an unprecedented level of control over how
7 //! the compiler works.
8 //!
9 //! # Using custom targets
10 //!
11 //! A target triple, as passed via `rustc --target=TRIPLE`, will first be
12 //! compared against the list of built-in targets. This is to ease distributing
13 //! rustc (no need for configuration files) and also to hold these built-in
14 //! targets as immutable and sacred. If `TRIPLE` is not one of the built-in
15 //! targets, rustc will check if a file named `TRIPLE` exists. If it does, it
16 //! will be loaded as the target configuration. If the file does not exist,
17 //! rustc will search each directory in the environment variable
18 //! `RUST_TARGET_PATH` for a file named `TRIPLE.json`. The first one found will
19 //! be loaded. If no file is found in any of those directories, a fatal error
20 //! will be given.
21 //!
22 //! Projects defining their own targets should use
23 //! `--target=path/to/my-awesome-platform.json` instead of adding to
24 //! `RUST_TARGET_PATH`.
25 //!
26 //! # Defining a new target
27 //!
28 //! Targets are defined using [JSON](http://json.org/). The `Target` struct in
29 //! this module defines the format the JSON file should take, though each
30 //! underscore in the field names should be replaced with a hyphen (`-`) in the
31 //! JSON file. Some fields are required in every target specification, such as
32 //! `llvm-target`, `target-endian`, `target-pointer-width`, `data-layout`,
33 //! `arch`, and `os`. In general, options passed to rustc with `-C` override
34 //! the target's settings, though `target-feature` and `link-args` will *add*
35 //! to the list specified by the target, rather than replace.
36
37 use crate::spec::abi::{lookup as lookup_abi, Abi};
38 use rustc_serialize::json::{Json, ToJson};
39 use std::collections::BTreeMap;
40 use std::default::Default;
41 use std::path::{Path, PathBuf};
42 use std::str::FromStr;
43 use std::{fmt, io};
44
45 use rustc_macros::HashStable_Generic;
46
47 pub mod abi;
48 mod android_base;
49 mod apple_base;
50 mod apple_ios_base;
51 mod arm_base;
52 mod cloudabi_base;
53 mod dragonfly_base;
54 mod freebsd_base;
55 mod fuchsia_base;
56 mod haiku_base;
57 mod hermit_base;
58 mod hermit_kernel_base;
59 mod l4re_base;
60 mod linux_base;
61 mod linux_kernel_base;
62 mod linux_musl_base;
63 mod netbsd_base;
64 mod openbsd_base;
65 mod redox_base;
66 mod riscv_base;
67 mod solaris_base;
68 mod thumb_base;
69 mod uefi_base;
70 mod vxworks_base;
71 mod wasm32_base;
72 mod windows_base;
73 mod windows_msvc_base;
74 mod windows_uwp_base;
75 mod windows_uwp_msvc_base;
76
77 #[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
78 pub enum LinkerFlavor {
79     Em,
80     Gcc,
81     Ld,
82     Msvc,
83     Lld(LldFlavor),
84     PtxLinker,
85 }
86
87 #[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
88 pub enum LldFlavor {
89     Wasm,
90     Ld64,
91     Ld,
92     Link,
93 }
94
95 impl LldFlavor {
96     fn from_str(s: &str) -> Option<Self> {
97         Some(match s {
98             "darwin" => LldFlavor::Ld64,
99             "gnu" => LldFlavor::Ld,
100             "link" => LldFlavor::Link,
101             "wasm" => LldFlavor::Wasm,
102             _ => return None,
103         })
104     }
105 }
106
107 impl ToJson for LldFlavor {
108     fn to_json(&self) -> Json {
109         match *self {
110             LldFlavor::Ld64 => "darwin",
111             LldFlavor::Ld => "gnu",
112             LldFlavor::Link => "link",
113             LldFlavor::Wasm => "wasm",
114         }
115         .to_json()
116     }
117 }
118
119 impl ToJson for LinkerFlavor {
120     fn to_json(&self) -> Json {
121         self.desc().to_json()
122     }
123 }
124 macro_rules! flavor_mappings {
125     ($((($($flavor:tt)*), $string:expr),)*) => (
126         impl LinkerFlavor {
127             pub const fn one_of() -> &'static str {
128                 concat!("one of: ", $($string, " ",)*)
129             }
130
131             pub fn from_str(s: &str) -> Option<Self> {
132                 Some(match s {
133                     $($string => $($flavor)*,)*
134                     _ => return None,
135                 })
136             }
137
138             pub fn desc(&self) -> &str {
139                 match *self {
140                     $($($flavor)* => $string,)*
141                 }
142             }
143         }
144     )
145 }
146
147 flavor_mappings! {
148     ((LinkerFlavor::Em), "em"),
149     ((LinkerFlavor::Gcc), "gcc"),
150     ((LinkerFlavor::Ld), "ld"),
151     ((LinkerFlavor::Msvc), "msvc"),
152     ((LinkerFlavor::PtxLinker), "ptx-linker"),
153     ((LinkerFlavor::Lld(LldFlavor::Wasm)), "wasm-ld"),
154     ((LinkerFlavor::Lld(LldFlavor::Ld64)), "ld64.lld"),
155     ((LinkerFlavor::Lld(LldFlavor::Ld)), "ld.lld"),
156     ((LinkerFlavor::Lld(LldFlavor::Link)), "lld-link"),
157 }
158
159 #[derive(Clone, Copy, Debug, PartialEq, Hash, RustcEncodable, RustcDecodable, HashStable_Generic)]
160 pub enum PanicStrategy {
161     Unwind,
162     Abort,
163 }
164
165 impl PanicStrategy {
166     pub fn desc(&self) -> &str {
167         match *self {
168             PanicStrategy::Unwind => "unwind",
169             PanicStrategy::Abort => "abort",
170         }
171     }
172 }
173
174 impl ToJson for PanicStrategy {
175     fn to_json(&self) -> Json {
176         match *self {
177             PanicStrategy::Abort => "abort".to_json(),
178             PanicStrategy::Unwind => "unwind".to_json(),
179         }
180     }
181 }
182
183 #[derive(Clone, Copy, Debug, PartialEq, Hash, RustcEncodable, RustcDecodable)]
184 pub enum RelroLevel {
185     Full,
186     Partial,
187     Off,
188     None,
189 }
190
191 impl RelroLevel {
192     pub fn desc(&self) -> &str {
193         match *self {
194             RelroLevel::Full => "full",
195             RelroLevel::Partial => "partial",
196             RelroLevel::Off => "off",
197             RelroLevel::None => "none",
198         }
199     }
200 }
201
202 impl FromStr for RelroLevel {
203     type Err = ();
204
205     fn from_str(s: &str) -> Result<RelroLevel, ()> {
206         match s {
207             "full" => Ok(RelroLevel::Full),
208             "partial" => Ok(RelroLevel::Partial),
209             "off" => Ok(RelroLevel::Off),
210             "none" => Ok(RelroLevel::None),
211             _ => Err(()),
212         }
213     }
214 }
215
216 impl ToJson for RelroLevel {
217     fn to_json(&self) -> Json {
218         match *self {
219             RelroLevel::Full => "full".to_json(),
220             RelroLevel::Partial => "partial".to_json(),
221             RelroLevel::Off => "off".to_json(),
222             RelroLevel::None => "None".to_json(),
223         }
224     }
225 }
226
227 #[derive(Clone, Copy, Debug, PartialEq, Hash, RustcEncodable, RustcDecodable)]
228 pub enum MergeFunctions {
229     Disabled,
230     Trampolines,
231     Aliases,
232 }
233
234 impl MergeFunctions {
235     pub fn desc(&self) -> &str {
236         match *self {
237             MergeFunctions::Disabled => "disabled",
238             MergeFunctions::Trampolines => "trampolines",
239             MergeFunctions::Aliases => "aliases",
240         }
241     }
242 }
243
244 impl FromStr for MergeFunctions {
245     type Err = ();
246
247     fn from_str(s: &str) -> Result<MergeFunctions, ()> {
248         match s {
249             "disabled" => Ok(MergeFunctions::Disabled),
250             "trampolines" => Ok(MergeFunctions::Trampolines),
251             "aliases" => Ok(MergeFunctions::Aliases),
252             _ => Err(()),
253         }
254     }
255 }
256
257 impl ToJson for MergeFunctions {
258     fn to_json(&self) -> Json {
259         match *self {
260             MergeFunctions::Disabled => "disabled".to_json(),
261             MergeFunctions::Trampolines => "trampolines".to_json(),
262             MergeFunctions::Aliases => "aliases".to_json(),
263         }
264     }
265 }
266
267 pub enum LoadTargetError {
268     BuiltinTargetNotFound(String),
269     Other(String),
270 }
271
272 pub type LinkArgs = BTreeMap<LinkerFlavor, Vec<String>>;
273 pub type TargetResult = Result<Target, String>;
274
275 macro_rules! supported_targets {
276     ( $(($( $triple:literal, )+ $module:ident ),)+ ) => {
277         $(mod $module;)+
278
279         /// List of supported targets
280         const TARGETS: &[&str] = &[$($($triple),+),+];
281
282         fn load_specific(target: &str) -> Result<Target, LoadTargetError> {
283             match target {
284                 $(
285                     $($triple)|+ => {
286                         let mut t = $module::target()
287                             .map_err(LoadTargetError::Other)?;
288                         t.options.is_builtin = true;
289
290                         // round-trip through the JSON parser to ensure at
291                         // run-time that the parser works correctly
292                         t = Target::from_json(t.to_json())
293                             .map_err(LoadTargetError::Other)?;
294                         debug!("got builtin target: {:?}", t);
295                         Ok(t)
296                     },
297                 )+
298                     _ => Err(LoadTargetError::BuiltinTargetNotFound(
299                         format!("Unable to find target: {}", target)))
300             }
301         }
302
303         pub fn get_targets() -> impl Iterator<Item = String> {
304             TARGETS.iter().filter_map(|t| -> Option<String> {
305                 load_specific(t)
306                     .and(Ok(t.to_string()))
307                     .ok()
308             })
309         }
310
311         #[cfg(test)]
312         mod test_json_encode_decode {
313             use rustc_serialize::json::ToJson;
314             use super::Target;
315             $(use super::$module;)+
316
317             $(
318                 #[test] // `#[test]` - this is hard to put into a separate file, make an exception
319                 fn $module() {
320                     // Grab the TargetResult struct. If we successfully retrieved
321                     // a Target, then the test JSON encoding/decoding can run for this
322                     // Target on this testing platform (i.e., checking the iOS targets
323                     // only on a Mac test platform).
324                     let _ = $module::target().map(|original| {
325                         let as_json = original.to_json();
326                         let parsed = Target::from_json(as_json).unwrap();
327                         assert_eq!(original, parsed);
328                     });
329                 }
330             )+
331         }
332     };
333 }
334
335 supported_targets! {
336     ("x86_64-unknown-linux-gnu", x86_64_unknown_linux_gnu),
337     ("x86_64-unknown-linux-gnux32", x86_64_unknown_linux_gnux32),
338     ("i686-unknown-linux-gnu", i686_unknown_linux_gnu),
339     ("i586-unknown-linux-gnu", i586_unknown_linux_gnu),
340     ("mips-unknown-linux-gnu", mips_unknown_linux_gnu),
341     ("mips64-unknown-linux-gnuabi64", mips64_unknown_linux_gnuabi64),
342     ("mips64el-unknown-linux-gnuabi64", mips64el_unknown_linux_gnuabi64),
343     ("mipsisa32r6-unknown-linux-gnu", mipsisa32r6_unknown_linux_gnu),
344     ("mipsisa32r6el-unknown-linux-gnu", mipsisa32r6el_unknown_linux_gnu),
345     ("mipsisa64r6-unknown-linux-gnuabi64", mipsisa64r6_unknown_linux_gnuabi64),
346     ("mipsisa64r6el-unknown-linux-gnuabi64", mipsisa64r6el_unknown_linux_gnuabi64),
347     ("mipsel-unknown-linux-gnu", mipsel_unknown_linux_gnu),
348     ("powerpc-unknown-linux-gnu", powerpc_unknown_linux_gnu),
349     ("powerpc-unknown-linux-gnuspe", powerpc_unknown_linux_gnuspe),
350     ("powerpc-unknown-linux-musl", powerpc_unknown_linux_musl),
351     ("powerpc64-unknown-linux-gnu", powerpc64_unknown_linux_gnu),
352     ("powerpc64-unknown-linux-musl", powerpc64_unknown_linux_musl),
353     ("powerpc64le-unknown-linux-gnu", powerpc64le_unknown_linux_gnu),
354     ("powerpc64le-unknown-linux-musl", powerpc64le_unknown_linux_musl),
355     ("s390x-unknown-linux-gnu", s390x_unknown_linux_gnu),
356     ("sparc-unknown-linux-gnu", sparc_unknown_linux_gnu),
357     ("sparc64-unknown-linux-gnu", sparc64_unknown_linux_gnu),
358     ("arm-unknown-linux-gnueabi", arm_unknown_linux_gnueabi),
359     ("arm-unknown-linux-gnueabihf", arm_unknown_linux_gnueabihf),
360     ("arm-unknown-linux-musleabi", arm_unknown_linux_musleabi),
361     ("arm-unknown-linux-musleabihf", arm_unknown_linux_musleabihf),
362     ("armv4t-unknown-linux-gnueabi", armv4t_unknown_linux_gnueabi),
363     ("armv5te-unknown-linux-gnueabi", armv5te_unknown_linux_gnueabi),
364     ("armv5te-unknown-linux-musleabi", armv5te_unknown_linux_musleabi),
365     ("armv7-unknown-linux-gnueabi", armv7_unknown_linux_gnueabi),
366     ("armv7-unknown-linux-gnueabihf", armv7_unknown_linux_gnueabihf),
367     ("thumbv7neon-unknown-linux-gnueabihf", thumbv7neon_unknown_linux_gnueabihf),
368     ("thumbv7neon-unknown-linux-musleabihf", thumbv7neon_unknown_linux_musleabihf),
369     ("armv7-unknown-linux-musleabi", armv7_unknown_linux_musleabi),
370     ("armv7-unknown-linux-musleabihf", armv7_unknown_linux_musleabihf),
371     ("aarch64-unknown-linux-gnu", aarch64_unknown_linux_gnu),
372     ("aarch64-unknown-linux-musl", aarch64_unknown_linux_musl),
373     ("x86_64-unknown-linux-musl", x86_64_unknown_linux_musl),
374     ("i686-unknown-linux-musl", i686_unknown_linux_musl),
375     ("i586-unknown-linux-musl", i586_unknown_linux_musl),
376     ("mips-unknown-linux-musl", mips_unknown_linux_musl),
377     ("mipsel-unknown-linux-musl", mipsel_unknown_linux_musl),
378     ("mips64-unknown-linux-muslabi64", mips64_unknown_linux_muslabi64),
379     ("mips64el-unknown-linux-muslabi64", mips64el_unknown_linux_muslabi64),
380     ("hexagon-unknown-linux-musl", hexagon_unknown_linux_musl),
381
382     ("mips-unknown-linux-uclibc", mips_unknown_linux_uclibc),
383     ("mipsel-unknown-linux-uclibc", mipsel_unknown_linux_uclibc),
384
385     ("i686-linux-android", i686_linux_android),
386     ("x86_64-linux-android", x86_64_linux_android),
387     ("arm-linux-androideabi", arm_linux_androideabi),
388     ("armv7-linux-androideabi", armv7_linux_androideabi),
389     ("thumbv7neon-linux-androideabi", thumbv7neon_linux_androideabi),
390     ("aarch64-linux-android", aarch64_linux_android),
391
392     ("x86_64-linux-kernel", x86_64_linux_kernel),
393
394     ("aarch64-unknown-freebsd", aarch64_unknown_freebsd),
395     ("armv6-unknown-freebsd", armv6_unknown_freebsd),
396     ("armv7-unknown-freebsd", armv7_unknown_freebsd),
397     ("i686-unknown-freebsd", i686_unknown_freebsd),
398     ("powerpc64-unknown-freebsd", powerpc64_unknown_freebsd),
399     ("x86_64-unknown-freebsd", x86_64_unknown_freebsd),
400
401     ("x86_64-unknown-dragonfly", x86_64_unknown_dragonfly),
402
403     ("aarch64-unknown-openbsd", aarch64_unknown_openbsd),
404     ("i686-unknown-openbsd", i686_unknown_openbsd),
405     ("sparc64-unknown-openbsd", sparc64_unknown_openbsd),
406     ("x86_64-unknown-openbsd", x86_64_unknown_openbsd),
407
408     ("aarch64-unknown-netbsd", aarch64_unknown_netbsd),
409     ("armv6-unknown-netbsd-eabihf", armv6_unknown_netbsd_eabihf),
410     ("armv7-unknown-netbsd-eabihf", armv7_unknown_netbsd_eabihf),
411     ("i686-unknown-netbsd", i686_unknown_netbsd),
412     ("powerpc-unknown-netbsd", powerpc_unknown_netbsd),
413     ("sparc64-unknown-netbsd", sparc64_unknown_netbsd),
414     ("x86_64-unknown-netbsd", x86_64_unknown_netbsd),
415     ("x86_64-rumprun-netbsd", x86_64_rumprun_netbsd),
416
417     ("i686-unknown-haiku", i686_unknown_haiku),
418     ("x86_64-unknown-haiku", x86_64_unknown_haiku),
419
420     ("x86_64-apple-darwin", x86_64_apple_darwin),
421     ("i686-apple-darwin", i686_apple_darwin),
422
423     ("aarch64-fuchsia", aarch64_fuchsia),
424     ("x86_64-fuchsia", x86_64_fuchsia),
425
426     ("x86_64-unknown-l4re-uclibc", x86_64_unknown_l4re_uclibc),
427
428     ("aarch64-unknown-redox", aarch64_unknown_redox),
429     ("x86_64-unknown-redox", x86_64_unknown_redox),
430
431     ("i386-apple-ios", i386_apple_ios),
432     ("x86_64-apple-ios", x86_64_apple_ios),
433     ("aarch64-apple-ios", aarch64_apple_ios),
434     ("armv7-apple-ios", armv7_apple_ios),
435     ("armv7s-apple-ios", armv7s_apple_ios),
436     ("x86_64-apple-ios-macabi", x86_64_apple_ios_macabi),
437
438     ("armebv7r-none-eabi", armebv7r_none_eabi),
439     ("armebv7r-none-eabihf", armebv7r_none_eabihf),
440     ("armv7r-none-eabi", armv7r_none_eabi),
441     ("armv7r-none-eabihf", armv7r_none_eabihf),
442
443     // `x86_64-pc-solaris` is an alias for `x86_64_sun_solaris` for backwards compatibility reasons.
444     // (See <https://github.com/rust-lang/rust/issues/40531>.)
445     ("x86_64-sun-solaris", "x86_64-pc-solaris", x86_64_sun_solaris),
446     ("sparcv9-sun-solaris", sparcv9_sun_solaris),
447
448     ("x86_64-pc-windows-gnu", x86_64_pc_windows_gnu),
449     ("i686-pc-windows-gnu", i686_pc_windows_gnu),
450     ("i686-uwp-windows-gnu", i686_uwp_windows_gnu),
451     ("x86_64-uwp-windows-gnu", x86_64_uwp_windows_gnu),
452
453     ("aarch64-pc-windows-msvc", aarch64_pc_windows_msvc),
454     ("aarch64-uwp-windows-msvc", aarch64_uwp_windows_msvc),
455     ("x86_64-pc-windows-msvc", x86_64_pc_windows_msvc),
456     ("x86_64-uwp-windows-msvc", x86_64_uwp_windows_msvc),
457     ("i686-pc-windows-msvc", i686_pc_windows_msvc),
458     ("i686-uwp-windows-msvc", i686_uwp_windows_msvc),
459     ("i586-pc-windows-msvc", i586_pc_windows_msvc),
460     ("thumbv7a-pc-windows-msvc", thumbv7a_pc_windows_msvc),
461
462     ("asmjs-unknown-emscripten", asmjs_unknown_emscripten),
463     ("wasm32-unknown-emscripten", wasm32_unknown_emscripten),
464     ("wasm32-unknown-unknown", wasm32_unknown_unknown),
465     ("wasm32-wasi", wasm32_wasi),
466
467     ("thumbv6m-none-eabi", thumbv6m_none_eabi),
468     ("thumbv7m-none-eabi", thumbv7m_none_eabi),
469     ("thumbv7em-none-eabi", thumbv7em_none_eabi),
470     ("thumbv7em-none-eabihf", thumbv7em_none_eabihf),
471     ("thumbv8m.base-none-eabi", thumbv8m_base_none_eabi),
472     ("thumbv8m.main-none-eabi", thumbv8m_main_none_eabi),
473     ("thumbv8m.main-none-eabihf", thumbv8m_main_none_eabihf),
474
475     ("msp430-none-elf", msp430_none_elf),
476
477     ("aarch64-unknown-cloudabi", aarch64_unknown_cloudabi),
478     ("armv7-unknown-cloudabi-eabihf", armv7_unknown_cloudabi_eabihf),
479     ("i686-unknown-cloudabi", i686_unknown_cloudabi),
480     ("x86_64-unknown-cloudabi", x86_64_unknown_cloudabi),
481
482     ("aarch64-unknown-hermit", aarch64_unknown_hermit),
483     ("x86_64-unknown-hermit", x86_64_unknown_hermit),
484     ("x86_64-unknown-hermit-kernel", x86_64_unknown_hermit_kernel),
485
486     ("riscv32i-unknown-none-elf", riscv32i_unknown_none_elf),
487     ("riscv32imc-unknown-none-elf", riscv32imc_unknown_none_elf),
488     ("riscv32imac-unknown-none-elf", riscv32imac_unknown_none_elf),
489     ("riscv64imac-unknown-none-elf", riscv64imac_unknown_none_elf),
490     ("riscv64gc-unknown-none-elf", riscv64gc_unknown_none_elf),
491     ("riscv64gc-unknown-linux-gnu", riscv64gc_unknown_linux_gnu),
492
493     ("aarch64-unknown-none", aarch64_unknown_none),
494     ("aarch64-unknown-none-softfloat", aarch64_unknown_none_softfloat),
495
496     ("x86_64-fortanix-unknown-sgx", x86_64_fortanix_unknown_sgx),
497
498     ("x86_64-unknown-uefi", x86_64_unknown_uefi),
499     ("i686-unknown-uefi", i686_unknown_uefi),
500
501     ("nvptx64-nvidia-cuda", nvptx64_nvidia_cuda),
502
503     ("i686-wrs-vxworks", i686_wrs_vxworks),
504     ("x86_64-wrs-vxworks", x86_64_wrs_vxworks),
505     ("armv7-wrs-vxworks-eabihf", armv7_wrs_vxworks_eabihf),
506     ("aarch64-wrs-vxworks", aarch64_wrs_vxworks),
507     ("powerpc-wrs-vxworks", powerpc_wrs_vxworks),
508     ("powerpc-wrs-vxworks-spe", powerpc_wrs_vxworks_spe),
509     ("powerpc64-wrs-vxworks", powerpc64_wrs_vxworks),
510 }
511
512 /// Everything `rustc` knows about how to compile for a specific target.
513 ///
514 /// Every field here must be specified, and has no default value.
515 #[derive(PartialEq, Clone, Debug)]
516 pub struct Target {
517     /// Target triple to pass to LLVM.
518     pub llvm_target: String,
519     /// String to use as the `target_endian` `cfg` variable.
520     pub target_endian: String,
521     /// String to use as the `target_pointer_width` `cfg` variable.
522     pub target_pointer_width: String,
523     /// Width of c_int type
524     pub target_c_int_width: String,
525     /// OS name to use for conditional compilation.
526     pub target_os: String,
527     /// Environment name to use for conditional compilation.
528     pub target_env: String,
529     /// Vendor name to use for conditional compilation.
530     pub target_vendor: String,
531     /// Architecture to use for ABI considerations. Valid options include: "x86",
532     /// "x86_64", "arm", "aarch64", "mips", "powerpc", "powerpc64", and others.
533     pub arch: String,
534     /// [Data layout](http://llvm.org/docs/LangRef.html#data-layout) to pass to LLVM.
535     pub data_layout: String,
536     /// Linker flavor
537     pub linker_flavor: LinkerFlavor,
538     /// Optional settings with defaults.
539     pub options: TargetOptions,
540 }
541
542 pub trait HasTargetSpec {
543     fn target_spec(&self) -> &Target;
544 }
545
546 impl HasTargetSpec for Target {
547     fn target_spec(&self) -> &Target {
548         self
549     }
550 }
551
552 /// Optional aspects of a target specification.
553 ///
554 /// This has an implementation of `Default`, see each field for what the default is. In general,
555 /// these try to take "minimal defaults" that don't assume anything about the runtime they run in.
556 #[derive(PartialEq, Clone, Debug)]
557 pub struct TargetOptions {
558     /// Whether the target is built-in or loaded from a custom target specification.
559     pub is_builtin: bool,
560
561     /// Linker to invoke
562     pub linker: Option<String>,
563
564     /// LLD flavor
565     pub lld_flavor: LldFlavor,
566
567     /// Linker arguments that are passed *before* any user-defined libraries.
568     pub pre_link_args: LinkArgs, // ... unconditionally
569     pub pre_link_args_crt: LinkArgs, // ... when linking with a bundled crt
570     /// Objects to link before all others, always found within the
571     /// sysroot folder.
572     pub pre_link_objects_exe: Vec<String>, // ... when linking an executable, unconditionally
573     pub pre_link_objects_exe_crt: Vec<String>, // ... when linking an executable with a bundled crt
574     pub pre_link_objects_dll: Vec<String>, // ... when linking a dylib
575     /// Linker arguments that are unconditionally passed after any
576     /// user-defined but before post_link_objects. Standard platform
577     /// libraries that should be always be linked to, usually go here.
578     pub late_link_args: LinkArgs,
579     /// Objects to link after all others, always found within the
580     /// sysroot folder.
581     pub post_link_objects: Vec<String>, // ... unconditionally
582     pub post_link_objects_crt: Vec<String>, // ... when linking with a bundled crt
583     /// Linker arguments that are unconditionally passed *after* any
584     /// user-defined libraries.
585     pub post_link_args: LinkArgs,
586
587     /// Environment variables to be set for the linker invocation.
588     pub link_env: Vec<(String, String)>,
589     /// Environment variables to be removed for the linker invocation.
590     pub link_env_remove: Vec<String>,
591
592     /// Extra arguments to pass to the external assembler (when used)
593     pub asm_args: Vec<String>,
594
595     /// Default CPU to pass to LLVM. Corresponds to `llc -mcpu=$cpu`. Defaults
596     /// to "generic".
597     pub cpu: String,
598     /// Default target features to pass to LLVM. These features will *always* be
599     /// passed, and cannot be disabled even via `-C`. Corresponds to `llc
600     /// -mattr=$features`.
601     pub features: String,
602     /// Whether dynamic linking is available on this target. Defaults to false.
603     pub dynamic_linking: bool,
604     /// If dynamic linking is available, whether only cdylibs are supported.
605     pub only_cdylib: bool,
606     /// Whether executables are available on this target. iOS, for example, only allows static
607     /// libraries. Defaults to false.
608     pub executables: bool,
609     /// Relocation model to use in object file. Corresponds to `llc
610     /// -relocation-model=$relocation_model`. Defaults to "pic".
611     pub relocation_model: String,
612     /// Code model to use. Corresponds to `llc -code-model=$code_model`.
613     pub code_model: Option<String>,
614     /// TLS model to use. Options are "global-dynamic" (default), "local-dynamic", "initial-exec"
615     /// and "local-exec". This is similar to the -ftls-model option in GCC/Clang.
616     pub tls_model: String,
617     /// Do not emit code that uses the "red zone", if the ABI has one. Defaults to false.
618     pub disable_redzone: bool,
619     /// Eliminate frame pointers from stack frames if possible. Defaults to true.
620     pub eliminate_frame_pointer: bool,
621     /// Emit each function in its own section. Defaults to true.
622     pub function_sections: bool,
623     /// String to prepend to the name of every dynamic library. Defaults to "lib".
624     pub dll_prefix: String,
625     /// String to append to the name of every dynamic library. Defaults to ".so".
626     pub dll_suffix: String,
627     /// String to append to the name of every executable.
628     pub exe_suffix: String,
629     /// String to prepend to the name of every static library. Defaults to "lib".
630     pub staticlib_prefix: String,
631     /// String to append to the name of every static library. Defaults to ".a".
632     pub staticlib_suffix: String,
633     /// OS family to use for conditional compilation. Valid options: "unix", "windows".
634     pub target_family: Option<String>,
635     /// Whether the target toolchain's ABI supports returning small structs as an integer.
636     pub abi_return_struct_as_int: bool,
637     /// Whether the target toolchain is like macOS's. Only useful for compiling against iOS/macOS,
638     /// in particular running dsymutil and some other stuff like `-dead_strip`. Defaults to false.
639     pub is_like_osx: bool,
640     /// Whether the target toolchain is like Solaris's.
641     /// Only useful for compiling against Illumos/Solaris,
642     /// as they have a different set of linker flags. Defaults to false.
643     pub is_like_solaris: bool,
644     /// Whether the target toolchain is like Windows'. Only useful for compiling against Windows,
645     /// only really used for figuring out how to find libraries, since Windows uses its own
646     /// library naming convention. Defaults to false.
647     pub is_like_windows: bool,
648     pub is_like_msvc: bool,
649     /// Whether the target toolchain is like Android's. Only useful for compiling against Android.
650     /// Defaults to false.
651     pub is_like_android: bool,
652     /// Whether the target toolchain is like Emscripten's. Only useful for compiling with
653     /// Emscripten toolchain.
654     /// Defaults to false.
655     pub is_like_emscripten: bool,
656     /// Whether the target toolchain is like Fuchsia's.
657     pub is_like_fuchsia: bool,
658     /// Whether the linker support GNU-like arguments such as -O. Defaults to false.
659     pub linker_is_gnu: bool,
660     /// The MinGW toolchain has a known issue that prevents it from correctly
661     /// handling COFF object files with more than 2<sup>15</sup> sections. Since each weak
662     /// symbol needs its own COMDAT section, weak linkage implies a large
663     /// number sections that easily exceeds the given limit for larger
664     /// codebases. Consequently we want a way to disallow weak linkage on some
665     /// platforms.
666     pub allows_weak_linkage: bool,
667     /// Whether the linker support rpaths or not. Defaults to false.
668     pub has_rpath: bool,
669     /// Whether to disable linking to the default libraries, typically corresponds
670     /// to `-nodefaultlibs`. Defaults to true.
671     pub no_default_libraries: bool,
672     /// Dynamically linked executables can be compiled as position independent
673     /// if the default relocation model of position independent code is not
674     /// changed. This is a requirement to take advantage of ASLR, as otherwise
675     /// the functions in the executable are not randomized and can be used
676     /// during an exploit of a vulnerability in any code.
677     pub position_independent_executables: bool,
678     /// Determines if the target always requires using the PLT for indirect
679     /// library calls or not. This controls the default value of the `-Z plt` flag.
680     pub needs_plt: bool,
681     /// Either partial, full, or off. Full RELRO makes the dynamic linker
682     /// resolve all symbols at startup and marks the GOT read-only before
683     /// starting the program, preventing overwriting the GOT.
684     pub relro_level: RelroLevel,
685     /// Format that archives should be emitted in. This affects whether we use
686     /// LLVM to assemble an archive or fall back to the system linker, and
687     /// currently only "gnu" is used to fall into LLVM. Unknown strings cause
688     /// the system linker to be used.
689     pub archive_format: String,
690     /// Is asm!() allowed? Defaults to true.
691     pub allow_asm: bool,
692     /// Whether the target uses a custom unwind resumption routine.
693     /// By default LLVM lowers `resume` instructions into calls to `_Unwind_Resume`
694     /// defined in libgcc. If this option is enabled, the target must provide
695     /// `eh_unwind_resume` lang item.
696     pub custom_unwind_resume: bool,
697     /// Whether the runtime startup code requires the `main` function be passed
698     /// `argc` and `argv` values.
699     pub main_needs_argc_argv: bool,
700
701     /// Flag indicating whether ELF TLS (e.g., #[thread_local]) is available for
702     /// this target.
703     pub has_elf_tls: bool,
704     // This is mainly for easy compatibility with emscripten.
705     // If we give emcc .o files that are actually .bc files it
706     // will 'just work'.
707     pub obj_is_bitcode: bool,
708
709     // LLVM can't produce object files for this target. Instead, we'll make LLVM
710     // emit assembly and then use `gcc` to turn that assembly into an object
711     // file
712     pub no_integrated_as: bool,
713
714     /// Don't use this field; instead use the `.min_atomic_width()` method.
715     pub min_atomic_width: Option<u64>,
716
717     /// Don't use this field; instead use the `.max_atomic_width()` method.
718     pub max_atomic_width: Option<u64>,
719
720     /// Whether the target supports atomic CAS operations natively
721     pub atomic_cas: bool,
722
723     /// Panic strategy: "unwind" or "abort"
724     pub panic_strategy: PanicStrategy,
725
726     /// A blacklist of ABIs unsupported by the current target. Note that generic
727     /// ABIs are considered to be supported on all platforms and cannot be blacklisted.
728     pub abi_blacklist: Vec<Abi>,
729
730     /// Whether or not linking dylibs to a static CRT is allowed.
731     pub crt_static_allows_dylibs: bool,
732     /// Whether or not the CRT is statically linked by default.
733     pub crt_static_default: bool,
734     /// Whether or not crt-static is respected by the compiler (or is a no-op).
735     pub crt_static_respected: bool,
736
737     /// Whether or not stack probes (__rust_probestack) are enabled
738     pub stack_probes: bool,
739
740     /// The minimum alignment for global symbols.
741     pub min_global_align: Option<u64>,
742
743     /// Default number of codegen units to use in debug mode
744     pub default_codegen_units: Option<u64>,
745
746     /// Whether to generate trap instructions in places where optimization would
747     /// otherwise produce control flow that falls through into unrelated memory.
748     pub trap_unreachable: bool,
749
750     /// This target requires everything to be compiled with LTO to emit a final
751     /// executable, aka there is no native linker for this target.
752     pub requires_lto: bool,
753
754     /// This target has no support for threads.
755     pub singlethread: bool,
756
757     /// Whether library functions call lowering/optimization is disabled in LLVM
758     /// for this target unconditionally.
759     pub no_builtins: bool,
760
761     /// The codegen backend to use for this target, typically "llvm"
762     pub codegen_backend: String,
763
764     /// The default visibility for symbols in this target should be "hidden"
765     /// rather than "default"
766     pub default_hidden_visibility: bool,
767
768     /// Whether or not bitcode is embedded in object files
769     pub embed_bitcode: bool,
770
771     /// Whether a .debug_gdb_scripts section will be added to the output object file
772     pub emit_debug_gdb_scripts: bool,
773
774     /// Whether or not to unconditionally `uwtable` attributes on functions,
775     /// typically because the platform needs to unwind for things like stack
776     /// unwinders.
777     pub requires_uwtable: bool,
778
779     /// Whether or not SIMD types are passed by reference in the Rust ABI,
780     /// typically required if a target can be compiled with a mixed set of
781     /// target features. This is `true` by default, and `false` for targets like
782     /// wasm32 where the whole program either has simd or not.
783     pub simd_types_indirect: bool,
784
785     /// Pass a list of symbol which should be exported in the dylib to the linker.
786     pub limit_rdylib_exports: bool,
787
788     /// If set, have the linker export exactly these symbols, instead of using
789     /// the usual logic to figure this out from the crate itself.
790     pub override_export_symbols: Option<Vec<String>>,
791
792     /// Determines how or whether the MergeFunctions LLVM pass should run for
793     /// this target. Either "disabled", "trampolines", or "aliases".
794     /// The MergeFunctions pass is generally useful, but some targets may need
795     /// to opt out. The default is "aliases".
796     ///
797     /// Workaround for: https://github.com/rust-lang/rust/issues/57356
798     pub merge_functions: MergeFunctions,
799
800     /// Use platform dependent mcount function
801     pub target_mcount: String,
802
803     /// LLVM ABI name, corresponds to the '-mabi' parameter available in multilib C compilers
804     pub llvm_abiname: String,
805
806     /// Whether or not RelaxElfRelocation flag will be passed to the linker
807     pub relax_elf_relocations: bool,
808
809     /// Additional arguments to pass to LLVM, similar to the `-C llvm-args` codegen option.
810     pub llvm_args: Vec<String>,
811 }
812
813 impl Default for TargetOptions {
814     /// Creates a set of "sane defaults" for any target. This is still
815     /// incomplete, and if used for compilation, will certainly not work.
816     fn default() -> TargetOptions {
817         TargetOptions {
818             is_builtin: false,
819             linker: option_env!("CFG_DEFAULT_LINKER").map(|s| s.to_string()),
820             lld_flavor: LldFlavor::Ld,
821             pre_link_args: LinkArgs::new(),
822             pre_link_args_crt: LinkArgs::new(),
823             post_link_args: LinkArgs::new(),
824             asm_args: Vec::new(),
825             cpu: "generic".to_string(),
826             features: String::new(),
827             dynamic_linking: false,
828             only_cdylib: false,
829             executables: false,
830             relocation_model: "pic".to_string(),
831             code_model: None,
832             tls_model: "global-dynamic".to_string(),
833             disable_redzone: false,
834             eliminate_frame_pointer: true,
835             function_sections: true,
836             dll_prefix: "lib".to_string(),
837             dll_suffix: ".so".to_string(),
838             exe_suffix: String::new(),
839             staticlib_prefix: "lib".to_string(),
840             staticlib_suffix: ".a".to_string(),
841             target_family: None,
842             abi_return_struct_as_int: false,
843             is_like_osx: false,
844             is_like_solaris: false,
845             is_like_windows: false,
846             is_like_android: false,
847             is_like_emscripten: false,
848             is_like_msvc: false,
849             is_like_fuchsia: false,
850             linker_is_gnu: false,
851             allows_weak_linkage: true,
852             has_rpath: false,
853             no_default_libraries: true,
854             position_independent_executables: false,
855             needs_plt: false,
856             relro_level: RelroLevel::None,
857             pre_link_objects_exe: Vec::new(),
858             pre_link_objects_exe_crt: Vec::new(),
859             pre_link_objects_dll: Vec::new(),
860             post_link_objects: Vec::new(),
861             post_link_objects_crt: Vec::new(),
862             late_link_args: LinkArgs::new(),
863             link_env: Vec::new(),
864             link_env_remove: Vec::new(),
865             archive_format: "gnu".to_string(),
866             custom_unwind_resume: false,
867             main_needs_argc_argv: true,
868             allow_asm: true,
869             has_elf_tls: false,
870             obj_is_bitcode: false,
871             no_integrated_as: false,
872             min_atomic_width: None,
873             max_atomic_width: None,
874             atomic_cas: true,
875             panic_strategy: PanicStrategy::Unwind,
876             abi_blacklist: vec![],
877             crt_static_allows_dylibs: false,
878             crt_static_default: false,
879             crt_static_respected: false,
880             stack_probes: false,
881             min_global_align: None,
882             default_codegen_units: None,
883             trap_unreachable: true,
884             requires_lto: false,
885             singlethread: false,
886             no_builtins: false,
887             codegen_backend: "llvm".to_string(),
888             default_hidden_visibility: false,
889             embed_bitcode: false,
890             emit_debug_gdb_scripts: true,
891             requires_uwtable: false,
892             simd_types_indirect: true,
893             limit_rdylib_exports: true,
894             override_export_symbols: None,
895             merge_functions: MergeFunctions::Aliases,
896             target_mcount: "mcount".to_string(),
897             llvm_abiname: "".to_string(),
898             relax_elf_relocations: false,
899             llvm_args: vec![],
900         }
901     }
902 }
903
904 impl Target {
905     /// Given a function ABI, turn it into the correct ABI for this target.
906     pub fn adjust_abi(&self, abi: Abi) -> Abi {
907         match abi {
908             Abi::System => {
909                 if self.options.is_like_windows && self.arch == "x86" {
910                     Abi::Stdcall
911                 } else {
912                     Abi::C
913                 }
914             }
915             // These ABI kinds are ignored on non-x86 Windows targets.
916             // See https://docs.microsoft.com/en-us/cpp/cpp/argument-passing-and-naming-conventions
917             // and the individual pages for __stdcall et al.
918             Abi::Stdcall | Abi::Fastcall | Abi::Vectorcall | Abi::Thiscall => {
919                 if self.options.is_like_windows && self.arch != "x86" { Abi::C } else { abi }
920             }
921             Abi::EfiApi => {
922                 if self.arch == "x86_64" {
923                     Abi::Win64
924                 } else {
925                     Abi::C
926                 }
927             }
928             abi => abi,
929         }
930     }
931
932     /// Minimum integer size in bits that this target can perform atomic
933     /// operations on.
934     pub fn min_atomic_width(&self) -> u64 {
935         self.options.min_atomic_width.unwrap_or(8)
936     }
937
938     /// Maximum integer size in bits that this target can perform atomic
939     /// operations on.
940     pub fn max_atomic_width(&self) -> u64 {
941         self.options.max_atomic_width.unwrap_or_else(|| self.target_pointer_width.parse().unwrap())
942     }
943
944     pub fn is_abi_supported(&self, abi: Abi) -> bool {
945         abi.generic() || !self.options.abi_blacklist.contains(&abi)
946     }
947
948     /// Loads a target descriptor from a JSON object.
949     pub fn from_json(obj: Json) -> TargetResult {
950         // While ugly, this code must remain this way to retain
951         // compatibility with existing JSON fields and the internal
952         // expected naming of the Target and TargetOptions structs.
953         // To ensure compatibility is retained, the built-in targets
954         // are round-tripped through this code to catch cases where
955         // the JSON parser is not updated to match the structs.
956
957         let get_req_field = |name: &str| {
958             obj.find(name)
959                 .map(|s| s.as_string())
960                 .and_then(|os| os.map(|s| s.to_string()))
961                 .ok_or_else(|| format!("Field {} in target specification is required", name))
962         };
963
964         let get_opt_field = |name: &str, default: &str| {
965             obj.find(name)
966                 .and_then(|s| s.as_string())
967                 .map(|s| s.to_string())
968                 .unwrap_or_else(|| default.to_string())
969         };
970
971         let mut base = Target {
972             llvm_target: get_req_field("llvm-target")?,
973             target_endian: get_req_field("target-endian")?,
974             target_pointer_width: get_req_field("target-pointer-width")?,
975             target_c_int_width: get_req_field("target-c-int-width")?,
976             data_layout: get_req_field("data-layout")?,
977             arch: get_req_field("arch")?,
978             target_os: get_req_field("os")?,
979             target_env: get_opt_field("env", ""),
980             target_vendor: get_opt_field("vendor", "unknown"),
981             linker_flavor: LinkerFlavor::from_str(&*get_req_field("linker-flavor")?)
982                 .ok_or_else(|| format!("linker flavor must be {}", LinkerFlavor::one_of()))?,
983             options: Default::default(),
984         };
985
986         macro_rules! key {
987             ($key_name:ident) => ( {
988                 let name = (stringify!($key_name)).replace("_", "-");
989                 obj.find(&name[..]).map(|o| o.as_string()
990                                     .map(|s| base.options.$key_name = s.to_string()));
991             } );
992             ($key_name:ident, bool) => ( {
993                 let name = (stringify!($key_name)).replace("_", "-");
994                 obj.find(&name[..])
995                     .map(|o| o.as_boolean()
996                          .map(|s| base.options.$key_name = s));
997             } );
998             ($key_name:ident, Option<u64>) => ( {
999                 let name = (stringify!($key_name)).replace("_", "-");
1000                 obj.find(&name[..])
1001                     .map(|o| o.as_u64()
1002                          .map(|s| base.options.$key_name = Some(s)));
1003             } );
1004             ($key_name:ident, MergeFunctions) => ( {
1005                 let name = (stringify!($key_name)).replace("_", "-");
1006                 obj.find(&name[..]).and_then(|o| o.as_string().and_then(|s| {
1007                     match s.parse::<MergeFunctions>() {
1008                         Ok(mergefunc) => base.options.$key_name = mergefunc,
1009                         _ => return Some(Err(format!("'{}' is not a valid value for \
1010                                                       merge-functions. Use 'disabled', \
1011                                                       'trampolines', or 'aliases'.",
1012                                                       s))),
1013                     }
1014                     Some(Ok(()))
1015                 })).unwrap_or(Ok(()))
1016             } );
1017             ($key_name:ident, PanicStrategy) => ( {
1018                 let name = (stringify!($key_name)).replace("_", "-");
1019                 obj.find(&name[..]).and_then(|o| o.as_string().and_then(|s| {
1020                     match s {
1021                         "unwind" => base.options.$key_name = PanicStrategy::Unwind,
1022                         "abort" => base.options.$key_name = PanicStrategy::Abort,
1023                         _ => return Some(Err(format!("'{}' is not a valid value for \
1024                                                       panic-strategy. Use 'unwind' or 'abort'.",
1025                                                      s))),
1026                 }
1027                 Some(Ok(()))
1028             })).unwrap_or(Ok(()))
1029             } );
1030             ($key_name:ident, RelroLevel) => ( {
1031                 let name = (stringify!($key_name)).replace("_", "-");
1032                 obj.find(&name[..]).and_then(|o| o.as_string().and_then(|s| {
1033                     match s.parse::<RelroLevel>() {
1034                         Ok(level) => base.options.$key_name = level,
1035                         _ => return Some(Err(format!("'{}' is not a valid value for \
1036                                                       relro-level. Use 'full', 'partial, or 'off'.",
1037                                                       s))),
1038                     }
1039                     Some(Ok(()))
1040                 })).unwrap_or(Ok(()))
1041             } );
1042             ($key_name:ident, list) => ( {
1043                 let name = (stringify!($key_name)).replace("_", "-");
1044                 obj.find(&name[..]).map(|o| o.as_array()
1045                     .map(|v| base.options.$key_name = v.iter()
1046                         .map(|a| a.as_string().unwrap().to_string()).collect()
1047                         )
1048                     );
1049             } );
1050             ($key_name:ident, opt_list) => ( {
1051                 let name = (stringify!($key_name)).replace("_", "-");
1052                 obj.find(&name[..]).map(|o| o.as_array()
1053                     .map(|v| base.options.$key_name = Some(v.iter()
1054                         .map(|a| a.as_string().unwrap().to_string()).collect())
1055                         )
1056                     );
1057             } );
1058             ($key_name:ident, optional) => ( {
1059                 let name = (stringify!($key_name)).replace("_", "-");
1060                 if let Some(o) = obj.find(&name[..]) {
1061                     base.options.$key_name = o
1062                         .as_string()
1063                         .map(|s| s.to_string() );
1064                 }
1065             } );
1066             ($key_name:ident, LldFlavor) => ( {
1067                 let name = (stringify!($key_name)).replace("_", "-");
1068                 obj.find(&name[..]).and_then(|o| o.as_string().and_then(|s| {
1069                     if let Some(flavor) = LldFlavor::from_str(&s) {
1070                         base.options.$key_name = flavor;
1071                     } else {
1072                         return Some(Err(format!(
1073                             "'{}' is not a valid value for lld-flavor. \
1074                              Use 'darwin', 'gnu', 'link' or 'wasm.",
1075                             s)))
1076                     }
1077                     Some(Ok(()))
1078                 })).unwrap_or(Ok(()))
1079             } );
1080             ($key_name:ident, LinkerFlavor) => ( {
1081                 let name = (stringify!($key_name)).replace("_", "-");
1082                 obj.find(&name[..]).and_then(|o| o.as_string().map(|s| {
1083                     LinkerFlavor::from_str(&s).ok_or_else(|| {
1084                         Err(format!("'{}' is not a valid value for linker-flavor. \
1085                                      Use 'em', 'gcc', 'ld' or 'msvc.", s))
1086                     })
1087                 })).unwrap_or(Ok(()))
1088             } );
1089             ($key_name:ident, link_args) => ( {
1090                 let name = (stringify!($key_name)).replace("_", "-");
1091                 if let Some(val) = obj.find(&name[..]) {
1092                     let obj = val.as_object().ok_or_else(|| format!("{}: expected a \
1093                         JSON object with fields per linker-flavor.", name))?;
1094                     let mut args = LinkArgs::new();
1095                     for (k, v) in obj {
1096                         let flavor = LinkerFlavor::from_str(&k).ok_or_else(|| {
1097                             format!("{}: '{}' is not a valid value for linker-flavor. \
1098                                      Use 'em', 'gcc', 'ld' or 'msvc'", name, k)
1099                         })?;
1100
1101                         let v = v.as_array().ok_or_else(||
1102                             format!("{}.{}: expected a JSON array", name, k)
1103                         )?.iter().enumerate()
1104                             .map(|(i,s)| {
1105                                 let s = s.as_string().ok_or_else(||
1106                                     format!("{}.{}[{}]: expected a JSON string", name, k, i))?;
1107                                 Ok(s.to_owned())
1108                             })
1109                             .collect::<Result<Vec<_>, String>>()?;
1110
1111                         args.insert(flavor, v);
1112                     }
1113                     base.options.$key_name = args;
1114                 }
1115             } );
1116             ($key_name:ident, env) => ( {
1117                 let name = (stringify!($key_name)).replace("_", "-");
1118                 if let Some(a) = obj.find(&name[..]).and_then(|o| o.as_array()) {
1119                     for o in a {
1120                         if let Some(s) = o.as_string() {
1121                             let p = s.split('=').collect::<Vec<_>>();
1122                             if p.len() == 2 {
1123                                 let k = p[0].to_string();
1124                                 let v = p[1].to_string();
1125                                 base.options.$key_name.push((k, v));
1126                             }
1127                         }
1128                     }
1129                 }
1130             } );
1131         }
1132
1133         key!(is_builtin, bool);
1134         key!(linker, optional);
1135         key!(lld_flavor, LldFlavor)?;
1136         key!(pre_link_args, link_args);
1137         key!(pre_link_args_crt, link_args);
1138         key!(pre_link_objects_exe, list);
1139         key!(pre_link_objects_exe_crt, list);
1140         key!(pre_link_objects_dll, list);
1141         key!(late_link_args, link_args);
1142         key!(post_link_objects, list);
1143         key!(post_link_objects_crt, list);
1144         key!(post_link_args, link_args);
1145         key!(link_env, env);
1146         key!(link_env_remove, list);
1147         key!(asm_args, list);
1148         key!(cpu);
1149         key!(features);
1150         key!(dynamic_linking, bool);
1151         key!(only_cdylib, bool);
1152         key!(executables, bool);
1153         key!(relocation_model);
1154         key!(code_model, optional);
1155         key!(tls_model);
1156         key!(disable_redzone, bool);
1157         key!(eliminate_frame_pointer, bool);
1158         key!(function_sections, bool);
1159         key!(dll_prefix);
1160         key!(dll_suffix);
1161         key!(exe_suffix);
1162         key!(staticlib_prefix);
1163         key!(staticlib_suffix);
1164         key!(target_family, optional);
1165         key!(abi_return_struct_as_int, bool);
1166         key!(is_like_osx, bool);
1167         key!(is_like_solaris, bool);
1168         key!(is_like_windows, bool);
1169         key!(is_like_msvc, bool);
1170         key!(is_like_emscripten, bool);
1171         key!(is_like_android, bool);
1172         key!(is_like_fuchsia, bool);
1173         key!(linker_is_gnu, bool);
1174         key!(allows_weak_linkage, bool);
1175         key!(has_rpath, bool);
1176         key!(no_default_libraries, bool);
1177         key!(position_independent_executables, bool);
1178         key!(needs_plt, bool);
1179         key!(relro_level, RelroLevel)?;
1180         key!(archive_format);
1181         key!(allow_asm, bool);
1182         key!(custom_unwind_resume, bool);
1183         key!(main_needs_argc_argv, bool);
1184         key!(has_elf_tls, bool);
1185         key!(obj_is_bitcode, bool);
1186         key!(no_integrated_as, bool);
1187         key!(max_atomic_width, Option<u64>);
1188         key!(min_atomic_width, Option<u64>);
1189         key!(atomic_cas, bool);
1190         key!(panic_strategy, PanicStrategy)?;
1191         key!(crt_static_allows_dylibs, bool);
1192         key!(crt_static_default, bool);
1193         key!(crt_static_respected, bool);
1194         key!(stack_probes, bool);
1195         key!(min_global_align, Option<u64>);
1196         key!(default_codegen_units, Option<u64>);
1197         key!(trap_unreachable, bool);
1198         key!(requires_lto, bool);
1199         key!(singlethread, bool);
1200         key!(no_builtins, bool);
1201         key!(codegen_backend);
1202         key!(default_hidden_visibility, bool);
1203         key!(embed_bitcode, bool);
1204         key!(emit_debug_gdb_scripts, bool);
1205         key!(requires_uwtable, bool);
1206         key!(simd_types_indirect, bool);
1207         key!(limit_rdylib_exports, bool);
1208         key!(override_export_symbols, opt_list);
1209         key!(merge_functions, MergeFunctions)?;
1210         key!(target_mcount);
1211         key!(llvm_abiname);
1212         key!(relax_elf_relocations, bool);
1213         key!(llvm_args, list);
1214
1215         if let Some(array) = obj.find("abi-blacklist").and_then(Json::as_array) {
1216             for name in array.iter().filter_map(|abi| abi.as_string()) {
1217                 match lookup_abi(name) {
1218                     Some(abi) => {
1219                         if abi.generic() {
1220                             return Err(format!(
1221                                 "The ABI \"{}\" is considered to be supported on \
1222                                                 all targets and cannot be blacklisted",
1223                                 abi
1224                             ));
1225                         }
1226
1227                         base.options.abi_blacklist.push(abi)
1228                     }
1229                     None => {
1230                         return Err(format!("Unknown ABI \"{}\" in target specification", name));
1231                     }
1232                 }
1233             }
1234         }
1235
1236         Ok(base)
1237     }
1238
1239     /// Search RUST_TARGET_PATH for a JSON file specifying the given target
1240     /// triple. Note that it could also just be a bare filename already, so also
1241     /// check for that. If one of the hardcoded targets we know about, just
1242     /// return it directly.
1243     ///
1244     /// The error string could come from any of the APIs called, including
1245     /// filesystem access and JSON decoding.
1246     pub fn search(target_triple: &TargetTriple) -> Result<Target, String> {
1247         use rustc_serialize::json;
1248         use std::env;
1249         use std::fs;
1250
1251         fn load_file(path: &Path) -> Result<Target, String> {
1252             let contents = fs::read(path).map_err(|e| e.to_string())?;
1253             let obj = json::from_reader(&mut &contents[..]).map_err(|e| e.to_string())?;
1254             Target::from_json(obj)
1255         }
1256
1257         match *target_triple {
1258             TargetTriple::TargetTriple(ref target_triple) => {
1259                 // check if triple is in list of supported targets
1260                 match load_specific(target_triple) {
1261                     Ok(t) => return Ok(t),
1262                     Err(LoadTargetError::BuiltinTargetNotFound(_)) => (),
1263                     Err(LoadTargetError::Other(e)) => return Err(e),
1264                 }
1265
1266                 // search for a file named `target_triple`.json in RUST_TARGET_PATH
1267                 let path = {
1268                     let mut target = target_triple.to_string();
1269                     target.push_str(".json");
1270                     PathBuf::from(target)
1271                 };
1272
1273                 let target_path = env::var_os("RUST_TARGET_PATH").unwrap_or_default();
1274
1275                 // FIXME 16351: add a sane default search path?
1276
1277                 for dir in env::split_paths(&target_path) {
1278                     let p = dir.join(&path);
1279                     if p.is_file() {
1280                         return load_file(&p);
1281                     }
1282                 }
1283                 Err(format!("Could not find specification for target {:?}", target_triple))
1284             }
1285             TargetTriple::TargetPath(ref target_path) => {
1286                 if target_path.is_file() {
1287                     return load_file(&target_path);
1288                 }
1289                 Err(format!("Target path {:?} is not a valid file", target_path))
1290             }
1291         }
1292     }
1293 }
1294
1295 impl ToJson for Target {
1296     fn to_json(&self) -> Json {
1297         let mut d = BTreeMap::new();
1298         let default: TargetOptions = Default::default();
1299
1300         macro_rules! target_val {
1301             ($attr:ident) => {{
1302                 let name = (stringify!($attr)).replace("_", "-");
1303                 d.insert(name, self.$attr.to_json());
1304             }};
1305             ($attr:ident, $key_name:expr) => {{
1306                 let name = $key_name;
1307                 d.insert(name.to_string(), self.$attr.to_json());
1308             }};
1309         }
1310
1311         macro_rules! target_option_val {
1312             ($attr:ident) => {{
1313                 let name = (stringify!($attr)).replace("_", "-");
1314                 if default.$attr != self.options.$attr {
1315                     d.insert(name, self.options.$attr.to_json());
1316                 }
1317             }};
1318             ($attr:ident, $key_name:expr) => {{
1319                 let name = $key_name;
1320                 if default.$attr != self.options.$attr {
1321                     d.insert(name.to_string(), self.options.$attr.to_json());
1322                 }
1323             }};
1324             (link_args - $attr:ident) => {{
1325                 let name = (stringify!($attr)).replace("_", "-");
1326                 if default.$attr != self.options.$attr {
1327                     let obj = self
1328                         .options
1329                         .$attr
1330                         .iter()
1331                         .map(|(k, v)| (k.desc().to_owned(), v.clone()))
1332                         .collect::<BTreeMap<_, _>>();
1333                     d.insert(name, obj.to_json());
1334                 }
1335             }};
1336             (env - $attr:ident) => {{
1337                 let name = (stringify!($attr)).replace("_", "-");
1338                 if default.$attr != self.options.$attr {
1339                     let obj = self
1340                         .options
1341                         .$attr
1342                         .iter()
1343                         .map(|&(ref k, ref v)| k.clone() + "=" + &v)
1344                         .collect::<Vec<_>>();
1345                     d.insert(name, obj.to_json());
1346                 }
1347             }};
1348         }
1349
1350         target_val!(llvm_target);
1351         target_val!(target_endian);
1352         target_val!(target_pointer_width);
1353         target_val!(target_c_int_width);
1354         target_val!(arch);
1355         target_val!(target_os, "os");
1356         target_val!(target_env, "env");
1357         target_val!(target_vendor, "vendor");
1358         target_val!(data_layout);
1359         target_val!(linker_flavor);
1360
1361         target_option_val!(is_builtin);
1362         target_option_val!(linker);
1363         target_option_val!(lld_flavor);
1364         target_option_val!(link_args - pre_link_args);
1365         target_option_val!(link_args - pre_link_args_crt);
1366         target_option_val!(pre_link_objects_exe);
1367         target_option_val!(pre_link_objects_exe_crt);
1368         target_option_val!(pre_link_objects_dll);
1369         target_option_val!(link_args - late_link_args);
1370         target_option_val!(post_link_objects);
1371         target_option_val!(post_link_objects_crt);
1372         target_option_val!(link_args - post_link_args);
1373         target_option_val!(env - link_env);
1374         target_option_val!(link_env_remove);
1375         target_option_val!(asm_args);
1376         target_option_val!(cpu);
1377         target_option_val!(features);
1378         target_option_val!(dynamic_linking);
1379         target_option_val!(only_cdylib);
1380         target_option_val!(executables);
1381         target_option_val!(relocation_model);
1382         target_option_val!(code_model);
1383         target_option_val!(tls_model);
1384         target_option_val!(disable_redzone);
1385         target_option_val!(eliminate_frame_pointer);
1386         target_option_val!(function_sections);
1387         target_option_val!(dll_prefix);
1388         target_option_val!(dll_suffix);
1389         target_option_val!(exe_suffix);
1390         target_option_val!(staticlib_prefix);
1391         target_option_val!(staticlib_suffix);
1392         target_option_val!(target_family);
1393         target_option_val!(abi_return_struct_as_int);
1394         target_option_val!(is_like_osx);
1395         target_option_val!(is_like_solaris);
1396         target_option_val!(is_like_windows);
1397         target_option_val!(is_like_msvc);
1398         target_option_val!(is_like_emscripten);
1399         target_option_val!(is_like_android);
1400         target_option_val!(is_like_fuchsia);
1401         target_option_val!(linker_is_gnu);
1402         target_option_val!(allows_weak_linkage);
1403         target_option_val!(has_rpath);
1404         target_option_val!(no_default_libraries);
1405         target_option_val!(position_independent_executables);
1406         target_option_val!(needs_plt);
1407         target_option_val!(relro_level);
1408         target_option_val!(archive_format);
1409         target_option_val!(allow_asm);
1410         target_option_val!(custom_unwind_resume);
1411         target_option_val!(main_needs_argc_argv);
1412         target_option_val!(has_elf_tls);
1413         target_option_val!(obj_is_bitcode);
1414         target_option_val!(no_integrated_as);
1415         target_option_val!(min_atomic_width);
1416         target_option_val!(max_atomic_width);
1417         target_option_val!(atomic_cas);
1418         target_option_val!(panic_strategy);
1419         target_option_val!(crt_static_allows_dylibs);
1420         target_option_val!(crt_static_default);
1421         target_option_val!(crt_static_respected);
1422         target_option_val!(stack_probes);
1423         target_option_val!(min_global_align);
1424         target_option_val!(default_codegen_units);
1425         target_option_val!(trap_unreachable);
1426         target_option_val!(requires_lto);
1427         target_option_val!(singlethread);
1428         target_option_val!(no_builtins);
1429         target_option_val!(codegen_backend);
1430         target_option_val!(default_hidden_visibility);
1431         target_option_val!(embed_bitcode);
1432         target_option_val!(emit_debug_gdb_scripts);
1433         target_option_val!(requires_uwtable);
1434         target_option_val!(simd_types_indirect);
1435         target_option_val!(limit_rdylib_exports);
1436         target_option_val!(override_export_symbols);
1437         target_option_val!(merge_functions);
1438         target_option_val!(target_mcount);
1439         target_option_val!(llvm_abiname);
1440         target_option_val!(relax_elf_relocations);
1441         target_option_val!(llvm_args);
1442
1443         if default.abi_blacklist != self.options.abi_blacklist {
1444             d.insert(
1445                 "abi-blacklist".to_string(),
1446                 self.options
1447                     .abi_blacklist
1448                     .iter()
1449                     .map(|&name| Abi::name(name).to_json())
1450                     .collect::<Vec<_>>()
1451                     .to_json(),
1452             );
1453         }
1454
1455         Json::Object(d)
1456     }
1457 }
1458
1459 /// Either a target triple string or a path to a JSON file.
1460 #[derive(PartialEq, Clone, Debug, Hash, RustcEncodable, RustcDecodable)]
1461 pub enum TargetTriple {
1462     TargetTriple(String),
1463     TargetPath(PathBuf),
1464 }
1465
1466 impl TargetTriple {
1467     /// Creates a target triple from the passed target triple string.
1468     pub fn from_triple(triple: &str) -> Self {
1469         TargetTriple::TargetTriple(triple.to_string())
1470     }
1471
1472     /// Creates a target triple from the passed target path.
1473     pub fn from_path(path: &Path) -> Result<Self, io::Error> {
1474         let canonicalized_path = path.canonicalize()?;
1475         Ok(TargetTriple::TargetPath(canonicalized_path))
1476     }
1477
1478     /// Returns a string triple for this target.
1479     ///
1480     /// If this target is a path, the file name (without extension) is returned.
1481     pub fn triple(&self) -> &str {
1482         match *self {
1483             TargetTriple::TargetTriple(ref triple) => triple,
1484             TargetTriple::TargetPath(ref path) => path
1485                 .file_stem()
1486                 .expect("target path must not be empty")
1487                 .to_str()
1488                 .expect("target path must be valid unicode"),
1489         }
1490     }
1491
1492     /// Returns an extended string triple for this target.
1493     ///
1494     /// If this target is a path, a hash of the path is appended to the triple returned
1495     /// by `triple()`.
1496     pub fn debug_triple(&self) -> String {
1497         use std::collections::hash_map::DefaultHasher;
1498         use std::hash::{Hash, Hasher};
1499
1500         let triple = self.triple();
1501         if let TargetTriple::TargetPath(ref path) = *self {
1502             let mut hasher = DefaultHasher::new();
1503             path.hash(&mut hasher);
1504             let hash = hasher.finish();
1505             format!("{}-{}", triple, hash)
1506         } else {
1507             triple.to_owned()
1508         }
1509     }
1510 }
1511
1512 impl fmt::Display for TargetTriple {
1513     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1514         write!(f, "{}", self.debug_triple())
1515     }
1516 }