2018-07-30 11:20:37 -05:00
|
|
|
// Adapted from https://github.com/sunfishcode/mir2cranelift/blob/master/rust-examples/nocore-hello-world.rs
|
|
|
|
|
2019-03-11 14:36:29 -05:00
|
|
|
#![feature(no_core, unboxed_closures, start, lang_items, box_syntax, slice_patterns, never_type, linkage)]
|
2018-07-30 11:20:37 -05:00
|
|
|
#![no_core]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
extern crate mini_core;
|
|
|
|
|
|
|
|
use mini_core::*;
|
2019-01-26 08:10:21 -06:00
|
|
|
use mini_core::libc::*;
|
2018-07-30 11:20:37 -05:00
|
|
|
|
2018-09-08 07:44:32 -05:00
|
|
|
unsafe extern "C" fn my_puts(s: *const u8) {
|
|
|
|
puts(s);
|
|
|
|
}
|
|
|
|
|
2018-08-17 06:21:03 -05:00
|
|
|
#[lang = "termination"]
|
|
|
|
trait Termination {
|
|
|
|
fn report(self) -> i32;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Termination for () {
|
|
|
|
fn report(self) -> i32 {
|
|
|
|
unsafe {
|
|
|
|
NUM = 6 * 7 + 1 + (1u8 == 1u8) as u8; // 44
|
|
|
|
*NUM_REF as i32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 11:00:06 -05:00
|
|
|
trait SomeTrait {
|
|
|
|
fn object_safe(&self);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SomeTrait for &'static str {
|
|
|
|
fn object_safe(&self) {
|
|
|
|
unsafe {
|
|
|
|
puts(*self as *const str as *const u8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-11 12:27:57 -05:00
|
|
|
struct NoisyDrop {
|
|
|
|
text: &'static str,
|
|
|
|
inner: NoisyDropInner,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct NoisyDropInner;
|
|
|
|
|
|
|
|
impl Drop for NoisyDrop {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
puts(self.text as *const str as *const u8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for NoisyDropInner {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
puts("Inner got dropped!\0" as *const str as *const u8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-07 13:45:15 -06:00
|
|
|
impl SomeTrait for NoisyDrop {
|
|
|
|
fn object_safe(&self) {}
|
|
|
|
}
|
|
|
|
|
2018-09-25 11:02:37 -05:00
|
|
|
enum Ordering {
|
|
|
|
Less = -1,
|
|
|
|
Equal = 0,
|
|
|
|
Greater = 1,
|
|
|
|
}
|
|
|
|
|
2018-08-17 06:21:03 -05:00
|
|
|
#[lang = "start"]
|
|
|
|
fn start<T: Termination + 'static>(
|
|
|
|
main: fn() -> T,
|
2019-02-18 11:53:18 -06:00
|
|
|
argc: isize,
|
|
|
|
argv: *const *const u8,
|
2018-08-17 06:21:03 -05:00
|
|
|
) -> isize {
|
2019-02-18 11:53:18 -06:00
|
|
|
if argc == 3 {
|
|
|
|
unsafe { puts(*argv); }
|
|
|
|
unsafe { puts(*((argv as usize + intrinsics::size_of::<*const u8>()) as *const *const u8)); }
|
|
|
|
unsafe { puts(*((argv as usize + 2 * intrinsics::size_of::<*const u8>()) as *const *const u8)); }
|
|
|
|
}
|
|
|
|
|
2019-02-11 08:42:28 -06:00
|
|
|
main().report();
|
|
|
|
0
|
2018-08-17 06:21:03 -05:00
|
|
|
}
|
|
|
|
|
2018-08-13 12:02:42 -05:00
|
|
|
static mut NUM: u8 = 6 * 7;
|
|
|
|
static NUM_REF: &'static u8 = unsafe { &NUM };
|
2018-08-13 11:31:26 -05:00
|
|
|
|
2018-09-15 04:14:27 -05:00
|
|
|
macro_rules! assert {
|
|
|
|
($e:expr) => {
|
|
|
|
if !$e {
|
|
|
|
panic(&(stringify!(! $e), file!(), line!(), 0));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! assert_eq {
|
|
|
|
($l:expr, $r: expr) => {
|
|
|
|
if $l != $r {
|
|
|
|
panic(&(stringify!($l != $r), file!(), line!(), 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-16 07:49:45 -05:00
|
|
|
struct Unique<T: ?Sized> {
|
|
|
|
pointer: *const T,
|
|
|
|
_marker: PhantomData<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: ?Sized, U: ?Sized> CoerceUnsized<Unique<U>> for Unique<T> where T: Unsize<U> {}
|
|
|
|
|
2019-02-06 11:49:59 -06:00
|
|
|
fn take_f32(_f: f32) {}
|
|
|
|
fn take_unique(_u: Unique<()>) {}
|
2019-01-17 11:07:27 -06:00
|
|
|
|
2018-08-17 06:21:03 -05:00
|
|
|
fn main() {
|
2019-06-12 13:54:38 -05:00
|
|
|
assert_eq!((1u128 + 2) as u16, 3);
|
2018-07-30 11:20:37 -05:00
|
|
|
}
|