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