rucc_driver/lib.rs
1//! The driver: command line parsing, the phase graph, job scheduling and the linker
2//! invocation.
3//!
4//! Design: `spec/04-driver-and-cli.md`. Layer rank 13, see `spec/18-package-layout.md`.
5//!
6//! This is the only crate that is allowed to know the process exists. It reads the command
7//! line, touches the file system, spawns the linker and writes to the terminal, and it hands
8//! everything below it a [`Session`]. The binary crate is a `main` that calls
9//! [`run`] and nothing else, so that the whole driver is reachable from a test.
10//!
11//! # Status
12//!
13//! `--help`, `--version` and `--print-config` are real, which is the `M0` exit criterion in
14//! `spec/17-milestones.md`. The phase graph is real and `-###` prints it, and the scheduler
15//! that will run it is real and tested.
16//!
17//! Two phases run. `-E` reads the file, runs phase 4 over it and writes the result, to `-o` or
18//! to standard output. `--emit=tast` carries on through phase 7, the parse and the checking,
19//! and writes the typed tree. The flags those two read are real with them, which is `-D`, `-U`,
20//! `-I`, `-I-`, `-iquote`, `-isystem`, `-idirafter`, `-iprefix`, `-iwithprefix`,
21//! `-iwithprefixbefore`, `-include`, `-imacros`, `--sysroot=`, `-isysroot`, `-P`, `-std=`,
22//! `-fgnuc-version=`, `-ansi`, `-ffreestanding`, `-fno-builtin`, `-fno-builtin-<name>`,
23//! `-fgnu89-inline`, `-pedantic` and `-Werror`.
24//! The phases after them still say they are not implemented.
25//!
26//! This crate is tier 3 in `spec/18-package-layout.md` section 18.5: its Rust API is
27//! explicitly unstable and will change without a major version bump.
28
29#![doc(html_root_url = "https://docs.rs/rucc-driver/0.11.4")]
30
31pub mod assemble;
32pub mod cache;
33pub mod compile;
34pub mod deps;
35pub mod fetch;
36mod glibc;
37pub mod install;
38pub mod library;
39pub mod link;
40mod map;
41pub mod msvc;
42pub mod phase;
43pub mod preprocess;
44pub mod schedule;
45mod shapes;
46
47use std::fmt::Write as _;
48use std::io::Write as _;
49use std::path::PathBuf;
50
51use rucc_codegen::coverage::{self, Fired};
52use rucc_codegen::lowering::Lowerings;
53use rucc_codegen::pressure::Pressure;
54use rucc_pp::Dependency;
55use rucc_session::{
56 Compress, Control, Dumps, EmitKind, Hook, Options, Pic, PrefixMap, Preinclude, Protector,
57 SaveTemps, Session, Std, Wrapping, runtime,
58};
59use rucc_sysroot::{Manifest, Sysroot};
60use rucc_target::{ObjectFormat, Triple};
61use rucc_tuple::TargetTuple;
62
63use crate::link::LinkOptions;
64
65pub use crate::assemble::assemble;
66pub use crate::compile::{Artifact, Compiled, Temps, compile, compile_ir};
67pub use crate::phase::{ArchiveJob, Input, InputKind, Job, LinkJob, Output, Phase, Plan, Role};
68pub use crate::preprocess::{OsFileSystem, Preprocessed, preprocess};
69pub use crate::schedule::Jobs;
70
71/// The compiler's version, taken from the workspace manifest.
72pub const VERSION: &str = env!("CARGO_PKG_VERSION");
73
74/// What the command line asked for.
75#[derive(Debug, Clone, PartialEq, Eq)]
76pub enum Action {
77 /// Print usage and exit successfully.
78 Help,
79 /// Print the version and exit successfully.
80 Version,
81 /// Print one line and exit successfully, which is what the `-dump` and `-print` family do.
82 ///
83 /// A build system asks these before it compiles anything, and what it does with the answer
84 /// is paste it into a path or into another command line, so each one is a single line with
85 /// no decoration around it.
86 Print(String),
87 /// Print the resolved configuration and exit successfully.
88 PrintConfig(Box<Options>),
89 /// Print the passes the level will run and exit successfully.
90 PrintPipeline(Box<Options>),
91 /// Print the phase plan and the link line and exit successfully, which is `-###`.
92 PrintPlan {
93 /// The resolved options, which is what says what the link line is for.
94 opts: Box<Options>,
95 /// What to do to each input, and in what order.
96 plan: Box<Plan>,
97 /// What the command line said about linking.
98 link: Box<LinkOptions>,
99 },
100 /// `--fetch <tuple>`, which gets the sysroot this release pins for a target and installs it.
101 ///
102 /// The only action in this compiler that may run another program to move bytes onto the
103 /// machine, which is `spec/cross-compile/13-distribution.md` section 13.8's rule rather than a
104 /// property of how this happens to be written: a compilation has no branch that reaches it.
105 Fetch {
106 /// The artifact, from the table in [`rucc_sysroot::artifact`]. Resolved here rather than where the
107 /// work happens, so that a target nothing is pinned for is a refusal from the parser like
108 /// every other thing a command line can ask for and not have.
109 what: &'static rucc_sysroot::Pinned,
110 /// The target, which names the directory under the cache the tree is installed at and is
111 /// checked against the record inside the artifact.
112 target: TargetTuple,
113 /// Where the cache is, read where everything else that needs it reads it.
114 cache: PathBuf,
115 },
116 /// `--fetch-msvc-sdk <tuple>`, which gets what is behind Microsoft's licence wall.
117 ///
118 /// The other action that may run another program to move bytes onto the machine, and the only
119 /// one that asks a person to accept somebody else's licence first.
120 /// `spec/cross-compile/13-distribution.md` section 13.4 is why it is a command of its own
121 /// rather than something `--fetch` does when it recognises the target: no release pins an
122 /// artifact for these, and nothing about this may ever happen because a compile wanted it to.
123 FetchMsvcSdk {
124 /// The target, which says which architecture's CRT library package is wanted.
125 target: TargetTuple,
126 /// Whether `--accept-licence` was on the command line. Without it the licence and the list
127 /// are printed and nothing is downloaded, which is the whole of what the flag is for.
128 accepted: bool,
129 /// Where the cache is, read where everything else that needs it reads it.
130 cache: PathBuf,
131 },
132 /// Compile the given inputs.
133 Compile {
134 /// The resolved options.
135 opts: Box<Options>,
136 /// What to do to each input, and in what order.
137 plan: Box<Plan>,
138 /// What the command line said about linking.
139 link: Box<LinkOptions>,
140 /// How many translation units to compile at once.
141 jobs: Jobs,
142 /// Whether `-v` asked for the plan to be printed while it runs.
143 verbose: bool,
144 /// What is worth saying about the command line before anything is compiled, printed as
145 /// warnings and once for the whole run rather than once per file.
146 ///
147 /// These are not diagnostics. A diagnostic is about a piece of source and has a span to
148 /// point at, and these are about the way two flags were combined, so there is nothing to
149 /// point at and nowhere below the driver that knows both halves. `-w` does not reach them
150 /// for the same reason it does not reach a refusal from the parser.
151 notes: Vec<String>,
152 },
153}
154
155/// Why a command line was rejected.
156#[derive(Debug, Clone, PartialEq, Eq)]
157pub struct CliError {
158 /// The message, lowercase and without a trailing period, in the same shape as any other
159 /// diagnostic.
160 pub message: String,
161}
162
163impl std::fmt::Display for CliError {
164 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
165 f.write_str(&self.message)
166 }
167}
168
169impl std::error::Error for CliError {}
170
171fn err(message: impl Into<String>) -> CliError {
172 CliError { message: message.into() }
173}
174
175/// The two halves of one prefix mapping flag's argument, where `flag` includes its trailing `=`.
176///
177/// The split is at the last `=` in what follows the flag, not the first, which is gcc's rule and
178/// the only one that lets a directory whose name contains an `=` be the old half. It also means
179/// `-fmacro-prefix-map=a=b=c` rewrites `a=b` to `c` rather than `a` to `b=c`, which looks like a
180/// trap until you notice the alternative traps the far more common case.
181fn rewrite<'a>(arg: &'a str, flag: &str) -> Result<(&'a str, &'a str), CliError> {
182 let rest = &arg[flag.len()..];
183 PrefixMap::split(rest).ok_or_else(|| {
184 let flag = flag.trim_end_matches('=');
185 err(format!(
186 "`{rest}` is not a rewrite for `{flag}`, which is an old prefix, an `=` and a new one"
187 ))
188 })
189}
190
191/// A question the command line asked instead of asking for a compilation.
192///
193/// These are answered after the loop rather than where they are read, because every one of them
194/// is about the target or about the library search and the last word on both is the end of the
195/// command line.
196enum Query {
197 /// `-dumpmachine`, the triple.
198 Machine,
199 /// `-dumpversion` and `-dumpfullversion`, which are the same three numbers here.
200 Version,
201 /// `-print-multiarch`, the directory name a distribution files this target under.
202 Multiarch,
203 /// `-print-search-dirs`, in the three lines GCC prints.
204 SearchDirs,
205 /// `-print-sysroot`, the root the headers and the libraries are read under.
206 Sysroot,
207 /// `-print-sysroot-provenance`, what is in that root and where each of it came from.
208 SysrootProvenance,
209 /// `-print-sysroot-digest`, the one number that names all of it.
210 SysrootDigest,
211 /// `-print-file-name=<name>`, the full path of a library file.
212 FileName(String),
213 /// `-print-prog-name=<name>`, the full path of a program.
214 ProgName(String),
215 /// `-print-libgcc-file-name`, which is `-print-file-name=libgcc.a` under another spelling.
216 Libgcc,
217}
218
219/// Usage text.
220///
221/// Deliberately short. `spec/04-driver-and-cli.md` puts the full flag reference in the
222/// manual page, because a `--help` nobody can read in one screen is a `--help` nobody reads.
223pub const USAGE: &str = "\
224rucc, an optimizing C compiler
225
226usage: rucc [options] file...
227
228options:
229 -c compile and assemble, do not link
230 -S compile only, emit assembly
231 -E preprocess only
232 -o <file> write output to <file>, or to standard output for -
233 -D <name>[=<value>], -U <name> define a macro, or undefine one after every -D
234 -I <dir> add <dir> to the include search path
235 -iquote -isystem -idirafter <dir> the other chains, -nostdinc drops ours
236 -I-, -iprefix <p>, -iwithprefix[before] <dir> the older spellings of those
237 -include <file>, -imacros <file> read <file> first, the second for its macros only
238 --sysroot=<dir> look for the library's headers under <dir>, -isysroot too
239 -P, -dM with -E: leave out the markers, or dump the macros
240 -M -MM -MD -MMD write a make rule for the source, the last two compile as well
241 -MF <file> -MT <t> -MQ <t> -MP where the rule goes, what it builds, targets with no recipe
242 -std=<dialect> c89 through c2y, and the gnu spellings
243 -fgnuc-version=<v> the GCC release to claim, default 16.0.0
244 -x <lang> treat later inputs as <lang>, or none to stop
245 -O<level> optimize: 0, 1, 2, 3, s, z
246 -fsafety=<tier> check memory safety: off, detect, enforce, kernel
247 -f[no-]sanitize=<what> the negative is taken, the positive is refused by name
248 -f[no-]safety-subobject a write has to stay inside the member it names
249 -f[no-]safety-restrict two restrict pointers of one block may not meet
250 -f<pass> -fno-<pass> -fdump-ir=<what> -fopt-info[-<kind>][=FILE]
251 -fpass-fuel=<pass>=<n>, -fpass-fuel-global=<n> stop a pass, or all of them, after n
252 -fdisable-<pass>[=<funcs>], -fenable-<pass>[=<funcs>] run a pass on some functions only
253 -g -g0 -gdwarf-5, -fno-omit-frame-pointer, -mno-red-zone debug info, frame pointer, red zone
254 -gz[=none|zlib|zlib-gnu|zstd] -gno-split-dwarf compress debug sections, one file not two
255 -flto[=auto|jobserver|<n>] -fno-lto -ffat-lto-objects read, and not done yet
256 -fprofile-use[=<path>] -fprofile-dir=<dir> read too, where -fprofile-generate is refused
257 -f[no-]stack-protector[-strong|-all], -f[no-]stack-clash-protection, -fcf-protection=<edges>
258 -ffunction-sections -fdata-sections a section per function or variable, for --gc-sections
259 -fvisibility=<what> default, hidden, internal or protected, when nothing in the source said
260 -l<name>, -L <dir>, -B <dir> link a library, where to look for one, where our own tools are
261 -fPIC -fpic -fPIE -fpie, -fno-common, -pipe what it does anyway
262 -f[no-]strict-aliasing, -f[no-]delete-null-pointer-checks what it assumes anyway
263 -static -shared -pie -no-pie -nostdlib -nostartfiles -nodefaultlibs -rdynamic -s how to link
264 -Wl,<arg>, -Xlinker <arg>, -fuse-ld=<name> hand an argument to the linker, or pick one
265 -Werror -pedantic -pedantic-errors -w -W[no-]system-headers how much to say, and how fatal
266 -m64 -march= -mtune= -mcpu= -mabi= -mcmodel= what machine to generate for
267 -pg -p, -mfentry -mno-fentry call a profiler on the way in, and where that call goes
268 -fpatchable-function-entry=<n>[,<m>] room at the top of every function to patch later
269 -fwrapv, -fwrapv-pointer, -fno-strict-overflow signed or pointer overflow wraps
270 -ftrapv signed overflow stops the program instead
271 -f[no-]signed-char, -f[no-]unsigned-char, -f[no-]short-enums change the ABI
272 -ffp-contract=<how> fuse a multiply and an addition: fast, on or off
273 -fexcess-precision=<how>, -f[no-]rounding-math, -f[no-]trapping-math what may be folded
274 -ffile-prefix-map=<old>=<new> rewrite that front of every path we put in the output
275 -fmacro-prefix-map= -fdebug-prefix-map= -fprofile-prefix-map= the same, one output each
276 -pthread build for more than one thread, and link the library for it
277 -dumpmachine -dumpversion -print-multiarch -print-search-dirs what this compiler is
278 -print-file-name=<name> -print-prog-name=<name> where a file or a program is
279 -print-sysroot the root the headers and the libraries are read under
280 -print-sysroot-provenance every input under it, where it came from and its licence
281 -print-sysroot-digest the sha256 of that record, which names the whole sysroot in one line
282 --fetch <tuple> get the sysroot this release pins for <tuple> and install it in the cache
283 --fetch-msvc-sdk <tuple> Microsoft's licence, then the SDK behind it with --accept-licence
284 --offline never download anything, which a compilation never does anyway
285 -j[n] compile n translation units at once, default all
286 -v, -### print each phase as it runs, or without running any
287 -save-temps[=cwd|obj], -time keep the .i and the .s, say how long each step took
288 --target=<triple> generate code for <triple>
289 --emit=<kind> exe, obj, archive, asm, preprocessed, tast, ir, mir-final,
290 safety-summary, type-granules
291 --print-config, --print-pipeline print the configuration or the pipeline, and exit
292 --version print the version and exit
293 -h, --help print this message and exit
294
295See spec/04-driver-and-cli.md for the full flag reference.
296";
297
298/// The argument of a flag that may be joined to it or may be the next word.
299///
300/// `-DFOO` and `-D FOO` are the same thing, and `at` is where the flag's own letters end.
301fn joined_or_next(
302 arg: &str,
303 at: usize,
304 args: &[String],
305 i: &mut usize,
306) -> Result<String, CliError> {
307 if arg.len() > at {
308 return Ok(arg[at..].to_owned());
309 }
310 let next = args.get(*i).ok_or_else(|| err(format!("{arg} requires an argument")))?;
311 *i += 1;
312 Ok(next.clone())
313}
314
315/// The smallest boundary a function is put on when the command line asked for no alignment at all.
316///
317/// Eight bytes, which is what gcc 16 gives `-fno-align-functions` on x86-64 and is a boundary every
318/// target this compiler has is happy with. It is not zero: a function still has to start somewhere
319/// an instruction may start, and the flag asks for the target's minimum rather than for none.
320const MIN_FUNC_ALIGN: u32 = 8;
321
322/// What `-falign-functions=N` asks for, as a power of two, or `None` for the target's own answer.
323///
324/// Zero and one both mean the default, which is gcc's reading of them, and everything else is
325/// rounded up to the next power of two, which is also gcc's: `-falign-functions=3` puts a function
326/// on a four byte boundary rather than being refused. Gives back `Err` shaped as an outer `None`
327/// only when the text is not a number, since that is the one thing gcc will not read either. A
328/// number larger than any alignment makes sense at is clamped rather than refused, for the same
329/// reason: this is a preference about speed and a build that wrote a silly one still deserves to
330/// compile.
331fn function_alignment(text: &str) -> Option<Option<u32>> {
332 // gcc takes `N:M:N2:M2`, where everything after the first number is about how far it is willing
333 // to go to reach the boundary. Only the boundary is answerable here, so the rest is read to
334 // check that it is numbers and then dropped.
335 let mut parts = text.split(':');
336 let first = parts.next()?;
337 if parts.any(|part| part.parse::<u64>().is_err()) {
338 return None;
339 }
340 let want: u64 = first.parse().ok()?;
341 if want <= 1 {
342 return Some(None);
343 }
344 let bytes = want.min(1 << 16).next_power_of_two();
345 Some(Some(u32::try_from(bytes).ok()?))
346}
347
348/// Every name that may follow `-fsanitize=`, which is gcc 16's list and three of this compiler's
349/// own.
350///
351/// The three are on it because `spec/07-types-and-semantics.md` section 7.7 already promises them:
352/// each undefined behaviour this compiler exploits is listed there with the check that detects it,
353/// and `alias`, `restrict` and `memory` are checks gcc has no spelling for. gcc refuses `memory`
354/// outright, since the sanitizer of that name is clang's. A name being here means it is a name
355/// rather than a typo, and nothing more than that: every one of them is refused after the loop,
356/// because none of them is implemented.
357///
358/// `all` is deliberately absent. gcc takes it only in the negative, so it is handled where each of
359/// those two spellings is read rather than by being on this list.
360const SANITIZERS: [&str; 34] = [
361 "address",
362 "kernel-address",
363 "hwaddress",
364 "kernel-hwaddress",
365 "pointer-compare",
366 "pointer-subtract",
367 "thread",
368 "leak",
369 "undefined",
370 "shift",
371 "shift-base",
372 "shift-exponent",
373 "integer-divide-by-zero",
374 "unreachable",
375 "vla-bound",
376 "null",
377 "return",
378 "signed-integer-overflow",
379 "bounds",
380 "bounds-strict",
381 "alignment",
382 "object-size",
383 "float-divide-by-zero",
384 "float-cast-overflow",
385 "nonnull-attribute",
386 "returns-nonnull-attribute",
387 "bool",
388 "enum",
389 "vptr",
390 "pointer-overflow",
391 "builtin",
392 "alias",
393 "restrict",
394 "memory",
395];
396
397/// Parses a command line, without the program name.
398///
399/// # Errors
400///
401/// Returns the message to print when the arguments do not name a compilation this compiler
402/// can attempt.
403pub fn parse_args(args: &[String]) -> Result<Action, CliError> {
404 let host = Triple::host()
405 .ok_or_else(|| err("this host is not a supported target and no --target was given"))?;
406 let mut opts = Options::new(host);
407 // Where the compiler is running, which is what `DW_AT_comp_dir` is and what a debugger joins a
408 // relative file name onto. Asked here rather than where the debug sections are written, because
409 // this is the one layer that is allowed to look at the process it is in, and because a command
410 // line that compiles four files should give the same answer for all four.
411 opts.working_dir = std::env::current_dir().ok().map(|dir| dir.to_string_lossy().into_owned());
412 let mut inputs: Vec<Input> = Vec::new();
413 let mut print_config = false;
414 let mut print_pipeline = false;
415 let mut print_plan = false;
416 let mut verbose = false;
417 let mut jobs = Jobs::default();
418 let mut nostdinc = false;
419 let mut sysroot: Option<PathBuf> = None;
420 // What the command line is worth warning about, filled in after the loop rather than during it,
421 // because every question of this kind is about two flags and the last word on both of them is
422 // the end of the loop.
423 let mut notes: Vec<String> = Vec::new();
424 // The whole ten field target, kept beside the three field one because `--target=` can pin a
425 // libc version and `Triple` has nowhere to put it. It decides `__GLIBC_MINOR__` and nothing
426 // else today, and `None` is a command line that named no target, which is this machine.
427 let mut pinned: Option<TargetTuple> = None;
428 let mut output = None;
429 let mut link = LinkOptions::default();
430 let mut query: Option<Query> = None;
431 // What `--fetch` named, and whether `--offline` forbade it. Both are weighed after the loop
432 // because either can be written after the other.
433 let mut fetch: Option<String> = None;
434 // The other fetch, kept apart from the one above because they are different commands with
435 // different rules, and weighed after the loop for the same reason that one is.
436 let mut fetch_msvc: Option<String> = None;
437 let mut accepted = false;
438 let mut offline = false;
439 let mut threads = false;
440 // Which sanitizers are still asked for by the end of the command line. Accumulated across the
441 // loop rather than answered where it was read, because `-fno-sanitize=` turns one off and a
442 // build that asks for a check and then takes it back has asked for nothing. What happens to a
443 // set that is not empty is decided after the loop.
444 let mut sanitizers: Vec<&str> = Vec::new();
445 // `-x` applies to inputs that come after it and stays in effect until the next one, which
446 // is why it is tracked across the loop rather than attached to a single argument.
447 let mut forced: Option<InputKind> = None;
448 // What `-iprefix` last said, stuck on the front of every later `-iwithprefix`. It applies to
449 // the flags after it and not the ones before, so a command line may set it more than once.
450 // GCC's default is its own installed header directory with the last component taken off,
451 // which is a path a cross compiler's build system knows and passes; there is no equivalent
452 // here, so with no `-iprefix` the prefix is nothing and `-iwithprefix` names a directory
453 // outright.
454 let mut iprefix = String::new();
455
456 let mut i = 0;
457 while i < args.len() {
458 let arg = args[i].as_str();
459 i += 1;
460 match arg {
461 "-h" | "--help" => return Ok(Action::Help),
462 "--version" => return Ok(Action::Version),
463 // The sysroot fetch, which is weighed after the loop rather than acted on here, because
464 // `--offline` written after it has to be able to forbid it. Both spellings, since a
465 // flag that takes a tuple gets written both ways and neither is a guess at what the
466 // other meant.
467 "--fetch" => {
468 let value = args
469 .get(i)
470 .ok_or_else(|| err("--fetch requires the target to get a sysroot for"))?;
471 i += 1;
472 fetch = Some(value.clone());
473 }
474 _ if arg.starts_with("--fetch=") => {
475 fetch = Some(arg["--fetch=".len()..].to_owned());
476 }
477 // The other fetch, which is section 13.4's. Same two spellings for the same reason,
478 // and weighed after the loop so that `--offline` and `--accept-licence` written after
479 // it are read whichever order somebody put them in.
480 "--fetch-msvc-sdk" => {
481 let value = args.get(i).ok_or_else(|| {
482 err("--fetch-msvc-sdk requires the target to get the SDK for")
483 })?;
484 i += 1;
485 fetch_msvc = Some(value.clone());
486 }
487 _ if arg.starts_with("--fetch-msvc-sdk=") => {
488 fetch_msvc = Some(arg["--fetch-msvc-sdk=".len()..].to_owned());
489 }
490 // Both spellings of the word, because the compiler's own prose uses one of them and
491 // most of the people typing this will reach for the other, and being told that a flag
492 // is not a flag over the letter in the middle of it is a puzzle rather than a message.
493 "--accept-licence" | "--accept-license" => accepted = true,
494 // Accepted on any command line and only ever read by the fetch, because an ordinary
495 // compile downloads nothing with or without it. So this flag takes nothing away today,
496 // which is the property section 13.2 asks for rather than an omission: a build that
497 // passes it is saying what it expects of this compiler, and what it expects is already
498 // true.
499 "--offline" => offline = true,
500 "--print-config" => print_config = true,
501 "--print-pipeline" => print_pipeline = true,
502 "-###" => print_plan = true,
503 "-v" => verbose = true,
504 // The files a compilation goes through, kept rather than thrown away. The bare
505 // spelling means `=obj` and not `=cwd`, which is not what the manual says and is what
506 // gcc 16 does; `SaveTemps::Object` carries the measurement.
507 "-save-temps" => opts.save_temps = SaveTemps::Object,
508 _ if arg.starts_with("-save-temps=") => {
509 opts.save_temps = arg["-save-temps=".len()..].parse().map_err(err)?;
510 }
511 // How long each step took. A misspelling of this is worth rejecting rather than
512 // ignoring, since a run that says nothing looks like a compilation that took no time.
513 "-time" => opts.time = true,
514 "-c" => opts.emit = EmitKind::Object,
515 "-S" => opts.emit = EmitKind::Asm,
516 "-E" => opts.emit = EmitKind::Preprocessed,
517 "-g" => opts.debug_info = true,
518 // GCC's own levels of how much debug information to write. Zero is none and every
519 // other number is some, and this compiler has one amount, so the numbers above zero
520 // all mean the same thing here. `-ggdb` is the same flag asking for whatever the
521 // debugger on the machine prefers, which is what we emit anyway.
522 "-g0" => opts.debug_info = false,
523 "-g1" | "-g2" | "-g3" | "-ggdb" | "-ggdb1" | "-ggdb2" | "-ggdb3" => {
524 opts.debug_info = true;
525 }
526 // The version of DWARF to write. We write DWARF 5 and nothing else, so a build that
527 // asks for another version is told rather than handed a file it cannot read.
528 "-gdwarf" | "-gdwarf-5" => opts.debug_info = true,
529 _ if arg.starts_with("-gdwarf-") => {
530 return Err(err(format!(
531 "{arg}: this compiler writes DWARF 5 and no other version, see \
532 spec/11-debug-info.md"
533 )));
534 }
535 // Whether the debug information goes in a file of its own beside the object. gcc
536 // writes that `.dwo` whether or not it found anything to put in it, which means a
537 // build system that declares the file as an output gets one and a make rule that
538 // depends on it fires. Refused for that reason rather than taken: section 4.1 takes a
539 // flag that changes nothing and refuses one that changes what is produced, and a file
540 // that does not appear is the plainest change of that kind there is. The negative
541 // spelling is taken, because putting it all in the object is what happens anyway.
542 "-gno-split-dwarf" => {}
543 "-gsplit-dwarf" => {
544 return Err(err(format!(
545 "{arg}: this compiler writes no separate `.dwo` file, and a build that \
546 expects one beside each object would wait for a file that never arrives, \
547 see spec/11-debug-info.md"
548 )));
549 }
550 // How the debug sections are compressed. There are none yet, so every answer produces
551 // the same bytes and taking the flag promises nothing that is not kept. The value is
552 // still checked, because a typo in a distribution's flags is worth finding when the
553 // compiler reads it rather than when somebody later wonders why nothing got smaller.
554 // Bare `-gz` means `zlib`, which the manual leaves for the reader to discover.
555 "-gz" => opts.compress = Compress::Zlib,
556 _ if arg.starts_with("-gz=") => {
557 let how = &arg["-gz=".len()..];
558 opts.compress = how.parse().map_err(|()| {
559 err(format!(
560 "`{how}` is not a way to compress debug sections, which is none, zlib, \
561 zlib-gnu or zstd"
562 ))
563 })?;
564 }
565 "-Werror" => opts.warnings_are_errors = true,
566 // Nothing that is not fatal is said at all. Read at the one place a diagnostic goes
567 // through rather than here, so that a warning `-w` dropped is not counted either.
568 "-w" => opts.warnings = false,
569 // Off by default, the way gcc has it off. A header that came with the machine is not
570 // one the person compiling can change, so a warning about it is noise, and under
571 // `-Werror` it is a build that stops on a line nobody in the project wrote. Somebody
572 // porting a header does want to hear all of it, which is what the flag is for.
573 "-Wsystem-headers" => opts.system_header_warnings = true,
574 "-Wno-system-headers" => opts.system_header_warnings = false,
575 "-pedantic-errors" => {
576 opts.pedantic = true;
577 opts.warnings_are_errors = true;
578 }
579 "-P" => opts.line_markers = false,
580 // The dependency family, which section 4.4 calls required because every build system
581 // that generates its own makefiles asks for it. The two that end in `D` write a file
582 // beside the object and let the compilation happen, and the two that do not write to
583 // standard output and stop after it. Nothing here turns the system headers back on
584 // once a flag has turned them off, which is GCC's behaviour and is why `-MM -M` is
585 // `-MM`: the flag asking for fewer of them is the one with something to say.
586 "-M" => {
587 opts.deps.emit = true;
588 opts.deps.instead_of_compiling = true;
589 }
590 "-MM" => {
591 opts.deps.emit = true;
592 opts.deps.instead_of_compiling = true;
593 opts.deps.system_headers = false;
594 }
595 "-MD" => opts.deps.emit = true,
596 "-MMD" => {
597 opts.deps.emit = true;
598 opts.deps.system_headers = false;
599 }
600 "-MP" => opts.deps.phony = true,
601 // These three take a word and only in the separated form, which is how GCC spells
602 // them and how every build system writes them.
603 "-MF" | "-MT" | "-MQ" => {
604 let value =
605 args.get(i).ok_or_else(|| err(format!("{arg} requires an argument")))?;
606 i += 1;
607 match arg {
608 "-MF" => opts.deps.file = Some(value.clone()),
609 // The whole of the difference between the two. `-MT` is for a build that has
610 // already escaped what it is passing, and `-MQ` is for one that has a name
611 // and wants it to arrive as that name.
612 "-MT" => opts.deps.targets.push(value.clone()),
613 _ => opts.deps.targets.push(deps::escaped(value)),
614 }
615 }
616 // The questions a build system asks before it compiles anything. Answered after the
617 // loop, because each one is about the target or the library search and the command
618 // line has not finished saying what those are.
619 "-dumpmachine" => query = Some(Query::Machine),
620 "-dumpversion" | "-dumpfullversion" => query = Some(Query::Version),
621 "-print-multiarch" => query = Some(Query::Multiarch),
622 "-print-search-dirs" => query = Some(Query::SearchDirs),
623 "-print-sysroot" => query = Some(Query::Sysroot),
624 // Both spellings, because this one is ours rather than GCC's and our own documents
625 // write it both ways: section 13.5 of `spec/cross-compile/13-distribution.md` gives it
626 // two dashes like the other flags we invented, and document 12's table gives it one
627 // like the `-print-` family it sits in. A person who reads either and types what it
628 // says is right, so neither is refused.
629 "-print-sysroot-provenance" | "--print-sysroot-provenance" => {
630 query = Some(Query::SysrootProvenance);
631 }
632 "-print-sysroot-digest" | "--print-sysroot-digest" => {
633 query = Some(Query::SysrootDigest);
634 }
635 "-print-libgcc-file-name" => query = Some(Query::Libgcc),
636 _ if arg.starts_with("-print-file-name=") => {
637 query = Some(Query::FileName(arg["-print-file-name=".len()..].to_owned()));
638 }
639 _ if arg.starts_with("-print-prog-name=") => {
640 query = Some(Query::ProgName(arg["-print-prog-name=".len()..].to_owned()));
641 }
642 // A program built to run in more than one thread. On every platform this compiler
643 // targets that is a macro the library's headers read and one more library on the
644 // link line, and the library is added after the loop so that it lands after the
645 // objects that refer to it.
646 "-pthread" | "-pthreads" => {
647 opts.defines.push("_REENTRANT".to_owned());
648 threads = true;
649 }
650 "-ansi" => {
651 opts.std = Std::C89;
652 opts.gnu_extensions = false;
653 }
654 // `-Wpedantic` is the same flag under the name the `-W` family gives it, which is
655 // the spelling a build system that groups its warning flags tends to write.
656 "-pedantic" | "-Wpedantic" => opts.pedantic = true,
657 // Both directions, because a build that needs this for one directory turns it back
658 // off for the next one rather than leaving it on for the whole tree.
659 "-fpermissive" => opts.permissive = true,
660 "-fno-permissive" => opts.permissive = false,
661 "-ffreestanding" => opts.hosted = false,
662 "-fhosted" => opts.hosted = true,
663 "-fno-builtin" => opts.builtins = false,
664 "-fbuiltin" => opts.builtins = true,
665 // The C89 dialects are under GNU's reading whatever this says, so turning it off
666 // there is turning off something the dialect asked for, which is accepted and does
667 // nothing. gcc refuses that command line, and there is nothing it could have meant.
668 "-fgnu89-inline" => opts.gnu89_inline = true,
669 "-fno-gnu89-inline" => opts.gnu89_inline = false,
670 // Both directions of each, because a build system that wants one of these usually
671 // writes it beside the flag that turns it back off for one directory.
672 "-fno-omit-frame-pointer" => opts.frame_pointer = true,
673 "-fomit-frame-pointer" => opts.frame_pointer = false,
674 // Both directions again, for the same reason, and a third answer for a command line
675 // that wrote neither: see `reorder_blocks` in `rucc_session`.
676 "-freorder-blocks" => opts.reorder_blocks = Some(true),
677 "-fno-reorder-blocks" => opts.reorder_blocks = Some(false),
678 // gcc's name for the scheduler that runs after the registers are handed out, which is
679 // the only one rucc has: see `schedule_insns` in `rucc_session`. gcc also takes
680 // `-fschedule-insns` for the pass before allocation, and taking that one here would be
681 // a flag that says a pass ran when none did.
682 "-fschedule-insns2" => opts.schedule_insns = Some(true),
683 "-fno-schedule-insns2" => opts.schedule_insns = Some(false),
684 "-mno-red-zone" => opts.red_zone = false,
685 "-mred-zone" => opts.red_zone = true,
686 // Four flags rather than one with an argument, which is how gcc spells them and how
687 // every build line writes them. Last one wins, because a package build puts
688 // `-fstack-protector-strong` in its global flags and a directory that cannot have one
689 // turns it back off on the line after.
690 "-fno-stack-protector" | "-fno-stack-protector-all" | "-fno-stack-protector-strong" => {
691 opts.protector = Protector::None;
692 }
693 "-fstack-protector" => opts.protector = Protector::Buffers,
694 "-fstack-protector-strong" => opts.protector = Protector::Strong,
695 "-fstack-protector-all" => opts.protector = Protector::All,
696 // The other half of what a hardened build asks for, and it is a question about the
697 // frame rather than about the function, so it is a switch rather than a level.
698 "-fstack-clash-protection" => opts.stack_clash = true,
699 "-fno-stack-clash-protection" => opts.stack_clash = false,
700 // The third of them, and the one that is a question with an argument rather than a
701 // family of spellings, because what it asks about is which of the two edges of a
702 // control flow transfer is checked. Bare is both of them, which is what gcc does.
703 "-fcf-protection" => opts.control = Control::Full,
704 "-fno-cf-protection" => opts.control = Control::None,
705 // Two spellings of the same request, which is what gcc has as well. `-p` was the older
706 // profiler and `-pg` the one that also recorded who called whom, and on every platform
707 // this compiler targets there is now one hook and both ask for it.
708 "-pg" | "-p" => {
709 opts.profile = true;
710 link.profile = true;
711 }
712 // Accepted on their own and doing nothing on their own, which is gcc's behaviour: they
713 // say where the call goes and a command line that asked for no call has nowhere to put
714 // one. That matters because a build system that sets `-mfentry` globally and `-pg` per
715 // directory is a build system that would otherwise fail on every other directory.
716 "-mfentry" => opts.hook = Hook::Early,
717 "-mno-fentry" => opts.hook = Hook::Late,
718 // GCC drops its own include directory along with the system ones, because its
719 // headers are half of a pair with the library's and half a pair is worse than
720 // none. A build that passes this is supplying the whole set itself.
721 "-nostdinc" => nostdinc = true,
722 "-o" => {
723 output = Some(args.get(i).ok_or_else(|| err("-o requires an argument"))?.clone());
724 i += 1;
725 }
726 // The flags that take a directory only in the separated form. GCC spells them
727 // this way and nothing writes `-iquotedir`, so accepting the joined form would
728 // mean guessing at a path that starts with the flag's own letters.
729 // Apple's spelling of `--sysroot`, and the one its own build systems pass. The
730 // two mean the same thing here: the configured directories are under there rather
731 // than under the root.
732 "-isysroot" => {
733 let dir = args.get(i).ok_or_else(|| err("-isysroot requires an argument"))?;
734 i += 1;
735 sysroot = Some(PathBuf::from(dir));
736 }
737 "-iquote" | "-isystem" | "-idirafter" => {
738 let dir = args.get(i).ok_or_else(|| err(format!("{arg} requires an argument")))?;
739 i += 1;
740 match arg {
741 "-iquote" => opts.search.push_quote(dir.clone()),
742 "-isystem" => opts.search.push_system(dir.clone()),
743 _ => opts.search.push_after(dir.clone()),
744 }
745 }
746 "-iprefix" => {
747 iprefix = args.get(i).ok_or_else(|| err("-iprefix requires an argument"))?.clone();
748 i += 1;
749 }
750 // Where GCC puts these is not where its manual says it puts them, and this is the
751 // measured answer rather than the documented one: `-iwithprefix` lands in the
752 // `-isystem` slot and not the `-idirafter` slot, and `-iwithprefixbefore` lands in
753 // the `-I` slot. A cross build that uses them is relying on the behaviour, since
754 // that is the compiler it was developed against.
755 "-iwithprefix" | "-iwithprefixbefore" => {
756 let dir = args.get(i).ok_or_else(|| err(format!("{arg} requires an argument")))?;
757 i += 1;
758 let dir = format!("{iprefix}{dir}");
759 if arg == "-iwithprefix" {
760 opts.search.push_system(dir);
761 } else {
762 opts.search.push_bracket(dir);
763 }
764 }
765 "-include" | "-imacros" => {
766 let name = args.get(i).ok_or_else(|| err(format!("{arg} requires an argument")))?;
767 i += 1;
768 opts.preincludes
769 .push(Preinclude { name: name.clone(), macros_only: arg == "-imacros" });
770 }
771 // The flag `-iquote` was introduced to replace, still passed by build systems old
772 // enough to predate the replacement. It is not a directory: it says that every `-I`
773 // so far is for quoted includes only, and that a quoted include stops looking next
774 // to the file that wrote it.
775 "-I-" => opts.search.split_quote_chain(),
776 "-x" => {
777 let lang = args.get(i).ok_or_else(|| err("-x requires an argument"))?;
778 i += 1;
779 forced = if lang == "none" {
780 None
781 } else {
782 Some(InputKind::from_x_arg(lang).map_err(|e| err(format!("{e}")))?)
783 };
784 }
785 // Not a GCC flag. spec/03-architecture.md section 3.5 compiles several
786 // translation units in one process rather than making the build system fork, and
787 // section 3.8's determinism check compares `-j1` against `-j16`, so the knob has
788 // to exist and has to be spelled the way `make` spells it.
789 // `-DFOO`, `-D FOO` and the same for `-U` and `-I`. Both forms are in wide use
790 // and a build system may produce either, so both are read here rather than
791 // being normalised by whatever generated the command line.
792 _ if arg.starts_with("-D") => {
793 let value = joined_or_next(arg, 2, args, &mut i)?;
794 opts.defines.push(value);
795 }
796 _ if arg.starts_with("-U") => {
797 let value = joined_or_next(arg, 2, args, &mut i)?;
798 opts.undefines.push(value);
799 }
800 _ if arg.starts_with("-I") => {
801 let dir = joined_or_next(arg, 2, args, &mut i)?;
802 opts.search.push_bracket(dir);
803 }
804 _ if arg.starts_with("-std=") => {
805 let name = &arg["-std=".len()..];
806 let (std, gnu) = Std::from_flag(name)
807 .ok_or_else(|| err(format!("unknown dialect `{name}`, see --help")))?;
808 opts.std = std;
809 opts.gnu_extensions = gnu;
810 }
811 // Section 4.5. The claim decides which half of glibc's `sys/cdefs.h` we are
812 // handed, so a differential run that does not set it is comparing two compilers
813 // that believe they are different compilers.
814 // GCC packs these into one flag, so `-dDI` is two of them. Letters in the family
815 // that we have not written yet are accepted and ignored, because a dump is a
816 // debugging aid and a build that asks for one should still compile. A letter
817 // outside the family falls through to the unknown option error, which is what
818 // keeps `-dumpversion` from being read as a dump of nothing.
819 _ if Dumps::is_family(arg) => {
820 opts.dumps.add(&arg[2..]);
821 }
822 // One name at a time, which is what a build that means its own `memcpy` and the
823 // library's everything else writes. The name is not checked against a list, because
824 // the flag is about what the program means by a name and a program is allowed to mean
825 // something by a name this compiler has never heard of.
826 _ if arg.starts_with("-fno-builtin-") => {
827 opts.no_builtin.push(arg["-fno-builtin-".len()..].to_owned());
828 }
829 _ if arg.starts_with("-fgnuc-version=") => {
830 let v = &arg["-fgnuc-version=".len()..];
831 opts.gnuc = v.parse().map_err(err)?;
832 }
833 // spec/13-gnu-compat.md section 13.3 promises this flag an error that says why rather
834 // than the unknown option one, because a build reaching for it is asking for a feature
835 // and deserves to be told it is not coming rather than told the spelling is wrong.
836 // The negative form is what this compiler does anyway, so it is taken and dropped.
837 "-fnested-functions" => {
838 return Err(err(
839 "nested functions are not supported: a call to one goes through a trampoline \
840 written on the stack, which no target that enforces an unexecutable stack \
841 allows",
842 ));
843 }
844 "-fno-nested-functions" => {}
845 // Which of the two links the output is for, which is a real difference and not a
846 // description of what happens anyway. Everything here is position independent either
847 // way, and what these decide is whether a name may be one another object defines or
848 // replaces, because a link that produces an executable puts every name in the same
849 // program and a link that produces a shared library does not.
850 //
851 // It matters that they are accepted at all, whatever they then do. Every autoconf and
852 // cmake build puts `-fPIC` on the compile line, so a compiler that rejects it cannot
853 // be the `CC` of a project that has a configure script, whatever else it can do. That
854 // is how this was found: building SQLite's test fixture stopped on it.
855 "-fPIC" | "-fpic" => opts.pic = Pic::Library,
856 // Not a synonym of the pair above, which is what they were treated as until #756. The
857 // library is the expensive answer and gcc makes it the one that has to be asked for,
858 // so this is also what nothing at all means.
859 "-fPIE" | "-fpie" => opts.pic = Pic::Executable,
860 // A different question from the pair above, and the one every distribution build of a
861 // shared library answers. `-fPIC` decides how an address is reached, and this decides
862 // whether the optimizer may believe a body it can see, because an exported name is one
863 // the dynamic linker may find another definition of first. On by default, which is
864 // gcc's arrangement and is the honest answer, and off is a promise the build makes and
865 // nothing checks.
866 "-fsemantic-interposition" => opts.interposition = true,
867 "-fno-semantic-interposition" => opts.interposition = false,
868 // Two requests rather than one, and the same table answers both, so what decides is
869 // whether either of them is standing. gcc arranges it the same way: the asynchronous
870 // one is the default here and it implies the other, and a line that asks for a table
871 // and against an asynchronous one gets a table.
872 "-fasynchronous-unwind-tables" => opts.async_unwind_tables = true,
873 "-fno-asynchronous-unwind-tables" => opts.async_unwind_tables = false,
874 "-funwind-tables" => opts.unwind_tables = true,
875 "-fno-unwind-tables" => opts.unwind_tables = false,
876 // The other direction is a request, not a description, and it is one this compiler
877 // cannot grant, so it gets the treatment section 13.3 asks for rather than the unknown
878 // option error. Answering it by carrying on would be answering a different question:
879 // the code would still be position independent, which is correct everywhere an
880 // ordinary program runs and is wrong in a kernel, where the flag is written precisely
881 // because there is no loader to fill a global offset table in.
882 "-fno-pic" | "-fno-pie" => {
883 return Err(err(
884 "position dependent code is not supported: an address that may be in another \
885 object is loaded out of the global offset table, and nothing here emits the \
886 absolute form this asks for. Use -no-pie if what you meant was how to link",
887 ));
888 }
889 // A section per function and a section per variable, which is what makes
890 // `--gc-sections` able to drop anything: a linker can leave out a section nothing
891 // reaches and cannot leave out half of one. Both directions are taken, and the off
892 // one is the default rather than a refusal, since a build that writes it is asking
893 // for what happens anyway.
894 "-ffunction-sections" => opts.function_sections = true,
895 "-fno-function-sections" => opts.function_sections = false,
896 "-fdata-sections" => opts.data_sections = true,
897 "-fno-data-sections" => opts.data_sections = false,
898 // Another description of what this compiler does. A file scope declaration with no
899 // initializer is written into `.bss` as an ordinary defined symbol, not offered to the
900 // linker as a common one for it to merge, which is what `-fno-common` asks for and what
901 // gcc has done by default since 10. Nothing in the front end produces `Linkage::Common`
902 // at all.
903 "-fno-common" => {}
904 // What overflows rather than being undefined. Every one of these takes something away
905 // from the optimizer rather than asking it to do anything, which is why the negative
906 // spellings are the interesting ones and the positive spellings are the default.
907 //
908 // `-fno-strict-overflow` is both of the others, which is gcc's own reading of it: its
909 // help text for `-fstrict-overflow` says "negated as -fwrapv -fwrapv-pointer". So it is
910 // written here as the pair rather than kept as a third thing to test everywhere.
911 //
912 // `-ftrapv` is the exception and is the one that asks for something. It is the other
913 // answer to the question `-fwrapv` answers, so the two cannot both hold and each clears
914 // the other, which makes the last one on the command line the one that counts. That is
915 // gcc 16's behaviour and was measured rather than read: `-ftrapv -fwrapv` emits no
916 // checked calls and `-fwrapv -ftrapv` emits them. The positive spelling of the pointer
917 // question is left alone by both, because neither has anything to say about it.
918 "-fwrapv" => {
919 opts.wrapping.signed = true;
920 opts.wrapping.trap = false;
921 }
922 "-fno-wrapv" => opts.wrapping.signed = false,
923 "-fwrapv-pointer" => opts.wrapping.pointer = true,
924 "-fno-wrapv-pointer" => opts.wrapping.pointer = false,
925 "-fno-strict-overflow" => opts.wrapping = Wrapping::ALL,
926 // Which does not clear the checked one, because gcc does not: `-ftrapv
927 // -fstrict-overflow` still emits the calls. It says what is assumed and not what
928 // happens.
929 "-fstrict-overflow" => {
930 opts.wrapping.signed = false;
931 opts.wrapping.pointer = false;
932 }
933 "-ftrapv" => {
934 opts.wrapping.trap = true;
935 opts.wrapping.signed = false;
936 }
937 "-fno-trapv" => opts.wrapping.trap = false,
938 // The two flags that say what a plain `char` is, which is one question with two
939 // spellings each: gcc reads `-fno-signed-char` as `-funsigned-char` and
940 // `-fno-unsigned-char` as `-fsigned-char`, so there are four ways to write two
941 // answers and the last one written wins. Nothing is set until one of them is given,
942 // because the target's own ABI is the answer otherwise and it is not the same answer
943 // everywhere: x86-64 and Apple's arm64 are signed, Linux's arm64 is not.
944 "-fsigned-char" | "-fno-unsigned-char" => opts.char_signed = Some(true),
945 "-funsigned-char" | "-fno-signed-char" => opts.char_signed = Some(false),
946 // And the size of an enumeration, which is the other thing in this group that changes
947 // the ABI rather than the code.
948 "-fshort-enums" => opts.short_enums = true,
949 "-fno-short-enums" => opts.short_enums = false,
950 // And Microsoft's reading of an anonymous member, which changes the layout of every
951 // record that writes a tag on one. Nothing is set until one of them is given, because
952 // the target is the answer otherwise: gcc's mingw build has this on and its Linux
953 // build has it off.
954 "-fms-extensions" => opts.ms_extensions = Some(true),
955 "-fno-ms-extensions" => opts.ms_extensions = Some(false),
956 // And the request, which is the one that cannot be granted. It is a real difference and
957 // not a preference: two files each writing `int g;` link under `-fcommon` and are a
958 // duplicate definition without it, which is the whole reason the flag survives.
959 "-fcommon" => {
960 return Err(err(
961 "a tentative definition is written into .bss as its own symbol here, and \
962 nothing emits the common symbol this asks the linker to merge. Give the \
963 variable a definition in one file and declare it extern in the others",
964 ));
965 }
966 // Both directions of this one are recorded, and what they decide is whether lowering
967 // names the type each access goes through. Turning it off is the front end leaving the
968 // name off rather than a pass being told to ignore one it can see, which is one
969 // condition in one place, and it is the reading that survives link time optimization:
970 // a unit built with the flag off keeps its own answer when its bodies end up in a
971 // module beside bodies that were not.
972 //
973 // Nothing in the pipeline reads those names yet. Layer 3 of the alias analysis does
974 // and is tested, and no pass at any level asks the alias analysis anything today, so
975 // no program compiles differently for having passed this. The flag is wired anyway,
976 // because the change that makes a pass ask is not the change anybody will remember to
977 // wire it in, and a flag that is taken and dropped once the names mean something is
978 // the miscompilation `spec/04-driver-and-cli.md` section 4.1 warns about in as many
979 // words.
980 "-fstrict-aliasing" => opts.strict_aliasing = true,
981 "-fno-strict-aliasing" => opts.strict_aliasing = false,
982 // The same shape of answer for the same reason, and the flag the kernel writes beside
983 // the one above it.
984 //
985 // Nothing here concludes that a pointer is not null from the fact that it was
986 // dereferenced. There is no such conclusion to draw from, because no pass records one:
987 // a load says where it read and nothing else, and a comparison against null is an
988 // ordinary comparison of two values the optimizer has no fact about. So a function
989 // that reads through a pointer and then tests it keeps the test, which is what the
990 // kernel wants and what `-fno-delete-null-pointer-checks` asks for, and what gcc has
991 // to be asked for because it draws the conclusion by default.
992 //
993 // `-fdelete-null-pointer-checks` is the request to draw it, and it goes the way
994 // `-fstrict-aliasing` does: assuming less than was asked for costs speed and not
995 // correctness, and `-O2` implies it, so refusing it would stop builds for nothing.
996 "-fdelete-null-pointer-checks" | "-fno-delete-null-pointer-checks" => {}
997 // The floating point group, which goes the same way and for the same reason, and which
998 // is worth writing out because the reason is easy to get backwards.
999 //
1000 // Each of these has a restrictive spelling and a permissive one. The restrictive ones,
1001 // `-frounding-math` and `-ftrapping-math`, say that the rounding mode may have been
1002 // changed and that an exception raised by an operation may be looked at, so an
1003 // arithmetic the compiler folds at compile time is an arithmetic whose rounding and
1004 // whose exception the program does not get. Nothing here folds any floating point
1005 // arithmetic in a function body: `0.1 + 0.2` is an `fadd` and `1.0 / 0.0` is a divide
1006 // that runs, at every level. So both of those describe what already happens.
1007 //
1008 // The permissive ones are the other half, and they are licences rather than requests
1009 // for an answer. `-fno-rounding-math` says the rounding mode is the default one and
1010 // `-fno-trapping-math` says nothing looks at the exceptions, which together are
1011 // permission to fold. Not folding is the conservative side of that permission and is
1012 // what a program is entitled to whichever was written, so `-fno-rounding-math` costs
1013 // speed and not correctness, which is the test section 4.1 puts a licence through.
1014 "-frounding-math" | "-fno-rounding-math" => {}
1015 // `-fno-trapping-math` is the one of the four that is kept, because there is one
1016 // conversion this compiler does not fold and gcc folds under it, and the two answers
1017 // differ. Converting a constant floating value to an integer type it does not fit in
1018 // is undefined behaviour rather than a value: left to the hardware it is one
1019 // instruction and the answer is the integer indefinite value, and folded it is the
1020 // nearest end of the integer's range. Both compilers leave it to the instruction by
1021 // default and gcc folds it under this flag, so a program built with it and compiled
1022 // without it gets a different number rather than a slower one. `-ftrapping-math` is
1023 // gcc's default, so a build spelling it out is asking for what it already has.
1024 "-ftrapping-math" => opts.trapping_math = true,
1025 "-fno-trapping-math" => opts.trapping_math = false,
1026 // About temporary files rather than about code. There is nothing between the phases of
1027 // one compilation here to write to a file in the first place.
1028 "-pipe" => {}
1029 // Nothing here writes colour, so all of these are the same answer, and it is the answer
1030 // that costs nothing: the diagnostics come out plain either way and no build depends on
1031 // an escape sequence being there. Taken rather than refused because cmake writes
1032 // `-fdiagnostics-color=always` on every compile line when the generator is ninja, which
1033 // makes this the second most common flag after `-fPIC` to stop a build over a question
1034 // about how the text looks.
1035 "-fdiagnostics-color" | "-fno-diagnostics-color" => {}
1036 _ if arg.starts_with("-fdiagnostics-color=") => {}
1037 // The link flags. None of them changes the compilation, which is why they are
1038 // collected apart from `opts` and why `-lm` on a `-c` line is a note rather than an
1039 // error: it is a thing said to a linker that is not going to run.
1040 "-static" => link.is_static = true,
1041 "-shared" => link.shared = true,
1042 "-pie" => link.pie = Some(true),
1043 "-no-pie" | "-nopie" => link.pie = Some(false),
1044 "-nostdlib" => link.no_stdlib = true,
1045 "-nostartfiles" => link.no_startfiles = true,
1046 "-nodefaultlibs" => link.no_defaultlibs = true,
1047 "-fno-builtins-lib" => link.no_builtins_lib = true,
1048 "-fbuiltins-lib" => link.no_builtins_lib = false,
1049 "-rdynamic" | "-export-dynamic" => link.export_dynamic = true,
1050 "-s" => link.strip = true,
1051 // Into the ordered input list rather than a list of its own, because a great many of
1052 // the linker's options are a bracket around the files after them and an option that
1053 // lost its place among them says nothing. `--whole-archive` is the one that found this.
1054 "-Xlinker" => {
1055 let next = args.get(i).ok_or_else(|| err("-Xlinker requires an argument"))?;
1056 i += 1;
1057 inputs.push(Input::linker(next));
1058 }
1059 _ if arg.starts_with("-Wl,") => {
1060 // Commas separate arguments rather than being part of one, which is what makes
1061 // `-Wl,-rpath,/opt/lib` two words to the linker and one word here.
1062 inputs.extend(arg["-Wl,".len()..].split(',').map(Input::linker));
1063 }
1064 _ if arg.starts_with("-fuse-ld=") => {
1065 link.use_ld = Some(arg["-fuse-ld=".len()..].to_owned());
1066 }
1067 _ if arg.starts_with("-l") && arg.len() > 2 => {
1068 inputs.push(Input::library(&arg[2..]));
1069 }
1070 "-l" => {
1071 let next = args.get(i).ok_or_else(|| err("-l requires an argument"))?;
1072 i += 1;
1073 inputs.push(Input::library(next));
1074 }
1075 _ if arg.starts_with("-L") => {
1076 link.search.push(PathBuf::from(joined_or_next(arg, 2, args, &mut i)?));
1077 }
1078 _ if arg.starts_with("-B") => {
1079 link.prefixes.push(PathBuf::from(joined_or_next(arg, 2, args, &mut i)?));
1080 }
1081 _ if arg.starts_with("-j") => {
1082 jobs = Jobs::parse(&arg[2..]).map_err(err)?;
1083 }
1084 _ if arg.starts_with("--sysroot=") => {
1085 sysroot = Some(PathBuf::from(&arg["--sysroot=".len()..]));
1086 }
1087 _ if arg.starts_with("--target=") => {
1088 let t = &arg["--target=".len()..];
1089 opts.target = t.parse().map_err(|e| err(format!("{e}")))?;
1090 // The same string again, as the model that has room for a libc version. A spelling
1091 // the three field parser took and this one does not is not an error, because the
1092 // one that decides what is compiled has already accepted it and the only thing
1093 // lost is a version nobody asked for.
1094 pinned = t.parse().ok();
1095 }
1096 _ if arg.starts_with("--emit=") => {
1097 let k = &arg["--emit=".len()..];
1098 opts.emit = k
1099 .parse()
1100 .map_err(|()| err(format!("unknown --emit kind `{k}`, see --help")))?;
1101 }
1102 // A bare `-O` is `-O1`, which is what GCC has and what a hand written makefile tends
1103 // to write. `-Og` is GCC's level for a build somebody is going to step through, and
1104 // it is `-O1` with the transformations that move code around left out; this compiler
1105 // has no such level yet, so it is the nearest one and `--print-pipeline` says what
1106 // that came to rather than the flag pretending otherwise.
1107 "-O" | "-Og" => opts.opt_level = rucc_session::OptLevel::O1,
1108 // The union of `-O3` and `-ffast-math`, and the second half of that changes what
1109 // floating point arithmetic means. Refused rather than taken as `-O3`, because a
1110 // build that asks for fast math and is quietly given ordinary arithmetic gets a
1111 // slower program than it asked for and a build that is given fast math it did not
1112 // ask for gets a wrong one.
1113 "-Ofast" => {
1114 return Err(err(
1115 "-Ofast is -O3 with fast math, and fast math is not implemented, see \
1116 spec/04-driver-and-cli.md section 4.6",
1117 ));
1118 }
1119 _ if arg.starts_with("-O") => {
1120 opts.opt_level = arg[2..]
1121 .parse()
1122 .map_err(|()| err(format!("unknown optimization level `{arg}`")))?;
1123 }
1124 // How far a multiply and an addition may be fused into one rounding. Before the
1125 // optimizer's `-f` family below for the reason the ones under it are, and kept rather
1126 // than dropped because it is the one flag in its group this compiler could act on: it
1127 // rides into the IR as an attribute on each function with a body, so the day the code
1128 // generator forms an `fma` it already knows which functions were given permission.
1129 // Nothing forms one today, under any value of this and under any `-march=`.
1130 _ if arg.starts_with("-ffp-contract=") => {
1131 let how = &arg["-ffp-contract=".len()..];
1132 opts.fp_contract = how.parse().map_err(|()| {
1133 err(format!("`{how}` is not a contraction, which is fast, on or off"))
1134 })?;
1135 }
1136 // How much of an expression may be computed wider than it was written. The values are
1137 // gcc's and so is the refusal of anything else, and none of the three changes anything
1138 // here: an operation is computed in the type C says it is on every target this compiler
1139 // has a back end for, so `__FLT_EVAL_METHOD__` is 0 and `standard` is already what
1140 // happens. `fast` and `16` are permission to be wider, which is a licence this takes
1141 // and does not use, the same way the two above are. The flag is worth taking because
1142 // glibc's headers and a good deal of configure output write it, and because the answer
1143 // it asks about is one this compiler can state rather than guess at: there is no x87
1144 // target here, which is the machine the whole question was invented for.
1145 // Whether a local and a spilled value that are never both wanted may be the same bytes
1146 // of the frame. gcc's three values, and two of them mean the same thing here: what rucc
1147 // shares is a local whose address provably never leaves the function, which is narrower
1148 // than `named_vars` and narrower still than `all`, so both of them get it. `none` is
1149 // the one that changes anything, and it is the flag a program that reads a local
1150 // through a pointer it kept past the end of the block writes.
1151 _ if arg.starts_with("-fstack-reuse=") => {
1152 let how = &arg["-fstack-reuse=".len()..];
1153 opts.stack_reuse = match how {
1154 "all" | "named_vars" => Some(true),
1155 "none" => Some(false),
1156 _ => {
1157 return Err(err(format!(
1158 "`{how}` is not a stack reuse, which is all, named_vars or none"
1159 )));
1160 }
1161 };
1162 }
1163 _ if arg.starts_with("-fexcess-precision=") => {
1164 let how = &arg["-fexcess-precision=".len()..];
1165 if !matches!(how, "16" | "fast" | "standard") {
1166 return Err(err(format!(
1167 "`{how}` is not an excess precision, which is 16, fast or standard"
1168 )));
1169 }
1170 }
1171 // Which front of a path is rewritten before it reaches the output, which is how a
1172 // build gets the same bytes out of two different directories. The four spellings are
1173 // one flag each into three lists, and `-ffile-prefix-map=` is the three of them at
1174 // once. Only the macro list does anything today, because `__FILE__` is the only place
1175 // a path reaches the output: there is no DWARF and no profile data yet, so the other
1176 // two are recorded for the work that will read them. The argument splits at the last
1177 // `=` rather than the first, which is gcc's rule and is what lets a directory with an
1178 // `=` in its name be the old half.
1179 _ if arg.starts_with("-fmacro-prefix-map=") => {
1180 let (old, new) = rewrite(arg, "-fmacro-prefix-map=")?;
1181 opts.prefix_map.macros.push(old, new);
1182 }
1183 _ if arg.starts_with("-fdebug-prefix-map=") => {
1184 let (old, new) = rewrite(arg, "-fdebug-prefix-map=")?;
1185 opts.prefix_map.debug.push(old, new);
1186 }
1187 _ if arg.starts_with("-fprofile-prefix-map=") => {
1188 let (old, new) = rewrite(arg, "-fprofile-prefix-map=")?;
1189 opts.prefix_map.profile.push(old, new);
1190 }
1191 _ if arg.starts_with("-ffile-prefix-map=") => {
1192 let (old, new) = rewrite(arg, "-ffile-prefix-map=")?;
1193 opts.prefix_map.macros.push(old, new);
1194 opts.prefix_map.debug.push(old, new);
1195 opts.prefix_map.profile.push(old, new);
1196 }
1197 // A whole optimization rather than a flag, and the family is taken rather than
1198 // refused because of what ignoring it does. There is none of it here yet, so a build
1199 // that asks for it gets a program that is correct and slower than it could have been,
1200 // which is what section 4.1 means by a hint about speed and what every compilation at
1201 // `-O0` already is. The objects settle the rest of the argument: gcc's `-flto` object
1202 // holds the bytecode and no machine code at all, and every object here holds the code,
1203 // which is exactly what `-ffat-lto-objects` asks gcc for. So a build passing `-flto`
1204 // to this compiler gets objects that are more usable than the ones it asked for rather
1205 // than different ones. Every value is still checked against gcc's, because somebody
1206 // who wrote `-flto=thin` meant clang and had better hear about it here.
1207 "-flto" => opts.lto.requested = true,
1208 "-fno-lto" => opts.lto.requested = false,
1209 _ if arg.starts_with("-flto=") => {
1210 let how = &arg["-flto=".len()..];
1211 opts.lto.jobs = how.parse().map_err(|()| {
1212 err(format!(
1213 "`{how}` is not a number of link time jobs, which is auto, jobserver or a \
1214 count above zero"
1215 ))
1216 })?;
1217 opts.lto.requested = true;
1218 }
1219 _ if arg.starts_with("-flto-partition=") => {
1220 let how = &arg["-flto-partition=".len()..];
1221 opts.lto.partition = how.parse().map_err(|()| {
1222 err(format!(
1223 "`{how}` is not a partitioning model, which is balanced, 1to1, one, max \
1224 or none"
1225 ))
1226 })?;
1227 }
1228 _ if arg.starts_with("-flto-compression-level=") => {
1229 let how = &arg["-flto-compression-level=".len()..];
1230 let level =
1231 how.parse::<u8>().ok().filter(|level| *level <= 19).ok_or_else(|| {
1232 err(format!("`{how}` is not a compression level, 0 to 19"))
1233 })?;
1234 opts.lto.compression = Some(level);
1235 }
1236 // Whether the object keeps its machine code as well as the bytecode. It always does
1237 // here, so the first of these describes what happens and the second asks for an object
1238 // with less in it, which is a smaller file and not a different program, so both are
1239 // taken.
1240 "-ffat-lto-objects" | "-fno-fat-lto-objects" => {}
1241 // Whether the linker is handed a plugin that does the link time work. The design in
1242 // `spec/09-optimizer.md` has this driver doing that work itself and never loading a
1243 // plugin into anybody, so neither answer is a question it has to hold.
1244 "-fuse-linker-plugin" | "-fno-use-linker-plugin" => {}
1245 // Reading a profile back. Taken for the reason the family above it is: nothing here
1246 // reads one, so a build that asks gets the program it would have got anyway, and gcc
1247 // itself produces a byte for byte identical object from `-fprofile-use` when there are
1248 // no counts beside the file. The path is recorded for the pass that will read it. The
1249 // warning gcc prints when it looked and found nothing is deliberately not copied,
1250 // because nothing here looks, and a warning about a file that was never opened would
1251 // fire on the builds that have a perfectly good profile as well as on the ones that
1252 // do not.
1253 "-fprofile-use" => opts.profile_data.requested = true,
1254 "-fno-profile-use" => opts.profile_data.requested = false,
1255 _ if arg.starts_with("-fprofile-use=") => {
1256 opts.profile_data.path = Some(arg["-fprofile-use=".len()..].to_string());
1257 opts.profile_data.requested = true;
1258 }
1259 _ if arg.starts_with("-fprofile-dir=") => {
1260 opts.profile_data.dir = Some(arg["-fprofile-dir=".len()..].to_string());
1261 }
1262 "-fprofile-abs-path" => opts.profile_data.absolute = true,
1263 "-fno-profile-abs-path" => opts.profile_data.absolute = false,
1264 "-fprofile-correction" => opts.profile_data.correction = true,
1265 "-fno-profile-correction" => opts.profile_data.correction = false,
1266 "-fprofile-partial-training" => opts.profile_data.partial_training = true,
1267 "-fno-profile-partial-training" => opts.profile_data.partial_training = false,
1268 // Writing the counts rather than reading them, which is refused rather than taken and
1269 // is the same line `-gsplit-dwarf` falls on the far side of. Ignoring these means a
1270 // file a build declared as an output never appears: the instrumented program writes a
1271 // `.gcda` as it exits and `-ftest-coverage` writes a `.gcno` beside the object, and a
1272 // two stage build that got neither would go on to optimize against no counts at all
1273 // and report coverage of nothing, with nothing along the way saying so. The objects
1274 // say the rest: gcc's `-fprofile-generate` object holds 375 bytes of code where a
1275 // plain one holds 71, and 296 bytes of counters that a plain one does not have, so
1276 // this is a flag that changes the output rather than a hint about speed.
1277 "-fprofile-arcs"
1278 | "--coverage"
1279 | "-fcondition-coverage"
1280 | "-fpath-coverage"
1281 | "-fprofile-generate" => {
1282 return Err(err(format!(
1283 "{arg}: this compiler does not instrument for profiling, and a build that \
1284 expects the counts a run of the instrumented program writes would optimize \
1285 against nothing on its second pass, see spec/04-driver-and-cli.md"
1286 )));
1287 }
1288 _ if arg.starts_with("-fprofile-generate=") => {
1289 return Err(err(format!(
1290 "{arg}: this compiler does not instrument for profiling, and a build that \
1291 expects the counts a run of the instrumented program writes would optimize \
1292 against nothing on its second pass, see spec/04-driver-and-cli.md"
1293 )));
1294 }
1295 "-ftest-coverage" => {
1296 return Err(err(format!(
1297 "{arg}: this compiler writes no `.gcno` file beside the object, and a build \
1298 that expects one would wait for a file that never arrives, see \
1299 spec/04-driver-and-cli.md"
1300 )));
1301 }
1302 // The rest of the family describes instrumentation that is refused above, so what is
1303 // left to do with them is check them and drop them. They are checked because a
1304 // misspelling in a distribution's flags is worth finding here rather than on the day
1305 // the instrumentation lands, and dropped because there is nothing for an answer about
1306 // how a counter is written to be an answer about.
1307 _ if arg.starts_with("-fprofile-update=") => {
1308 let how = &arg["-fprofile-update=".len()..];
1309 if !matches!(how, "single" | "atomic" | "prefer-atomic") {
1310 return Err(err(format!(
1311 "`{how}` is not a profile update method, which is single, atomic or \
1312 prefer-atomic"
1313 )));
1314 }
1315 }
1316 _ if arg.starts_with("-fprofile-reproducible=") => {
1317 let how = &arg["-fprofile-reproducible=".len()..];
1318 if !matches!(how, "serial" | "parallel-runs" | "multithreaded") {
1319 return Err(err(format!(
1320 "`{how}` is not a profile reproducibility method, which is serial, \
1321 parallel-runs or multithreaded"
1322 )));
1323 }
1324 }
1325 "-fprofile-values" | "-fno-profile-values" | "-fprofile-info-section" => {}
1326 "-fno-test-coverage" | "-fno-profile-arcs" | "-fno-profile-generate" => {}
1327 _ if arg.starts_with("-fprofile-filter-files=")
1328 || arg.starts_with("-fprofile-exclude-files=")
1329 || arg.starts_with("-fprofile-note=") => {}
1330 // What every name gets when nothing in the source said, which the attribute in the
1331 // source overrides rather than the other way round. Before the optimizer's `-f`
1332 // family below for the reason the tier below it is.
1333 _ if arg.starts_with("-fvisibility=") => {
1334 let seen = &arg["-fvisibility=".len()..];
1335 opts.visibility = seen.parse().map_err(|()| {
1336 err(format!(
1337 "`{seen}` is not a visibility, which is default, hidden, internal or \
1338 protected"
1339 ))
1340 })?;
1341 }
1342 // Which edges of a control flow transfer are checked. Before the optimizer's `-f`
1343 // family below for the reason the two above it are, and last of the three so that the
1344 // bare spelling and the negative one are matched exactly rather than by this.
1345 _ if arg.starts_with("-fcf-protection=") => {
1346 let edges = &arg["-fcf-protection=".len()..];
1347 opts.control = edges.parse().map_err(|()| {
1348 err(format!(
1349 "`{edges}` is not a control flow protection, which is full, branch, \
1350 return, none or check"
1351 ))
1352 })?;
1353 }
1354 // How much room every function opens with for something to be written over later.
1355 // Before the optimizer's `-f` family below for the reason the ones above it are.
1356 _ if arg.starts_with("-fpatchable-function-entry=") => {
1357 let room = &arg["-fpatchable-function-entry=".len()..];
1358 opts.patchable = room.parse().map_err(|()| {
1359 err(format!(
1360 "`{room}` is not an amount of room to reserve, which is a number of bytes and then, after a comma, how many of them go in front of the function's own label"
1361 ))
1362 })?;
1363 }
1364 // The memory safety monitor, from section 15.4 of
1365 // `spec/safe-memory/15-integration.md`. Before the optimizer's `-f` family below,
1366 // because a pass that took the name `safety=detect` would otherwise be handed the
1367 // flag, and the tier is not a pass.
1368 _ if arg.starts_with("-fsafety=") => {
1369 let tier = &arg["-fsafety=".len()..];
1370 opts.safety = tier.parse().map_err(|()| {
1371 err(format!(
1372 "`{tier}` is not a safety tier, which is off, detect, enforce or kernel"
1373 ))
1374 })?;
1375 }
1376 // Whether padding participates, from section 9.3 of document 09. Spelled out rather
1377 // than folded into the tier because it is a departure somebody who has read that
1378 // section makes, and the two defaults it describes are a property of what is being
1379 // built rather than of how much checking is wanted.
1380 _ if arg.starts_with("-fsafety-init=") => {
1381 let mode = &arg["-fsafety-init=".len()..];
1382 opts.padding = mode.parse().map_err(|()| {
1383 err(format!("`{mode}` is not a padding mode, which is padding or nopadding"))
1384 })?;
1385 }
1386 // Row S4, from section 9.4 of document 09. A bare flag with no value, because the
1387 // strict form of that section needs a member id the front end does not name yet and
1388 // accepting the spelling for it would be accepting a promise this build cannot keep.
1389 // Before `-fno-` is looked at below, for the reason the tier is.
1390 "-fsafety-subobject" => opts.subobject = rucc_session::Subobject::Members,
1391 "-fno-safety-subobject" => opts.subobject = rucc_session::Subobject::Off,
1392 _ if arg.starts_with("-fsafety-subobject=") => {
1393 let form = &arg["-fsafety-subobject=".len()..];
1394 return Err(err(format!(
1395 "`{form}` is not a form of -fsafety-subobject. The flag takes no value, and \
1396 the strict form of section 9.4 is tamnd/rucc#967"
1397 )));
1398 }
1399 // Row Y8, from section 9.6 of document 09. A bare flag with no value, for the reason
1400 // the one above has none: there is one form of this check and a spelling that suggested
1401 // otherwise would be promising something. Before `-fno-` is looked at below, the same
1402 // way.
1403 "-fsafety-restrict" => opts.promise = rucc_session::Promise::Blocks,
1404 "-fno-safety-restrict" => opts.promise = rucc_session::Promise::Off,
1405 _ if arg.starts_with("-fsafety-restrict=") => {
1406 let form = &arg["-fsafety-restrict=".len()..];
1407 return Err(err(format!(
1408 "`{form}` is not a form of -fsafety-restrict. The flag takes no value."
1409 )));
1410 }
1411 // Section 9.5's races, which take a value because the section gives them three modes
1412 // and the difference between two of them is which classes get reported rather than how
1413 // much is recorded. `-fno-` is the same as `=off` and is spelled out here for the same
1414 // reason the two above spell theirs out.
1415 _ if arg.starts_with("-fsafety-races=") => {
1416 let mode = &arg["-fsafety-races=".len()..];
1417 opts.races = mode.parse().map_err(|()| {
1418 err(format!("`{mode}` is not a race mode, which is off, metadata or pointer"))
1419 })?;
1420 }
1421 "-fno-safety-races" => opts.races = rucc_session::Races::Off,
1422 // The sanitizers of document 12, which are checks at run time rather than a way of
1423 // generating the same program. Each name is held to gcc 16's list, and what is still
1424 // asked for by the end of the line is answered after the loop, so that a command line
1425 // which turns one on and then off again is a command line that asked for nothing.
1426 //
1427 // Before the optimizer's `-f` family below, for the reason the tier above it is.
1428 _ if arg.starts_with("-fsanitize=") => {
1429 for one in arg["-fsanitize=".len()..].split(',') {
1430 if one == "all" {
1431 // gcc takes `all` only in the negative, because turning every check on at
1432 // once includes checks that contradict each other.
1433 return Err(err(
1434 "`-fsanitize=all` is not a gcc option, only `-fno-sanitize=all` is",
1435 ));
1436 }
1437 if !SANITIZERS.contains(&one) {
1438 return Err(err(format!(
1439 "`{one}` is not a sanitizer, see spec/04-driver-and-cli.md section 4.7"
1440 )));
1441 }
1442 if !sanitizers.contains(&one) {
1443 sanitizers.push(one);
1444 }
1445 }
1446 }
1447 _ if arg.starts_with("-fno-sanitize=") => {
1448 for one in arg["-fno-sanitize=".len()..].split(',') {
1449 if one == "all" {
1450 sanitizers.clear();
1451 continue;
1452 }
1453 if !SANITIZERS.contains(&one) {
1454 return Err(err(format!(
1455 "`{one}` is not a sanitizer, see spec/04-driver-and-cli.md section 4.7"
1456 )));
1457 }
1458 sanitizers.retain(|asked| *asked != one);
1459 }
1460 }
1461 // What a check does when it fires, and where the records about the checked objects go.
1462 // Each of them is an answer about the sanitizers refused after the loop, so there is
1463 // nothing left for them to change here. The names are still held to the list, because
1464 // a misspelling in a build's flags is worth finding when the compiler reads it.
1465 _ if arg.starts_with("-fsanitize-recover=")
1466 || arg.starts_with("-fno-sanitize-recover=")
1467 || arg.starts_with("-fsanitize-trap=")
1468 || arg.starts_with("-fno-sanitize-trap=") =>
1469 {
1470 // The guard above matched on a spelling that has an `=` in it, so the tail is
1471 // whatever follows the first one.
1472 let how = arg.split_once('=').map_or("", |(_, rest)| rest);
1473 for one in how.split(',') {
1474 if one != "all" && !SANITIZERS.contains(&one) {
1475 return Err(err(format!(
1476 "`{one}` is not a sanitizer, see spec/04-driver-and-cli.md section 4.7"
1477 )));
1478 }
1479 }
1480 }
1481 "-fsanitize-undefined-trap-on-error"
1482 | "-fsanitize-address-use-after-scope"
1483 | "-fno-sanitize-address-use-after-scope" => {}
1484 _ if arg.starts_with("-fsanitize-sections=") => {}
1485 // Counting which edges a run reached, which is how a fuzzer knows an input was worth
1486 // keeping. Refused rather than dropped, because a fuzzer whose calls into
1487 // `__sanitizer_cov_*` were never generated runs blind and reports coverage of nothing,
1488 // and there is no point in the campaign where that announces itself.
1489 _ if arg.starts_with("-fsanitize-coverage=") => {
1490 let how = &arg["-fsanitize-coverage=".len()..];
1491 for one in how.split(',') {
1492 if !matches!(one, "trace-pc" | "trace-cmp") {
1493 return Err(err(format!(
1494 "`{one}` is not a coverage instrumentation, which is trace-pc or \
1495 trace-cmp"
1496 )));
1497 }
1498 }
1499 return Err(err(format!(
1500 "{arg}: this compiler generates no coverage callbacks, and a fuzzer built \
1501 with it would run without any feedback at all, see \
1502 spec/04-driver-and-cli.md section 4.7"
1503 )));
1504 }
1505 // The optimizer's own flags, from section 9.10 of `spec/09-optimizer.md`. These come
1506 // after every `-f` the rest of the compiler answers to, so a pass can never take a
1507 // name that already means something else on the command line.
1508 _ if arg.starts_with("-fpass-fuel=") => {
1509 let (name, count) = arg["-fpass-fuel=".len()..]
1510 .split_once('=')
1511 .ok_or_else(|| err("-fpass-fuel= is spelled <pass>=<count>"))?;
1512 if rucc_opt::pass::find(name).is_none() {
1513 return Err(err(format!(
1514 "`{name}` is not a pass this compiler has, see --print-pipeline"
1515 )));
1516 }
1517 let count: u32 = count
1518 .parse()
1519 .map_err(|_| err(format!("`{count}` is not a number of transformations")))?;
1520 opts.pass_fuel.push((name.to_owned(), count));
1521 }
1522 _ if arg.starts_with("-fpass-fuel-global=") => {
1523 let count = &arg["-fpass-fuel-global=".len()..];
1524 let count: u32 = count
1525 .parse()
1526 .map_err(|_| err(format!("`{count}` is not a number of transformations")))?;
1527 opts.pass_fuel_global = Some(count);
1528 }
1529 // Everything from `-fopt-info` to the end of the argument, which is optional
1530 // keywords joined by hyphens and an optional `=<file>`. Checked here rather than
1531 // where the remarks are printed, because by then the compilation somebody wanted
1532 // to hear about is over.
1533 _ if arg == "-fopt-info"
1534 || arg.starts_with("-fopt-info=")
1535 || arg.starts_with("-fopt-info-") =>
1536 {
1537 let rest = &arg["-fopt-info".len()..];
1538 let (kinds, file) = match rest.split_once('=') {
1539 Some((kinds, file)) => (kinds, Some(file)),
1540 None => (rest, None),
1541 };
1542 let kinds = kinds.strip_prefix('-').unwrap_or(kinds);
1543 rucc_opt::Wants::none().add(kinds).map_err(err)?;
1544 opts.opt_info.push(kinds.to_owned());
1545 if let Some(file) = file {
1546 if file.is_empty() {
1547 return Err(err("-fopt-info= was given no file to write to"));
1548 }
1549 opts.opt_info_file = Some(file.to_owned());
1550 }
1551 }
1552 _ if arg.starts_with("-fdump-ir=") => {
1553 // Checked here rather than where the dumps are taken, because the compilation
1554 // that would have been dumped is over by then.
1555 let spec = &arg["-fdump-ir=".len()..];
1556 rucc_opt::Dumps::default().add(spec).map_err(err)?;
1557 opts.dump_ir.push(spec.to_owned());
1558 }
1559 // Before the bare `-f<pass>` below, because a pass called `enable-something` would
1560 // otherwise take the flag away from the gate. Checked here rather than where the
1561 // pipeline reads it, for the reason that applies to all of these: a misspelled pass
1562 // name that quietly gated nothing looks exactly like a pass that is not the guilty
1563 // one, and a bisection would carry on past the thing it was looking for.
1564 _ if arg.starts_with("-fdisable-") || arg.starts_with("-fenable-") => {
1565 let on = arg.starts_with("-fenable-");
1566 let spec = &arg[if on { "-fenable-".len() } else { "-fdisable-".len() }..];
1567 rucc_opt::Gates::default().add(on, spec).map_err(err)?;
1568 opts.pass_gates.push((on, spec.to_owned()));
1569 }
1570 // gcc's spelling for a pass this compiler has under a shorter name. It goes above the
1571 // two arms below rather than into the pile of gcc pass names further down, because the
1572 // pass is here: dropping the flag would leave a build that asked for unrolling without
1573 // it, and refusing it stops the build outright, which is what libtommath's makefile
1574 // ran into. `-funroll-all-loops` is deliberately not in here: gcc's is the one that
1575 // unrolls without a trip count, which is a different and usually worse thing.
1576 "-funroll-loops" => opts.passes.push(("unroll".to_owned(), true)),
1577 "-fno-unroll-loops" => opts.passes.push(("unroll".to_owned(), false)),
1578 // Here rather than through the two arms below, because what this names is not a
1579 // `rucc_opt::Pass`. Section 34.6's propagation is a module at a time and everything in
1580 // the pass list is one function at a time. `-fipa-cp-clone` is deliberately not here:
1581 // gcc turns that one on at `-O3` and it is in the list of what M4 does not build.
1582 "-fipa-cp" => opts.passes.push((rucc_opt::ipcp::NAME.to_owned(), true)),
1583 "-fno-ipa-cp" => opts.passes.push((rucc_opt::ipcp::NAME.to_owned(), false)),
1584 // The other half of the same section, here for the same reason, and `-fipa-sra` in gcc
1585 // is the aggregate splitting as well as the parameter removal. Asking for it gets the
1586 // half that is built.
1587 "-fipa-sra" => opts.passes.push((rucc_opt::ipasra::NAME.to_owned(), true)),
1588 "-fno-ipa-sra" => opts.passes.push((rucc_opt::ipasra::NAME.to_owned(), false)),
1589 // And the printf family fold, which is a module at a time for the same reason and so is
1590 // not a `rucc_opt::Pass` either. gcc has no flag of its own for this one, since
1591 // `-fno-builtin` already turns it off along with everything else the standard names
1592 // mean. This spelling is for taking one thing away during a bisection without taking
1593 // the rest of section 20.1 away with it.
1594 "-flibcall" => opts.passes.push((rucc_opt::libcall::NAME.to_owned(), true)),
1595 "-fno-libcall" => opts.passes.push((rucc_opt::libcall::NAME.to_owned(), false)),
1596 _ if arg.strip_prefix("-fno-").is_some_and(|n| rucc_opt::pass::find(n).is_some()) => {
1597 opts.passes.push((arg["-fno-".len()..].to_owned(), false));
1598 }
1599 _ if arg.strip_prefix("-f").is_some_and(|n| rucc_opt::pass::find(n).is_some()) => {
1600 opts.passes.push((arg["-f".len()..].to_owned(), true));
1601 }
1602 // The flags that name a pass of gcc's own. They arrive from the torture suite, where a
1603 // program reduced from a miscompilation usually names the pass that miscompiled it on
1604 // its `dg-options` line, and they arrive from hand written build files for the same
1605 // reason. Section 4.1 sorts a flag by what the output would be without it, and by that
1606 // rule these are one pile: a flag that turns one of gcc's passes on or off is asking
1607 // for a compiler that does not exist here, and the program it is attached to is a
1608 // correctness test that passes either way. Turning on a pass we do not have costs
1609 // speed, turning off a pass we do not have costs nothing, and neither changes what the
1610 // program computes.
1611 //
1612 // rucc's own pass names are matched above this, so `-fno-dce` turns off the dce this
1613 // compiler has rather than landing here, and the day one of these names becomes a pass
1614 // here it stops being taken and dropped without anybody editing this list.
1615 //
1616 // Two of them are prefixes rather than names, which is the one place this file takes a
1617 // family instead of a flag. gcc files its gimple passes under `-ftree-` and its
1618 // interprocedural passes under `-fipa-`, both namespaces are pass selection and
1619 // nothing else, and there is no member of either that changes the meaning of a program
1620 // that was already correct. The rest are written out one at a time, because they live
1621 // in the flat `-f` namespace where the neighbours do change meanings.
1622 _ if arg.starts_with("-ftree-") || arg.starts_with("-fno-tree-") => {}
1623 _ if arg.starts_with("-fipa-") || arg.starts_with("-fno-ipa-") => {}
1624 "-fexpensive-optimizations" | "-fno-expensive-optimizations" => {}
1625 "-fmodulo-sched" | "-fno-modulo-sched" => {}
1626 "-fvect-cost-model" | "-fno-vect-cost-model" => {}
1627 _ if arg.starts_with("-fvect-cost-model=") || arg.starts_with("-fsimd-cost-model=") => {
1628 }
1629 "-fearly-inlining" | "-fno-early-inlining" => {}
1630 // The one of the family that does reach the optimizer, since the step it names is built:
1631 // `-fno-inline` stops a function declared `inline` from being inlined and leaves
1632 // `always_inline` alone, which is what it does in gcc.
1633 "-finline" => opts.passes.push((rucc_opt::inline::NAME.to_owned(), true)),
1634 "-fno-inline" => opts.passes.push((rucc_opt::inline::NAME.to_owned(), false)),
1635 "-finline-functions"
1636 | "-fno-inline-functions"
1637 | "-finline-small-functions"
1638 | "-fno-inline-small-functions"
1639 | "-finline-functions-called-once"
1640 | "-fno-inline-functions-called-once" => {}
1641 "-foptimize-strlen" | "-fno-optimize-strlen" => {}
1642 "-fira-share-spill-slots" | "-fno-ira-share-spill-slots" => {}
1643 // Where a function starts, which is a thing this compiler already decides and so is a
1644 // request it can answer rather than one it has to drop. The bare form asks for the
1645 // target's default and the default here is the sixteen bytes gcc also gives, so it
1646 // says nothing; a number is a floor under every function that did not ask for more
1647 // itself; and the negative form asks for the smallest boundary the target has. gcc 16
1648 // rounds a number that is not a power of two up rather than refusing it, which is what
1649 // `=3` giving `.p2align 2` on x86-64 means, so this rounds too.
1650 "-falign-functions" => opts.align_functions = None,
1651 "-fno-align-functions" => opts.align_functions = Some(MIN_FUNC_ALIGN),
1652 _ if arg.starts_with("-falign-functions=") => {
1653 opts.align_functions = function_alignment(&arg["-falign-functions=".len()..])
1654 .ok_or_else(|| {
1655 err(format!("{arg}: the alignment has to be a number of bytes"))
1656 })?;
1657 }
1658 // The head of every loop, which is padded to a sixteen byte boundary the way gcc pads it
1659 // when this is asked for. Both directions of the plain form are answered. A number is
1660 // taken and says nothing, because the boundary here is gcc's default one and a build
1661 // that names another is asking for speed rather than for a different program.
1662 "-falign-loops" => opts.align_loops = Some(true),
1663 "-fno-align-loops" => opts.align_loops = Some(false),
1664 // The other two of the family, which are about padding in front of any label and in
1665 // front of a label only a jump reaches. This compiler writes neither, and what they
1666 // ask for is speed: a label on a boundary computes what a label off one computes. So
1667 // they are taken and dropped for the reason `-march=` is, and the numbered form of
1668 // the loop flag with them.
1669 _ if arg.starts_with("-falign-labels")
1670 || arg.starts_with("-falign-loops=")
1671 || arg.starts_with("-falign-jumps")
1672 || arg.starts_with("-fno-align-labels")
1673 || arg.starts_with("-fno-align-jumps") => {}
1674 // The charset flags are not in that pile, because an encoding is a statement about
1675 // what the bytes of the source mean rather than about how fast the output is. The
1676 // preprocessor reads UTF-8 and has no converter, so the one name that describes what
1677 // already happens is taken and every other name is refused. Spelled without regard to
1678 // case and with both of the spellings iconv answers to, since a build writes whichever
1679 // one its author typed.
1680 _ if arg.starts_with("-finput-charset=") => {
1681 let name = &arg["-finput-charset=".len()..];
1682 if !name.eq_ignore_ascii_case("utf-8") && !name.eq_ignore_ascii_case("utf8") {
1683 return Err(err(format!(
1684 "-finput-charset={name}: the preprocessor reads UTF-8 and has no \
1685 converter, so a file in another encoding would be read as though it were \
1686 UTF-8 rather than converted",
1687 )));
1688 }
1689 }
1690 // The three that come in on the same `dg-options` lines and are the other half of
1691 // section 4.1's rule, because each of them changes what the program does and not how
1692 // fast it does it. The negative form of each is what this compiler does anyway, so it
1693 // is taken and dropped, which is the shape `-fnested-functions` has above.
1694 "-ffast-math" => {
1695 return Err(err(
1696 "-ffast-math is a licence to answer a floating point arithmetic differently \
1697 from the way the source wrote it, and it is not one flag: it defines \
1698 __FAST_MATH__, which a library header reads, and gcc links a startup file \
1699 that puts the hardware in flush to zero mode for the whole process. Taking it \
1700 and dropping it would change what other objects in the same program answer. \
1701 -ffp-contract= and -fexcess-precision= are the parts of it this compiler has",
1702 ));
1703 }
1704 "-fno-fast-math" => {}
1705 "-fnon-call-exceptions" => {
1706 return Err(err(
1707 "-fnon-call-exceptions is a promise that an instruction which is not a call \
1708 can raise an exception the unwinder finds a handler for, and nothing here \
1709 produces a landing pad for a trapping instruction. A program built without it \
1710 would unwind past the handler it wrote",
1711 ));
1712 }
1713 "-fno-non-call-exceptions" => {}
1714 "-finstrument-functions" => {
1715 return Err(err(
1716 "-finstrument-functions calls __cyg_profile_func_enter on entry to every \
1717 function and __cyg_profile_func_exit on the way out, and nothing here emits \
1718 either call. A program that asks for them usually counts them, so taking the \
1719 flag and dropping it would turn a program that fails loudly into one that \
1720 fails quietly",
1721 ));
1722 }
1723 "-fno-instrument-functions" => {}
1724 // The unstable options, spelled the way rustc spells them and carrying the same
1725 // promise, which is none: one of these may change or go away in any release. They are
1726 // measurements and debugging aids rather than things a build asks for, which is why
1727 // none of them is in the usage text and all of them are in section 4.11 of
1728 // `spec/04-driver-and-cli.md`.
1729 "-Zverify-each" => opts.verify_each = true,
1730 _ if arg.starts_with("-Zrule-coverage=") => {
1731 let file = &arg["-Zrule-coverage=".len()..];
1732 if file.is_empty() {
1733 return Err(err("-Zrule-coverage= needs a file to write to"));
1734 }
1735 opts.rule_coverage = Some(file.to_owned());
1736 }
1737 _ if arg.starts_with("-Zcycle-accurate-model=") => {
1738 let value = &arg["-Zcycle-accurate-model=".len()..];
1739 opts.cycle_accurate_model = match value {
1740 "yes" | "1" => Some(true),
1741 "no" | "0" => Some(false),
1742 _ => {
1743 return Err(err("-Zcycle-accurate-model= takes yes or no"));
1744 }
1745 };
1746 }
1747 _ if arg.starts_with("-Zlowering=") => {
1748 let file = &arg["-Zlowering=".len()..];
1749 if file.is_empty() {
1750 return Err(err("-Zlowering= needs a file to write to"));
1751 }
1752 opts.lowering_dump = Some(file.to_owned());
1753 }
1754 _ if arg.starts_with("-Zregister-pressure=") => {
1755 let file = &arg["-Zregister-pressure=".len()..];
1756 if file.is_empty() {
1757 return Err(err("-Zregister-pressure= needs a file to write to"));
1758 }
1759 opts.register_pressure = Some(file.to_owned());
1760 }
1761 _ if arg.starts_with("-Z") => {
1762 return Err(err(format!(
1763 "`{arg}` is not an unstable option this compiler has, see \
1764 spec/04-driver-and-cli.md section 4.11 for the ones it does"
1765 )));
1766 }
1767 // The word size, which is a statement about the target and is taken as one. A build
1768 // that says the size the target already has is saying nothing, and one that says the
1769 // other size is asking for a target this compiler does not have, which it is told
1770 // rather than being given the wrong one.
1771 "-m64" | "-m32" | "-mx32" => {
1772 let want: u32 = match arg {
1773 "-m64" => 64,
1774 _ => 32,
1775 };
1776 let have = rucc_target::TargetInfo::new(opts.target).pointer_width;
1777 if have != want {
1778 return Err(err(format!(
1779 "{arg} asks for a {want} bit target and {} is {have} bit, use \
1780 --target= to name the one you mean",
1781 opts.target
1782 )));
1783 }
1784 }
1785 // Which processor in the family to generate for. This compiler emits the base
1786 // instruction set of the architecture and nothing above it, so a program built with
1787 // any of these runs on the machine that was named; it is a program that could have
1788 // been faster rather than a program that is wrong, which is what makes these safe to
1789 // take and ignore where a flag that changed the meaning of the code would not be.
1790 _ if arg.starts_with("-march=")
1791 || arg.starts_with("-mtune=")
1792 || arg.starts_with("-mcpu=") => {}
1793 // The calling convention, which is not safe to ignore. Taken when it names the one
1794 // the target already uses and refused otherwise.
1795 _ if arg.starts_with("-mabi=") => {
1796 let want = &arg["-mabi=".len()..];
1797 let have = match opts.target.arch {
1798 rucc_target::Arch::X86_64 => "sysv",
1799 rucc_target::Arch::Aarch64 => "lp64",
1800 rucc_target::Arch::Riscv64 => "lp64d",
1801 };
1802 if want != have {
1803 return Err(err(format!(
1804 "{arg}: {} uses the {have} convention and this compiler has no other",
1805 opts.target
1806 )));
1807 }
1808 }
1809 // How far apart the pieces of the program may be. The small model is what we emit and
1810 // it is every hosted program's default; the kernel model is a different one and a
1811 // build that asks for it and does not get it links and then does not run.
1812 "-mcmodel=small" => {}
1813 _ if arg.starts_with("-mcmodel=") => {
1814 return Err(err(format!(
1815 "{arg}: this compiler emits the small code model and no other, see \
1816 spec/12-targets.md"
1817 )));
1818 }
1819 // GCC's own scripting language for how the driver builds a command line.
1820 // `spec/04-driver-and-cli.md` section 4.4 settles that we will not have it, so a
1821 // build reaching for it is told which flags do the same job.
1822 _ if arg.starts_with("-specs=") => {
1823 return Err(err(
1824 "-specs= is not supported: the parts of it builds rely on are -B, -L, \
1825 -nostdlib, -nostartfiles and -Wl,, see spec/04-driver-and-cli.md \
1826 section 4.4",
1827 ));
1828 }
1829 // Arguments meant for a separate assembler or preprocessor, which this compiler does
1830 // not have: both are inside it and neither reads a command line. Refused rather than
1831 // dropped, because every one of these says something about the output and a build
1832 // that asked for `-Wa,--noexecstack` and was silently given an executable stack got
1833 // the opposite of what it asked for.
1834 _ if arg.starts_with("-Wa,") || arg.starts_with("-Wp,") => {
1835 return Err(err(format!(
1836 "`{arg}` is an argument for a separate assembler or preprocessor, and both \
1837 are inside this compiler rather than programs it runs"
1838 )));
1839 }
1840 "-Xassembler" | "-Xpreprocessor" => {
1841 return Err(err(format!(
1842 "{arg} hands an argument to a separate assembler or preprocessor, and both \
1843 are inside this compiler rather than programs it runs"
1844 )));
1845 }
1846 // Everything else in the `-W` family. `spec/04-driver-and-cli.md` section 4.1 has
1847 // this one as a rule about build systems rather than about warnings: autoconf finds
1848 // out whether a warning flag exists by passing it and looking at the exit status, so
1849 // a compiler that refuses one it has not heard of fails a configure script written
1850 // for a GCC newer than itself. The names are not checked against a list because this
1851 // compiler has no warning groups for a list to be of, which #485 is about.
1852 _ if arg.starts_with("-W") => {}
1853 // Flags that name something this compiler does not do and would not do differently
1854 // if it did. `-fno-ident` is about a comment in the output that we do not write
1855 // either way, and the others are about a way of ordering the compilation that has
1856 // been GCC's only way for twenty years. Section 4.1 asks for the list to be short
1857 // and for adding to it to be deliberate, which is why it is written out here.
1858 "-fno-ident"
1859 | "-fident"
1860 | "-funit-at-a-time"
1861 | "-fno-unit-at-a-time"
1862 | "-shared-libgcc"
1863 | "-static-libgcc" => {}
1864 _ if arg.starts_with('-') && arg.len() > 1 => {
1865 // Silently ignoring an unknown flag is how a build ends up not doing what
1866 // its author asked. spec/13-gnu-compat.md section 13.4 makes this an error
1867 // for the flags that change code generation, and the safe default until the
1868 // flag table is populated is to reject everything we do not know.
1869 return Err(err(format!("unknown option `{arg}`")));
1870 }
1871 _ => inputs.push(Input { path: arg.to_owned(), forced, role: Role::File }),
1872 }
1873 }
1874
1875 // The fetch, before anything that resolves a compilation, because `--fetch` does not describe
1876 // one. It is here rather than in the loop so that `--offline` can forbid it whichever order the
1877 // two were written in, and it is before the refusals below so that a command line asking for a
1878 // sysroot is not told about a sanitizer.
1879 if let Some(named) = fetch {
1880 if fetch_msvc.is_some() {
1881 return Err(err(
1882 "--fetch and --fetch-msvc-sdk are two different commands and this command line \
1883 asked for both. --fetch gets a sysroot this release pins by URL and by hash, and \
1884 --fetch-msvc-sdk gets what is behind Microsoft's licence wall, which no release \
1885 pins and which nobody may republish. Run whichever one you meant",
1886 ));
1887 }
1888 return fetch_action(&named, offline, &inputs);
1889 }
1890 if let Some(named) = fetch_msvc {
1891 return fetch_msvc_action(&named, offline, accepted, &inputs);
1892 }
1893 if accepted {
1894 return Err(err(
1895 "--accept-licence says that Microsoft's Visual Studio Build Tools licence is accepted, \
1896 and nothing on this command line asked for anything that licence covers. \
1897 --fetch-msvc-sdk <tuple> is the command it belongs to, and an ordinary compile \
1898 downloads nothing with it or without it",
1899 ));
1900 }
1901
1902 // Last, so that it lands after every `-isystem` the command line gave. That is GCC's
1903 // order: a directory the user names outranks the compiler's own, and the compiler's own
1904 // outranks the library's. It is pushed after the loop rather than before it because
1905 // `SearchPath` appends within a group and the position is what the order is.
1906 // The same directory the headers were looked for under, because a sysroot is a statement
1907 // about a whole installation and not about half of one.
1908 // After the loop, because `-fno-sanitize=` can take back what an earlier flag asked for and a
1909 // command line that turns a check on and off again has asked for nothing. What is left is
1910 // refused rather than dropped, and it is the one place in this parser where the reason is not
1911 // that the output would differ. A sanitizer is a promise that the program is watched while it
1912 // runs, so a build that asks for one and is quietly given a program with no checks in it does
1913 // not get a slower program or a bigger file, it gets a test suite that passes for the wrong
1914 // reason. `-fsafety=` is the checking this compiler does have, and the message says so, because
1915 // somebody reaching for `-fsanitize=address` wants the nearest thing rather than a list of
1916 // options.
1917 if let Some(first) = sanitizers.first() {
1918 return Err(err(format!(
1919 "-fsanitize={first}: this compiler has no sanitizer instrumentation, and a build that \
1920 asked for one and got none would run its tests unchecked, see \
1921 spec/04-driver-and-cli.md section 4.7. `-fsafety=detect` is the memory checking this \
1922 compiler does have"
1923 )));
1924 }
1925 link.sysroot = sysroot.clone();
1926 // Where a sysroot for a target that is not this machine would be. Read once, here, rather than
1927 // inside the link line, because a link line that read the environment could only be tested on a
1928 // machine whose environment said the right thing, and the link line is the last thing that
1929 // touches a binary. `spec/cross-compile/13-distribution.md` section 13.2 owns the answer.
1930 link.cache = Some(cache::dir());
1931 // And the ten field spelling of the target, because the release on it decides two things the
1932 // three field one cannot say: whether a target that is this architecture is still a cross
1933 // compile, and which directory under the cache it is against. After the loop because the last
1934 // `--target=` on the command line is the one that counts.
1935 link.pinned = pinned;
1936 // After the loop rather than where `-pthread` was read, so that it lands after the objects
1937 // that refer to it. A static link takes the definitions it needs from a library when it
1938 // reaches it and not afterwards, so a library before the objects is a library that answers
1939 // nothing.
1940 if threads {
1941 inputs.push(Input::library("pthread"));
1942 }
1943 if let Some(query) = query {
1944 return Ok(Action::Print(answer(&query, &opts, &link)?));
1945 }
1946 // `-M` and `-MM` produce the rule and nothing else, so the run stops after phase 4 whatever
1947 // else the command line asked for. Read here rather than where the flag was, because a `-c`
1948 // written after it has to lose and the loop cannot know that until it has ended. The output
1949 // file is where the rule goes rather than where an object would have gone, and the last
1950 // phase being the preprocessor is what makes that true without a second rule for it.
1951 if opts.deps.instead_of_compiling {
1952 opts.emit = EmitKind::Preprocessed;
1953 }
1954 if !nostdinc {
1955 opts.search.push_system(runtime::DIR);
1956 // And the library's after ours, which is the other half of the same order. They go on
1957 // here rather than at the point `--target=` or `--sysroot=` was read because either
1958 // one changes the answer and the last word on both is the end of the loop.
1959 //
1960 // Which library's is the question `link::cross_sysroot` answers, and it is asked here so
1961 // that the headers and the libraries come from the same place. A target that is this
1962 // machine reads this machine's headers, and a target that is not reads the ones in the
1963 // sysroot for it rather than the ones next door.
1964 let cross = link::cross_sysroot(opts.target, &link);
1965 let kernel = link::cross_kernel(opts.target, &link);
1966 // And the version of those headers, which only the bundled tree has an answer for. A host
1967 // glibc and a tree the user named both define `__GLIBC_MINOR__` in their own `features.h`,
1968 // and a second definition with a different value is a warning on every file, so the
1969 // condition is the same one that chose the directories.
1970 if cross.is_some() {
1971 let target = pinned.unwrap_or_else(|| opts.target.tuple());
1972 opts.glibc_minor = rucc_sysroot::bundled_glibc_minor(target).map_err(|skew| {
1973 err(format!(
1974 "{skew}; pin a release the tree has, or name a tree that has that one \
1975 with --sysroot"
1976 ))
1977 })?;
1978 }
1979 let system =
1980 library::header_dirs(opts.target, sysroot.as_deref(), cross.as_ref(), kernel.as_ref());
1981 // The two licence walls of `spec/cross-compile/13-distribution.md` section 13.4, which are
1982 // the only way step 3 comes back with nothing on a hosted target. Section 8.6 asks for the
1983 // answer to name the licence and the lawful ways to get what is behind it, rather than
1984 // leaving a person with an `#include` that failed as though a directory had gone missing.
1985 //
1986 // It is left on the search path instead of refused here, because a program that includes
1987 // none of the library needs none of the SDK and section 8.6 is explicit that targeting the
1988 // platform has to keep working. So the reason waits until an include has actually failed,
1989 // which is the only moment it helps and the only moment it is true.
1990 //
1991 // The condition is that step 3 found nothing at all, so an `SDKROOT`, an `INCLUDE` or a mac
1992 // with Xcode on it all pass through untouched, and `-nostdinc` never reaches this block. A
1993 // `--sysroot` or `-isysroot` passes through as well, even when the tree it names turns out to
1994 // be empty or absent: somebody who wrote a path has already answered the question this
1995 // message asks, and answering it again over the top of a mistyped directory would hide the
1996 // mistake behind a licence notice.
1997 if system.is_empty() && sysroot.is_none() {
1998 let tuple = pinned.unwrap_or_else(|| opts.target.tuple());
1999 if let Some(wall) = rucc_sysroot::Wall::of(tuple) {
2000 opts.search.explain_missing_system(wall.no_headers(&tuple.to_canonical_string()));
2001 }
2002 }
2003 // And whether the tree somebody named is the release they asked for, which is the one
2004 // question left once the directories are settled and the only place both halves of it are
2005 // known. Only for a named tree, because that is the case where the release in the target
2006 // stops deciding anything, and `crate::glibc` is where the rest of the reasoning is.
2007 if sysroot.is_some() {
2008 notes.extend(glibc::skew(opts.target, pinned, &system));
2009 }
2010 for dir in system {
2011 opts.search.push_system(dir);
2012 }
2013 }
2014 // Once, here, rather than as each directory is pushed. A `-I` that names a system
2015 // directory has to lose to the system entry and the system entry is added last, so the
2016 // question cannot be answered until the whole path is known.
2017 opts.search.remove_duplicates();
2018
2019 // The target has to be resolved before the configuration is printed, so this check comes
2020 // after the loop rather than at the point `--print-config` was seen.
2021 if print_config {
2022 return Ok(Action::PrintConfig(Box::new(opts)));
2023 }
2024 if print_pipeline {
2025 return Ok(Action::PrintPipeline(Box::new(opts)));
2026 }
2027 let plan = Plan::new(&opts, &inputs, output.as_deref()).map_err(|e| err(e.message))?;
2028 if print_plan {
2029 return Ok(Action::PrintPlan {
2030 opts: Box::new(opts),
2031 plan: Box::new(plan),
2032 link: Box::new(link),
2033 });
2034 }
2035 Ok(Action::Compile {
2036 opts: Box::new(opts),
2037 plan: Box::new(plan),
2038 link: Box::new(link),
2039 jobs,
2040 verbose,
2041 notes,
2042 })
2043}
2044
2045/// What `--fetch <tuple>` asked for, or why it is not a thing that can be done.
2046///
2047/// The lookup happens here rather than at the point the bytes would move, so that a target this
2048/// release pins nothing for is a refusal from the parser and the only code that runs a downloader is
2049/// code that already knows what it is getting.
2050///
2051/// # Errors
2052///
2053/// [`CliError`] when `--offline` forbade it, when there are input files as well, when the tuple is
2054/// not a target this compiler knows, when its sysroot is behind one of section 13.4's licence walls,
2055/// and when this release pins no artifact for it.
2056fn fetch_action(named: &str, offline: bool, inputs: &[Input]) -> Result<Action, CliError> {
2057 // Not a precedence question. Section 13.2 says `--offline` forbids a fetch entirely, so a
2058 // command line that writes both has asked for two opposite things and the answer is to say so
2059 // rather than to pick one of them.
2060 if offline {
2061 return Err(err(
2062 "--fetch asks for a download and --offline forbids every download, so this command \
2063 line asks for two opposite things. Drop one of them: --offline is how a build says it \
2064 will not reach the network, and --fetch is one of the two things in this compiler \
2065 that reaches it",
2066 ));
2067 }
2068 if let Some(first) = inputs.first() {
2069 return Err(err(format!(
2070 "--fetch gets a sysroot and compiles nothing, so `{}` on the same command line is an \
2071 input that nothing would read",
2072 first.path
2073 )));
2074 }
2075 let target: TargetTuple = named
2076 .parse()
2077 .map_err(|why| err(format!("--fetch {named}: {why}, so there is no sysroot to get")))?;
2078 // The canonical spelling, because that is what a row is named by and what the directory under
2079 // the cache is called, and a person is free to write a tuple the long way round.
2080 let tuple = target.to_canonical_string();
2081 // Before the table is consulted, because a target behind a licence wall is not a row that has not
2082 // been written yet. Section 13.4 is that no release pins one of these ever, so the message says
2083 // the licence and the two lawful ways rather than naming the producer that will publish the rest.
2084 if let Some(wall) = rucc_sysroot::Wall::of(target) {
2085 return Err(err(format!("--fetch {tuple}: {}", wall.no_fetch(&tuple))));
2086 }
2087 let Some(what) = rucc_sysroot::pinned_for_target(target) else {
2088 return Err(err(unpinned(&tuple)));
2089 };
2090 Ok(Action::Fetch { what, target, cache: cache::dir() })
2091}
2092
2093/// What `--fetch-msvc-sdk <tuple>` asks for, weighed the same way the fetch above is.
2094///
2095/// The target is resolved here rather than where the work happens, so that a tuple this compiler
2096/// does not know and a target that is not behind Microsoft's wall are refusals from the parser like
2097/// every other thing a command line can ask for and not have. Whether the licence was accepted is
2098/// carried rather than acted on, because what it changes is what the command does and not whether
2099/// the command line made sense.
2100///
2101/// # Errors
2102///
2103/// [`CliError`] when `--offline` forbade it, when there are input files as well, and when the tuple
2104/// is not a target this compiler knows.
2105fn fetch_msvc_action(
2106 named: &str,
2107 offline: bool,
2108 accepted: bool,
2109 inputs: &[Input],
2110) -> Result<Action, CliError> {
2111 if offline {
2112 return Err(err(
2113 "--fetch-msvc-sdk asks for a download and --offline forbids every download, so this \
2114 command line asks for two opposite things. Drop one of them: --offline is how a build \
2115 says it will not reach the network",
2116 ));
2117 }
2118 if let Some(first) = inputs.first() {
2119 return Err(err(format!(
2120 "--fetch-msvc-sdk gets an SDK and compiles nothing, so `{}` on the same command line \
2121 is an input that nothing would read",
2122 first.path
2123 )));
2124 }
2125 let target: TargetTuple = named.parse().map_err(|why| {
2126 err(format!("--fetch-msvc-sdk {named}: {why}, so there is no SDK to get"))
2127 })?;
2128 Ok(Action::FetchMsvcSdk { target, accepted, cache: cache::dir() })
2129}
2130
2131/// Why there is nothing to fetch for a target, which is a different sentence when the table is
2132/// empty.
2133///
2134/// A release that pins nothing and a release that pins eleven targets and not this one are two
2135/// situations, and a message that did not tell them apart would send somebody looking for a typo in
2136/// their tuple when the answer is that this work is not finished.
2137fn unpinned(tuple: &str) -> String {
2138 let pinned = rucc_sysroot::pinned_targets();
2139 if pinned.is_empty() {
2140 return format!(
2141 "this release pins no sysroot for {tuple}, and it pins none for any target yet. A \
2142 sysroot is built and published by the producer in tamnd/rucc-cross, per \
2143 spec/cross-compile/13-distribution.md section 13.8, and a release of this compiler \
2144 names one by URL and by hash afterwards. Until then, pass --sysroot=<dir> to compile \
2145 against a tree you have already"
2146 );
2147 }
2148 format!(
2149 "this release pins no sysroot for {tuple}. What it pins is {}. Pass --sysroot=<dir> to \
2150 compile against a tree you have already",
2151 pinned.join(", ")
2152 )
2153}
2154
2155/// Gets the artifact and installs it, saying what each step did.
2156///
2157/// The steps are section 13.8's and so are the messages: the transport is somebody else's program
2158/// and the check is ours, so a person reading this wants to know which downloader ran, that the
2159/// bytes matched, how many files the record named and where the tree ended up. A fetch of something
2160/// that is already there says that instead and moves nothing.
2161///
2162/// A Linux target is two artifacts, its own sysroot and the kernel header tree every Linux target
2163/// shares, and `kernel` is the second one when the target reads it. It is fetched after the sysroot
2164/// and by the same two steps, so a machine that has fetched one Linux target already has it and a
2165/// second target's fetch says so and moves nothing.
2166fn fetch_sysroot(
2167 what: &rucc_sysroot::Pinned,
2168 kernel: Option<&rucc_sysroot::Pinned>,
2169 target: TargetTuple,
2170 cache: &std::path::Path,
2171) -> i32 {
2172 let tuple = target.to_canonical_string();
2173 let say = |line: &str| println!("rucc: {tuple}: {line}");
2174 if let Err(why) = bring(what, cache, &say) {
2175 return complain(why);
2176 }
2177 let archive = what.archive_in(cache);
2178 match install::install(&archive, what.sha256, target, cache) {
2179 Ok(done) => report(&done, "sysroot", &say),
2180 Err(why) => return complain(why),
2181 }
2182 let Some(kernel) = kernel else { return 0 };
2183 if let Err(why) = bring(kernel, cache, &say) {
2184 return complain(why);
2185 }
2186 match install::install_kernel(&kernel.archive_in(cache), kernel.sha256, cache) {
2187 Ok(done) => {
2188 report(&done, "kernel header tree", &say);
2189 0
2190 }
2191 Err(why) => complain(why),
2192 }
2193}
2194
2195/// The download half of a fetch, for one artifact.
2196fn bring(
2197 what: &rucc_sysroot::Pinned,
2198 cache: &std::path::Path,
2199 say: &impl Fn(&str),
2200) -> Result<(), CliError> {
2201 let archive = what.archive_in(cache);
2202 match fetch::fetch(what.url, what.sha256, &archive)? {
2203 fetch::Fetched::AlreadyThere => {
2204 say(&format!("{} is already here and matches the hash", archive.display()));
2205 }
2206 fetch::Fetched::Downloaded(by) => {
2207 say(&format!("downloaded {} with {}", what.url, by.program()));
2208 }
2209 }
2210 Ok(())
2211}
2212
2213/// What an install did, in the words a person reading a fetch wants.
2214fn report(done: &install::Installed, what: &str, say: &impl Fn(&str)) {
2215 match &done.before {
2216 install::Before::Nothing => {
2217 say(&format!("{} files installed at {}", done.files, done.root.display()));
2218 }
2219 install::Before::TheSame => {
2220 say(&format!(
2221 "the same {what} is already at {}, so nothing moved",
2222 done.root.display()
2223 ));
2224 }
2225 install::Before::Different(was) => {
2226 say(&format!(
2227 "{} files installed at {}, over a tree whose record digested to {was}",
2228 done.files,
2229 done.root.display()
2230 ));
2231 }
2232 }
2233 say(&format!("the {what}'s record digests to {}", done.digest));
2234}
2235
2236/// What one of the `-dump` and `-print` flags prints.
2237///
2238/// GCC prints the name back unchanged when it cannot find the file a `-print` flag asked about,
2239/// which is what makes the answer safe to paste into a link line whether or not the file is
2240/// there, and this does the same.
2241fn answer(query: &Query, opts: &Options, link: &LinkOptions) -> Result<String, CliError> {
2242 let found = |name: &str| {
2243 link::find_in_search(link, opts.target, name)
2244 .map_or_else(|| name.to_owned(), |path| path.display().to_string())
2245 };
2246 Ok(match query {
2247 Query::Machine => opts.target.to_string(),
2248 Query::Version => VERSION.to_owned(),
2249 Query::Multiarch => link::multiarch(opts.target),
2250 // The three lines GCC prints, in its order and with its punctuation, because what reads
2251 // them is a script written against that shape. There is no installation directory to
2252 // report: this compiler is one binary that works wherever it is copied, and the headers
2253 // it ships are inside it, so `install` is where the binary is and nothing is under it.
2254 Query::SearchDirs => {
2255 let here = std::env::current_exe()
2256 .ok()
2257 .and_then(|p| p.parent().map(std::path::Path::to_path_buf))
2258 .unwrap_or_default();
2259 let list = |dirs: &[PathBuf]| {
2260 dirs.iter().map(|d| d.display().to_string()).collect::<Vec<_>>().join(":")
2261 };
2262 let libraries = link::search_dirs(link, opts.target);
2263 format!(
2264 "install: {}\nprograms: ={}\nlibraries: ={}",
2265 here.display(),
2266 list(&link.prefixes),
2267 list(&libraries)
2268 )
2269 }
2270 // The root the rest of the answers are under, which a build system asks for when it wants
2271 // to find a file itself rather than ask for one by name, and which is the first thing to
2272 // look at when a cross build read a header nobody expected. A native compile has no
2273 // sysroot and the answer is the empty line, which is what GCC prints when it was
2274 // configured without one. `--sysroot` wins over ours because it wins everywhere else.
2275 Query::Sysroot => {
2276 sysroot_root(opts, link).map(|root| root.display().to_string()).unwrap_or_default()
2277 }
2278 // Section 13.5 of `spec/cross-compile/13-distribution.md`: for every input that is not this
2279 // compiler's own code, what it is, where it was got, its hash, its licence and whether it
2280 // was bundled, generated or fetched. What is printed is the manifest the sysroot already
2281 // carries rather than a second format saying the same things, because the three uses 13.5
2282 // gives for this are a licence notice, a reproducibility check and a security audit, and all
2283 // three are somebody else parsing it. One format is one parser to write.
2284 // Read and rendered rather than copied out, so that what comes back is the format this
2285 // build understands. The last newline comes off because whatever prints an answer adds
2286 // one, the way it does for every other query here. Keeping it would put a blank line at
2287 // the end of the one answer that is a file somebody diffs against the file it came from.
2288 Query::SysrootProvenance => match sysroot_manifest(opts, link)? {
2289 Some(manifest) => manifest.render().trim_end_matches('\n').to_string(),
2290 None => String::new(),
2291 },
2292 // Section 13.2 of the same document, which asks for the hash of a cache directory's
2293 // contents in the directory's name. A name cannot carry one, because the path has to be
2294 // computable before anything has been read, by the producer about to write the files and by
2295 // the compiler about to read them, and neither has the contents when it asks. So the number
2296 // is here instead, and it is the sha256 of the record rather than of a walk of the tree,
2297 // which means `sha256sum` over the manifest answers the same thing.
2298 Query::SysrootDigest => match sysroot_manifest(opts, link)? {
2299 Some(manifest) => manifest.digest(),
2300 None => String::new(),
2301 },
2302 Query::FileName(name) => found(name),
2303 // The name GCC gives the library of routines a compiler's output calls that the C
2304 // library does not have. Ours is built in and there is no file, so the answer is the
2305 // name itself, which is what GCC prints when it cannot find one either.
2306 Query::Libgcc => found("libgcc.a"),
2307 // A program rather than a library: the linker and the archiver are the ones a build asks
2308 // about, and this compiler finds them on the path or under `-B` rather than shipping
2309 // them, so the name back is the honest answer unless a `-B` prefix holds one.
2310 Query::ProgName(name) => link
2311 .prefixes
2312 .iter()
2313 .map(|dir| dir.join(name))
2314 .find(|path| path.is_file())
2315 .map_or_else(|| name.clone(), |path| path.display().to_string()),
2316 })
2317}
2318
2319/// The root every sysroot answer is about.
2320///
2321/// One function rather than a copy in each, because the other flags exist to say what is inside the
2322/// tree this one names, and two answers that disagreed about which tree that is would be a
2323/// difference nobody would think to look for. `--sysroot` wins over ours because it wins everywhere
2324/// else.
2325fn sysroot_root(opts: &Options, link: &LinkOptions) -> Option<PathBuf> {
2326 link.sysroot
2327 .clone()
2328 .or_else(|| link::cross_sysroot(opts.target, link).map(|at| at.root().to_path_buf()))
2329}
2330
2331/// The record of the sysroot this command line reads, when there is one to read.
2332///
2333/// [`None`] covers two cases that both print nothing, and they are different things. A compile for
2334/// this machine has no sysroot at all, and a tree somebody laid out themselves and pointed
2335/// `--sysroot` at carries no manifest, so nothing here knows where any of it came from. Saying
2336/// nothing is the only honest answer to either, and a reader can tell it from a manifest with no
2337/// inputs in it because that one still has its header lines.
2338///
2339/// # Errors
2340///
2341/// A manifest this build cannot parse, and anything else that went wrong reading the file. Passing a
2342/// record we could not read on to whoever asked would make their parser the one that finds the
2343/// problem, and every use section 13.5 gives for these two flags is somebody else reading the
2344/// output.
2345fn sysroot_manifest(opts: &Options, link: &LinkOptions) -> Result<Option<Manifest>, CliError> {
2346 let Some(root) = sysroot_root(opts, link) else {
2347 return Ok(None);
2348 };
2349 let path = Sysroot::at(root, opts.target.tuple()).manifest_path();
2350 match std::fs::read_to_string(&path) {
2351 Ok(text) => Manifest::parse(&text)
2352 .map(Some)
2353 .map_err(|why| err(format!("{}: {why}", path.display()))),
2354 Err(why) if why.kind() == std::io::ErrorKind::NotFound => Ok(None),
2355 Err(why) => Err(err(format!("{}: {why}", path.display()))),
2356 }
2357}
2358
2359/// Renders the passes this level will run, in order, with what each one does.
2360///
2361/// The level is the whole of the answer unless a `-f` flag edited it, which is section 9.1 of
2362/// `spec/09-optimizer.md`: a level is a list somebody wrote down rather than something that
2363/// emerges from which flags happen to be set, and this is how that list is read.
2364#[must_use]
2365pub fn print_pipeline(opts: &Options) -> String {
2366 let mut settings = rucc_opt::Options::for_level(opts.opt_level);
2367 settings.toggles.clone_from(&opts.passes);
2368 settings.global_fuel = opts.pass_fuel_global;
2369 for (on, spec) in &opts.pass_gates {
2370 // Every spelling was checked while the arguments were parsed, so there is nothing here
2371 // this can refuse, and a listing is not the place to report it if there were.
2372 let _ = settings.gates.add(*on, spec);
2373 }
2374 rucc_opt::pipeline::print(&settings)
2375}
2376
2377/// Renders the resolved configuration.
2378///
2379/// One `key: value` per line, sorted by nothing in particular but fixed in order, because
2380/// this output is diffed across hosts in CI and a reordering would read as a change.
2381#[must_use]
2382pub fn print_config(opts: &Options) -> String {
2383 let sess = Session::new(opts.clone());
2384 let t = &sess.target;
2385 let mut out = String::new();
2386 let _ = writeln!(out, "version: {VERSION}");
2387 // The three field triple the driver was given rather than the ten field tuple it widens to,
2388 // because this output is what a build system reads to find out what it asked for. The tuple is
2389 // the compiler's model of the machine and this line is a receipt for a command line.
2390 let _ = writeln!(out, "target: {}", opts.target);
2391 let _ = writeln!(out, "arch: {}", opts.target.arch.as_str());
2392 let _ = writeln!(out, "os: {}", opts.target.os.as_str());
2393 let _ = writeln!(out, "env: {}", opts.target.env.as_str());
2394 let _ = writeln!(out, "object-format: {}", t.object_format.as_str());
2395 let _ = writeln!(out, "pointer-width: {}", t.pointer_width);
2396 let _ = writeln!(out, "long-width: {}", t.long_width);
2397 let _ = writeln!(out, "long-double-width: {}", t.long_double_width);
2398 let _ = writeln!(out, "endian: {}", if t.little_endian { "little" } else { "big" });
2399 let _ = writeln!(out, "char-signed: {}", t.char_is_signed);
2400 let _ = writeln!(out, "va-list: {}", t.va_list.map_or("none", |list| list.as_str()));
2401 // The register file as a count per class, which is enough to tell a target whose registers
2402 // are described from one whose are not without printing sixteen names nobody asked for.
2403 let regs: Vec<String> = t
2404 .regs
2405 .classes()
2406 .map(|(class, info)| format!("{} {}", info.name, t.regs.len(class)))
2407 .collect();
2408 let _ = writeln!(
2409 out,
2410 "registers: {}",
2411 if regs.is_empty() { "none".to_string() } else { regs.join(", ") }
2412 );
2413 // What the schedule was chosen with, which is a sentence rather than a name on purpose: two
2414 // runs of a benchmark that disagree are usually two models and not two compilers.
2415 let _ = writeln!(out, "timing-model: {}", t.timing.map_or("none", |timing| timing.model));
2416 let _ = writeln!(out, "opt-level: {}", sess.opts.opt_level);
2417 let _ = writeln!(out, "safety: {}", sess.opts.safety);
2418 let _ = writeln!(out, "emit: {}", sess.opts.emit.as_str());
2419 let _ = writeln!(out, "debug-info: {}", sess.opts.debug_info);
2420 let _ = writeln!(out, "frame-pointer: {}", sess.opts.frame_pointer);
2421 let _ = writeln!(out, "red-zone: {}", sess.opts.red_zone);
2422 let _ = writeln!(out, "stack-protector: {}", sess.opts.protector);
2423 let _ = writeln!(out, "stack-clash-protection: {}", sess.opts.stack_clash);
2424 let _ = writeln!(out, "cf-protection: {}", sess.opts.control);
2425 let _ = writeln!(out, "patchable-function-entry: {}", sess.opts.patchable);
2426 let _ = writeln!(out, "profile: {}", sess.opts.profile);
2427 let _ = writeln!(out, "profile-hook: {}", sess.opts.hook);
2428 // Last because it is the one key with more than one line under it, and the only one
2429 // whose value is a property of the machine rather than of the command line.
2430 for dir in sess.opts.search.dirs() {
2431 let system = if dir.is_system { " (system)" } else { "" };
2432 let _ = writeln!(out, "include: {}{system}", dir.path.display());
2433 }
2434 out
2435}
2436
2437/// The output name the make target is taken from, which is the `-o` argument or nothing.
2438///
2439/// A run that stops at the preprocessor has not named an object, whatever its `-o` says: under
2440/// `-E` that argument is the preprocessed text and under `-M` it is the rule itself, and neither
2441/// is a file `make` would rebuild by running this rule. GCC agrees and falls back to the source
2442/// name in both, which is why a `-MD -E -o out.i` writes `out.d` holding a rule for `a.o`. From
2443/// `-S` on the argument does name what the rule builds, and it is used as written.
2444fn deps_target_output<'a>(opts: &Options, plan: &'a Plan) -> Option<&'a str> {
2445 if opts.emit == EmitKind::Preprocessed { None } else { plan.output.as_deref() }
2446}
2447
2448/// Writes to a path the command line named rather than one the plan derived, where `-` is
2449/// standard output.
2450fn write_named(path: &str, bytes: &[u8]) -> Result<(), String> {
2451 if path == "-" {
2452 return write_out(&Output::Stdout, bytes);
2453 }
2454 write_out(&Output::File(path.to_owned()), bytes)
2455}
2456
2457/// Writes the make rule for one input, and reports whether it got there.
2458///
2459/// A rule with no file of its own goes where the compilation it replaced would have written,
2460/// which is what makes the usual makefile recipe work: `rucc -M $< -o $@` leaves the rule in
2461/// `$@`, and the same line with the `-o` left off puts it on standard output.
2462fn write_deps(
2463 opts: &Options,
2464 plan: &Plan,
2465 job: &Job,
2466 found: &[Dependency],
2467 stderr: &mut impl std::io::Write,
2468) -> bool {
2469 let targets = if opts.deps.targets.is_empty() {
2470 vec![deps::default_target(&job.input, deps_target_output(opts, plan))]
2471 } else {
2472 opts.deps.targets.clone()
2473 };
2474 let rule = deps::rule(&opts.deps, &targets, &job.input, found);
2475 // The file, on the other hand, is named after the `-o` in every mode that still has one to
2476 // spend, which is every mode except the two that spend it on the rule.
2477 let wrote = match deps::default_file(&opts.deps, &job.input, plan.output.as_deref()) {
2478 // A `-MF` on a run that had nowhere else to put the rule leaves the file the `-o`
2479 // named empty rather than absent, because a makefile that named it as a target of its
2480 // own is a makefile that will look for it.
2481 Some(path) => write_named(&path, rule.as_bytes()).and_then(|()| {
2482 if opts.deps.instead_of_compiling { write_out(&job.output, b"") } else { Ok(()) }
2483 }),
2484 None => write_out(&job.output, rule.as_bytes()),
2485 };
2486 if let Err(e) = wrote {
2487 let _ = writeln!(stderr, "rucc: error: {e}");
2488 return false;
2489 }
2490 true
2491}
2492
2493/// Runs phase 4 over every input that has one, and writes what came out.
2494///
2495/// One input that fails does not stop the others. A build that reports every file it could
2496/// not preprocess in one run is worth more than one that stops at the first, and the exit
2497/// status is still a failure either way.
2498fn preprocess_all(opts: &Options, plan: &Plan) -> i32 {
2499 let fs = OsFileSystem::new();
2500 let mut stderr = std::io::stderr().lock();
2501 let mut failed = false;
2502 for job in &plan.jobs {
2503 if !job.phases.first().is_some_and(|p| *p == Phase::Preprocess) {
2504 // An input that is already preprocessed, or an object file. GCC passes these
2505 // through untouched, and the plan has already said so in its notes.
2506 continue;
2507 }
2508 let started = std::time::Instant::now();
2509 let result = preprocess(opts, &job.input, &fs);
2510 if opts.time {
2511 say_time(&job.input, started.elapsed(), &mut stderr);
2512 }
2513 for message in &result.messages {
2514 let _ = writeln!(stderr, "{message}");
2515 }
2516 if result.failed() {
2517 failed = true;
2518 continue;
2519 }
2520 if opts.deps.emit {
2521 failed |= !write_deps(opts, plan, job, &result.deps, &mut stderr);
2522 // `-M` and `-MM` asked for the rule instead of the text, so there is nothing else
2523 // to write. The other two asked for both and fall through to the text below.
2524 if opts.deps.instead_of_compiling {
2525 continue;
2526 }
2527 }
2528 if let Err(e) = write_out(&job.output, result.text.as_bytes()) {
2529 let _ = writeln!(stderr, "rucc: error: {e}");
2530 failed = true;
2531 }
2532 }
2533 i32::from(failed)
2534}
2535
2536/// Whether this job is a file of assembly that has to be assembled and that nothing here assembles.
2537///
2538/// The phases rather than the kind, because there are two kinds of assembly input and one of them
2539/// is preprocessed first, and because an object file also has no compile phase and is not this: it
2540/// has no phases at all and goes to the linker as it is. A `.s` on a `-c` line has exactly
2541/// [`Phase::Assemble`] left, and a `.S` has the preprocessor in front of it, and neither has
2542/// anything the front end can do.
2543fn needs_an_assembler(job: &Job) -> bool {
2544 job.phases.contains(&Phase::Assemble) && !job.phases.contains(&Phase::Compile)
2545}
2546
2547/// Whether the preprocessor runs over it on the way in, which is the whole difference between the
2548/// two kinds of assembly input.
2549fn assembly_wants_cpp(job: &Job) -> bool {
2550 job.phases.contains(&Phase::Preprocess)
2551}
2552
2553/// Runs the front end over every input that has a compile phase, and writes what came out.
2554///
2555/// The same rule as [`preprocess_all`]: one input that fails does not stop the others, and the
2556/// exit status is a failure either way. An input that is already assembly or an object has no
2557/// compile phase and is passed over here, which the plan has already said in its notes.
2558fn compile_all(opts: &Options, plan: &Plan) -> i32 {
2559 let fs = OsFileSystem::new();
2560 let mut stderr = std::io::stderr().lock();
2561 let mut failed = false;
2562 let (mut remarks, ok) = Remarks::new(opts.opt_info_file.as_ref(), &mut stderr);
2563 failed |= !ok;
2564 let mut fired = Fired::new();
2565 let mut pressure = Pressure::new();
2566 let mut lowerings = Lowerings::new();
2567 for job in &plan.jobs {
2568 if !job.phases.contains(&Phase::Compile) && !needs_an_assembler(job) {
2569 continue;
2570 }
2571 // An input of IR is read back rather than compiled, since the C it came from is not
2572 // here any more. A file of assembly does not go through the front end at all and is
2573 // read by the assembler instead. Everything after this is the same for all three, so
2574 // the paths meet again at the messages and the file the result is written to.
2575 let started = std::time::Instant::now();
2576 let result = if needs_an_assembler(job) {
2577 assemble(opts, &job.input, assembly_wants_cpp(job), &fs)
2578 } else if job.kind == InputKind::Ir {
2579 compile_ir(opts, &job.input, &fs)
2580 } else {
2581 compile(opts, &job.input, &fs)
2582 };
2583 if opts.time {
2584 say_time(&job.input, started.elapsed(), &mut stderr);
2585 }
2586 fired.merge(&result.fired);
2587 pressure.merge(&result.pressure);
2588 lowerings.merge(&result.lowerings);
2589 failed |= !write_dumps(&job.input, &result.dumps, &mut stderr);
2590 failed |= !remarks.write(&result.remarks, &mut stderr);
2591 for message in &result.messages {
2592 let _ = writeln!(stderr, "{message}");
2593 }
2594 // Before the failure below, because a compilation that stopped in the back end is exactly
2595 // the one whose preprocessed source somebody wants to look at.
2596 failed |= !write_temps(job, &result.temps, &mut stderr);
2597 if result.failed() {
2598 failed = true;
2599 continue;
2600 }
2601 // `-MD` and `-MMD` write the rule beside the object and let the compilation happen, so
2602 // this is the one path where both files come out of the same run. An input of IR has no
2603 // dependencies to report and produces an empty list, which produces a rule naming only
2604 // itself, and that is the honest answer rather than a missing file.
2605 if opts.deps.emit {
2606 failed |= !write_deps(opts, plan, job, &result.deps, &mut stderr);
2607 }
2608 if let Err(e) = write_out(&job.output, result.artifact.bytes()) {
2609 let _ = writeln!(stderr, "rucc: error: {e}");
2610 failed = true;
2611 }
2612 }
2613 failed |= !write_coverage(opts, &fired, &mut stderr);
2614 failed |= !write_pressure(opts, &pressure, &mut stderr);
2615 failed |= !write_lowering(opts, &lowerings, &mut stderr);
2616 i32::from(failed)
2617}
2618
2619/// A directory for the object files only the link step ever sees, removed when it goes away.
2620///
2621/// `-c` writes its object where the user can see it and linking does not, which is the whole of
2622/// the difference: a `rucc a.c b.c` leaves an executable behind and nothing else, the same as
2623/// every other compiler. Removing them on drop rather than at the end of a function is so that a
2624/// link that failed leaves nothing behind either.
2625struct Scratch {
2626 /// Where the objects go.
2627 dir: PathBuf,
2628}
2629
2630impl Scratch {
2631 /// Makes one, under whatever the platform calls its temporary directory.
2632 ///
2633 /// The name carries the process id so that two compilers running at once do not share a
2634 /// directory, which they would otherwise do the moment two of them compiled a file of the
2635 /// same name.
2636 fn new() -> Result<Scratch, String> {
2637 let dir = std::env::temp_dir().join(format!("rucc-{}", std::process::id()));
2638 std::fs::create_dir_all(&dir).map_err(|e| format!("{}: {e}", dir.display()))?;
2639 Ok(Scratch { dir })
2640 }
2641}
2642
2643impl Drop for Scratch {
2644 fn drop(&mut self) {
2645 let _ = std::fs::remove_dir_all(&self.dir);
2646 }
2647}
2648
2649/// The link line the plan describes, for `-###`.
2650///
2651/// The names in it are the hints the plan carries rather than the temporaries a real compilation
2652/// would choose, because `-###` prints the line without having compiled anything and so has
2653/// nothing to point at. That also makes the printed line readable rather than naming a directory
2654/// that only exists while a compilation is running.
2655fn link_line(opts: &Options, link: &LinkOptions, job: &LinkJob) -> Result<String, link::Error> {
2656 let linker = link::find(opts.target, link)?;
2657 let args = link::line(opts.target, link, &job.inputs, &job.output)?;
2658 Ok(link::render(&linker, &args))
2659}
2660
2661/// Compiles everything, then links it.
2662///
2663/// The objects go in a directory that is removed afterwards, which is why this is not
2664/// [`compile_all`] followed by a link: the plan says an object feeding the linker is temporary
2665/// and does not say where, because where is a question that only has an answer once something is
2666/// running.
2667fn link_all(opts: &Options, plan: &Plan, link: &LinkOptions, verbose: bool) -> i32 {
2668 let Some(job) = &plan.link else {
2669 // Every path into here comes from a plan whose last phase is the link, and such a plan
2670 // has a link job. Saying so is cheaper than an unwrap that would have to be explained.
2671 let mut stderr = std::io::stderr().lock();
2672 let _ = writeln!(stderr, "rucc: error: there is nothing to link");
2673 return 1;
2674 };
2675 // Before anything is compiled, because a linker that is not on the machine is worth knowing
2676 // about in the second it takes to look rather than after the compilation.
2677 // And before that, whether this link has a line at all and whether what it reads is on the
2678 // machine. Both are answerable now, and a target whose sysroot has not been built is worth
2679 // saying so about before the compilation rather than after it.
2680 if let Err(why) = link::preflight(opts.target, link) {
2681 return complain(why);
2682 }
2683 let linker = match link::find(opts.target, link) {
2684 Ok(linker) => linker,
2685 Err(why) => return complain(why),
2686 };
2687 // And whether the one that was found can do this link, which for one linker and one target is
2688 // a question only the linker itself can answer. Here rather than inside the search, because
2689 // what it does is refuse rather than move on to the next candidate: nothing else in the list
2690 // links a produced Windows sysroot either.
2691 if let Err(why) = link::suitable(opts.target, &linker) {
2692 return complain(why);
2693 }
2694 // The glibc stubs, which are the one part of a cross sysroot written here rather than fetched.
2695 // Before compiling for the same reason as the rest, and never for `-###`, which writes nothing.
2696 if let Err(why) = link::write_stubs(opts.target, link) {
2697 return complain(why);
2698 }
2699
2700 let scratch = match Scratch::new() {
2701 Ok(scratch) => scratch,
2702 Err(why) => return complain(format!("could not make a place for the object files: {why}")),
2703 };
2704
2705 let fs = OsFileSystem::new();
2706 let mut failed = false;
2707 // One per job, in job order, which is what lets the link line below be rebuilt with the real
2708 // paths in it: every job contributes exactly one file to the line and does so in this order.
2709 let mut produced: Vec<String> = Vec::with_capacity(plan.jobs.len());
2710 let mut fired = Fired::new();
2711 let mut pressure = Pressure::new();
2712 let mut lowerings = Lowerings::new();
2713 {
2714 let mut stderr = std::io::stderr().lock();
2715 let (mut remarks, ok) = Remarks::new(opts.opt_info_file.as_ref(), &mut stderr);
2716 failed |= !ok;
2717 for (at, job) in plan.jobs.iter().enumerate() {
2718 let out = match &job.output {
2719 Output::Temporary(hint) => {
2720 // The index because two inputs in different directories can have the same
2721 // name, and the two objects of `rucc a/x.c b/x.c` must not be one file.
2722 scratch.dir.join(format!("{at}-{hint}")).display().to_string()
2723 }
2724 Output::File(path) => path.clone(),
2725 // A job feeding the linker never writes to standard output, since the plan gives
2726 // it a temporary. This is here so that the match is total rather than a panic.
2727 Output::Stdout => continue,
2728 };
2729 produced.push(out.clone());
2730 if !job.phases.contains(&Phase::Compile) && !needs_an_assembler(job) {
2731 continue;
2732 }
2733 let started = std::time::Instant::now();
2734 let result = if needs_an_assembler(job) {
2735 assemble(opts, &job.input, assembly_wants_cpp(job), &fs)
2736 } else if job.kind == InputKind::Ir {
2737 compile_ir(opts, &job.input, &fs)
2738 } else {
2739 compile(opts, &job.input, &fs)
2740 };
2741 if opts.time {
2742 say_time(&job.input, started.elapsed(), &mut stderr);
2743 }
2744 fired.merge(&result.fired);
2745 pressure.merge(&result.pressure);
2746 lowerings.merge(&result.lowerings);
2747 failed |= !write_dumps(&job.input, &result.dumps, &mut stderr);
2748 failed |= !remarks.write(&result.remarks, &mut stderr);
2749 for message in &result.messages {
2750 let _ = writeln!(stderr, "{message}");
2751 }
2752 failed |= !write_temps(job, &result.temps, &mut stderr);
2753 if result.failed() {
2754 failed = true;
2755 continue;
2756 }
2757 // A `-MD` on a command line that links writes the rule next to the executable and
2758 // names the executable as its target, since that is the file this source builds
2759 // here. The object it went through is in a temporary directory and is gone by the
2760 // time `make` reads any of this.
2761 if opts.deps.emit {
2762 failed |= !write_deps(opts, plan, job, &result.deps, &mut stderr);
2763 }
2764 if !matches!(result.artifact, Artifact::Object { .. }) {
2765 // Worth saying rather than writing whatever it is and letting the linker read it.
2766 // An empty file is a valid empty linker script, so a link handed one gets as far
2767 // as reporting every symbol of this file undefined, which is a page of messages
2768 // about something that went wrong here.
2769 let _ = writeln!(
2770 stderr,
2771 "rucc: internal error: {}: no object file was produced for the link",
2772 job.input
2773 );
2774 failed = true;
2775 continue;
2776 }
2777 if let Err(e) = std::fs::write(&out, result.artifact.bytes()) {
2778 let _ = writeln!(stderr, "rucc: error: {out}: {e}");
2779 failed = true;
2780 }
2781 }
2782 failed |= !write_coverage(opts, &fired, &mut stderr);
2783 failed |= !write_pressure(opts, &pressure, &mut stderr);
2784 failed |= !write_lowering(opts, &lowerings, &mut stderr);
2785 failed |= !write_lowering(opts, &lowerings, &mut stderr);
2786 }
2787 if failed {
2788 // Nothing is linked from a compilation that did not finish. A linker run over the objects
2789 // that did compile would report every function of the file that did not as undefined,
2790 // which is a page of messages about a mistake already reported once.
2791 return 1;
2792 }
2793
2794 // The items in command line order with the temporaries filled in. A library and a word for the
2795 // linker contribute no job and pass through, and every file item takes the next job's real
2796 // output, which is what keeps whatever was written between two objects between them here.
2797 let mut outputs = produced.into_iter();
2798 let mut items = Vec::with_capacity(job.inputs.len());
2799 for item in &job.inputs {
2800 match item {
2801 link::Item::Library(name) => items.push(link::Item::Library(name.clone())),
2802 link::Item::Linker(arg) => items.push(link::Item::Linker(arg.clone())),
2803 link::Item::File(_) => match outputs.next() {
2804 Some(path) => items.push(link::Item::File(path)),
2805 None => return complain("the plan asks the linker for a file nothing produced"),
2806 },
2807 }
2808 }
2809
2810 let args = match link::line(opts.target, link, &items, &job.output) {
2811 Ok(args) => args,
2812 Err(why) => return complain(why),
2813 };
2814 if verbose {
2815 let mut stderr = std::io::stderr().lock();
2816 let _ = writeln!(stderr, "{}", link::render(&linker, &args));
2817 }
2818 let started = std::time::Instant::now();
2819 let ran = link::run(&linker, &args);
2820 if opts.time {
2821 // The one step of a compilation that really is another program, so this line is the same
2822 // measurement gcc's is and names the linker the way gcc names `collect2`.
2823 let mut stderr = std::io::stderr().lock();
2824 say_time(&linker.name, started.elapsed(), &mut stderr);
2825 }
2826 match ran {
2827 Ok(()) => 0,
2828 // The linker has already said what was wrong on its own error output, and repeating that
2829 // linking failed would only push its message further up the screen.
2830 Err(link::Error::Refused { .. }) => 1,
2831 Err(why) => complain(why),
2832 }
2833}
2834
2835/// Compiles everything and writes the objects into one static library.
2836///
2837/// No temporary directory and no second program. The objects never reach the file system at all:
2838/// they go from the compiler into the archive writer, which is both faster than writing a directory
2839/// of files for an `ar` to read back and the reason the symbol index can be written at all. A
2840/// member's index entries are the names the object writer says it wrote, and the only thing that
2841/// knows those is the run that wrote it.
2842///
2843/// `-save-temps` is the exception. It asked for the objects to be kept, the plan gave them names a
2844/// person can find, and they are written there as well as put in the archive.
2845fn archive_all(opts: &Options, plan: &Plan) -> i32 {
2846 let Some(job) = &plan.archive else {
2847 // Every path into here comes from a plan whose last phase is the archive, and such a plan
2848 // has an archive job. Saying so is cheaper than an unwrap that would have to be explained.
2849 return complain("there is nothing to put in an archive");
2850 };
2851 // Before anything is compiled, because a format this has no container for is worth knowing
2852 // about in the second it takes to look rather than after the whole compilation.
2853 let flavour = match opts.target.os.object_format() {
2854 ObjectFormat::Elf => rucc_archive::Flavour::Gnu,
2855 ObjectFormat::Coff => rucc_archive::Flavour::Coff,
2856 // Mach-O wants the BSD flavour, whose index is a different member under a different name,
2857 // and wasm has no archives of its own at all. Neither has an object writer either, so a
2858 // command line reaching this would have failed in the next step regardless.
2859 format @ (ObjectFormat::MachO | ObjectFormat::Wasm) => {
2860 return complain(format!(
2861 "there is no archive format for {} objects in this compiler yet",
2862 format.as_str()
2863 ));
2864 }
2865 };
2866
2867 let fs = OsFileSystem::new();
2868 let mut failed = false;
2869 let mut members: Vec<rucc_archive::Member> = Vec::with_capacity(plan.jobs.len());
2870 let mut names = job.members.iter();
2871 let mut fired = Fired::new();
2872 let mut pressure = Pressure::new();
2873 let mut lowerings = Lowerings::new();
2874 {
2875 let mut stderr = std::io::stderr().lock();
2876 let (mut remarks, ok) = Remarks::new(opts.opt_info_file.as_ref(), &mut stderr);
2877 failed |= !ok;
2878 for plan_job in &plan.jobs {
2879 // What the plan called this member. The two lists are walked together rather than the
2880 // name being worked out again here, so that what `-###` printed and what goes in the
2881 // file cannot come apart.
2882 let Some(member) = names.next() else {
2883 return complain("the plan asks the archive for a member nothing produced");
2884 };
2885 if !plan_job.phases.contains(&Phase::Compile) && !needs_an_assembler(plan_job) {
2886 // Neither something to compile nor something to assemble, so there is nothing to
2887 // put in, and an archive quietly missing a member is worse than a message.
2888 let _ = writeln!(
2889 &mut stderr,
2890 "rucc: error: {}: this compiler makes an archive out of what it compiles, and \
2891 there is nothing here for it to do",
2892 plan_job.input
2893 );
2894 failed = true;
2895 continue;
2896 }
2897 let started = std::time::Instant::now();
2898 let result = if needs_an_assembler(plan_job) {
2899 assemble(opts, &plan_job.input, assembly_wants_cpp(plan_job), &fs)
2900 } else if plan_job.kind == InputKind::Ir {
2901 compile_ir(opts, &plan_job.input, &fs)
2902 } else {
2903 compile(opts, &plan_job.input, &fs)
2904 };
2905 if opts.time {
2906 say_time(&plan_job.input, started.elapsed(), &mut stderr);
2907 }
2908 fired.merge(&result.fired);
2909 pressure.merge(&result.pressure);
2910 lowerings.merge(&result.lowerings);
2911 failed |= !write_dumps(&plan_job.input, &result.dumps, &mut stderr);
2912 failed |= !remarks.write(&result.remarks, &mut stderr);
2913 for message in &result.messages {
2914 let _ = writeln!(stderr, "{message}");
2915 }
2916 failed |= !write_temps(plan_job, &result.temps, &mut stderr);
2917 if result.failed() {
2918 failed = true;
2919 continue;
2920 }
2921 if opts.deps.emit {
2922 failed |= !write_deps(opts, plan, plan_job, &result.deps, &mut stderr);
2923 }
2924 let Artifact::Object { bytes, defines } = result.artifact else {
2925 let _ = writeln!(
2926 stderr,
2927 "rucc: internal error: {}: no object file was produced for the archive",
2928 plan_job.input
2929 );
2930 failed = true;
2931 continue;
2932 };
2933 // Under `-save-temps` the plan gave the object a name a person can find, so it is
2934 // written there too. Otherwise it is only ever a member and never a file.
2935 if let Output::File(path) = &plan_job.output {
2936 if let Err(e) = std::fs::write(path, &bytes) {
2937 let _ = writeln!(stderr, "rucc: error: {path}: {e}");
2938 failed = true;
2939 }
2940 }
2941 members.push(rucc_archive::Member { name: member.clone(), body: bytes, defines });
2942 }
2943 failed |= !write_coverage(opts, &fired, &mut stderr);
2944 failed |= !write_pressure(opts, &pressure, &mut stderr);
2945 failed |= !write_lowering(opts, &lowerings, &mut stderr);
2946 failed |= !write_lowering(opts, &lowerings, &mut stderr);
2947 }
2948 if failed {
2949 // Nothing is written from a compilation that did not finish, for the reason the link gives:
2950 // an archive missing the file that failed is one a link reports every name of as undefined,
2951 // which is a page of messages about a mistake already reported once.
2952 return 1;
2953 }
2954
2955 let bytes = match rucc_archive::write(flavour, &members) {
2956 Ok(bytes) => bytes,
2957 // Every one of these is a bug here rather than a program's mistake: the names came from the
2958 // object writer and the bodies came from this process.
2959 Err(why) => return complain(format!("the archive could not be written: {why}")),
2960 };
2961 match std::fs::write(&job.output, &bytes) {
2962 Ok(()) => 0,
2963 Err(e) => complain(format!("{}: {e}", job.output)),
2964 }
2965}
2966
2967/// Prints one driver level message and gives back the exit status that goes with it.
2968fn complain(why: impl std::fmt::Display) -> i32 {
2969 let mut stderr = std::io::stderr().lock();
2970 let _ = writeln!(stderr, "rucc: error: {why}");
2971 1
2972}
2973
2974/// Writes what `-Zrule-coverage=FILE` asked for, and says whether it could.
2975///
2976/// Once for the whole command line rather than once per input, because the question is which
2977/// lowering rules this run of the compiler reached and a file per input would leave the reader
2978/// unioning files to find out something one process already knew.
2979///
2980/// A file that could not be written is a failure and not a warning. What asks for this is a
2981/// measurement run, and a measurement that quietly did not happen is worse than one that stopped.
2982fn write_coverage(opts: &Options, fired: &Fired, stderr: &mut impl std::io::Write) -> bool {
2983 let Some(path) = &opts.rule_coverage else { return true };
2984 let Some(table) = coverage::table(opts.target.arch) else {
2985 let _ = writeln!(
2986 stderr,
2987 "rucc: error: there are no lowering rules for {} yet, so there is no coverage of them \
2988 to report",
2989 opts.target
2990 );
2991 return false;
2992 };
2993 match std::fs::write(path, fired.listing(table)) {
2994 Ok(()) => true,
2995 Err(e) => {
2996 let _ = writeln!(stderr, "rucc: error: {path}: {e}");
2997 false
2998 }
2999 }
3000}
3001
3002/// Writes what `-Zregister-pressure=FILE` asked for, and says whether it could.
3003///
3004/// Once for the whole command line, for the reason [`write_coverage`] gives, and a file that could
3005/// not be written is a failure for the reason it gives too. There is no equivalent of the missing
3006/// rule table here, since every target this compiles for has an allocator, and a run that reached
3007/// no back end at all writes an empty listing rather than nothing: a measurement of a build that
3008/// produced no code is still an answer and it is the honest one.
3009fn write_pressure(opts: &Options, pressure: &Pressure, stderr: &mut impl std::io::Write) -> bool {
3010 let Some(path) = &opts.register_pressure else { return true };
3011 match std::fs::write(path, pressure.listing()) {
3012 Ok(()) => true,
3013 Err(e) => {
3014 let _ = writeln!(stderr, "rucc: error: {path}: {e}");
3015 false
3016 }
3017 }
3018}
3019
3020/// Writes what `-Zlowering=FILE` asked for, and says whether it could.
3021///
3022/// Once for the whole command line, for the reason [`write_coverage`] gives, and a file that could
3023/// not be written is a failure for the reason it gives too. A run that reached no back end writes
3024/// an empty listing rather than nothing, the way [`write_pressure`] does and for the same reason.
3025fn write_lowering(opts: &Options, lowerings: &Lowerings, stderr: &mut impl std::io::Write) -> bool {
3026 let Some(path) = &opts.lowering_dump else { return true };
3027 match std::fs::write(path, lowerings.listing()) {
3028 Ok(()) => true,
3029 Err(e) => {
3030 let _ = writeln!(stderr, "rucc: error: {path}: {e}");
3031 false
3032 }
3033 }
3034}
3035
3036/// Where the `-fopt-info` remarks go, and how much of the run has already gone there.
3037///
3038/// Standard error by default, and one file for the whole run when `-fopt-info=<file>` named one.
3039/// A file rather than the diagnostic stream is what a harness wants: the corpus in
3040/// `tamnd/rucc-corpus` matches a rejection against what the compiler said on standard error, and
3041/// a few thousand remarks mixed into that would bury it.
3042struct Remarks {
3043 /// The file, if there is one.
3044 file: Option<String>,
3045 /// Whether anything has been written to it yet, which decides between truncating and
3046 /// appending. One file holds the whole run rather than the last input in it.
3047 started: bool,
3048}
3049
3050impl Remarks {
3051 /// Prepares the destination, emptying the file if there is one.
3052 ///
3053 /// Emptied here rather than at the first remark, because a run where no pass had anything to
3054 /// say should leave an empty file and not yesterday's. An absent file and an empty one are
3055 /// different facts and something reading this will act on the difference.
3056 fn new(file: Option<&String>, stderr: &mut impl std::io::Write) -> (Self, bool) {
3057 let mut ok = true;
3058 if let Some(path) = file {
3059 if let Err(e) = std::fs::write(path, "") {
3060 let _ = writeln!(stderr, "rucc: error: {path}: {e}");
3061 ok = false;
3062 }
3063 }
3064 (Self { file: file.cloned(), started: false }, ok)
3065 }
3066
3067 /// Writes one input's remarks, and says whether that worked.
3068 ///
3069 /// A file that cannot be written is a failure and not a warning, for the reason
3070 /// [`write_dumps`] gives: remarks that quietly did not arrive look exactly like a compilation
3071 /// where nothing happened.
3072 fn write(&mut self, text: &str, stderr: &mut impl std::io::Write) -> bool {
3073 if text.is_empty() {
3074 return true;
3075 }
3076 let Some(path) = &self.file else {
3077 let _ = write!(stderr, "{text}");
3078 return true;
3079 };
3080 let opened = std::fs::OpenOptions::new()
3081 .write(true)
3082 .append(self.started)
3083 .truncate(!self.started)
3084 .create(true)
3085 .open(path);
3086 self.started = true;
3087 let result =
3088 opened.and_then(|mut file| std::io::Write::write_all(&mut file, text.as_bytes()));
3089 if let Err(e) = result {
3090 let _ = writeln!(stderr, "rucc: error: {path}: {e}");
3091 return false;
3092 }
3093 true
3094 }
3095}
3096
3097/// Writes what `-fdump-ir=` asked to see, one file per dump.
3098///
3099/// The name is the input file with the dump's own name and `.ir` after it, so a directory listing
3100/// after a run is the passes in the order they ran, per input. They go in the working directory
3101/// rather than beside the output, because a dump is something a person asked for at a prompt and
3102/// the working directory is where that person is.
3103///
3104/// A file that could not be written is a failure and not a warning, for the reason
3105/// [`write_coverage`] gives: what asked for this is somebody debugging a pass, and a dump that
3106/// quietly did not happen looks exactly like a pass that did not run.
3107fn write_dumps(input: &str, dumps: &[rucc_opt::Dump], stderr: &mut impl std::io::Write) -> bool {
3108 let stem = std::path::Path::new(input)
3109 .file_name()
3110 .map_or_else(|| input.to_owned(), |name| name.to_string_lossy().into_owned());
3111 let mut ok = true;
3112 for dump in dumps {
3113 let path = format!("{stem}.{}.ir", dump.name);
3114 if let Err(e) = std::fs::write(&path, &dump.text) {
3115 let _ = writeln!(stderr, "rucc: error: {path}: {e}");
3116 ok = false;
3117 }
3118 }
3119 ok
3120}
3121
3122/// Writes the files `-save-temps` kept, which is nothing at all unless it was given.
3123///
3124/// A file that could not be written is a failure rather than a warning, for the reason
3125/// [`write_dumps`] gives: somebody asked for these by name, and one that quietly did not happen
3126/// looks like a compilation that never went through that step.
3127fn write_temps(job: &Job, temps: &Temps, stderr: &mut impl std::io::Write) -> bool {
3128 let mut ok = true;
3129 let kept = [(job.saved_text(), &temps.preprocessed), (job.saved_asm(), &temps.assembly)];
3130 for (path, text) in kept {
3131 // A step the compilation did not reach has nothing to keep, and a job that is not keeping
3132 // that step has nowhere to put it. Either way there is no file here.
3133 let (Some(path), Some(text)) = (path, text) else { continue };
3134 if let Err(e) = std::fs::write(&path, text) {
3135 let _ = writeln!(stderr, "rucc: error: {path}: {e}");
3136 ok = false;
3137 }
3138 }
3139 ok
3140}
3141
3142/// One line of `-time`, which is what a step was called and how long it took.
3143///
3144/// GCC's two numbers are the user and the system time of a subprocess it ran. This compiler runs
3145/// no subprocess for anything but the link, so what is measured here is the wall clock of the
3146/// step and the second column is always zero. The shape of the line is kept because a person
3147/// reading it next to gcc's should not have to work out which column is which.
3148fn say_time(name: &str, took: std::time::Duration, stderr: &mut impl std::io::Write) {
3149 let _ = writeln!(stderr, "# {name} {:.2} {:.2}", took.as_secs_f64(), 0.0);
3150}
3151
3152/// Writes one job's result where the plan said it goes.
3153///
3154/// # Errors
3155///
3156/// Returns the message to print, which names the file when there is one, because "permission
3157/// denied" on its own does not say which file was refused.
3158fn write_out(output: &Output, bytes: &[u8]) -> Result<(), String> {
3159 match output {
3160 Output::Stdout => {
3161 let mut stdout = std::io::stdout().lock();
3162 stdout.write_all(bytes).map_err(|e| format!("writing to standard output: {e}"))
3163 }
3164 Output::File(path) | Output::Temporary(path) => {
3165 std::fs::write(path, bytes).map_err(|e| format!("{path}: {e}"))
3166 }
3167 }
3168}
3169
3170/// Runs the driver and returns the process exit code.
3171///
3172/// `args` excludes the program name. Output goes to `stdout` and errors to `stderr`, which
3173/// is the one place in the compiler that is true.
3174pub fn run(args: &[String]) -> i32 {
3175 match parse_args(args) {
3176 Ok(Action::Help) => {
3177 print!("{USAGE}");
3178 0
3179 }
3180 Ok(Action::Version) => {
3181 println!("rucc {VERSION}");
3182 0
3183 }
3184 Ok(Action::Print(line)) => {
3185 println!("{line}");
3186 0
3187 }
3188 Ok(Action::PrintConfig(opts)) => {
3189 print!("{}", print_config(&opts));
3190 0
3191 }
3192 Ok(Action::PrintPipeline(opts)) => {
3193 print!("{}", print_pipeline(&opts));
3194 0
3195 }
3196 Ok(Action::PrintPlan { opts, plan, link }) => {
3197 print!("{}", plan.render());
3198 // The line as it would be typed, which is the half of `-###` that section 4.3 says
3199 // arrives with the link. It is printed even when the linker is not on this machine,
3200 // because what a build wants from `-###` is what the compiler would do.
3201 if let Some(job) = &plan.link {
3202 match link_line(&opts, &link, job) {
3203 Ok(line) => println!("{line}"),
3204 Err(why) => {
3205 let mut stderr = std::io::stderr().lock();
3206 let _ = writeln!(stderr, "rucc: error: {why}");
3207 return 1;
3208 }
3209 }
3210 }
3211 0
3212 }
3213 Ok(Action::Fetch { what, target, cache }) => {
3214 let kernel = rucc_sysroot::Kernel::for_target(&cache, target)
3215 .map(|_| &rucc_sysroot::KERNEL_HEADERS);
3216 fetch_sysroot(what, kernel, target, &cache)
3217 }
3218 Ok(Action::FetchMsvcSdk { target, accepted, cache }) => {
3219 msvc::fetch_msvc_sdk(target, accepted, &cache)
3220 }
3221 Ok(Action::Compile { opts, plan, link, jobs, verbose, notes }) => {
3222 {
3223 let mut stderr = std::io::stderr().lock();
3224 // Before the plan rather than after it, because a note is about the command line
3225 // and the plan is what the command line was read as, so the reader wants the two
3226 // in that order.
3227 for note in ¬es {
3228 let _ = writeln!(stderr, "rucc: warning: {note}");
3229 }
3230 if verbose {
3231 let _ = write!(stderr, "{}", plan.render());
3232 let _ = writeln!(stderr, "workers: {}", jobs.count());
3233 }
3234 }
3235 if opts.emit == EmitKind::Preprocessed {
3236 return preprocess_all(&opts, &plan);
3237 }
3238 if opts.emit == EmitKind::Archive {
3239 return archive_all(&opts, &plan);
3240 }
3241 if opts.emit != EmitKind::Executable {
3242 return compile_all(&opts, &plan);
3243 }
3244 link_all(&opts, &plan, &link, verbose)
3245 }
3246 Err(e) => {
3247 let mut stderr = std::io::stderr().lock();
3248 let _ = writeln!(stderr, "rucc: error: {e}");
3249 let _ = writeln!(stderr, "rucc: note: run `rucc --help` for usage");
3250 1
3251 }
3252 }
3253}
3254
3255#[cfg(test)]
3256mod tests {
3257 use rucc_session::{
3258 Contract, GnucVersion, IncludeForm, LtoJobs, OptLevel, Partition, Patchable, Visibility,
3259 };
3260
3261 use super::*;
3262
3263 fn args(s: &[&str]) -> Vec<String> {
3264 s.iter().map(|x| (*x).to_owned()).collect()
3265 }
3266
3267 /// A target to write down where the host would otherwise decide, for the tests whose answer
3268 /// would be a different one on a different machine.
3269 ///
3270 /// Most of the tests here never name a target, which is right, because most of what the driver
3271 /// does with a command line is the same wherever it runs and a test that pinned one would be
3272 /// saying so in every case for the sake of the two that need it. The two that need it are the
3273 /// ones whose answer comes off the target rather than off the command line: the name an object
3274 /// gets, which is `a.o` here and `a.obj` on Windows, and whether Microsoft's reading of a
3275 /// nameless member is on, which is off here and on there. Both are the compiler being right, and
3276 /// a test that leaves the target to the host is asking a question with two correct answers.
3277 const LINUX: &str = "--target=x86_64-unknown-linux-gnu";
3278
3279 #[test]
3280 fn help_and_version_win_over_everything_else() {
3281 assert_eq!(parse_args(&args(&["-c", "--help", "x.c"])).unwrap(), Action::Help);
3282 assert_eq!(parse_args(&args(&["--version"])).unwrap(), Action::Version);
3283 }
3284
3285 fn compile(s: &[&str]) -> (Box<Options>, Box<Plan>) {
3286 match parse_args(&args(s)).expect("expected a compilation") {
3287 Action::Compile { opts, plan, .. } => (opts, plan),
3288 other => panic!("expected a compilation, got {other:?}"),
3289 }
3290 }
3291
3292 fn linking(s: &[&str]) -> (Box<LinkOptions>, Box<Plan>) {
3293 match parse_args(&args(s)).expect("expected a compilation") {
3294 Action::Compile { link, plan, .. } => (link, plan),
3295 other => panic!("expected a compilation, got {other:?}"),
3296 }
3297 }
3298
3299 fn notes(s: &[&str]) -> Vec<String> {
3300 match parse_args(&args(s)).expect("expected a compilation") {
3301 Action::Compile { notes, .. } => notes,
3302 other => panic!("expected a compilation, got {other:?}"),
3303 }
3304 }
3305
3306 /// The ordinary command line has nothing to say about itself, which is the property that makes
3307 /// a note worth reading when there is one.
3308 #[test]
3309 fn a_command_line_with_nothing_wrong_with_it_carries_no_notes() {
3310 assert_eq!(notes(&["-c", "a.c"]), Vec::<String>::new());
3311 }
3312
3313 /// A directory that is not there contributes nothing to the search path, so there is no tree to
3314 /// read a release out of and nothing to compare the pin against. Said as a test because this is
3315 /// the shape a hermetic machine takes: the probe reads the disk and every other machine has a
3316 /// different disk, so what can be asserted here is the silence.
3317 #[test]
3318 fn a_named_tree_that_is_not_on_the_machine_is_not_a_release_mismatch() {
3319 let said =
3320 notes(&["--target=x86_64-linux-gnu.2.28", "--sysroot=/nowhere-at-all", "-c", "a.c"]);
3321 assert_eq!(said, Vec::<String>::new());
3322 }
3323
3324 #[test]
3325 fn collects_inputs_and_flags() {
3326 let (opts, plan) = compile(&["-c", "-O2", "-g", "a.c", "b.c"]);
3327 let paths: Vec<&str> = plan.jobs.iter().map(|j| j.input.as_str()).collect();
3328 assert_eq!(paths, vec!["a.c", "b.c"]);
3329 assert_eq!(opts.opt_level, OptLevel::O2);
3330 assert_eq!(opts.emit, EmitKind::Object);
3331 assert!(opts.debug_info);
3332 }
3333
3334 /// The unstable options, which are spelled apart from everything else on purpose: what is
3335 /// under `-Z` promises nothing, and a build that reaches for one should have had to say so.
3336 #[test]
3337 fn an_unstable_option_is_taken_and_one_that_does_not_exist_is_refused() {
3338 let (opts, _) = compile(&["-c", "-Zrule-coverage=/tmp/rules.cov", "a.c"]);
3339 assert_eq!(opts.rule_coverage.as_deref(), Some("/tmp/rules.cov"));
3340
3341 let (plain, _) = compile(&["-c", "a.c"]);
3342 assert_eq!(plain.rule_coverage, None, "nothing is measured unless it was asked for");
3343
3344 assert!(parse_args(&args(&["-Zrule-coverage=", "a.c"])).is_err(), "a file with no name");
3345 let unknown = parse_args(&args(&["-Zwhat", "a.c"])).expect_err("there is no such option");
3346 assert!(unknown.message.contains("4.11"), "{}", unknown.message);
3347 }
3348
3349 /// The other measurement written to a file, which reads the same way and fails the same way.
3350 #[test]
3351 fn where_the_register_pressure_goes_is_asked_for_the_same_way() {
3352 let (opts, _) = compile(&["-c", "-O2", "-Zregister-pressure=/tmp/spills.txt", "a.c"]);
3353 assert_eq!(opts.register_pressure.as_deref(), Some("/tmp/spills.txt"));
3354
3355 let (plain, _) = compile(&["-c", "a.c"]);
3356 assert_eq!(plain.register_pressure, None, "nothing is measured unless it was asked for");
3357
3358 assert!(parse_args(&args(&["-Zregister-pressure=", "a.c"])).is_err(), "no file named");
3359 }
3360
3361 /// The third one, which says what the pre-selection lowering group did.
3362 #[test]
3363 fn where_the_lowering_dump_goes_is_asked_for_the_same_way() {
3364 let (opts, _) = compile(&["-c", "-O2", "-Zlowering=/tmp/lowering.txt", "a.c"]);
3365 assert_eq!(opts.lowering_dump.as_deref(), Some("/tmp/lowering.txt"));
3366
3367 let (plain, _) = compile(&["-c", "a.c"]);
3368 assert_eq!(plain.lowering_dump, None, "nothing is dumped unless it was asked for");
3369
3370 assert!(parse_args(&args(&["-Zlowering=", "a.c"])).is_err(), "no file named");
3371 }
3372
3373 /// Scheduling, which has the three way answer every optimization flag has: on, off, and
3374 /// nothing said, which is whatever the optimization level asks for. The name is gcc's, and
3375 /// gcc's has a two in it because gcc has a scheduler before allocation and one after and this
3376 /// is the one after.
3377 #[test]
3378 fn scheduling_can_be_turned_on_and_off_and_left_to_the_optimization_level() {
3379 let (on, _) = compile(&["-c", "-O0", "-fschedule-insns2", "a.c"]);
3380 assert_eq!(on.schedule_insns, Some(true));
3381
3382 let (off, _) = compile(&["-c", "-O2", "-fno-schedule-insns2", "a.c"]);
3383 assert_eq!(off.schedule_insns, Some(false));
3384
3385 let (quiet, _) = compile(&["-c", "-O2", "a.c"]);
3386 assert_eq!(quiet.schedule_insns, None, "nothing said, so the level decides");
3387 assert!(quiet.opt_level.schedules(), "and at this level the level says yes");
3388
3389 let (none, _) = compile(&["-c", "a.c"]);
3390 assert!(!none.opt_level.schedules(), "at no optimization it says no");
3391 }
3392
3393 /// Whether the timing model is worth holding an instruction back over, which is a `-Z` because
3394 /// it is a question about a target's description rather than about the program being compiled.
3395 #[test]
3396 fn whether_the_timing_model_is_cycle_accurate_can_be_overridden() {
3397 let (yes, _) = compile(&["-c", "-O2", "-Zcycle-accurate-model=yes", "a.c"]);
3398 assert_eq!(yes.cycle_accurate_model, Some(true));
3399
3400 let (no, _) = compile(&["-c", "-O2", "-Zcycle-accurate-model=no", "a.c"]);
3401 assert_eq!(no.cycle_accurate_model, Some(false));
3402
3403 let (plain, _) = compile(&["-c", "-O2", "a.c"]);
3404 assert_eq!(plain.cycle_accurate_model, None, "the target's own answer stands");
3405
3406 let bad = parse_args(&args(&["-Zcycle-accurate-model=maybe", "a.c"]))
3407 .expect_err("it takes yes or no");
3408 assert!(bad.message.contains("yes or no"), "{}", bad.message);
3409 }
3410
3411 #[test]
3412 fn a_bare_dash_o_means_o1_the_way_gcc_reads_it() {
3413 let (opts, _) = compile(&["-O", "a.c"]);
3414 assert_eq!(opts.opt_level, OptLevel::O1);
3415 }
3416
3417 #[test]
3418 fn dash_x_applies_to_later_inputs_only_and_none_stops_it() {
3419 let (_, plan) = compile(&["a.o", "-x", "c", "b.txt", "-x", "none", "c.o"]);
3420 assert_eq!(plan.jobs[0].kind, InputKind::LinkerInput);
3421 assert_eq!(plan.jobs[1].kind, InputKind::C);
3422 assert_eq!(plan.jobs[2].kind, InputKind::LinkerInput);
3423 }
3424
3425 #[test]
3426 fn dash_j_reaches_the_scheduler_and_defaults_to_the_machine() {
3427 let (_, _, jobs) = match parse_args(&args(&["-j4", "a.c"])).unwrap() {
3428 Action::Compile { opts, plan, jobs, .. } => (opts, plan, jobs),
3429 other => panic!("expected a compilation, got {other:?}"),
3430 };
3431 assert_eq!(jobs.count(), 4);
3432
3433 let default = match parse_args(&args(&["a.c"])).unwrap() {
3434 Action::Compile { jobs, .. } => jobs,
3435 other => panic!("expected a compilation, got {other:?}"),
3436 };
3437 assert_eq!(default, Jobs::available());
3438 assert!(parse_args(&args(&["-j0", "a.c"])).is_err());
3439 }
3440
3441 #[test]
3442 fn triple_hash_prints_the_plan_and_runs_nothing() {
3443 let a = parse_args(&args(&["-###", "-c", "a.c"])).unwrap();
3444 let Action::PrintPlan { plan, .. } = a else { panic!("expected a plan dump") };
3445 assert!(plan.render().contains("a.c: preprocess, compile, assemble -> a.o"));
3446 }
3447
3448 #[test]
3449 fn the_flag_that_keeps_the_intermediate_files_has_three_spellings_and_two_meanings() {
3450 // The bare one is `=obj` and not `=cwd`. gcc's manual says the opposite and gcc 16 does
3451 // this, and following the compiler is what makes a build that reads either of them find
3452 // the files where they are.
3453 assert_eq!(compile(&["-c", "-save-temps", "a.c"]).0.save_temps, SaveTemps::Object);
3454 assert_eq!(compile(&["-c", "-save-temps=obj", "a.c"]).0.save_temps, SaveTemps::Object);
3455 assert_eq!(compile(&["-c", "-save-temps=cwd", "a.c"]).0.save_temps, SaveTemps::Cwd);
3456 assert_eq!(compile(&["-c", "a.c"]).0.save_temps, SaveTemps::No);
3457 // The last one on the line decides, the way it does for every other flag with an
3458 // argument, and a keyword that is neither is fatal rather than ignored: a run that kept
3459 // nothing and said nothing looks exactly like one where the files were not produced.
3460 let (opts, _) = compile(&["-c", "-save-temps", "-save-temps=cwd", "a.c"]);
3461 assert_eq!(opts.save_temps, SaveTemps::Cwd);
3462 let e = parse_args(&args(&["-c", "-save-temps=nowhere", "a.c"])).unwrap_err();
3463 assert!(e.message.contains("accepted: cwd, obj"), "{}", e.message);
3464 }
3465
3466 #[test]
3467 fn the_flag_that_times_each_step_reaches_the_options_and_changes_nothing_else() {
3468 let (opts, plan) = compile(&["-c", "-time", "a.c"]);
3469 let (plain, without) = compile(&["-c", "a.c"]);
3470 assert!(opts.time);
3471 assert!(!plain.time);
3472 // Against the same line without the flag rather than against a spelling of the object's
3473 // name, since what the object is called is the host's business and this is not about that.
3474 assert_eq!(plan.jobs[0].output, without.jobs[0].output);
3475 }
3476
3477 #[test]
3478 fn dash_x_names_what_it_accepts_when_it_does_not_know_a_language() {
3479 let e = parse_args(&args(&["-x", "fortran", "a.c"])).unwrap_err();
3480 assert!(e.message.contains("assembler-with-cpp"), "{}", e.message);
3481 }
3482
3483 /// What `--fetch` says for a target this release pins nothing for, which today is every target
3484 /// but the three windows-gnu ones, the four musl ones and the eight glibc ones.
3485 #[test]
3486 fn a_fetch_of_a_target_nothing_is_pinned_for_says_so_rather_than_reaching_the_network() {
3487 let e = parse_args(&args(&["--fetch", "x86_64-linux-gnux32"])).unwrap_err();
3488 assert!(e.message.contains("pins no sysroot for x86_64-linux-gnux32"), "{}", e.message);
3489 // And what it does pin, because a release with some rows in the table and a release with
3490 // none are two situations and the second sentence is what tells them apart.
3491 assert!(e.message.contains("x86_64-windows-gnu"), "{}", e.message);
3492 // The joined spelling is the same flag.
3493 let joined = parse_args(&args(&["--fetch=x86_64-linux-gnux32"])).unwrap_err();
3494 assert_eq!(joined, e);
3495 }
3496
3497 /// The two targets a release will never pin, which is a different answer from the one above.
3498 ///
3499 /// Section 13.4. A person who reads "this release pins no sysroot yet" waits for a release that
3500 /// does, and no release of this compiler can ship either of these, so the message names the
3501 /// licence that decides it and what to do instead.
3502 #[test]
3503 fn a_fetch_of_a_target_behind_a_licence_wall_says_so_rather_than_saying_not_yet() {
3504 let e = parse_args(&args(&["--fetch", "aarch64-macos"])).unwrap_err();
3505 assert!(e.message.contains("Xcode licence"), "{}", e.message);
3506 assert!(e.message.contains("there never will be"), "{}", e.message);
3507 assert!(!e.message.contains("tamnd/rucc-cross"), "{}", e.message);
3508
3509 let e = parse_args(&args(&["--fetch", "x86_64-windows-msvc"])).unwrap_err();
3510 assert!(e.message.contains("redistributed"), "{}", e.message);
3511 // The way out of this one is a target rather than a download, and it is the default already.
3512 assert!(e.message.contains("mingw-w64"), "{}", e.message);
3513 // And the mingw-w64 target next to it is ours to ship and published, so the same flag has
3514 // something to get rather than a licence to explain.
3515 let action = parse_args(&args(&["--fetch", "x86_64-windows-gnu"])).expect("it is pinned");
3516 let Action::Fetch { what, .. } = action else { panic!("{action:?}") };
3517 assert_eq!(what.tuple, "x86_64-windows-gnu");
3518 }
3519
3520 #[test]
3521 fn the_other_fetch_takes_a_target_behind_microsofts_wall_and_carries_the_acceptance() {
3522 // Both spellings of the flag, because a flag that takes a tuple gets written both ways.
3523 for line in [
3524 vec!["--fetch-msvc-sdk", "x86_64-windows-msvc"],
3525 vec!["--fetch-msvc-sdk=x86_64-windows-msvc"],
3526 ] {
3527 let action = parse_args(&args(&line)).expect("that is a target behind the wall");
3528 let Action::FetchMsvcSdk { target, accepted, .. } = action else {
3529 panic!("{action:?}")
3530 };
3531 assert_eq!(target.to_canonical_string(), "x86_64-windows-msvc");
3532 // Nothing on the line accepted anything, so nothing did.
3533 assert!(!accepted);
3534 }
3535
3536 // And both spellings of the word, because the prose here uses one and most of the people
3537 // typing this will reach for the other.
3538 for word in ["--accept-licence", "--accept-license"] {
3539 let action = parse_args(&args(&["--fetch-msvc-sdk", "aarch64-windows-msvc", word]))
3540 .expect("that is a target behind the wall");
3541 let Action::FetchMsvcSdk { target, accepted, .. } = action else {
3542 panic!("{action:?}")
3543 };
3544 assert_eq!(target.to_canonical_string(), "aarch64-windows-msvc");
3545 assert!(accepted, "{word} should have been read");
3546 }
3547 }
3548
3549 #[test]
3550 fn the_other_fetch_refuses_the_command_lines_that_do_not_mean_anything() {
3551 // A tuple is what it gets, so a flag with nothing after it is not a command.
3552 let e = parse_args(&args(&["--fetch-msvc-sdk"])).unwrap_err();
3553 assert!(e.message.contains("requires the target"), "{}", e.message);
3554 let e = parse_args(&args(&["--fetch-msvc-sdk", "not-a-target"])).unwrap_err();
3555 assert!(e.message.contains("there is no SDK to get"), "{}", e.message);
3556
3557 // `--offline` forbids every download and this one asks for one, whichever order they came
3558 // in, which is the same answer `--fetch` gives.
3559 for line in [
3560 vec!["--offline", "--fetch-msvc-sdk", "x86_64-windows-msvc"],
3561 vec!["--fetch-msvc-sdk", "x86_64-windows-msvc", "--offline"],
3562 ] {
3563 let e = parse_args(&args(&line)).unwrap_err();
3564 assert!(e.message.contains("two opposite things"), "{}", e.message);
3565 }
3566
3567 // It gets an SDK and compiles nothing, so a file on the same line would be read by nothing.
3568 let e = parse_args(&args(&["--fetch-msvc-sdk", "x86_64-windows-msvc", "a.c"])).unwrap_err();
3569 assert!(e.message.contains("compiles nothing"), "{}", e.message);
3570
3571 // The two fetches are two commands and a line that asked for both asked for neither.
3572 let e = parse_args(&args(&[
3573 "--fetch",
3574 "x86_64-windows-gnu",
3575 "--fetch-msvc-sdk",
3576 "x86_64-windows-msvc",
3577 ]))
3578 .unwrap_err();
3579 assert!(e.message.contains("two different commands"), "{}", e.message);
3580
3581 // And an acceptance with nothing to accept for is a command line that says something about
3582 // a licence no part of it goes near.
3583 let e = parse_args(&args(&["--accept-licence", "-c", "a.c"])).unwrap_err();
3584 assert!(e.message.contains("--fetch-msvc-sdk <tuple> is the command"), "{}", e.message);
3585 }
3586
3587 /// An Apple target on a machine with no SDK, which is section 8.6's other host.
3588 ///
3589 /// Not run on a mac, where the SDK this is about is installed and the compile is the ordinary one
3590 /// that uses it. What the reason says is asserted in `rucc_sysroot::wall` and where it is printed
3591 /// is asserted in `rucc-pp`, so what is left here is that the driver works it out and leaves it
3592 /// where the preprocessor will find it, and that neither way past the wall leaves one behind.
3593 #[test]
3594 fn an_apple_target_with_no_sdk_anywhere_carries_the_licence_rather_than_a_missing_directory() {
3595 if cfg!(target_os = "macos") || std::env::var_os("SDKROOT").is_some() {
3596 return;
3597 }
3598 let (opts, _) = compile(&["--target=aarch64-macos", "-c", "a.c"]);
3599 let why = opts.search.missing_system().expect("the wall is the reason there are none");
3600 assert!(why.contains("aarch64-macos needs a macOS SDK"), "{why}");
3601 assert!(why.contains("Xcode licence"), "{why}");
3602 assert!(why.contains("-isysroot"), "{why}");
3603
3604 // A program that includes none of the library needs none of the SDK, which is what section
3605 // 8.6 means by being able to target the platform without one, so there is nothing to explain.
3606 let (opts, _) = compile(&["--target=aarch64-macos", "-nostdinc", "-c", "a.c"]);
3607 assert_eq!(opts.search.missing_system(), None);
3608 // And naming a path is the other way through, whether or not the path is there: a mistyped
3609 // directory is a mistake to report on its own terms rather than a licence to explain.
3610 let (opts, _) = compile(&["--target=aarch64-macos", "-isysroot", "/opt/sdk", "-c", "a.c"]);
3611 assert_eq!(opts.search.missing_system(), None);
3612 }
3613
3614 /// The same wall on the compile side of an MSVC target, where the way past it is a tuple.
3615 ///
3616 /// Not run on Windows, for the same reason the one above is not run on a mac: the wall stands in
3617 /// front of an SDK this machine does not have, and a Windows machine is the kind that does. The
3618 /// driver asks `vswhere` where Visual Studio is and takes the newest kit under it, so on a box
3619 /// with the build tools installed there are headers, no wall and nothing here to be about.
3620 /// `INCLUDE` is the other way a machine has one and is the other half of the guard, since a
3621 /// person can set that anywhere while Visual Studio is only found on the platform it runs on.
3622 #[test]
3623 fn an_msvc_target_with_no_sdk_named_says_which_environment_needs_nothing_installed() {
3624 if cfg!(target_os = "windows") || std::env::var_os("INCLUDE").is_some() {
3625 return;
3626 }
3627 let (opts, _) = compile(&["--target=x86_64-windows-msvc", "-c", "a.c"]);
3628 let why = opts.search.missing_system().expect("the wall is the reason there are none");
3629 assert!(why.contains("the Windows SDK and its universal CRT"), "{why}");
3630 assert!(why.contains("mingw-w64"), "{why}");
3631 // And the mingw-w64 target has its headers from us, so nothing is missing to explain.
3632 let (opts, _) = compile(&["--target=x86_64-windows-gnu", "-c", "a.c"]);
3633 assert_eq!(opts.search.missing_system(), None);
3634 }
3635
3636 #[test]
3637 fn a_fetch_with_no_target_and_a_fetch_of_a_tuple_that_is_not_one_both_say_which() {
3638 let e = parse_args(&args(&["--fetch"])).unwrap_err();
3639 assert!(e.message.contains("--fetch requires"), "{}", e.message);
3640 let e = parse_args(&args(&["--fetch", "sparc64-solaris-gnu"])).unwrap_err();
3641 assert!(e.message.contains("--fetch sparc64-solaris-gnu"), "{}", e.message);
3642 assert!(e.message.contains("no sysroot to get"), "{}", e.message);
3643 }
3644
3645 /// Both flags on one line ask for opposite things, in either order.
3646 #[test]
3647 fn a_fetch_and_offline_together_is_a_refusal_whichever_way_round_they_are_written() {
3648 for line in [
3649 vec!["--offline", "--fetch", "x86_64-linux-musl"],
3650 vec!["--fetch", "x86_64-linux-musl", "--offline"],
3651 ] {
3652 let e = parse_args(&args(&line)).unwrap_err();
3653 assert!(e.message.contains("two opposite things"), "{}", e.message);
3654 }
3655 }
3656
3657 #[test]
3658 fn a_fetch_does_not_compile_anything_and_says_so_when_it_is_handed_a_file() {
3659 let e = parse_args(&args(&["--fetch", "x86_64-linux-musl", "a.c"])).unwrap_err();
3660 assert!(e.message.contains("compiles nothing"), "{}", e.message);
3661 assert!(e.message.contains("a.c"), "{}", e.message);
3662 }
3663
3664 /// `--offline` on its own is accepted and changes nothing, because an ordinary compile
3665 /// downloads nothing with or without it. A build that passes it everywhere is the case this is
3666 /// for, and it must not lose the compilation it was passed beside.
3667 #[test]
3668 fn offline_on_a_compilation_is_the_same_compilation() {
3669 let (opts, plan) = compile(&["-c", "--offline", "a.c"]);
3670 let (plain, without) = compile(&["-c", "a.c"]);
3671 assert_eq!(opts.target, plain.target);
3672 assert_eq!(plan.jobs.len(), without.jobs.len());
3673 assert_eq!(plan.jobs[0].output, without.jobs[0].output);
3674 }
3675
3676 #[test]
3677 fn an_unknown_flag_is_an_error_rather_than_a_shrug() {
3678 let e = parse_args(&args(&["-fno-such-thing", "a.c"])).unwrap_err();
3679 assert!(e.message.contains("unknown option"), "{}", e.message);
3680 }
3681
3682 /// `-fpermissive` and the flag that turns it back off, which a build writes beside it when
3683 /// one directory needs the older rules and the rest of the tree does not.
3684 #[test]
3685 fn permissive_reads_in_both_directions_and_the_last_one_wins() {
3686 let (opts, _) = compile(&["-c", "a.c"]);
3687 assert!(!opts.permissive, "off unless it is asked for");
3688
3689 let (opts, _) = compile(&["-c", "-fpermissive", "a.c"]);
3690 assert!(opts.permissive);
3691
3692 let (opts, _) = compile(&["-c", "-fpermissive", "-fno-permissive", "a.c"]);
3693 assert!(!opts.permissive);
3694 }
3695
3696 #[test]
3697 fn asking_for_nested_functions_is_told_why_it_is_not_coming() {
3698 let e = parse_args(&args(&["-fnested-functions", "a.c"])).unwrap_err();
3699 assert!(e.message.contains("trampoline"), "{}", e.message);
3700 assert!(parse_args(&args(&["-fno-nested-functions", "a.c"])).is_ok());
3701 }
3702
3703 #[test]
3704 fn the_flag_every_configure_script_writes_is_taken() {
3705 // All four spellings, because a build writes whichever one its macros picked and a
3706 // compiler that takes three of them is a compiler that fails on the fourth.
3707 for flag in ["-fPIC", "-fpic", "-fPIE", "-fpie"] {
3708 let (opts, _) = compile(&["-c", flag, "a.c"]);
3709 assert_eq!(opts.emit, EmitKind::Object, "{flag}");
3710 }
3711 }
3712
3713 #[test]
3714 fn a_table_is_written_unless_the_build_says_nothing_will_walk_it() {
3715 let (opts, _) = compile(&["-c", "a.c"]);
3716 assert!(opts.unwinds(), "the default is off");
3717 let (opts, _) = compile(&["-c", "-fno-asynchronous-unwind-tables", "a.c"]);
3718 assert!(!opts.unwinds(), "the build was not taken at its word");
3719 let (opts, _) = compile(&[
3720 "-c",
3721 "-fno-asynchronous-unwind-tables",
3722 "-fasynchronous-unwind-tables",
3723 "a.c",
3724 ]);
3725 assert!(opts.unwinds(), "the last flag did not win");
3726 // The weaker request, which the same table answers, so a line that asks for a table and
3727 // against an asynchronous one gets one. That is gcc's arrangement and it turns up when a
3728 // build turns the asynchronous one off globally and a directory asks for a table back.
3729 let (opts, _) =
3730 compile(&["-c", "-fno-asynchronous-unwind-tables", "-funwind-tables", "a.c"]);
3731 assert!(opts.unwinds(), "the weaker request was dropped");
3732 let (opts, _) = compile(&["-c", "-fno-unwind-tables", "a.c"]);
3733 assert!(opts.unwinds(), "the weaker negative turned off the stronger request");
3734 let (opts, _) =
3735 compile(&["-c", "-fno-unwind-tables", "-fno-asynchronous-unwind-tables", "a.c"]);
3736 assert!(!opts.unwinds(), "both were turned off and one stayed on");
3737 }
3738
3739 #[test]
3740 fn the_flags_that_describe_what_this_compiler_already_does_are_taken() {
3741 // Every one of these is on a real build line somewhere and every one of them was an
3742 // unknown option. What they have in common is that the answer rucc gives is the answer
3743 // they ask for, so there is nothing to implement and nothing to refuse.
3744 for flag in [
3745 "-fno-common",
3746 "-fstrict-aliasing",
3747 "-fno-strict-aliasing",
3748 "-fdelete-null-pointer-checks",
3749 "-fno-delete-null-pointer-checks",
3750 "-frounding-math",
3751 "-fno-rounding-math",
3752 "-fexcess-precision=standard",
3753 "-fexcess-precision=fast",
3754 "-fexcess-precision=16",
3755 "-pipe",
3756 "-fdiagnostics-color",
3757 "-fno-diagnostics-color",
3758 "-fdiagnostics-color=always",
3759 "-fdiagnostics-color=never",
3760 "-fdiagnostics-color=auto",
3761 ] {
3762 let (opts, _) = compile(&["-c", flag, "a.c"]);
3763 assert_eq!(opts.emit, EmitKind::Object, "{flag}");
3764 }
3765 }
3766
3767 #[test]
3768 fn whether_an_exception_is_looked_at_is_kept_and_defaults_to_gccs_answer() {
3769 let (opts, _) = compile(&["-c", "a.c"]);
3770 assert!(opts.trapping_math, "the default was not gcc's");
3771 let (opts, _) = compile(&["-c", "-fno-trapping-math", "a.c"]);
3772 assert!(!opts.trapping_math);
3773 let (opts, _) = compile(&["-c", "-ftrapping-math", "a.c"]);
3774 assert!(opts.trapping_math, "spelling out the default turned it off");
3775 // The last one written wins, which is how a build line that inherits a flag from one
3776 // place and overrides it in another is read.
3777 let (opts, _) = compile(&["-c", "-fno-trapping-math", "-ftrapping-math", "a.c"]);
3778 assert!(opts.trapping_math);
3779 }
3780
3781 /// The flags a torture program writes on its own `dg-options` line, which is where most of
3782 /// these come from: a program reduced from a miscompilation names the pass that miscompiled
3783 /// it. Eighteen programs in the suite stopped on the driver before anything read them, and
3784 /// tamnd/rucc#1019 is the list.
3785 #[test]
3786 fn no_inline_turns_off_the_inlining_of_a_function_declared_inline() {
3787 let (opts, _) = compile(&["-c", "-O2", "-fno-inline", "a.c"]);
3788 assert_eq!(opts.passes, [(rucc_opt::inline::NAME.to_owned(), false)]);
3789 }
3790
3791 #[test]
3792 fn the_flags_that_name_a_pass_of_gccs_own_are_taken_and_dropped() {
3793 for flag in [
3794 "-fno-tree-ccp",
3795 "-fno-tree-dominator-opts",
3796 "-fno-tree-vrp",
3797 "-fno-tree-bit-ccp",
3798 "-fno-tree-coalesce-vars",
3799 "-ftree-vectorize",
3800 "-ftree-loop-distribution",
3801 "-fipa-pta",
3802 "-fmodulo-sched",
3803 "-fno-vect-cost-model",
3804 "-fvect-cost-model=unlimited",
3805 "-fsimd-cost-model=cheap",
3806 "-fexpensive-optimizations",
3807 "-fno-early-inlining",
3808 "-finline-functions",
3809 "-foptimize-strlen",
3810 "-fno-ira-share-spill-slots",
3811 ] {
3812 let (opts, _) = compile(&["-c", flag, "a.c"]);
3813 assert_eq!(opts.emit, EmitKind::Object, "{flag}");
3814 assert!(opts.passes.is_empty(), "{flag} named a pass of gcc's and not one of ours");
3815 }
3816 }
3817
3818 /// The two namespaces are taken whole, so a name neither this test nor gcc 16 has heard of
3819 /// goes the same way as the ones above rather than stopping a build on the day gcc adds it.
3820 #[test]
3821 fn a_pass_name_in_either_family_is_taken_whether_or_not_it_is_one_gcc_has() {
3822 for flag in ["-ftree-no-such-pass", "-fno-ipa-no-such-pass"] {
3823 let (opts, _) = compile(&["-c", flag, "a.c"]);
3824 assert_eq!(opts.emit, EmitKind::Object, "{flag}");
3825 }
3826 }
3827
3828 /// A pass this compiler has keeps its flag, since the arms that read the registry are above
3829 /// the family arms. `dce` is the one both compilers have a name for, and `execute/pr97421-2.c`
3830 /// is the program that writes it.
3831 #[test]
3832 fn a_pass_name_this_compiler_has_is_still_read_as_a_pass() {
3833 let (opts, _) = compile(&["-c", "-fno-dce", "a.c"]);
3834 assert_eq!(opts.passes, vec![("dce".to_owned(), false)]);
3835 }
3836
3837 /// gcc's name for the unroller reaches the unroller, in both directions. libtommath puts
3838 /// `-funroll-loops` in `CFLAGS` unconditionally, and before this it was an unknown option and
3839 /// the build stopped on its first file.
3840 #[test]
3841 fn the_gcc_spelling_of_the_unroller_turns_the_unroller_on_and_off() {
3842 let (opts, _) = compile(&["-c", "-funroll-loops", "a.c"]);
3843 assert_eq!(opts.passes, vec![("unroll".to_owned(), true)]);
3844 let (opts, _) = compile(&["-c", "-fno-unroll-loops", "a.c"]);
3845 assert_eq!(opts.passes, vec![("unroll".to_owned(), false)]);
3846 }
3847
3848 /// The three transformations that are a module at a time are named by a flag as well, even
3849 /// though none of them is a `rucc_opt::Pass` and so none is reached by the generic arms.
3850 ///
3851 /// A bisection over a miscompilation turns one thing off at a time, and a transformation with
3852 /// no spelling of its own cannot be the one turned off.
3853 #[test]
3854 fn the_transformations_that_are_not_passes_are_still_named_by_a_flag() {
3855 let (opts, _) = compile(&["-c", "-fno-ipa-cp", "-fipa-sra", "-fno-libcall", "a.c"]);
3856 assert_eq!(
3857 opts.passes,
3858 vec![
3859 (rucc_opt::ipcp::NAME.to_owned(), false),
3860 (rucc_opt::ipasra::NAME.to_owned(), true),
3861 (rucc_opt::libcall::NAME.to_owned(), false),
3862 ]
3863 );
3864 let (opts, _) = compile(&["-c", "-flibcall", "a.c"]);
3865 assert_eq!(opts.passes, vec![(rucc_opt::libcall::NAME.to_owned(), true)]);
3866 }
3867
3868 /// Where a function starts is a question this compiler answers, so the flag that asks about it
3869 /// is answered rather than dropped. femtolisp's Makefile writes the bare form on every compile
3870 /// of the project, and before this it was an unknown option and the build stopped on its first
3871 /// file. The numbers are gcc 16's, read off `-S` on x86-64: nothing and the bare form both
3872 /// give `.p2align 4`, `=32` gives 5, `=3` gives 2, and the negative form gives `.align 8`.
3873 #[test]
3874 fn the_alignment_of_a_function_is_a_request_this_compiler_can_answer() {
3875 let (opts, _) = compile(&["-c", "-falign-functions", "a.c"]);
3876 assert_eq!(opts.align_functions, None, "the bare form asks for the default");
3877
3878 let (opts, _) = compile(&["-c", "-falign-functions=32", "a.c"]);
3879 assert_eq!(opts.align_functions, Some(32));
3880
3881 let (opts, _) = compile(&["-c", "-falign-functions=3", "a.c"]);
3882 assert_eq!(opts.align_functions, Some(4), "rounded up rather than refused");
3883
3884 let (opts, _) = compile(&["-c", "-falign-functions=32:8", "a.c"]);
3885 assert_eq!(opts.align_functions, Some(32), "the boundary is the answerable half");
3886
3887 for flag in ["-falign-functions=0", "-falign-functions=1"] {
3888 let (opts, _) = compile(&["-c", flag, "a.c"]);
3889 assert_eq!(opts.align_functions, None, "{flag} means the default");
3890 }
3891
3892 let (opts, _) = compile(&["-c", "-fno-align-functions", "a.c"]);
3893 assert_eq!(opts.align_functions, Some(8), "the smallest boundary the target has");
3894
3895 // The last one on the line wins, which is how gcc reads a repeated flag.
3896 let (opts, _) = compile(&["-c", "-falign-functions=32", "-falign-functions", "a.c"]);
3897 assert_eq!(opts.align_functions, None);
3898
3899 let e = parse_args(&args(&["-c", "-falign-functions=big", "a.c"])).unwrap_err();
3900 assert!(e.message.contains("number of bytes"), "{}", e.message);
3901 }
3902
3903 /// The other three of the family are about padding inside a body, so none of them is about
3904 /// where a function starts. Every spelling of each, since a build writes whichever one its
3905 /// author typed.
3906 #[test]
3907 fn the_alignment_flags_about_the_inside_of_a_body_are_taken_and_say_nothing() {
3908 for flag in [
3909 "-falign-labels",
3910 "-falign-loops",
3911 "-falign-jumps",
3912 "-falign-loops=16",
3913 "-falign-labels=32",
3914 "-fno-align-loops",
3915 "-fno-align-labels",
3916 "-fno-align-jumps",
3917 ] {
3918 let (opts, _) = compile(&["-c", flag, "a.c"]);
3919 assert_eq!(opts.emit, EmitKind::Object, "{flag}");
3920 assert_eq!(opts.align_functions, None, "{flag} is not about where a function starts");
3921 }
3922 }
3923
3924 /// The loop flag in either direction is an answer, and a command line that wrote neither
3925 /// leaves the level to decide.
3926 #[test]
3927 fn the_loop_alignment_flag_is_answered_both_ways() {
3928 assert_eq!(compile(&["-c", "-O2", "a.c"]).0.align_loops, None);
3929 assert_eq!(compile(&["-c", "-O0", "-falign-loops", "a.c"]).0.align_loops, Some(true));
3930 assert_eq!(compile(&["-c", "-O2", "-fno-align-loops", "a.c"]).0.align_loops, Some(false));
3931 assert_eq!(compile(&["-c", "-falign-loops=32", "a.c"]).0.align_loops, None, "a number");
3932 }
3933
3934 /// The encoding of the source is not a question about speed, so the one name that describes
3935 /// what the preprocessor does is taken and every other name is refused.
3936 #[test]
3937 fn the_input_charset_is_taken_when_it_names_the_one_that_is_read() {
3938 for flag in ["-finput-charset=utf-8", "-finput-charset=UTF-8", "-finput-charset=utf8"] {
3939 let (opts, _) = compile(&["-c", flag, "a.c"]);
3940 assert_eq!(opts.emit, EmitKind::Object, "{flag}");
3941 }
3942
3943 let e = parse_args(&args(&["-c", "-finput-charset=latin1", "a.c"])).unwrap_err();
3944 assert!(e.message.contains("latin1"), "{}", e.message);
3945 assert!(e.message.contains("UTF-8"), "what is read is worth saying: {}", e.message);
3946 }
3947
3948 /// The other half of the same rule. Each of these changes what the program does rather than
3949 /// how fast it does it, so each is refused with the reason, and the negative of each is what
3950 /// happens anyway and is taken.
3951 #[test]
3952 fn the_three_that_change_the_answer_are_refused_and_their_negatives_are_taken() {
3953 for (flag, word) in [
3954 ("-ffast-math", "__FAST_MATH__"),
3955 ("-fnon-call-exceptions", "landing pad"),
3956 ("-finstrument-functions", "__cyg_profile_func_enter"),
3957 ] {
3958 let e = parse_args(&args(&["-c", flag, "a.c"])).unwrap_err();
3959 assert!(e.message.contains(word), "{flag}: {}", e.message);
3960 assert!(!e.message.contains("unknown option"), "{flag} deserves a reason");
3961
3962 let off = format!("-fno-{}", flag.trim_start_matches("-f"));
3963 let (opts, _) = compile(&["-c", &off, "a.c"]);
3964 assert_eq!(opts.emit, EmitKind::Object, "{off}");
3965 }
3966 }
3967
3968 #[test]
3969 fn asking_the_linker_to_merge_tentative_definitions_is_told_why_it_is_not_coming() {
3970 // The one of that family that is a request rather than a description, and it is a real
3971 // difference: two files each writing `int g;` link under it and do not without it.
3972 let e = parse_args(&args(&["-fcommon", "a.c"])).unwrap_err();
3973 assert!(e.message.contains(".bss"), "{}", e.message);
3974 assert!(e.message.contains("extern"), "the way out is worth saying: {}", e.message);
3975 }
3976
3977 #[test]
3978 fn asking_for_position_dependent_code_is_told_why_it_is_not_coming() {
3979 for flag in ["-fno-pic", "-fno-pie"] {
3980 let e = parse_args(&args(&[flag, "a.c"])).unwrap_err();
3981 assert!(e.message.contains("global offset table"), "{flag}: {}", e.message);
3982 // The one it may have meant, since the two are a letter apart and one of them is
3983 // about linking and is taken.
3984 assert!(e.message.contains("-no-pie"), "{flag}: {}", e.message);
3985 }
3986 }
3987
3988 #[test]
3989 fn an_unsupported_target_names_itself() {
3990 let e = parse_args(&args(&["--target=sparc64-linux-gnu", "a.c"])).unwrap_err();
3991 assert!(e.message.contains("sparc64"), "{}", e.message);
3992 }
3993
3994 #[test]
3995 fn no_inputs_is_an_error_but_print_config_needs_none() {
3996 assert!(parse_args(&args(&[])).is_err());
3997 assert!(matches!(parse_args(&args(&["--print-config"])), Ok(Action::PrintConfig(_))));
3998 }
3999
4000 #[test]
4001 fn print_config_reports_the_target_it_was_given_not_the_host() {
4002 let a = parse_args(&args(&["--print-config", "--target=riscv64-linux-musl"])).unwrap();
4003 let Action::PrintConfig(opts) = a else { panic!("expected a configuration dump") };
4004 let text = print_config(&opts);
4005 assert!(text.contains("target: riscv64-unknown-linux-musl"), "{text}");
4006 assert!(text.contains("char-signed: false"), "{text}");
4007 assert!(text.contains("object-format: elf"), "{text}");
4008 assert!(text.contains("va-list: void-pointer"), "{text}");
4009 // RISC-V has a register file and this compiler has not written it down yet, and the
4010 // dump says which of those two it is rather than leaving the line out.
4011 assert!(text.contains("registers: none"), "{text}");
4012 assert!(text.contains("timing-model: none"), "{text}");
4013 }
4014
4015 /// The model the schedule was chosen with, which is a receipt anybody comparing two runs of a
4016 /// benchmark needs: two numbers that disagree are usually two models and not two compilers.
4017 #[test]
4018 fn print_config_names_the_model_the_schedule_was_chosen_with() {
4019 let opts = Options::new("x86_64-unknown-linux-gnu".parse().unwrap());
4020 let text = print_config(&opts);
4021 let line = text.lines().find(|l| l.starts_with("timing-model:")).expect("the model");
4022 assert!(line.contains("Skylake"), "{line}");
4023 assert!(line.contains("published"), "a sentence saying where it came from: {line}");
4024 }
4025
4026 #[test]
4027 fn print_config_has_one_key_per_line_and_a_fixed_order() {
4028 let opts = Options::new("x86_64-unknown-linux-gnu".parse().unwrap());
4029 let text = print_config(&opts);
4030 let keys: Vec<&str> =
4031 text.lines().map(|l| l.split(':').next().unwrap_or_default()).collect();
4032 assert_eq!(keys[0], "version");
4033 assert_eq!(keys[1], "target");
4034 assert_eq!(keys.len(), 26);
4035 assert!(text.ends_with('\n'));
4036 }
4037
4038 #[test]
4039 fn the_safety_tier_is_read_off_the_command_line_and_a_wrong_one_is_refused() {
4040 let (opts, _) = compile(&["a.c"]);
4041 assert_eq!(opts.safety, rucc_session::Safety::Off);
4042
4043 for (flag, tier) in [
4044 ("-fsafety=detect", rucc_session::Safety::Detect),
4045 ("-fsafety=enforce", rucc_session::Safety::Enforce),
4046 ("-fsafety=kernel", rucc_session::Safety::Kernel),
4047 ("-fsafety=off", rucc_session::Safety::Off),
4048 ] {
4049 let (opts, _) = compile(&[flag, "a.c"]);
4050 assert_eq!(opts.safety, tier, "{flag}");
4051 }
4052
4053 // The last one wins, the way every other repeated flag on this command line does.
4054 let (opts, _) = compile(&["-fsafety=enforce", "-fsafety=off", "a.c"]);
4055 assert_eq!(opts.safety, rucc_session::Safety::Off);
4056
4057 // A misspelled tier is refused rather than ignored. Silently compiling without the
4058 // monitor a build asked for is the one failure mode this feature cannot have.
4059 let e = parse_args(&args(&["-fsafety=on", "a.c"])).unwrap_err();
4060 assert!(e.message.contains("is not a safety tier"), "{}", e.message);
4061 assert!(parse_args(&args(&["-fsafety", "a.c"])).is_err());
4062 }
4063
4064 #[test]
4065 fn the_padding_mode_is_read_off_the_command_line_and_a_wrong_one_is_refused() {
4066 // The default is the one section 9.3 of document 09 gives library code, which is that
4067 // padding does not participate, so a record filled a member at a time is not reported.
4068 let (opts, _) = compile(&["a.c"]);
4069 assert_eq!(opts.padding, rucc_session::Padding::Ignored);
4070
4071 let (opts, _) = compile(&["-fsafety=detect", "-fsafety-init=padding", "a.c"]);
4072 assert_eq!(opts.padding, rucc_session::Padding::Tracked);
4073
4074 let (opts, _) = compile(&["-fsafety-init=padding", "-fsafety-init=nopadding", "a.c"]);
4075 assert_eq!(opts.padding, rucc_session::Padding::Ignored);
4076
4077 // The tier is still a tier. A flag whose name starts the same way must not be eaten by
4078 // the one above it, which is the thing worth pinning about a pair of names like these.
4079 let (opts, _) = compile(&["-fsafety-init=padding", "a.c"]);
4080 assert_eq!(opts.safety, rucc_session::Safety::Off);
4081
4082 let e = parse_args(&args(&["-fsafety-init=some", "a.c"])).unwrap_err();
4083 assert!(e.message.contains("is not a padding mode"), "{}", e.message);
4084 }
4085
4086 #[test]
4087 fn whether_a_write_has_to_stay_inside_its_member_is_read_off_the_command_line() {
4088 // Off by default, because a store to allocated storage sets its effective type and C 6.5
4089 // lets a program reuse a buffer as something else. Row S4 is a build opting out of that.
4090 let (opts, _) = compile(&["a.c"]);
4091 assert_eq!(opts.subobject, rucc_session::Subobject::Off);
4092
4093 let (opts, _) = compile(&["-fsafety=detect", "-fsafety-subobject", "a.c"]);
4094 assert_eq!(opts.subobject, rucc_session::Subobject::Members);
4095
4096 let (opts, _) = compile(&["-fsafety-subobject", "-fno-safety-subobject", "a.c"]);
4097 assert_eq!(opts.subobject, rucc_session::Subobject::Off);
4098
4099 // It takes no value. The form that would take one is the strict reading of section 9.4,
4100 // which is not written yet, so say so rather than accept a spelling that does nothing.
4101 let e = parse_args(&args(&["-fsafety-subobject=strict", "a.c"])).unwrap_err();
4102 assert!(e.message.contains("tamnd/rucc#967"), "{}", e.message);
4103 }
4104
4105 #[test]
4106 fn whether_two_restrict_pointers_may_meet_is_read_off_the_command_line() {
4107 // Off by default, because the record a block keeps is the union of what each pointer
4108 // reached, so two pointers striding through one array without landing on the same byte are
4109 // reported and by the letter of the standard those are different objects. Row Y8 is a build
4110 // deciding it would rather know.
4111 let (opts, _) = compile(&["a.c"]);
4112 assert_eq!(opts.promise, rucc_session::Promise::Off);
4113
4114 let (opts, _) = compile(&["-fsafety=detect", "-fsafety-restrict", "a.c"]);
4115 assert_eq!(opts.promise, rucc_session::Promise::Blocks);
4116
4117 let (opts, _) = compile(&["-fsafety-restrict", "-fno-safety-restrict", "a.c"]);
4118 assert_eq!(opts.promise, rucc_session::Promise::Off);
4119
4120 // The tier is still a tier, which is the thing worth pinning about a pair of names where
4121 // one is the front of the other.
4122 let (opts, _) = compile(&["-fsafety-restrict", "a.c"]);
4123 assert_eq!(opts.safety, rucc_session::Safety::Off);
4124
4125 let e = parse_args(&args(&["-fsafety-restrict=blocks", "a.c"])).unwrap_err();
4126 assert!(e.message.contains("takes no value"), "{}", e.message);
4127 }
4128
4129 #[test]
4130 fn safety_races_takes_a_mode_and_defaults_to_watching_nothing() {
4131 // Three modes rather than a bare flag, because section 9.5 gives two answers that record
4132 // the same thing and report different classes, so a flag with no value could not say which
4133 // was wanted. Off by default for the reason on `rucc_session::Races`, which is not a cost
4134 // argument: this is the one plane where an edge nobody interposed costs a false report.
4135 let (opts, _) = compile(&["a.c"]);
4136 assert_eq!(opts.races, rucc_session::Races::Off);
4137
4138 let (opts, _) = compile(&["-fsafety-races=metadata", "a.c"]);
4139 assert_eq!(opts.races, rucc_session::Races::Metadata);
4140
4141 let (opts, _) = compile(&["-fsafety-races=pointer", "a.c"]);
4142 assert_eq!(opts.races, rucc_session::Races::Pointer);
4143
4144 // Last one wins, as it does for every other mode flag here.
4145 let (opts, _) = compile(&["-fsafety-races=pointer", "-fno-safety-races", "a.c"]);
4146 assert_eq!(opts.races, rucc_session::Races::Off);
4147
4148 let e = parse_args(&args(&["-fsafety-races=all", "a.c"])).unwrap_err();
4149 assert!(e.message.contains("off, metadata or pointer"), "{}", e.message);
4150 }
4151
4152 #[test]
4153 fn print_pipeline_answers_with_the_passes_the_level_asked_for() {
4154 let a = parse_args(&args(&["--print-pipeline", "-O2"])).unwrap();
4155 let Action::PrintPipeline(opts) = a else { panic!("expected a pipeline dump") };
4156 let text = print_pipeline(&opts);
4157 assert!(text.starts_with("level: -O2\n"), "{text}");
4158 assert!(text.contains("fold"), "{text}");
4159
4160 let a = parse_args(&args(&["--print-pipeline"])).unwrap();
4161 let Action::PrintPipeline(opts) = a else { panic!("expected a pipeline dump") };
4162 // Two passes run at `-O0` and neither is an optimization. The first moves what
4163 // `__builtin_expect` said onto the branch and takes the instruction away, so that nothing
4164 // past the optimizer has to know the instruction exists. The second removes code nothing
4165 // reaches. See issue 359.
4166 assert!(print_pipeline(&opts).contains("1: expect,"), "{}", print_pipeline(&opts));
4167 assert!(print_pipeline(&opts).contains("2: simplify-cfg,"), "{}", print_pipeline(&opts));
4168
4169 let a = parse_args(&args(&["--print-pipeline", "-fno-simplify-cfg"])).unwrap();
4170 let Action::PrintPipeline(opts) = a else { panic!("expected a pipeline dump") };
4171 // The second turns off and the first does not, because nothing below the optimizer lowers
4172 // what it removes, so `-fno-expect` is a compile that stops rather than one that runs.
4173 let text = print_pipeline(&opts);
4174 assert!(text.contains("1: expect,"), "{text}");
4175 assert!(!text.contains("simplify-cfg"), "{text}");
4176 }
4177
4178 #[test]
4179 fn print_pipeline_takes_the_toggles_into_account() {
4180 let a = parse_args(&args(&["--print-pipeline", "-O2", "-fno-fold"])).unwrap();
4181 let Action::PrintPipeline(opts) = a else { panic!("expected a pipeline dump") };
4182 let text = print_pipeline(&opts);
4183 // The one that was named is gone and the rest of the level is not, which is the whole
4184 // of what a toggle promises.
4185 assert!(!text.contains("fold"), "{text}");
4186 assert!(text.contains("dce"), "{text}");
4187
4188 // Every pass the compiler has, named off. Built from the registry rather than written
4189 // out, so a pass added later is turned off here too and this keeps testing the thing it
4190 // is about, which is that the toggles can empty a level down to the passes that are not
4191 // optional. Those are named, because a listing that is all of them is a level nobody
4192 // emptied and the assertion would pass while saying nothing.
4193 let mut off = vec!["--print-pipeline".to_owned(), "-O2".to_owned()];
4194 off.extend(rucc_opt::PASSES.iter().map(|p| format!("-fno-{}", p.name())));
4195 let spelled: Vec<&str> = off.iter().map(String::as_str).collect();
4196 let a = parse_args(&args(&spelled)).unwrap();
4197 let Action::PrintPipeline(opts) = a else { panic!("expected a pipeline dump") };
4198 let text = print_pipeline(&opts);
4199 let left: Vec<&str> =
4200 rucc_opt::PASSES.iter().filter(|p| p.required()).map(|p| p.name()).collect();
4201 assert_eq!(left, vec!["expect", "constant-p"], "{text}");
4202 for (at, name) in left.iter().enumerate() {
4203 assert!(text.contains(&format!("{}: {name},", at + 1)), "{text}");
4204 }
4205 assert!(!text.contains("dce"), "{text}");
4206 }
4207
4208 #[test]
4209 fn print_pipeline_says_when_a_budget_will_stop_the_run_short() {
4210 let a = parse_args(&args(&["--print-pipeline", "-O2"])).unwrap();
4211 let Action::PrintPipeline(opts) = a else { panic!("expected a pipeline dump") };
4212 assert!(!print_pipeline(&opts).contains("global fuel"));
4213
4214 let a = parse_args(&args(&["--print-pipeline", "-O2", "-fpass-fuel-global=4"])).unwrap();
4215 let Action::PrintPipeline(opts) = a else { panic!("expected a pipeline dump") };
4216 let text = print_pipeline(&opts);
4217 // Because the listing is the answer to what this compilation will do, and a run that
4218 // stops after four rewrites is not doing what the level says it does.
4219 assert!(text.contains("global fuel: 4"), "{text}");
4220 }
4221
4222 /// A pass is turned on and off by its own name, and the order the flags were given in is
4223 /// kept, because the last spelling of a name is the one that decides.
4224 #[test]
4225 fn a_pass_is_named_by_dash_f_and_unnamed_by_dash_f_no() {
4226 let (opts, _) = compile(&["-c", "-O0", "-ffold", "-fno-fold", "-ffold", "a.c"]);
4227 assert_eq!(
4228 opts.passes,
4229 [("fold".to_owned(), true), ("fold".to_owned(), false), ("fold".to_owned(), true)]
4230 );
4231
4232 let e = parse_args(&args(&["-fno-such-pass", "a.c"])).unwrap_err();
4233 assert!(e.message.contains("unknown option"), "{}", e.message);
4234 }
4235
4236 #[test]
4237 fn pass_fuel_names_a_pass_and_a_count_and_refuses_anything_else() {
4238 let (opts, _) = compile(&["-c", "-O2", "-fpass-fuel=fold=3", "a.c"]);
4239 assert_eq!(opts.pass_fuel, [("fold".to_owned(), 3)]);
4240
4241 let e = parse_args(&args(&["-fpass-fuel=fold", "a.c"])).unwrap_err();
4242 assert!(e.message.contains("<pass>=<count>"), "{}", e.message);
4243 let e = parse_args(&args(&["-fpass-fuel=nosuch=3", "a.c"])).unwrap_err();
4244 assert!(e.message.contains("--print-pipeline"), "{}", e.message);
4245 let e = parse_args(&args(&["-fpass-fuel=fold=lots", "a.c"])).unwrap_err();
4246 assert!(e.message.contains("not a number"), "{}", e.message);
4247 }
4248
4249 #[test]
4250 fn global_pass_fuel_is_a_count_on_its_own_and_defaults_to_no_limit() {
4251 let (opts, _) = compile(&["-c", "-O2", "a.c"]);
4252 assert_eq!(opts.pass_fuel_global, None);
4253
4254 let (opts, _) = compile(&["-c", "-O2", "-fpass-fuel-global=12", "a.c"]);
4255 assert_eq!(opts.pass_fuel_global, Some(12));
4256 // And it is not the per pass flag with a longer name, so neither spelling swallows the
4257 // other.
4258 assert!(opts.pass_fuel.is_empty());
4259
4260 let e = parse_args(&args(&["-fpass-fuel-global=lots", "a.c"])).unwrap_err();
4261 assert!(e.message.contains("not a number"), "{}", e.message);
4262 }
4263
4264 #[test]
4265 fn a_gate_names_a_pass_and_optionally_the_functions_it_covers() {
4266 let (opts, _) = compile(&["-c", "-O2", "-fdisable-fold", "-fenable-fold=2-4,main", "a.c"]);
4267 assert_eq!(
4268 opts.pass_gates,
4269 [(false, "fold".to_owned()), (true, "fold=2-4,main".to_owned())],
4270 "the order is what decides, so it has to survive the parse"
4271 );
4272
4273 let e = parse_args(&args(&["-fdisable-nosuch", "a.c"])).unwrap_err();
4274 assert!(e.message.contains("--print-pipeline"), "{}", e.message);
4275 let e = parse_args(&args(&["-fenable-fold=9-2", "a.c"])).unwrap_err();
4276 assert!(e.message.contains("ends before it starts"), "{}", e.message);
4277 let e = parse_args(&args(&["-fdisable-fold=", "a.c"])).unwrap_err();
4278 assert!(e.message.contains("is empty"), "{}", e.message);
4279 }
4280
4281 #[test]
4282 fn the_pipeline_listing_says_which_passes_a_gate_touched() {
4283 let (opts, _) = compile(&["-c", "-O2", "-fdisable-fold=main", "a.c"]);
4284 let text = print_pipeline(&opts);
4285 assert!(text.contains("fold, "), "{text}");
4286 assert!(text.contains("[off for main]"), "{text}");
4287 }
4288
4289 /// The spelling is checked while the arguments are read, because a dump that names a pass
4290 /// this compiler does not have is a typo, and a typo found after the compilation has run is
4291 /// found too late to be any use.
4292 #[test]
4293 fn a_dump_is_checked_when_it_is_asked_for_rather_than_when_it_is_taken() {
4294 let (opts, _) = compile(&["-c", "-O2", "-fdump-ir=all", "-fdump-ir=after-fold", "a.c"]);
4295 assert_eq!(opts.dump_ir, ["all", "after-fold"]);
4296
4297 let e = parse_args(&args(&["-fdump-ir=after-nosuch", "a.c"])).unwrap_err();
4298 assert!(e.message.contains("nosuch"), "{}", e.message);
4299 assert!(parse_args(&args(&["-fdump-ir=sideways-fold", "a.c"])).is_err());
4300 }
4301
4302 /// Every spelling `-fopt-info` takes, and the one it does not.
4303 ///
4304 /// The keywords are checked here for the same reason a dump's pass name is: a person who
4305 /// misspelled one gets no output, and no output is also what a compilation where nothing
4306 /// happened looks like. Telling those two apart is the entire reason to reach for this flag.
4307 #[test]
4308 fn opt_info_takes_kinds_and_a_file_and_refuses_a_kind_it_does_not_have() {
4309 let (opts, _) = compile(&["-c", "-O2", "-fopt-info", "a.c"]);
4310 assert_eq!(opts.opt_info, [""], "a bare flag asks for the rewrites");
4311 assert_eq!(opts.opt_info_file, None, "and goes to standard error");
4312
4313 let (opts, _) = compile(&["-c", "-O2", "-fopt-info-missed-note", "a.c"]);
4314 assert_eq!(opts.opt_info, ["missed-note"]);
4315
4316 // Two flags add up rather than the second replacing the first, and the file is the last
4317 // one that named a file, which is how GCC treats both.
4318 let (opts, _) =
4319 compile(&["-c", "-O2", "-fopt-info-missed=one.txt", "-fopt-info-all=two.txt", "a.c"]);
4320 assert_eq!(opts.opt_info, ["missed", "all"]);
4321 assert_eq!(opts.opt_info_file.as_deref(), Some("two.txt"));
4322
4323 let e = parse_args(&args(&["-fopt-info-vectorized", "a.c"])).unwrap_err();
4324 assert!(e.message.contains("vectorized"), "{}", e.message);
4325 assert!(e.message.contains("`missed`"), "{}", e.message);
4326 let e = parse_args(&args(&["-fopt-info-missed=", "a.c"])).unwrap_err();
4327 assert!(e.message.contains("no file"), "{}", e.message);
4328 }
4329
4330 #[test]
4331 fn verify_each_is_unstable_and_off_unless_it_was_asked_for() {
4332 let (opts, _) = compile(&["-c", "-Zverify-each", "a.c"]);
4333 assert!(opts.verify_each);
4334 assert!(!USAGE.contains("verify-each"), "an unstable option stays out of the usage text");
4335 }
4336
4337 #[test]
4338 fn dash_o_needs_an_argument() {
4339 let e = parse_args(&args(&["a.c", "-o"])).unwrap_err();
4340 assert_eq!(e.message, "-o requires an argument");
4341 }
4342
4343 #[test]
4344 fn dash_d_and_dash_u_are_read_joined_or_separated_and_keep_their_order() {
4345 let (opts, _) = compile(&["-DFOO=1", "-D", "BAR", "-UBAZ", "-U", "QUX", "a.c"]);
4346 assert_eq!(opts.defines, ["FOO=1", "BAR"]);
4347 assert_eq!(opts.undefines, ["BAZ", "QUX"]);
4348 }
4349
4350 #[test]
4351 fn the_include_flags_land_on_the_chain_each_one_names() {
4352 // A sysroot with nothing under it, so that the library's own directories are the
4353 // same on every machine this test runs on, which is none of them.
4354 let (opts, _) = compile(&[
4355 "-Ii",
4356 "-iquote",
4357 "q",
4358 "-isystem",
4359 "sys",
4360 "-idirafter",
4361 "after",
4362 "--sysroot=/nowhere-at-all",
4363 "a.c",
4364 ]);
4365 let dirs: Vec<&str> = opts.search.dirs().iter().filter_map(|d| d.path.to_str()).collect();
4366 // The compiler's own headers sit after every `-isystem` and before `-idirafter`,
4367 // which is where GCC puts its own: a directory the user named outranks ours.
4368 assert_eq!(dirs, ["q", "i", "sys", runtime::DIR, "after"]);
4369 assert!(!opts.search.dirs()[1].is_system);
4370 assert!(opts.search.dirs()[2].is_system);
4371 }
4372
4373 #[test]
4374 fn the_librarys_headers_come_after_the_compilers_own_and_go_away_with_them() {
4375 // Which machine this runs on decides what is on the path, so the test is about the
4376 // order rather than about the names: ours is on it, the library's follow it, and
4377 // `-nostdinc` is the one flag that takes both halves of the pair off at once.
4378 let (opts, _) = compile(&["a.c"]);
4379 let dirs = opts.search.dirs();
4380 let ours = dirs.iter().position(|d| d.path.to_str() == Some(runtime::DIR));
4381 assert_eq!(ours, Some(0), "{dirs:?}");
4382 assert!(dirs[1..].iter().all(|d| d.is_system), "{dirs:?}");
4383 let (bare, _) = compile(&["-nostdinc", "a.c"]);
4384 assert!(bare.search.dirs().is_empty(), "{:?}", bare.search.dirs());
4385 }
4386
4387 #[test]
4388 fn a_sysroot_moves_the_librarys_directories_and_nothing_else() {
4389 let (opts, _) = compile(&["-isystem", "sys", "--sysroot=/nowhere-at-all", "a.c"]);
4390 let dirs: Vec<&str> = opts.search.dirs().iter().filter_map(|d| d.path.to_str()).collect();
4391 assert_eq!(dirs, ["sys", runtime::DIR]);
4392 }
4393
4394 #[test]
4395 fn a_cross_compile_reads_the_targets_own_headers_rather_than_the_ones_next_door() {
4396 // The target is not the machine this test runs on wherever it runs, so the answer is the
4397 // same on all of them: the libc's two include directories for that target, the kernel's
4398 // two, and nothing from here. A header read from here is the quiet failure of section 8.5, a
4399 // program that builds on the build machine and is wrong everywhere else.
4400 let (opts, _) = compile(&["--target=riscv64-linux-musl", "-c", "a.c"]);
4401 let dirs: Vec<&std::path::Path> =
4402 opts.search.dirs().iter().map(|d| d.path.as_path()).collect();
4403 let root = cache::dir().join("sysroots").join("riscv64-linux-musl");
4404 let kernel = cache::dir().join("kernel-headers");
4405 assert_eq!(dirs.len(), 5, "{dirs:?}");
4406 assert_eq!(dirs[0], std::path::Path::new(runtime::DIR));
4407 assert_eq!(dirs[1], root.join("include").join("riscv64"));
4408 assert_eq!(dirs[2], root.join("include").join("generic"));
4409 // The kernel's, which are beside the sysroots rather than inside one, because every target
4410 // that shares an architecture reads the same files.
4411 assert_eq!(dirs[3], kernel.join("riscv"));
4412 assert_eq!(dirs[4], kernel.join("generic"));
4413 }
4414
4415 #[test]
4416 fn a_cross_compile_to_something_that_is_not_linux_reads_no_kernel_headers() {
4417 // The other side of the same answer. Windows has its own system headers and no `linux/` at
4418 // all, so the list is the libc's own and the question never arises, which is the `None` that
4419 // `link::cross_kernel` returns rather than a directory nothing would be found in.
4420 //
4421 // The libc's own is one directory rather than two here, because mingw-w64 publishes a single
4422 // header tree for every architecture and `Sysroot::splits_by_arch` says so.
4423 let (opts, _) = compile(&["--target=x86_64-pc-windows-gnu", "-c", "a.c"]);
4424 let dirs: Vec<&std::path::Path> =
4425 opts.search.dirs().iter().map(|d| d.path.as_path()).collect();
4426 assert_eq!(dirs.len(), 2, "{dirs:?}");
4427 assert!(!dirs.iter().any(|dir| dir.ends_with("kernel-headers")), "{dirs:?}");
4428 }
4429
4430 #[test]
4431 fn the_glibc_version_macro_goes_with_the_bundled_tree_and_with_nothing_else() {
4432 // One tree serves every glibc release, so the release is what the target supplies, and the
4433 // condition is the same one that chose the directories. A host glibc and a tree somebody
4434 // named both define `__GLIBC_MINOR__` in their own `features.h`, and two definitions with
4435 // different values is a warning on every compilation of every file.
4436 //
4437 // The architecture is chosen against this machine's rather than written down, because the
4438 // bundled tree is only in effect for a target that is not this machine. The first version of
4439 // this test said x86_64-linux-gnu, which is a cross compile on a mac and this machine on a
4440 // Linux runner, so it passed here and failed there.
4441 let gnu = format!("--target={}-linux-gnu", cross_arch());
4442 let (bundled, _) = compile(&[&gnu, "-c", "a.c"]);
4443 assert_eq!(bundled.glibc_minor, Some(44));
4444 let pin = format!("{gnu}.2.28");
4445 let (pinned, _) = compile(&[&pin, "-c", "a.c"]);
4446 assert_eq!(pinned.glibc_minor, Some(28));
4447
4448 let (named, _) = compile(&[&gnu, "--sysroot=/nowhere-at-all", "-c", "a.c"]);
4449 assert_eq!(named.glibc_minor, None);
4450 let (none, _) = compile(&[&gnu, "-nostdinc", "-c", "a.c"]);
4451 assert_eq!(none.glibc_minor, None);
4452 let musl = format!("--target={}-linux-musl", cross_arch());
4453 let (musl, _) = compile(&[&musl, "-c", "a.c"]);
4454 assert_eq!(musl.glibc_minor, None);
4455
4456 // And this machine's own target gets nothing, whatever this machine is, because its headers
4457 // come from the machine and its own `features.h` defines the macro. On a glibc Linux box
4458 // that is the case this test had backwards; on a mac it is true for the other reason, which
4459 // is that Darwin is not a glibc target at all.
4460 if let Some(host) = Triple::host() {
4461 let native = format!("--target={}", host.tuple());
4462 let (native, _) = compile(&[&native, "-c", "a.c"]);
4463 assert_eq!(native.glibc_minor, None);
4464 }
4465 }
4466
4467 #[test]
4468 fn a_pinned_release_on_this_machines_own_target_reads_the_bundled_tree() {
4469 // The end to end half of the answer in `link::cross_for`. A release named for this machine's
4470 // own target is a cross compile, so the headers are the bundled tree's and the macro says
4471 // what was asked for rather than what this machine has.
4472 //
4473 // Only on a glibc box, because a release is a glibc release: a mac has no `__GLIBC_MINOR__`
4474 // to get wrong and nothing to pin. That makes this a test the Linux runners carry, which is
4475 // where the case lives.
4476 let Some(host) = Triple::host() else { return };
4477 if host.env != rucc_target::Env::Gnu {
4478 return;
4479 }
4480 let pin = format!("--target={}.2.28", host.tuple());
4481 let (opts, _) = compile(&[&pin, "-c", "a.c"]);
4482 assert_eq!(opts.glibc_minor, Some(28));
4483 let root = cache::dir().join("sysroots").join(format!("{}.2.28", host.tuple()));
4484 let dirs: Vec<&std::path::Path> =
4485 opts.search.dirs().iter().map(|d| d.path.as_path()).collect();
4486 assert!(dirs.iter().any(|dir| dir.starts_with(&root)), "{dirs:?}");
4487 // And nothing of this machine's, which is the failure this was: a program compiled against
4488 // 2.44 declarations and told it was 2.28.
4489 assert!(!dirs.iter().any(|dir| *dir == std::path::Path::new("/usr/include")), "{dirs:?}");
4490 }
4491
4492 /// An architecture that is not this machine's, out of the three the driver has targets for.
4493 ///
4494 /// A test about the bundled sysroot has to name a target that is not the host, because a target
4495 /// that is the host reads the host's own headers and libraries. Asking which machine this is
4496 /// beats picking a row and hoping, and it is two lines.
4497 fn cross_arch() -> &'static str {
4498 match Triple::host().map(|host| host.arch) {
4499 Some(rucc_target::Arch::X86_64) => "aarch64",
4500 _ => "x86_64",
4501 }
4502 }
4503
4504 #[test]
4505 fn a_glibc_newer_than_the_bundled_tree_is_refused_by_name() {
4506 // Both versions in the message, because the two things a person can do about it are pin a
4507 // release the tree has and name a sysroot that has the one they asked for, and neither is a
4508 // choice they can make without knowing which release the tree is.
4509 //
4510 // Not this machine's architecture, for the reason the test above gives: the refusal is about
4511 // the bundled tree, and the bundled tree is not what a target that is this machine reads.
4512 let target = format!("--target={}-linux-gnu.2.99", cross_arch());
4513 let message = refused(&[&target, "-c", "a.c"]);
4514 assert!(message.contains("asked for glibc 2.99"), "{message}");
4515 assert!(message.contains("bundled headers are glibc 2.44"), "{message}");
4516 assert!(message.contains("--sysroot"), "{message}");
4517 }
4518
4519 #[test]
4520 fn a_sysroot_the_user_named_is_still_what_a_cross_compile_reads() {
4521 // The tree somebody assembled beats the one we would build, on the headers as on the
4522 // libraries. It is empty here, which is why the list comes out short: the directories under
4523 // it are checked for rather than assumed, and a tree that is not there offers nothing.
4524 let (opts, _) =
4525 compile(&["--target=riscv64-linux-musl", "--sysroot=/nowhere-at-all", "-c", "a.c"]);
4526 let dirs: Vec<&std::path::Path> =
4527 opts.search.dirs().iter().map(|d| d.path.as_path()).collect();
4528 assert_eq!(dirs, [std::path::Path::new(runtime::DIR)]);
4529 }
4530
4531 #[test]
4532 fn dash_i_dash_moves_the_bracket_directories_into_the_quoted_chain() {
4533 let (opts, _) =
4534 compile(&["-Iinc1", "-iquote", "inc2", "-I-", "-Iinc3", "-nostdinc", "a.c"]);
4535 let dirs: Vec<&str> = opts.search.dirs().iter().filter_map(|d| d.path.to_str()).collect();
4536 assert_eq!(dirs, ["inc1", "inc2", "inc3"]);
4537 // An angled include sees only what came after the flag.
4538 assert_eq!(opts.search.start(IncludeForm::Angled), 2);
4539 assert!(!opts.search.searches_current_dir());
4540 }
4541
4542 #[test]
4543 fn the_prefix_flags_stick_what_iprefix_said_on_the_front_of_what_follows_it() {
4544 let (opts, _) = compile(&[
4545 "-iprefix",
4546 "/tools/",
4547 "-iwithprefix",
4548 "late",
4549 "-iwithprefixbefore",
4550 "early",
4551 "-iprefix",
4552 "/other/",
4553 "-iwithprefix",
4554 "last",
4555 "-nostdinc",
4556 "a.c",
4557 ]);
4558 let dirs: Vec<&str> = opts.search.dirs().iter().filter_map(|d| d.path.to_str()).collect();
4559 // `-iwithprefixbefore` is an `-I` and the other two are `-isystem`, which is where GCC
4560 // puts them rather than where its manual says it does.
4561 assert_eq!(dirs, ["/tools/early", "/tools/late", "/other/last"]);
4562 assert!(!opts.search.dirs()[0].is_system);
4563 assert!(opts.search.dirs()[1].is_system);
4564 }
4565
4566 #[test]
4567 fn the_files_named_on_the_command_line_keep_their_order_and_which_flag_named_them() {
4568 let (opts, _) =
4569 compile(&["-include", "one.h", "-imacros", "two.h", "-include", "3.h", "a.c"]);
4570 let names: Vec<&str> = opts.preincludes.iter().map(|p| p.name.as_str()).collect();
4571 assert_eq!(names, ["one.h", "two.h", "3.h"]);
4572 assert_eq!(opts.preincludes.iter().filter(|p| p.macros_only).count(), 1);
4573 }
4574
4575 #[test]
4576 fn nostdinc_takes_the_compilers_own_headers_off_the_path() {
4577 let (opts, _) = compile(&["-Ii", "-nostdinc", "a.c"]);
4578 let dirs: Vec<&str> = opts.search.dirs().iter().filter_map(|d| d.path.to_str()).collect();
4579 assert_eq!(dirs, ["i"]);
4580 }
4581
4582 #[test]
4583 fn the_dialect_flags_set_the_language_and_the_extensions_separately() {
4584 let (opts, _) = compile(&["-std=gnu11", "a.c"]);
4585 assert_eq!(opts.std, Std::C11);
4586 assert!(opts.gnu_extensions);
4587
4588 let (opts, _) = compile(&["-std=iso9899:1999", "a.c"]);
4589 assert_eq!(opts.std, Std::C99);
4590 assert!(!opts.gnu_extensions);
4591
4592 let (opts, _) = compile(&["-ansi", "a.c"]);
4593 assert_eq!(opts.std, Std::C89);
4594 assert!(!opts.gnu_extensions);
4595
4596 let (opts, _) = compile(&["-std=gnu2y", "a.c"]);
4597 assert_eq!(opts.std, Std::C2y);
4598 assert!(opts.gnu_extensions);
4599
4600 let e = parse_args(&args(&["-std=c94jr", "a.c"])).unwrap_err();
4601 assert!(e.message.contains("unknown dialect"), "{}", e.message);
4602 }
4603
4604 #[test]
4605 fn the_dump_letters_are_a_family_and_everything_else_beginning_with_d_is_not() {
4606 let (opts, _) = compile(&["-dM", "a.c"]);
4607 assert!(opts.dumps.macros);
4608
4609 // Packed, the way GCC takes them, and a letter in the family we have not written yet
4610 // is accepted and does nothing rather than failing a build.
4611 let (opts, _) = compile(&["-dDM", "a.c"]);
4612 assert!(opts.dumps.macros);
4613 let (opts, _) = compile(&["-dD", "a.c"]);
4614 assert!(!opts.dumps.macros);
4615
4616 let (opts, _) = compile(&["a.c"]);
4617 assert!(!opts.dumps.any());
4618
4619 // `-dumpversion` is a different flag that happens to start the same way, and it is read
4620 // as itself rather than as a dump of nothing.
4621 assert_eq!(printed(&["-dumpversion", "a.c"]), VERSION);
4622 }
4623
4624 #[test]
4625 fn the_gcc_version_claimed_is_a_flag_and_the_short_spellings_are_the_ones_people_write() {
4626 let (opts, _) = compile(&["a.c"]);
4627 assert_eq!(
4628 opts.gnuc,
4629 GnucVersion { major: 16, minor: 0, patch: 0 },
4630 "the release this compiler is written against, and the earliest one of that series"
4631 );
4632
4633 let (opts, _) = compile(&["-fgnuc-version=15.1.0", "a.c"]);
4634 assert_eq!(opts.gnuc, GnucVersion { major: 15, minor: 1, patch: 0 });
4635
4636 // A missing component is zero. `gcc -dumpversion` says `15` on a release with no
4637 // patchlevel and a harness that pastes that back has to be understood.
4638 let (opts, _) = compile(&["-fgnuc-version=15", "a.c"]);
4639 assert_eq!(opts.gnuc, GnucVersion { major: 15, minor: 0, patch: 0 });
4640
4641 let (opts, _) = compile(&["-fgnuc-version=13.2", "a.c"]);
4642 assert_eq!(opts.gnuc, GnucVersion { major: 13, minor: 2, patch: 0 });
4643
4644 let e = parse_args(&args(&["-fgnuc-version=15.x", "a.c"])).unwrap_err();
4645 assert!(e.message.contains("minor that is not a number"), "{}", e.message);
4646
4647 let e = parse_args(&args(&["-fgnuc-version=1.2.3.4", "a.c"])).unwrap_err();
4648 assert!(e.message.contains("more than three"), "{}", e.message);
4649 }
4650
4651 #[test]
4652 fn pedantic_has_two_spellings_and_is_not_the_same_knob_as_the_dialect() {
4653 let (opts, _) = compile(&["-std=c17", "-pedantic", "a.c"]);
4654 assert!(opts.pedantic);
4655 assert_eq!(opts.std, Std::C17);
4656
4657 // The `-W` family's name for it, which is what a build that groups its warning flags
4658 // tends to write.
4659 let (opts, _) = compile(&["-Wpedantic", "a.c"]);
4660 assert!(opts.pedantic);
4661
4662 let (opts, _) = compile(&["-std=c17", "a.c"]);
4663 assert!(!opts.pedantic, "a dialect on its own does not diagnose an extension");
4664 }
4665
4666 #[test]
4667 fn dash_p_and_dash_ffreestanding_reach_the_options() {
4668 let (opts, _) = compile(&["-E", "-P", "-ffreestanding", "a.c"]);
4669 assert!(!opts.line_markers);
4670 assert!(!opts.hosted);
4671 assert_eq!(opts.emit, EmitKind::Preprocessed);
4672 }
4673
4674 /// The two ways a build says it means its own function by a name the C library also has.
4675 ///
4676 /// `-fno-builtin` is all of them and `-fno-builtin-<name>` is one, and the second is what a
4677 /// build writes when it means its own `memcpy` and the library's everything else. The name is
4678 /// kept as it was written and not checked against anything, because a program is allowed to
4679 /// mean something by a name this compiler has never heard of.
4680 #[test]
4681 fn the_builtin_flags_are_read_in_both_directions_and_one_name_at_a_time() {
4682 let (opts, _) = compile(&["-c", "a.c"]);
4683 assert!(opts.builtins, "a library name means the library function by default");
4684 assert!(opts.no_builtin.is_empty());
4685
4686 let (opts, _) = compile(&["-c", "-fno-builtin", "a.c"]);
4687 assert!(!opts.builtins);
4688
4689 let (opts, _) = compile(&["-c", "-fno-builtin", "-fbuiltin", "a.c"]);
4690 assert!(opts.builtins, "the last mention decides");
4691
4692 let (opts, _) = compile(&["-c", "-fno-builtin-memcpy", "-fno-builtin-nonesuch", "a.c"]);
4693 assert!(opts.builtins, "one name is not the family");
4694 assert_eq!(opts.no_builtin, vec!["memcpy".to_owned(), "nonesuch".to_owned()]);
4695 }
4696
4697 /// `-fvisibility=`, which is on every cmake project that cares about which names it exports
4698 /// and which was refused as an unknown option until now.
4699 ///
4700 /// Four spellings and three answers. `internal` is hidden plus a promise about never taking
4701 /// the address across a component boundary, and nothing derives anything from that promise
4702 /// here, so it comes out as the weaker of the two rather than as a refusal that stops a build
4703 /// over a distinction this compiler does not make.
4704 #[test]
4705 fn visibility_takes_the_four_spellings_gcc_takes_and_refuses_the_rest() {
4706 let (opts, _) = compile(&["-c", "a.c"]);
4707 assert_eq!(opts.visibility, Visibility::Default, "exported unless something says not");
4708
4709 for (written, wanted) in [
4710 ("default", Visibility::Default),
4711 ("hidden", Visibility::Hidden),
4712 ("internal", Visibility::Hidden),
4713 ("protected", Visibility::Protected),
4714 ] {
4715 let (opts, _) = compile(&["-c", &format!("-fvisibility={written}"), "a.c"]);
4716 assert_eq!(opts.visibility, wanted, "{written}");
4717 }
4718
4719 // The last mention decides, which is what every other flag of this shape does and what a
4720 // build that turns something off for one directory relies on.
4721 let (opts, _) = compile(&["-c", "-fvisibility=hidden", "-fvisibility=default", "a.c"]);
4722 assert_eq!(opts.visibility, Visibility::Default, "the last mention decides");
4723
4724 // A spelling gcc does not take is refused rather than read as the default, because a
4725 // build that meant hidden and got exported is a library with the wrong interface and
4726 // nothing said about it anywhere.
4727 let failed = parse_args(&args(&["-fvisibility=none", "a.c"])).expect_err("refused");
4728 assert!(failed.to_string().contains("is not a visibility"), "{failed}");
4729 }
4730
4731 /// `-ffp-contract=`, which is the one flag in the floating point group that is kept rather than
4732 /// described, and the values are gcc 16's three.
4733 #[test]
4734 fn how_far_a_multiply_and_an_addition_may_be_fused_is_asked_for() {
4735 let (opts, _) = compile(&["-c", "a.c"]);
4736 assert_eq!(opts.fp_contract, Contract::Off, "a licence nobody granted is not assumed");
4737
4738 for (written, wanted) in
4739 [("off", Contract::Off), ("on", Contract::On), ("fast", Contract::Fast)]
4740 {
4741 let (opts, _) = compile(&["-c", &format!("-ffp-contract={written}"), "a.c"]);
4742 assert_eq!(opts.fp_contract, wanted, "{written}");
4743 }
4744
4745 let (opts, _) = compile(&["-c", "-ffp-contract=fast", "-ffp-contract=off", "a.c"]);
4746 assert_eq!(opts.fp_contract, Contract::Off, "the last mention decides");
4747
4748 // Refused rather than read as one of the three, because a build that asked for no fusing
4749 // and was given the default would be one whose numbers change and whose command line says
4750 // they should not. gcc refuses the same spellings and names the same three in its message.
4751 for bad in ["-ffp-contract=none", "-ffp-contract=", "-ffp-contract=Fast"] {
4752 let failed = parse_args(&args(&[bad, "a.c"])).expect_err("refused");
4753 assert!(failed.to_string().contains("is not a contraction"), "{bad}: {failed}");
4754 }
4755
4756 // And the other one that takes a value, which is taken and kept nowhere: every operation
4757 // here is computed in the type it was written in, so `standard` is what happens and the
4758 // other two are permission to do something this does not do.
4759 let failed = parse_args(&args(&["-fexcess-precision=long", "a.c"])).expect_err("refused");
4760 assert!(failed.to_string().contains("is not an excess precision"), "{failed}");
4761 }
4762
4763 /// The four prefix mapping flags, which are what a distribution passes to get the same bytes
4764 /// out of `/build/pkg-1.2` and out of `/home/someone/pkg-1.2`. Three lists rather than one
4765 /// because gcc has three, and `-ffile-prefix-map=` is the three of them at once.
4766 #[test]
4767 fn a_prefix_mapping_flag_goes_on_the_list_its_spelling_names() {
4768 let (opts, _) = compile(&["-c", "a.c"]);
4769 assert!(opts.prefix_map.macros.is_empty(), "nothing is rewritten unless it is asked for");
4770 assert!(opts.prefix_map.debug.is_empty(), "nor here");
4771 assert!(opts.prefix_map.profile.is_empty(), "nor here");
4772
4773 let (opts, _) = compile(&["-c", "-fmacro-prefix-map=/build=.", "a.c"]);
4774 assert_eq!(opts.prefix_map.macros.apply("/build/a.c"), "./a.c", "the one it names");
4775 assert!(opts.prefix_map.debug.is_empty(), "and not the two it does not");
4776
4777 let (opts, _) = compile(&["-c", "-fdebug-prefix-map=/build=.", "a.c"]);
4778 assert_eq!(opts.prefix_map.debug.apply("/build/a.c"), "./a.c", "the one it names");
4779 assert!(opts.prefix_map.macros.is_empty(), "and not the two it does not");
4780
4781 let (opts, _) = compile(&["-c", "-fprofile-prefix-map=/build=.", "a.c"]);
4782 assert_eq!(opts.prefix_map.profile.apply("/build/a.c"), "./a.c", "the one it names");
4783 assert!(opts.prefix_map.macros.is_empty(), "and not the two it does not");
4784
4785 let (opts, _) = compile(&["-c", "-ffile-prefix-map=/build=.", "a.c"]);
4786 for list in [&opts.prefix_map.macros, &opts.prefix_map.debug, &opts.prefix_map.profile] {
4787 assert_eq!(list.apply("/build/a.c"), "./a.c", "all three at once");
4788 }
4789
4790 // Every mention is kept and the last one that matches wins, unlike the flags above whose
4791 // last mention replaces the earlier ones. A build writes one of these per source root and
4792 // expects all of them to be in force, which is the whole point of a list.
4793 let (opts, _) =
4794 compile(&["-c", "-ffile-prefix-map=/a=one", "-ffile-prefix-map=/b=two", "a.c"]);
4795 assert_eq!(opts.prefix_map.macros.apply("/a/x.c"), "one/x.c", "the earlier one still acts");
4796 assert_eq!(opts.prefix_map.macros.apply("/b/x.c"), "two/x.c", "and so does the later one");
4797
4798 // An argument with no `=` is refused rather than ignored, because a build whose paths were
4799 // meant to be rewritten and were not is one that ships the build directory's name and says
4800 // nothing about it. gcc refuses the same thing.
4801 for bad in ["-fmacro-prefix-map=nope", "-ffile-prefix-map=", "-fdebug-prefix-map=/build"] {
4802 let failed = parse_args(&args(&[bad, "a.c"])).expect_err("refused");
4803 assert!(failed.to_string().contains("is not a rewrite for"), "{bad}: {failed}");
4804 }
4805 }
4806
4807 /// `-ffunction-sections` and `-fdata-sections`, which are what make `--gc-sections` able to
4808 /// drop anything: a linker can leave out a section nothing reaches and cannot leave out half of
4809 /// one. A kernel and an embedded image are both linked that way.
4810 ///
4811 /// Two flags rather than one because gcc has two, and a build that asks for one of them and not
4812 /// the other is a build that measured something: splitting the code is nearly free at link time
4813 /// and splitting the data can defeat the linker's ordering of what is next to what.
4814 #[test]
4815 fn a_section_per_function_and_a_section_per_variable_are_asked_for_one_at_a_time() {
4816 let (opts, _) = compile(&["-c", "a.c"]);
4817 assert!(!opts.function_sections, "one text section unless something says otherwise");
4818 assert!(!opts.data_sections);
4819
4820 let (opts, _) = compile(&["-c", "-ffunction-sections", "a.c"]);
4821 assert!(opts.function_sections);
4822 assert!(!opts.data_sections, "one flag is not the other");
4823
4824 let (opts, _) = compile(&["-c", "-fdata-sections", "a.c"]);
4825 assert!(opts.data_sections);
4826 assert!(!opts.function_sections);
4827
4828 // Both directions taken, and the off one is what happens anyway rather than a refusal,
4829 // since a build that writes it is asking for the default.
4830 let (opts, _) = compile(&[
4831 "-c",
4832 "-ffunction-sections",
4833 "-fno-function-sections",
4834 "-fdata-sections",
4835 "-fno-data-sections",
4836 "a.c",
4837 ]);
4838 assert!(!opts.function_sections, "the last mention decides");
4839 assert!(!opts.data_sections, "the last mention decides");
4840 }
4841
4842 /// `-fgnu89-inline`, which is off by default and is not implied by anything on the command
4843 /// line, since the dialect asks for GNU's reading further in rather than through this.
4844 #[test]
4845 fn gnu89_inline_is_off_until_it_is_asked_for_and_the_last_mention_decides() {
4846 let (opts, _) = compile(&["-c", "a.c"]);
4847 assert!(!opts.gnu89_inline, "C's reading of inline by default");
4848
4849 let (opts, _) = compile(&["-c", "-fgnu89-inline", "a.c"]);
4850 assert!(opts.gnu89_inline);
4851
4852 let (opts, _) = compile(&["-c", "-fgnu89-inline", "-fno-gnu89-inline", "a.c"]);
4853 assert!(!opts.gnu89_inline, "the last mention decides");
4854
4855 // The C89 dialects are under GNU's reading whether this was written or not, so the flag
4856 // stays off there and the dialect is what the checker and the macro set both ask. That is
4857 // also why `-std=c89 -fno-gnu89-inline` needs no diagnostic: it asks for the reading the
4858 // dialect already has. gcc refuses that command line, which is measured in the issue.
4859 let (opts, _) = compile(&["-c", "-std=c89", "a.c"]);
4860 assert!(!opts.gnu89_inline);
4861 }
4862
4863 /// Both spellings of both frame flags, since a build that wants one usually writes the
4864 /// other beside it for the one file that has to be compiled the ordinary way.
4865 #[test]
4866 fn the_two_frame_flags_are_read_in_both_directions() {
4867 let (opts, _) = compile(&["-c", "a.c"]);
4868 assert!(!opts.frame_pointer, "gcc omits it above -O0 and so does this");
4869 assert!(opts.red_zone, "the psABI has one and nothing said not to use it");
4870
4871 let (opts, _) = compile(&["-c", "-fno-omit-frame-pointer", "-mno-red-zone", "a.c"]);
4872 assert!(opts.frame_pointer);
4873 assert!(!opts.red_zone);
4874
4875 let (opts, _) = compile(&[
4876 "-c",
4877 "-fno-omit-frame-pointer",
4878 "-fomit-frame-pointer",
4879 "-mno-red-zone",
4880 "-mred-zone",
4881 "a.c",
4882 ]);
4883 assert!(!opts.frame_pointer, "the last one wins, as it does in gcc");
4884 assert!(opts.red_zone);
4885 }
4886
4887 /// Four flags rather than one with an argument, which is how gcc spells them, and the negative
4888 /// spelled three ways because a build that turns one off writes whichever it turned on.
4889 #[test]
4890 fn the_stack_protector_is_four_flags_and_the_last_one_wins() {
4891 let (opts, _) = compile(&["-c", "a.c"]);
4892 assert_eq!(opts.protector, Protector::None, "gcc protects nothing unless it was asked");
4893
4894 for (flag, want) in [
4895 ("-fstack-protector", Protector::Buffers),
4896 ("-fstack-protector-strong", Protector::Strong),
4897 ("-fstack-protector-all", Protector::All),
4898 ] {
4899 let (opts, _) = compile(&["-c", flag, "a.c"]);
4900 assert_eq!(opts.protector, want, "{flag}");
4901 }
4902
4903 // What a package build does: the strong one in the global flags and one directory that
4904 // cannot have a protector turning it off on the line after.
4905 for off in ["-fno-stack-protector", "-fno-stack-protector-strong"] {
4906 let (opts, _) = compile(&["-c", "-fstack-protector-strong", off, "a.c"]);
4907 assert_eq!(opts.protector, Protector::None, "{off}");
4908 }
4909 let (opts, _) = compile(&["-c", "-fno-stack-protector", "-fstack-protector-all", "a.c"]);
4910 assert_eq!(opts.protector, Protector::All, "the last one wins either way round");
4911 }
4912
4913 /// A switch rather than a level, because how a frame is taken is one question and which
4914 /// functions get a canary is another, and gcc spells it that way for the same reason.
4915 #[test]
4916 fn taking_a_frame_a_page_at_a_time_is_off_until_it_is_asked_for() {
4917 let (opts, _) = compile(&["-c", "a.c"]);
4918 assert!(!opts.stack_clash, "gcc takes a frame in one subtraction unless it was asked");
4919
4920 let (opts, _) = compile(&["-c", "-fstack-clash-protection", "a.c"]);
4921 assert!(opts.stack_clash);
4922
4923 // The same shape a package build uses for the protector: on in the global flags and off
4924 // for the one directory that cannot have it.
4925 let (opts, _) =
4926 compile(&["-c", "-fstack-clash-protection", "-fno-stack-clash-protection", "a.c"]);
4927 assert!(!opts.stack_clash);
4928 let (opts, _) =
4929 compile(&["-c", "-fno-stack-clash-protection", "-fstack-clash-protection", "a.c"]);
4930 assert!(opts.stack_clash, "the last one wins either way round");
4931
4932 // The two are independent, since one is about the frame and the other about the function.
4933 let (opts, _) =
4934 compile(&["-c", "-fstack-clash-protection", "-fstack-protector-strong", "a.c"]);
4935 assert!(opts.stack_clash);
4936 assert_eq!(opts.protector, Protector::Strong);
4937 }
4938
4939 /// One flag with an argument rather than a family of spellings, because what it asks about is
4940 /// which of the two edges of a control flow transfer is checked and the two are not separate
4941 /// questions to the hardware.
4942 #[test]
4943 fn which_control_flow_edges_are_checked_is_asked_for_by_name() {
4944 let (opts, _) = compile(&["-c", "a.c"]);
4945 assert_eq!(opts.control, Control::None, "gcc's default on the targets this compiler has");
4946
4947 for (arg, want) in [
4948 ("-fcf-protection", Control::Full),
4949 ("-fcf-protection=full", Control::Full),
4950 ("-fcf-protection=branch", Control::Branch),
4951 ("-fcf-protection=return", Control::Return),
4952 ("-fcf-protection=none", Control::None),
4953 ("-fcf-protection=check", Control::Check),
4954 ] {
4955 let (opts, _) = compile(&["-c", arg, "a.c"]);
4956 assert_eq!(opts.control, want, "{arg}");
4957 }
4958
4959 // The shape a package build uses: on in the global flags and off for the one directory
4960 // that cannot have it, whichever of the two spellings of off it reaches for.
4961 let (opts, _) = compile(&["-c", "-fcf-protection=full", "-fno-cf-protection", "a.c"]);
4962 assert_eq!(opts.control, Control::None);
4963 let (opts, _) = compile(&["-c", "-fno-cf-protection", "-fcf-protection=branch", "a.c"]);
4964 assert_eq!(opts.control, Control::Branch, "the last one wins either way round");
4965 }
4966
4967 /// The profiler is asked for by two spellings, and where its hook goes by two more.
4968 ///
4969 /// The two halves are separate on purpose. `-mfentry` on its own says where a call would go and
4970 /// asks for no call, which is what gcc does with it, and a build system that sets it globally
4971 /// and asks for the profile per directory needs that to be true rather than an error.
4972 ///
4973 /// The link is asserted alongside, because the flag changes it too and a build that compiled
4974 /// with it and linked without it is a program that calls the hook everywhere and never writes a
4975 /// profile.
4976 #[test]
4977 fn the_profiler_and_where_its_hook_goes_are_two_separate_questions() {
4978 let (opts, _) = compile(&["-c", "a.c"]);
4979 assert!(!opts.profile);
4980 assert_eq!(opts.hook, Hook::Platform, "neither was named, so the target decides");
4981
4982 for arg in ["-pg", "-p"] {
4983 let (opts, _) = compile(&["-c", arg, "a.c"]);
4984 assert!(opts.profile, "{arg}");
4985 let (link, _) = linking(&[arg, "a.c"]);
4986 assert!(link.profile, "{arg} changes the link as well");
4987 }
4988
4989 for (arg, want) in [("-mfentry", Hook::Early), ("-mno-fentry", Hook::Late)] {
4990 let (opts, _) = compile(&["-c", arg, "a.c"]);
4991 assert_eq!(opts.hook, want, "{arg}");
4992 assert!(!opts.profile, "{arg} asks for no call of its own");
4993 }
4994
4995 let (opts, _) = compile(&["-c", "-mfentry", "-mno-fentry", "-pg", "a.c"]);
4996 assert_eq!(opts.hook, Hook::Late, "the last one wins");
4997 assert!(opts.profile);
4998 }
4999
5000 /// How much room a patcher is promised, which is one number or two.
5001 ///
5002 /// A command line that did not ask is asserted alongside, because the flag has to be written to
5003 /// mean anything and a build that reserved room nobody asked for would grow every function in
5004 /// it for nothing.
5005 #[test]
5006 fn the_room_a_patcher_is_promised_is_a_number_of_bytes_and_where_they_go() {
5007 let (opts, _) = compile(&["-c", "a.c"]);
5008 assert_eq!(opts.patchable, Patchable::default());
5009 assert!(!opts.patchable.any(), "nothing is reserved unless it was asked for");
5010
5011 let (opts, _) = compile(&["-c", "-fpatchable-function-entry=16", "a.c"]);
5012 assert_eq!(opts.patchable, Patchable { total: 16, before: 0 });
5013
5014 let (opts, _) = compile(&["-c", "-fpatchable-function-entry=5,3", "a.c"]);
5015 assert_eq!(opts.patchable, Patchable { total: 5, before: 3 });
5016 assert_eq!(opts.patchable.after(), 2);
5017
5018 // The last one wins, which is what every other flag of this shape does and what a build
5019 // that adds one to a command line it did not write is relying on.
5020 let (opts, _) = compile(&[
5021 "-c",
5022 "-fpatchable-function-entry=5,3",
5023 "-fpatchable-function-entry=2",
5024 "a.c",
5025 ]);
5026 assert_eq!(opts.patchable, Patchable { total: 2, before: 0 });
5027 }
5028
5029 /// And a request nothing could satisfy is refused rather than rounded into one that can be.
5030 #[test]
5031 fn room_in_front_of_the_label_that_is_more_than_the_room_asked_for_is_refused() {
5032 for arg in ["-fpatchable-function-entry=1,2", "-fpatchable-function-entry=x"] {
5033 let e = parse_args(&args(&["-c", arg, "a.c"])).unwrap_err();
5034 assert!(e.message.contains("is not an amount of room to reserve"), "{}", e.message);
5035 }
5036 }
5037
5038 /// What wraps rather than being undefined, which is two questions and three flags.
5039 ///
5040 /// The older flag is the pair of the newer two, which is gcc's own reading of it, so a build
5041 /// that writes `-fno-strict-overflow` gets both and a build that writes one of the others gets
5042 /// only what it asked for.
5043 #[test]
5044 fn what_overflows_rather_than_being_undefined_is_asked_for_two_ways() {
5045 let (opts, _) = compile(&["-c", "a.c"]);
5046 assert_eq!(opts.wrapping, Wrapping::NONE, "nothing wraps unless it was asked for");
5047
5048 let (opts, _) = compile(&["-c", "-fwrapv", "a.c"]);
5049 assert_eq!(opts.wrapping, Wrapping { signed: true, pointer: false, trap: false });
5050
5051 let (opts, _) = compile(&["-c", "-fwrapv-pointer", "a.c"]);
5052 assert_eq!(opts.wrapping, Wrapping { signed: false, pointer: true, trap: false });
5053
5054 let (opts, _) = compile(&["-c", "-fno-strict-overflow", "a.c"]);
5055 assert_eq!(opts.wrapping, Wrapping::ALL);
5056
5057 // And the last one wins, in both directions. A build that turns one of these on globally
5058 // and off for one directory is relying on that, and so is one that writes the pair and
5059 // then takes half of it back.
5060 let (opts, _) = compile(&["-c", "-fwrapv", "-fno-wrapv", "a.c"]);
5061 assert_eq!(opts.wrapping, Wrapping::NONE);
5062
5063 let (opts, _) = compile(&["-c", "-fno-strict-overflow", "-fstrict-overflow", "a.c"]);
5064 assert_eq!(opts.wrapping, Wrapping::NONE);
5065
5066 let (opts, _) = compile(&["-c", "-fno-strict-overflow", "-fno-wrapv-pointer", "a.c"]);
5067 assert_eq!(opts.wrapping, Wrapping { signed: true, pointer: false, trap: false });
5068 }
5069
5070 /// And the other answer to the signed question cannot be held at the same time as the first.
5071 ///
5072 /// A program cannot both wrap and stop, so writing both is writing a contradiction, and gcc
5073 /// resolves it by letting the last one win rather than by reporting anything. That was measured
5074 /// against gcc 16 rather than read out of the manual, which says nothing about it: `-ftrapv
5075 /// -fwrapv` emits no checked calls and `-fwrapv -ftrapv` emits them.
5076 #[test]
5077 fn a_signed_overflow_that_stops_is_the_other_answer_and_not_a_third_one() {
5078 let (opts, _) = compile(&["-c", "-ftrapv", "a.c"]);
5079 assert_eq!(opts.wrapping, Wrapping { signed: false, pointer: false, trap: true });
5080
5081 let (opts, _) = compile(&["-c", "-fwrapv", "-ftrapv", "a.c"]);
5082 assert_eq!(opts.wrapping, Wrapping { signed: false, pointer: false, trap: true });
5083
5084 let (opts, _) = compile(&["-c", "-ftrapv", "-fwrapv", "a.c"]);
5085 assert_eq!(opts.wrapping, Wrapping { signed: true, pointer: false, trap: false });
5086
5087 let (opts, _) = compile(&["-c", "-ftrapv", "-fno-strict-overflow", "a.c"]);
5088 assert_eq!(opts.wrapping, Wrapping::ALL);
5089
5090 let (opts, _) = compile(&["-c", "-ftrapv", "-fno-trapv", "a.c"]);
5091 assert_eq!(opts.wrapping, Wrapping::NONE);
5092
5093 // And the flag that says what may be assumed says nothing about what happens, so it leaves
5094 // this alone where it takes the wrapping away. gcc does the same.
5095 let (opts, _) = compile(&["-c", "-ftrapv", "-fstrict-overflow", "a.c"]);
5096 assert_eq!(opts.wrapping, Wrapping { signed: false, pointer: false, trap: true });
5097 }
5098
5099 /// What a plain `char` is, which is four spellings of two answers and nothing by default.
5100 ///
5101 /// Nothing is the target's own answer and has to stay distinct from both of the others, since
5102 /// the same command line means a signed `char` on x86-64 and an unsigned one on Linux's arm64.
5103 /// The negative spellings are the other flag rather than a way of asking for the default, which
5104 /// was measured against gcc 16: `-fno-signed-char` defines `__CHAR_UNSIGNED__` and
5105 /// `-fno-unsigned-char` does not.
5106 #[test]
5107 fn the_signedness_of_a_plain_char_is_asked_for_in_four_ways() {
5108 let (opts, _) = compile(&["-c", "a.c"]);
5109 assert_eq!(opts.char_signed, None);
5110
5111 for flag in ["-fsigned-char", "-fno-unsigned-char"] {
5112 let (opts, _) = compile(&["-c", flag, "a.c"]);
5113 assert_eq!(opts.char_signed, Some(true), "{flag}");
5114 }
5115
5116 for flag in ["-funsigned-char", "-fno-signed-char"] {
5117 let (opts, _) = compile(&["-c", flag, "a.c"]);
5118 assert_eq!(opts.char_signed, Some(false), "{flag}");
5119 }
5120
5121 // And the last one wins, which is what a build that sets one globally and the other for a
5122 // directory relies on.
5123 let (opts, _) = compile(&["-c", "-funsigned-char", "-fsigned-char", "a.c"]);
5124 assert_eq!(opts.char_signed, Some(true));
5125
5126 // And what is asked for reaches the target, because that is what every other part of the
5127 // compiler asks. The triple is one whose own answer is the opposite, so a session that
5128 // ignored the flag would still read as signed here.
5129 let (opts, _) =
5130 compile(&["-c", "--target=aarch64-unknown-linux-gnu", "-fsigned-char", "a.c"]);
5131 assert!(Session::new(*opts).target.char_is_signed);
5132 let (opts, _) = compile(&["-c", "--target=aarch64-unknown-linux-gnu", "a.c"]);
5133 assert!(!Session::new(*opts).target.char_is_signed);
5134 }
5135
5136 /// And the size of an enumeration, which is one question with two spellings.
5137 #[test]
5138 fn the_smallest_enumeration_is_asked_for_and_taken_back() {
5139 let (opts, _) = compile(&["-c", "a.c"]);
5140 assert!(!opts.short_enums);
5141
5142 let (opts, _) = compile(&["-c", "-fshort-enums", "a.c"]);
5143 assert!(opts.short_enums);
5144
5145 let (opts, _) = compile(&["-c", "-fshort-enums", "-fno-short-enums", "a.c"]);
5146 assert!(!opts.short_enums);
5147
5148 let (opts, _) = compile(&["-c", "-fno-short-enums", "-fshort-enums", "a.c"]);
5149 assert!(opts.short_enums);
5150 }
5151
5152 /// And Microsoft's reading of an anonymous member, which the target answers where the command
5153 /// line said nothing. gcc's mingw build has it on and its Linux build has it off, so a header
5154 /// that closes a nameless union with a macro that expands to nothing is read the way the
5155 /// compiler that platform ships would read it.
5156 #[test]
5157 fn the_microsoft_reading_of_a_member_follows_the_target_until_it_is_asked_for() {
5158 // Named rather than left to the host, since the answer this asks for is the one a target
5159 // that is not Windows gives and on a Windows machine the host is not one of those.
5160 let (opts, _) = compile(&[LINUX, "-c", "a.c"]);
5161 assert!(!Session::new(*opts).ms_extensions());
5162
5163 let (opts, _) = compile(&["-c", "--target=x86_64-pc-windows-gnu", "a.c"]);
5164 assert!(Session::new(*opts).ms_extensions());
5165
5166 let (opts, _) = compile(&["-c", "-fms-extensions", "a.c"]);
5167 assert!(Session::new(*opts).ms_extensions());
5168
5169 let (opts, _) =
5170 compile(&["-c", "--target=x86_64-pc-windows-gnu", "-fno-ms-extensions", "a.c"]);
5171 assert!(!Session::new(*opts).ms_extensions());
5172 }
5173
5174 /// And a value nothing means is refused rather than taken for the nearest thing it looks like.
5175 ///
5176 /// `-fcf-protection=all` is the spelling somebody writes from memory, and a compiler that read
5177 /// it as `full` would be guessing, while one that let it fall through to the optimizer's `-f`
5178 /// family would report it as an unknown pass. Neither is the news the build wants.
5179 #[test]
5180 fn a_control_flow_protection_nothing_means_is_refused() {
5181 let e = parse_args(&args(&["-c", "-fcf-protection=all", "a.c"])).unwrap_err();
5182 assert!(e.message.contains("is not a control flow protection"), "{}", e.message);
5183 assert!(e.message.contains("full, branch, return, none or check"), "{}", e.message);
5184 }
5185
5186 #[test]
5187 fn the_link_flags_are_collected_apart_from_the_compilation() {
5188 let (link, _) = linking(&[
5189 "-static",
5190 "-nostartfiles",
5191 "-rdynamic",
5192 "-s",
5193 "-fuse-ld=mold",
5194 "-L/opt/lib",
5195 "-B",
5196 "/opt/tools",
5197 "a.c",
5198 ]);
5199 assert!(link.is_static);
5200 assert!(link.no_startfiles);
5201 assert!(link.export_dynamic);
5202 assert!(link.strip);
5203 assert_eq!(link.use_ld.as_deref(), Some("mold"));
5204 assert_eq!(link.search, vec![PathBuf::from("/opt/lib")]);
5205 assert_eq!(link.prefixes, vec![PathBuf::from("/opt/tools")]);
5206 }
5207
5208 #[test]
5209 fn a_comma_in_dash_wl_separates_two_arguments() {
5210 // The target is written down because the name of the object is derived from it, and `a.o`
5211 // on a Linux host is `a.obj` on a Windows one. What is under test is the splitting of the
5212 // argument, which has nothing to do with either.
5213 let (_, plan) = linking(&[LINUX, "-Wl,-rpath,/opt/lib", "-Xlinker", "--as-needed", "a.c"]);
5214 let link = plan.link.expect("expected a link step");
5215 assert_eq!(
5216 link.inputs,
5217 vec![
5218 link::Item::Linker("-rpath".into()),
5219 link::Item::Linker("/opt/lib".into()),
5220 link::Item::Linker("--as-needed".into()),
5221 link::Item::File("a.o".into()),
5222 ]
5223 );
5224 }
5225
5226 #[test]
5227 fn a_word_for_the_linker_keeps_its_place_among_the_files_too() {
5228 // What libtool writes around a set of convenience archives, and what #1279 was. Both words
5229 // are about the files between them, so the pair collected out of the line and appended to
5230 // the end is two options that bracket nothing and an archive that went in empty.
5231 let (_, plan) = linking(&[
5232 "--target=x86_64-unknown-linux-gnu",
5233 "a.c",
5234 "-Wl,--whole-archive",
5235 "libaesni.a",
5236 "-Wl,--no-whole-archive",
5237 "-lm",
5238 ]);
5239 let link = plan.link.expect("expected a link step");
5240 assert_eq!(
5241 link.inputs,
5242 vec![
5243 link::Item::File("a.o".into()),
5244 link::Item::Linker("--whole-archive".into()),
5245 link::Item::File("libaesni.a".into()),
5246 link::Item::Linker("--no-whole-archive".into()),
5247 link::Item::Library("m".into()),
5248 ]
5249 );
5250 // And it is not a job, because there is nothing to compile in a word for the linker.
5251 assert_eq!(plan.jobs.len(), 2);
5252 }
5253
5254 #[test]
5255 fn a_word_for_the_linker_on_a_dash_c_line_is_dropped_without_a_word() {
5256 // GCC says nothing about one either. `-Wl,` on a compile line is what a build system
5257 // writes when one variable holds the flags for both, and a note here would be a note on
5258 // every compile of every autotools project.
5259 let (_, plan) = linking(&["-c", "-Wl,--as-needed", "a.c"]);
5260 assert!(plan.link.is_none());
5261 assert!(plan.notes.is_empty(), "{:?}", plan.notes);
5262 assert_eq!(plan.jobs.len(), 1);
5263 }
5264
5265 #[test]
5266 fn a_library_keeps_its_place_between_the_objects() {
5267 // Link order is semantic: `-lm` written between two files resolves for the one before
5268 // it and not for the one after, so a library cannot be collected into a list of its own.
5269 // The target is named because the suffix of an object is the target's and this asserts
5270 // on the names: the same command line on a Windows host plans two `.obj` files.
5271 let (_, plan) = linking(&["--target=x86_64-unknown-linux-gnu", "a.c", "-lm", "b.c"]);
5272 let link = plan.link.expect("expected a link step");
5273 assert_eq!(
5274 link.inputs,
5275 vec![
5276 link::Item::File("a.o".into()),
5277 link::Item::Library("m".into()),
5278 link::Item::File("b.o".into()),
5279 ]
5280 );
5281 // And it is not a job, because there is nothing to compile in a library.
5282 assert_eq!(plan.jobs.len(), 2);
5283 }
5284
5285 #[test]
5286 fn a_library_on_a_dash_c_line_is_a_note_rather_than_an_error() {
5287 let (_, plan) = linking(&["-c", "-lm", "a.c"]);
5288 assert!(plan.link.is_none());
5289 assert!(plan.notes.iter().any(|n| n.contains("-lm")), "{:?}", plan.notes);
5290 }
5291
5292 #[test]
5293 fn the_sysroot_reaches_the_linker_as_well_as_the_headers() {
5294 let (link, _) = linking(&["--sysroot=/opt/root", "a.c"]);
5295 assert_eq!(link.sysroot, Some(PathBuf::from("/opt/root")));
5296 }
5297
5298 fn printed(s: &[&str]) -> String {
5299 match parse_args(&args(s)).expect("expected an answer") {
5300 Action::Print(line) => line,
5301 other => panic!("expected an answer, got {other:?}"),
5302 }
5303 }
5304
5305 fn refused(s: &[&str]) -> String {
5306 parse_args(&args(s)).expect_err("expected a refusal").message
5307 }
5308
5309 #[test]
5310 fn a_warning_flag_this_compiler_has_not_heard_of_is_taken_rather_than_refused() {
5311 // The rule in section 4.1, and the reason for it is autoconf: a configure script finds
5312 // out whether a warning flag exists by passing it and looking at the exit status, so a
5313 // compiler that refuses one it does not know fails a script written for a newer GCC.
5314 let (opts, _) = compile(&["-Wall", "-Wextra", "-Wno-format-truncation", "-c", "a.c"]);
5315 assert!(!opts.warnings_are_errors);
5316 assert!(opts.warnings);
5317 // The two spellings that do mean something are still read.
5318 let (opts, _) = compile(&["-Werror", "-c", "a.c"]);
5319 assert!(opts.warnings_are_errors);
5320 let (opts, _) = compile(&["-w", "-c", "a.c"]);
5321 assert!(!opts.warnings);
5322 // Off without being asked, the way gcc has it off, and both spellings are read.
5323 let (opts, _) = compile(&["-c", "a.c"]);
5324 assert!(!opts.system_header_warnings);
5325 let (opts, _) = compile(&["-Wsystem-headers", "-c", "a.c"]);
5326 assert!(opts.system_header_warnings);
5327 let (opts, _) = compile(&["-Wsystem-headers", "-Wno-system-headers", "-c", "a.c"]);
5328 assert!(!opts.system_header_warnings);
5329 let (opts, _) = compile(&["-pedantic-errors", "-c", "a.c"]);
5330 assert!(opts.pedantic && opts.warnings_are_errors);
5331 }
5332
5333 #[test]
5334 fn an_argument_for_a_separate_tool_is_refused_rather_than_dropped() {
5335 // Every one of these says something about the output, so the wrong answer is silence.
5336 assert!(refused(&["-Wa,--noexecstack", "-c", "a.c"]).contains("separate assembler"));
5337 assert!(refused(&["-Wp,-DX", "-c", "a.c"]).contains("separate assembler"));
5338 assert!(refused(&["-specs=/x", "a.c"]).contains("-specs= is not supported"));
5339 assert!(refused(&["-mcmodel=kernel", "-c", "a.c"]).contains("small code model"));
5340 assert!(refused(&["-gdwarf-4", "-c", "a.c"]).contains("DWARF 5"));
5341 assert!(refused(&["-Ofast", "-c", "a.c"]).contains("fast math"));
5342 // The word size the target does not have, which is a target this compiler was not asked
5343 // for rather than a flag it does not know.
5344 let no32 = refused(&["--target=x86_64-unknown-linux-gnu", "-m32", "-c", "a.c"]);
5345 assert!(no32.contains("32 bit target"), "{no32}");
5346 }
5347
5348 /// `-gz` and the two spellings of the split, which are the two questions about the shape of
5349 /// the debug output rather than about how much of it there is.
5350 ///
5351 /// Both answers here are about what happens when there is debug information to shape, and
5352 /// there is none yet, so what is being asserted is that the flags are read and remembered
5353 /// rather than that anything changed in the output. That is the whole of what taking them
5354 /// claims, and it is worth a test because the day `rucc-debug` writes a section this is where
5355 /// it comes to find out what the command line said.
5356 #[test]
5357 fn the_shape_of_the_debug_output_is_recorded_even_where_there_is_none_of_it() {
5358 let (opts, _) = compile(&["-c", "a.c"]);
5359 assert_eq!(opts.compress, Compress::None, "uncompressed unless somebody asks");
5360
5361 // Bare `-gz` is `-gz=zlib`, measured against gcc 16 rather than read out of the manual,
5362 // which describes the flag without ever saying which algorithm it picks.
5363 assert_eq!(compile(&["-gz", "-c", "a.c"]).0.compress, Compress::Zlib);
5364 for (spelling, want) in [
5365 ("none", Compress::None),
5366 ("zlib", Compress::Zlib),
5367 ("zlib-gnu", Compress::ZlibGnu),
5368 ("zstd", Compress::Zstd),
5369 ] {
5370 let (opts, _) = compile(&[&format!("-gz={spelling}"), "-c", "a.c"]);
5371 assert_eq!(opts.compress, want, "{spelling}");
5372 }
5373
5374 // A value nothing here has heard of is refused rather than rounded to the nearest one,
5375 // because a build that asked for `zstd` and quietly got `zlib` would ship a file its
5376 // reader may not understand and would have no way of finding out.
5377 for bad in ["-gz=gzip", "-gz="] {
5378 let failed = refused(&[bad, "-c", "a.c"]);
5379 assert!(failed.contains("is not a way to compress"), "{bad}: {failed}");
5380 }
5381
5382 // The split is refused in the direction that would have written a file and taken in the
5383 // direction that describes what happens. A build system that names the `.dwo` as an
5384 // output has to hear about it now rather than at the point the file is missing.
5385 let (opts, _) = compile(&["-gno-split-dwarf", "-g", "-c", "a.c"]);
5386 assert!(opts.debug_info, "the negative spelling says nothing about how much");
5387 let failed = refused(&["-gsplit-dwarf", "-c", "a.c"]);
5388 assert!(failed.contains(".dwo"), "the refusal names the file it would have written");
5389 }
5390
5391 /// The `-flto` family, which is the whole of an optimization this compiler does not do.
5392 ///
5393 /// Taken rather than refused because ignoring it gives a correct program that is slower than
5394 /// it could have been, which is section 4.1's hint about speed. The values are still held to
5395 /// gcc's, so a command line written for clang is told rather than quietly taken.
5396 #[test]
5397 fn the_link_time_family_is_read_and_checked_and_nothing_is_done_about_it() {
5398 let (opts, _) = compile(&["-c", "a.c"]);
5399 assert!(!opts.lto.requested, "nothing asks unless the command line does");
5400
5401 let (opts, _) = compile(&["-flto", "-c", "a.c"]);
5402 assert!(opts.lto.requested);
5403 assert_eq!(opts.lto.jobs, LtoJobs::One, "bare -flto is one process, the way gcc reads it");
5404
5405 // The last of the two directions wins, the same as every other pair of `-f` spellings.
5406 assert!(!compile(&["-flto", "-fno-lto", "-c", "a.c"]).0.lto.requested);
5407 assert!(compile(&["-fno-lto", "-flto", "-c", "a.c"]).0.lto.requested);
5408
5409 // A count is a count, and asking for one implies asking for the optimization.
5410 for (spelling, want) in [
5411 ("auto", LtoJobs::Auto),
5412 ("jobserver", LtoJobs::Jobserver),
5413 ("1", LtoJobs::One),
5414 ("8", LtoJobs::Count(8)),
5415 ] {
5416 let (opts, _) = compile(&[&format!("-flto={spelling}"), "-c", "a.c"]);
5417 assert_eq!(opts.lto.jobs, want, "{spelling}");
5418 assert!(opts.lto.requested, "{spelling} asks for it too");
5419 }
5420
5421 // gcc refuses a zero rather than reading it as `-fno-lto`, and `thin` is clang's spelling
5422 // of a question gcc answers with `-flto-partition=`, so somebody who wrote it meant a
5423 // different compiler and gets told so here rather than getting a serial link.
5424 for bad in ["-flto=0", "-flto=thin", "-flto=full", "-flto=-1"] {
5425 let failed = refused(&[bad, "-c", "a.c"]);
5426 assert!(failed.contains("link time jobs"), "{bad}: {failed}");
5427 }
5428
5429 // How the program is cut up before the work is spread over it.
5430 assert_eq!(compile(&["-c", "a.c"]).0.lto.partition, Partition::Balanced, "gcc's default");
5431 for (spelling, want) in [
5432 ("balanced", Partition::Balanced),
5433 ("1to1", Partition::OneToOne),
5434 ("one", Partition::One),
5435 ("max", Partition::Max),
5436 ("none", Partition::None),
5437 ] {
5438 let (opts, _) = compile(&[&format!("-flto-partition={spelling}"), "-c", "a.c"]);
5439 assert_eq!(opts.lto.partition, want, "{spelling}");
5440 }
5441 assert!(refused(&["-flto-partition=big", "-c", "a.c"]).contains("partitioning model"));
5442
5443 // And how hard the bytecode is compressed on its way into the object, which is zstd's
5444 // range of levels and is the range gcc checks an argument against.
5445 assert_eq!(compile(&["-c", "a.c"]).0.lto.compression, None, "whatever it does by default");
5446 assert_eq!(compile(&["-flto-compression-level=0", "-c", "a.c"]).0.lto.compression, Some(0));
5447 let (opts, _) = compile(&["-flto-compression-level=19", "-c", "a.c"]);
5448 assert_eq!(opts.lto.compression, Some(19));
5449 for bad in ["-flto-compression-level=20", "-flto-compression-level=-1"] {
5450 let failed = refused(&[bad, "-c", "a.c"]);
5451 assert!(failed.contains("compression level"), "{bad}: {failed}");
5452 }
5453
5454 // The two pairs that describe an arrangement rather than ask for one. Every object here
5455 // holds its machine code, so the fat spelling is what already happens and the other is a
5456 // smaller file rather than a different program, and the plugin pair is about a tool the
5457 // design in `spec/09-optimizer.md` never loads.
5458 for taken in [
5459 "-ffat-lto-objects",
5460 "-fno-fat-lto-objects",
5461 "-fuse-linker-plugin",
5462 "-fno-use-linker-plugin",
5463 ] {
5464 let (opts, _) = compile(&[taken, "-c", "a.c"]);
5465 assert!(!opts.lto.requested, "{taken} says nothing about whether to do it");
5466 }
5467 }
5468
5469 /// The profile family, which is the only one here that splits down the middle.
5470 ///
5471 /// Reading a profile is taken and writing one is refused, and the line between them is the one
5472 /// section 4.1 draws: ignoring a request to read the counts gives a correct program that is
5473 /// slower than it could have been, and ignoring a request to write them means a file the build
5474 /// declared as an output never appears.
5475 #[test]
5476 fn reading_a_profile_is_taken_and_writing_one_is_refused() {
5477 let (opts, _) = compile(&["-c", "a.c"]);
5478 assert!(!opts.profile_data.requested, "nothing asks unless the command line does");
5479 assert_eq!(opts.profile_data.path, None);
5480
5481 let (opts, _) = compile(&["-fprofile-use", "-c", "a.c"]);
5482 assert!(opts.profile_data.requested);
5483 assert_eq!(opts.profile_data.path, None, "beside the object, the way gcc looks");
5484
5485 let (opts, _) = compile(&["-fprofile-use=/counts", "-c", "a.c"]);
5486 assert!(opts.profile_data.requested, "naming a path asks for it too");
5487 assert_eq!(opts.profile_data.path.as_deref(), Some("/counts"));
5488
5489 // The last of the two directions wins, the same as every other pair of `-f` spellings.
5490 assert!(
5491 !compile(&["-fprofile-use", "-fno-profile-use", "-c", "a.c"]).0.profile_data.requested
5492 );
5493 assert!(
5494 compile(&["-fno-profile-use", "-fprofile-use", "-c", "a.c"]).0.profile_data.requested
5495 );
5496
5497 // The rest of the reading half, which is where the files are and three answers about what
5498 // to make of what is in them.
5499 let (opts, _) = compile(&[
5500 "-fprofile-dir=/build/profiles",
5501 "-fprofile-abs-path",
5502 "-fprofile-correction",
5503 "-fprofile-partial-training",
5504 "-c",
5505 "a.c",
5506 ]);
5507 assert_eq!(opts.profile_data.dir.as_deref(), Some("/build/profiles"));
5508 assert!(opts.profile_data.absolute);
5509 assert!(opts.profile_data.correction);
5510 assert!(opts.profile_data.partial_training);
5511
5512 // Writing one, which is refused by name. The first four instrument the program and the
5513 // last writes a file beside the object, and a build that got neither and no message would
5514 // go on to optimize against counts that were never gathered.
5515 for writing in [
5516 "-fprofile-generate",
5517 "-fprofile-generate=/build/profiles",
5518 "-fprofile-arcs",
5519 "--coverage",
5520 "-fcondition-coverage",
5521 "-fpath-coverage",
5522 ] {
5523 let failed = refused(&[writing, "-c", "a.c"]);
5524 assert!(failed.contains("instrument"), "{writing}: {failed}");
5525 }
5526 assert!(refused(&["-ftest-coverage", "-c", "a.c"]).contains(".gcno"), "it names the file");
5527
5528 // The negative spellings of the refused half are what already happens, so they are taken.
5529 for taken in ["-fno-profile-generate", "-fno-profile-arcs", "-fno-test-coverage"] {
5530 let (opts, _) = compile(&[taken, "-c", "a.c"]);
5531 assert!(!opts.profile_data.requested, "{taken} asks for nothing");
5532 }
5533
5534 // And the flags that describe the instrumentation that is refused above, which are checked
5535 // and dropped. Checked because a typo is worth finding here rather than on the day the
5536 // instrumentation lands.
5537 for taken in [
5538 "-fprofile-update=single",
5539 "-fprofile-update=atomic",
5540 "-fprofile-update=prefer-atomic",
5541 "-fprofile-reproducible=serial",
5542 "-fprofile-reproducible=parallel-runs",
5543 "-fprofile-reproducible=multithreaded",
5544 "-fprofile-values",
5545 "-fno-profile-values",
5546 "-fprofile-info-section",
5547 "-fprofile-filter-files=a.c",
5548 "-fprofile-exclude-files=b.c",
5549 "-fprofile-note=a.gcno",
5550 ] {
5551 let (opts, _) = compile(&[taken, "-c", "a.c"]);
5552 assert!(!opts.profile_data.requested, "{taken} says nothing about reading one");
5553 }
5554 assert!(refused(&["-fprofile-update=none", "-c", "a.c"]).contains("update method"));
5555 assert!(refused(&["-fprofile-reproducible=any", "-c", "a.c"]).contains("reproducibility"));
5556 }
5557
5558 /// The sanitizers, which are refused by name and are the one family refused for a reason that
5559 /// is not about the bytes.
5560 ///
5561 /// A sanitizer is a promise that the program is watched while it runs, so a build that asked
5562 /// for one and was quietly given a program with no checks in it gets a test suite that passes
5563 /// for the wrong reason rather than a slower program.
5564 #[test]
5565 fn a_sanitizer_that_is_still_asked_for_at_the_end_of_the_line_is_refused_by_name() {
5566 for asked in ["address", "undefined", "thread", "kernel-address", "leak", "memory"] {
5567 let failed = refused(&[&format!("-fsanitize={asked}"), "-c", "a.c"]);
5568 assert!(failed.contains(asked), "the refusal names what was asked for: {failed}");
5569 assert!(failed.contains("-fsafety=detect"), "and the nearest thing: {failed}");
5570 }
5571
5572 // A list is every name in it, and the first one still standing is the one named.
5573 let failed = refused(&["-fsanitize=address,undefined", "-c", "a.c"]);
5574 assert!(failed.contains("address"), "{failed}");
5575
5576 // A name that is not one, which is worth its own message: somebody who wrote `-fsanitize`
5577 // with a typo in it has a different problem from somebody who wrote a real one.
5578 for bad in ["-fsanitize=bogus", "-fsanitize=address,bogus", "-fno-sanitize=bogus"] {
5579 let failed = refused(&[bad, "-c", "a.c"]);
5580 assert!(failed.contains("is not a sanitizer"), "{bad}: {failed}");
5581 }
5582
5583 // gcc takes `all` only in the negative, and so does this.
5584 assert!(refused(&["-fsanitize=all", "-c", "a.c"]).contains("only `-fno-sanitize=all`"));
5585
5586 // Asking and then taking it back is asking for nothing, which is why the answer waits for
5587 // the end of the line. A build whose shared flags turn a check on and whose rule for one
5588 // file turns it off again compiles that file here.
5589 for pair in [
5590 ["-fsanitize=address", "-fno-sanitize=address"],
5591 ["-fsanitize=address,undefined", "-fno-sanitize=all"],
5592 ["-fsanitize=undefined", "-fno-sanitize=undefined"],
5593 ] {
5594 let (opts, _) = compile(&[pair[0], pair[1], "-c", "a.c"]);
5595 assert_eq!(opts.safety, rucc_session::Safety::Off, "{pair:?} asked for nothing");
5596 }
5597 // And the other order still asks, because the last word is the one that counts.
5598 assert!(!refused(&["-fno-sanitize=address", "-fsanitize=address", "-c", "a.c"]).is_empty());
5599
5600 // What a check does when it fires is an answer about checks that are refused, so there is
5601 // nothing left for it to change and it is taken.
5602 for taken in [
5603 "-fsanitize-recover=undefined",
5604 "-fno-sanitize-recover=all",
5605 "-fsanitize-trap=undefined",
5606 "-fno-sanitize-trap=all",
5607 "-fsanitize-undefined-trap-on-error",
5608 "-fsanitize-address-use-after-scope",
5609 "-fno-sanitize-address-use-after-scope",
5610 "-fsanitize-sections=.data",
5611 ] {
5612 let (opts, _) = compile(&[taken, "-c", "a.c"]);
5613 assert_eq!(opts.safety, rucc_session::Safety::Off, "{taken} asks for no checking");
5614 }
5615 assert!(refused(&["-fsanitize-recover=bogus", "-c", "a.c"]).contains("is not a sanitizer"));
5616
5617 // Coverage instrumentation is refused rather than dropped, because a fuzzer with no
5618 // feedback runs blind and never says so.
5619 let failed = refused(&["-fsanitize-coverage=trace-pc", "-c", "a.c"]);
5620 assert!(failed.contains("feedback"), "{failed}");
5621 let failed = refused(&["-fsanitize-coverage=trace-pc-guard", "-c", "a.c"]);
5622 assert!(failed.contains("trace-pc or trace-cmp"), "gcc takes two of them: {failed}");
5623 }
5624
5625 #[test]
5626 fn the_levels_gcc_spells_differently_are_the_levels_they_mean() {
5627 assert_eq!(compile(&["-O", "-c", "a.c"]).0.opt_level, OptLevel::O1);
5628 assert_eq!(compile(&["-Og", "-c", "a.c"]).0.opt_level, OptLevel::O1);
5629 assert_eq!(compile(&["-O2", "-c", "a.c"]).0.opt_level, OptLevel::O2);
5630 }
5631
5632 #[test]
5633 fn the_machine_flags_that_name_what_we_already_do_are_taken_and_the_rest_are_not() {
5634 let line = ["--target=x86_64-unknown-linux-gnu", "-m64", "-march=x86-64-v3"];
5635 let (opts, _) =
5636 compile(&[&line[..], &["-mtune=native", "-mabi=sysv", "-c", "a.c"]].concat());
5637 assert_eq!(opts.target.to_string(), "x86_64-unknown-linux-gnu");
5638 let wrong = refused(&["--target=x86_64-unknown-linux-gnu", "-mabi=ms", "-c", "a.c"]);
5639 assert!(wrong.contains("sysv convention"), "{wrong}");
5640 }
5641
5642 #[test]
5643 fn the_thread_flag_is_a_macro_and_a_library_and_the_library_goes_last() {
5644 let (opts, plan) = compile(&["-pthread", "-c", "a.c"]);
5645 assert!(opts.defines.iter().any(|d| d == "_REENTRANT"));
5646 // After the input, because a static link takes what it needs from a library when it
5647 // reaches it and not afterwards.
5648 let names: Vec<&str> = plan.jobs.iter().map(|j| j.input.as_str()).collect();
5649 assert_eq!(names, vec!["a.c"]);
5650 }
5651
5652 #[test]
5653 fn the_questions_a_build_system_asks_before_it_compiles_anything() {
5654 let target = "--target=x86_64-unknown-linux-gnu";
5655 assert_eq!(printed(&[target, "-dumpmachine"]), "x86_64-unknown-linux-gnu");
5656 assert_eq!(printed(&[target, "-dumpversion"]), VERSION);
5657 assert_eq!(printed(&[target, "-dumpfullversion"]), VERSION);
5658 assert_eq!(printed(&[target, "-print-multiarch"]), "x86_64-linux-gnu");
5659 // A name nothing holds comes back unchanged, which is GCC's rule and is what makes the
5660 // answer safe to paste into a link line whether or not the file is there.
5661 assert_eq!(printed(&[target, "-print-file-name=no-such-library.a"]), "no-such-library.a");
5662 assert_eq!(printed(&[target, "-print-prog-name=ld"]), "ld");
5663 let dirs = printed(&[target, "-print-search-dirs"]);
5664 assert!(dirs.starts_with("install: "), "{dirs}");
5665 assert!(dirs.contains("\nlibraries: ="), "{dirs}");
5666 }
5667
5668 #[test]
5669 fn the_sysroot_in_effect_is_the_one_the_command_line_named_or_the_one_for_the_target() {
5670 // A tree the user named is the answer whatever the target is, because it is the answer to
5671 // every other question too.
5672 assert_eq!(printed(&["--sysroot=/opt/cross", "-print-sysroot"]), "/opt/cross");
5673
5674 // A target that is no machine this suite runs on is read under the cache, and the answer is
5675 // the root rather than one of the directories under it, since what asks is looking for a
5676 // file of its own.
5677 let root = cache::dir().join("sysroots").join("riscv64-linux-musl");
5678 assert_eq!(
5679 printed(&["--target=riscv64-linux-musl", "-print-sysroot"]),
5680 root.display().to_string()
5681 );
5682
5683 // And a compile for this machine has no sysroot, which is the empty line GCC prints when it
5684 // was configured without one rather than a `/` that would be a claim about the filesystem.
5685 let host = Triple::host().expect("a host this compiler knows");
5686 assert_eq!(printed(&[&format!("--target={host}"), "-print-sysroot"]), "");
5687 }
5688
5689 #[test]
5690 fn the_provenance_of_a_sysroot_is_the_manifest_it_carries() {
5691 // Section 13.5 wants seven things per input and wants them machine readable, and the manifest
5692 // is the record that already has them, so the flag prints that rather than a second format.
5693 let manifest = "rucc sysroot manifest 3\n\
5694 target\tx86_64-linux-musl\n\
5695 kernel\t6.12\n\
5696 include/generic/stdio.h\tmusl-1.2.5\t\
5697 https://musl.libc.org/releases/musl-1.2.5.tar.gz\t\
5698 0000000000000000000000000000000000000000000000000000000000000000\tmit\t\
5699 bundled\n\
5700 lib/libc.so\tmusl-1.2.5\t\
5701 https://musl.libc.org/releases/musl-1.2.5.tar.gz\t\
5702 1111111111111111111111111111111111111111111111111111111111111111\tmit\t\
5703 generated\n";
5704 let tree = TempTree::new("provenance", &[("manifest", manifest)]);
5705 let sysroot = format!("--sysroot={}", tree.0.display());
5706 // The kernel line of tamnd/rucc#934 is in the answer without anything here naming it, because
5707 // the flag parses the record and renders it again rather than picking fields out of it. That
5708 // is the reason it prints a manifest and not a format of its own.
5709 //
5710 // The answer is the file without its last newline, because whatever prints it adds one. The
5711 // file is what somebody diffs the output against, so the two have to be the same bytes.
5712 assert_eq!(printed(&[&sysroot, "-print-sysroot-provenance"]) + "\n", manifest);
5713
5714 // A tree with no manifest in it is a tree somebody assembled themselves, and nothing here
5715 // knows where any of it came from. Saying nothing is the only honest answer, and a reader can
5716 // tell it from a manifest with no inputs because that one still has its two header lines.
5717 let bare = TempTree::new("provenance-bare", &[]);
5718 assert_eq!(
5719 printed(&[&format!("--sysroot={}", bare.0.display()), "-print-sysroot-provenance"]),
5720 ""
5721 );
5722
5723 // And a compile for this machine has no sysroot at all, which is the same empty answer
5724 // `-print-sysroot` gives for it.
5725 let host = Triple::host().expect("a host this compiler knows");
5726 assert_eq!(printed(&[&format!("--target={host}"), "-print-sysroot-provenance"]), "");
5727
5728 // And the other spelling, which section 13.5 is the document that writes.
5729 assert_eq!(printed(&[&sysroot, "--print-sysroot-provenance"]) + "\n", manifest);
5730
5731 // tamnd/rucc#1021. The digest of the same tree is the sha256 of that record, so it is one
5732 // line where the provenance is a few hundred, and it is checkable with `sha256sum` because
5733 // the bytes it is over are the bytes of the file. The number here is that hash of the
5734 // fixture above, computed by `sha256sum` rather than by this compiler.
5735 assert_eq!(
5736 printed(&[&sysroot, "-print-sysroot-digest"]),
5737 "d705ae6ebeafeb7fda4bd57cecc7882bf49784b17015664a09cfae25a1b2000a"
5738 );
5739 assert_eq!(
5740 printed(&[&sysroot, "--print-sysroot-digest"]),
5741 printed(&[&sysroot, "-print-sysroot-digest"])
5742 );
5743
5744 // And the two empty answers are empty here too, because a digest of nothing would read as a
5745 // claim about a sysroot rather than as the absence of one.
5746 assert_eq!(
5747 printed(&[&format!("--sysroot={}", bare.0.display()), "-print-sysroot-digest"]),
5748 ""
5749 );
5750 assert_eq!(printed(&[&format!("--target={host}"), "-print-sysroot-digest"]), "");
5751 }
5752
5753 #[test]
5754 fn a_manifest_this_build_cannot_read_is_refused_rather_than_printed() {
5755 // Passing a file we could not parse to whoever asked would make their parser the one that
5756 // finds the problem, and the three uses section 13.5 gives for this are all somebody else
5757 // parsing it.
5758 let tree = TempTree::new(
5759 "provenance-bad",
5760 &[("manifest", "rucc sysroot manifest 3\ntarget\tx86_64-linux-musl\nlib/libc.a\n")],
5761 );
5762 let message =
5763 refused(&[&format!("--sysroot={}", tree.0.display()), "-print-sysroot-provenance"]);
5764 assert!(message.contains("manifest"), "{message}");
5765 assert!(message.contains("1 fields where an input has six"), "{message}");
5766
5767 // The digest is refused for the same file and for a stronger reason: a hash of bytes this
5768 // build cannot read would be a number that names a record nobody can act on.
5769 let digest =
5770 refused(&[&format!("--sysroot={}", tree.0.display()), "-print-sysroot-digest"]);
5771 assert_eq!(digest, message);
5772 }
5773
5774 #[test]
5775 fn the_two_dependency_flags_that_stop_after_the_rule_stop_after_the_rule() {
5776 let (opts, _) = compile(&["-M", "a.c"]);
5777 assert!(opts.deps.emit && opts.deps.instead_of_compiling);
5778 assert!(opts.deps.system_headers, "plain -M lists them");
5779 assert_eq!(opts.emit, EmitKind::Preprocessed);
5780
5781 // Even where a later flag asked for something else, because the family is a mode and
5782 // the mode is what the run is for.
5783 let (opts, _) = compile(&["-M", "-c", "a.c"]);
5784 assert_eq!(opts.emit, EmitKind::Preprocessed);
5785
5786 let (opts, _) = compile(&["-MM", "a.c"]);
5787 assert!(!opts.deps.system_headers);
5788 }
5789
5790 #[test]
5791 fn the_two_that_end_in_d_leave_the_compilation_alone() {
5792 let (opts, _) = compile(&["-MD", "-c", "a.c"]);
5793 assert!(opts.deps.emit && !opts.deps.instead_of_compiling);
5794 assert!(opts.deps.system_headers);
5795 assert_eq!(opts.emit, EmitKind::Object);
5796
5797 let (opts, _) = compile(&["-MMD", "-c", "a.c"]);
5798 assert!(opts.deps.emit && !opts.deps.instead_of_compiling);
5799 assert!(!opts.deps.system_headers);
5800 }
5801
5802 #[test]
5803 fn nothing_puts_the_system_headers_back_once_a_flag_has_taken_them_out() {
5804 // GCC's rule, and not an oversight in it. The flag asking for fewer of them is read as
5805 // the answer, because the other one never asked the question.
5806 let (opts, _) = compile(&["-MM", "-M", "a.c"]);
5807 assert!(!opts.deps.system_headers);
5808 let (opts, _) = compile(&["-MD", "-MMD", "-c", "a.c"]);
5809 assert!(!opts.deps.system_headers);
5810 let (opts, _) = compile(&["-MMD", "-MD", "-c", "a.c"]);
5811 assert!(!opts.deps.system_headers);
5812 }
5813
5814 #[test]
5815 fn a_target_arrives_escaped_from_one_flag_and_untouched_from_the_other() {
5816 let (opts, _) = compile(&["-MM", "-MT", "a b.o", "-MQ", "a b.o", "a.c"]);
5817 assert_eq!(opts.deps.targets, vec!["a b.o".to_owned(), "a\\ b.o".to_owned()]);
5818 }
5819
5820 #[test]
5821 fn the_rest_of_the_family_is_a_file_and_a_switch() {
5822 let (opts, _) = compile(&["-MM", "-MF", "dep.d", "-MP", "a.c"]);
5823 assert_eq!(opts.deps.file.as_deref(), Some("dep.d"));
5824 assert!(opts.deps.phony);
5825
5826 for flag in ["-MF", "-MT", "-MQ"] {
5827 let e = parse_args(&args(&[flag])).unwrap_err();
5828 assert!(e.message.contains("requires an argument"), "{}", e.message);
5829 }
5830 }
5831
5832 /// A directory of sources for one test, removed when the test is done with it.
5833 struct TempTree(PathBuf);
5834
5835 impl Drop for TempTree {
5836 fn drop(&mut self) {
5837 let _ = std::fs::remove_dir_all(&self.0);
5838 }
5839 }
5840
5841 impl TempTree {
5842 fn new(name: &str, files: &[(&str, &str)]) -> TempTree {
5843 let dir = std::env::temp_dir().join(format!("rucc-deps-{}-{name}", std::process::id()));
5844 let _ = std::fs::remove_dir_all(&dir);
5845 std::fs::create_dir_all(&dir).expect("temporary directory should be writable");
5846 for (path, text) in files {
5847 let at = dir.join(path);
5848 if let Some(parent) = at.parent() {
5849 std::fs::create_dir_all(parent).expect("creating a subdirectory should work");
5850 }
5851 std::fs::write(&at, text).expect("writing a temporary file should work");
5852 }
5853 TempTree(dir)
5854 }
5855
5856 fn path(&self, name: &str) -> String {
5857 self.0.join(name).to_string_lossy().into_owned()
5858 }
5859 }
5860
5861 #[test]
5862 fn the_rule_names_what_the_includes_found_and_names_each_of_them_once() {
5863 // End to end, because the list comes from the preprocessor and the format comes from
5864 // somewhere else, and a test of either half on its own would pass with the two of them
5865 // wired up backwards.
5866 let tree = TempTree::new(
5867 "found",
5868 &[
5869 ("a.c", "#include \"one.h\"\n#include \"two.h\"\nint main(void) { return X; }\n"),
5870 ("one.h", "#define X 0\n"),
5871 ("two.h", "#include \"one.h\"\n"),
5872 ],
5873 );
5874 let out = tree.path("dep.d");
5875 let code = run(&args(&["-MM", "-MF", &out, "-o", &tree.path("a.i"), &tree.path("a.c")]));
5876 assert_eq!(code, 0);
5877
5878 let text = std::fs::read_to_string(&out).expect("the rule should have been written");
5879 let names: Vec<&str> = text.split_whitespace().collect();
5880 // The target, the source, and each header once however many times it was reached.
5881 assert_eq!(names.first(), Some(&"a.o:"), "{text}");
5882 assert_eq!(names.iter().filter(|n| n.ends_with("one.h")).count(), 1, "{text}");
5883 assert_eq!(names.iter().filter(|n| n.ends_with("two.h")).count(), 1, "{text}");
5884 // And the `-o` went to the file the rule replaced, which is left empty rather than
5885 // absent because a makefile that named it as a target will look for it.
5886 assert_eq!(std::fs::read(tree.path("a.i")).expect("the output should exist"), b"");
5887 }
5888
5889 #[test]
5890 fn a_header_that_is_only_reached_under_a_guard_is_still_a_dependency() {
5891 // The multiple-include optimization means the second reach never opens the file. It is
5892 // still a file this translation unit was built from, so it is still in the rule.
5893 let tree = TempTree::new(
5894 "guarded",
5895 &[
5896 ("a.c", "#include \"g.h\"\n#include \"g.h\"\nint main(void) { return 0; }\n"),
5897 ("g.h", "#ifndef G\n#define G\n#endif\n"),
5898 ],
5899 );
5900 let out = tree.path("dep.d");
5901 let code = run(&args(&["-MM", "-MF", &out, "-o", &tree.path("a.i"), &tree.path("a.c")]));
5902 assert_eq!(code, 0);
5903 let text = std::fs::read_to_string(&out).expect("the rule should have been written");
5904 assert_eq!(text.split_whitespace().filter(|n| n.ends_with("g.h")).count(), 1, "{text}");
5905 }
5906
5907 #[test]
5908 fn every_imacros_file_is_read_before_every_include_file_whatever_order_they_were_written() {
5909 // Measured against GCC rather than read: the two flags the other way round produce the
5910 // same output byte for byte, so the command line order between the two families does not
5911 // decide anything and the order within one does. The `-include` file here can only see
5912 // the definition if the `-imacros` file that was written after it ran first.
5913 let tree = TempTree::new(
5914 "preinclude",
5915 &[
5916 ("a.c", "int main(void) { return 0; }\n"),
5917 ("i.h", "#ifdef FROM_MACROS\nint saw_it;\n#else\nint missed_it;\n#endif\n"),
5918 ("m.h", "#define FROM_MACROS 1\nint macros_text;\n"),
5919 ],
5920 );
5921 let out = tree.path("a.i");
5922 let code = run(&args(&[
5923 "-E",
5924 "-include",
5925 &tree.path("i.h"),
5926 "-imacros",
5927 &tree.path("m.h"),
5928 "-o",
5929 &out,
5930 &tree.path("a.c"),
5931 ]));
5932 assert_eq!(code, 0);
5933 let text = std::fs::read_to_string(&out).expect("the output should have been written");
5934 assert!(text.contains("saw_it"), "{text}");
5935 // And the text of the `-imacros` file is thrown away, which is the whole difference
5936 // between the two flags.
5937 assert!(!text.contains("macros_text"), "{text}");
5938 }
5939
5940 #[test]
5941 fn a_file_the_command_line_named_is_a_prerequisite_the_same_as_one_a_directive_named() {
5942 let tree = TempTree::new(
5943 "preinclude-deps",
5944 &[
5945 ("a.c", "int main(void) { return 0; }\n"),
5946 ("i.h", "int from_include;\n"),
5947 ("m.h", "#define M 1\n"),
5948 ],
5949 );
5950 let out = tree.path("dep.d");
5951 let code = run(&args(&[
5952 "-MM",
5953 "-MF",
5954 &out,
5955 "-include",
5956 &tree.path("i.h"),
5957 "-imacros",
5958 &tree.path("m.h"),
5959 "-o",
5960 &tree.path("a.i"),
5961 &tree.path("a.c"),
5962 ]));
5963 assert_eq!(code, 0);
5964 let text = std::fs::read_to_string(&out).expect("the rule should have been written");
5965 assert!(text.contains("i.h"), "{text}");
5966 assert!(text.contains("m.h"), "{text}");
5967 }
5968
5969 #[test]
5970 fn a_command_line_include_that_is_nowhere_on_the_path_is_an_error_and_not_a_warning() {
5971 // Including the directory of the source file, which is not on the path for these: the
5972 // command line was not written there, so a name in it is relative to where the compiler
5973 // was run rather than to where the source sits.
5974 let tree = TempTree::new(
5975 "preinclude-missing",
5976 &[("sub/a.c", "int main(void) { return 0; }\n"), ("sub/beside.h", "int x;\n")],
5977 );
5978 let code = run(&args(&["-E", "-include", "beside.h", "-o", "-", &tree.path("sub/a.c")]));
5979 assert_eq!(code, 1);
5980 }
5981
5982 #[test]
5983 fn a_command_line_that_links_names_the_executable_and_not_the_object_it_went_through() {
5984 // The object a link goes through is in a temporary directory and is gone before `make`
5985 // reads any of this, so the rule that named it would be a rule for a file that is never
5986 // there. The target and the file are both the `-o`, which is the executable.
5987 let (opts, plan) = compile(&["-MD", "sub/a.c", "-o", "prog"]);
5988 assert_eq!(plan.output.as_deref(), Some("prog"));
5989 assert_eq!(deps::default_target("sub/a.c", deps_target_output(&opts, &plan)), "prog");
5990 assert_eq!(
5991 deps::default_file(&opts.deps, "sub/a.c", plan.output.as_deref()).as_deref(),
5992 Some("prog.d")
5993 );
5994 }
5995
5996 #[test]
5997 fn the_plan_keeps_the_output_name_because_the_rule_is_written_from_it() {
5998 let (_, plan) = compile(&["-MMD", "-c", "sub/a.c", "-o", "obj/x.o"]);
5999 assert_eq!(plan.output.as_deref(), Some("obj/x.o"));
6000 let (_, plan) = compile(&["-MMD", "-c", "sub/a.c"]);
6001 assert_eq!(plan.output, None);
6002 }
6003
6004 #[test]
6005 fn usage_fits_on_a_screen() {
6006 // Not a style preference. A help text that scrolls is one nobody reads, and this is
6007 // the cheapest way to keep it honest as flags accumulate. The number goes up only when
6008 // a family of flags arrives that has nowhere to share a line, which the two pass gates
6009 // were and which the two fuel flags and `-fsafety=` now are, and it goes up by exactly
6010 // the lines that family took. The four it went up by last are the flags a build system
6011 // passes without being asked to: how much to say, what machine to generate for, threads,
6012 // and the questions `configure` asks before it compiles anything. The one it went up by
6013 // last is the second line of `--emit`, whose kinds are a family that has now outgrown
6014 // one line and has nowhere else to go. The two it went up by last are the dependency
6015 // family, which is eight flags that share nothing with anything above them. The one it
6016 // went up by last is the four spellings of position independent code, which every
6017 // configure script writes and which could only have shared the link line, and that line
6018 // is already four characters short of the limit. The two it went up by last are the rest
6019 // of the include family, which is six more flags that change where a header is looked for
6020 // and two that name a header outright. The one it went up by last is the pair that keeps
6021 // the intermediate files and times the steps, which belong next to the two flags above
6022 // them that are also about watching a compilation rather than changing one. The two it
6023 // went up by last are the section flags and the visibility flag, which are what a build
6024 // that cares about the size of what it ships and about which names it exports writes, and
6025 // the second of them was already taken and only missing from here. The one it went up by
6026 // last is the stack protector, which is four spellings of one question and which every
6027 // distribution puts on every command line it issues, so a build that reads this list
6028 // looking for it and does not find it has to go and read the specification instead. The one
6029 // it went up by last is the profiler, which is two spellings of the request and two of
6030 // where the call goes, and which is about watching a program run rather than about what is
6031 // generated, so it shares its subject with nothing above it. The one it went up by last is
6032 // the room a function opens with for something to be written over it later, which takes an
6033 // argument of its own shape and is what a kernel build asks for, so it fits beside the
6034 // profiler and nothing else. The one it went up by last is what overflows rather than being
6035 // undefined, which is three spellings of two questions and which a kernel build and a great
6036 // deal of code written before the standard settled both pass. The one it went up by last is
6037 // the other answer to the first of those questions, which could not share the line because
6038 // what it asks for is the opposite of what the flags on that line ask for. The one it went
6039 // up by last is the split of the line that lists what this compiler does anyway into that
6040 // and what it assumes anyway, which are two different claims that were sharing a line until
6041 // the second of them got a second flag and the line stopped fitting. The one it went up by
6042 // last is the three flags that change the ABI rather than the code, which have to be given
6043 // to every file in a program or none of them and which therefore belong somewhere a person
6044 // reading this list will see them. The one it went up by last is the floating point group,
6045 // which is two lines rather than one because the first of them is a choice this compiler
6046 // records and the rest are claims about what it does anyway, and putting a real setting on
6047 // the same line as three flags that change nothing would be misleading about both. The one
6048 // it went up by last is the flag that says a write has to stay inside the member it names,
6049 // which is a setting rather than a claim and so cannot share the line above it, that being
6050 // the one that picks a tier. The two it went up by last are the prefix mapping family,
6051 // which is four flags whose whole job is to keep a build's output the same from two
6052 // different directories, and which a person chasing a reproducible build comes here
6053 // looking for by name. The one it went up by last is how the debug sections are compressed
6054 // and whether they go in a file of their own, which are two questions about the shape of
6055 // the debug output, where the line above them is about how much of it there is. The one it
6056 // went up by last is the `restrict` contract, which is a setting for the same reason the
6057 // flag that keeps a write inside its member is and which is the check a person who has been
6058 // bitten by a vectorizer comes here looking for. The one it went up by last is link time
6059 // optimization, which is a whole optimization rather than a flag and which says so on its
6060 // own line, because a build that passes it and reads this looking for what it got is
6061 // asking a question no other line here answers. The one it went up by last is the sysroot,
6062 // which is the question somebody asks when a cross build read a file nobody expected, and
6063 // which has no room on the line above it because the answers there are a path each and this
6064 // one is the root all of them are under. The one it went up by last is what is inside that
6065 // root and where each of it came from, which is a question about a whole tree rather than
6066 // about a path and which is long enough on its own that it could not have shared a line with
6067 // anything. The one it went up by last is the profile family, which splits down the middle
6068 // where no other family here does, so the line has to name the half that is taken and the
6069 // half that is refused or it would be read as taking both. The one it went up by last is
6070 // the sanitizers, which are what somebody reaching for a checked build writes first and
6071 // which belong beside the tier that is the nearest thing here to what they asked for. The
6072 // one it went up by last is the digest of that record, which is the same tree as one number
6073 // and could not share the line above it because that line prints a few hundred lines and
6074 // this one prints sixty four characters, and a reader who wants the short answer is looking
6075 // for it by name rather than reading the long one. The one it went up by last is the
6076 // sysroot fetch, which is the only command here that gets something from somewhere else and
6077 // is therefore the one a person wants to have read before they run it rather than after.
6078 // And the flag beside it that forbids every download, which earns its line by being what a
6079 // build in a sealed environment passes and by meaning something even though an ordinary
6080 // compile downloads nothing either way. The one it went up by last is the other fetch, the
6081 // one behind Microsoft's licence wall, which is a line rather than a paragraph because what
6082 // a person needs from here is that the command exists and that it will not do anything
6083 // until they have read a licence it prints for them.
6084 assert!(USAGE.lines().count() < 73, "usage text has grown past one screen");
6085 }
6086}