]> git.lizzy.rs Git - rust.git/blob - tests/debuginfo/generic-struct-style-enum.rs
Split and inline `ShallowResolver::fold_ty`.
[rust.git] / tests / debuginfo / generic-struct-style-enum.rs
1 // min-lldb-version: 310
2
3 // Require a gdb that can read DW_TAG_variant_part.
4 // min-gdb-version: 8.2
5
6 // compile-flags:-g
7
8 // gdb-command:set print union on
9 // gdb-command:run
10
11 // gdb-command:print case1
12 // gdbr-check:$1 = generic_struct_style_enum::Regular<u16, u32, i64>::Case1{a: 0, b: 31868, c: 31868, d: 31868, e: 31868}
13
14 // gdb-command:print case2
15 // gdbr-check:$2 = generic_struct_style_enum::Regular<i16, u32, i64>::Case2{a: 0, b: 286331153, c: 286331153}
16
17 // gdb-command:print case3
18 // gdbr-check:$3 = generic_struct_style_enum::Regular<u16, i32, u64>::Case3{a: 0, b: 6438275382588823897}
19
20 // gdb-command:print univariant
21 // gdbr-check:$4 = generic_struct_style_enum::Univariant<i32>::TheOnlyCase{a: -1}
22
23
24 #![feature(omit_gdb_pretty_printer_section)]
25 #![omit_gdb_pretty_printer_section]
26
27 use self::Regular::{Case1, Case2, Case3};
28 use self::Univariant::TheOnlyCase;
29
30 // NOTE: This is a copy of the non-generic test case. The `Txx` type parameters have to be
31 // substituted with something of size `xx` bits and the same alignment as an integer type of the
32 // same size.
33
34 // The first element is to ensure proper alignment, irrespective of the machines word size. Since
35 // the size of the discriminant value is machine dependent, this has be taken into account when
36 // datatype layout should be predictable as in this case.
37 enum Regular<T16, T32, T64> {
38     Case1 { a: T64, b: T16, c: T16, d: T16, e: T16},
39     Case2 { a: T64, b: T32, c: T32},
40     Case3 { a: T64, b: T64 }
41 }
42
43 enum Univariant<T> {
44     TheOnlyCase { a: T }
45 }
46
47 fn main() {
48
49     // In order to avoid endianness trouble all of the following test values consist of a single
50     // repeated byte. This way each interpretation of the union should look the same, no matter if
51     // this is a big or little endian machine.
52
53     // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
54     // 0b01111100011111000111110001111100 = 2088533116
55     // 0b0111110001111100 = 31868
56     // 0b01111100 = 124
57     let case1: Regular<u16, u32, i64> = Case1 { a: 0, b: 31868, c: 31868, d: 31868, e: 31868 };
58
59     // 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441
60     // 0b00010001000100010001000100010001 = 286331153
61     // 0b0001000100010001 = 4369
62     // 0b00010001 = 17
63     let case2: Regular<i16, u32, i64>  = Case2 { a: 0, b: 286331153, c: 286331153 };
64
65     // 0b0101100101011001010110010101100101011001010110010101100101011001 = 6438275382588823897
66     // 0b01011001010110010101100101011001 = 1499027801
67     // 0b0101100101011001 = 22873
68     // 0b01011001 = 89
69     let case3: Regular<u16, i32, u64>  = Case3 { a: 0, b: 6438275382588823897 };
70
71     let univariant = TheOnlyCase { a: -1 };
72
73     zzz(); // #break
74 }
75
76 fn zzz() {()}