Skip to main content

rucc_codegen/select/
x86_64.rs

1//! The x86-64 lowering table.
2//!
3//! Everything below the module comment is generated from `rules/x86-64.rules` by `rucc-rules`
4//! when this crate is built, and none of it is in the repository. The rule file is the only
5//! place the rules are written, which is what makes the table that is matched with and the
6//! table `rucc-verify` proves things about the same table.
7//!
8//! To read the rules, read the rule file. To read the automaton they compile into, build the
9//! crate and read `x86-64.rs` under the build directory, which is a file worth looking at once
10//! for the shape of it and never again.
11
12// A guard is emitted as the comparison the rule writes, so a rule saying a shift count is at
13// least zero and less than the width comes out as two comparisons rather than as a range. That
14// is deliberate: the generated line and the rule it came from should read the same, and the
15// suggestion to write it another way is advice for somebody editing code, which nobody here is.
16#![allow(clippy::manual_range_contains)]
17
18include!(concat!(env!("OUT_DIR"), "/x86-64.rs"));
19
20#[cfg(test)]
21mod tests {
22    use rucc_target::x86_64;
23
24    use super::TABLE;
25    use crate::select::Piece;
26
27    /// The prefix a rule file puts in front of a machine term, which is how it says which target
28    /// the term belongs to. It is not part of the opcode.
29    const PREFIX: &str = "x64.";
30
31    /// The two address constructors, which are not instructions. An addressing mode is an
32    /// argument to `lea` and to every memory operand after it, so it is written as a term in the
33    /// rule file and built by the selector into the instruction that takes it.
34    const AMODES: &[&str] =
35        &["amode_base_index_scale", "amode_index_scale", "amode_base", "amode_base_offset"];
36
37    /// Every head this table can write, in and under the replacements.
38    fn heads() -> Vec<&'static str> {
39        let mut found: Vec<&'static str> = TABLE
40            .rules
41            .iter()
42            .flat_map(|rule| rule.replacement.iter())
43            .filter_map(|piece| match piece {
44                Piece::App { head, .. } => Some(*head),
45                _ => None,
46            })
47            .collect();
48        found.sort_unstable();
49        found.dedup();
50        found
51    }
52
53    #[test]
54    fn every_instruction_the_table_writes_is_described() {
55        for head in heads() {
56            if AMODES.contains(&head) {
57                continue;
58            }
59            let opcode = head.strip_prefix(PREFIX).unwrap_or_else(|| {
60                panic!("{head} is neither an x86-64 term nor an addressing mode")
61            });
62            assert!(
63                x86_64::form(opcode).is_some(),
64                "{head} is selected by a rule and `rucc_target::x86_64` does not say what it \
65                 does with its operands"
66            );
67        }
68    }
69
70    /// The order the operands of a store are written in, which is the IR's and not a choice this
71    /// file makes.
72    ///
73    /// A pattern is matched against an instruction's operand list by position, so a rule that
74    /// names the address where the IR holds the value is a rule that stores to the value and
75    /// writes the address into memory. Nothing in a proof would catch it, because a proof is
76    /// about the rule file agreeing with itself, and both halves would be wrong in the same way.
77    /// `rucc_ir::Builder::store` takes the value first and the machine instruction takes it last,
78    /// which is why the two halves of one of these rules read in opposite orders.
79    #[test]
80    fn a_store_is_written_with_the_value_first_because_that_is_where_the_ir_keeps_it() {
81        let mut seen = 0;
82        for rule in TABLE.rules {
83            let Some(rest) = rule.pattern.strip_prefix("(store.") else { continue };
84            let (width, operands) = rest.split_once(' ').expect("a store takes operands");
85            assert!(
86                operands.starts_with(&format!("(value.{width} ")),
87                "line {}: {} binds something other than the value it is storing first",
88                rule.line,
89                rule.pattern
90            );
91            assert!(
92                operands.contains("(value.i64 "),
93                "line {}: {} reaches no address",
94                rule.line,
95                rule.pattern
96            );
97            seen += 1;
98        }
99        assert_eq!(seen, 16, "the store rules moved and this test did not follow them");
100    }
101
102    /// Every comparison can be made against a constant as well as against a register.
103    ///
104    /// Four comparisons in five in the corpus are against a constant, and without a rule for one
105    /// the constant is loaded into a register first, which is an instruction and a register the
106    /// machine never needed. A missing width or a missing condition would not fail anything else:
107    /// the register rule still matches, the output is still correct, and the only sign is code
108    /// that is one instruction longer in a place nobody is looking. So the two lists are counted
109    /// against each other here.
110    ///
111    /// What this cannot check is that the condition on the immediate rule is the right one, since
112    /// both halves of a wrong pair would be a consistent pair. That is what the `spec` clause is
113    /// for, and `rucc-verify` is what reads it.
114    #[test]
115    fn a_comparison_against_a_constant_is_written_for_every_one_against_a_register() {
116        let mut against_register = Vec::new();
117        let mut against_constant = Vec::new();
118        for rule in TABLE.rules {
119            let Some(rest) = rule.pattern.strip_prefix("(icmp_") else { continue };
120            let (condition, operands) = rest.split_once(".i1 ").expect("a comparison takes two");
121            let width = operands
122                .strip_prefix("(value.")
123                .and_then(|rest| rest.split_once(' '))
124                .map(|(width, _)| width)
125                .expect("a comparison reads a value first");
126            let named = format!("{condition}.{width}");
127            if operands.contains("(iconst.") {
128                // The constant is the second operand and never the first, because a comparison is
129                // not symmetric and the same condition on the other side means the opposite.
130                assert!(
131                    !operands.starts_with("(iconst."),
132                    "line {}: {} compares a constant against a value",
133                    rule.line,
134                    rule.pattern
135                );
136                against_constant.push(named);
137            } else {
138                against_register.push(named);
139            }
140        }
141        against_register.sort_unstable();
142        against_constant.sort_unstable();
143        assert_eq!(against_register, against_constant);
144        assert_eq!(against_register.len(), 40, "ten conditions at four widths");
145    }
146
147    /// The instructions the calling convention writes rather than a rule.
148    ///
149    /// Three kinds of them. Naming the register an argument arrived in, where an argument is
150    /// depends on its position in the signature and on the classification of every argument before
151    /// it, and a rule pattern sees one term and has no way to say any of that, so `crate::abi`
152    /// builds these from the convention instead. Calling a name is the same the other way round:
153    /// what its operands are is whatever the signature made them, and a call through an address is
154    /// the same instruction with one operand more.
155    ///
156    /// The second half of a value that comes back in two registers is the third. A return of one
157    /// value is a rule, because where that value goes depends on nothing but the value, which is
158    /// exactly what a rule can say. A return of two is not, because which register the second half
159    /// is in depends on the first half: the two register files are counted separately, so a
160    /// `double` and a `long` both come back at place zero and two `long`s do not.
161    const CONVENTION: &[&str] = &[
162        "arg_val_8",
163        "arg_val_16",
164        "arg_val_32",
165        "arg_val_64",
166        "arg_val_f16",
167        "arg_val_f32",
168        "arg_val_f64",
169        "arg_val_f128",
170        "ret_val2_8",
171        "ret_val2_16",
172        "ret_val2_32",
173        "ret_val2_64",
174        "ret_val2_f16",
175        "ret_val2_f32",
176        "ret_val2_f64",
177        "ret_val2_f128",
178        "call",
179        "call_reg",
180    ];
181
182    /// The instructions the block layout writes rather than a rule.
183    ///
184    /// A rule sees one branch and the layout is about the order of every block in the function, so
185    /// which arm falls through is not something any pattern could say. That answer is what decides
186    /// whether the jump goes to the arm the condition is true for or the other one, and whether
187    /// there is a second jump after it, so all of these are written where the answer is.
188    ///
189    /// The comparisons are here for a second reason on top of that one. A branch on a comparison
190    /// is a comparison and a jump on the flags it set, and the flags are not a value: no pattern
191    /// could bind one and no `spec` clause could say anything about one. So the pair is put
192    /// together by the layout, out of a comparison a rule did select and the branch behind it,
193    /// which is the same argument `rucc_target::x86_64::Form::CmpSet` is one form rather than two
194    /// under.
195    /// The instructions the size directed peephole writes rather than a rule.
196    ///
197    /// [`crate::shorten`] turns a comparison of a register against zero into a test of the register
198    /// against itself, which asks the machine the same thing in one byte less, and an addition of
199    /// one into the instruction that adds one and says so in its opcode, which is another byte less.
200    /// No rule could select either. Whether the first says the same thing depends on the constant
201    /// the comparison carries and a pattern binds a value rather than reads a number out of one, and
202    /// whether the second does depends on what reads the carry behind it, which is not something a
203    /// pattern sees at all. The eight bit test is not here because the layout writes that one as
204    /// well and it is on the list below.
205    const PEEPHOLE: &[&str] = &[
206        "test_rr_16",
207        "test_rr_32",
208        "test_rr_64",
209        "inc_r_8",
210        "inc_r_16",
211        "inc_r_32",
212        "inc_r_64",
213        "dec_r_8",
214        "dec_r_16",
215        "dec_r_32",
216        "dec_r_64",
217    ];
218
219    const LAYOUT: &[&str] = &[
220        "test_rr_8",
221        "cmp_rr_8",
222        "cmp_rr_16",
223        "cmp_rr_32",
224        "cmp_rr_64",
225        "cmp_ri_8",
226        "cmp_ri_16",
227        "cmp_ri_32",
228        "cmp_ri_64",
229        "cmp_rm_8",
230        "cmp_rm_16",
231        "cmp_rm_32",
232        "cmp_rm_64",
233        "cmp_mi_8",
234        "cmp_mi_16",
235        "cmp_mi_32",
236        "cmp_mi_64",
237        "jcc_e",
238        "jcc_ne",
239        "jcc_l",
240        "jcc_le",
241        "jcc_g",
242        "jcc_ge",
243        "jcc_b",
244        "jcc_be",
245        "jcc_a",
246        "jcc_ae",
247        "jmp",
248    ];
249
250    /// The instructions the compare pass writes rather than a rule.
251    ///
252    /// The other half of the argument the comparisons above are here under. A rule selects a
253    /// comparison that keeps its answer in a byte, because that is the shape a value has. What is
254    /// left of one when the machine has already made the comparison is the byte with no comparison
255    /// in front of it, and there is no pattern for that: the term it would compute is the same term
256    /// the full comparison computes, and what makes the short one right is the instruction three
257    /// places back rather than anything about the value. So `crate::compare` writes them by name,
258    /// in place of a comparison it found was already made.
259    const COMPARE: &[&str] = &[
260        "set_e", "set_ne", "set_l", "set_le", "set_g", "set_ge", "set_b", "set_be", "set_a",
261        "set_ae",
262    ];
263
264    /// The instruction a computed `goto` is written as rather than a rule.
265    ///
266    /// The one branch `crate::lower` writes by name, and the one the block layout does not write
267    /// either. What it reads is the address, which a pattern could have bound, so it is not
268    /// exempt for the reason the branches above are. What no pattern can say is the rest of it:
269    /// how many arms the block has, which is every label of the function the program took the
270    /// address of, and a rule says what an instruction reads rather than where a block goes.
271    const LABELS: &[&str] = &["jmp_reg"];
272
273    /// The load a jump table is read with, which `crate::lower` writes by name next to the jump
274    /// above. The address it reads is a table of this function rather than a value in the IR,
275    /// and no IR instruction loads from a place that is not a value, so there is nothing a rule
276    /// could match it from.
277    const CELL: &[&str] = &["movsxd_rm_32_64"];
278
279    /// The instruction the memory model writes rather than a rule.
280    ///
281    /// A barrier computes nothing, so there is no equality for the solver to discharge and no
282    /// pattern for a rule to be written as. What makes it the right answer is what the machine
283    /// promises about the order two other instructions become visible in, which is a claim about
284    /// the program around it rather than about any value. `crate::lower` writes it by name, at the
285    /// strongest ordering and nowhere else, and `crate::expand` says why the strongest is the only
286    /// one that costs anything here.
287    const BARRIER: &[&str] = &["mfence"];
288
289    /// The instruction a program stops on, which `crate::lower` writes rather than a rule.
290    ///
291    /// The first half of the barrier's reason and not the second. It computes nothing, so there is
292    /// no equality for the solver and no pattern for a rule. What makes it right is not a claim
293    /// about the order anything becomes visible in either: it is what the operating system does
294    /// with the fault, which is a fact about neither the values nor the program around it.
295    const STOP: &[&str] = &["ud2"];
296
297    /// The instructions that are a hint rather than a computation.
298    ///
299    /// The same shape of exemption the barrier gets and for a reason one step further out. A
300    /// barrier computes nothing and still has to be where it is, so there is at least a claim about
301    /// the program around it. A prefetch does not even have that: a machine that drops the whole
302    /// instruction runs the program correctly, because the only thing it can change is how long the
303    /// program takes.
304    ///
305    /// So there is no equality for the solver and no pattern for a rule, and which of the four a
306    /// program gets is decided by a number in the builtin's own arguments rather than by anything
307    /// about the value being prefetched. `crate::lower` writes them by name, out of the hint the IR
308    /// carries beside the instruction.
309    const HINT: &[&str] = &["prefetch_nta", "prefetch_t0", "prefetch_t1", "prefetch_t2"];
310
311    /// The instructions nothing but an `asm` statement asks for.
312    ///
313    /// One step further out again. A prefetch is a hint and is still something the compiler decides
314    /// to write, out of a builtin the program called. These are instructions the program wrote down
315    /// itself, by name, in a template, and nothing else in the language reaches them: there is no
316    /// builtin for either, no rule could match a term that produces one, and `crate::lower` writes
317    /// them only because [`rucc_target::x86_64::read`] found the name in a template and said which
318    /// opcode that is.
319    ///
320    /// `pause` is the hint a spin lock writes between two tries at the lock. `cpuid` is how a
321    /// program asks the processor what it can do, which there is no other way to ask, so every
322    /// program that takes a faster path on some machines than on others has one of these in it.
323    ///
324    /// The alignment is the third, and it is on this list rather than one of its own because it
325    /// meets the claim below outright: an instruction is exempt for this reason exactly when there
326    /// is nothing about it for a rule to name, and an opcode with no operands and no addressing mode
327    /// has nothing. It is not an instruction at all, which is more than the test asks and is the
328    /// reason no rule could have been written for it however the rule language grew.
329    ///
330    /// A byte out of a template is the fourth and is there for the same reason as the alignment,
331    /// one step further still: it is not an instruction, and what it holds is a byte the program
332    /// wrote out itself because its assembler was older than the instruction it wanted. There is
333    /// nothing for a rule to have said about a number a program handed the processor directly.
334    ///
335    /// A template kept as text is the fifth, and is further again: it is not even one instruction,
336    /// it is whatever the program wrote that could not be read as instructions.
337    const TEMPLATE: &[&str] = &["cpuid", "pause", "align", "byte", "template"];
338
339    /// The rotates and the test against a constant, which a template writes and nothing else does.
340    ///
341    /// A rotate is a term the IR could have, and does not yet: C spells one as two shifts and an or,
342    /// and nothing puts those back together. A test against a constant is an and whose answer is
343    /// thrown away, and the layout writes a comparison for that rather than this. A store of a
344    /// constant goes through a register when the compiler writes it. So what reaches one of these
345    /// is a program that wrote the name, which is what tcc's byte swap, its copy of `memcpy` and
346    /// its test of `"m"` operands do.
347    const TEMPLATED: &[&str] = &[
348        "rol_ri_8",
349        "rol_ri_16",
350        "rol_ri_32",
351        "rol_ri_64",
352        "rol_rcl_8",
353        "rol_rcl_16",
354        "rol_rcl_32",
355        "rol_rcl_64",
356        "ror_ri_8",
357        "ror_ri_16",
358        "ror_ri_32",
359        "ror_ri_64",
360        "ror_rcl_8",
361        "ror_rcl_16",
362        "ror_rcl_32",
363        "ror_rcl_64",
364        "test_ri_8",
365        "test_ri_16",
366        "test_ri_32",
367        "test_ri_64",
368        "mov_mi_8",
369        "mov_mi_16",
370        "mov_mi_32",
371        "mov_mi_64",
372    ];
373
374    /// The instructions a template asks for that are right because of the line above them.
375    ///
376    /// These are exempt for the reason the ten bytes in [`COMPARE`] are, one step further out. A
377    /// rule selects a conditional move with its comparison in front of it, because that pair is the
378    /// shape a select has. The move on its own computes the same term and what makes it right is the
379    /// comparison somewhere behind it rather than anything about its own operands, so no pattern
380    /// could say what it means. The compare pass does not write one either, because it replaces a
381    /// comparison it found was already made and there is no earlier move here to replace: what
382    /// writes one is a program that put the comparison on one line of a template and the move on the
383    /// next, which is what zstd does to keep a bounds check from becoming a branch.
384    ///
385    /// So these have operands a rule could have named, unlike everything in [`TEMPLATE`], and they
386    /// are still not instructions a rule could have been written for.
387    ///
388    /// The jumps on the sign, the overflow and the parity are here for the same reason. The layout
389    /// writes the other ten behind a comparison it chose, and nothing chooses one of these: a C
390    /// condition never asks about one bit on its own, so the only line above one is a line in a
391    /// template, which is what a loop in tcc's tests that counts down with `dec` and stops on `js`
392    /// is.
393    /// The add with carry and the subtract with borrow, which read a bit off the instruction in
394    /// front of them.
395    ///
396    /// Exempt one step further out again than [`CONDITIONAL`]. A conditional move reads the
397    /// condition state and leaves it alone, so what is missing from a rule that named one is the
398    /// comparison. These read it and write it both, and what is missing is worse than a comparison:
399    /// the bit they read is the carry out of an addition, and an addition in the IR is an addition
400    /// of a width with no carry out at all, so there is no term a rule could match that the bit is
401    /// a part of. A program gets one by writing both halves itself in a template, which is what
402    /// `add_ssaaaa` and `sub_ddmmss` in libgmp's `longlong.h` are. The form against a constant is
403    /// here for the same reason and is the same instruction with a zero where the second source is,
404    /// which `add_sssaaaa` writes for the top word of a number three words wide.
405    ///
406    /// What keeps the two halves together once they are two instructions in a block is not here. It
407    /// is `rucc_target::FlagInsts`, which the scheduler reads for exactly this, and the test below
408    /// checks the entry is there rather than trusting that somebody remembered.
409    const CARRY: &[&str] = &[
410        "adc_rr_8",
411        "adc_rr_16",
412        "adc_rr_32",
413        "adc_rr_64",
414        "sbb_rr_8",
415        "sbb_rr_16",
416        "sbb_rr_32",
417        "sbb_rr_64",
418        "adc_ri_8",
419        "adc_ri_16",
420        "adc_ri_32",
421        "adc_ri_64",
422        "sbb_ri_8",
423        "sbb_ri_16",
424        "sbb_ri_32",
425        "sbb_ri_64",
426    ];
427
428    const CONDITIONAL: &[&str] = &[
429        "cmov_e_16",
430        "cmov_e_32",
431        "cmov_e_64",
432        "cmov_ne_16",
433        "cmov_ne_32",
434        "cmov_ne_64",
435        "cmov_l_16",
436        "cmov_l_32",
437        "cmov_l_64",
438        "cmov_le_16",
439        "cmov_le_32",
440        "cmov_le_64",
441        "cmov_g_16",
442        "cmov_g_32",
443        "cmov_g_64",
444        "cmov_ge_16",
445        "cmov_ge_32",
446        "cmov_ge_64",
447        "cmov_b_16",
448        "cmov_b_32",
449        "cmov_b_64",
450        "cmov_be_16",
451        "cmov_be_32",
452        "cmov_be_64",
453        "cmov_a_16",
454        "cmov_a_32",
455        "cmov_a_64",
456        "cmov_ae_16",
457        "cmov_ae_32",
458        "cmov_ae_64",
459        "jcc_s",
460        "jcc_ns",
461        "jcc_o",
462        "jcc_no",
463        "jcc_p",
464        "jcc_np",
465    ];
466
467    /// The instructions that look for a set bit, which a template asks for and nothing else does.
468    ///
469    /// These have a source and a destination a rule could have named, the way the conditional moves
470    /// above do, and the reason no rule names them is a different one again. It is not that their
471    /// meaning comes from the line in front of them: each of these says on its own exactly what it
472    /// computes. It is that [`crate::expand`] already answers the question they answer, out of
473    /// arithmetic every machine has, and it does that because what these do when the source is zero
474    /// is four different things on four families of processor. A rule that selected one would be a
475    /// rule whose answer depends on which machine ran it.
476    ///
477    /// So the only thing that reaches one is a program that wrote the name in a template, which is
478    /// what the libraries that were counting bits before there was a builtin for it all do.
479    /// `crate::lower` writes them for the reason it writes the three in [`TEMPLATE`], and they are
480    /// not on that list because they are not bare: a rule could have named these operands and the
481    /// claim that list makes would be false of them.
482    const SEARCH: &[&str] = &[
483        "bsf_16", "bsf_32", "bsf_64", "bsr_16", "bsr_32", "bsr_64", "lzcnt_32", "lzcnt_64",
484        "tzcnt_32", "tzcnt_64",
485    ];
486
487    /// The instruction that turns a register round, which a template asks for and nothing else does.
488    ///
489    /// The list above, one step simpler. A search is unselected because what it does with a source
490    /// of zero is not the same on every processor, so a rule that chose one would depend on what ran
491    /// it. A byte reversal has no such case: it means exactly one thing everywhere. What keeps it
492    /// off the rule set is a choice made once, in [`crate::expand`], which builds a reversal out of
493    /// shifts and masks so that the answer is the same on every target this compiler has rather than
494    /// good on the one that happens to have the instruction. tamnd/rucc#310 is where that trade is
495    /// written down, and the day a target grows its own reversal is the day to reopen it.
496    ///
497    /// So the only thing that reaches one is a program that wrote the name in a template, which is
498    /// what libgmp does in `gmp-impl.h` to put a limb the other way round.
499    ///
500    /// The third is the same thing at a width `bswap` does not reach. Turning a sixteen bit number
501    /// round is exchanging its two bytes with each other, and this machine says that by naming the
502    /// high byte of a register, which only the first four registers have. femtolisp writes one in
503    /// `llt/utils.h`, which is how a C library older than `__builtin_bswap16` said it, and that
504    /// header is the one every other file of the library includes.
505    const SWAP: &[&str] = &["bswap_32", "bswap_64", "xchg_high_16"];
506
507    /// The jump out of the function a template may end with, which a template asks for and nothing
508    /// else could.
509    ///
510    /// Unselected for a reason none of the lists above give, and the plainest reason of the lot:
511    /// there is no term in the IR for it to be the answer to. A tail jump is not a computation and
512    /// it is not a branch between this function's blocks either, it is the function ending
513    /// somewhere other than at its own `ret`, and the only thing that says a function ends that way
514    /// is a program writing `jmp` at the end of a template in a function that is `naked`. See
515    /// [`rucc_target::x86_64::Step::Away`].
516    const AWAY: &[&str] = &["jmp_away"];
517
518    /// The instructions that change an object where it lives, which a template asks for and
519    /// nothing else does.
520    ///
521    /// Each of these is a load, one operation and a store in one line. The rules select the three
522    /// on their own and never the one that is all of them, because what a rule sees is a value in a
523    /// register and the store is a separate term further on. What asks for one is a program that
524    /// gave an `asm` operand the constraint `m` and then named it in an instruction, which is how a
525    /// C library sets a bit in a `sigset_t` and how tcc's `tests/tcctest.c` counts a static local up.
526    const MEMORY: &[&str] = &[
527        "neg_m_8",
528        "neg_m_16",
529        "neg_m_32",
530        "neg_m_64",
531        "not_m_8",
532        "not_m_16",
533        "not_m_32",
534        "not_m_64",
535        "inc_m_8",
536        "inc_m_16",
537        "inc_m_32",
538        "inc_m_64",
539        "dec_m_8",
540        "dec_m_16",
541        "dec_m_32",
542        "dec_m_64",
543        "bts_mr_16",
544        "bts_mr_32",
545        "bts_mr_64",
546        "btr_mr_16",
547        "btr_mr_32",
548        "btr_mr_64",
549        "btc_mr_16",
550        "btc_mr_32",
551        "btc_mr_64",
552        "bts_mi_16",
553        "bts_mi_32",
554        "bts_mi_64",
555        "btr_mi_16",
556        "btr_mi_32",
557        "btr_mi_64",
558        "btc_mi_16",
559        "btc_mi_32",
560        "btc_mi_64",
561    ];
562
563    /// The multiply that keeps both halves of its product and the division that reads both halves
564    /// of its dividend, which a template asks for and nothing else does.
565    ///
566    /// A third reason again, and the plainest of the three. A search is unselected because its
567    /// answer depends on the processor and a reversal because a choice was made to build one out of
568    /// arithmetic. This one is unselected because there is nothing in the IR to select it from: a
569    /// multiply in C takes two values of a type and produces a value of that type, so the term a
570    /// rule would match on is the narrow product, and the wide product is not a term at all. A rule
571    /// that fired on the narrow one and wrote this would be writing an instruction that computes
572    /// twice as much as was asked for and leaves the rest in a register nobody asked about.
573    ///
574    /// So the only thing that reaches one is a program that wrote the name in a template, which is
575    /// what `umul_ppmm` in libgmp's `longlong.h` does, and what every library that is building
576    /// arithmetic out of limbs does somewhere.
577    ///
578    /// The division is the same claim upside down and is on this list because the reason is the same
579    /// one. A division in C divides a number by a number of its own width, so the term a rule would
580    /// match is the narrow one, and this compiler already has two opcodes for that: each of them
581    /// fills the high half of the dividend itself and then throws one of the two answers away. A
582    /// dividend the program filled both halves of is not a term the IR has, and `udiv_qrnnd` beside
583    /// the multiply in the same header is how long division a limb at a time is written.
584    const WIDE: &[&str] = &[
585        "mul_wide_16",
586        "mul_wide_32",
587        "mul_wide_64",
588        "imul_wide_16",
589        "imul_wide_32",
590        "imul_wide_64",
591        "div_wide_16",
592        "div_wide_32",
593        "div_wide_64",
594        "idiv_wide_16",
595        "idiv_wide_32",
596        "idiv_wide_64",
597    ];
598
599    /// The string instructions, which a template writes and nothing else does.
600    ///
601    /// Exempt for the reason `cpuid` is in [`TEMPLATE`]: every register one of them reaches is one
602    /// the instruction names for itself, so there is nothing about one for a rule to name. A copy
603    /// or a fill the compiler writes is a loop it can schedule or a call to the library, and never
604    /// one of these.
605    const STRING: &[&str] = &[
606        "movs_8",
607        "movs_16",
608        "movs_32",
609        "movs_64",
610        "rep_movs_8",
611        "rep_movs_16",
612        "rep_movs_32",
613        "rep_movs_64",
614        "stos_8",
615        "stos_16",
616        "stos_32",
617        "stos_64",
618        "rep_stos_8",
619        "rep_stos_16",
620        "rep_stos_32",
621        "rep_stos_64",
622        "lods_8",
623        "lods_16",
624        "lods_32",
625        "lods_64",
626        "scas_8",
627        "scas_16",
628        "scas_32",
629        "scas_64",
630        "repe_scas_8",
631        "repe_scas_16",
632        "repe_scas_32",
633        "repe_scas_64",
634        "repne_scas_8",
635        "repne_scas_16",
636        "repne_scas_32",
637        "repne_scas_64",
638        "cmps_8",
639        "cmps_16",
640        "cmps_32",
641        "cmps_64",
642        "repe_cmps_8",
643        "repe_cmps_16",
644        "repe_cmps_32",
645        "repe_cmps_64",
646        "repne_cmps_8",
647        "repne_cmps_16",
648        "repne_cmps_32",
649        "repne_cmps_64",
650    ];
651
652    /// The instructions that produce two values, which is one more than a rule can name.
653    ///
654    /// A rule replaces a term with a term, and a term is the value one instruction computes. A
655    /// compare and exchange computes two: what it found at the address, and whether what it found
656    /// was what the program expected. There is no way to write the second one down in the rule
657    /// language, and inventing one would be inventing a language for a single instruction.
658    ///
659    /// So `crate::lower` writes it by name, the way it writes the barrier by name, and for a reason
660    /// that is about the rule language rather than about the machine. What the solver would have
661    /// been asked to prove about it is the easy half in any case: the arithmetic is a comparison
662    /// and a select, and what is hard is that the whole of it happens at once, which is the same
663    /// claim about the program around it that a barrier makes.
664    const ATOMIC: &[&str] = &["cmpxchg_8", "cmpxchg_16", "cmpxchg_32", "cmpxchg_64"];
665
666    /// The instructions whose operation is in the payload rather than in the head.
667    ///
668    /// A different exemption from the one above, on instructions that produce one value each and so
669    /// could be named by a rule if the rule had anything to match on. The head a pattern matches is
670    /// an opcode and a type, and every read modify write in the IR is the one opcode `atomic_rmw`.
671    /// Which of the thirteen operations it performs is carried beside the instruction rather than in
672    /// its name, so a pattern written for the exchange would match the add and the nand as well, and
673    /// the rule language has no way to look at what a rule matched to tell them apart.
674    ///
675    /// Giving each operation its own opcode is the other way out and is a worse trade: it is
676    /// thirteen opcodes at four widths where the IR wants one, and every pass that treats a read
677    /// modify write as one thing would then have a list of fifty two.
678    ///
679    /// So `crate::lower` writes these by name too. Three operations here, out of the thirteen: the
680    /// bitwise ones need a loop around a compare and exchange, which is control flow and so is built
681    /// before selection rather than during it, and they are the rest of `tamnd/rucc#311`.
682    const PAYLOAD: &[&str] =
683        &["xchg_8", "xchg_16", "xchg_32", "xchg_64", "xadd_8", "xadd_16", "xadd_32", "xadd_64"];
684
685    /// The instructions a frame writes rather than a rule.
686    ///
687    /// A prologue, an epilogue, a copy, a spill and a reload are not in the program. They are what
688    /// the allocator's answer costs, so they are written after it, by `crate::finish` reading
689    /// `x86_64::FRAME`. Six of the names that describes are already reachable from a rule, since a
690    /// prologue taking its frame is a subtraction and a spill is a store, and those are not here:
691    /// this is only the ones nothing else can reach.
692    const FRAME: &[&str] = &[
693        "push_64",
694        "pop_64",
695        "ret",
696        "mov_rr_64",
697        "movaps_rr",
698        // The touch a probing prologue puts on each page as it reaches it, the landing pad a
699        // prologue opens with, and the byte that does nothing which one reserves room with. All
700        // three are written by a frame and none on a command line that did not ask for it.
701        "or_mi_8",
702        "endbr64",
703        "nop",
704    ];
705
706    /// The instructions that reach the x87 stack, which are selected but not from here.
707    ///
708    /// A third kind of exemption, and the same reason all the way down the list.
709    ///
710    /// Every one of these is written by `crate::lower`, as part of a group rather than on its own.
711    /// What one of them leaves behind and the next picks up is the top of the x87 stack, which is
712    /// not a register anything allocates from and not a value a pattern could bind, so a rule
713    /// could neither match the middle of a group nor name what its replacement produced. And an
714    /// add here reads two addresses and writes a third, where one machine IR instruction carries
715    /// one addressing mode, so the group cannot be folded into a single opcode the way
716    /// `ucomisd_set_e` folds a comparison and a `setcc` either.
717    ///
718    /// So these are exempt for the reason `FRAME` is exempt rather than for the reason the list
719    /// below is, and they will stay exempt. Two of them are not reached by anything yet all the
720    /// same: `fsub_p` and `fdiv_p` are the other direction of the subtraction and the division,
721    /// which a code generator that pushed its operands the other way round would need and this one
722    /// does not. `fabs` is a third, since C spells that as a call to a library function.
723    const X87: &[&str] = &[
724        "fld_t",
725        "fstp_t",
726        "fld_s",
727        "fld_l",
728        "fild_l",
729        "fild_ll",
730        "fstp_s",
731        "fstp_l",
732        "fistp_l",
733        "fistp_ll",
734        "fnstcw",
735        "fldcw",
736        "fadd_p",
737        "fsub_p",
738        "fsubr_p",
739        "fmul_p",
740        "fdiv_p",
741        "fdivr_p",
742        "fchs",
743        "fabs",
744        "fucomip_set_a",
745        "fucomip_set_ae",
746        "fucomip_set_b",
747        "fucomip_set_be",
748        "fucomip_set_e",
749        "fucomip_set_ne",
750        "fucomip_set_p",
751        "fucomip_set_np",
752        "fucomip_set_e_and_np",
753        "fucomip_set_ne_or_p",
754    ];
755
756    /// The instructions no rule selects yet, because the rules that selected them were taken out.
757    ///
758    /// A different kind of exemption from the three above. Those say an instruction is written
759    /// somewhere a rule cannot reach and always will be. These say nobody reaches one at all right
760    /// now, and name the work that puts the rules back.
761    ///
762    /// The rules went out under `tamnd/rucc#368`. C promotes the operands of an arithmetic
763    /// operator to `int`, so a byte add and a two byte compare are things no C program asks the
764    /// back end for, and the rules at those widths sat proved and never selected over the whole
765    /// torture corpus at every optimization level. The width narrowing pass in `tamnd/rucc#375` is
766    /// what asks for them, and the rules come back with it.
767    ///
768    /// The descriptions stayed. A description says what an x86-64 instruction is, how long it is
769    /// and how it encodes, and that is true whether or not anything selects it. Taking them out
770    /// would be deleting a correct account of the machine to make a list shorter, and putting them
771    /// back is then a second thing to get right rather than a line of a rule file.
772    const NARROW: &[&str] = &[
773        // Three of the two address forms against an immediate. The `narrow` pass does write the
774        // shape, since `char c = a | 1;` narrows to a byte `or` against a byte constant, and no
775        // rule selects these yet: the constant goes into a register and the register with
776        // register rule takes it. Their `add`, `sub` and `and` siblings do have rules and are
777        // reached by the bitfield lowering, so this is six rules missing rather than a shape
778        // nothing writes.
779        "or_ri_8",
780        "or_ri_16",
781        "xor_ri_8",
782        "xor_ri_16",
783        "imul_ri_8",
784        "imul_ri_16",
785        // The shifts by a value, whose count is in `cl` whatever the width being shifted is. The
786        // same refusal for the same kind of reason: a count of twenty is a defined shift to zero
787        // at four bytes and is poison at one, so only a count that is a constant below the narrow
788        // width narrows, and that one selects the immediate forms which do have rules.
789        "shl_rcl_8",
790        "shl_rcl_16",
791        "shr_rcl_8",
792        "shr_rcl_16",
793        "sar_rcl_8",
794        "sar_rcl_16",
795    ];
796
797    /// The arithmetic that reaches memory, which [`crate::combine`] writes: the forms that read a
798    /// source out of it and the forms that leave the answer in it.
799    ///
800    /// A function rather than a list, for the reason the compare pass's exemption is taken from the
801    /// flag description rather than typed out: the pass already writes down which instructions it
802    /// can produce, and a second copy of that here would be a second opinion about one pass.
803    ///
804    /// No rule selects one of these because a rule matches a term and one of these is two terms, a
805    /// load and an arithmetic operation, put together, or three where the answer goes back to
806    /// memory. Whether they may be put together depends on what is written between them and on
807    /// whether anything else wants what the load read, and neither is a fact about any of the
808    /// terms. That is the whole reason the pass exists and the module documentation there says it
809    /// at length.
810    fn combine() -> Vec<&'static str> {
811        let loads = crate::combine::FOLDS.iter().map(|fold| fold.into);
812        // And the instruction a load on the other side comes to, which for most rows is the one
813        // above and for a comparison is the condition the other way round.
814        let swapped = crate::combine::FOLDS.iter().filter_map(|fold| fold.swapped);
815        let stores = crate::combine::UPDATES.iter().map(|update| update.into);
816        let constants = crate::combine::BUMPS.iter().map(|bump| bump.into);
817        loads.chain(swapped).chain(stores).chain(constants).collect()
818    }
819
820    #[test]
821    fn every_instruction_exempt_from_a_rule_is_one_a_frame_really_writes() {
822        // The same claim as the one about the convention, so that this list cannot grow an opcode
823        // that no frame asks for. In the order `x86_64::FRAME` names them, the copies after the
824        // return because there is one set of them per class the allocator may spill.
825        let frame = &x86_64::FRAME;
826        let mut written = vec![frame.push, frame.pop, frame.ret];
827        for class in frame.classes {
828            written.extend([class.mov, class.load, class.store]);
829        }
830        // And the touch a probing prologue puts on a page, which the target names as an option
831        // because a target with no instruction that writes an address without changing it takes
832        // every frame in one subtraction and has nothing to exempt.
833        written.extend(frame.probe.map(|probe| probe.inst));
834        // And the landing pad and the byte that does nothing, which are options for the same
835        // reason.
836        written.extend(frame.landing);
837        written.extend(frame.pad);
838        // What is left after the ones a rule already reaches, which are the loads and the stores of
839        // both register files, since those are the same instructions a program's own reads and
840        // writes of memory are. The vector pair joined them with the rules for a quad float, and a
841        // spill of one is now the same instruction as a program reading a `_Float128` variable.
842        written.retain(|opcode| !heads().contains(&format!("{PREFIX}{opcode}").as_str()));
843        assert_eq!(written, FRAME);
844    }
845
846    #[test]
847    fn every_instruction_exempt_from_a_rule_is_one_the_convention_really_writes() {
848        // An exemption list that nothing checks is a hole, since an opcode dropped into it stops
849        // being covered by either direction of the pinning. These are the ones `crate::abi` can
850        // name, at the four integer widths and the four float formats it has names for an
851        // argument in, and no others.
852        let strip = |head: &'static str| head.strip_prefix(PREFIX).expect("an x86-64 term");
853        let named = |ty| strip(crate::abi::head_of(ty).expect("every width the pseudos cover"));
854        // The second half of a pair at place one, which is the place a rule cannot name. The first
855        // half at place zero is `ret_val_*` and is reached by a rule, so it is not on this list.
856        let second = |ty| strip(crate::abi::ret_of(ty, 1).expect("every width the pseudos cover"));
857        let widths = || {
858            [8, 16, 32, 64].into_iter().map(rucc_ir::Type::int).chain(
859                [
860                    rucc_ir::Float::F16,
861                    rucc_ir::Float::F32,
862                    rucc_ir::Float::F64,
863                    rucc_ir::Float::F128,
864                ]
865                .map(rucc_ir::Type::float),
866            )
867        };
868        let written: Vec<&str> = widths()
869            .map(named)
870            .chain(widths().map(second))
871            .chain([strip(crate::abi::CALL), strip(crate::abi::CALL_REG)])
872            .collect();
873        assert_eq!(written, CONVENTION);
874    }
875
876    /// The same claim about the block layout's list, which is longer than it looks.
877    ///
878    /// A name here that the layout does not write is an opcode exempted from needing a rule and
879    /// reached by nothing, and a name the layout writes that is not here is a failing test in
880    /// `every_described_instruction_is_reachable_from_a_rule` with a misleading message. Both are
881    /// avoided by taking the list from `rucc_target::x86_64::BRANCH` rather than believing it.
882    #[test]
883    fn every_instruction_exempt_from_a_rule_is_one_the_block_layout_really_writes() {
884        let branch = &x86_64::BRANCH;
885        // Eighty entries name sixteen instructions between them, so this is a set rather than a
886        // list and both sides are sorted before they are held against each other. What the order
887        // of the list itself is for is reading it.
888        let mut written: Vec<&str> = vec![branch.test, branch.jump];
889        written.extend(branch.fused.iter().map(|fusion| fusion.cmp));
890        written.extend(branch.fused.iter().flat_map(|fusion| [fusion.if_true, fusion.if_false]));
891        written.sort_unstable();
892        written.dedup();
893        let mut exempt = LAYOUT.to_vec();
894        exempt.sort_unstable();
895        assert_eq!(written, exempt);
896    }
897
898    /// The same claim about the compare pass. What it writes is what the flag description says is
899    /// left of a comparison, so the exemption is taken from that rather than typed out twice, and
900    /// an entry added there without a rule to go with it shows up here rather than in a build that
901    /// fails somewhere else.
902    #[test]
903    fn every_instruction_exempt_from_a_rule_is_one_the_compare_pass_really_writes() {
904        let mut written: Vec<&str> =
905            x86_64::FLAGS.compares.iter().filter_map(|entry| entry.kept).collect();
906        written.sort_unstable();
907        written.dedup();
908        let mut exempt = COMPARE.to_vec();
909        exempt.sort_unstable();
910        assert_eq!(written, exempt);
911    }
912
913    /// And the same claim about the one the lowering writes, held against the name the target gave
914    /// it rather than against the spelling written above.
915    #[test]
916    fn the_instruction_a_computed_goto_is_exempt_for_is_the_one_the_target_names() {
917        assert_eq!(LABELS, [x86_64::BRANCH.indirect]);
918    }
919
920    /// The rows of the constant table that take nothing yet are exactly the narrow ones waiting on
921    /// the width narrowing, so the day `NARROW` shrinks is the day this says so.
922    ///
923    /// `crate::combine::BUMPS` has a row per instruction this machine has, which is the whole five
924    /// operations at the whole four widths. Four of those instructions arrive out of a rule that is
925    /// not written yet, so four of the rows sit there taking nothing. That is a fact worth holding
926    /// rather than a thing to notice again later.
927    #[test]
928    fn the_constant_runs_that_take_nothing_are_the_ones_no_rule_selects_yet() {
929        let written = heads();
930        let mut waiting = Vec::new();
931        for bump in crate::combine::BUMPS {
932            if !written.contains(&format!("{PREFIX}{}", bump.from).as_str()) {
933                waiting.push(bump.from);
934            }
935        }
936        assert_eq!(waiting, ["or_ri_8", "or_ri_16", "xor_ri_8", "xor_ri_16"]);
937        for from in waiting {
938            assert!(NARROW.contains(&from), "{from} is unselected and is not on the list");
939        }
940    }
941
942    #[test]
943    fn every_described_instruction_is_reachable_from_a_rule() {
944        let written = heads();
945        let combine = combine();
946        for &(opcode, _) in x86_64::INSTS {
947            if combine.contains(&opcode) {
948                continue;
949            }
950            if CONVENTION.contains(&opcode) || LAYOUT.contains(&opcode) || FRAME.contains(&opcode) {
951                continue;
952            }
953            if PEEPHOLE.contains(&opcode) {
954                continue;
955            }
956            if NARROW.contains(&opcode) || BARRIER.contains(&opcode) || X87.contains(&opcode) {
957                continue;
958            }
959            if ATOMIC.contains(&opcode) || PAYLOAD.contains(&opcode) || HINT.contains(&opcode) {
960                continue;
961            }
962            if CONDITIONAL.contains(&opcode) {
963                continue;
964            }
965            if CARRY.contains(&opcode) {
966                continue;
967            }
968            if COMPARE.contains(&opcode) || TEMPLATE.contains(&opcode) {
969                continue;
970            }
971            if SEARCH.contains(&opcode) || SWAP.contains(&opcode) || WIDE.contains(&opcode) {
972                continue;
973            }
974            if AWAY.contains(&opcode) || MEMORY.contains(&opcode) || STRING.contains(&opcode) {
975                continue;
976            }
977            if TEMPLATED.contains(&opcode) {
978                continue;
979            }
980            if LABELS.contains(&opcode) || STOP.contains(&opcode) || CELL.contains(&opcode) {
981                continue;
982            }
983            let head = format!("{PREFIX}{opcode}");
984            assert!(
985                written.contains(&head.as_str()),
986                "{opcode} is described and no rule in {} selects it",
987                TABLE.source
988            );
989        }
990    }
991
992    /// The same claim about the peephole's list, which is a claim about the target's description
993    /// rather than about this crate: every name on it is one the target really has, and every one
994    /// of them is a shorter spelling the description names, which is what says the peephole is
995    /// where it comes from. A name on the list that the peephole could never write would be an
996    /// instruction nothing writes at all, and this test is what stops that sitting there unnoticed.
997    #[test]
998    fn every_instruction_exempt_from_a_rule_is_one_the_peephole_really_writes() {
999        let tests = x86_64::SHORT.testing.iter().map(|entry| entry.into);
1000        let steps = x86_64::SHORT.stepping.iter().map(|entry| entry.into);
1001        let shorter: Vec<&str> = tests.chain(steps).collect();
1002        for &opcode in PEEPHOLE {
1003            assert!(
1004                x86_64::form(opcode).is_some(),
1005                "{opcode} is not an instruction this describes"
1006            );
1007            assert!(shorter.contains(&opcode), "{opcode} is not one the peephole writes");
1008        }
1009    }
1010
1011    /// The same claim about the barrier as the ones above make about the convention and the frame:
1012    /// the list holds instructions this target really describes, and holds only the ones that have
1013    /// no operands, since an instruction with an operand is one a rule could have been written for.
1014    #[test]
1015    fn every_instruction_exempt_from_a_rule_is_one_the_memory_model_really_writes() {
1016        for &opcode in BARRIER {
1017            let form = x86_64::form(opcode).expect("an instruction this target describes");
1018            assert!(form.operands().is_empty(), "{opcode} has operands, so a rule could name it");
1019        }
1020    }
1021
1022    /// The same claim about the instruction a program stops on, which is the barrier's shape
1023    /// exactly: no operands, because an instruction with one is an instruction a rule could have
1024    /// been written for, and no addressing mode either, because it is given nothing at all.
1025    #[test]
1026    fn the_instruction_exempt_from_a_rule_because_it_stops_the_program_is_bare() {
1027        for &opcode in STOP {
1028            let form = x86_64::form(opcode).expect("an instruction this target describes");
1029            assert!(form.operands().is_empty(), "{opcode} has operands, so a rule could name it");
1030            assert!(!form.takes_mem(), "{opcode} is given an address and stopping needs none");
1031        }
1032    }
1033
1034    /// The same claim about the hints, with the one difference between them written down. A hint is
1035    /// given an address and nothing else, so it has no operands for the reason a barrier has none
1036    /// and it does carry an addressing mode, which is what a rule would have had to match on.
1037    #[test]
1038    fn every_instruction_exempt_from_a_rule_because_it_is_a_hint_is_given_only_an_address() {
1039        for &opcode in HINT {
1040            let form = x86_64::form(opcode).expect("an instruction this target describes");
1041            assert!(form.operands().is_empty(), "{opcode} has operands, so a rule could name it");
1042            assert!(form.takes_mem(), "{opcode} is a hint about an address and is given none");
1043        }
1044    }
1045
1046    /// The same claim about the template list. An instruction is exempt for this reason exactly
1047    /// when there is nothing about it for a rule to name, and there are two ways to have nothing.
1048    /// No operands and no address, which is the hint. Or every operand fixed to one register by the
1049    /// description, which is the question put to the processor: a rule names the operands of a term
1050    /// and binds them to the values underneath it, and an operand that can be nothing but `rax` is
1051    /// not a place a value goes. Either way the whole of the claim holds, which is that there was
1052    /// nowhere else for the instruction to come from.
1053    #[test]
1054    fn every_instruction_exempt_from_a_rule_because_only_a_template_asks_for_it_is_bare() {
1055        for &opcode in TEMPLATE {
1056            let form = x86_64::form(opcode).expect("an instruction this target describes");
1057            let fixed = form
1058                .operands()
1059                .iter()
1060                .all(|desc| matches!(desc.constraint, rucc_target::Constraint::Fixed(_)));
1061            assert!(fixed, "{opcode} has an operand a rule could name");
1062            assert!(!form.takes_mem(), "{opcode} is given an address, so a rule could name it");
1063        }
1064    }
1065
1066    /// The same claim about the bit searches, read off the description that put them there and read
1067    /// both ways round. An instruction is exempt for this reason exactly when the machine describes
1068    /// it as a search, so the list cannot grow an opcode that is something else, and a search this
1069    /// target grows later cannot be left off the list and quietly go unselected with nobody saying
1070    /// why. Nothing in the rule set selects one, which is the other half of the reason and is what
1071    /// the check above would have caught in any case.
1072    #[test]
1073    fn every_instruction_exempt_from_a_rule_because_only_a_template_searches_for_a_bit_is_one() {
1074        let written = heads();
1075        for &opcode in SEARCH {
1076            let form = x86_64::form(opcode).expect("an instruction this target describes");
1077            assert_eq!(form, x86_64::Form::Search, "{opcode} is not a search");
1078            assert!(
1079                !written.contains(&format!("{PREFIX}{opcode}").as_str()),
1080                "a rule in {} selects {opcode}, which only a template asks for",
1081                TABLE.source
1082            );
1083        }
1084        for &(opcode, form) in x86_64::INSTS {
1085            if form == x86_64::Form::Search {
1086                assert!(SEARCH.contains(&opcode), "{opcode} is a search and is not on the list");
1087            }
1088        }
1089    }
1090
1091    /// The same claim about the byte reversal, read both ways round the way the searches are, and
1092    /// with the one thing that is different about it checked as well: this is the instruction of its
1093    /// shape that leaves the condition state alone, which is the whole reason it has a form rather
1094    /// than being a unary operation, so a description that stopped saying that would stop being the
1095    /// reason this list exists.
1096    #[test]
1097    fn every_instruction_exempt_from_a_rule_because_only_a_template_turns_a_register_round_is_one()
1098    {
1099        let written = heads();
1100        for &opcode in SWAP {
1101            let form = x86_64::form(opcode).expect("an instruction this target describes");
1102            // Two forms and one job. The wide reversals are one shape and the sixteen bit one is
1103            // another, because the narrow one is an exchange between the halves of a register and
1104            // has to say which register, so what they share is the answer they compute rather than
1105            // the operands they compute it from.
1106            assert!(
1107                matches!(form, x86_64::Form::Swap | x86_64::Form::SwapHalves),
1108                "{opcode} is not a byte reversal"
1109            );
1110            assert!(
1111                !(x86_64::FLAGS.writes)(opcode),
1112                "{opcode} writes the condition state, so it is a unary operation after all"
1113            );
1114            assert!(
1115                !written.contains(&format!("{PREFIX}{opcode}").as_str()),
1116                "a rule in {} selects {opcode}, which only a template asks for",
1117                TABLE.source
1118            );
1119        }
1120        for &(opcode, form) in x86_64::INSTS {
1121            if matches!(form, x86_64::Form::Swap | x86_64::Form::SwapHalves) {
1122                assert!(SWAP.contains(&opcode), "{opcode} is a reversal and is not on the list");
1123            }
1124        }
1125    }
1126
1127    /// The same claim about the two that work on a pair of registers, read both ways round and with
1128    /// the thing that puts them out of reach of a rule checked rather than asserted in prose: each
1129    /// writes two registers, and a rule replaces a term with a term, so there is no way to say the
1130    /// second answer in the rule language at all. That is the same bar the compare and exchange is
1131    /// exempt at, and this list is separate from that one because the reason it is nobody's to select
1132    /// is different: an atomic is written by name where it is needed, and nothing in this compiler
1133    /// needs one of these.
1134    #[test]
1135    fn every_instruction_exempt_from_a_rule_because_only_a_template_wants_both_halves_writes_two() {
1136        let written = heads();
1137        let both = [x86_64::Form::MulWide, x86_64::Form::DivWide];
1138        for &opcode in WIDE {
1139            let form = x86_64::form(opcode).expect("an instruction this target describes");
1140            assert!(both.contains(&form), "{opcode} works on one register rather than on a pair");
1141            let defs = form.operands().iter().filter(|desc| desc.role.is_def()).count();
1142            assert_eq!(defs, 2, "{opcode} writes {defs} registers and a pair takes two");
1143            assert!(
1144                !written.contains(&format!("{PREFIX}{opcode}").as_str()),
1145                "a rule in {} selects {opcode}, which only a template asks for",
1146                TABLE.source
1147            );
1148        }
1149        for &(opcode, form) in x86_64::INSTS {
1150            if both.contains(&form) {
1151                assert!(WIDE.contains(&opcode), "{opcode} works on a pair and is not on the list");
1152            }
1153        }
1154    }
1155
1156    /// The same claim about the carry pair, and the one thing that has to be true of them that is
1157    /// not true of anything else on any of these lists. An instruction here reads the condition
1158    /// state and writes it, which is what makes it half of a pair and not a rewrite of its own, and
1159    /// the scheduler will only keep it behind the instruction that set the bit if the target says
1160    /// it reads one.
1161    #[test]
1162    fn every_instruction_exempt_from_a_rule_because_it_reads_a_carry_says_it_reads_the_state() {
1163        let written = heads();
1164        for &opcode in CARRY {
1165            let form = x86_64::form(opcode).expect("an instruction this target describes");
1166            let pair = matches!(form, x86_64::Form::AluCarry | x86_64::Form::AluCarryI);
1167            assert!(pair, "{opcode} is not one of the pair");
1168            assert_eq!(
1169                x86_64::FLAGS.reads(opcode),
1170                Some(rucc_target::Reads::Carry),
1171                "{opcode} does not say it reads the carry, so the scheduler may move it"
1172            );
1173            assert!(
1174                (x86_64::FLAGS.writes)(opcode),
1175                "{opcode} is said to leave the condition state alone"
1176            );
1177            assert!(
1178                !written.contains(&format!("{PREFIX}{opcode}").as_str()),
1179                "a rule in {} selects {opcode}, which only a template asks for",
1180                TABLE.source
1181            );
1182        }
1183        for &(opcode, form) in x86_64::INSTS {
1184            if matches!(form, x86_64::Form::AluCarry | x86_64::Form::AluCarryI) {
1185                assert!(CARRY.contains(&opcode), "{opcode} reads a carry and is not on the list");
1186            }
1187        }
1188    }
1189
1190    /// The same claim about the conditional moves, read off the flag description the way the compare
1191    /// pass's list is taken from it rather than typed out twice. An instruction is exempt for this
1192    /// reason exactly when it reads the condition state and leaves it as it found it, which is what
1193    /// says the instruction in front of it is where its meaning comes from. One that wrote the state
1194    /// as well would be one a pattern could match on its own.
1195    #[test]
1196    fn every_instruction_exempt_from_a_rule_because_a_comparison_gives_it_its_meaning_reads_one() {
1197        for &opcode in CONDITIONAL {
1198            x86_64::form(opcode).expect("an instruction this target describes");
1199            assert!(
1200                x86_64::FLAGS.reads(opcode).is_some(),
1201                "{opcode} reads no comparison, so a rule could name it"
1202            );
1203            assert!(
1204                !(x86_64::FLAGS.writes)(opcode),
1205                "{opcode} writes the condition state, so a rule could name it"
1206            );
1207        }
1208    }
1209
1210    /// The same claim about the atomic list, read off the thing that put the entry there: an
1211    /// instruction is exempt for this reason exactly when it writes more than one value, and an
1212    /// instruction that writes one is one a rule could have been written for.
1213    #[test]
1214    fn every_instruction_exempt_from_a_rule_is_one_that_writes_more_than_one_value() {
1215        let written = heads();
1216        for &opcode in ATOMIC {
1217            let form = x86_64::form(opcode).expect("an instruction this target describes");
1218            let writes = form.operands().iter().filter(|desc| desc.role.is_def()).count();
1219            assert!(writes > 1, "{opcode} writes one value, so a rule could name it");
1220            assert!(
1221                !written.contains(&format!("{PREFIX}{opcode}").as_str()),
1222                "a rule in {} selects {opcode}, which `crate::lower` also writes by hand",
1223                TABLE.source
1224            );
1225        }
1226    }
1227
1228    /// The same claim about the payload list, read off the thing that puts an entry there.
1229    ///
1230    /// Two halves. Each of these writes one value, which is what says the reason above is not the
1231    /// reason here, so a list that grew to cover an instruction the atomic list should have had
1232    /// fails. And there really is more than one operation behind the one IR opcode, which is the
1233    /// whole of why a pattern cannot name any of them, and is a fact about the IR that would stop
1234    /// being true if the operations were ever given opcodes of their own.
1235    #[test]
1236    fn every_instruction_exempt_because_its_operation_is_beside_it_writes_one_value() {
1237        assert!(
1238            rucc_ir::RmwOp::all().count() > 1,
1239            "one operation per opcode would be a head a rule could match"
1240        );
1241        let written = heads();
1242        for &opcode in PAYLOAD {
1243            let form = x86_64::form(opcode).expect("an instruction this target describes");
1244            let writes = form.operands().iter().filter(|desc| desc.role.is_def()).count();
1245            assert_eq!(writes, 1, "{opcode} writes more than one value, so it is the other list's");
1246            assert!(
1247                !written.contains(&format!("{PREFIX}{opcode}").as_str()),
1248                "a rule in {} selects {opcode}, which `crate::lower` also writes by hand",
1249                TABLE.source
1250            );
1251        }
1252    }
1253
1254    /// The staleness rule every list in this project is kept under, on the one list here whose
1255    /// entries are meant to leave. A rule that starts selecting one of these is `tamnd/rucc#375`
1256    /// arriving, and the entry goes with it. An entry naming an instruction nothing describes is a
1257    /// misspelling, and it would sit here exempting nothing.
1258    #[test]
1259    fn an_instruction_a_rule_now_selects_is_off_the_list_of_the_ones_left_for_later() {
1260        let written = heads();
1261        for &opcode in NARROW {
1262            let head = format!("{PREFIX}{opcode}");
1263            assert!(
1264                !written.contains(&head.as_str()),
1265                "a rule in {} selects {opcode} now, so it is not waiting on tamnd/rucc#375",
1266                TABLE.source
1267            );
1268            assert!(
1269                x86_64::INSTS.iter().any(|&(described, _)| described == opcode),
1270                "{opcode} is not an instruction anything describes"
1271            );
1272        }
1273    }
1274
1275    /// The same staleness rule on the x87 pair, and one thing more that is particular to them.
1276    ///
1277    /// They are a pair. An instruction that pushes onto the x87 stack and nothing that pops off it
1278    /// again would leave the stack one deeper than the function found it, which is not a mistake
1279    /// the allocator or the block layout could catch, since neither of them knows the stack is
1280    /// there. So the two arrive together and leave together, and that is what this says.
1281    #[test]
1282    fn the_x87_stack_is_reached_by_a_pair_and_by_nothing_else() {
1283        let written = heads();
1284        for &opcode in X87 {
1285            assert!(
1286                x86_64::INSTS.iter().any(|&(described, _)| described == opcode),
1287                "{opcode} is not an instruction anything describes"
1288            );
1289            assert!(
1290                !written.contains(&format!("{PREFIX}{opcode}").as_str()),
1291                "a rule in {} selects {opcode}, which `crate::lower` also writes by hand",
1292                TABLE.source
1293            );
1294        }
1295        // One way onto the stack per format a value can be read from, one way off it per format a
1296        // value can be written to, the control word pair that is neither, and the arithmetic. The
1297        // count is here as well as in the target description because this list is what says none
1298        // of them is reachable, and a name that arrived here without its partner would be a format
1299        // this target can convert in one direction and not the other.
1300        assert_eq!(X87.len(), 30, "twelve that move a value and eighteen that work on one");
1301    }
1302}