2018-07-30 11:20:37 -05:00
|
|
|
// Adapted from https://github.com/sunfishcode/mir2cranelift/blob/master/rust-examples/nocore-hello-world.rs
|
|
|
|
|
2018-09-04 12:04:25 -05:00
|
|
|
#![feature(no_core, unboxed_closures, start, lang_items, box_syntax)]
|
2018-07-30 11:20:37 -05:00
|
|
|
#![no_core]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
extern crate mini_core;
|
|
|
|
|
|
|
|
use mini_core::*;
|
|
|
|
|
|
|
|
#[link(name = "c")]
|
|
|
|
extern "C" {
|
|
|
|
fn puts(s: *const u8);
|
|
|
|
}
|
|
|
|
|
2018-09-08 07:44:32 -05:00
|
|
|
unsafe extern "C" fn my_puts(s: *const u8) {
|
|
|
|
puts(s);
|
|
|
|
}
|
|
|
|
|
2018-09-09 07:45:23 -05:00
|
|
|
// TODO remove when jit supports linking rlibs
|
|
|
|
#[cfg(jit)]
|
2018-09-11 12:28:13 -05:00
|
|
|
fn panic<T>(_: T) {
|
|
|
|
loop {}
|
|
|
|
}
|
2018-09-09 07:45:23 -05:00
|
|
|
|
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-08-17 06:21:03 -05:00
|
|
|
#[lang = "start"]
|
|
|
|
fn start<T: Termination + 'static>(
|
|
|
|
main: fn() -> T,
|
|
|
|
_argc: isize,
|
|
|
|
_argv: *const *const u8,
|
|
|
|
) -> isize {
|
|
|
|
main().report() as isize
|
|
|
|
}
|
|
|
|
|
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-08-17 06:21:03 -05:00
|
|
|
fn main() {
|
2018-07-30 11:20:37 -05:00
|
|
|
unsafe {
|
2018-09-08 11:00:06 -05:00
|
|
|
let hello: &[u8] = b"Hello\0" as &[u8; 6];
|
|
|
|
let ptr: *const u8 = hello as *const [u8] as *const u8;
|
2018-07-30 11:20:37 -05:00
|
|
|
puts(ptr);
|
2018-09-08 11:00:06 -05:00
|
|
|
|
2018-09-09 07:45:23 -05:00
|
|
|
// TODO remove when jit supports linking rlibs
|
|
|
|
#[cfg(not(jit))]
|
|
|
|
{
|
|
|
|
let world = box "World!\0";
|
|
|
|
puts(*world as *const str as *const u8);
|
|
|
|
}
|
2018-08-13 11:31:26 -05:00
|
|
|
|
2018-09-08 11:00:06 -05:00
|
|
|
if intrinsics::size_of_val(hello) as u8 != 6 {
|
|
|
|
panic(&("", "", 0, 0));
|
|
|
|
};
|
|
|
|
|
|
|
|
let chars = &['C', 'h', 'a', 'r', 's'];
|
|
|
|
let chars = chars as &[char];
|
|
|
|
if intrinsics::size_of_val(chars) as u8 != 4 * 5 {
|
|
|
|
panic(&("", "", 0, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
let a: &dyn SomeTrait = &"abc\0";
|
|
|
|
a.object_safe();
|
|
|
|
|
|
|
|
if intrinsics::size_of_val(a) as u8 != 16 {
|
|
|
|
panic(&("", "", 0, 0));
|
|
|
|
}
|
|
|
|
}
|
2018-07-30 11:20:37 -05:00
|
|
|
}
|