Skip to content

test Box::into_raw aliasing #1602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions tests/run-pass/box-pair-to-vec.rs

This file was deleted.

60 changes: 60 additions & 0 deletions tests/run-pass/box.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#![feature(ptr_internals)]

fn main() {
into_raw();
into_unique();
boxed_pair_to_vec();
}

fn into_raw() { unsafe {
let b = Box::new(4i32);
let r = Box::into_raw(b);

// "lose the tag"
let r2 = ((r as usize)+0) as *mut i32;
*(&mut *r2) = 7;

// Use original ptr again
*(&mut *r) = 17;
drop(Box::from_raw(r));
}}

fn into_unique() { unsafe {
let b = Box::new(4i32);
let u = Box::into_unique(b);

// "lose the tag"
let r = ((u.as_ptr() as usize)+0) as *mut i32;
*(&mut *r) = 7;

// Use original ptr again.
drop(Box::from_raw(u.as_ptr()));
}}

fn boxed_pair_to_vec() {
#[repr(C)]
#[derive(Debug)]
struct PairFoo {
fst: Foo,
snd: Foo,
}

#[derive(Debug)]
struct Foo(u64);
fn reinterstruct(box_pair: Box<PairFoo>) -> Vec<Foo> {
let ref_pair = Box::leak(box_pair) as *mut PairFoo;
let ptr_foo = unsafe { &mut (*ref_pair).fst as *mut Foo };
unsafe {
Vec::from_raw_parts(ptr_foo, 2, 2)
}
}

let pair_foo = Box::new(PairFoo {
fst: Foo(42),
snd: Foo(1337),
});
println!("pair_foo = {:?}", pair_foo);
for (n, foo) in reinterstruct(pair_foo).into_iter().enumerate() {
println!("foo #{} = {:?}", n, foo);
}
}
File renamed without changes.