rust/src/test/ui/malformed
bors 25b7648496 Auto merge of #86155 - alexcrichton:abort-on-unwind, r=nikomatsakis
rustc: Fill out remaining parts of C-unwind ABI

This commit intends to fill out some of the remaining pieces of the
C-unwind ABI. This has a number of other changes with it though to move
this design space forward a bit. Notably contained within here is:

* On `panic=unwind`, the `extern "C"` ABI is now considered as "may
  unwind". This fixes a longstanding soundness issue where if you
  `panic!()` in an `extern "C"` function defined in Rust that's actually
  UB because the LLVM representation for the function has the `nounwind`
  attribute, but then you unwind.

* Whether or not a function unwinds now mainly considers the ABI of the
  function instead of first checking the panic strategy. This fixes a
  miscompile of `extern "C-unwind"` with `panic=abort` because that ABI
  can still unwind.

* The aborting stub for non-unwinding ABIs with `panic=unwind` has been
  reimplemented. Previously this was done as a small tweak during MIR
  generation, but this has been moved to a separate and dedicated MIR
  pass. This new pass will, for appropriate functions and function
  calls, insert a `cleanup` landing pad for any function call that may
  unwind within a function that is itself not allowed to unwind. Note
  that this subtly changes some behavior from before where previously on
  an unwind which was caught-to-abort it would run active destructors in
  the function, and now it simply immediately aborts the process.

* The `#[unwind]` attribute has been removed and all users in tests and
  such are now using `C-unwind` and `#![feature(c_unwind)]`.

I think this is largely the last piece of the RFC to implement.
Unfortunately I believe this is still not stabilizable as-is because
activating the feature gate changes the behavior of the existing `extern
"C"` ABI in a way that has no replacement. My thinking for how to enable
this is that we add support for the `C-unwind` ABI on stable Rust first,
and then after it hits stable we change the behavior of the `C` ABI.
That way anyone straddling stable/beta/nightly can switch to `C-unwind`
safely.
2021-08-04 21:09:53 +00:00
..
issue-69341-malformed-derive-inert.rs expand/resolve: Turn #[derive] into a regular macro attribute 2021-02-07 20:08:45 +03:00
issue-69341-malformed-derive-inert.stderr expand/resolve: Turn #[derive] into a regular macro attribute 2021-02-07 20:08:45 +03:00
malformed-derive-entry.rs derive: avoid parse_in_attr 2019-12-06 20:37:59 +01:00
malformed-derive-entry.stderr Remove trailing whitespace from error messages 2021-08-04 10:48:30 +02:00
malformed-interpolated.rs Accept arbitrary expressions in key-value attributes at parse time 2020-12-09 21:37:32 +03:00
malformed-interpolated.stderr Accept arbitrary expressions in key-value attributes at parse time 2020-12-09 21:37:32 +03:00
malformed-meta-delim.rs parse_meta: ditch parse_in_attr 2019-12-06 21:17:18 +01:00
malformed-meta-delim.stderr parse_meta: ditch parse_in_attr 2019-12-06 21:17:18 +01:00
malformed-plugin-1.rs plugin_registrary: use normal deprecation instead of hard coded warning. 2019-10-03 07:03:01 +02:00
malformed-plugin-1.stderr rustc: Add a warning count upon completion 2020-04-11 16:15:24 +02:00
malformed-plugin-2.rs plugin_registrary: use normal deprecation instead of hard coded warning. 2019-10-03 07:03:01 +02:00
malformed-plugin-2.stderr rustc: Add a warning count upon completion 2020-04-11 16:15:24 +02:00
malformed-plugin-3.rs plugin_registrary: use normal deprecation instead of hard coded warning. 2019-10-03 07:03:01 +02:00
malformed-plugin-3.stderr Add long explanation for E0498 2021-07-27 18:06:34 +01:00
malformed-regressions.rs ill_formed_attribute_input -> deny 2019-11-06 11:10:37 +01:00
malformed-regressions.stderr #[link]: mention wasm_import_module instead of cfg 2020-03-29 17:40:04 +02:00
malformed-special-attrs.rs cfg_attr: avoid .outer_tokens 2019-12-06 20:37:59 +01:00
malformed-special-attrs.stderr expand/resolve: Turn #[derive] into a regular macro attribute 2021-02-07 20:08:45 +03:00