Skip to content

Commit 4c58535

Browse files
committed
Auto merge of #62603 - cuviper:no-unwind-abort, r=joshtriplett
Permit unwinding through FFI by default This repeats #62505 for master (Rust 1.38+), as #58794 is not yet resolved. This is a stopgap until a stable alternative is available, like [RFC 2699](rust-lang/rfcs#2699), as long as progress is being made to that end. r? @joshtriplett
2 parents 521d784 + 367b793 commit 4c58535

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

src/librustc_mir/build/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ fn should_abort_on_panic(tcx: TyCtxt<'_>, fn_def_id: DefId, abi: Abi) -> bool {
502502
// This is a special case: some functions have a C abi but are meant to
503503
// unwind anyway. Don't stop them.
504504
match unwind_attr {
505-
None => true,
505+
None => false, // FIXME(#58794)
506506
Some(UnwindAttr::Allowed) => false,
507507
Some(UnwindAttr::Aborts) => true,
508508
}

src/test/codegen/c-variadic.rs

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#![crate_type = "lib"]
44
#![feature(c_variadic)]
5+
#![feature(unwind_attributes)]
56
#![no_std]
67
use core::ffi::VaList;
78

@@ -10,6 +11,7 @@ extern "C" {
1011
fn foreign_c_variadic_1(_: VaList, ...);
1112
}
1213

14+
#[unwind(aborts)] // FIXME(#58794)
1315
pub unsafe extern "C" fn use_foreign_c_variadic_0() {
1416
// Ensure that we correctly call foreign C-variadic functions.
1517
// CHECK: invoke void (i32, ...) @foreign_c_variadic_0(i32 0)
@@ -24,20 +26,24 @@ pub unsafe extern "C" fn use_foreign_c_variadic_0() {
2426

2527
// Ensure that we do not remove the `va_list` passed to the foreign function when
2628
// removing the "spoofed" `VaListImpl` that is used by Rust defined C-variadics.
29+
#[unwind(aborts)] // FIXME(#58794)
2730
pub unsafe extern "C" fn use_foreign_c_variadic_1_0(ap: VaList) {
2831
// CHECK: invoke void ({{.*}}*, ...) @foreign_c_variadic_1({{.*}} %ap)
2932
foreign_c_variadic_1(ap);
3033
}
3134

35+
#[unwind(aborts)] // FIXME(#58794)
3236
pub unsafe extern "C" fn use_foreign_c_variadic_1_1(ap: VaList) {
3337
// CHECK: invoke void ({{.*}}*, ...) @foreign_c_variadic_1({{.*}} %ap, i32 42)
3438
foreign_c_variadic_1(ap, 42i32);
3539
}
40+
#[unwind(aborts)] // FIXME(#58794)
3641
pub unsafe extern "C" fn use_foreign_c_variadic_1_2(ap: VaList) {
3742
// CHECK: invoke void ({{.*}}*, ...) @foreign_c_variadic_1({{.*}} %ap, i32 2, i32 42)
3843
foreign_c_variadic_1(ap, 2i32, 42i32);
3944
}
4045

46+
#[unwind(aborts)] // FIXME(#58794)
4147
pub unsafe extern "C" fn use_foreign_c_variadic_1_3(ap: VaList) {
4248
// CHECK: invoke void ({{.*}}*, ...) @foreign_c_variadic_1({{.*}} %ap, i32 2, i32 42, i32 0)
4349
foreign_c_variadic_1(ap, 2i32, 42i32, 0i32);

src/test/incremental/hashes/function_interfaces.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ pub unsafe fn make_unsafe() {}
9494
pub fn make_extern() {}
9595

9696
#[cfg(not(cfail1))]
97-
#[rustc_clean(cfg = "cfail2", except = "Hir, HirBody, mir_built, typeck_tables_of, fn_sig")]
97+
#[rustc_clean(cfg = "cfail2", except = "Hir, HirBody, typeck_tables_of, fn_sig")]
9898
#[rustc_clean(cfg = "cfail3")]
9999
pub extern "C" fn make_extern() {}
100100

src/test/incremental/hashes/inherent_impls.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ impl Foo {
263263
#[rustc_clean(cfg="cfail2")]
264264
#[rustc_clean(cfg="cfail3")]
265265
impl Foo {
266-
#[rustc_clean(cfg="cfail2", except="Hir,HirBody,mir_built,fn_sig,typeck_tables_of")]
266+
#[rustc_clean(cfg="cfail2", except="Hir,HirBody,fn_sig,typeck_tables_of")]
267267
#[rustc_clean(cfg="cfail3")]
268268
pub extern fn make_method_extern(&self) { }
269269
}

src/test/ui/abi/abort-on-c-abi.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// run-pass
22

33
#![allow(unused_must_use)]
4+
#![feature(unwind_attributes)]
45
// Since we mark some ABIs as "nounwind" to LLVM, we must make sure that
56
// we never unwind through them.
67

@@ -13,6 +14,7 @@ use std::io::prelude::*;
1314
use std::io;
1415
use std::process::{Command, Stdio};
1516

17+
#[unwind(aborts)] // FIXME(#58794)
1618
extern "C" fn panic_in_ffi() {
1719
panic!("Test");
1820
}

0 commit comments

Comments
 (0)