]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/generic-tuple-style-enum.rs
rollup merge of #20350: fhahn/issue-20340-rustdoc-version
[rust.git] / src / test / debuginfo / generic-tuple-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 // ignore-android: FIXME(#10381)
13 // min-lldb-version: 310
14
15 // compile-flags:-g
16
17 // === GDB TESTS ===================================================================================
18
19 // gdb-command:set print union on
20 // gdb-command:run
21
22 // gdb-command:print case1
23 // gdb-check:$1 = {{RUST$ENUM$DISR = Case1, 0, 31868, 31868, 31868, 31868}, {RUST$ENUM$DISR = Case1, 0, 2088533116, 2088533116}, {RUST$ENUM$DISR = Case1, 0, 8970181431921507452}}
24
25 // gdb-command:print case2
26 // gdb-check:$2 = {{RUST$ENUM$DISR = Case2, 0, 4369, 4369, 4369, 4369}, {RUST$ENUM$DISR = Case2, 0, 286331153, 286331153}, {RUST$ENUM$DISR = Case2, 0, 1229782938247303441}}
27
28 // gdb-command:print case3
29 // gdb-check:$3 = {{RUST$ENUM$DISR = Case3, 0, 22873, 22873, 22873, 22873}, {RUST$ENUM$DISR = Case3, 0, 1499027801, 1499027801}, {RUST$ENUM$DISR = Case3, 0, 6438275382588823897}}
30
31 // gdb-command:print univariant
32 // gdb-check:$4 = {{-1}}
33
34
35 // === LLDB TESTS ==================================================================================
36
37 // lldb-command:run
38
39 // lldb-command:print case1
40 // lldb-check:[...]$0 = Case1(0, 31868, 31868, 31868, 31868)
41
42 // lldb-command:print case2
43 // lldb-check:[...]$1 = Case2(0, 286331153, 286331153)
44
45 // lldb-command:print case3
46 // lldb-check:[...]$2 = Case3(0, 6438275382588823897)
47
48 // lldb-command:print univariant
49 // lldb-check:[...]$3 = TheOnlyCase(-1)
50
51 #![omit_gdb_pretty_printer_section]
52
53 use self::Regular::{Case1, Case2, Case3};
54 use self::Univariant::TheOnlyCase;
55
56 // NOTE: This is a copy of the non-generic test case. The `Txx` type parameters have to be
57 // substituted with something of size `xx` bits and the same alignment as an integer type of the
58 // same size.
59
60 // The first element is to ensure proper alignment, irrespective of the machines word size. Since
61 // the size of the discriminant value is machine dependent, this has be taken into account when
62 // datatype layout should be predictable as in this case.
63 enum Regular<T16, T32, T64> {
64     Case1(T64, T16, T16, T16, T16),
65     Case2(T64, T32, T32),
66     Case3(T64, T64)
67 }
68
69 enum Univariant<T64> {
70     TheOnlyCase(T64)
71 }
72
73 fn main() {
74
75     // In order to avoid endianess trouble all of the following test values consist of a single
76     // repeated byte. This way each interpretation of the union should look the same, no matter if
77     // this is a big or little endian machine.
78
79     // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
80     // 0b01111100011111000111110001111100 = 2088533116
81     // 0b0111110001111100 = 31868
82     // 0b01111100 = 124
83     let case1: Regular<u16, u32, u64> = Case1(0_u64, 31868_u16, 31868_u16, 31868_u16, 31868_u16);
84
85     // 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441
86     // 0b00010001000100010001000100010001 = 286331153
87     // 0b0001000100010001 = 4369
88     // 0b00010001 = 17
89     let case2: Regular<i16, i32, i64> = Case2(0_i64, 286331153_i32, 286331153_i32);
90
91     // 0b0101100101011001010110010101100101011001010110010101100101011001 = 6438275382588823897
92     // 0b01011001010110010101100101011001 = 1499027801
93     // 0b0101100101011001 = 22873
94     // 0b01011001 = 89
95     let case3: Regular<i16, i32, i64> = Case3(0_i64, 6438275382588823897_i64);
96
97     let univariant = TheOnlyCase(-1_i64);
98
99     zzz(); // #break
100 }
101
102 fn zzz() { () }