]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/generic-struct-style-enum.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / debuginfo / generic-struct-style-enum.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-tidy-linelength
12 // min-lldb-version: 310
13 // ignore-gdb-version: 7.11.90 - 7.12.9
14
15 // compile-flags:-g
16
17 // gdb-command:set print union on
18 // gdb-command:run
19
20 // gdb-command:print case1
21 // 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, [...]}}
22 // gdbr-check:$1 = generic_struct_style_enum::Regular::Case1{a: 0, b: 31868, c: 31868, d: 31868, e: 31868}
23
24 // gdb-command:print case2
25 // gdbg-check:$2 = {{RUST$ENUM$DISR = Case2, [...]}, {RUST$ENUM$DISR = Case2, a = 0, b = 286331153, c = 286331153}, {RUST$ENUM$DISR = Case2, [...]}}
26 // gdbr-check:$2 = generic_struct_style_enum::Regular::Case2{a: 0, b: 286331153, c: 286331153}
27
28 // gdb-command:print case3
29 // gdbg-check:$3 = {{RUST$ENUM$DISR = Case3, [...]}, {RUST$ENUM$DISR = Case3, [...]}, {RUST$ENUM$DISR = Case3, a = 0, b = 6438275382588823897}}
30 // gdbr-check:$3 = generic_struct_style_enum::Regular::Case3{a: 0, b: 6438275382588823897}
31
32 // gdb-command:print univariant
33 // gdbg-check:$4 = {{a = -1}}
34 // gdbr-check:$4 = generic_struct_style_enum::Univariant<i32>::TheOnlyCase{a: -1}
35
36
37 #![feature(omit_gdb_pretty_printer_section)]
38 #![omit_gdb_pretty_printer_section]
39
40 use self::Regular::{Case1, Case2, Case3};
41 use self::Univariant::TheOnlyCase;
42
43 // NOTE: This is a copy of the non-generic test case. The `Txx` type parameters have to be
44 // substituted with something of size `xx` bits and the same alignment as an integer type of the
45 // same size.
46
47 // The first element is to ensure proper alignment, irrespective of the machines word size. Since
48 // the size of the discriminant value is machine dependent, this has be taken into account when
49 // datatype layout should be predictable as in this case.
50 enum Regular<T16, T32, T64> {
51     Case1 { a: T64, b: T16, c: T16, d: T16, e: T16},
52     Case2 { a: T64, b: T32, c: T32},
53     Case3 { a: T64, b: T64 }
54 }
55
56 enum Univariant<T> {
57     TheOnlyCase { a: T }
58 }
59
60 fn main() {
61
62     // In order to avoid endianness trouble all of the following test values consist of a single
63     // repeated byte. This way each interpretation of the union should look the same, no matter if
64     // this is a big or little endian machine.
65
66     // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
67     // 0b01111100011111000111110001111100 = 2088533116
68     // 0b0111110001111100 = 31868
69     // 0b01111100 = 124
70     let case1: Regular<u16, u32, i64> = Case1 { a: 0, b: 31868, c: 31868, d: 31868, e: 31868 };
71
72     // 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441
73     // 0b00010001000100010001000100010001 = 286331153
74     // 0b0001000100010001 = 4369
75     // 0b00010001 = 17
76     let case2: Regular<i16, u32, i64>  = Case2 { a: 0, b: 286331153, c: 286331153 };
77
78     // 0b0101100101011001010110010101100101011001010110010101100101011001 = 6438275382588823897
79     // 0b01011001010110010101100101011001 = 1499027801
80     // 0b0101100101011001 = 22873
81     // 0b01011001 = 89
82     let case3: Regular<u16, i32, u64>  = Case3 { a: 0, b: 6438275382588823897 };
83
84     let univariant = TheOnlyCase { a: -1 };
85
86     zzz(); // #break
87 }
88
89 fn zzz() {()}