]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/tuple-in-struct.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / debuginfo / tuple-in-struct.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
13 // min-lldb-version: 310
14
15 // compile-flags:-g
16
17 // gdb-command:run
18
19 // gdb-command:print no_padding1
20 // gdb-check:$1 = {x = {__0 = 0, __1 = 1}, y = 2, z = {__0 = 3, __1 = 4, __2 = 5}}
21 // gdb-command:print no_padding2
22 // gdb-check:$2 = {x = {__0 = 6, __1 = 7}, y = {__0 = {__0 = 8, __1 = 9}, __1 = 10}}
23
24 // gdb-command:print tuple_internal_padding
25 // gdb-check:$3 = {x = {__0 = 11, __1 = 12}, y = {__0 = 13, __1 = 14}}
26 // gdb-command:print struct_internal_padding
27 // gdb-check:$4 = {x = {__0 = 15, __1 = 16}, y = {__0 = 17, __1 = 18}}
28 // gdb-command:print both_internally_padded
29 // gdb-check:$5 = {x = {__0 = 19, __1 = 20, __2 = 21}, y = {__0 = 22, __1 = 23}}
30
31 // gdb-command:print single_tuple
32 // gdb-check:$6 = {x = {__0 = 24, __1 = 25, __2 = 26}}
33
34 // gdb-command:print tuple_padded_at_end
35 // gdb-check:$7 = {x = {__0 = 27, __1 = 28}, y = {__0 = 29, __1 = 30}}
36 // gdb-command:print struct_padded_at_end
37 // gdb-check:$8 = {x = {__0 = 31, __1 = 32}, y = {__0 = 33, __1 = 34}}
38 // gdb-command:print both_padded_at_end
39 // gdb-check:$9 = {x = {__0 = 35, __1 = 36, __2 = 37}, y = {__0 = 38, __1 = 39}}
40
41 // gdb-command:print mixed_padding
42 // gdb-check:$10 = {x = {__0 = {__0 = 40, __1 = 41, __2 = 42}, __1 = {__0 = 43, __1 = 44}}, y = {__0 = 45, __1 = 46, __2 = 47, __3 = 48}}
43
44 #![allow(unused_variables)]
45 #![feature(omit_gdb_pretty_printer_section)]
46 #![omit_gdb_pretty_printer_section]
47
48 struct NoPadding1 {
49     x: (i32, i32),
50     y: i32,
51     z: (i32, i32, i32)
52 }
53
54 struct NoPadding2 {
55     x: (i32, i32),
56     y: ((i32, i32), i32)
57 }
58
59 struct TupleInternalPadding {
60     x: (i16, i32),
61     y: (i32, i64)
62 }
63
64 struct StructInternalPadding {
65     x: (i16, i16),
66     y: (i64, i64)
67 }
68
69 struct BothInternallyPadded {
70     x: (i16, i32, i32),
71     y: (i32, i64)
72 }
73
74 struct SingleTuple {
75     x: (i16, i32, i64)
76 }
77
78 struct TuplePaddedAtEnd {
79     x: (i32, i16),
80     y: (i64, i32)
81 }
82
83 struct StructPaddedAtEnd {
84     x: (i64, i64),
85     y: (i16, i16)
86 }
87
88 struct BothPaddedAtEnd {
89     x: (i32, i32, i16),
90     y: (i64, i32)
91 }
92
93 // Data-layout (padding signified by dots, one column = 2 bytes):
94 // [a.bbc...ddddee..ffffg.hhi...]
95 struct MixedPadding {
96     x: ((i16, i32, i16), (i64, i32)),
97     y: (i64, i16, i32, i16)
98 }
99
100
101 fn main() {
102     let no_padding1 = NoPadding1 {
103         x: (0, 1),
104         y: 2,
105         z: (3, 4, 5)
106     };
107
108     let no_padding2 = NoPadding2 {
109         x: (6, 7),
110         y: ((8, 9), 10)
111     };
112
113     let tuple_internal_padding = TupleInternalPadding {
114         x: (11, 12),
115         y: (13, 14)
116     };
117
118     let struct_internal_padding = StructInternalPadding {
119         x: (15, 16),
120         y: (17, 18)
121     };
122
123     let both_internally_padded = BothInternallyPadded {
124         x: (19, 20, 21),
125         y: (22, 23)
126     };
127
128     let single_tuple = SingleTuple {
129         x: (24, 25, 26)
130     };
131
132     let tuple_padded_at_end = TuplePaddedAtEnd {
133         x: (27, 28),
134         y: (29, 30)
135     };
136
137     let struct_padded_at_end = StructPaddedAtEnd {
138         x: (31, 32),
139         y: (33, 34)
140     };
141
142     let both_padded_at_end = BothPaddedAtEnd {
143         x: (35, 36, 37),
144         y: (38, 39)
145     };
146
147     let mixed_padding = MixedPadding {
148         x: ((40, 41, 42), (43, 44)),
149         y: (45, 46, 47, 48)
150     };
151
152     zzz(); // #break
153 }
154
155 fn zzz() {()}