Skip to content

Commit d363ab2

Browse files
committed
[WIP]
1 parent 2f99d33 commit d363ab2

File tree

2 files changed

+338
-10
lines changed

2 files changed

+338
-10
lines changed

example/mini_core_hello_world.rs

Lines changed: 319 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,335 @@
55
extern_types, thread_local
66
)]
77
#![no_core]
8-
#![no_main]
98
#![allow(dead_code, non_camel_case_types)]
109

1110
extern crate mini_core;
1211

1312
use mini_core::*;
1413
use mini_core::libc::*;
1514

16-
#[no_mangle]
17-
pub extern "C" fn main(
15+
unsafe extern "C" fn my_puts(s: *const u8) {
16+
puts(s);
17+
}
18+
19+
#[lang = "termination"]
20+
trait Termination {
21+
fn report(self) -> i32;
22+
}
23+
24+
impl Termination for () {
25+
fn report(self) -> i32 {
26+
unsafe {
27+
NUM = 6 * 7 + 1 + (1u8 == 1u8) as u8; // 44
28+
*NUM_REF as i32
29+
}
30+
}
31+
}
32+
33+
trait SomeTrait {
34+
fn object_safe(&self);
35+
}
36+
37+
impl SomeTrait for &'static str {
38+
fn object_safe(&self) {
39+
unsafe {
40+
puts(*self as *const str as *const u8);
41+
}
42+
}
43+
}
44+
45+
struct NoisyDrop {
46+
text: &'static str,
47+
inner: NoisyDropInner,
48+
}
49+
50+
struct NoisyDropInner;
51+
52+
impl Drop for NoisyDrop {
53+
fn drop(&mut self) {
54+
unsafe {
55+
puts(self.text as *const str as *const u8);
56+
}
57+
}
58+
}
59+
60+
impl Drop for NoisyDropInner {
61+
fn drop(&mut self) {
62+
unsafe {
63+
puts("Inner got dropped!\0" as *const str as *const u8);
64+
}
65+
}
66+
}
67+
68+
impl SomeTrait for NoisyDrop {
69+
fn object_safe(&self) {}
70+
}
71+
72+
enum Ordering {
73+
Less = -1,
74+
Equal = 0,
75+
Greater = 1,
76+
}
77+
78+
#[lang = "start"]
79+
fn start<T: Termination + 'static>(
80+
main: fn() -> T,
1881
argc: isize,
1982
argv: *const *const u8,
2083
) -> isize {
21-
argv as usize + 8;
84+
if argc == 3 {
85+
unsafe { puts(*argv); }
86+
unsafe { puts(*((argv as usize + intrinsics::size_of::<*const u8>()) as *const *const u8)); }
87+
unsafe { puts(*((argv as usize + 2 * intrinsics::size_of::<*const u8>()) as *const *const u8)); }
88+
}
2289

90+
main().report();
2391
0
2492
}
93+
94+
static mut NUM: u8 = 6 * 7;
95+
static NUM_REF: &'static u8 = unsafe { &NUM };
96+
97+
macro_rules! assert {
98+
($e:expr) => {
99+
if !$e {
100+
panic(&(stringify!(! $e), file!(), line!(), 0));
101+
}
102+
};
103+
}
104+
105+
macro_rules! assert_eq {
106+
($l:expr, $r: expr) => {
107+
if $l != $r {
108+
panic(&(stringify!($l != $r), file!(), line!(), 0));
109+
}
110+
}
111+
}
112+
113+
struct Unique<T: ?Sized> {
114+
pointer: *const T,
115+
_marker: PhantomData<T>,
116+
}
117+
118+
impl<T: ?Sized, U: ?Sized> CoerceUnsized<Unique<U>> for Unique<T> where T: Unsize<U> {}
119+
120+
unsafe fn zeroed<T>() -> T {
121+
let mut uninit = MaybeUninit { uninit: () };
122+
intrinsics::write_bytes(&mut uninit.value.value as *mut T, 0, 1);
123+
uninit.value.value
124+
}
125+
126+
fn take_f32(_f: f32) {}
127+
fn take_unique(_u: Unique<()>) {}
128+
129+
fn main() {
130+
take_unique(Unique {
131+
pointer: 0 as *const (),
132+
_marker: PhantomData,
133+
});
134+
take_f32(0.1);
135+
136+
let slice = &[0, 1] as &[i32];
137+
let slice_ptr = slice as *const [i32] as *const i32;
138+
139+
assert_eq!(slice_ptr as usize % 4, 0);
140+
141+
//return;
142+
143+
unsafe {
144+
printf("Hello %s\n\0" as *const str as *const i8, "printf\0" as *const str as *const i8);
145+
146+
let hello: &[u8] = b"Hello\0" as &[u8; 6];
147+
let ptr: *const u8 = hello as *const [u8] as *const u8;
148+
puts(ptr);
149+
150+
let world: Box<&str> = box "World!\0";
151+
puts(*world as *const str as *const u8);
152+
world as Box<dyn SomeTrait>;
153+
154+
assert_eq!(intrinsics::bswap(0xabu8), 0xabu8);
155+
assert_eq!(intrinsics::bswap(0xddccu16), 0xccddu16);
156+
assert_eq!(intrinsics::bswap(0xffee_ddccu32), 0xccdd_eeffu32);
157+
assert_eq!(intrinsics::bswap(0x1234_5678_ffee_ddccu64), 0xccdd_eeff_7856_3412u64);
158+
159+
assert_eq!(intrinsics::size_of_val(hello) as u8, 6);
160+
161+
let chars = &['C', 'h', 'a', 'r', 's'];
162+
let chars = chars as &[char];
163+
assert_eq!(intrinsics::size_of_val(chars) as u8, 4 * 5);
164+
165+
let a: &dyn SomeTrait = &"abc\0";
166+
a.object_safe();
167+
168+
assert_eq!(intrinsics::size_of_val(a) as u8, 16);
169+
assert_eq!(intrinsics::size_of_val(&0u32) as u8, 4);
170+
171+
assert_eq!(intrinsics::min_align_of::<u16>() as u8, 2);
172+
assert_eq!(intrinsics::min_align_of_val(&a) as u8, intrinsics::min_align_of::<&str>() as u8);
173+
174+
assert!(!intrinsics::needs_drop::<u8>());
175+
assert!(intrinsics::needs_drop::<NoisyDrop>());
176+
177+
Unique {
178+
pointer: 0 as *const &str,
179+
_marker: PhantomData,
180+
} as Unique<dyn SomeTrait>;
181+
182+
struct MyDst<T: ?Sized>(T);
183+
184+
intrinsics::size_of_val(&MyDst([0u8; 4]) as &MyDst<[u8]>);
185+
186+
struct Foo {
187+
x: u8,
188+
y: !,
189+
}
190+
191+
unsafe fn uninitialized<T>() -> T {
192+
MaybeUninit { uninit: () }.value.value
193+
}
194+
195+
zeroed::<(u8, u8)>();
196+
#[allow(unreachable_code)]
197+
{
198+
if false {
199+
zeroed::<!>();
200+
zeroed::<Foo>();
201+
uninitialized::<Foo>();
202+
}
203+
}
204+
}
205+
206+
let _ = box NoisyDrop {
207+
text: "Boxed outer got dropped!\0",
208+
inner: NoisyDropInner,
209+
} as Box<dyn SomeTrait>;
210+
211+
const FUNC_REF: Option<fn()> = Some(main);
212+
match FUNC_REF {
213+
Some(_) => {},
214+
None => assert!(false),
215+
}
216+
217+
match Ordering::Less {
218+
Ordering::Less => {},
219+
_ => assert!(false),
220+
}
221+
222+
[NoisyDropInner, NoisyDropInner];
223+
224+
let x = &[0u32, 42u32] as &[u32];
225+
match x {
226+
[] => assert_eq!(0u32, 1),
227+
[_, ref y @ ..] => assert_eq!(&x[1] as *const u32 as usize, &y[0] as *const u32 as usize),
228+
}
229+
230+
assert_eq!(((|()| 42u8) as fn(()) -> u8)(()), 42);
231+
232+
extern {
233+
#[linkage = "weak"]
234+
static ABC: *const u8;
235+
}
236+
237+
{
238+
extern {
239+
#[linkage = "weak"]
240+
static ABC: *const u8;
241+
}
242+
}
243+
244+
unsafe { assert_eq!(ABC as usize, 0); }
245+
246+
&mut (|| Some(0 as *const ())) as &mut dyn FnMut() -> Option<*const ()>;
247+
248+
let f = 1000.0;
249+
assert_eq!(f as u8, 255);
250+
let f2 = -1000.0;
251+
assert_eq!(f2 as i8, -128);
252+
assert_eq!(f2 as u8, 0);
253+
254+
static ANOTHER_STATIC: &u8 = &A_STATIC;
255+
assert_eq!(*ANOTHER_STATIC, 42);
256+
257+
check_niche_behavior();
258+
259+
extern "C" {
260+
type ExternType;
261+
}
262+
263+
struct ExternTypeWrapper {
264+
_a: ExternType,
265+
}
266+
267+
let nullptr = 0 as *const ();
268+
let extern_nullptr = nullptr as *const ExternTypeWrapper;
269+
extern_nullptr as *const ();
270+
let slice_ptr = &[] as *const [u8];
271+
slice_ptr as *const u8;
272+
}
273+
274+
// Copied ui/issues/issue-61696.rs
275+
276+
pub enum Infallible {}
277+
278+
// The check that the `bool` field of `V1` is encoding a "niche variant"
279+
// (i.e. not `V1`, so `V3` or `V4`) used to be mathematically incorrect,
280+
// causing valid `V1` values to be interpreted as other variants.
281+
pub enum E1 {
282+
V1 { f: bool },
283+
V2 { f: Infallible },
284+
V3,
285+
V4,
286+
}
287+
288+
// Computing the discriminant used to be done using the niche type (here `u8`,
289+
// from the `bool` field of `V1`), overflowing for variants with large enough
290+
// indices (`V3` and `V4`), causing them to be interpreted as other variants.
291+
pub enum E2<X> {
292+
V1 { f: bool },
293+
294+
/*_00*/ _01(X), _02(X), _03(X), _04(X), _05(X), _06(X), _07(X),
295+
_08(X), _09(X), _0A(X), _0B(X), _0C(X), _0D(X), _0E(X), _0F(X),
296+
_10(X), _11(X), _12(X), _13(X), _14(X), _15(X), _16(X), _17(X),
297+
_18(X), _19(X), _1A(X), _1B(X), _1C(X), _1D(X), _1E(X), _1F(X),
298+
_20(X), _21(X), _22(X), _23(X), _24(X), _25(X), _26(X), _27(X),
299+
_28(X), _29(X), _2A(X), _2B(X), _2C(X), _2D(X), _2E(X), _2F(X),
300+
_30(X), _31(X), _32(X), _33(X), _34(X), _35(X), _36(X), _37(X),
301+
_38(X), _39(X), _3A(X), _3B(X), _3C(X), _3D(X), _3E(X), _3F(X),
302+
_40(X), _41(X), _42(X), _43(X), _44(X), _45(X), _46(X), _47(X),
303+
_48(X), _49(X), _4A(X), _4B(X), _4C(X), _4D(X), _4E(X), _4F(X),
304+
_50(X), _51(X), _52(X), _53(X), _54(X), _55(X), _56(X), _57(X),
305+
_58(X), _59(X), _5A(X), _5B(X), _5C(X), _5D(X), _5E(X), _5F(X),
306+
_60(X), _61(X), _62(X), _63(X), _64(X), _65(X), _66(X), _67(X),
307+
_68(X), _69(X), _6A(X), _6B(X), _6C(X), _6D(X), _6E(X), _6F(X),
308+
_70(X), _71(X), _72(X), _73(X), _74(X), _75(X), _76(X), _77(X),
309+
_78(X), _79(X), _7A(X), _7B(X), _7C(X), _7D(X), _7E(X), _7F(X),
310+
_80(X), _81(X), _82(X), _83(X), _84(X), _85(X), _86(X), _87(X),
311+
_88(X), _89(X), _8A(X), _8B(X), _8C(X), _8D(X), _8E(X), _8F(X),
312+
_90(X), _91(X), _92(X), _93(X), _94(X), _95(X), _96(X), _97(X),
313+
_98(X), _99(X), _9A(X), _9B(X), _9C(X), _9D(X), _9E(X), _9F(X),
314+
_A0(X), _A1(X), _A2(X), _A3(X), _A4(X), _A5(X), _A6(X), _A7(X),
315+
_A8(X), _A9(X), _AA(X), _AB(X), _AC(X), _AD(X), _AE(X), _AF(X),
316+
_B0(X), _B1(X), _B2(X), _B3(X), _B4(X), _B5(X), _B6(X), _B7(X),
317+
_B8(X), _B9(X), _BA(X), _BB(X), _BC(X), _BD(X), _BE(X), _BF(X),
318+
_C0(X), _C1(X), _C2(X), _C3(X), _C4(X), _C5(X), _C6(X), _C7(X),
319+
_C8(X), _C9(X), _CA(X), _CB(X), _CC(X), _CD(X), _CE(X), _CF(X),
320+
_D0(X), _D1(X), _D2(X), _D3(X), _D4(X), _D5(X), _D6(X), _D7(X),
321+
_D8(X), _D9(X), _DA(X), _DB(X), _DC(X), _DD(X), _DE(X), _DF(X),
322+
_E0(X), _E1(X), _E2(X), _E3(X), _E4(X), _E5(X), _E6(X), _E7(X),
323+
_E8(X), _E9(X), _EA(X), _EB(X), _EC(X), _ED(X), _EE(X), _EF(X),
324+
_F0(X), _F1(X), _F2(X), _F3(X), _F4(X), _F5(X), _F6(X), _F7(X),
325+
_F8(X), _F9(X), _FA(X), _FB(X), _FC(X), _FD(X), _FE(X), _FF(X),
326+
327+
V3,
328+
V4,
329+
}
330+
331+
fn check_niche_behavior () {
332+
if let E1::V2 { .. } = (E1::V1 { f: true }) {
333+
unsafe { intrinsics::abort(); }
334+
}
335+
336+
if let E2::V1 { .. } = E2::V3::<Infallible> {
337+
unsafe { intrinsics::abort(); }
338+
}
339+
}

