@@ -6,6 +6,7 @@ use crate::ty::{self, subst::SubstsRef, ReprOptions, Ty, TyCtxt, TypeFoldable};
6
6
use rustc_ast as ast;
7
7
use rustc_attr as attr;
8
8
use rustc_hir as hir;
9
+ use rustc_hir:: def_id:: DefId ;
9
10
use rustc_hir:: lang_items:: LangItem ;
10
11
use rustc_index:: bit_set:: BitSet ;
11
12
use rustc_index:: vec:: { Idx , IndexVec } ;
@@ -2762,14 +2763,22 @@ impl<'tcx> ty::Instance<'tcx> {
2762
2763
/// with `-Cpanic=abort` will look like they can't unwind when in fact they
2763
2764
/// might (from a foreign exception or similar).
2764
2765
#[ inline]
2765
- pub fn fn_can_unwind < ' tcx > (
2766
- tcx : TyCtxt < ' tcx > ,
2767
- codegen_fn_attr_flags : CodegenFnAttrFlags ,
2768
- abi : SpecAbi ,
2769
- ) -> bool {
2770
- // Special attribute for functions which can't unwind.
2771
- if codegen_fn_attr_flags. contains ( CodegenFnAttrFlags :: NEVER_UNWIND ) {
2772
- return false ;
2766
+ pub fn fn_can_unwind < ' tcx > ( tcx : TyCtxt < ' tcx > , fn_def_id : Option < DefId > , abi : SpecAbi ) -> bool {
2767
+ if let Some ( did) = fn_def_id {
2768
+ // Special attribute for functions which can't unwind.
2769
+ if tcx. codegen_fn_attrs ( did) . flags . contains ( CodegenFnAttrFlags :: NEVER_UNWIND ) {
2770
+ return false ;
2771
+ }
2772
+
2773
+ // With -Z panic-in-drop=abort, drop_in_place never unwinds.
2774
+ //
2775
+ // This is not part of `codegen_fn_attrs` as it can differ between crates
2776
+ // and therefore cannot be computed in core.
2777
+ if tcx. sess . opts . debugging_opts . panic_in_drop == PanicStrategy :: Abort {
2778
+ if Some ( did) == tcx. lang_items ( ) . drop_in_place_fn ( ) {
2779
+ return false ;
2780
+ }
2781
+ }
2773
2782
}
2774
2783
2775
2784
// Otherwise if this isn't special then unwinding is generally determined by
@@ -2991,13 +3000,7 @@ fn fn_abi_of_fn_ptr<'tcx>(
2991
3000
) -> Result < & ' tcx FnAbi < ' tcx , Ty < ' tcx > > , FnAbiError < ' tcx > > {
2992
3001
let ( param_env, ( sig, extra_args) ) = query. into_parts ( ) ;
2993
3002
2994
- LayoutCx { tcx, param_env } . fn_abi_new_uncached (
2995
- sig,
2996
- extra_args,
2997
- None ,
2998
- CodegenFnAttrFlags :: empty ( ) ,
2999
- false ,
3000
- )
3003
+ LayoutCx { tcx, param_env } . fn_abi_new_uncached ( sig, extra_args, None , None , false )
3001
3004
}
3002
3005
3003
3006
fn fn_abi_of_instance < ' tcx > (
@@ -3014,13 +3017,11 @@ fn fn_abi_of_instance<'tcx>(
3014
3017
None
3015
3018
} ;
3016
3019
3017
- let attrs = tcx. codegen_fn_attrs ( instance. def_id ( ) ) . flags ;
3018
-
3019
3020
LayoutCx { tcx, param_env } . fn_abi_new_uncached (
3020
3021
sig,
3021
3022
extra_args,
3022
3023
caller_location,
3023
- attrs ,
3024
+ Some ( instance . def_id ( ) ) ,
3024
3025
matches ! ( instance. def, ty:: InstanceDef :: Virtual ( ..) ) ,
3025
3026
)
3026
3027
}
@@ -3033,7 +3034,7 @@ impl<'tcx> LayoutCx<'tcx, TyCtxt<'tcx>> {
3033
3034
sig : ty:: PolyFnSig < ' tcx > ,
3034
3035
extra_args : & [ Ty < ' tcx > ] ,
3035
3036
caller_location : Option < Ty < ' tcx > > ,
3036
- codegen_fn_attr_flags : CodegenFnAttrFlags ,
3037
+ fn_def_id : Option < DefId > ,
3037
3038
// FIXME(eddyb) replace this with something typed, like an `enum`.
3038
3039
force_thin_self_ptr : bool ,
3039
3040
) -> Result < & ' tcx FnAbi < ' tcx , Ty < ' tcx > > , FnAbiError < ' tcx > > {
@@ -3205,7 +3206,7 @@ impl<'tcx> LayoutCx<'tcx, TyCtxt<'tcx>> {
3205
3206
c_variadic : sig. c_variadic ,
3206
3207
fixed_count : inputs. len ( ) ,
3207
3208
conv,
3208
- can_unwind : fn_can_unwind ( self . tcx ( ) , codegen_fn_attr_flags , sig. abi ) ,
3209
+ can_unwind : fn_can_unwind ( self . tcx ( ) , fn_def_id , sig. abi ) ,
3209
3210
} ;
3210
3211
self . fn_abi_adjust_for_abi ( & mut fn_abi, sig. abi ) ?;
3211
3212
debug ! ( "fn_abi_new_uncached = {:?}" , fn_abi) ;
0 commit comments