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
use std::collections::HashMap;
use crate::{Bytecode, Opcode};
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default, Hash)]
pub struct Reg(pub u32);
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default)]
pub struct RefInt(pub usize);
impl RefInt {
pub fn resolve(&self, ints: &[i32]) -> i32 {
ints[self.0]
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default)]
pub struct RefFloat(pub usize);
impl RefFloat {
pub fn resolve(&self, floats: &[f64]) -> f64 {
floats[self.0]
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default)]
pub struct RefBytes(pub usize);
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default)]
pub struct RefString(pub usize);
impl RefString {
pub fn resolve<'a>(&self, strings: &'a [String]) -> &'a str {
&strings[self.0]
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default)]
pub struct ValBool(pub bool);
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default, Hash)]
pub struct RefGlobal(pub usize);
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct ObjField {
pub name: RefString,
pub t: RefType,
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash, Default)]
pub struct RefField(pub usize);
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ObjProto {
pub name: RefString,
pub findex: RefFun,
pub pindex: i32,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct EnumConstruct {
pub name: RefString,
pub params: Vec<RefType>,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct RefEnumConstruct(pub usize);
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TypeFun {
pub args: Vec<RefType>,
pub ret: RefType,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TypeObj {
pub name: RefString,
pub super_: Option<RefType>,
pub global: RefGlobal,
pub own_fields: Vec<ObjField>,
pub protos: Vec<ObjProto>,
pub bindings: HashMap<RefField, RefFun>,
pub fields: Vec<ObjField>,
}
impl TypeObj {
pub fn get_static_type<'a>(&self, ctx: &'a Bytecode) -> Option<&'a TypeObj> {
if self.global.0 > 0 {
ctx.globals[self.global.0 - 1].resolve_as_obj(&ctx.types)
} else {
None
}
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Type {
Void,
UI8,
UI16,
I32,
I64,
F32,
F64,
Bool,
Bytes,
Dyn,
Fun(TypeFun),
Obj(TypeObj),
Array,
Type,
Ref(RefType),
Virtual {
fields: Vec<ObjField>,
},
DynObj,
Abstract {
name: RefString,
},
Enum {
name: RefString,
global: RefGlobal,
constructs: Vec<EnumConstruct>,
},
Null(RefType),
Method(TypeFun),
Struct(TypeObj),
}
impl Type {
pub fn get_type_obj(&self) -> Option<&TypeObj> {
match self {
Type::Obj(obj) => Some(obj),
Type::Struct(obj) => Some(obj),
_ => None,
}
}
pub fn get_type_obj_mut(&mut self) -> Option<&mut TypeObj> {
match self {
Type::Obj(obj) => Some(obj),
Type::Struct(obj) => Some(obj),
_ => None,
}
}
pub fn get_type_fun(&self) -> Option<&TypeFun> {
match self {
Type::Fun(fun) => Some(fun),
Type::Method(fun) => Some(fun),
_ => None,
}
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default)]
pub struct RefType(pub usize);
impl RefType {
pub fn resolve<'a>(&self, types: &'a [Type]) -> &'a Type {
&types[self.0]
}
pub fn is_void(&self) -> bool {
self.0 == 0
}
pub fn resolve_as_fun<'a>(&self, types: &'a [Type]) -> Option<&'a TypeFun> {
match self.resolve(types) {
Type::Fun(fun) => Some(fun),
Type::Method(fun) => Some(fun),
_ => None,
}
}
pub fn resolve_as_obj<'a>(&self, types: &'a [Type]) -> Option<&'a TypeObj> {
self.resolve(types).get_type_obj()
}
pub fn field<'a>(&self, field: RefField, code: &'a Bytecode) -> Option<&'a ObjField> {
self.resolve_as_obj(&code.types)
.map(|obj| &obj.fields[field.0])
}
pub fn method<'a>(&self, meth: usize, code: &'a Bytecode) -> Option<&'a ObjProto> {
self.resolve_as_obj(&code.types)
.map(|obj| &obj.protos[meth])
}
}
#[derive(Debug, Clone)]
pub struct Native {
pub name: RefString,
pub lib: RefString,
pub t: RefType,
pub findex: RefFun,
}
impl Native {
pub fn name<'a>(&self, code: &'a Bytecode) -> &'a str {
self.name.resolve(&code.strings)
}
pub fn ty<'a>(&self, code: &'a Bytecode) -> &'a TypeFun {
self.t.resolve_as_fun(&code.types).expect("Unknown type ?")
}
pub fn args<'a>(&self, code: &'a Bytecode) -> &'a [RefType] {
&self.ty(code).args
}
pub fn ret<'a>(&self, code: &'a Bytecode) -> &'a Type {
self.ty(code).ret.resolve(&code.types)
}
}
#[derive(Debug, Clone)]
pub struct Function {
pub name: Option<RefString>,
pub t: RefType,
pub findex: RefFun,
pub regs: Vec<RefType>,
pub ops: Vec<Opcode>,
pub debug_info: Option<Vec<(usize, usize)>>,
pub assigns: Option<Vec<(RefString, usize)>>,
pub parent: Option<RefType>,
}
impl Function {
pub fn regtype(&self, reg: Reg) -> RefType {
self.regs[reg.0 as usize]
}
pub fn name<'a>(&self, code: &'a Bytecode) -> Option<&'a str> {
self.name.map(|n| n.resolve(&code.strings))
}
pub fn name_default<'a>(&self, code: &'a Bytecode) -> &'a str {
self.name(code).unwrap_or("_")
}
pub fn ty<'a>(&self, code: &'a Bytecode) -> &'a TypeFun {
self.t.resolve_as_fun(&code.types).expect("Unknown type ?")
}
pub fn args<'a>(&self, code: &'a Bytecode) -> &'a [RefType] {
&self.ty(code).args
}
pub fn ret<'a>(&self, code: &'a Bytecode) -> &'a Type {
self.ty(code).ret.resolve(&code.types)
}
pub fn arg_name<'a>(&self, code: &'a Bytecode, pos: usize) -> Option<&'a str> {
self.assigns.as_ref().and_then(|a| {
a.iter()
.filter(|&&(_, i)| i == 0)
.enumerate()
.find_map(|(j, (s, _))| {
if j == pos {
Some(s.resolve(&code.strings))
} else {
None
}
})
})
}
pub fn var_name(&self, code: &Bytecode, pos: usize) -> Option<String> {
self.assigns.as_ref().and_then(|a| {
a.iter().find_map(|&(s, i)| {
if pos + 1 == i {
Some(s.resolve(&code.strings).to_owned())
} else {
None
}
})
})
}
pub fn is_method(&self) -> bool {
self.parent
.map(|parent| !self.regs.is_empty() && self.regs[0] == parent)
.unwrap_or(false)
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash, Ord, PartialOrd, Default)]
pub struct RefFun(pub usize);
impl RefFun {
pub fn resolve<'a>(&self, code: &'a Bytecode) -> FunPtr<'a> {
code.findexes[self.0].resolve(code)
}
pub fn resolve_as_fn<'a>(&self, code: &'a Bytecode) -> Option<&'a Function> {
code.findexes[self.0].resolve_as_fn(code)
}
pub fn name<'a>(&self, code: &'a Bytecode) -> Option<&'a str> {
match self.resolve(code) {
FunPtr::Fun(fun) => fun.name(code),
FunPtr::Native(n) => Some(n.name.resolve(&code.strings)),
}
}
pub fn name_default<'a>(&self, code: &'a Bytecode) -> &'a str {
match self.resolve(code) {
FunPtr::Fun(fun) => fun.name_default(code),
FunPtr::Native(n) => n.name(code),
}
}
pub fn ty<'a>(&self, code: &'a Bytecode) -> &'a TypeFun {
match self.resolve(code) {
FunPtr::Fun(fun) => fun.ty(code),
FunPtr::Native(n) => n.ty(code),
}
}
pub fn args<'a>(&self, code: &'a Bytecode) -> &'a [RefType] {
&self.ty(code).args
}
pub fn ret<'a>(&self, code: &'a Bytecode) -> &'a Type {
self.ty(code).ret.resolve(&code.types)
}
}
#[derive(Debug, Copy, Clone)]
pub enum RefFunKnown {
Fun(usize),
Native(usize),
}
impl RefFunKnown {
pub fn resolve<'a>(&self, code: &'a Bytecode) -> FunPtr<'a> {
match *self {
RefFunKnown::Fun(x) => FunPtr::Fun(&code.functions[x]),
RefFunKnown::Native(x) => FunPtr::Native(&code.natives[x]),
}
}
pub fn resolve_as_fn<'a>(&self, code: &'a Bytecode) -> Option<&'a Function> {
match self {
&RefFunKnown::Fun(x) => Some(&code.functions[x]),
_ => None,
}
}
}
#[derive(Debug, Copy, Clone)]
pub enum FunPtr<'a> {
Fun(&'a Function),
Native(&'a Native),
}
impl FunPtr<'_> {
pub fn findex(&self) -> RefFun {
match self {
FunPtr::Fun(fun) => fun.findex,
FunPtr::Native(n) => n.findex,
}
}
pub fn is_fun(&self) -> bool {
matches!(self, FunPtr::Fun(_))
}
pub fn is_native(&self) -> bool {
matches!(self, FunPtr::Native(_))
}
}
#[derive(Debug, Clone)]
pub struct ConstantDef {
pub global: RefGlobal,
pub fields: Vec<usize>,
}