1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
use raw::*;
use compile::Compile;
use function::Abi;
use alloc::oom;
use libc::{c_char, c_uint, c_void};
use util::{from_ptr, from_ptr_opt};
use std::borrow::*;
use std::marker::PhantomData;
use std::{fmt, mem, str};
use std::iter::IntoIterator;
use std::ffi::{self, CString};
use std::ops::{Deref, DerefMut};
pub use kind::TypeKind;
pub mod kind {
use libc::c_int;
bitflags!(
flags TypeKind: c_int {
const Void = 0,
const SByte = 1,
const UByte = 2,
const Short = 3,
const UShort = 4,
const Int = 5,
const UInt = 6,
const NInt = 7,
const NUInt = 8,
const Long = 9,
const ULong = 10,
const Float32 = 11,
const Float64 = 12,
const NFloat = 13,
const Struct = 14,
const Union = 15,
const Signature = 16,
const Pointer = 17,
const FirstTagged = 2,
const SysBool = 10009,
const SysChar = 10010
}
);
}
impl fmt::Debug for Ty {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
let kind = self.get_kind();
if kind.contains(TypeKind::SysChar) {
fmt.write_str("char")
} else if kind.contains(TypeKind::SysBool) {
fmt.write_str("bool")
} else if kind.contains(TypeKind::Pointer) {
try!(fmt.write_str("&mut"));
write!(fmt, "&mut {:?}", self.get_ref().unwrap())
} else if kind.contains(TypeKind::Signature) {
try!(fmt.write_str("fn("));
let params = self.params();
let (size, _) = params.size_hint();
for (i, arg) in params.enumerate() {
try!(write!(fmt, "{:?}", arg));
if i < size - 1 {
try!(fmt.write_str(", "));
}
}
try!(fmt.write_str(")"));
if let Some(x) = self.get_return() {
if !x.get_kind().contains(TypeKind::Void) {
try!(write!(fmt, " -> {:?}", x))
}
}
Ok(())
} else if kind.contains(TypeKind::Struct) {
try!(fmt.write_str("("));
let fields = self.fields();
let (size, _) = fields.size_hint();
for (i, field) in fields.enumerate() {
try!(write!(fmt, "{:?}", field.get_type()));
if i < size - 1 {
try!(fmt.write_str(", "));
}
}
fmt.write_str(")")
} else if kind.contains(TypeKind::Union) {
try!(fmt.write_str("union("));
let fields = self.fields();
let (size, _) = fields.size_hint();
for (i, field) in fields.enumerate() {
try!(write!(fmt, "{:?}", field.get_type()));
if i < size - 1 {
try!(fmt.write_str(", "));
}
}
fmt.write_str(")")
} else if kind.contains(TypeKind::NFloat) {
fmt.write_str("float")
} else if kind.contains(TypeKind::Float32) {
fmt.write_str("f32")
} else if kind.contains(TypeKind::Float64) {
fmt.write_str("f64")
} else if kind.contains(TypeKind::ULong) {
fmt.write_str("u64")
} else if kind.contains(TypeKind::Long) {
fmt.write_str("i64")
} else if kind.contains(TypeKind::NUInt) {
fmt.write_str("usize")
} else if kind.contains(TypeKind::NInt) {
fmt.write_str("isize")
} else if kind.contains(TypeKind::UInt) {
fmt.write_str("u32")
} else if kind.contains(TypeKind::Int) {
fmt.write_str("i32")
} else if kind.contains(TypeKind::UShort) {
fmt.write_str("u16")
} else if kind.contains(TypeKind::Short) {
fmt.write_str("i16")
} else if kind.contains(TypeKind::UByte) {
fmt.write_str("u8")
} else if kind.contains(TypeKind::SByte) {
fmt.write_str("i8")
} else {
fmt.write_str("()")
}
}
}
impl fmt::Debug for Type {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt::Debug::fmt(self.deref(), fmt)
}
}
pub mod consts {
use util::from_ptr;
use raw::*;
use types::StaticType;
builtin_types!{
jit_type_void -> get_void;
jit_type_sbyte -> get_sbyte;
jit_type_ubyte -> get_ubyte;
jit_type_short -> get_short;
jit_type_ushort -> get_ushort;
jit_type_int -> get_int;
jit_type_uint -> get_uint;
jit_type_nint -> get_nint;
jit_type_nuint -> get_nuint;
jit_type_long -> get_long;
jit_type_ulong -> get_ulong;
jit_type_float32 -> get_float32;
jit_type_float64 -> get_float64;
jit_type_nfloat -> get_nfloat;
jit_type_void_ptr -> get_void_ptr;
jit_type_sys_bool -> get_sys_bool;
jit_type_sys_char -> get_sys_char;
jit_type_sys_uchar -> get_sys_uchar;
jit_type_sys_short -> get_sys_short;
jit_type_sys_ushort -> get_sys_ushort;
jit_type_sys_int -> get_sys_int;
jit_type_sys_uint -> get_sys_uint;
jit_type_sys_long -> get_sys_long;
jit_type_sys_ulong -> get_sys_ulong;
jit_type_sys_longlong -> get_sys_longlong;
jit_type_sys_ulonglong -> get_sys_ulonglong;
jit_type_sys_float -> get_sys_float;
jit_type_sys_double -> get_sys_double;
jit_type_sys_long_double -> get_sys_long_double
}
}
#[derive(PartialEq)]
pub struct Field<'a> {
pub index: c_uint,
_type: jit_type_t,
marker: PhantomData<&'a ()>,
}
impl<'a> Field<'a> {
#[inline]
pub fn get_name(&self) -> Option<&'a str> {
unsafe {
let c_name = jit_type_get_name(self._type, self.index);
if c_name.is_null() {
None
} else {
let c_name = ffi::CStr::from_ptr(c_name);
Some(str::from_utf8(c_name.to_bytes()).unwrap())
}
}
}
#[inline(always)]
pub fn get_type(&self) -> &'a Ty {
unsafe {
from_ptr(jit_type_get_field(self._type, self.index))
}
}
#[inline(always)]
pub fn get_offset(&self) -> usize {
unsafe {
jit_type_get_offset(self._type, self.index) as usize
}
}
}
pub struct Fields<'a> {
_type: jit_type_t,
index: c_uint,
length: c_uint,
marker: PhantomData<&'a ()>,
}
impl<'a> Fields<'a> {
#[inline(always)]
fn new(ty:&'a Ty) -> Fields<'a> {
unsafe {
Fields {
_type: ty.into(),
index: 0,
length: jit_type_num_fields(ty.into()),
marker: PhantomData,
}
}
}
}
impl<'a> Iterator for Fields<'a> {
type Item = Field<'a>;
fn next(&mut self) -> Option<Field<'a>> {
if self.index < self.length {
let index = self.index;
self.index += 1;
Some(Field {
index: index,
_type: self._type,
marker: PhantomData,
})
} else {
None
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
((self.length - self.index) as usize, None)
}
}
pub struct Params<'a> {
_type: jit_type_t,
index: c_uint,
length: c_uint,
marker: PhantomData<&'a ()>
}
impl<'a> Params<'a> {
fn new(ty:&'a Ty) -> Params<'a> {
unsafe {
Params {
_type: ty.into(),
index: 0,
length: jit_type_num_params(ty.into()),
marker: PhantomData,
}
}
}
}
impl<'a> Iterator for Params<'a> {
type Item = &'a Ty;
fn next(&mut self) -> Option<&'a Ty> {
if self.index < self.length {
let index = self.index;
self.index += 1;
unsafe { from_ptr_opt(jit_type_get_param(self._type, index)) }
} else {
None
}
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
((self.length - self.index) as usize, None)
}
}
pub struct Ty(PhantomData<[()]>);
native_ref!(&Ty = jit_type_t);
impl ToOwned for Ty {
type Owned = Type;
fn to_owned(&self) -> Type {
unsafe {
from_ptr(jit_type_copy(self.into()))
}
}
}
impl Borrow<Ty> for Type {
fn borrow(&self) -> &Ty {
unsafe {
mem::transmute(self._type)
}
}
}
#[derive(PartialEq, Eq)]
pub struct Type {
_type: jit_type_t,
}
native_ref!(Type, _type: jit_type_t);
impl Clone for Type {
#[inline]
fn clone(&self) -> Type {
unsafe {
from_ptr(jit_type_copy((&**self).into()))
}
}
}
impl Drop for Type {
#[inline(always)]
fn drop(&mut self) {
unsafe {
jit_type_free(self.into());
}
}
}
impl<'a> Deref for Type {
type Target = Ty;
fn deref(&self) -> &Ty {
unsafe {
mem::transmute(self._type)
}
}
}
impl<'a> DerefMut for Type {
fn deref_mut(&mut self) -> &mut Ty {
unsafe {
mem::transmute(self._type)
}
}
}
pub type CowType<'a> = Cow<'a, Ty>;
pub type StaticType = &'static Ty;
impl Into<CowType<'static>> for Type {
fn into(self) -> CowType<'static> {
Cow::Owned(self)
}
}
impl<'a> Into<CowType<'a>> for &'a Ty {
fn into(self) -> CowType<'a> {
Cow::Borrowed(self)
}
}
impl Type {
pub fn new_signature(abi: Abi, return_type: &Ty, params: &mut [&Ty]) -> Type {
unsafe {
let mut params:&mut [jit_type_t] = mem::transmute(params);
let signature = jit_type_create_signature(abi as jit_abi_t, return_type.into(), params.as_mut_ptr(), params.len() as c_uint, 1);
from_ptr(signature)
}
}
#[inline(always)]
pub fn new_struct(fields: &mut [&Ty]) -> Type {
unsafe {
let fields:&mut [jit_type_t] = mem::transmute(fields);
from_ptr(jit_type_create_struct(fields.as_mut_ptr(), fields.len() as c_uint, 1))
}
}
#[inline(always)]
pub fn new_union(fields: &mut [&Ty]) -> Type {
unsafe {
let fields:&mut [jit_type_t] = mem::transmute(fields);
from_ptr(jit_type_create_union(fields.as_mut_ptr(), fields.len() as c_uint, 1))
}
}
#[inline(always)]
pub fn new_pointer(pointee: &Ty) -> Type {
unsafe {
let ptr = jit_type_create_pointer(pointee.into(), 1);
from_ptr(ptr)
}
}
}
impl Ty {
#[inline(always)]
pub fn get_size(&self) -> usize {
unsafe {
jit_type_get_size(self.into()) as usize
}
}
#[inline(always)]
pub fn get_alignment(&self) -> usize {
unsafe {
jit_type_get_alignment(self.into()) as usize
}
}
#[inline]
pub fn get_kind(&self) -> kind::TypeKind {
unsafe {
mem::transmute(jit_type_get_kind(self.into()))
}
}
#[inline(always)]
pub fn get_ref(&self) -> Option<&Ty> {
unsafe {
from_ptr_opt(jit_type_get_ref(self.into()))
}
}
#[inline(always)]
pub fn get_return(&self) -> Option<&Ty> {
unsafe {
from_ptr_opt(jit_type_get_return(self.into()))
}
}
pub fn set_names(&mut self, names: &[&str]) {
unsafe {
let names = names.iter()
.map(|name| CString::new(name.as_bytes()).unwrap())
.collect::<Vec<_>>();
let mut c_names = names.iter()
.map(|name| name.as_bytes().as_ptr() as *mut c_char)
.collect::<Vec<_>>();
if jit_type_set_names(self.into(), c_names.as_mut_ptr(), names.len() as u32) == 0 {
oom();
}
}
}
#[inline(always)]
pub fn fields(&self) -> Fields {
Fields::new(self)
}
#[inline(always)]
pub fn params(&self) -> Params {
Params::new(self)
}
#[inline]
pub fn get_field(&self, name:&str) -> Option<Field> {
unsafe {
let c_name = CString::new(name.as_bytes()).unwrap();
let index = jit_type_find_name(self.into(), c_name.as_bytes().as_ptr() as *const c_char);
if index == JIT_INVALID_NAME {
None
} else {
Some(Field {
index: index,
_type: self.into(),
marker: PhantomData,
})
}
}
}
#[inline(always)]
pub fn is_primitive(&self) -> bool {
unsafe {
jit_type_is_primitive(self.into()) != 0
}
}
#[inline(always)]
pub fn is_float(&self) -> bool {
let kind = self.get_kind();
kind.contains(TypeKind::NFloat) || kind.contains(TypeKind::Float32) || kind.contains(TypeKind::Float64)
}
pub fn is_int(&self) -> bool {
self.is_primitive() && !self.is_float()
}
#[inline(always)]
pub fn is_struct(&self) -> bool {
unsafe {
jit_type_is_struct(self.into()) != 0
}
}
#[inline(always)]
pub fn is_union(&self) -> bool {
unsafe {
jit_type_is_union(self.into()) != 0
}
}
#[inline(always)]
pub fn is_signature(&self) -> bool {
unsafe {
jit_type_is_signature(self.into()) != 0
}
}
#[inline(always)]
pub fn is_pointer(&self) -> bool {
unsafe {
jit_type_is_pointer(self.into()) != 0
}
}
#[inline(always)]
pub fn is_tagged(&self) -> bool {
unsafe {
jit_type_is_tagged(self.into()) != 0
}
}
}
impl<'a> IntoIterator for &'a Ty {
type IntoIter = Fields<'a>;
type Item = Field<'a>;
fn into_iter(self) -> Fields<'a> {
self.fields()
}
}
#[derive(PartialEq, Eq)]
pub struct TaggedType<T> {
_type: jit_type_t,
_marker: PhantomData<T>
}
impl<'a, T> Into<jit_type_t> for &'a TaggedType<T> {
fn into(self) -> jit_type_t {
self._type
}
}
impl<T> From<jit_type_t> for TaggedType<T> {
fn from(ptr: jit_type_t) -> TaggedType<T> {
TaggedType {
_type: ptr,
_marker: PhantomData
}
}
}
impl<T> TaggedType<T> {
pub fn new(ty:&Ty, kind: kind::TypeKind, data: Box<T>) -> TaggedType<T> {
unsafe {
let free_data:extern fn(*mut c_void) = ::free_data::<T>;
let ty = jit_type_create_tagged(ty.into(), kind.bits(), mem::transmute(&*data), Some(free_data), 1);
mem::forget(data);
from_ptr(ty)
}
}
pub fn get_tagged_data(&self) -> Option<&T> {
unsafe {
mem::transmute(jit_type_get_tagged_data(self.into()))
}
}
pub fn get_tagged_type(&self) -> &Ty {
unsafe {
from_ptr(jit_type_get_tagged_type(self.into()))
}
}
pub fn set_tagged_data(&self, data: Box<T>) {
unsafe {
let free_data:extern fn(*mut c_void) = ::free_data::<T>;
jit_type_set_tagged_data(self.into(), mem::transmute(&*data), Some(free_data));
mem::forget(data);
}
}
}
impl<T> Drop for TaggedType<T> {
#[inline(always)]
fn drop(&mut self) {
unsafe {
jit_type_free(self._type);
}
}
}
impl<T> Deref for TaggedType<T> {
type Target = Ty;
fn deref(&self) -> &Ty {
unsafe {
mem::transmute(self._type)
}
}
}
#[inline(always)]
pub fn get<'a, T>() -> CowType<'a> where T:Compile<'a> {
<T as Compile>::get_type()
}