Update cdb tests for expected output
Also an fix issue with tuple type names where we can't cast to them in natvis (required by the visualizer for `HashMap`) because of peculiarities with the natvis expression evaluator.
This commit is contained in:
parent
aac8a88552
commit
721b622e07
8 changed files with 82 additions and 68 deletions
|
@ -81,11 +81,21 @@ pub fn push_debuginfo_type_name<'tcx>(
|
|||
|
||||
for component_type in component_types {
|
||||
push_debuginfo_type_name(tcx, component_type.expect_ty(), true, output, visited);
|
||||
output.push_str(", ");
|
||||
output.push(',');
|
||||
|
||||
// Natvis does not always like having spaces between parts of the type name
|
||||
// and this causes issues when we need to write a typename in natvis, for example
|
||||
// as part of a cast like the `HashMap` visualizer does.
|
||||
if !cpp_like_names {
|
||||
output.push(' ');
|
||||
}
|
||||
}
|
||||
if !component_types.is_empty() {
|
||||
output.pop();
|
||||
output.pop();
|
||||
|
||||
if !cpp_like_names {
|
||||
output.pop();
|
||||
}
|
||||
}
|
||||
|
||||
if cpp_like_names {
|
||||
|
|
|
@ -129,7 +129,7 @@
|
|||
// cdb-check:f64 : 3.500000 [Type: double]
|
||||
// cdb-command:.enable_unicode 1
|
||||
// cdb-command:dx s
|
||||
// cdb-check:s : 72 [Type: str]
|
||||
// cdb-check:s : "Hello, World!" [Type: str]
|
||||
|
||||
#![allow(unused_variables)]
|
||||
#![feature(omit_gdb_pretty_printer_section)]
|
||||
|
|
|
@ -7,43 +7,43 @@
|
|||
// so the best we can do is to make sure we are generating the right debuginfo
|
||||
|
||||
// cdb-command: dx -r2 a,!
|
||||
// cdb-check:a,! : Some({...}) [Type: enum$<core::option::Option<enum$<msvc_pretty_enums::CStyleEnum> >, 2, 16, Some>]
|
||||
// cdb-check:a,! [Type: enum$<core::option::Option<enum$<msvc_pretty_enums::CStyleEnum> >, 2, 16, Some>]
|
||||
// cdb-check: [+0x000] dataful_variant [Type: enum$<core::option::Option<enum$<msvc_pretty_enums::CStyleEnum> >, 2, 16, Some>::Some]
|
||||
// cdb-check: [+0x000] __0 : Low (0x2) [Type: msvc_pretty_enums::CStyleEnum]
|
||||
// cdb-check: [+0x000] discriminant : 0x2 [Type: enum$<core::option::Option<enum$<msvc_pretty_enums::CStyleEnum> >, 2, 16, Some>::Discriminant$]
|
||||
|
||||
// cdb-command: dx -r2 b,!
|
||||
// cdb-check:b,! : None [Type: enum$<core::option::Option<enum$<msvc_pretty_enums::CStyleEnum> >, 2, 16, Some>]
|
||||
// cdb-check:b,! [Type: enum$<core::option::Option<enum$<msvc_pretty_enums::CStyleEnum> >, 2, 16, Some>]
|
||||
// cdb-check: [+0x000] dataful_variant [Type: enum$<core::option::Option<enum$<msvc_pretty_enums::CStyleEnum> >, 2, 16, Some>::Some]
|
||||
// cdb-check: [+0x000] __0 : 0x11 [Type: msvc_pretty_enums::CStyleEnum]
|
||||
// cdb-check: [+0x000] discriminant : None (0x11) [Type: enum$<core::option::Option<enum$<msvc_pretty_enums::CStyleEnum> >, 2, 16, Some>::Discriminant$]
|
||||
|
||||
// cdb-command: dx -r2 c,!
|
||||
// cdb-check:c,! : Tag1 [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>]
|
||||
// cdb-check:c,! [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>]
|
||||
// cdb-check: [+0x000] dataful_variant [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>::Data]
|
||||
// cdb-check: [+0x000] my_data : 0x11 [Type: msvc_pretty_enums::CStyleEnum]
|
||||
// cdb-check: [+0x000] discriminant : Tag1 (0x11) [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>::Discriminant$]
|
||||
|
||||
// cdb-command: dx -r2 d,!
|
||||
// cdb-check:d,! : Data({...}) [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>]
|
||||
// cdb-check:d,! [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>]
|
||||
// cdb-check: [+0x000] dataful_variant [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>::Data]
|
||||
// cdb-check: [+0x000] my_data : High (0x10) [Type: msvc_pretty_enums::CStyleEnum]
|
||||
// cdb-check: [+0x000] discriminant : 0x10 [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>::Discriminant$]
|
||||
|
||||
// cdb-command: dx -r2 e,!
|
||||
// cdb-check:e,! : Tag2 [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>]
|
||||
// cdb-check:e,! [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>]
|
||||
// cdb-check: [+0x000] dataful_variant [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>::Data]
|
||||
// cdb-check: [+0x000] my_data : 0x13 [Type: msvc_pretty_enums::CStyleEnum]
|
||||
// cdb-check: [+0x000] discriminant : Tag2 (0x13) [Type: enum$<msvc_pretty_enums::NicheLayoutEnum, 2, 16, Data>::Discriminant$]
|
||||
|
||||
// cdb-command: dx -r2 f,!
|
||||
// cdb-check:f,! : Some({...}) [Type: enum$<core::option::Option<ref$<u32> >, 1, [...], Some>]
|
||||
// cdb-check:f,! [Type: enum$<core::option::Option<ref$<u32> >, 1, [...], Some>]
|
||||
// cdb-check: [+0x000] dataful_variant [Type: enum$<core::option::Option<ref$<u32> >, 1, [...], Some>::Some]
|
||||
// cdb-check: [+0x000] __0 : 0x[...] : 0x1 [Type: unsigned int *]
|
||||
// cdb-check: [+0x000] discriminant : 0x[...] [Type: enum$<core::option::Option<ref$<u32> >, 1, [...], Some>::Discriminant$]
|
||||
|
||||
// cdb-command: dx -r2 g,!
|
||||
// cdb-check:g,! : None [Type: enum$<core::option::Option<ref$<u32> >, 1, [...], Some>]
|
||||
// cdb-check:g,! [Type: enum$<core::option::Option<ref$<u32> >, 1, [...], Some>]
|
||||
// cdb-check: [+0x000] dataful_variant [Type: enum$<core::option::Option<ref$<u32> >, 1, [...], Some>::Some]
|
||||
// cdb-check: [+0x000] __0 : 0x0 [Type: unsigned int *]
|
||||
// cdb-check: [+0x000] discriminant : None (0x0) [Type: enum$<core::option::Option<ref$<u32> >, 1, [...], Some>::Discriminant$]
|
||||
|
@ -61,7 +61,7 @@
|
|||
// cdb-check:j : High (0x10) [Type: msvc_pretty_enums::CStyleEnum]
|
||||
|
||||
// cdb-command: dx -r2 k,!
|
||||
// cdb-check:k,! : Some({...}) [Type: enum$<core::option::Option<alloc::string::String>, 1, [...], Some>]
|
||||
// cdb-check:k,! [Type: enum$<core::option::Option<alloc::string::String>, 1, [...], Some>]
|
||||
// cdb-check: [+0x000] dataful_variant [Type: enum$<core::option::Option<alloc::string::String>, 1, [...], Some>::Some]
|
||||
// cdb-check: [+0x000] __0 [Type: alloc::string::String]
|
||||
// cdb-check: [+0x000] discriminant : 0x[...] [Type: enum$<core::option::Option<alloc::string::String>, 1, [...], Some>::Discriminant$]
|
||||
|
|
|
@ -77,6 +77,8 @@
|
|||
// cdb-command: dx hash_map,d
|
||||
// cdb-check: ["0xe"] : 14 [Type: unsigned __int64]
|
||||
|
||||
// cdb-command: dx x
|
||||
|
||||
#![allow(unused_variables)]
|
||||
use std::collections::HashSet;
|
||||
use std::collections::HashMap;
|
||||
|
@ -95,6 +97,9 @@ fn main() {
|
|||
hash_map.insert(i as u64, i as u64);
|
||||
}
|
||||
|
||||
let x = &(123u64, 456u64);
|
||||
let string = "awefawefawe".to_string();
|
||||
|
||||
zzz(); // #break
|
||||
}
|
||||
|
||||
|
|
|
@ -125,8 +125,7 @@
|
|||
|
||||
// cdb-command: dx some_string
|
||||
// NOTE: cdb fails to interpret debug info of Option enums on i686.
|
||||
// cdb-check:some_string : Some({...}) [Type: enum$<core::option::Option<alloc::string::String>, 1, [...], Some>]
|
||||
// cdb-check: [...] __0 : "IAMA optional string!" [Type: alloc::string::String]
|
||||
// cdb-check:some_string [Type: enum$<core::option::Option<alloc::string::String>, 1, [...], Some>]
|
||||
|
||||
#![allow(unused_variables)]
|
||||
use std::ffi::OsString;
|
||||
|
|
|
@ -129,38 +129,38 @@
|
|||
// cdb-command: g
|
||||
|
||||
// cdb-command:dx noPadding8,d
|
||||
// cdb-check:noPadding8,d [...]: (-100, 100) [Type: tuple$<i8, u8>]
|
||||
// cdb-check:noPadding8,d [...]: (-100, 100) [Type: tuple$<i8,u8>]
|
||||
// cdb-check:[...][0] : -100 [Type: [...]]
|
||||
// cdb-check:[...][1] : 100 [Type: [...]]
|
||||
// cdb-command:dx noPadding16,d
|
||||
// cdb-check:noPadding16,d [...]: (0, 1, 2) [Type: tuple$<i16, i16, u16>]
|
||||
// cdb-check:noPadding16,d [...]: (0, 1, 2) [Type: tuple$<i16,i16,u16>]
|
||||
// cdb-check:[...][0] : 0 [Type: [...]]
|
||||
// cdb-check:[...][1] : 1 [Type: [...]]
|
||||
// cdb-check:[...][2] : 2 [Type: [...]]
|
||||
// cdb-command:dx noPadding32,d
|
||||
// cdb-check:noPadding32,d [...]: (3, 4.5[...], 5) [Type: tuple$<i32, f32, u32>]
|
||||
// cdb-check:noPadding32,d [...]: (3, 4.5[...], 5) [Type: tuple$<i32,f32,u32>]
|
||||
// cdb-check:[...][0] : 3 [Type: [...]]
|
||||
// cdb-check:[...][1] : 4.5[...] [Type: [...]]
|
||||
// cdb-check:[...][2] : 5 [Type: [...]]
|
||||
// cdb-command:dx noPadding64,d
|
||||
// cdb-check:noPadding64,d [...]: (6, 7.5[...], 8) [Type: tuple$<i64, f64, u64>]
|
||||
// cdb-check:noPadding64,d [...]: (6, 7.5[...], 8) [Type: tuple$<i64,f64,u64>]
|
||||
// cdb-check:[...][0] : 6 [Type: [...]]
|
||||
// cdb-check:[...][1] : 7.500000 [Type: [...]]
|
||||
// cdb-check:[...][2] : 8 [Type: [...]]
|
||||
|
||||
// cdb-command:dx internalPadding1,d
|
||||
// cdb-check:internalPadding1,d [...]: (9, 10) [Type: tuple$<i16, i32>]
|
||||
// cdb-check:internalPadding1,d [...]: (9, 10) [Type: tuple$<i16,i32>]
|
||||
// cdb-check:[...][0] : 9 [Type: short]
|
||||
// cdb-check:[...][1] : 10 [Type: int]
|
||||
// cdb-command:dx internalPadding2,d
|
||||
// cdb-check:internalPadding2,d [...]: (11, 12, 13, 14) [Type: tuple$<i16, i32, u32, u64>]
|
||||
// cdb-check:internalPadding2,d [...]: (11, 12, 13, 14) [Type: tuple$<i16,i32,u32,u64>]
|
||||
// cdb-check:[...][0] : 11 [Type: [...]]
|
||||
// cdb-check:[...][1] : 12 [Type: [...]]
|
||||
// cdb-check:[...][2] : 13 [Type: [...]]
|
||||
// cdb-check:[...][3] : 14 [Type: [...]]
|
||||
|
||||
// cdb-command:dx paddingAtEnd,d
|
||||
// cdb-check:paddingAtEnd,d [...]: (15, 16) [Type: tuple$<i32, i16>]
|
||||
// cdb-check:paddingAtEnd,d [...]: (15, 16) [Type: tuple$<i32,i16>]
|
||||
// cdb-check:[...][0] : 15 [Type: [...]]
|
||||
// cdb-check:[...][1] : 16 [Type: [...]]
|
||||
|
||||
|
|
|
@ -65,64 +65,64 @@
|
|||
// cdb-command: g
|
||||
|
||||
// cdb-command:dx no_padding1,d
|
||||
// cdb-check:no_padding1,d [...]: ((0, 1), 2, 3) [Type: tuple$<tuple$<u32, u32>, u32, u32>]
|
||||
// cdb-check:[...][0] : (0, 1) [Type: tuple$<u32, u32>]
|
||||
// cdb-check:no_padding1,d [...]: ((0, 1), 2, 3) [Type: tuple$<tuple$<u32,u32>,u32,u32>]
|
||||
// cdb-check:[...][0] : (0, 1) [Type: tuple$<u32,u32>]
|
||||
// cdb-check:[...][1] : 2 [Type: [...]]
|
||||
// cdb-check:[...][2] : 3 [Type: [...]]
|
||||
// cdb-command:dx no_padding1.__0,d
|
||||
// cdb-check:no_padding1.__0,d [...]: (0, 1) [Type: tuple$<u32, u32>]
|
||||
// cdb-check:no_padding1.__0,d [...]: (0, 1) [Type: tuple$<u32,u32>]
|
||||
// cdb-check:[...][0] : 0 [Type: [...]]
|
||||
// cdb-check:[...][1] : 1 [Type: [...]]
|
||||
// cdb-command:dx no_padding2,d
|
||||
// cdb-check:no_padding2,d [...]: (4, (5, 6), 7) [Type: tuple$<u32, tuple$<u32, u32>, u32>]
|
||||
// cdb-check:no_padding2,d [...]: (4, (5, 6), 7) [Type: tuple$<u32,tuple$<u32,u32>,u32>]
|
||||
// cdb-check:[...][0] : 4 [Type: [...]]
|
||||
// cdb-check:[...][1] : (5, 6) [Type: tuple$<u32, u32>]
|
||||
// cdb-check:[...][1] : (5, 6) [Type: tuple$<u32,u32>]
|
||||
// cdb-check:[...][2] : 7 [Type: [...]]
|
||||
// cdb-command:dx no_padding2.__1,d
|
||||
// cdb-check:no_padding2.__1,d [...]: (5, 6) [Type: tuple$<u32, u32>]
|
||||
// cdb-check:no_padding2.__1,d [...]: (5, 6) [Type: tuple$<u32,u32>]
|
||||
// cdb-check:[...][0] : 5 [Type: [...]]
|
||||
// cdb-check:[...][1] : 6 [Type: [...]]
|
||||
// cdb-command:dx no_padding3,d
|
||||
// cdb-check:no_padding3,d [...]: (8, 9, (10, 11)) [Type: tuple$<u32, u32, tuple$<u32, u32> >]
|
||||
// cdb-check:no_padding3,d [...]: (8, 9, (10, 11)) [Type: tuple$<u32,u32,tuple$<u32,u32> >]
|
||||
// cdb-check:[...][0] : 8 [Type: [...]]
|
||||
// cdb-check:[...][1] : 9 [Type: [...]]
|
||||
// cdb-check:[...][2] : (10, 11) [Type: tuple$<u32, u32>]
|
||||
// cdb-check:[...][2] : (10, 11) [Type: tuple$<u32,u32>]
|
||||
// cdb-command:dx no_padding3.__2,d
|
||||
// cdb-check:no_padding3.__2,d [...]: (10, 11) [Type: tuple$<u32, u32>]
|
||||
// cdb-check:no_padding3.__2,d [...]: (10, 11) [Type: tuple$<u32,u32>]
|
||||
// cdb-check:[...][0] : 10 [Type: [...]]
|
||||
// cdb-check:[...][1] : 11 [Type: [...]]
|
||||
|
||||
// cdb-command:dx internal_padding1,d
|
||||
// cdb-check:internal_padding1,d [...]: (12, (13, 14)) [Type: tuple$<i16, tuple$<i32, i32> >]
|
||||
// cdb-check:internal_padding1,d [...]: (12, (13, 14)) [Type: tuple$<i16,tuple$<i32,i32> >]
|
||||
// cdb-check:[...][0] : 12 [Type: [...]]
|
||||
// cdb-check:[...][1] : (13, 14) [Type: tuple$<i32, i32>]
|
||||
// cdb-check:[...][1] : (13, 14) [Type: tuple$<i32,i32>]
|
||||
// cdb-command:dx internal_padding1.__1,d
|
||||
// cdb-check:internal_padding1.__1,d [...]: (13, 14) [Type: tuple$<i32, i32>]
|
||||
// cdb-check:internal_padding1.__1,d [...]: (13, 14) [Type: tuple$<i32,i32>]
|
||||
// cdb-check:[...][0] : 13 [Type: [...]]
|
||||
// cdb-check:[...][1] : 14 [Type: [...]]
|
||||
// cdb-command:dx internal_padding2,d
|
||||
// cdb-check:internal_padding2,d [...]: (15, (16, 17)) [Type: tuple$<i16, tuple$<i16, i32> >]
|
||||
// cdb-check:internal_padding2,d [...]: (15, (16, 17)) [Type: tuple$<i16,tuple$<i16,i32> >]
|
||||
// cdb-check:[...][0] : 15 [Type: [...]]
|
||||
// cdb-check:[...][1] : (16, 17) [Type: tuple$<i16, i32>]
|
||||
// cdb-check:[...][1] : (16, 17) [Type: tuple$<i16,i32>]
|
||||
// cdb-command:dx internal_padding2.__1,d
|
||||
// cdb-check:internal_padding2.__1,d [...]: (16, 17) [Type: tuple$<i16, i32>]
|
||||
// cdb-check:internal_padding2.__1,d [...]: (16, 17) [Type: tuple$<i16,i32>]
|
||||
// cdb-check:[...][0] : 16 [Type: [...]]
|
||||
// cdb-check:[...][1] : 17 [Type: [...]]
|
||||
|
||||
// cdb-command:dx padding_at_end1,d
|
||||
// cdb-check:padding_at_end1,d [...]: (18, (19, 20)) [Type: tuple$<i32, tuple$<i32, i16> >]
|
||||
// cdb-check:padding_at_end1,d [...]: (18, (19, 20)) [Type: tuple$<i32,tuple$<i32,i16> >]
|
||||
// cdb-check:[...][0] : 18 [Type: [...]]
|
||||
// cdb-check:[...][1] : (19, 20) [Type: tuple$<i32, i16>]
|
||||
// cdb-check:[...][1] : (19, 20) [Type: tuple$<i32,i16>]
|
||||
// cdb-command:dx padding_at_end1.__1,d
|
||||
// cdb-check:padding_at_end1.__1,d [...][Type: tuple$<i32, i16>]
|
||||
// cdb-check:padding_at_end1.__1,d [...][Type: tuple$<i32,i16>]
|
||||
// cdb-check:[...][0] : 19 [Type: [...]]
|
||||
// cdb-check:[...][1] : 20 [Type: [...]]
|
||||
// cdb-command:dx padding_at_end2,d
|
||||
// cdb-check:padding_at_end2,d [...]: ((21, 22), 23) [Type: tuple$<tuple$<i32, i16>, i32>]
|
||||
// cdb-check:[...][0] : (21, 22) [Type: tuple$<i32, i16>]
|
||||
// cdb-check:padding_at_end2,d [...]: ((21, 22), 23) [Type: tuple$<tuple$<i32,i16>,i32>]
|
||||
// cdb-check:[...][0] : (21, 22) [Type: tuple$<i32,i16>]
|
||||
// cdb-check:[...][1] : 23 [Type: [...]]
|
||||
// cdb-command:dx padding_at_end2.__0,d
|
||||
// cdb-check:padding_at_end2.__0,d [...]: (21, 22) [Type: tuple$<i32, i16>]
|
||||
// cdb-check:padding_at_end2.__0,d [...]: (21, 22) [Type: tuple$<i32,i16>]
|
||||
// cdb-check:[...][0] : 21 [Type: [...]]
|
||||
// cdb-check:[...][1] : 22 [Type: [...]]
|
||||
|
||||
|
|
|
@ -181,34 +181,34 @@
|
|||
|
||||
// TUPLES
|
||||
// cdb-command:dv /t tuple*
|
||||
// cdb-check:struct tuple$<u32, type_names::Struct1, enum$<type_names::mod1::mod2::Enum3<type_names::mod1::Struct2> > > tuple1 = [...]
|
||||
// cdb-check:struct tuple$<tuple$<type_names::Struct1, type_names::mod1::mod2::Struct3>, enum$<type_names::mod1::Enum2>, char> tuple2 = [...]
|
||||
// cdb-check:struct tuple$<u32,type_names::Struct1,enum$<type_names::mod1::mod2::Enum3<type_names::mod1::Struct2> > > tuple1 = [...]
|
||||
// cdb-check:struct tuple$<tuple$<type_names::Struct1,type_names::mod1::mod2::Struct3>,enum$<type_names::mod1::Enum2>,char> tuple2 = [...]
|
||||
|
||||
// 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_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$<type_names::Struct1>,i32> ref1 = [...]
|
||||
// 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 = [...]
|
||||
|
||||
// RAW POINTERS
|
||||
// cdb-command:dv /t *_ptr*
|
||||
// cdb-check:struct tuple$<ptr_mut$<type_names::Struct1>, isize> mut_ptr1 = [...]
|
||||
// cdb-check:struct tuple$<ptr_mut$<isize>, isize> mut_ptr2 = [...]
|
||||
// cdb-check:struct tuple$<ptr_mut$<enum$<type_names::mod1::mod2::Enum3<type_names::Struct1> > >, isize> mut_ptr3 = [...]
|
||||
// cdb-check:struct tuple$<ptr_const$<type_names::Struct1>, isize> const_ptr1 = [...]
|
||||
// cdb-check:struct tuple$<ptr_const$<isize>, isize> const_ptr2 = [...]
|
||||
// cdb-check:struct tuple$<ptr_const$<enum$<type_names::mod1::mod2::Enum3<type_names::Struct1> > >, isize> const_ptr3 = [...]
|
||||
// cdb-check:struct tuple$<ptr_mut$<type_names::Struct1>,isize> mut_ptr1 = [...]
|
||||
// cdb-check:struct tuple$<ptr_mut$<isize>,isize> mut_ptr2 = [...]
|
||||
// cdb-check:struct tuple$<ptr_mut$<enum$<type_names::mod1::mod2::Enum3<type_names::Struct1> > >,isize> mut_ptr3 = [...]
|
||||
// cdb-check:struct tuple$<ptr_const$<type_names::Struct1>,isize> const_ptr1 = [...]
|
||||
// cdb-check:struct tuple$<ptr_const$<isize>,isize> const_ptr2 = [...]
|
||||
// cdb-check:struct tuple$<ptr_const$<enum$<type_names::mod1::mod2::Enum3<type_names::Struct1> > >,isize> const_ptr3 = [...]
|
||||
|
||||
// VECTORS
|
||||
// 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 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-command:dv /t slice*
|
||||
|
@ -228,16 +228,16 @@
|
|||
|
||||
// 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::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 (*)(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$<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 (*)(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-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 = [...]
|
||||
// cdb-check:struct tuple$<isize (*)(isize), usize> generic_function_int = [...]
|
||||
// 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 = [...]
|
||||
// cdb-check:struct tuple$<isize (*)(isize),usize> generic_function_int = [...]
|
||||
// cdb-command:dx Debugger.State.Scripts.@"type-names.cdb".Contents.getFunctionDetails("rust_fn")
|
||||
// cdb-check:Return Type: void
|
||||
// cdb-check:Parameter Types: enum$<core::option::Option<isize> >,enum$<core::option::Option<ref$<type_names::mod1::Struct2> >, 1, [...], Some>
|
||||
|
@ -250,8 +250,8 @@
|
|||
|
||||
// CLOSURES
|
||||
// cdb-command:dv /t closure*
|
||||
// cdb-check:struct tuple$<type_names::main::closure$1, usize> closure2 = [...]
|
||||
// cdb-check:struct tuple$<type_names::main::closure$0, usize> closure1 = [...]
|
||||
// cdb-check:struct tuple$<type_names::main::closure$1,usize> closure2 = [...]
|
||||
// cdb-check:struct tuple$<type_names::main::closure$0,usize> closure1 = [...]
|
||||
|
||||
// FOREIGN TYPES
|
||||
// cdb-command:dv /t foreign*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue