]> git.lizzy.rs Git - rust.git/blob - example/mini_core_hello_world.rs
Update Cranelift
[rust.git] / example / mini_core_hello_world.rs
1 #![feature(
2     no_core, start, lang_items, box_syntax, never_type, linkage,
3     extern_types, thread_local
4 )]
5 #![no_core]
6 #![allow(dead_code, non_camel_case_types)]
7
8 extern crate mini_core;
9
10 use mini_core::*;
11 use mini_core::libc::*;
12
13 unsafe extern "C" fn my_puts(s: *const i8) {
14     puts(s);
15 }
16
17 #[lang = "termination"]
18 trait Termination {
19     fn report(self) -> i32;
20 }
21
22 impl Termination for () {
23     fn report(self) -> i32 {
24         unsafe {
25             NUM = 6 * 7 + 1 + (1u8 == 1u8) as u8; // 44
26             *NUM_REF as i32
27         }
28     }
29 }
30
31 trait SomeTrait {
32     fn object_safe(&self);
33 }
34
35 impl SomeTrait for &'static str {
36     fn object_safe(&self) {
37         unsafe {
38             puts(*self as *const str as *const i8);
39         }
40     }
41 }
42
43 struct NoisyDrop {
44     text: &'static str,
45     inner: NoisyDropInner,
46 }
47
48 struct NoisyDropInner;
49
50 impl Drop for NoisyDrop {
51     fn drop(&mut self) {
52         unsafe {
53             puts(self.text as *const str as *const i8);
54         }
55     }
56 }
57
58 impl Drop for NoisyDropInner {
59     fn drop(&mut self) {
60         unsafe {
61             puts("Inner got dropped!\0" as *const str as *const i8);
62         }
63     }
64 }
65
66 impl SomeTrait for NoisyDrop {
67     fn object_safe(&self) {}
68 }
69
70 enum Ordering {
71     Less = -1,
72     Equal = 0,
73     Greater = 1,
74 }
75
76 #[lang = "start"]
77 fn start<T: Termination + 'static>(
78     main: fn() -> T,
79     argc: isize,
80     argv: *const *const u8,
81 ) -> isize {
82     if argc == 3 {
83         unsafe { puts(*argv as *const i8); }
84         unsafe { puts(*((argv as usize + intrinsics::size_of::<*const u8>()) as *const *const i8)); }
85         unsafe { puts(*((argv as usize + 2 * intrinsics::size_of::<*const u8>()) as *const *const i8)); }
86     }
87
88     main().report();
89     0
90 }
91
92 static mut NUM: u8 = 6 * 7;
93 static NUM_REF: &'static u8 = unsafe { &NUM };
94
95 macro_rules! assert {
96     ($e:expr) => {
97         if !$e {
98             panic(stringify!(! $e));
99         }
100     };
101 }
102
103 macro_rules! assert_eq {
104     ($l:expr, $r: expr) => {
105         if $l != $r {
106             panic(stringify!($l != $r));
107         }
108     }
109 }
110
111 struct Unique<T: ?Sized> {
112     pointer: *const T,
113     _marker: PhantomData<T>,
114 }
115
116 impl<T: ?Sized, U: ?Sized> CoerceUnsized<Unique<U>> for Unique<T> where T: Unsize<U> {}
117
118 unsafe fn zeroed<T>() -> T {
119     let mut uninit = MaybeUninit { uninit: () };
120     intrinsics::write_bytes(&mut uninit.value.value as *mut T, 0, 1);
121     uninit.value.value
122 }
123
124 fn take_f32(_f: f32) {}
125 fn take_unique(_u: Unique<()>) {}
126
127 fn return_u128_pair() -> (u128, u128) {
128     (0, 0)
129 }
130
131 fn call_return_u128_pair() {
132     return_u128_pair();
133 }
134
135 fn main() {
136     take_unique(Unique {
137         pointer: 0 as *const (),
138         _marker: PhantomData,
139     });
140     take_f32(0.1);
141
142     call_return_u128_pair();
143
144     let slice = &[0, 1] as &[i32];
145     let slice_ptr = slice as *const [i32] as *const i32;
146
147     assert_eq!(slice_ptr as usize % 4, 0);
148
149     //return;
150
151     unsafe {
152         printf("Hello %s\n\0" as *const str as *const i8, "printf\0" as *const str as *const i8);
153
154         let hello: &[u8] = b"Hello\0" as &[u8; 6];
155         let ptr: *const i8 = hello as *const [u8] as *const i8;
156         puts(ptr);
157
158         let world: Box<&str> = box "World!\0";
159         puts(*world as *const str as *const i8);
160         world as Box<dyn SomeTrait>;
161
162         assert_eq!(intrinsics::bitreverse(0b10101000u8), 0b00010101u8);
163
164         assert_eq!(intrinsics::bswap(0xabu8), 0xabu8);
165         assert_eq!(intrinsics::bswap(0xddccu16), 0xccddu16);
166         assert_eq!(intrinsics::bswap(0xffee_ddccu32), 0xccdd_eeffu32);
167         assert_eq!(intrinsics::bswap(0x1234_5678_ffee_ddccu64), 0xccdd_eeff_7856_3412u64);
168
169         assert_eq!(intrinsics::size_of_val(hello) as u8, 6);
170
171         let chars = &['C', 'h', 'a', 'r', 's'];
172         let chars = chars as &[char];
173         assert_eq!(intrinsics::size_of_val(chars) as u8, 4 * 5);
174
175         let a: &dyn SomeTrait = &"abc\0";
176         a.object_safe();
177
178         assert_eq!(intrinsics::size_of_val(a) as u8, 16);
179         assert_eq!(intrinsics::size_of_val(&0u32) as u8, 4);
180
181         assert_eq!(intrinsics::min_align_of::<u16>() as u8, 2);
182         assert_eq!(intrinsics::min_align_of_val(&a) as u8, intrinsics::min_align_of::<&str>() as u8);
183
184         assert!(!intrinsics::needs_drop::<u8>());
185         assert!(intrinsics::needs_drop::<NoisyDrop>());
186
187         Unique {
188             pointer: 0 as *const &str,
189             _marker: PhantomData,
190         } as Unique<dyn SomeTrait>;
191
192         struct MyDst<T: ?Sized>(T);
193
194         intrinsics::size_of_val(&MyDst([0u8; 4]) as &MyDst<[u8]>);
195
196         struct Foo {
197             x: u8,
198             y: !,
199         }
200
201         unsafe fn uninitialized<T>() -> T {
202             MaybeUninit { uninit: () }.value.value
203         }
204
205         zeroed::<(u8, u8)>();
206         #[allow(unreachable_code)]
207         {
208             if false {
209                 zeroed::<!>();
210                 zeroed::<Foo>();
211                 uninitialized::<Foo>();
212             }
213         }
214     }
215
216     let _ = box NoisyDrop {
217         text: "Boxed outer got dropped!\0",
218         inner: NoisyDropInner,
219     } as Box<dyn SomeTrait>;
220
221     const FUNC_REF: Option<fn()> = Some(main);
222     match FUNC_REF {
223         Some(_) => {},
224         None => assert!(false),
225     }
226
227     match Ordering::Less {
228         Ordering::Less => {},
229         _ => assert!(false),
230     }
231
232     [NoisyDropInner, NoisyDropInner];
233
234     let x = &[0u32, 42u32] as &[u32];
235     match x {
236         [] => assert_eq!(0u32, 1),
237         [_, ref y @ ..] => assert_eq!(&x[1] as *const u32 as usize, &y[0] as *const u32 as usize),
238     }
239
240     assert_eq!(((|()| 42u8) as fn(()) -> u8)(()), 42);
241
242     #[cfg(not(jit))]
243     {
244         extern {
245             #[linkage = "extern_weak"]
246             static ABC: *const u8;
247         }
248
249         {
250             extern {
251                 #[linkage = "extern_weak"]
252                 static ABC: *const u8;
253             }
254         }
255
256         unsafe { assert_eq!(ABC as usize, 0); }
257     }
258
259     &mut (|| Some(0 as *const ())) as &mut dyn FnMut() -> Option<*const ()>;
260
261     let f = 1000.0;
262     assert_eq!(f as u8, 255);
263     let f2 = -1000.0;
264     assert_eq!(f2 as i8, -128);
265     assert_eq!(f2 as u8, 0);
266
267     let amount = 0;
268     assert_eq!(1u128 << amount, 1);
269
270     static ANOTHER_STATIC: &u8 = &A_STATIC;
271     assert_eq!(*ANOTHER_STATIC, 42);
272
273     check_niche_behavior();
274
275     extern "C" {
276         type ExternType;
277     }
278
279     struct ExternTypeWrapper {
280         _a: ExternType,
281     }
282
283     let nullptr = 0 as *const ();
284     let extern_nullptr = nullptr as *const ExternTypeWrapper;
285     extern_nullptr as *const ();
286     let slice_ptr = &[] as *const [u8];
287     slice_ptr as *const u8;
288
289     let repeat = [Some(42); 2];
290     assert_eq!(repeat[0], Some(42));
291     assert_eq!(repeat[1], Some(42));
292
293     from_decimal_string();
294
295     #[cfg(not(jit))]
296     test_tls();
297
298     #[cfg(all(not(jit), target_os = "linux"))]
299     unsafe {
300         global_asm_test();
301     }
302 }
303
304 #[cfg(all(not(jit), target_os = "linux"))]
305 extern "C" {
306     fn global_asm_test();
307 }
308
309 #[cfg(all(not(jit), target_os = "linux"))]
310 global_asm! {
311     "
312     .global global_asm_test
313     global_asm_test:
314     // comment that would normally be removed by LLVM
315     ret
316     "
317 }
318
319 #[repr(C)]
320 enum c_void {
321     _1,
322     _2,
323 }
324
325 type c_int = i32;
326 type c_ulong = u64;
327
328 type pthread_t = c_ulong;
329
330 #[repr(C)]
331 struct pthread_attr_t {
332     __size: [u64; 7],
333 }
334
335 #[link(name = "pthread")]
336 extern "C" {
337     fn pthread_attr_init(attr: *mut pthread_attr_t) -> c_int;
338
339     fn pthread_create(
340         native: *mut pthread_t,
341         attr: *const pthread_attr_t,
342         f: extern "C" fn(_: *mut c_void) -> *mut c_void,
343         value: *mut c_void
344     ) -> c_int;
345
346     fn pthread_join(
347         native: pthread_t,
348         value: *mut *mut c_void
349     ) -> c_int;
350 }
351
352 #[thread_local]
353 #[cfg(not(jit))]
354 static mut TLS: u8 = 42;
355
356 #[cfg(not(jit))]
357 extern "C" fn mutate_tls(_: *mut c_void) -> *mut c_void {
358     unsafe { TLS = 0; }
359     0 as *mut c_void
360 }
361
362 #[cfg(not(jit))]
363 fn test_tls() {
364     unsafe {
365         let mut attr: pthread_attr_t = zeroed();
366         let mut thread: pthread_t = 0;
367
368         assert_eq!(TLS, 42);
369
370         if pthread_attr_init(&mut attr) != 0 {
371             assert!(false);
372         }
373
374         if pthread_create(&mut thread, &attr, mutate_tls, 0 as *mut c_void) != 0 {
375             assert!(false);
376         }
377
378         let mut res = 0 as *mut c_void;
379         pthread_join(thread, &mut res);
380
381         // TLS of main thread must not have been changed by the other thread.
382         assert_eq!(TLS, 42);
383
384         puts("TLS works!\n\0" as *const str as *const i8);
385     }
386 }
387
388 // Copied ui/issues/issue-61696.rs
389
390 pub enum Infallible {}
391
392 // The check that the `bool` field of `V1` is encoding a "niche variant"
393 // (i.e. not `V1`, so `V3` or `V4`) used to be mathematically incorrect,
394 // causing valid `V1` values to be interpreted as other variants.
395 pub enum E1 {
396     V1 { f: bool },
397     V2 { f: Infallible },
398     V3,
399     V4,
400 }
401
402 // Computing the discriminant used to be done using the niche type (here `u8`,
403 // from the `bool` field of `V1`), overflowing for variants with large enough
404 // indices (`V3` and `V4`), causing them to be interpreted as other variants.
405 pub enum E2<X> {
406     V1 { f: bool },
407
408     /*_00*/ _01(X), _02(X), _03(X), _04(X), _05(X), _06(X), _07(X),
409     _08(X), _09(X), _0A(X), _0B(X), _0C(X), _0D(X), _0E(X), _0F(X),
410     _10(X), _11(X), _12(X), _13(X), _14(X), _15(X), _16(X), _17(X),
411     _18(X), _19(X), _1A(X), _1B(X), _1C(X), _1D(X), _1E(X), _1F(X),
412     _20(X), _21(X), _22(X), _23(X), _24(X), _25(X), _26(X), _27(X),
413     _28(X), _29(X), _2A(X), _2B(X), _2C(X), _2D(X), _2E(X), _2F(X),
414     _30(X), _31(X), _32(X), _33(X), _34(X), _35(X), _36(X), _37(X),
415     _38(X), _39(X), _3A(X), _3B(X), _3C(X), _3D(X), _3E(X), _3F(X),
416     _40(X), _41(X), _42(X), _43(X), _44(X), _45(X), _46(X), _47(X),
417     _48(X), _49(X), _4A(X), _4B(X), _4C(X), _4D(X), _4E(X), _4F(X),
418     _50(X), _51(X), _52(X), _53(X), _54(X), _55(X), _56(X), _57(X),
419     _58(X), _59(X), _5A(X), _5B(X), _5C(X), _5D(X), _5E(X), _5F(X),
420     _60(X), _61(X), _62(X), _63(X), _64(X), _65(X), _66(X), _67(X),
421     _68(X), _69(X), _6A(X), _6B(X), _6C(X), _6D(X), _6E(X), _6F(X),
422     _70(X), _71(X), _72(X), _73(X), _74(X), _75(X), _76(X), _77(X),
423     _78(X), _79(X), _7A(X), _7B(X), _7C(X), _7D(X), _7E(X), _7F(X),
424     _80(X), _81(X), _82(X), _83(X), _84(X), _85(X), _86(X), _87(X),
425     _88(X), _89(X), _8A(X), _8B(X), _8C(X), _8D(X), _8E(X), _8F(X),
426     _90(X), _91(X), _92(X), _93(X), _94(X), _95(X), _96(X), _97(X),
427     _98(X), _99(X), _9A(X), _9B(X), _9C(X), _9D(X), _9E(X), _9F(X),
428     _A0(X), _A1(X), _A2(X), _A3(X), _A4(X), _A5(X), _A6(X), _A7(X),
429     _A8(X), _A9(X), _AA(X), _AB(X), _AC(X), _AD(X), _AE(X), _AF(X),
430     _B0(X), _B1(X), _B2(X), _B3(X), _B4(X), _B5(X), _B6(X), _B7(X),
431     _B8(X), _B9(X), _BA(X), _BB(X), _BC(X), _BD(X), _BE(X), _BF(X),
432     _C0(X), _C1(X), _C2(X), _C3(X), _C4(X), _C5(X), _C6(X), _C7(X),
433     _C8(X), _C9(X), _CA(X), _CB(X), _CC(X), _CD(X), _CE(X), _CF(X),
434     _D0(X), _D1(X), _D2(X), _D3(X), _D4(X), _D5(X), _D6(X), _D7(X),
435     _D8(X), _D9(X), _DA(X), _DB(X), _DC(X), _DD(X), _DE(X), _DF(X),
436     _E0(X), _E1(X), _E2(X), _E3(X), _E4(X), _E5(X), _E6(X), _E7(X),
437     _E8(X), _E9(X), _EA(X), _EB(X), _EC(X), _ED(X), _EE(X), _EF(X),
438     _F0(X), _F1(X), _F2(X), _F3(X), _F4(X), _F5(X), _F6(X), _F7(X),
439     _F8(X), _F9(X), _FA(X), _FB(X), _FC(X), _FD(X), _FE(X), _FF(X),
440
441     V3,
442     V4,
443 }
444
445 fn check_niche_behavior () {
446     if let E1::V2 { .. } = (E1::V1 { f: true }) {
447         intrinsics::abort();
448     }
449
450     if let E2::V1 { .. } = E2::V3::<Infallible> {
451         intrinsics::abort();
452     }
453 }
454
455 fn from_decimal_string() {
456     loop {
457         let multiplier = 1;
458
459         take_multiplier_ref(&multiplier);
460
461         if multiplier == 1 {
462             break;
463         }
464
465         unreachable();
466     }
467 }
468
469 fn take_multiplier_ref(_multiplier: &u128) {}
470
471 fn unreachable() -> ! {
472     panic("unreachable")
473 }