]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/simple-struct.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / debuginfo / simple-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 // min-lldb-version: 310
12
13 // compile-flags:-g
14
15 // === GDB TESTS ===================================================================================
16
17 // gdb-command:print 'simple_struct::NO_PADDING_16'
18 // gdb-check:$1 = {x = 1000, y = -1001}
19
20 // gdb-command:print 'simple_struct::NO_PADDING_32'
21 // gdb-check:$2 = {x = 1, y = 2, z = 3}
22
23 // gdb-command:print 'simple_struct::NO_PADDING_64'
24 // gdb-check:$3 = {x = 4, y = 5, z = 6}
25
26 // gdb-command:print 'simple_struct::NO_PADDING_163264'
27 // gdb-check:$4 = {a = 7, b = 8, c = 9, d = 10}
28
29 // gdb-command:print 'simple_struct::INTERNAL_PADDING'
30 // gdb-check:$5 = {x = 11, y = 12}
31
32 // gdb-command:print 'simple_struct::PADDING_AT_END'
33 // gdb-check:$6 = {x = 13, y = 14}
34
35 // gdb-command:run
36
37 // gdb-command:print no_padding16
38 // gdb-check:$7 = {x = 10000, y = -10001}
39
40 // gdb-command:print no_padding32
41 // gdb-check:$8 = {x = -10002, y = -10003.5, z = 10004}
42
43 // gdb-command:print no_padding64
44 // gdb-check:$9 = {x = -10005.5, y = 10006, z = 10007}
45
46 // gdb-command:print no_padding163264
47 // gdb-check:$10 = {a = -10008, b = 10009, c = 10010, d = 10011}
48
49 // gdb-command:print internal_padding
50 // gdb-check:$11 = {x = 10012, y = -10013}
51
52 // gdb-command:print padding_at_end
53 // gdb-check:$12 = {x = -10014, y = 10015}
54
55 // gdb-command:print 'simple_struct::NO_PADDING_16'
56 // gdb-check:$13 = {x = 100, y = -101}
57
58 // gdb-command:print 'simple_struct::NO_PADDING_32'
59 // gdb-check:$14 = {x = -15, y = -16, z = 17}
60
61 // gdb-command:print 'simple_struct::NO_PADDING_64'
62 // gdb-check:$15 = {x = -18, y = 19, z = 20}
63
64 // gdb-command:print 'simple_struct::NO_PADDING_163264'
65 // gdb-check:$16 = {a = -21, b = 22, c = 23, d = 24}
66
67 // gdb-command:print 'simple_struct::INTERNAL_PADDING'
68 // gdb-check:$17 = {x = 25, y = -26}
69
70 // gdb-command:print 'simple_struct::PADDING_AT_END'
71 // gdb-check:$18 = {x = -27, y = 28}
72
73 // gdb-command:continue
74
75 // === LLDB TESTS ==================================================================================
76
77 // lldb-command:run
78
79 // lldb-command:print no_padding16
80 // lldb-check:[...]$0 = NoPadding16 { x: 10000, y: -10001 }
81
82 // lldb-command:print no_padding32
83 // lldb-check:[...]$1 = NoPadding32 { x: -10002, y: -10003.5, z: 10004 }
84
85 // lldb-command:print no_padding64
86 // lldb-check:[...]$2 = NoPadding64 { x: -10005.5, y: 10006, z: 10007 }
87
88 // lldb-command:print no_padding163264
89 // lldb-check:[...]$3 = NoPadding163264 { a: -10008, b: 10009, c: 10010, d: 10011 }
90
91 // lldb-command:print internal_padding
92 // lldb-check:[...]$4 = InternalPadding { x: 10012, y: -10013 }
93
94 // lldb-command:print padding_at_end
95 // lldb-check:[...]$5 = PaddingAtEnd { x: -10014, y: 10015 }
96
97 #![allow(unused_variables)]
98 #![allow(dead_code)]
99 #![feature(omit_gdb_pretty_printer_section)]
100 #![omit_gdb_pretty_printer_section]
101
102 struct NoPadding16 {
103     x: u16,
104     y: i16
105 }
106
107 struct NoPadding32 {
108     x: i32,
109     y: f32,
110     z: u32
111 }
112
113 struct NoPadding64 {
114     x: f64,
115     y: i64,
116     z: u64
117 }
118
119 struct NoPadding163264 {
120     a: i16,
121     b: u16,
122     c: i32,
123     d: u64
124 }
125
126 struct InternalPadding {
127     x: u16,
128     y: i64
129 }
130
131 struct PaddingAtEnd {
132     x: i64,
133     y: u16
134 }
135
136 static mut NO_PADDING_16: NoPadding16 = NoPadding16 {
137     x: 1000,
138     y: -1001
139 };
140
141 static mut NO_PADDING_32: NoPadding32 = NoPadding32 {
142     x: 1,
143     y: 2.0,
144     z: 3
145 };
146
147 static mut NO_PADDING_64: NoPadding64 = NoPadding64 {
148     x: 4.0,
149     y: 5,
150     z: 6
151 };
152
153 static mut NO_PADDING_163264: NoPadding163264 = NoPadding163264 {
154     a: 7,
155     b: 8,
156     c: 9,
157     d: 10
158 };
159
160 static mut INTERNAL_PADDING: InternalPadding = InternalPadding {
161     x: 11,
162     y: 12
163 };
164
165 static mut PADDING_AT_END: PaddingAtEnd = PaddingAtEnd {
166     x: 13,
167     y: 14
168 };
169
170 fn main() {
171     let no_padding16 = NoPadding16 { x: 10000, y: -10001 };
172     let no_padding32 = NoPadding32 { x: -10002, y: -10003.5, z: 10004 };
173     let no_padding64 = NoPadding64 { x: -10005.5, y: 10006, z: 10007 };
174     let no_padding163264 = NoPadding163264 { a: -10008, b: 10009, c: 10010, d: 10011 };
175
176     let internal_padding = InternalPadding { x: 10012, y: -10013 };
177     let padding_at_end = PaddingAtEnd { x: -10014, y: 10015 };
178
179     unsafe {
180         NO_PADDING_16.x = 100;
181         NO_PADDING_16.y = -101;
182
183         NO_PADDING_32.x = -15;
184         NO_PADDING_32.y = -16.0;
185         NO_PADDING_32.z = 17;
186
187         NO_PADDING_64.x = -18.0;
188         NO_PADDING_64.y = 19;
189         NO_PADDING_64.z = 20;
190
191         NO_PADDING_163264.a = -21;
192         NO_PADDING_163264.b = 22;
193         NO_PADDING_163264.c = 23;
194         NO_PADDING_163264.d = 24;
195
196         INTERNAL_PADDING.x = 25;
197         INTERNAL_PADDING.y = -26;
198
199         PADDING_AT_END.x = -27;
200         PADDING_AT_END.y = 28;
201     }
202
203     zzz(); // #break
204 }
205
206 fn zzz() {()}