rust/tests/mir-opt/const_prop/offset_of.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.2 KiB
Rust
Raw Normal View History

// skip-filecheck
2023-04-23 07:30:02 -05:00
// unit-test: ConstProp
2023-06-08 07:11:31 -05:00
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2022-09-11 02:37:49 -05:00
2023-11-03 08:16:47 -05:00
#![feature(offset_of, offset_of_enum)]
2022-09-11 02:37:49 -05:00
2023-04-11 18:38:00 -05:00
use std::marker::PhantomData;
2022-09-11 02:37:49 -05:00
use std::mem::offset_of;
2023-04-11 18:38:00 -05:00
struct Alpha {
x: u8,
y: u16,
z: Beta,
}
struct Beta(u8, u8);
struct Gamma<T> {
2022-09-11 02:37:49 -05:00
x: u8,
y: u16,
2023-04-11 18:38:00 -05:00
_t: T,
2022-09-11 02:37:49 -05:00
}
#[repr(C)]
2023-04-11 18:38:00 -05:00
struct Delta<T> {
_phantom: PhantomData<T>,
x: u8,
y: u16,
}
2023-08-15 14:10:45 -05:00
enum Epsilon {
A(u8, u16),
B,
C { c: u32 }
}
enum Zeta<T> {
A(T, bool),
B(char),
}
2023-04-11 18:38:00 -05:00
// EMIT_MIR offset_of.concrete.ConstProp.diff
fn concrete() {
let x = offset_of!(Alpha, x);
let y = offset_of!(Alpha, y);
let z0 = offset_of!(Alpha, z.0);
let z1 = offset_of!(Alpha, z.1);
2023-08-15 14:10:45 -05:00
let eA0 = offset_of!(Epsilon, A.0);
let eA1 = offset_of!(Epsilon, A.1);
let eC = offset_of!(Epsilon, C.c);
2023-04-11 18:38:00 -05:00
}
// EMIT_MIR offset_of.generic.ConstProp.diff
fn generic<T>() {
let gx = offset_of!(Gamma<T>, x);
let gy = offset_of!(Gamma<T>, y);
let dx = offset_of!(Delta<T>, x);
let dy = offset_of!(Delta<T>, y);
2023-08-15 14:10:45 -05:00
let zA0 = offset_of!(Zeta<T>, A.0);
let zA1 = offset_of!(Zeta<T>, A.1);
let zB = offset_of!(Zeta<T>, B.0);
2023-04-11 18:38:00 -05:00
}
2022-09-11 02:37:49 -05:00
fn main() {
2023-04-11 18:38:00 -05:00
concrete();
generic::<()>();
2022-09-11 02:37:49 -05:00
}