]> git.lizzy.rs Git - rust.git/blob - example/mini_core.rs
Rename load_value_pair to load_scalar_pair and fix dynamic dispatch with arbitrary...
[rust.git] / example / mini_core.rs
1 #![feature(no_core, lang_items, intrinsics, unboxed_closures, type_ascription, extern_types)]
2 #![no_core]
3 #![allow(dead_code)]
4
5 #[lang = "sized"]
6 pub trait Sized {}
7
8 #[lang = "unsize"]
9 pub trait Unsize<T: ?Sized> {}
10
11 #[lang = "coerce_unsized"]
12 pub trait CoerceUnsized<T> {}
13
14 impl<'a, 'b: 'a, T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<&'a U> for &'b T {}
15 impl<'a, T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<&'a mut U> for &'a mut T {}
16 impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<*const U> for *const T {}
17 impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<*mut U> for *mut T {}
18
19 #[lang = "dispatch_from_dyn"]
20 pub trait DispatchFromDyn<T> {}
21
22 // &T -> &U
23 impl<'a, T: ?Sized+Unsize<U>, U: ?Sized> DispatchFromDyn<&'a U> for &'a T {}
24 // &mut T -> &mut U
25 impl<'a, T: ?Sized+Unsize<U>, U: ?Sized> DispatchFromDyn<&'a mut U> for &'a mut T {}
26 // *const T -> *const U
27 impl<T: ?Sized+Unsize<U>, U: ?Sized> DispatchFromDyn<*const U> for *const T {}
28 // *mut T -> *mut U
29 impl<T: ?Sized+Unsize<U>, U: ?Sized> DispatchFromDyn<*mut U> for *mut T {}
30 impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Box<U>> for Box<T> {}
31
32 #[lang = "receiver"]
33 pub trait Receiver {}
34
35 impl<T: ?Sized> Receiver for &T {}
36 impl<T: ?Sized> Receiver for &mut T {}
37 impl<T: ?Sized> Receiver for Box<T> {}
38
39 #[lang = "copy"]
40 pub unsafe trait Copy {}
41
42 unsafe impl Copy for bool {}
43 unsafe impl Copy for u8 {}
44 unsafe impl Copy for u16 {}
45 unsafe impl Copy for u32 {}
46 unsafe impl Copy for u64 {}
47 unsafe impl Copy for usize {}
48 unsafe impl Copy for i8 {}
49 unsafe impl Copy for i16 {}
50 unsafe impl Copy for i32 {}
51 unsafe impl Copy for isize {}
52 unsafe impl Copy for char {}
53 unsafe impl<'a, T: ?Sized> Copy for &'a T {}
54 unsafe impl<T: ?Sized> Copy for *const T {}
55 unsafe impl<T: ?Sized> Copy for *mut T {}
56
57 #[lang = "sync"]
58 pub unsafe trait Sync {}
59
60 unsafe impl Sync for bool {}
61 unsafe impl Sync for u8 {}
62 unsafe impl Sync for u16 {}
63 unsafe impl Sync for u32 {}
64 unsafe impl Sync for u64 {}
65 unsafe impl Sync for usize {}
66 unsafe impl Sync for i8 {}
67 unsafe impl Sync for i16 {}
68 unsafe impl Sync for i32 {}
69 unsafe impl Sync for isize {}
70 unsafe impl Sync for char {}
71 unsafe impl<'a, T: ?Sized> Sync for &'a T {}
72 unsafe impl Sync for [u8; 16] {}
73
74 #[lang = "freeze"]
75 trait Freeze {}
76
77 #[lang = "not"]
78 pub trait Not {
79     type Output;
80
81     fn not(self) -> Self::Output;
82 }
83
84 impl Not for bool {
85     type Output = bool;
86
87     fn not(self) -> bool {
88         !self
89     }
90 }
91
92 #[lang = "mul"]
93 pub trait Mul<RHS = Self> {
94     type Output;
95
96     #[must_use]
97     fn mul(self, rhs: RHS) -> Self::Output;
98 }
99
100 impl Mul for u8 {
101     type Output = Self;
102
103     fn mul(self, rhs: Self) -> Self::Output {
104         self * rhs
105     }
106 }
107
108 impl Mul for usize {
109     type Output = Self;
110
111     fn mul(self, rhs: Self) -> Self::Output {
112         self * rhs
113     }
114 }
115
116 #[lang = "add"]
117 pub trait Add<RHS = Self> {
118     type Output;
119
120     fn add(self, rhs: RHS) -> Self::Output;
121 }
122
123 impl Add for u8 {
124     type Output = Self;
125
126     fn add(self, rhs: Self) -> Self {
127         self + rhs
128     }
129 }
130
131 impl Add for usize {
132     type Output = Self;
133
134     fn add(self, rhs: Self) -> Self {
135         self + rhs
136     }
137 }
138
139 #[lang = "sub"]
140 pub trait Sub<RHS = Self> {
141     type Output;
142
143     fn sub(self, rhs: RHS) -> Self::Output;
144 }
145
146 impl Sub for usize {
147     type Output = Self;
148
149     fn sub(self, rhs: Self) -> Self {
150         self - rhs
151     }
152 }
153
154 #[lang = "bitor"]
155 pub trait BitOr<RHS = Self> {
156     type Output;
157
158     #[must_use]
159     fn bitor(self, rhs: RHS) -> Self::Output;
160 }
161
162 impl BitOr for bool {
163     type Output = bool;
164
165     fn bitor(self, rhs: bool) -> bool {
166         self | rhs
167     }
168 }
169
170 impl<'a> BitOr<bool> for &'a bool {
171     type Output = bool;
172
173     fn bitor(self, rhs: bool) -> bool {
174         *self | rhs
175     }
176 }
177
178 #[lang = "eq"]
179 pub trait PartialEq<Rhs: ?Sized = Self> {
180     fn eq(&self, other: &Rhs) -> bool;
181     fn ne(&self, other: &Rhs) -> bool;
182 }
183
184 impl PartialEq for u8 {
185     fn eq(&self, other: &u8) -> bool {
186         (*self) == (*other)
187     }
188     fn ne(&self, other: &u8) -> bool {
189         (*self) != (*other)
190     }
191 }
192
193 impl PartialEq for u16 {
194     fn eq(&self, other: &u16) -> bool {
195         (*self) == (*other)
196     }
197     fn ne(&self, other: &u16) -> bool {
198         (*self) != (*other)
199     }
200 }
201
202 impl PartialEq for u32 {
203     fn eq(&self, other: &u32) -> bool {
204         (*self) == (*other)
205     }
206     fn ne(&self, other: &u32) -> bool {
207         (*self) != (*other)
208     }
209 }
210
211 impl PartialEq for usize {
212     fn eq(&self, other: &usize) -> bool {
213         (*self) == (*other)
214     }
215     fn ne(&self, other: &usize) -> bool {
216         (*self) != (*other)
217     }
218 }
219
220 impl PartialEq for i32 {
221     fn eq(&self, other: &i32) -> bool {
222         (*self) == (*other)
223     }
224     fn ne(&self, other: &i32) -> bool {
225         (*self) != (*other)
226     }
227 }
228
229 impl PartialEq for isize {
230     fn eq(&self, other: &isize) -> bool {
231         (*self) == (*other)
232     }
233     fn ne(&self, other: &isize) -> bool {
234         (*self) != (*other)
235     }
236 }
237
238 impl PartialEq for char {
239     fn eq(&self, other: &char) -> bool {
240         (*self) == (*other)
241     }
242     fn ne(&self, other: &char) -> bool {
243         (*self) != (*other)
244     }
245 }
246
247 impl<T: ?Sized> PartialEq for *const T {
248     fn eq(&self, other: &*const T) -> bool {
249         *self == *other
250     }
251     fn ne(&self, other: &*const T) -> bool {
252         *self != *other
253     }
254 }
255
256 #[lang = "neg"]
257 pub trait Neg {
258     type Output;
259
260     fn neg(self) -> Self::Output;
261 }
262
263 impl Neg for isize {
264     type Output = isize;
265
266     fn neg(self) -> isize {
267         -self
268     }
269 }
270
271 pub enum Option<T> {
272     Some(T),
273     None,
274 }
275
276 pub use Option::*;
277
278 #[lang = "phantom_data"]
279 pub struct PhantomData<T: ?Sized>;
280
281 #[lang = "fn_once"]
282 #[rustc_paren_sugar]
283 pub trait FnOnce<Args> {
284     type Output;
285
286     extern "rust-call" fn call_once(self, args: Args) -> Self::Output;
287 }
288
289 #[lang = "fn_mut"]
290 #[rustc_paren_sugar]
291 pub trait FnMut<Args>: FnOnce<Args> {
292     extern "rust-call" fn call_mut(&mut self, args: Args) -> Self::Output;
293 }
294
295 #[lang = "panic"]
296 // Make it available to jited mini_core_hello_world
297 // FIXME remove next line when jit supports linking rlibs
298 #[inline(always)]
299 pub fn panic(&(_msg, _file, _line, _col): &(&'static str, &'static str, u32, u32)) -> ! {
300     unsafe {
301         libc::puts("Panicking\0" as *const str as *const u8);
302         intrinsics::abort();
303     }
304 }
305
306 #[lang = "eh_personality"]
307 fn eh_personality() -> ! {
308     loop {}
309 }
310
311 #[lang = "drop_in_place"]
312 #[allow(unconditional_recursion)]
313 pub unsafe fn drop_in_place<T: ?Sized>(to_drop: *mut T) {
314     // Code here does not matter - this is replaced by the
315     // real drop glue by the compiler.
316     drop_in_place(to_drop);
317 }
318
319 #[lang = "deref"]
320 pub trait Deref {
321     type Target: ?Sized;
322
323     fn deref(&self) -> &Self::Target;
324 }
325
326 #[lang = "owned_box"]
327 pub struct Box<T: ?Sized>(*mut T);
328
329 impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<Box<U>> for Box<T> {}
330
331 impl<T: ?Sized> Drop for Box<T> {
332     fn drop(&mut self) {
333         // drop is currently performed by compiler.
334     }
335 }
336
337 impl<T> Deref for Box<T> {
338     type Target = T;
339
340     fn deref(&self) -> &Self::Target {
341         &**self
342     }
343 }
344
345 #[lang = "exchange_malloc"]
346 // Make it available to jited mini_core_hello_world
347 // FIXME remove next line when jit supports linking rlibs
348 #[inline(always)]
349 unsafe fn allocate(size: usize, _align: usize) -> *mut u8 {
350     libc::malloc(size)
351 }
352
353 #[lang = "box_free"]
354 #[inline(always)]
355 unsafe fn box_free<T: ?Sized>(ptr: *mut T) {
356     libc::free(ptr as *mut u8);
357 }
358
359 #[lang = "drop"]
360 pub trait Drop {
361     fn drop(&mut self);
362 }
363
364 pub mod intrinsics {
365     extern "rust-intrinsic" {
366         pub fn abort() -> !;
367         pub fn size_of<T>() -> usize;
368         pub fn size_of_val<T: ?::Sized>(val: &T) -> usize;
369         pub fn min_align_of<T>() -> usize;
370         pub fn min_align_of_val<T: ?::Sized>(val: &T) -> usize;
371         pub fn copy<T>(src: *const T, dst: *mut T, count: usize);
372         pub fn transmute<T, U>(e: T) -> U;
373         pub fn uninit<T>() -> T;
374         pub fn ctlz_nonzero<T>(x: T) -> T;
375         pub fn needs_drop<T>() -> bool;
376         pub fn bitreverse<T>(x: T) -> T;
377     }
378 }
379
380 pub mod libc {
381     #[link(name = "c")]
382     extern "C" {
383         pub fn puts(s: *const u8);
384         pub fn printf(format: *const i8, ...) -> i32;
385         pub fn malloc(size: usize) -> *mut u8;
386         pub fn free(ptr: *mut u8);
387         pub fn memcpy(dst: *mut u8, src: *const u8, size: usize);
388         pub fn memmove(dst: *mut u8, src: *const u8, size: usize);
389         pub fn strncpy(dst: *mut u8, src: *const u8, size: usize);
390     }
391 }
392
393 #[lang = "index"]
394 pub trait Index<Idx: ?Sized> {
395     type Output: ?Sized;
396     fn index(&self, index: Idx) -> &Self::Output;
397 }
398
399 impl<T> Index<usize> for [T; 3] {
400     type Output = T;
401
402     fn index(&self, index: usize) -> &Self::Output {
403         &self[index]
404     }
405 }
406
407 impl<T> Index<usize> for [T] {
408     type Output = T;
409
410     fn index(&self, index: usize) -> &Self::Output {
411         &self[index]
412     }
413 }
414
415 extern {
416     type VaListImpl;
417 }
418
419 #[lang = "va_list"]
420 #[repr(transparent)]
421 pub struct VaList<'a>(&'a mut VaListImpl);