@@ -113,7 +113,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
113
113
/// See [LayoutOf::layout_of] for the original documentation.
114
114
#[ inline( always) ]
115
115
pub fn layout_of ( & self , ty : Ty < ' tcx > ) -> <Self as LayoutOfHelpers < ' tcx > >:: LayoutOfResult {
116
- let _span = enter_trace_span ! ( M , "InterpCx ::layout_of" , ty = ?ty. kind( ) ) ;
116
+ let _span = enter_trace_span ! ( M , layouting :: layout_of, ty = ?ty. kind( ) ) ;
117
117
LayoutOf :: layout_of ( self , ty)
118
118
}
119
119
@@ -126,7 +126,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
126
126
sig : ty:: PolyFnSig < ' tcx > ,
127
127
extra_args : & ' tcx ty:: List < Ty < ' tcx > > ,
128
128
) -> <Self as FnAbiOfHelpers < ' tcx > >:: FnAbiOfResult {
129
- let _span = enter_trace_span ! ( M , "InterpCx ::fn_abi_of_fn_ptr" , ?sig, ?extra_args) ;
129
+ let _span = enter_trace_span ! ( M , layouting :: fn_abi_of_fn_ptr, ?sig, ?extra_args) ;
130
130
FnAbiOf :: fn_abi_of_fn_ptr ( self , sig, extra_args)
131
131
}
132
132
@@ -139,7 +139,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
139
139
instance : ty:: Instance < ' tcx > ,
140
140
extra_args : & ' tcx ty:: List < Ty < ' tcx > > ,
141
141
) -> <Self as FnAbiOfHelpers < ' tcx > >:: FnAbiOfResult {
142
- let _span = enter_trace_span ! ( M , "InterpCx ::fn_abi_of_instance" , ?instance, ?extra_args) ;
142
+ let _span = enter_trace_span ! ( M , layouting :: fn_abi_of_instance, ?instance, ?extra_args) ;
143
143
FnAbiOf :: fn_abi_of_instance ( self , instance, extra_args)
144
144
}
145
145
}
0 commit comments