2013-06-20 08:25:30 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-11-09 01:16:44 -06:00
|
|
|
// xfail-android: FIXME(#10381)
|
2013-11-04 00:53:01 -06:00
|
|
|
|
2013-06-20 08:25:30 -05:00
|
|
|
// compile-flags:-Z extra-debug-info
|
|
|
|
// debugger:set print pretty off
|
2013-09-06 09:00:08 -05:00
|
|
|
// debugger:rbreak zzz
|
2013-06-20 08:25:30 -05:00
|
|
|
// debugger:run
|
|
|
|
// debugger:finish
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print no_padding1
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$1 = {x = {0, 1}, y = 2, z = {3, 4, 5}}
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print no_padding2
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$2 = {x = {6, 7}, y = {{8, 9}, 10}}
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print tuple_internal_padding
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$3 = {x = {11, 12}, y = {13, 14}}
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print struct_internal_padding
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$4 = {x = {15, 16}, y = {17, 18}}
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print both_internally_padded
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$5 = {x = {19, 20, 21}, y = {22, 23}}
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print single_tuple
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$6 = {x = {24, 25, 26}}
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print tuple_padded_at_end
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$7 = {x = {27, 28}, y = {29, 30}}
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print struct_padded_at_end
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$8 = {x = {31, 32}, y = {33, 34}}
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print both_padded_at_end
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$9 = {x = {35, 36, 37}, y = {38, 39}}
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
// debugger:print mixed_padding
|
2013-06-20 08:25:30 -05:00
|
|
|
// check:$10 = {x = {{40, 41, 42}, {43, 44}}, y = {45, 46, 47, 48}}
|
|
|
|
|
2013-08-17 10:37:42 -05:00
|
|
|
#[allow(unused_variable)];
|
|
|
|
|
2013-06-20 08:25:30 -05:00
|
|
|
struct NoPadding1 {
|
|
|
|
x: (i32, i32),
|
|
|
|
y: i32,
|
|
|
|
z: (i32, i32, i32)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct NoPadding2 {
|
|
|
|
x: (i32, i32),
|
|
|
|
y: ((i32, i32), i32)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct TupleInternalPadding {
|
|
|
|
x: (i16, i32),
|
|
|
|
y: (i32, i64)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct StructInternalPadding {
|
|
|
|
x: (i16, i16),
|
|
|
|
y: (i64, i64)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct BothInternallyPadded {
|
|
|
|
x: (i16, i32, i32),
|
|
|
|
y: (i32, i64)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SingleTuple {
|
|
|
|
x: (i16, i32, i64)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct TuplePaddedAtEnd {
|
|
|
|
x: (i32, i16),
|
|
|
|
y: (i64, i32)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct StructPaddedAtEnd {
|
|
|
|
x: (i64, i64),
|
|
|
|
y: (i16, i16)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct BothPaddedAtEnd {
|
|
|
|
x: (i32, i32, i16),
|
|
|
|
y: (i64, i32)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Data-layout (padding signified by dots, one column = 2 bytes):
|
|
|
|
// [a.bbc...ddddee..ffffg.hhi...]
|
|
|
|
struct MixedPadding {
|
|
|
|
x: ((i16, i32, i16), (i64, i32)),
|
|
|
|
y: (i64, i16, i32, i16)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2013-06-20 09:45:47 -05:00
|
|
|
let no_padding1 = NoPadding1 {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (0, 1),
|
|
|
|
y: 2,
|
|
|
|
z: (3, 4, 5)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let no_padding2 = NoPadding2 {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (6, 7),
|
|
|
|
y: ((8, 9), 10)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let tuple_internal_padding = TupleInternalPadding {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (11, 12),
|
|
|
|
y: (13, 14)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let struct_internal_padding = StructInternalPadding {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (15, 16),
|
|
|
|
y: (17, 18)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let both_internally_padded = BothInternallyPadded {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (19, 20, 21),
|
|
|
|
y: (22, 23)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let single_tuple = SingleTuple {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (24, 25, 26)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let tuple_padded_at_end = TuplePaddedAtEnd {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (27, 28),
|
|
|
|
y: (29, 30)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let struct_padded_at_end = StructPaddedAtEnd {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (31, 32),
|
|
|
|
y: (33, 34)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let both_padded_at_end = BothPaddedAtEnd {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: (35, 36, 37),
|
|
|
|
y: (38, 39)
|
|
|
|
};
|
|
|
|
|
2013-06-20 09:45:47 -05:00
|
|
|
let mixed_padding = MixedPadding {
|
2013-06-20 08:25:30 -05:00
|
|
|
x: ((40, 41, 42), (43, 44)),
|
|
|
|
y: (45, 46, 47, 48)
|
|
|
|
};
|
|
|
|
|
|
|
|
zzz();
|
|
|
|
}
|
|
|
|
|
2013-08-17 10:37:42 -05:00
|
|
|
fn zzz() {()}
|