]> git.lizzy.rs Git - rust.git/blob - src/test/ui/print_type_sizes/packed.rs
Rollup merge of #57050 - RyanMarcus:master, r=zackmdavis
[rust.git] / src / test / ui / print_type_sizes / packed.rs
1 // Copyright 2016 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 // compile-flags: -Z print-type-sizes
12 // compile-pass
13
14 // This file illustrates how packing is handled; it should cause
15 // the elimination of padding that would normally be introduced
16 // to satisfy alignment desirata.
17 //
18 // It avoids using u64/i64 because on some targets that is only 4-byte
19 // aligned (while on most it is 8-byte aligned) and so the resulting
20 // padding and overall computed sizes can be quite different.
21
22 #![allow(dead_code)]
23 #![feature(start)]
24
25 #[derive(Default)]
26 #[repr(packed)]
27 struct Packed1 {
28     a: u8,
29     b: u8,
30     g: i32,
31     c: u8,
32     h: i16,
33     d: u8,
34 }
35
36 #[derive(Default)]
37 #[repr(packed(2))]
38 struct Packed2 {
39     a: u8,
40     b: u8,
41     g: i32,
42     c: u8,
43     h: i16,
44     d: u8,
45 }
46
47 #[derive(Default)]
48 #[repr(packed(2))]
49 #[repr(C)]
50 struct Packed2C {
51     a: u8,
52     b: u8,
53     g: i32,
54     c: u8,
55     h: i16,
56     d: u8,
57 }
58
59 #[derive(Default)]
60 struct Padded {
61     a: u8,
62     b: u8,
63     g: i32,
64     c: u8,
65     h: i16,
66     d: u8,
67 }
68
69 #[start]
70 fn start(_: isize, _: *const *const u8) -> isize {
71     let _c: Packed1 = Default::default();
72     let _d: Packed2 = Default::default();
73     let _e: Packed2C = Default::default();
74     let _f: Padded = Default::default();
75     0
76 }