rust/example/mini_core_hello_world.rs

172 lines
3.6 KiB
Rust
Raw Normal View History

// Adapted from https://github.com/sunfishcode/mir2cranelift/blob/master/rust-examples/nocore-hello-world.rs
2018-09-04 19:04:25 +02:00
#![feature(no_core, unboxed_closures, start, lang_items, box_syntax)]
#![no_core]
#![allow(dead_code)]
extern crate mini_core;
use mini_core::*;
#[link(name = "c")]
extern "C" {
fn puts(s: *const u8);
}
unsafe extern "C" fn my_puts(s: *const u8) {
puts(s);
}
2018-09-09 14:45:23 +02:00
// TODO remove when jit supports linking rlibs
#[cfg(jit)]
2018-09-16 14:59:49 +02:00
extern "C" fn panic<T>(_: T) -> ! {
unsafe {
intrinsics::abort();
}
2018-09-11 19:28:13 +02:00
}
2018-09-09 14:45:23 +02:00
2018-08-17 13:21:03 +02: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 18:00:06 +02: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 19:27:57 +02: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);
}
}
}
enum Ordering {
Less = -1,
Equal = 0,
Greater = 1,
}
2018-08-17 13:21:03 +02:00
#[lang = "start"]
fn start<T: Termination + 'static>(
main: fn() -> T,
_argc: isize,
_argv: *const *const u8,
) -> isize {
main().report() as isize
}
static mut NUM: u8 = 6 * 7;
static NUM_REF: &'static u8 = unsafe { &NUM };
2018-08-13 18:31:26 +02:00
2018-09-15 11:14:27 +02: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));
}
}
}
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> {}
2018-08-17 13:21:03 +02:00
fn main() {
unsafe {
2018-09-08 18:00:06 +02:00
let hello: &[u8] = b"Hello\0" as &[u8; 6];
let ptr: *const u8 = hello as *const [u8] as *const u8;
puts(ptr);
2018-09-08 18:00:06 +02:00
2018-09-09 14:45:23 +02:00
// TODO remove when jit supports linking rlibs
#[cfg(not(jit))]
{
2018-09-16 11:57:27 +02:00
let world: Box<&str> = box "World!\0";
2018-09-09 14:45:23 +02:00
puts(*world as *const str as *const u8);
2018-09-16 11:57:27 +02:00
world as Box<SomeTrait>;
2018-09-09 14:45:23 +02:00
}
2018-08-13 18:31:26 +02:00
2018-09-15 11:14:27 +02:00
assert_eq!(intrinsics::size_of_val(hello) as u8, 6);
2018-09-08 18:00:06 +02:00
let chars = &['C', 'h', 'a', 'r', 's'];
let chars = chars as &[char];
2018-09-15 11:14:27 +02:00
assert_eq!(intrinsics::size_of_val(chars) as u8, 4 * 5);
2018-09-08 18:00:06 +02:00
let a: &dyn SomeTrait = &"abc\0";
a.object_safe();
2018-09-15 11:14:27 +02:00
assert_eq!(intrinsics::size_of_val(a) as u8, 16);
assert_eq!(intrinsics::size_of_val(&0u32) as u8, 4);
2018-09-15 11:14:27 +02:00
assert_eq!(intrinsics::min_align_of::<u16>() as u8, 2);
assert_eq!(intrinsics::min_align_of_val(&a) as u8, intrinsics::min_align_of::<&str>() as u8);
2018-09-15 11:14:27 +02:00
assert!(!intrinsics::needs_drop::<u8>());
assert!(intrinsics::needs_drop::<NoisyDrop>());
Unique {
pointer: 0 as *const &str,
_marker: PhantomData,
} as Unique<dyn SomeTrait>;
2018-09-08 18:00:06 +02:00
}
2018-09-11 19:27:57 +02:00
let _ = NoisyDrop {
text: "Outer got dropped!\0",
inner: NoisyDropInner,
};
2018-09-16 16:21:07 +02:00
const FUNC_REF: Option<fn()> = Some(main);
match FUNC_REF {
Some(_) => {},
None => assert!(false),
}
match Ordering::Less {
Ordering::Less => {},
_ => assert!(false),
}
}