Auto merge of #87153 - michaelwoerister:debuginfo-names-dyn-trait-projection-bounds, r=wesleywiser
[debuginfo] Emit associated type bindings in trait object type names. This PR updates debuginfo type name generation for trait objects to include associated type bindings and auto trait bounds -- so that, for example, the debuginfo type name of `&dyn Iterator<Item=Foo>` and `&dyn Iterator<Item=Bar>` don't both map to just `&dyn Iterator` anymore. The following table shows examples of debuginfo type names before and after the PR: | type | before | after | |------|---------|-------| | `&dyn Iterator<Item=u32>>` | `&dyn Iterator` | `&dyn Iterator<Item=u32>` | | `&(dyn Iterator<Item=u32>> + Sync)` | `&dyn Iterator` | `&(dyn Iterator<Item=u32> + Sync)` | | `&(dyn SomeTrait<bool, i8, Bar=u32>> + Send)` | `&dyn SomeTrait<bool, i8>` | `&(dyn SomeTrait<bool, i8, Bar=u32>> + Send)` | For targets that need C++-like type names, we use `assoc$<Item,u32>` instead of `Item=u32`: | type | before | after | |------|---------|-------| | `&dyn Iterator<Item=u32>>` | `ref$<dyn$<Iterator> >` | `ref$<dyn$<Iterator<assoc$<Item,u32> > > >` | | `&(dyn Iterator<Item=u32>> + Sync)` | `ref$<dyn$<Iterator> >` | `ref$<dyn$<Iterator<assoc$<Item,u32> >,Sync> >` | | `&(dyn SomeTrait<bool, i8, Bar=u32>> + Send)` | `ref$<dyn$<SomeTrait<bool, i8> > >` | `ref$<dyn$<SomeTrait<bool,i8,assoc$<Bar,u32> > >,Send> >` | The PR also adds self-profiling measurements for debuginfo type name generation (re. https://github.com/rust-lang/rust/issues/86431). It looks like the compiler spends up to 0.5% of its time in that task, so the potential for optimizing it via caching seems limited. However, the perf run also shows [the biggest regression](https://perf.rust-lang.org/detailed-query.html?commit=585e91c718b0b2c5319e1fffd0ff1e62aaf7ccc2&base_commit=b9197978a90be6f7570741eabe2da175fec75375&benchmark=tokio-webpush-simple-debug&run_name=incr-unchanged) in a test case that does not even invoke the code in question. This suggests that the length of the names we generate here can affect performance by influencing how much data the linker has to copy around. Fixes https://github.com/rust-lang/rust/issues/86134.
This commit is contained in:
commit
014026d1a7
10 changed files with 183 additions and 109 deletions
|
|
@ -52,21 +52,21 @@
|
|||
// cdb-command:x a!function_names::*::impl_function*
|
||||
// cdb-check:[...] a!function_names::Mod1::TestStruct2::impl_function (void)
|
||||
// cdb-check:[...] a!function_names::TestStruct1::impl_function (void)
|
||||
// cdb-check:[...] a!function_names::GenericStruct<i32, i32>::impl_function<i32, i32> (void)
|
||||
// cdb-check:[...] a!function_names::GenericStruct<i32,i32>::impl_function<i32,i32> (void)
|
||||
|
||||
// Trait implementations
|
||||
// cdb-command:x a!function_names::*::trait_function*
|
||||
// cdb-check:[...] a!function_names::impl$3::trait_function<i32> (void)
|
||||
// cdb-check:[...] a!function_names::impl$6::trait_function<i32,1> (void)
|
||||
// cdb-check:[...] a!function_names::impl$1::trait_function (void)
|
||||
// cdb-check:[...] a!function_names::impl$6::trait_function<i32, 1> (void)
|
||||
// cdb-check:[...] a!function_names::impl$5::trait_function3<function_names::TestStruct1> (void)
|
||||
// cdb-check:[...] a!function_names::Mod1::impl$1::trait_function (void)
|
||||
|
||||
// Closure
|
||||
// cdb-command:x a!function_names::*::closure*
|
||||
// cdb-check:[...] a!function_names::impl$2::impl_function::closure$0<i32,i32> (void)
|
||||
// cdb-check:[...] a!function_names::main::closure$0 (void)
|
||||
// cdb-check:[...] a!function_names::generic_func::closure$0<i32> (void)
|
||||
// cdb-check:[...] a!function_names::impl$2::impl_function::closure$0<i32, i32> (void)
|
||||
|
||||
// Generator
|
||||
// cdb-command:x a!function_names::*::generator*
|
||||
|
|
|
|||
|
|
@ -44,21 +44,21 @@
|
|||
// cdb-command:g
|
||||
|
||||
// cdb-command:dx int_int
|
||||
// cdb-check:int_int [Type: generic_struct::AGenericStruct<i32, i32>]
|
||||
// cdb-check:int_int [Type: generic_struct::AGenericStruct<i32,i32>]
|
||||
// cdb-check:[...]key : 0 [Type: int]
|
||||
// cdb-check:[...]value : 1 [Type: int]
|
||||
// cdb-command:dx int_float
|
||||
// cdb-check:int_float [Type: generic_struct::AGenericStruct<i32, f64>]
|
||||
// cdb-check:int_float [Type: generic_struct::AGenericStruct<i32,f64>]
|
||||
// cdb-check:[...]key : 2 [Type: int]
|
||||
// cdb-check:[...]value : 3.500000 [Type: double]
|
||||
// cdb-command:dx float_int
|
||||
// cdb-check:float_int [Type: generic_struct::AGenericStruct<f64, i32>]
|
||||
// cdb-check:float_int [Type: generic_struct::AGenericStruct<f64,i32>]
|
||||
// cdb-check:[...]key : 4.500000 [Type: double]
|
||||
// cdb-check:[...]value : 5 [Type: int]
|
||||
// cdb-command:dx float_int_float
|
||||
// cdb-check:float_int_float [Type: generic_struct::AGenericStruct<f64, generic_struct::AGenericStruct<i32, f64> >]
|
||||
// cdb-check:float_int_float [Type: generic_struct::AGenericStruct<f64,generic_struct::AGenericStruct<i32,f64> >]
|
||||
// cdb-check:[...]key : 6.500000 [Type: double]
|
||||
// cdb-check:[...]value [Type: generic_struct::AGenericStruct<i32, f64>]
|
||||
// cdb-check:[...]value [Type: generic_struct::AGenericStruct<i32,f64>]
|
||||
|
||||
|
||||
#![feature(omit_gdb_pretty_printer_section)]
|
||||
|
|
|
|||
|
|
@ -87,8 +87,8 @@
|
|||
// cdb-check: [+0x000] discriminant : 0x[...] [Type: enum$<core::option::Option<alloc::string::String>, 1, [...], Some>::Discriminant$]
|
||||
|
||||
// cdb-command: dx -r2 l,!
|
||||
// cdb-check:l,! : $T2 [Type: enum$<core::result::Result<u32, enum$<msvc_pretty_enums::Empty> >, Ok>]
|
||||
// cdb-check: [+0x000] Ok [Type: enum$<core::result::Result<u32, enum$<msvc_pretty_enums::Empty> >, Ok>::Ok]
|
||||
// cdb-check:l,! : $T2 [Type: enum$<core::result::Result<u32,enum$<msvc_pretty_enums::Empty> >, Ok>]
|
||||
// cdb-check: [+0x000] Ok [Type: enum$<core::result::Result<u32,enum$<msvc_pretty_enums::Empty> >, Ok>::Ok]
|
||||
// cdb-check: [+0x000] __0 : 0x2a [Type: unsigned int]
|
||||
|
||||
pub enum CStyleEnum {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
// cdb-command: g
|
||||
|
||||
// cdb-command: dx hash_set,d
|
||||
// cdb-check:hash_set,d [...] : { len=15 } [Type: [...]::HashSet<u64, [...]>]
|
||||
// cdb-check:hash_set,d [...] : { len=15 } [Type: [...]::HashSet<u64,[...]>]
|
||||
// cdb-check: [len] : 15 [Type: [...]]
|
||||
// cdb-check: [capacity] : [...]
|
||||
// cdb-check: [[...]] [...] : 0 [Type: u64]
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
// cdb-check: [[...]] [...] : 14 [Type: u64]
|
||||
|
||||
// cdb-command: dx hash_map,d
|
||||
// cdb-check:hash_map,d [...] : { len=15 } [Type: [...]::HashMap<u64, u64, [...]>]
|
||||
// cdb-check:hash_map,d [...] : { len=15 } [Type: [...]::HashMap<u64,u64,[...]>]
|
||||
// cdb-check: [len] : 15 [Type: [...]]
|
||||
// cdb-check: [capacity] : [...]
|
||||
// cdb-check: ["0x0"] : 0 [Type: unsigned __int64]
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@
|
|||
// cdb-check: [3] : 3 [Type: int]
|
||||
|
||||
// cdb-command: dx vec,d
|
||||
// cdb-check:vec,d [...] : { len=4 } [Type: [...]::Vec<u64, alloc::alloc::Global>]
|
||||
// cdb-check:vec,d [...] : { len=4 } [Type: [...]::Vec<u64,alloc::alloc::Global>]
|
||||
// cdb-check: [len] : 4 [Type: [...]]
|
||||
// cdb-check: [capacity] : [...] [Type: [...]]
|
||||
// cdb-check: [0] : 4 [Type: unsigned __int64]
|
||||
|
|
|
|||
|
|
@ -7,11 +7,11 @@
|
|||
// cdb-command: g
|
||||
|
||||
// cdb-command: dx x,d
|
||||
// cdb-check:x,d : Ok [Type: enum$<core::result::Result<i32, str> >]
|
||||
// cdb-check:x,d : Ok [Type: enum$<core::result::Result<i32,str> >]
|
||||
// cdb-check: [...] __0 : -3 [Type: int]
|
||||
|
||||
// cdb-command: dx y
|
||||
// cdb-check:y : Err [Type: enum$<core::result::Result<i32, str> >]
|
||||
// cdb-check:y : Err [Type: enum$<core::result::Result<i32,str> >]
|
||||
// cdb-check: [...] __0 : "Some error message" [Type: str]
|
||||
|
||||
fn main()
|
||||
|
|
|
|||
|
|
@ -117,7 +117,11 @@
|
|||
// gdb-check:type = &mut dyn type_names::Trait2<type_names::mod1::mod2::Struct3, type_names::GenericStruct<usize, isize>>
|
||||
|
||||
// gdb-command:whatis no_principal_trait
|
||||
// gdb-check:type = alloc::boxed::Box<dyn core::marker::Send + core::marker::Sync, alloc::alloc::Global>
|
||||
// gdb-check:type = alloc::boxed::Box<(dyn core::marker::Send + core::marker::Sync), alloc::alloc::Global>
|
||||
|
||||
// gdb-command:whatis has_associated_type_trait
|
||||
// gdb-check:type = &(dyn type_names::Trait3<u32, AssocType=isize> + core::marker::Send)
|
||||
|
||||
|
||||
// BARE FUNCTIONS
|
||||
// gdb-command:whatis rust_fn
|
||||
|
|
@ -169,7 +173,7 @@
|
|||
// 0-sized structs appear to be optimized away in some cases, so only check the structs that do
|
||||
// actually appear.
|
||||
// cdb-command:dv /t *_struct
|
||||
// cdb-check:struct type_names::GenericStruct<enum$<type_names::mod1::Enum2>, f64> mut_generic_struct = [...]
|
||||
// cdb-check:struct type_names::GenericStruct<enum$<type_names::mod1::Enum2>,f64> mut_generic_struct = [...]
|
||||
|
||||
// ENUMS
|
||||
// cdb-command:dv /t *_enum_*
|
||||
|
|
@ -186,15 +190,15 @@
|
|||
|
||||
// BOX
|
||||
// cdb-command:dv /t box*
|
||||
// cdb-check:struct tuple$<alloc::boxed::Box<f32, alloc::alloc::Global>,i32> box1 = [...]
|
||||
// cdb-check:struct tuple$<alloc::boxed::Box<enum$<type_names::mod1::mod2::Enum3<f32> >, alloc::alloc::Global>,i32> box2 = [...]
|
||||
// cdb-check:struct tuple$<alloc::boxed::Box<f32,alloc::alloc::Global>,i32> box1 = [...]
|
||||
// cdb-check:struct tuple$<alloc::boxed::Box<enum$<type_names::mod1::mod2::Enum3<f32> >,alloc::alloc::Global>,i32> box2 = [...]
|
||||
|
||||
// REFERENCES
|
||||
// cdb-command:dv /t *ref*
|
||||
// cdb-check:struct tuple$<ref$<type_names::Struct1>,i32> ref1 = [...]
|
||||
// cdb-check:struct tuple$<ref$<type_names::GenericStruct<char, type_names::Struct1> >,i32> ref2 = [...]
|
||||
// cdb-check:struct tuple$<ref$<type_names::GenericStruct<char,type_names::Struct1> >,i32> ref2 = [...]
|
||||
// cdb-check:struct tuple$<ref_mut$<type_names::Struct1>,i32> mut_ref1 = [...]
|
||||
// cdb-check:struct tuple$<ref_mut$<type_names::GenericStruct<enum$<type_names::mod1::Enum2>, f64> >,i32> mut_ref2 = [...]
|
||||
// cdb-check:struct tuple$<ref_mut$<type_names::GenericStruct<enum$<type_names::mod1::Enum2>,f64> >,i32> mut_ref2 = [...]
|
||||
|
||||
// RAW POINTERS
|
||||
// cdb-command:dv /t *_ptr*
|
||||
|
|
@ -209,31 +213,31 @@
|
|||
// cdb-command:dv /t *vec*
|
||||
// cdb-check:struct tuple$<array$<type_names::Struct1,3>,i16> fixed_size_vec1 = [...]
|
||||
// cdb-check:struct tuple$<array$<usize,3>,i16> fixed_size_vec2 = [...]
|
||||
// cdb-check:struct alloc::vec::Vec<usize, alloc::alloc::Global> vec1 = [...]
|
||||
// cdb-check:struct alloc::vec::Vec<enum$<type_names::mod1::Enum2>, alloc::alloc::Global> vec2 = [...]
|
||||
// cdb-check:struct alloc::vec::Vec<usize,alloc::alloc::Global> vec1 = [...]
|
||||
// cdb-check:struct alloc::vec::Vec<enum$<type_names::mod1::Enum2>,alloc::alloc::Global> vec2 = [...]
|
||||
// cdb-command:dv /t slice*
|
||||
// cdb-check:struct slice$<usize> slice1 = [...]
|
||||
// cdb-check:struct slice$<enum$<type_names::mod1::Enum2> > slice2 = [...]
|
||||
|
||||
// TRAITS
|
||||
// cdb-command:dv /t *_trait
|
||||
// cdb-check:struct ref_mut$<dyn$<type_names::Trait2<type_names::mod1::mod2::Struct3, type_names::GenericStruct<usize, isize> > > > generic_mut_ref_trait = [...]
|
||||
// cdb-check:struct ref$<dyn$<type_names::Trait2<type_names::Struct1, type_names::Struct1> > > generic_ref_trait = [...]
|
||||
// cdb-check:struct alloc::boxed::Box<dyn$<type_names::Trait2<i32, type_names::mod1::Struct2> >, alloc::alloc::Global> generic_box_trait = [...]
|
||||
// cdb-check:struct alloc::boxed::Box<dyn$<type_names::Trait1>, alloc::alloc::Global> box_trait = [...]
|
||||
// cdb-check:struct ref_mut$<dyn$<type_names::Trait2<type_names::mod1::mod2::Struct3,type_names::GenericStruct<usize,isize> > > > generic_mut_ref_trait = [...]
|
||||
// cdb-check:struct ref$<dyn$<type_names::Trait2<type_names::Struct1,type_names::Struct1> > > generic_ref_trait = [...]
|
||||
// cdb-check:struct alloc::boxed::Box<dyn$<type_names::Trait2<i32,type_names::mod1::Struct2> >,alloc::alloc::Global> generic_box_trait = [...]
|
||||
// cdb-check:struct alloc::boxed::Box<dyn$<type_names::Trait1>,alloc::alloc::Global> box_trait = [...]
|
||||
// cdb-check:struct ref$<dyn$<type_names::Trait1> > ref_trait = [...]
|
||||
// cdb-check:struct ref_mut$<dyn$<type_names::Trait1> > mut_ref_trait = [...]
|
||||
// cdb-check:struct alloc::boxed::Box<dyn$<core::marker::Send, core::marker::Sync>, alloc::alloc::Global> no_principal_trait = [...]
|
||||
// cdb-check:struct ref$<dyn$<type_names::Trait3> > has_associated_type_trait = struct ref$<dyn$<type_names::Trait3> >
|
||||
// cdb-check:struct alloc::boxed::Box<dyn$<core::marker::Send,core::marker::Sync>,alloc::alloc::Global> no_principal_trait = [...]
|
||||
// cdb-check:struct ref$<dyn$<type_names::Trait3<u32,assoc$<AssocType,isize> >,core::marker::Send> > has_associated_type_trait = struct ref$<dyn$<type_names::Trait3<u32,assoc$<AssocType,isize> >,core::marker::Send> >
|
||||
|
||||
// BARE FUNCTIONS
|
||||
// cdb-command:dv /t *_fn*
|
||||
// cdb-check:struct tuple$<type_names::mod1::Struct2 (*)(type_names::GenericStruct<u16, u8>),usize> unsafe_fn_with_return_value = [...]
|
||||
// cdb-check:struct tuple$<type_names::mod1::Struct2 (*)(type_names::GenericStruct<u16,u8>),usize> unsafe_fn_with_return_value = [...]
|
||||
// cdb-check:struct tuple$<type_names::Struct1 (*)(),usize> extern_c_fn_with_return_value = [...]
|
||||
// cdb-check:struct tuple$<usize (*)(f64),usize> rust_fn_with_return_value = [...]
|
||||
// cdb-check:struct tuple$<void (*)(enum$<core::result::Result<char, f64> >),usize> unsafe_fn = [...]
|
||||
// cdb-check:struct tuple$<void (*)(enum$<core::result::Result<char,f64> >),usize> unsafe_fn = [...]
|
||||
// cdb-check:struct tuple$<void (*)(isize),usize> extern_c_fn = [...]
|
||||
// cdb-check:struct tuple$<void (*)(enum$<core::option::Option<isize> >, enum$<core::option::Option<ref$<type_names::mod1::Struct2> >, 1, [...], Some>),usize> rust_fn = [...]
|
||||
// cdb-check:struct tuple$<void (*)(enum$<core::option::Option<isize> >,enum$<core::option::Option<ref$<type_names::mod1::Struct2> >, 1, [...], Some>),usize> rust_fn = [...]
|
||||
// cdb-command:dv /t *_function*
|
||||
// cdb-check:struct tuple$<isize (*)(ptr_const$<u8>, ...),usize> variadic_function = [...]
|
||||
// cdb-check:struct tuple$<type_names::mod1::mod2::Struct3 (*)(type_names::mod1::mod2::Struct3),usize> generic_function_struct3 = [...]
|
||||
|
|
@ -306,14 +310,14 @@ trait Trait1 {
|
|||
trait Trait2<T1, T2> {
|
||||
fn dummy(&self, _: T1, _: T2) {}
|
||||
}
|
||||
trait Trait3 {
|
||||
trait Trait3<T> {
|
||||
type AssocType;
|
||||
fn dummy(&self) {}
|
||||
fn dummy(&self) -> T { panic!() }
|
||||
}
|
||||
|
||||
impl Trait1 for isize {}
|
||||
impl<T1, T2> Trait2<T1, T2> for isize {}
|
||||
impl Trait3 for isize {
|
||||
impl<T> Trait3<T> for isize {
|
||||
type AssocType = isize;
|
||||
}
|
||||
|
||||
|
|
@ -404,8 +408,8 @@ fn main() {
|
|||
let ref_trait = &0_isize as &dyn Trait1;
|
||||
let mut mut_int1 = 0_isize;
|
||||
let mut_ref_trait = (&mut mut_int1) as &mut dyn Trait1;
|
||||
let no_principal_trait = (box 0_isize) as Box<dyn Send + Sync>;
|
||||
let has_associated_type_trait = &0_isize as &dyn Trait3<AssocType = isize>;
|
||||
let no_principal_trait = (box 0_isize) as Box<(dyn Send + Sync)>;
|
||||
let has_associated_type_trait = &0_isize as &(dyn Trait3<u32, AssocType = isize> + Send);
|
||||
|
||||
let generic_box_trait = (box 0_isize) as Box<dyn Trait2<i32, mod1::Struct2>>;
|
||||
let generic_ref_trait = (&0_isize) as &dyn Trait2<Struct1, Struct1>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue