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