]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/struct-style-enum.rs
Auto merge of #82552 - GuillaumeGomez:rollup-8dn1ztn, r=GuillaumeGomez
[rust.git] / src / test / debuginfo / struct-style-enum.rs
1 // ignore-tidy-linelength
2
3 // Require a gdb or lldb that can read DW_TAG_variant_part.
4 // min-gdb-version: 8.2
5 // rust-lldb
6
7 // compile-flags:-g
8
9 // === GDB TESTS ===================================================================================
10
11 // gdb-command:set print union on
12 // gdb-command:run
13
14 // gdb-command:print case1
15 // gdbr-check:$1 = struct_style_enum::Regular::Case1{a: 0, b: 31868, c: 31868, d: 31868, e: 31868}
16
17 // gdb-command:print case2
18 // gdbr-check:$2 = struct_style_enum::Regular::Case2{a: 0, b: 286331153, c: 286331153}
19
20 // gdb-command:print case3
21 // gdbr-check:$3 = struct_style_enum::Regular::Case3{a: 0, b: 6438275382588823897}
22
23 // gdb-command:print univariant
24 // gdbr-check:$4 = struct_style_enum::Univariant::TheOnlyCase{a: -1}
25
26
27 // === LLDB TESTS ==================================================================================
28
29 // lldb-command:run
30
31 // lldb-command:print case1
32 // lldbr-check:(struct_style_enum::Regular::Case1) case1 = { a = 0 b = 31868 c = 31868 d = 31868 e = 31868 }
33
34 // lldb-command:print case2
35 // lldbr-check:(struct_style_enum::Regular::Case2) case2 = Case2 { Case1: 0, Case2: 286331153, Case3: 286331153 }
36
37 // lldb-command:print case3
38 // lldbr-check:(struct_style_enum::Regular::Case3) case3 = Case3 { Case1: 0, Case2: 6438275382588823897 }
39
40 // lldb-command:print univariant
41 // lldbr-check:(struct_style_enum::Univariant) univariant = Univariant { TheOnlyCase: TheOnlyCase { a: -1 } }
42
43 #![allow(unused_variables)]
44 #![feature(omit_gdb_pretty_printer_section)]
45 #![omit_gdb_pretty_printer_section]
46
47 use self::Regular::{Case1, Case2, Case3};
48 use self::Univariant::TheOnlyCase;
49
50 // The first element is to ensure proper alignment, irrespective of the machines word size. Since
51 // the size of the discriminant value is machine dependent, this has be taken into account when
52 // datatype layout should be predictable as in this case.
53 enum Regular {
54     Case1 { a: u64, b: u16, c: u16, d: u16, e: u16},
55     Case2 { a: u64, b: u32, c: u32},
56     Case3 { a: u64, b: u64 }
57 }
58
59 enum Univariant {
60     TheOnlyCase { a: i64 }
61 }
62
63 fn main() {
64
65     // In order to avoid endianness trouble all of the following test values consist of a single
66     // repeated byte. This way each interpretation of the union should look the same, no matter if
67     // this is a big or little endian machine.
68
69     // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
70     // 0b01111100011111000111110001111100 = 2088533116
71     // 0b0111110001111100 = 31868
72     // 0b01111100 = 124
73     let case1 = Case1 { a: 0, b: 31868, c: 31868, d: 31868, e: 31868 };
74
75     // 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441
76     // 0b00010001000100010001000100010001 = 286331153
77     // 0b0001000100010001 = 4369
78     // 0b00010001 = 17
79     let case2 = Case2 { a: 0, b: 286331153, c: 286331153 };
80
81     // 0b0101100101011001010110010101100101011001010110010101100101011001 = 6438275382588823897
82     // 0b01011001010110010101100101011001 = 1499027801
83     // 0b0101100101011001 = 22873
84     // 0b01011001 = 89
85     let case3 = Case3 { a: 0, b: 6438275382588823897 };
86
87     let univariant = TheOnlyCase { a: -1 };
88
89     zzz(); // #break
90 }
91
92 fn zzz() {()}