rust/tests/mir-opt/copy-prop
Nicholas Nethercote ac24299636 Reformat mir! macro invocations to use braces.
The `mir!` macro has multiple parts:
- An optional return type annotation.
- A sequence of zero or more local declarations.
- A mandatory starting anonymous basic block, which is brace-delimited.
- A sequence of zero of more additional named basic blocks.

Some `mir!` invocations use braces with a "block" style, like so:
```
mir! {
    let _unit: ();
    {
	let non_copy = S(42);
	let ptr = std::ptr::addr_of_mut!(non_copy);
	// Inside `callee`, the first argument and `*ptr` are basically
	// aliasing places!
	Call(_unit = callee(Move(*ptr), ptr), ReturnTo(after_call), UnwindContinue())
    }
    after_call = {
	Return()
    }
}
```
Some invocations use parens with a "block" style, like so:
```
mir!(
    let x: [i32; 2];
    let one: i32;
    {
	x = [42, 43];
	one = 1;
	x = [one, 2];
	RET = Move(x);
	Return()
    }
)
```
And some invocations uses parens with a "tighter" style, like so:
```
mir!({
    SetDiscriminant(*b, 0);
    Return()
})
```
This last style is generally used for cases where just the mandatory
starting basic block is present. Its braces are placed next to the
parens.

This commit changes all `mir!` invocations to use braces with a "block"
style. Why?

- Consistency is good.

- The contents of the invocation is a block of code, so it's odd to use
  parens. They are more normally used for function-like macros.

- Most importantly, the next commit will enable rustfmt for
  `tests/mir-opt/`. rustfmt is more aggressive about formatting macros
  that use parens than macros that use braces. Without this commit's
  changes, rustfmt would break a couple of `mir!` macro invocations that
  use braces within `tests/mir-opt` by inserting an extraneous comma.
  E.g.:
  ```
  mir!(type RET = (i32, bool);, { // extraneous comma after ';'
      RET.0 = 1;
      RET.1 = true;
      Return()
  })
  ```
  Switching those `mir!` invocations to use braces avoids that problem,
  resulting in this, which is nicer to read as well as being valid
  syntax:
  ```
  mir! {
      type RET = (i32, bool);
      {
	  RET.0 = 1;
	  RET.1 = true;
	  Return()
      }
  }
  ```
2024-06-03 13:24:44 +10:00
..
borrowed_local.borrowed.CopyProp.panic-abort.diff Use newly exposed Freeze trait. 2024-04-20 19:25:20 +00:00
borrowed_local.borrowed.CopyProp.panic-unwind.diff Use newly exposed Freeze trait. 2024-04-20 19:25:20 +00:00
borrowed_local.compare_address.CopyProp.panic-abort.diff Add tests. 2024-04-20 19:10:23 +00:00
borrowed_local.compare_address.CopyProp.panic-unwind.diff Add tests. 2024-04-20 19:10:23 +00:00
borrowed_local.non_freeze.CopyProp.panic-abort.diff Add tests. 2024-04-20 19:10:23 +00:00
borrowed_local.non_freeze.CopyProp.panic-unwind.diff Add tests. 2024-04-20 19:10:23 +00:00
borrowed_local.rs Reformat mir! macro invocations to use braces. 2024-06-03 13:24:44 +10:00
branch.foo.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
branch.foo.CopyProp.panic-unwind.diff Bless tests 2023-06-23 18:36:25 +01:00
branch.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
calls.multiple_edges.CopyProp.diff Also consider call and yield as MIR SSA. 2023-10-08 16:05:26 +00:00
calls.nrvo.CopyProp.diff Also consider call and yield as MIR SSA. 2023-10-08 16:05:26 +00:00
calls.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
copy_propagation_arg.arg_src.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
copy_propagation_arg.arg_src.CopyProp.panic-unwind.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
copy_propagation_arg.bar.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
copy_propagation_arg.bar.CopyProp.panic-unwind.diff Bless tests 2023-06-23 18:36:25 +01:00
copy_propagation_arg.baz.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
copy_propagation_arg.baz.CopyProp.panic-unwind.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
copy_propagation_arg.foo.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
copy_propagation_arg.foo.CopyProp.panic-unwind.diff Bless tests 2023-06-23 18:36:25 +01:00
copy_propagation_arg.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
custom_move_arg.f.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
custom_move_arg.f.CopyProp.panic-unwind.diff Fix validation and linting of injected MIR 2024-01-04 23:06:42 +01:00
custom_move_arg.rs Reformat mir! macro invocations to use braces. 2024-06-03 13:24:44 +10:00
cycle.main.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
cycle.main.CopyProp.panic-unwind.diff Bless tests 2023-06-23 18:36:25 +01:00
cycle.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
dead_stores_79191.f.CopyProp.after.panic-abort.mir Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
dead_stores_79191.f.CopyProp.after.panic-unwind.mir Bless tests 2023-06-23 18:36:25 +01:00
dead_stores_79191.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
dead_stores_better.f.CopyProp.after.panic-abort.mir Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
dead_stores_better.f.CopyProp.after.panic-unwind.mir Bless tests 2023-06-23 18:36:25 +01:00
dead_stores_better.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
issue_107511.main.CopyProp.panic-abort.diff Start blocks eagerly 2024-02-12 17:37:05 +01:00
issue_107511.main.CopyProp.panic-unwind.diff Start blocks eagerly 2024-02-12 17:37:05 +01:00
issue_107511.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
move_arg.f.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
move_arg.f.CopyProp.panic-unwind.diff Bless tests 2023-06-23 18:36:25 +01:00
move_arg.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
move_projection.f.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
move_projection.f.CopyProp.panic-unwind.diff Fix validation and linting of injected MIR 2024-01-04 23:06:42 +01:00
move_projection.rs Reformat mir! macro invocations to use braces. 2024-06-03 13:24:44 +10:00
mutate_through_pointer.f.CopyProp.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
mutate_through_pointer.rs Reformat mir! macro invocations to use braces. 2024-06-03 13:24:44 +10:00
non_dominate.f.CopyProp.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
non_dominate.rs Reformat mir! macro invocations to use braces. 2024-06-03 13:24:44 +10:00
partial_init.main.CopyProp.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
partial_init.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00
reborrow.demiraw.CopyProp.panic-abort.diff Remove MIR unsafe check 2024-04-03 08:50:12 +00:00
reborrow.demiraw.CopyProp.panic-unwind.diff Remove MIR unsafe check 2024-04-03 08:50:12 +00:00
reborrow.miraw.CopyProp.panic-abort.diff Remove MIR unsafe check 2024-04-03 08:50:12 +00:00
reborrow.miraw.CopyProp.panic-unwind.diff Remove MIR unsafe check 2024-04-03 08:50:12 +00:00
reborrow.remut.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
reborrow.remut.CopyProp.panic-unwind.diff Bless tests 2023-06-23 18:36:25 +01:00
reborrow.reraw.CopyProp.panic-abort.diff Remove comments from mir-opt MIR dumps 2023-06-15 15:19:11 -04:00
reborrow.reraw.CopyProp.panic-unwind.diff Bless tests 2023-06-23 18:36:25 +01:00
reborrow.rs mir-opt tests: rename unit-test -> test-mir-pass 2024-04-20 13:19:34 +02:00