rucc_target/lib.rs
1//! Target descriptions: triples, and the facts about a target that the rest of the
2//! compiler reads rather than hard-codes.
3//!
4//! Design: `spec/12-abi-and-runtime.md`. Layer rank 2, see `spec/18-package-layout.md`.
5//!
6//! The rule from `spec/18-package-layout.md` section 18.2 is that there is no
7//! target-specific code outside this crate, `rucc-tuple`, `rucc-abi`, `rucc-sysroot` and the
8//! per-target rule sets. Those four are one group rather than four exceptions: the tuple names
9//! a machine, `rucc-abi` says what its types look like and how its calls are made,
10//! `rucc-sysroot` says where its headers and libraries are, and this crate is what the rest of
11//! the compiler reads all of it through. Everything a pass
12//! needs to know about a target is a field it can read here. That rule is what makes the
13//! claim in `spec/10-backend.md` testable, namely that a new target is a rule set and a few
14//! data files, and `M10` brings up a fourth target specifically to put a number on it.
15//!
16//! [`TargetInfo::call`] is the other half of that rule and the one with teeth. How a structure
17//! travels between a caller and a callee is the target's answer rather than C's, so the walk to
18//! the IR flattens a C type into a [`Shape`] and asks here what form it takes. Every psABI rule
19//! is behind [`Call`] and nothing outside this crate matches on an architecture to find one.
20//! The rules themselves are `rucc-abi`'s, as data rather than as code, and this crate hands the
21//! question over to them. It answers [`None`] on a target whose ABI is not written down yet,
22//! which today is AArch64 on Windows and nothing else.
23//!
24//! # Status
25//!
26//! Triple parsing and the basic data model are real, which is what `rucc --print-config`
27//! reports, and so is the argument classification of every psABI in
28//! `spec/12-abi-and-runtime.md` sections 12.2 to 12.5, which `rucc-abi` describes as data and
29//! this crate selects between. x86-64's register file is written down,
30//! in [`x86_64`], along with what each of the two conventions over it does with each register,
31//! what each of its machine instructions does with its operands, and which instructions a frame
32//! is made of, which is [`FrameInsts`]. AArch64's register file and the two conventions over it,
33//! AAPCS64 and Apple's, are in [`aarch64`], and its instructions arrive with its backend in `M6`.
34//! RISC-V's arrive with its own. Machine models land in `M6`.
35//!
36//! This crate is tier 3 in `spec/18-package-layout.md` section 18.5: its Rust API is
37//! explicitly unstable and will change without a major version bump.
38
39#![doc(html_root_url = "https://docs.rs/rucc-target/0.11.5")]
40
41use std::fmt;
42use std::str::FromStr;
43
44use rucc_abi::DataLayout;
45use rucc_base::float::Format;
46use rucc_tuple::{self as tuple, TargetTuple};
47
48pub mod aarch64;
49mod abi;
50mod bits;
51mod branch;
52mod flags;
53mod frame;
54mod machine;
55mod operand;
56mod regs;
57mod short;
58mod timing;
59pub mod x86_64;
60
61pub use crate::abi::{AbiDescription, Arg, Call, Kind, Pass, Piece, Scalar, Shape, Slot, Variadic};
62pub use crate::bits::BitInsts;
63pub use crate::branch::{BranchInsts, Fusion, Move};
64pub use crate::flags::{Compare, FlagInsts, Reader, Reads, Zeroing};
65pub use crate::frame::{ClassMoves, FrameInsts, Pair, Probe};
66pub use crate::machine::{Address, MachineInsts};
67pub use crate::operand::{Constraint, OperandDesc, Role};
68pub use crate::regs::{
69 CallRegs, Chkstk, ClassInfo, Guard, PhysReg, Places, RegClass, RegFile, Segment, Trace, Where,
70};
71pub use crate::short::{Copied, Narrowed, ShortInsts, Stepped, Tested, Zeroed};
72pub use crate::timing::{Timing, TimingInsts, Unit};
73
74/// A target architecture.
75#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
76// Deliberately not `#[non_exhaustive]`. Adding a variant here has to break every
77// match that needs to change, in this workspace and in anyone else's code. That is
78// the property `spec/10-backend.md` section 10.8 is claiming when it says adding a
79// target is a data change: the compiler tells you every place the data is read.
80pub enum Arch {
81 /// x86-64, the first target and the one `M3` brings up.
82 X86_64,
83 /// AArch64, the second target, `M6`.
84 Aarch64,
85 /// 64-bit RISC-V. `spec/10-backend.md` calls this the middle-end canary, because it has
86 /// no condition codes and no complex addressing modes, so anything the middle end got
87 /// away with on x86-64 shows up here.
88 Riscv64,
89}
90
91impl Arch {
92 /// Pointer width in bits.
93 pub const fn pointer_width(self) -> u32 {
94 match self {
95 Arch::X86_64 | Arch::Aarch64 | Arch::Riscv64 => 64,
96 }
97 }
98
99 /// Whether the target is little-endian.
100 pub const fn is_little_endian(self) -> bool {
101 match self {
102 Arch::X86_64 | Arch::Aarch64 | Arch::Riscv64 => true,
103 }
104 }
105
106 /// The name as it appears in a triple.
107 pub const fn as_str(self) -> &'static str {
108 match self {
109 Arch::X86_64 => "x86_64",
110 Arch::Aarch64 => "aarch64",
111 Arch::Riscv64 => "riscv64",
112 }
113 }
114}
115
116/// The operating system a target runs on.
117#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
118// Deliberately not `#[non_exhaustive]`. Adding a variant here has to break every
119// match that needs to change, in this workspace and in anyone else's code. That is
120// the property `spec/10-backend.md` section 10.8 is claiming when it says adding a
121// target is a data change: the compiler tells you every place the data is read.
122pub enum Os {
123 /// Linux, hosted or freestanding.
124 Linux,
125 /// Apple platforms. `spec/12-abi-and-runtime.md` section 12.3 lists the four places
126 /// Apple diverges from AAPCS64, and every one of them is a real bug if missed.
127 Darwin,
128 /// Windows.
129 Windows,
130 /// No operating system, which is what `-ffreestanding` kernel work looks like.
131 None,
132}
133
134impl Os {
135 /// The name as it appears in a triple.
136 pub const fn as_str(self) -> &'static str {
137 match self {
138 Os::Linux => "linux",
139 Os::Darwin => "darwin",
140 Os::Windows => "windows",
141 Os::None => "none",
142 }
143 }
144
145 /// The object file format this operating system uses.
146 pub const fn object_format(self) -> ObjectFormat {
147 match self {
148 Os::Linux | Os::None => ObjectFormat::Elf,
149 Os::Darwin => ObjectFormat::MachO,
150 Os::Windows => ObjectFormat::Coff,
151 }
152 }
153}
154
155/// The C runtime and ABI variant.
156#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
157// Deliberately not `#[non_exhaustive]`. Adding a variant here has to break every
158// match that needs to change, in this workspace and in anyone else's code. That is
159// the property `spec/10-backend.md` section 10.8 is claiming when it says adding a
160// target is a data change: the compiler tells you every place the data is read.
161pub enum Env {
162 /// The default for the operating system.
163 None,
164 /// glibc.
165 Gnu,
166 /// musl.
167 Musl,
168 /// The MSVC ABI.
169 Msvc,
170}
171
172impl Env {
173 /// The name as it appears in a triple, if it appears at all.
174 pub const fn as_str(self) -> &'static str {
175 match self {
176 Env::None => "none",
177 Env::Gnu => "gnu",
178 Env::Musl => "musl",
179 Env::Msvc => "msvc",
180 }
181 }
182}
183
184/// The object file format to emit.
185#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
186// Deliberately not `#[non_exhaustive]`. Adding a variant here has to break every
187// match that needs to change, in this workspace and in anyone else's code. That is
188// the property `spec/10-backend.md` section 10.8 is claiming when it says adding a
189// target is a data change: the compiler tells you every place the data is read.
190pub enum ObjectFormat {
191 /// ELF.
192 Elf,
193 /// Mach-O.
194 MachO,
195 /// COFF.
196 Coff,
197 /// WebAssembly, which is a format for a module rather than for a machine's object file and
198 /// is in this list because the target table has two rows that emit one.
199 Wasm,
200}
201
202impl ObjectFormat {
203 /// The name used in diagnostics and in `--print-config`.
204 pub const fn as_str(self) -> &'static str {
205 match self {
206 ObjectFormat::Elf => "elf",
207 ObjectFormat::MachO => "macho",
208 ObjectFormat::Coff => "coff",
209 ObjectFormat::Wasm => "wasm",
210 }
211 }
212
213 /// The same format as [`rucc_tuple::ObjectFormat`] names it.
214 ///
215 /// The two enumerations exist because the tuple describes forty two targets and this crate
216 /// describes what the compiler emits for one, and they will stay separate for as long as that
217 /// is true. This is the one place they are put side by side.
218 #[must_use]
219 pub const fn from_tuple(format: tuple::ObjectFormat) -> Self {
220 match format {
221 tuple::ObjectFormat::Elf => ObjectFormat::Elf,
222 tuple::ObjectFormat::MachO => ObjectFormat::MachO,
223 tuple::ObjectFormat::Coff => ObjectFormat::Coff,
224 tuple::ObjectFormat::Wasm => ObjectFormat::Wasm,
225 }
226 }
227}
228
229/// A target triple.
230///
231/// We accept the LLVM-style `arch-vendor-os-env` form because that is what build systems
232/// pass, and we normalise it to the three fields we actually branch on. The vendor field is
233/// parsed and discarded: no decision in the compiler depends on it, and keeping it would
234/// invite one.
235#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
236pub struct Triple {
237 /// The architecture.
238 pub arch: Arch,
239 /// The operating system.
240 pub os: Os,
241 /// The runtime and ABI variant.
242 pub env: Env,
243}
244
245impl Triple {
246 /// A triple from its three parts.
247 pub const fn new(arch: Arch, os: Os, env: Env) -> Self {
248 Self { arch, os, env }
249 }
250
251 /// The same machine as a [`TargetTuple`], which is what the layout and ABI descriptions are
252 /// written over.
253 ///
254 /// The tuple carries ten fields and this carries three, so this fills the other seven in from
255 /// their defaults, and every one of those defaults is the answer for the targets this type can
256 /// spell. There is no `x32` here and no big-endian AArch64, so the data model and the byte
257 /// order follow the architecture, and the sub-architecture, the versions and the float ABI have
258 /// nothing to say about any of the combinations.
259 ///
260 /// The environment is narrowed rather than copied across. This type will hold
261 /// `Triple { os: Darwin, env: Gnu }`, because its parser takes the fields by content and
262 /// `aarch64-apple-darwin-gnu` is a string somebody can type, and that is not a machine: a
263 /// Darwin target has one libc and it is not glibc. A tuple refuses to describe one, so the
264 /// pairs that are not machines are mapped to the environment the operating system actually
265 /// has.
266 ///
267 /// # Panics
268 ///
269 /// Never, for a triple this type can hold, which `every_triple_describes_a_machine` checks by
270 /// building all forty eight of them.
271 #[must_use]
272 pub fn tuple(self) -> TargetTuple {
273 let arch = match self.arch {
274 Arch::X86_64 => tuple::Arch::X86_64,
275 Arch::Aarch64 => tuple::Arch::Aarch64,
276 Arch::Riscv64 => tuple::Arch::Riscv64,
277 };
278 let os = match self.os {
279 Os::Linux => tuple::Os::Linux,
280 // macOS rather than iOS, because the three field triple cannot tell them apart and
281 // this compiler is hosted on the one and not on the other.
282 Os::Darwin => tuple::Os::MacOs,
283 Os::Windows => tuple::Os::Windows,
284 Os::None => tuple::Os::None,
285 };
286 let env = match (self.os, self.env) {
287 (Os::Linux, Env::Musl) => tuple::Env::Musl,
288 (Os::Linux, _) => tuple::Env::Gnu,
289 // mingw-w64 is a real Windows environment and the one place `gnu` survives the
290 // narrowing, because it has a different `long double` from MSVC on the same OS.
291 (Os::Windows, Env::Gnu) => tuple::Env::Gnu,
292 (Os::Windows, _) => tuple::Env::Msvc,
293 // Darwin and freestanding have no libc to name.
294 (Os::Darwin | Os::None, _) => tuple::Env::None,
295 };
296 TargetTuple::builder(arch, os)
297 .env(env)
298 .build()
299 .expect("every triple this type can hold describes a machine")
300 }
301
302 /// The triple that describes the same machine as `target`, if this type can spell it.
303 ///
304 /// The inverse of [`Triple::tuple`], and computed by running that function over every triple
305 /// there is rather than by writing the narrowing out a second time. A second table would be a
306 /// second thing to keep in step, and the failure it invites is not a compile error: it is one
307 /// row of the matrix quietly answering as a neighbour.
308 ///
309 /// It returns `None` for most of the target table, and that is the honest answer rather than a
310 /// gap to be papered over. `rucc-abi` describes the scalar layout of all forty two rows, and
311 /// this type holds three fields with three architectures in the first, so seventeen of those
312 /// rows have a [`TargetInfo`] and the other twenty five do not. Anything that needs to lay a
313 /// record out for `s390x-linux-gnu` needs that gap closed rather than an approximation of it.
314 ///
315 /// The environment of the answer is the narrowed one, so the triple this gives back is the
316 /// canonical spelling of that machine: `Env::None` on Darwin and on a freestanding target,
317 /// never the `Env::Gnu` that a parser will accept from a string somebody typed.
318 #[must_use]
319 pub fn from_tuple(target: TargetTuple) -> Option<Triple> {
320 // Four triples narrow onto `x86_64-linux-gnu`, because a Darwin triple claiming glibc is
321 // a string somebody can type and not a machine. So a match is not enough on its own: the
322 // answer is the candidate whose environment came through the narrowing unchanged, and
323 // anything else is only a fallback for the day a narrowing loses a spelling entirely.
324 let mut fallback = None;
325 for arch in [Arch::X86_64, Arch::Aarch64, Arch::Riscv64] {
326 for os in [Os::Linux, Os::Darwin, Os::Windows, Os::None] {
327 for env in [Env::None, Env::Gnu, Env::Musl, Env::Msvc] {
328 let candidate = Triple::new(arch, os, env);
329 if candidate.tuple() != target {
330 continue;
331 }
332 // By name rather than by a match on the pair, so that an environment added to
333 // either enumeration does not need a line here. The one name the two spell
334 // differently is the absent one, which the tuple writes as nothing.
335 let survived = match env {
336 Env::None => target.env() == tuple::Env::None,
337 _ => env.as_str() == target.env().as_str(),
338 };
339 if survived {
340 return Some(candidate);
341 }
342 fallback.get_or_insert(candidate);
343 }
344 }
345 }
346 fallback
347 }
348
349 /// The triple of the machine this compiler is running on.
350 ///
351 /// Used as the default target, which is what makes `rucc hello.c` work with no flags.
352 /// Unknown host combinations are not an error here: they are reported by the driver,
353 /// where there is somewhere to report them to.
354 pub fn host() -> Option<Self> {
355 let arch = match std::env::consts::ARCH {
356 "x86_64" => Arch::X86_64,
357 "aarch64" => Arch::Aarch64,
358 "riscv64" => Arch::Riscv64,
359 _ => return None,
360 };
361 // Which libc this is matters, and `std::env::consts` does not say. A compiler built on
362 // Alpine and defaulting to `x86_64-unknown-linux-gnu` describes a machine it is not
363 // running on: musl and glibc disagree about `int_fast16_t` among other things, and a
364 // header that is written out of the predefined type names picks the disagreement up.
365 // The libc rucc itself was linked against is the best evidence available about the one
366 // the code it compiles will be linked against, and it is right on every machine where
367 // rucc was built for the machine it runs on.
368 let linux = if cfg!(target_env = "musl") { Env::Musl } else { Env::Gnu };
369 let (os, env) = match std::env::consts::OS {
370 "linux" => (Os::Linux, linux),
371 "macos" => (Os::Darwin, Env::None),
372 "windows" => (Os::Windows, Env::Msvc),
373 _ => return None,
374 };
375 Some(Self::new(arch, os, env))
376 }
377}
378
379impl fmt::Display for Triple {
380 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
381 // Always four fields, always the same spelling, because this string ends up in
382 // `--print-config` output that people diff.
383 write!(f, "{}-unknown-{}-{}", self.arch.as_str(), self.os.as_str(), self.env.as_str())
384 }
385}
386
387/// Why a triple failed to parse.
388#[derive(Debug, Clone, PartialEq, Eq)]
389pub struct ParseTripleError {
390 /// The triple as given.
391 pub input: String,
392 /// What specifically was not recognised.
393 pub reason: &'static str,
394}
395
396impl fmt::Display for ParseTripleError {
397 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
398 write!(f, "unsupported target triple `{}`: {}", self.input, self.reason)
399 }
400}
401
402impl std::error::Error for ParseTripleError {}
403
404impl FromStr for Triple {
405 type Err = ParseTripleError;
406
407 fn from_str(s: &str) -> Result<Self, Self::Err> {
408 let err = |reason| ParseTripleError { input: s.to_owned(), reason };
409 let mut parts = s.split('-');
410
411 let arch = match parts.next() {
412 Some("x86_64" | "amd64") => Arch::X86_64,
413 Some("aarch64" | "arm64") => Arch::Aarch64,
414 Some("riscv64") => Arch::Riscv64,
415 _ => return Err(err("unknown architecture")),
416 };
417
418 // The vendor field is optional in practice. `x86_64-linux-gnu` and
419 // `x86_64-unknown-linux-gnu` both occur in the wild and mean the same thing, so the
420 // remaining fields are matched by content rather than by position.
421 let rest: Vec<&str> = parts.collect();
422 let mut os = None;
423 let mut env = None;
424 for part in &rest {
425 match *part {
426 "linux" => os = Some(Os::Linux),
427 "darwin" | "macos" | "macosx" | "ios" => os = Some(Os::Darwin),
428 "windows" | "win32" => os = Some(Os::Windows),
429 // `none` is the one token that means different things in the two positions.
430 // In `x86_64-unknown-none-elf` it is the operating system; in
431 // `aarch64-apple-darwin-none` it is the environment. Which one it is depends
432 // on whether an operating system has already been seen, and that rule is what
433 // makes `Display` round-trip through `FromStr`.
434 "none" if os.is_none() => os = Some(Os::None),
435 "none" => env = Some(Env::None),
436 "elf" => os = os.or(Some(Os::None)),
437 "gnu" | "gnueabi" | "gnueabihf" => env = Some(Env::Gnu),
438 "musl" | "musleabi" | "musleabihf" => env = Some(Env::Musl),
439 "msvc" => env = Some(Env::Msvc),
440 _ => {}
441 }
442 }
443
444 let os = os.ok_or_else(|| err("unknown operating system"))?;
445 let env = env.unwrap_or(match os {
446 Os::Linux => Env::Gnu,
447 Os::Windows => Env::Msvc,
448 Os::Darwin | Os::None => Env::None,
449 });
450 Ok(Self::new(arch, os, env))
451 }
452}
453
454/// The facts about a target that the compiler reads instead of hard-coding.
455///
456/// This is the whole of what a pass is allowed to know about where its output will run.
457/// It grows, and every field added here is one fewer `#[cfg]` somewhere it should not be.
458#[derive(Debug, Clone, PartialEq, Eq)]
459#[non_exhaustive]
460pub struct TargetInfo {
461 /// The machine this describes, as the ten field tuple rather than as a three field triple.
462 ///
463 /// It is the tuple because a record layout is a question every row of the target table has an
464 /// answer to, and a triple can spell fifteen of the forty two. Nothing else in this type had
465 /// to change to widen it: every field below is already derived from `rucc-abi`'s description
466 /// of this tuple, and the ones that were not were the bugs.
467 pub tuple: TargetTuple,
468 /// The sizes, the alignments and the signedness this target's headers were written against.
469 ///
470 /// The widths below are views of this and the alignments are not, which is the reason it is
471 /// kept whole. A `long long` is eight bytes on every row of the table and is aligned to four
472 /// on System V i386 and to eight everywhere else, and no width can say that.
473 pub scalars: DataLayout,
474 /// Width of a pointer in bits.
475 pub pointer_width: u32,
476 /// Whether bytes are ordered little end first.
477 pub little_endian: bool,
478 /// Whether a bare `char` is signed.
479 ///
480 /// Signed on x86-64 and unsigned on AArch64 Linux, which is the classic source of code
481 /// that works on one and not the other, so it is data rather than an assumption.
482 pub char_is_signed: bool,
483 /// Width of `long` in bits. This is the field that separates the LP64 world from
484 /// Windows LLP64.
485 pub long_width: u32,
486 /// Width of `long double` in bits: 80 bits of x87 stored in 128 on every x86-64 target but
487 /// MSVC, 128 of true quad precision on AArch64 Linux and RISC-V, and 64 on Apple's AArch64 and
488 /// under MSVC.
489 ///
490 /// Apple's x86-64 is not one of the 64-bit ones, which is the trap. The change to a `double`
491 /// came with AArch64 and the Intel answer stayed as it was, so `x86_64-apple-darwin` and
492 /// `x86_64-unknown-linux-gnu` agree here and `aarch64-apple-darwin` is the odd one.
493 pub long_double_width: u32,
494 /// The format `long double` actually is, which the width does not say.
495 ///
496 /// It is 128 bits wide on SysV x86-64 and on AArch64 Linux and the two are not the same
497 /// type: one is the x87 eighty bit format padded out to sixteen bytes and the other is
498 /// true quad precision with a hundred and thirteen bits of significand. Anything that
499 /// converts a constant or folds one has to know which, and the width alone cannot say.
500 pub long_double_format: Format,
501 /// The format `_Float64x` is, which is the widest format the target has short of a software
502 /// one.
503 ///
504 /// It follows the architecture and not the operating system, which is what makes it worth a
505 /// field of its own next to `long double`. Apple and Windows define `long double` as a
506 /// `double` and neither of them takes `_Float64x` down with it: the type has to be wider
507 /// than a `_Float64`, so it is the x87 eighty bit format on x86-64 and quad precision on
508 /// AArch64 and RISC-V wherever it is written.
509 ///
510 /// [`None`] on a machine whose widest format is a `double`, which is 32-bit ARM and wasm32.
511 /// The type does not exist there and neither reference defines the macros that describe it,
512 /// so the honest answer is that there is no format rather than a `double` in its place.
513 pub float64x_format: Option<Format>,
514 /// Whether the target has `_Float16`.
515 ///
516 /// The named types are not all universal the way `_Float32` and `_Float64` are. gcc 13 has
517 /// this one on x86-64, AArch64 and RISC-V and does not have it on i686, armv7, ppc64le or
518 /// s390x, which was measured by compiling a declaration of it with each of those cross
519 /// compilers. The `__FLT16_*__` macros and the `f16` suffix are defined on exactly the rows
520 /// where the type is, so all three ask this one field.
521 ///
522 /// i686 is the row worth explaining. gcc aims at the baseline of the target rather than at
523 /// whatever chip is under it, and half precision on x86 needs SSE2, which is in the baseline
524 /// of x86-64 and not in the baseline of i686. So the two x86 rows disagree, and a `-msse2`
525 /// on the command line would move the 32-bit one, which is a thing this compiler has no
526 /// place to say yet.
527 pub has_float16: bool,
528 /// Whether the target has `_Float128`.
529 ///
530 /// Every row but 32-bit ARM among the seven measured against gcc 13. x86-64 and i686 have it
531 /// in software, and AArch64, RISC-V, s390x and ppc64le have it because quad precision is
532 /// already the format of something on those machines. armv7 has no format wider than a
533 /// `double` at all, so the type is not there and gcc says so.
534 ///
535 /// This is the ISO spelling. gcc's `__float128` is a narrower thing and is not this field:
536 /// that name exists on x86 and PowerPC only, and on AArch64, RISC-V and s390x gcc offers
537 /// `_Float128` in its place when a program writes it. `__SIZEOF_FLOAT128__` follows the
538 /// vendor name rather than the type, which is why it is missing on rows where the type is
539 /// there.
540 pub has_float128: bool,
541 /// Width of `wchar_t` in bits, which decides what a wide literal is encoded in.
542 ///
543 /// It is 16 on Windows, so a wide string there is UTF-16 and a character outside the basic
544 /// plane takes two elements, and 32 everywhere else, where a wide string is UTF-32 and no
545 /// character takes more than one.
546 pub wchar_width: u32,
547 /// Whether `wchar_t` is signed.
548 ///
549 /// x86-64 Linux makes it a signed `int` and AArch64 Linux makes it an `unsigned int`,
550 /// following the psABI's rule for plain `char`, so `L'\xffffffff'` is minus one on one of
551 /// them and four billion on the other.
552 pub wchar_is_signed: bool,
553 /// The granule a `_BitInt` wider than 64 bits is laid out in, in bits.
554 ///
555 /// Above 64 bits the psABIs stop treating a `_BitInt` like a standard integer type and
556 /// start treating it like an array of these, so its size is rounded up to a multiple of
557 /// this and its alignment is this. It is 64 on x86-64 and RISC-V and 128 on AArch64, which
558 /// is why `_BitInt(65)` is sixteen bytes aligned to eight on one and sixteen bytes aligned
559 /// to sixteen on the other. Measured with clang 18 on x86-64 Linux and clang on AArch64
560 /// Darwin rather than read off the documents.
561 pub bit_int_granule: u32,
562 /// The widest access, in bits, this machine performs atomically without taking a lock.
563 ///
564 /// It is what `__atomic_always_lock_free` and `__atomic_is_lock_free` answer from, and it is
565 /// a claim about what this compiler emits rather than about what the processor is capable of.
566 /// Sixty four on every target here. x86-64 does sixteen bytes atomically with `cmpxchg16b`,
567 /// which is not in the baseline the psABI names and which nothing in this compiler writes, and
568 /// AArch64 does the same with its pair instructions, which nothing writes either. A target
569 /// that answered yes for sixteen bytes and then called a library that has to take a lock for
570 /// them would have two answers to one question, and the wrong one is the one in the header.
571 pub lock_free_width: u32,
572 /// The object format to emit.
573 pub object_format: ObjectFormat,
574 /// How bit-fields are allocated into storage, which is the one record layout question where
575 /// two targets in this table run different algorithms rather than the same one over different
576 /// numbers.
577 pub bit_field_style: BitFieldStyle,
578 /// Whether an unnamed bit-field raises the record's alignment the way a named one does.
579 ///
580 /// Almost everywhere it does not, which is why `struct { char c; int :20; }` is four bytes
581 /// aligned to one on x86-64 and four aligned to four with the field named. AAPCS64 says
582 /// otherwise and says it for the zero width member too, so `struct { unsigned :0; }` is
583 /// aligned to four on AArch64 Linux and to one on Apple's AArch64, on Windows on AArch64, on
584 /// x86-64 and on RISC-V. Measured with the pinned reference across every row that has one,
585 /// because it is neither an architecture rule nor an operating system rule: it is the ABI, and
586 /// Apple and Microsoft each dropped it.
587 ///
588 /// Windows says yes as well, and there it is not AAPCS64 but Microsoft's own rule, which is
589 /// why the two facts are separate fields rather than one. In a `union` the Microsoft rule goes
590 /// further and no bit-field contributes alignment at all, named or not, so this field is only
591 /// half the answer there and [`BitFieldStyle`] carries the other half.
592 pub unnamed_bit_field_aligns: bool,
593 /// How large a record with no storage in it is, in bytes, before its alignment is applied.
594 ///
595 /// Zero everywhere but MSVC, where it is four. A `struct` with no members is not C at all, it
596 /// is a GNU extension, and C++ gives it a size of one, so there is no standard to read the
597 /// answer out of and the number has to come from whatever else compiles for the target. On
598 /// mingw that is GCC and the answer is zero. On MSVC it is clang, because MSVC itself rejects
599 /// the declaration outright, and clang's Microsoft record layout gives it four bytes and gives
600 /// an array of three of them twelve. So this is a fact about the environment and not about the
601 /// operating system, which is the one place in this type where those two come apart in that
602 /// direction.
603 ///
604 /// It covers a record with no members and a record whose only members occupy nothing, which is
605 /// the zero width bit-field, the zero length array and the flexible array member. All four
606 /// were measured and all four agree.
607 pub empty_record_size: u64,
608 /// What `__builtin_va_list` is, which is the type every `va_list` in every header is a
609 /// typedef of.
610 ///
611 /// [`None`] on a target whose answer is a type this crate does not build yet. 32-bit ARM's is
612 /// a structure of one pointer and s390x's is a structure of four members, and neither is any
613 /// of the four below. A target with no backend cannot compile a call to `va_arg` in any case,
614 /// so saying so beats naming a neighbour's type and having a header believe it.
615 pub va_list: Option<VaList>,
616 /// The registers the machine has, which is [`RegFile::EMPTY`] for an architecture nothing
617 /// has described yet.
618 pub regs: &'static RegFile,
619 /// Which registers the calling convention gives which job, or `None` while the
620 /// architecture has no register file to name them out of.
621 pub call_regs: Option<&'static CallRegs>,
622 /// How long this machine's instructions take, or `None` for an architecture with no backend.
623 ///
624 /// [`None`] rather than a model of a machine nobody measured, for the reason the two fields
625 /// above are: a scheduler told made up numbers about a processor has no way to find out they
626 /// were made up. `--print-config` prints [`TimingInsts::model`] off this, which is the first
627 /// thing anybody comparing two runs of a benchmark wants to know.
628 pub timing: Option<&'static TimingInsts>,
629}
630
631/// The type a target's `__builtin_va_list` is.
632///
633/// A variable argument list is the one place a psABI dictates a C type rather than how a type
634/// travels, and the four answers below are not four spellings of one thing: `sizeof(va_list)` is
635/// eight bytes on Apple's AArch64 and thirty two on Linux's, and on SysV x86-64 a `va_list` is an
636/// array, so a `va_list` passed to a function is passed as a pointer and one assigned to another
637/// is a constraint violation rather than a copy. Code in the wild depends on all of that.
638#[derive(Debug, Clone, Copy, PartialEq, Eq)]
639// Deliberately not `#[non_exhaustive]`, for the reason [`Arch`] is not: a fifth answer here is
640// a fifth type to build, and every place that builds one should stop compiling until it does.
641pub enum VaList {
642 /// `char *`, which is what a target whose arguments are all passed in one place needs: the
643 /// address of the next argument and nothing else. Apple's AArch64 and both Windows targets.
644 CharPointer,
645 /// `void *`, which is the RISC-V psABI's spelling of the same thing.
646 VoidPointer,
647 /// `struct __va_list_tag { unsigned gp_offset, fp_offset; void *overflow_arg_area,
648 /// *reg_save_area; } [1]`, the SysV x86-64 one. Arguments arrive in two register files and
649 /// on the stack, so the list is a cursor into each, and the array of one is what makes
650 /// passing it to `vfprintf` pass its address.
651 SysV,
652 /// `struct __va_list { void *__stack, *__gr_top, *__vr_top; int __gr_offs, __vr_offs; }`,
653 /// the AAPCS64 one. The same idea as SysV's, counting down from the top of each save area
654 /// rather than up from the bottom, and not an array.
655 Aapcs,
656}
657
658impl VaList {
659 /// The name used in `--print-config`.
660 #[must_use]
661 pub const fn as_str(self) -> &'static str {
662 match self {
663 VaList::CharPointer => "char-pointer",
664 VaList::VoidPointer => "void-pointer",
665 VaList::SysV => "sysv",
666 VaList::Aapcs => "aapcs",
667 }
668 }
669}
670
671/// How a target allocates bit-fields into storage.
672///
673/// Everything else about laying a record out is one algorithm reading different sizes and
674/// alignments per target. This is not: the two answers below place the same members at different
675/// offsets and give the same struct different sizes, and no amount of changing what an `int` is
676/// turns one into the other. `struct { unsigned m:3; char c; }` is four bytes with the `char` at
677/// offset one under the first and eight bytes with it at offset four under the second.
678#[derive(Debug, Clone, Copy, PartialEq, Eq)]
679// Deliberately not `#[non_exhaustive]`, for the reason [`Arch`] is not: a third answer here is a
680// third algorithm to write, and every place that chooses between them should stop compiling until
681// it does.
682pub enum BitFieldStyle {
683 /// The Itanium C++ ABI's rule, which every psABI in this table except Windows follows. A
684 /// bit-field goes at the next free bit unless that would make it span more storage than its
685 /// own type occupies, in which case it starts at the next boundary of its alignment. Storage
686 /// is shared between members of different types freely, so `struct { char a:3; unsigned b:3; }`
687 /// is four bytes with both fields in the first one.
688 Itanium,
689 /// Microsoft's rule, which both Windows environments follow and not only MSVC. A run of
690 /// bit-fields is allocated into a unit the size and alignment of the declared type, and the
691 /// unit is closed both when the next member's declared type has a different size and when the
692 /// field does not fit in what is left. An ordinary member closes a unit too, and the closed
693 /// unit occupies its whole declared size whether or not the bits were used. So the same struct
694 /// is eight bytes: a one byte unit for the `char` and a four byte one for the `unsigned`,
695 /// aligned to four.
696 Microsoft,
697}
698
699impl BitFieldStyle {
700 /// The name used in `--print-config`.
701 #[must_use]
702 pub const fn as_str(self) -> &'static str {
703 match self {
704 BitFieldStyle::Itanium => "itanium",
705 BitFieldStyle::Microsoft => "microsoft",
706 }
707 }
708}
709
710/// A width in bits, from a size in bytes.
711///
712/// The fields here are widths because that is what a predefined macro and a diagnostic say, and a
713/// layout is sizes because that is what `sizeof` says. The conversion belongs at the one boundary
714/// between them rather than at every reader of one of these fields.
715fn bits(bytes: u64) -> u32 {
716 u32::try_from(bytes * 8).expect("no standard type is four billion bits wide")
717}
718
719impl TargetInfo {
720 /// The description of `triple`.
721 ///
722 /// The three field triple spells fifteen of the forty two rows of the target table, which is
723 /// every row with a backend and every row a driver will be handed today, so this is what the
724 /// compiler proper calls. [`TargetInfo::for_tuple`] is the one that answers for the whole
725 /// table.
726 #[must_use]
727 pub fn new(triple: Triple) -> Self {
728 Self::for_tuple(triple.tuple())
729 }
730
731 /// The description of `target`.
732 ///
733 /// Every row of the target table has one of these, whether or not there is a backend that can
734 /// emit code for it, because laying a record out and reading a header are questions that do
735 /// not need a backend. The fields that genuinely need one say so: [`TargetInfo::regs`] is
736 /// empty and [`TargetInfo::call_regs`] is [`None`] for an architecture whose register file is
737 /// not written down.
738 #[must_use]
739 pub fn for_tuple(target: TargetTuple) -> Self {
740 // Every size, alignment and signedness below is `rucc-abi`'s answer over the ten field
741 // tuple rather than a match written out here. They were written out here, and the copy was
742 // wrong about `x86_64-apple-darwin`, whose `long double` is the eighty bit x87 format in
743 // sixteen bytes and not a `double`: Apple made that change on AArch64 and left the Intel
744 // answer alone, and a rule keyed on the operating system takes both.
745 let layout = DataLayout::for_target(target);
746 // RISC-V and everything else with a row and no backend have register files and this crate
747 // has not written them down yet. They arrive with the backends that need them. AArch64's is
748 // here ahead of its backend, because the convention over it is what the ABI tests and the
749 // debugging information read, and [`TargetInfo::regs`] having it does not make anything
750 // try to generate code: that is `rucc_codegen::Machine::for_target`'s decision.
751 let regs = match target.arch() {
752 tuple::Arch::X86_64 => &x86_64::REGS,
753 tuple::Arch::Aarch64 => &aarch64::REGS,
754 _ => &RegFile::EMPTY,
755 };
756 let call_regs = match (target.arch(), target.os(), target.env()) {
757 // The environment, and this is the one question it decides about a convention. What the
758 // two Windows runtimes disagree about is the name of the routine a large frame reaches
759 // its pages by calling, which is in the runtime rather than in the compiler, so a build
760 // against mingw-w64 and a build against Microsoft's runtime want different names for the
761 // same routine.
762 (tuple::Arch::X86_64, tuple::Os::Windows, tuple::Env::Gnu) => Some(&x86_64::MINGW64),
763 (tuple::Arch::X86_64, tuple::Os::Windows, _) => Some(&x86_64::WIN64),
764 // Apple's x86-64 follows SysV, and its divergences from it are on AArch64.
765 (tuple::Arch::X86_64, _, _) => Some(&x86_64::SYSV),
766 // Windows on AArch64 reserves `x18` and passes a variadic `double` in an integer
767 // register, and `rucc_abi` has no description of it yet, so it has no registers either.
768 (tuple::Arch::Aarch64, tuple::Os::Windows, _) => None,
769 (tuple::Arch::Aarch64, os, _) if os.is_darwin() => Some(&aarch64::DARWIN),
770 (tuple::Arch::Aarch64, _, _) => Some(&aarch64::AAPCS64),
771 _ => None,
772 };
773 // The same rule as the register file. A model is a measurement of a processor, and there
774 // is nothing to measure until there is a backend emitting instructions for it.
775 let timing = match target.arch() {
776 tuple::Arch::X86_64 => Some(&x86_64::TIMING),
777 _ => None,
778 };
779 Self {
780 tuple: target,
781 scalars: layout,
782 pointer_width: bits(layout.pointer_size),
783 little_endian: target.is_little_endian(),
784 char_is_signed: layout.char_is_signed,
785 long_width: bits(layout.long_size),
786 long_double_width: bits(layout.long_double.size),
787 long_double_format: layout.long_double.format,
788 float64x_format: float64x_format(target),
789 has_float16: has_float16(target),
790 has_float128: has_float128(target),
791 wchar_width: bits(layout.wchar_size),
792 wchar_is_signed: layout.wchar_is_signed,
793 bit_int_granule: bit_int_granule(target),
794 // Eight bytes everywhere, for the reason the field gives: it is the widest access this
795 // compiler writes an instruction for, and every one of these machines has a wider one
796 // that nothing here reaches. It is a claim about the code this compiler emits, so the
797 // day a backend emits a sixteen byte atomic is the day this stops being one number.
798 lock_free_width: 64,
799 object_format: ObjectFormat::from_tuple(target.object_format()),
800 bit_field_style: bit_field_style(target),
801 unnamed_bit_field_aligns: unnamed_bit_field_aligns(target),
802 // The environment and not the operating system, so `x86_64-windows-gnu` keeps GCC's
803 // zero while `x86_64-windows-msvc` takes clang's four.
804 empty_record_size: match target.env() {
805 tuple::Env::Msvc => 4,
806 _ => 0,
807 },
808 va_list: va_list(target),
809 regs,
810 call_regs,
811 timing,
812 }
813 }
814
815 /// The largest an object may be on this target, in bytes.
816 ///
817 /// `PTRDIFF_MAX`, which is what C 6.5.6 needs it to be: subtracting two pointers into one
818 /// object has to have an answer, and the answer has a `ptrdiff_t` to fit in. So an object
819 /// of exactly this many bytes is allowed and one byte more is not, which is the line GCC
820 /// draws too. It is the only size limit in the compiler and every layout question that has
821 /// one asks here rather than at whatever its own arithmetic happens to overflow at.
822 #[must_use]
823 pub const fn max_object_size(&self) -> u64 {
824 (1u64 << (self.pointer_width - 1)) - 1
825 }
826}
827
828/// The format `_Float64x` is, where the target has one.
829fn float64x_format(target: TargetTuple) -> Option<Format> {
830 match target.arch() {
831 // The x87 unit is on the machine whatever the operating system says a `long double` is,
832 // so `x86_64-apple-darwin` and `x86_64-windows-msvc` both have an eighty bit `_Float64x`
833 // and an eight byte `long double`.
834 tuple::Arch::X86_64 | tuple::Arch::X86 => Some(Format::X87Extended),
835 tuple::Arch::Aarch64
836 | tuple::Arch::Riscv64
837 | tuple::Arch::Riscv32
838 | tuple::Arch::LoongArch64
839 | tuple::Arch::S390x
840 | tuple::Arch::PowerPc64 => Some(Format::Quad),
841 // Nothing on these machines is wider than a `double`, so there is no type here to
842 // describe and neither reference defines the macros that would describe it.
843 tuple::Arch::Arm | tuple::Arch::Arm64Ec | tuple::Arch::Wasm32 => None,
844 }
845}
846
847/// Whether the target has `_Float16`.
848fn has_float16(target: TargetTuple) -> bool {
849 match target.arch() {
850 // Half precision is in the baseline of these: SSE2 on x86-64, the FP16 storage format
851 // every ARMv8 has, and RISC-V, where gcc gives the type whether or not the hardware has
852 // the instructions to go with it.
853 tuple::Arch::X86_64
854 | tuple::Arch::Aarch64
855 | tuple::Arch::Arm64Ec
856 | tuple::Arch::Riscv64
857 | tuple::Arch::Riscv32 => true,
858 // i686 for the reason the field gives, which is the baseline and not the chip, and the
859 // rest are machines gcc 13 has not written the type for.
860 tuple::Arch::X86
861 | tuple::Arch::Arm
862 | tuple::Arch::LoongArch64
863 | tuple::Arch::PowerPc64
864 | tuple::Arch::S390x
865 | tuple::Arch::Wasm32 => false,
866 }
867}
868
869/// Whether the target has `_Float128`.
870fn has_float128(target: TargetTuple) -> bool {
871 match target.arch() {
872 // Either the machine already has quad precision, which is the AArch64, RISC-V, s390x and
873 // PowerPC answer, or the compiler provides it in software, which is what x86 does.
874 tuple::Arch::X86_64
875 | tuple::Arch::X86
876 | tuple::Arch::Aarch64
877 | tuple::Arch::Arm64Ec
878 | tuple::Arch::Riscv64
879 | tuple::Arch::Riscv32
880 | tuple::Arch::LoongArch64
881 | tuple::Arch::PowerPc64
882 | tuple::Arch::S390x => true,
883 // The same two rows that have no `_Float64x`, and for the same reason: nothing on the
884 // machine is wider than a `double` and neither reference offers a type that is.
885 tuple::Arch::Arm | tuple::Arch::Wasm32 => false,
886 }
887}
888
889/// The granule a `_BitInt` wider than 64 bits is laid out in, in bits.
890fn bit_int_granule(target: TargetTuple) -> u32 {
891 match target.arch() {
892 // AAPCS64 says a `_BitInt` above sixty four bits is an array of `__int128`, which is the
893 // one psABI that departs from the register width here.
894 tuple::Arch::Aarch64 | tuple::Arch::Arm64Ec => 128,
895 // Everywhere else it is the width of a general purpose register, which is what the psABIs
896 // that have written the rule down all say and what both references do on the rows that
897 // have not.
898 tuple::Arch::X86 | tuple::Arch::Arm | tuple::Arch::Riscv32 => 32,
899 tuple::Arch::X86_64
900 | tuple::Arch::Riscv64
901 | tuple::Arch::LoongArch64
902 | tuple::Arch::PowerPc64
903 | tuple::Arch::S390x
904 | tuple::Arch::Wasm32 => 64,
905 }
906}
907
908/// How this target allocates bit-fields into storage.
909///
910/// Keyed on the operating system rather than the environment, because mingw's answer here is
911/// Microsoft's and not GCC's. That is the whole reason it is not a guess: a rule keyed on
912/// `Env::Msvc` gets `x86_64-windows-gnu` wrong by four bytes on a struct of an `unsigned :3` and a
913/// `char`, and gets it wrong quietly.
914fn bit_field_style(target: TargetTuple) -> BitFieldStyle {
915 match target.os() {
916 tuple::Os::Windows => BitFieldStyle::Microsoft,
917 _ => BitFieldStyle::Itanium,
918 }
919}
920
921/// Whether an unnamed bit-field raises the record's alignment the way a named one does.
922///
923/// AAPCS says it does, on both widths of ARM, and Apple and Microsoft each dropped that rule.
924/// Microsoft then put its own rule in the same place for a `struct`, so Windows says yes again by
925/// a different route, and says something else entirely for a `union`, which [`BitFieldStyle`]
926/// carries rather than this.
927fn unnamed_bit_field_aligns(target: TargetTuple) -> bool {
928 match (target.arch(), target.os()) {
929 (_, tuple::Os::Windows) => true,
930 // A freestanding ARM target is AAPCS proper, so it says yes: there is no operating system
931 // there to have dropped it.
932 (tuple::Arch::Aarch64 | tuple::Arch::Arm | tuple::Arch::Arm64Ec, os) => !os.is_darwin(),
933 _ => false,
934 }
935}
936
937/// What `__builtin_va_list` is on this target, where this crate can build the type.
938fn va_list(target: TargetTuple) -> Option<VaList> {
939 match (target.arch(), target.os()) {
940 // Windows passes every argument in one place and spills the register ones next to the
941 // stack ones, so the list is an address, and Apple does the same on AArch64.
942 (_, tuple::Os::Windows) => Some(VaList::CharPointer),
943 (tuple::Arch::Aarch64, os) if os.is_darwin() => Some(VaList::CharPointer),
944 (tuple::Arch::Aarch64, _) => Some(VaList::Aapcs),
945 // The x32 ABI's list is the same structure with four byte pointers in it, which is what
946 // building it out of this target's pointer type gives, so it is the same answer.
947 (tuple::Arch::X86_64, _) => Some(VaList::SysV),
948 (tuple::Arch::X86, _) => Some(VaList::CharPointer),
949 (tuple::Arch::Riscv64 | tuple::Arch::Riscv32 | tuple::Arch::LoongArch64, _)
950 | (tuple::Arch::Wasm32, _) => Some(VaList::VoidPointer),
951 // 32-bit ARM's is a structure of one pointer, s390x's is a structure of four members, and
952 // PowerPC's is a structure of five. None of them is any of the four types above and this
953 // crate does not build them, so it says so rather than naming a neighbour's.
954 (
955 tuple::Arch::Arm | tuple::Arch::S390x | tuple::Arch::PowerPc64 | tuple::Arch::Arm64Ec,
956 _,
957 ) => None,
958 }
959}
960
961#[cfg(test)]
962mod tests {
963 use super::*;
964
965 #[test]
966 fn parses_a_four_field_triple() {
967 let t: Triple = "x86_64-unknown-linux-gnu".parse().unwrap();
968 assert_eq!(t, Triple::new(Arch::X86_64, Os::Linux, Env::Gnu));
969 }
970
971 #[test]
972 fn parses_a_triple_with_no_vendor() {
973 let t: Triple = "aarch64-linux-musl".parse().unwrap();
974 assert_eq!(t, Triple::new(Arch::Aarch64, Os::Linux, Env::Musl));
975 }
976
977 #[test]
978 fn accepts_the_common_aliases() {
979 let a: Triple = "arm64-apple-darwin".parse().unwrap();
980 let b: Triple = "aarch64-apple-darwin".parse().unwrap();
981 assert_eq!(a, b);
982 assert_eq!(a.env, Env::None);
983 }
984
985 #[test]
986 fn fills_in_the_default_environment() {
987 let t: Triple = "x86_64-unknown-linux".parse().unwrap();
988 assert_eq!(t.env, Env::Gnu);
989 let w: Triple = "x86_64-pc-windows".parse().unwrap();
990 assert_eq!(w.env, Env::Msvc);
991 }
992
993 #[test]
994 fn rejects_what_it_does_not_support() {
995 let e = "sparc64-unknown-linux-gnu".parse::<Triple>().unwrap_err();
996 assert_eq!(e.reason, "unknown architecture");
997 let e = "x86_64-unknown-plan9".parse::<Triple>().unwrap_err();
998 assert_eq!(e.reason, "unknown operating system");
999 }
1000
1001 #[test]
1002 fn displays_in_a_normalised_form() {
1003 let t: Triple = "amd64-linux-gnu".parse().unwrap();
1004 assert_eq!(t.to_string(), "x86_64-unknown-linux-gnu");
1005 }
1006
1007 #[test]
1008 fn display_round_trips_through_parse() {
1009 for s in [
1010 "x86_64-unknown-linux-gnu",
1011 "aarch64-unknown-darwin-none",
1012 "riscv64-unknown-linux-musl",
1013 ] {
1014 let t: Triple = s.parse().unwrap();
1015 assert_eq!(t.to_string().parse::<Triple>().unwrap(), t);
1016 }
1017 }
1018
1019 #[test]
1020 fn char_signedness_follows_the_psabi() {
1021 let x86 = TargetInfo::new("x86_64-unknown-linux-gnu".parse().unwrap());
1022 let arm = TargetInfo::new("aarch64-unknown-linux-gnu".parse().unwrap());
1023 let mac = TargetInfo::new("aarch64-apple-darwin".parse().unwrap());
1024 assert!(x86.char_is_signed);
1025 assert!(!arm.char_is_signed);
1026 assert!(mac.char_is_signed, "Apple overrides AAPCS64 back to a signed char");
1027 }
1028
1029 #[test]
1030 fn windows_is_llp64() {
1031 let win = TargetInfo::new("x86_64-pc-windows-msvc".parse().unwrap());
1032 assert_eq!(win.pointer_width, 64);
1033 assert_eq!(win.long_width, 32);
1034 }
1035
1036 #[test]
1037 fn the_largest_object_is_ptrdiff_max() {
1038 // Half the address space less one, which is what a pointer subtraction across the whole
1039 // of one object has to fit in. gcc 16 on x86-64 prints this same number when it refuses
1040 // an array, and takes an object of exactly this many bytes.
1041 for triple in ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-pc-windows-msvc"]
1042 {
1043 let target = TargetInfo::new(triple.parse().unwrap());
1044 assert_eq!(target.max_object_size(), 9_223_372_036_854_775_807, "{triple}");
1045 }
1046 }
1047
1048 #[test]
1049 fn apple_long_double_is_double() {
1050 let mac = TargetInfo::new("aarch64-apple-darwin".parse().unwrap());
1051 assert_eq!(mac.long_double_width, 64);
1052 assert_eq!(mac.long_double_format, Format::Double);
1053 let linux = TargetInfo::new("x86_64-unknown-linux-gnu".parse().unwrap());
1054 assert_eq!(linux.long_double_width, 128);
1055 }
1056
1057 #[test]
1058 fn apples_x86_64_is_not_one_of_the_targets_that_narrowed_long_double() {
1059 // The bug the layout facts moving to `rucc-abi` fixed. This crate used to decide the
1060 // width from the operating system, which took both Apple targets, and Apple made the
1061 // change on AArch64 only. `facts/x86_64-macos.facts` in tamnd/rucc-cross records
1062 // `long_double_format=x87_extended` with `sizeof_long_double=16`, from a reference
1063 // compiler, and this used to answer a sixty four bit `double`.
1064 //
1065 // It is the quiet kind of wrong. `sizeof(long double)` came out at eight where the
1066 // headers say sixteen, so `printf("%Lf")` read the wrong bytes and every structure with
1067 // a `long double` in it laid out differently from the system's own.
1068 let mac = TargetInfo::new("x86_64-apple-darwin".parse().unwrap());
1069 assert_eq!(mac.long_double_width, 128);
1070 assert_eq!(mac.long_double_format, Format::X87Extended);
1071
1072 let linux = TargetInfo::new("x86_64-unknown-linux-gnu".parse().unwrap());
1073 assert_eq!(
1074 (mac.long_double_width, mac.long_double_format),
1075 (linux.long_double_width, linux.long_double_format)
1076 );
1077 }
1078
1079 #[test]
1080 fn every_triple_describes_a_machine() {
1081 // `Triple::tuple` panics on a pair that is not a machine and this is what says there is
1082 // no such pair. All forty eight combinations, including the ones the parser will produce
1083 // from a string somebody can type and no machine has, such as a Darwin target claiming
1084 // glibc.
1085 let mut built = 0;
1086 for arch in [Arch::X86_64, Arch::Aarch64, Arch::Riscv64] {
1087 for os in [Os::Linux, Os::Darwin, Os::Windows, Os::None] {
1088 for env in [Env::None, Env::Gnu, Env::Musl, Env::Msvc] {
1089 let triple = Triple::new(arch, os, env);
1090 let tuple = triple.tuple();
1091 assert_eq!(tuple.pointer_width(), 64, "{triple}");
1092 // The one field the narrowing has to preserve, because mingw and MSVC are the
1093 // same operating system with two different `long double`s.
1094 if os == Os::Windows {
1095 let expected = match env {
1096 Env::Gnu => rucc_tuple::Env::Gnu,
1097 _ => rucc_tuple::Env::Msvc,
1098 };
1099 assert_eq!(tuple.env(), expected, "{triple}");
1100 }
1101 built += 1;
1102 }
1103 }
1104 }
1105 assert_eq!(built, 48);
1106 }
1107
1108 #[test]
1109 fn from_tuple_undoes_the_narrowing() {
1110 // Every triple's tuple comes back as a triple describing the same machine. It is not
1111 // always the triple it started as, because the narrowing is many to one: a Darwin target
1112 // claiming glibc and the same one claiming nothing are one machine, and the answer is the
1113 // spelling that names no libc.
1114 for arch in [Arch::X86_64, Arch::Aarch64, Arch::Riscv64] {
1115 for os in [Os::Linux, Os::Darwin, Os::Windows, Os::None] {
1116 for env in [Env::None, Env::Gnu, Env::Musl, Env::Msvc] {
1117 let triple = Triple::new(arch, os, env);
1118 let back = Triple::from_tuple(triple.tuple())
1119 .unwrap_or_else(|| panic!("{triple} has a tuple and no way back"));
1120 assert_eq!(back.tuple(), triple.tuple(), "{triple}");
1121 assert_eq!(back.arch, arch, "{triple}");
1122 assert_eq!(back.os, os, "{triple}");
1123 }
1124 }
1125 }
1126 }
1127
1128 #[test]
1129 fn from_tuple_gives_the_canonical_environment() {
1130 let musl = Triple::from_tuple("aarch64-linux-musl".parse().unwrap()).unwrap();
1131 assert_eq!(musl, Triple::new(Arch::Aarch64, Os::Linux, Env::Musl));
1132 let gnu = Triple::from_tuple("x86_64-linux-gnu".parse().unwrap()).unwrap();
1133 assert_eq!(gnu, Triple::new(Arch::X86_64, Os::Linux, Env::Gnu));
1134 // Darwin and freestanding name no libc, so the answer does too, even though the parser
1135 // will hand this type a Darwin triple with `gnu` on the end.
1136 let macos = Triple::from_tuple("aarch64-macos".parse().unwrap()).unwrap();
1137 assert_eq!(macos, Triple::new(Arch::Aarch64, Os::Darwin, Env::None));
1138 let bare = Triple::from_tuple("riscv64-none".parse().unwrap()).unwrap();
1139 assert_eq!(bare, Triple::new(Arch::Riscv64, Os::None, Env::None));
1140 // The two Windows environments stay apart, which is the whole reason the narrowing keeps
1141 // the environment there and nowhere else.
1142 let mingw = Triple::from_tuple("x86_64-windows-gnu".parse().unwrap()).unwrap();
1143 assert_eq!(mingw.env, Env::Gnu);
1144 let msvc = Triple::from_tuple("x86_64-windows-msvc".parse().unwrap()).unwrap();
1145 assert_eq!(msvc.env, Env::Msvc);
1146 }
1147
1148 #[test]
1149 fn from_tuple_says_no_rather_than_saying_something_near() {
1150 // Twenty five of the forty two rows have no triple, and the answer is `None` rather than
1151 // a neighbour. `rucc-abi` knows the scalar layout of every one of these and this type
1152 // cannot hold any of them, which is the gap the record layout engine inherits.
1153 for tuple in [
1154 "i686-linux-gnu",
1155 "armv7-linux-gnueabihf",
1156 "s390x-linux-gnu",
1157 "powerpc64le-linux-gnu",
1158 "loongarch64-linux-gnu",
1159 "x86_64-linux-gnux32",
1160 "aarch64-linux-android",
1161 "aarch64-ios",
1162 "wasm32-wasip1",
1163 "x86_64-freebsd",
1164 ] {
1165 let target = tuple.parse().unwrap();
1166 assert_eq!(Triple::from_tuple(target), None, "{tuple}");
1167 }
1168 }
1169
1170 #[test]
1171 fn mingw_and_msvc_are_one_operating_system_with_two_long_doubles() {
1172 // The narrowing in `Triple::tuple` keeps the environment on Windows for this reason and
1173 // throws it away everywhere else. GCC's Windows targets keep the eighty bit `long double`
1174 // and Microsoft's make it a `double`, on the same processor and the same OS.
1175 let mingw = TargetInfo::new("x86_64-pc-windows-gnu".parse().unwrap());
1176 assert_eq!(mingw.long_double_width, 128);
1177 assert_eq!(mingw.long_double_format, Format::X87Extended);
1178
1179 let msvc = TargetInfo::new("x86_64-pc-windows-msvc".parse().unwrap());
1180 assert_eq!(msvc.long_double_width, 64);
1181 assert_eq!(msvc.long_double_format, Format::Double);
1182
1183 // And they agree about everything the operating system does decide.
1184 assert_eq!(mingw.long_width, msvc.long_width);
1185 assert_eq!(mingw.wchar_width, msvc.wchar_width);
1186 assert_eq!(mingw.object_format, msvc.object_format);
1187 }
1188
1189 #[test]
1190 fn wchar_t_divides_the_targets_in_two_directions_at_once() {
1191 // Windows narrows it to sixteen bits, which makes a wide string UTF-16 there and
1192 // UTF-32 everywhere else, and AArch64 Linux makes it unsigned without narrowing it.
1193 let windows = TargetInfo::new("x86_64-pc-windows-msvc".parse().unwrap());
1194 assert_eq!((windows.wchar_width, windows.wchar_is_signed), (16, false));
1195 let arm = TargetInfo::new("aarch64-unknown-linux-gnu".parse().unwrap());
1196 assert_eq!((arm.wchar_width, arm.wchar_is_signed), (32, false));
1197 let linux = TargetInfo::new("x86_64-unknown-linux-gnu".parse().unwrap());
1198 assert_eq!((linux.wchar_width, linux.wchar_is_signed), (32, true));
1199 // Apple keeps it signed on the same processor where Linux does not, in the same way it
1200 // keeps plain `char` signed there.
1201 let mac = TargetInfo::new("aarch64-apple-darwin".parse().unwrap());
1202 assert_eq!((mac.wchar_width, mac.wchar_is_signed), (32, true));
1203 }
1204
1205 #[test]
1206 fn va_list_is_the_psabis_type_and_not_one_type_with_four_spellings() {
1207 let linux = TargetInfo::new("x86_64-unknown-linux-gnu".parse().unwrap());
1208 assert_eq!(linux.va_list, Some(VaList::SysV));
1209 // x86-64 Darwin follows SysV here, and AArch64 Darwin does not follow AAPCS64.
1210 let mac = TargetInfo::new("x86_64-apple-darwin".parse().unwrap());
1211 assert_eq!(mac.va_list, Some(VaList::SysV));
1212 let arm_mac = TargetInfo::new("aarch64-apple-darwin".parse().unwrap());
1213 assert_eq!(arm_mac.va_list, Some(VaList::CharPointer));
1214 let arm = TargetInfo::new("aarch64-unknown-linux-gnu".parse().unwrap());
1215 assert_eq!(arm.va_list, Some(VaList::Aapcs));
1216 // Windows passes everything one way on both processors, so both get the simple one.
1217 let win = TargetInfo::new("x86_64-pc-windows-msvc".parse().unwrap());
1218 assert_eq!(win.va_list, Some(VaList::CharPointer));
1219 let arm_win = TargetInfo::new("aarch64-pc-windows-msvc".parse().unwrap());
1220 assert_eq!(arm_win.va_list, Some(VaList::CharPointer));
1221 let riscv = TargetInfo::new("riscv64-unknown-linux-gnu".parse().unwrap());
1222 assert_eq!(riscv.va_list, Some(VaList::VoidPointer));
1223 }
1224
1225 #[test]
1226 fn two_targets_agree_on_the_width_of_long_double_and_not_on_the_type() {
1227 // Sixteen bytes on both, and a different number in them: the x87 format has sixty four
1228 // bits of significand and quad precision has a hundred and thirteen, so a constant
1229 // converted for one is the wrong bits for the other.
1230 let x86 = TargetInfo::new("x86_64-unknown-linux-gnu".parse().unwrap());
1231 let arm = TargetInfo::new("aarch64-unknown-linux-gnu".parse().unwrap());
1232 assert_eq!(x86.long_double_width, arm.long_double_width);
1233 assert_eq!(x86.long_double_format, Format::X87Extended);
1234 assert_eq!(arm.long_double_format, Format::Quad);
1235 assert_eq!(x86.long_double_format.precision(), 64);
1236 assert_eq!(arm.long_double_format.precision(), 113);
1237 // Windows keeps the name and drops the type, the way Apple does.
1238 let windows = TargetInfo::new("x86_64-pc-windows-msvc".parse().unwrap());
1239 assert_eq!(windows.long_double_format, Format::Double);
1240 }
1241
1242 #[test]
1243 fn float64x_follows_the_processor_where_long_double_follows_the_operating_system() {
1244 // `_Float64x` is the widest format the hardware has, and no ABI takes it away the way
1245 // Apple and Windows take `long double` away. So the two fields say the same thing on
1246 // Linux and disagree everywhere else, which is the whole reason there are two of them.
1247 let x86 = TargetInfo::new("x86_64-unknown-linux-gnu".parse().unwrap());
1248 assert_eq!(x86.float64x_format, Some(Format::X87Extended));
1249 let arm = TargetInfo::new("aarch64-unknown-linux-gnu".parse().unwrap());
1250 assert_eq!(arm.float64x_format, Some(Format::Quad));
1251 let riscv = TargetInfo::new("riscv64-unknown-linux-gnu".parse().unwrap());
1252 assert_eq!(riscv.float64x_format, Some(Format::Quad));
1253
1254 let mac = TargetInfo::new("aarch64-apple-darwin".parse().unwrap());
1255 assert_eq!(mac.long_double_format, Format::Double);
1256 assert_eq!(mac.float64x_format, Some(Format::Quad));
1257 let windows = TargetInfo::new("x86_64-pc-windows-msvc".parse().unwrap());
1258 assert_eq!(windows.long_double_format, Format::Double);
1259 assert_eq!(windows.float64x_format, Some(Format::X87Extended));
1260 }
1261
1262 #[test]
1263 fn the_named_floating_types_are_not_on_every_machine() {
1264 // gcc 13, measured with the cross compilers rather than reasoned about. `_Float16` is on
1265 // three of these seven and `_Float128` is on six, and the two lists are not the same
1266 // list, which is why there are two fields.
1267 // The three field triple spells three architectures, and four of these rows are not
1268 // among them, so this asks the tuple the way the layout tests do.
1269 let of = |tuple: &str| TargetInfo::for_tuple(tuple.parse().expect("a row in the table"));
1270 let rows = [
1271 ("x86_64-linux-gnu", true, true),
1272 ("i686-linux-gnu", false, true),
1273 ("aarch64-linux-gnu", true, true),
1274 ("armv7-linux-gnueabihf", false, false),
1275 ("powerpc64le-linux-gnu", false, true),
1276 ("riscv64-linux-gnu", true, true),
1277 ("s390x-linux-gnu", false, true),
1278 ];
1279 for (tuple, float16, float128) in rows {
1280 let target = of(tuple);
1281 assert_eq!(target.has_float16, float16, "{tuple} `_Float16`");
1282 assert_eq!(target.has_float128, float128, "{tuple} `_Float128`");
1283 }
1284 // The operating system has nothing to do with it, the way it has nothing to do with
1285 // `_Float64x`, so Apple and Windows keep both types.
1286 assert!(of("aarch64-apple-darwin").has_float16);
1287 assert!(of("x86_64-pc-windows-msvc").has_float128);
1288 }
1289
1290 #[test]
1291 fn the_object_format_follows_the_operating_system() {
1292 assert_eq!(Os::Linux.object_format(), ObjectFormat::Elf);
1293 assert_eq!(Os::Darwin.object_format(), ObjectFormat::MachO);
1294 assert_eq!(Os::Windows.object_format(), ObjectFormat::Coff);
1295 }
1296
1297 #[test]
1298 fn a_target_carries_its_registers_and_says_so_when_it_has_none() {
1299 let of = |triple: &str| TargetInfo::new(triple.parse().unwrap());
1300 let linux = of("x86_64-unknown-linux-gnu");
1301 assert_eq!(linux.regs.reg_named("rdi"), Some((x86_64::GPR, x86_64::RDI)));
1302 assert_eq!(linux.call_regs.map(|regs| regs.int_args[0]), Some(x86_64::RDI));
1303 // Apple's x86-64 is SysV and Windows is the one that is not.
1304 let apple = of("x86_64-apple-darwin");
1305 assert_eq!(apple.call_regs.map(|regs| regs.int_args[0]), Some(x86_64::RDI));
1306 let windows = of("x86_64-pc-windows-msvc");
1307 assert_eq!(windows.regs.len(x86_64::GPR), 16);
1308 assert_eq!(windows.call_regs.map(|regs| regs.int_args[0]), Some(x86_64::RCX));
1309 let arm = of("aarch64-unknown-linux-gnu");
1310 assert_eq!(arm.regs.len(aarch64::GPR), 32);
1311 assert_eq!(arm.call_regs.map(|regs| regs.int_args[0]), Some(aarch64::x(0)));
1312 assert_eq!(arm.call_regs.map(|regs| regs.red_zone), Some(0));
1313 assert_eq!(of("aarch64-apple-darwin").call_regs.map(|regs| regs.red_zone), Some(128));
1314 // Not described yet, and saying nothing is the answer rather than saying Linux's.
1315 assert!(of("aarch64-pc-windows-msvc").call_regs.is_none());
1316 let riscv = of("riscv64-unknown-linux-gnu");
1317 assert!(riscv.regs.is_empty());
1318 assert!(riscv.call_regs.is_none());
1319 }
1320
1321 /// The two maps from a triple, held against each other.
1322 ///
1323 /// A target's registers and a target's ABI are chosen by two separate matches, one here and one
1324 /// in `rucc_abi::abis::for_target`, and [`CallRegs::abi`] is the link between them. Two matches
1325 /// that can disagree are the thing this crate must not have, so every triple with registers is
1326 /// asked both questions and the answers have to be the same description. What it catches is a
1327 /// target added to one match and not the other, which is a compiler that puts the value in the
1328 /// register one ABI names and the form another one asked for.
1329 #[test]
1330 fn the_registers_and_the_abi_a_target_gets_are_the_same_convention() {
1331 let mut checked = 0;
1332 for arch in [Arch::X86_64, Arch::Aarch64, Arch::Riscv64] {
1333 for os in [Os::Linux, Os::Darwin, Os::Windows, Os::None] {
1334 for env in [Env::None, Env::Gnu, Env::Musl, Env::Msvc] {
1335 let triple = Triple::new(arch, os, env);
1336 let info = TargetInfo::new(triple);
1337 let Some(regs) = info.call_regs else { continue };
1338 let described = rucc_abi::abis::for_target(info.tuple)
1339 .unwrap_or_else(|| panic!("{triple} has registers and no ABI"));
1340 assert!(
1341 std::ptr::eq(regs.abi, described),
1342 "{triple} has the registers of {} and the ABI of {}",
1343 regs.abi.name,
1344 described.name
1345 );
1346 checked += 1;
1347 }
1348 }
1349 }
1350 assert!(checked > 0, "no target has registers, so this asserted nothing");
1351 }
1352
1353 /// The timing model, which follows the register file: an architecture with no backend has
1354 /// nothing to measure and says so rather than borrowing a neighbour's numbers.
1355 #[test]
1356 fn a_target_carries_the_model_its_schedules_were_chosen_with() {
1357 let of = |triple: &str| TargetInfo::new(triple.parse().unwrap());
1358 let linux = of("x86_64-unknown-linux-gnu");
1359 let timing = linux.timing.expect("x86-64 has a backend and so has a model");
1360 assert!(timing.model.contains("Skylake"), "{}", timing.model);
1361 assert!(!timing.accurate, "and it says it is not a cycle accurate one");
1362 assert_eq!(timing.of("x64.imul_rr_64").map(|cost| cost.unit), Some(Unit::Mul));
1363
1364 // The same model whatever the operating system, since a model is about the processor.
1365 assert_eq!(of("x86_64-apple-darwin").timing, linux.timing);
1366 assert_eq!(of("x86_64-pc-windows-msvc").timing, linux.timing);
1367
1368 assert!(of("aarch64-unknown-linux-gnu").timing.is_none(), "nobody has measured it here");
1369 }
1370
1371 #[test]
1372 fn the_host_triple_is_one_we_support() {
1373 // Every host in spec/15-testing.md section 15.7 must be recognised, and CI runs on
1374 // all three, so a failure here means a host we claim support for stopped resolving.
1375 let host = Triple::host().expect("the host must be a supported target");
1376 assert_eq!(host.to_string().parse::<Triple>().unwrap(), host);
1377 }
1378}