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