src/pointer.rs

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl Pointer {
6262
fx.bcx.ins().iadd_imm(base_addr, offset)
6363
}
6464
}
65-
PointerBase::Stack(_stack_slot) => fx.bcx.ins().iconst(fx.pointer_type, 0),
65+
PointerBase::Stack(stack_slot) => fx.bcx.ins().stack_addr(fx.pointer_type, stack_slot, self.offset),
6666
PointerBase::Dangling(align) => {
6767
fx.bcx.ins().iconst(fx.pointer_type, i64::try_from(align.bytes()).unwrap())
6868
}
@@ -92,7 +92,7 @@ impl Pointer {
9292
if let Some(new_offset) = base_offset.checked_add(extra_offset){
9393
let base_addr = match self.base {
9494
PointerBase::Addr(addr) => addr,
95-
PointerBase::Stack(stack_slot) => fx.bcx.ins().iconst(fx.pointer_type, 0),
95+
PointerBase::Stack(stack_slot) => fx.bcx.ins().stack_addr(fx.pointer_type, stack_slot, 0),
9696
PointerBase::Dangling(align) => fx.bcx.ins().iconst(fx.pointer_type, i64::try_from(align.bytes()).unwrap()),
9797
};
9898
let addr = fx.bcx.ins().iadd_imm(base_addr, new_offset);
@@ -117,7 +117,7 @@ impl Pointer {
117117
offset: self.offset,
118118
},
119119
PointerBase::Stack(stack_slot) => {
120-
let base_addr = fx.bcx.ins().iconst(fx.pointer_type, 0);
120+
let base_addr = fx.bcx.ins().stack_addr(fx.pointer_type, stack_slot, self.offset);
121121
Pointer {
122122
base: PointerBase::Addr(fx.bcx.ins().iadd(base_addr, extra_offset)),
123123
offset: Offset32::new(0),
@@ -141,8 +141,12 @@ impl Pointer {
141141
) -> Value {
142142
match self.base {
143143
PointerBase::Addr(base_addr) => fx.bcx.ins().load(ty, flags, base_addr, self.offset),
144-
PointerBase::Stack(stack_slot) => {
145-
fx.bcx.ins().iconst(ty, 42)
144+
PointerBase::Stack(stack_slot) => if ty == types::I128 || ty.is_vector() {
145+
// WORKAROUND for stack_load.i128 and stack_load.iXxY not being implemented
146+
let base_addr = fx.bcx.ins().stack_addr(fx.pointer_type, stack_slot, 0);
147+
fx.bcx.ins().load(ty, flags, base_addr, self.offset)
148+
} else {
149+
fx.bcx.ins().stack_load(ty, stack_slot, self.offset)
146150
}
147151
PointerBase::Dangling(_align) => unreachable!(),
148152
}
@@ -158,7 +162,16 @@ impl Pointer {
158162
PointerBase::Addr(base_addr) => {
159163
fx.bcx.ins().store(flags, value, base_addr, self.offset);
160164
}
161-
PointerBase::Stack(stack_slot) => {}
165+
PointerBase::Stack(stack_slot) => {
166+
let val_ty = fx.bcx.func.dfg.value_type(value);
167+
if val_ty == types::I128 || val_ty.is_vector() {
168+
// WORKAROUND for stack_store.i128 and stack_store.iXxY not being implemented
169+
let base_addr = fx.bcx.ins().stack_addr(fx.pointer_type, stack_slot, 0);
170+
fx.bcx.ins().store(flags, value, base_addr, self.offset);
171+
} else {
172+
fx.bcx.ins().stack_store(value, stack_slot, self.offset);
173+
}
174+
}
162175
PointerBase::Dangling(_align) => unreachable!(),
163176
}
164177
}

0 commit comments

Comments
 (0)