forked from zetavm/zetavm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntime.pls
799 lines (676 loc) · 14.6 KB
/
runtime.pls
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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
/// Throw an exception
var rt_throw = function (e)
{
$throw(e);
};
/// Addition operator
var rt_add = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $add_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $add_i32(x, y);
}
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $add_f32(x, y);
}
if (typeof y == "int32")
{
return $add_f32(x, $i32_to_f32(y));
}
}
if (typeof x == "string")
{
if (typeof y == "string")
{
return $str_cat(x, y);
}
}
assert (
false,
"unhandled type in addition"
);
};
/// Subtraction operator
var rt_sub = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $sub_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $sub_i32(x, y);
}
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $sub_f32(x, y);
}
if (typeof y == "int32")
{
return $sub_f32(x, $i32_to_f32(y));
}
}
assert (
false,
"unhandled type in subtraction"
);
};
var rt_mul = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $mul_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $mul_i32(x, y);
}
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $mul_f32(x, y);
}
if (typeof y == "int32")
{
return $mul_f32(x, $i32_to_f32(y));
}
}
assert (
false,
"unhandled type in multiplication"
);
};
var rt_div = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $div_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $div_f32($i32_to_f32(x), $i32_to_f32(y));
}
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $div_f32(x, y);
}
if (typeof y == "int32")
{
return $div_f32(x, $i32_to_f32(y));
}
}
assert (
false,
"unhandled type in division"
);
};
/// Integer modulo/remainer operator
var rt_mod = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "int32")
{
return $mod_i32(x, y);
}
}
assert (
false,
"unhandled type in modulo"
);
};
/// bitwise left-shift operator
var rt_shl = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "int32")
{
return $shl_i32(x, y);
}
}
assert (
false,
"unhandled type in bitwise left shift"
);
};
/// bitwise right-shift operator (sign-extending)
var rt_shr = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "int32")
{
return $shr_i32(x, y);
}
}
assert (
false,
"unhandled type in bitwise right shift"
);
};
/// bitwise unsigned right-shift operator
var rt_ushr = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "int32")
{
return $ushr_i32(x, y);
}
}
assert (
false,
"unhandled type in bitwise unsigned right shift"
);
};
/// bitwise and operator
var rt_and = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "int32")
{
return $and_i32(x, y);
}
}
assert (
false,
"unhandled type in bitwise and"
);
};
/// bitwise or operator
var rt_or = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "int32")
{
return $or_i32(x, y);
}
}
assert (
false,
"unhandled type in bitwise or"
);
};
/// bitwise exclusive-or operator
var rt_xor = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "int32")
{
return $xor_i32(x, y);
}
}
assert (
false,
"unhandled type in xor"
);
};
/// Bitwise not; one's-complement
var rt_bit_not = function (x)
{
if (typeof x == "int32")
{
return $not_i32(x);
}
assert (
false,
"unhandled type in bitwise not"
);
};
/// Logical negation
var rt_not = function (x)
{
if (x)
return false;
else
return true;
};
/// Equality comparison
var rt_eq = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $eq_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $eq_i32(x, y);
}
return false;
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $eq_f32(x, y);
}
if (typeof y == "int32")
{
return $eq_f32(x, $i32_to_f32(y));
}
return false;
}
if (typeof x == "string")
{
if (typeof y == "string")
{
return $eq_str(x, y);
}
return false;
}
if (typeof x == "object")
{
if (typeof y == "object")
{
return $eq_obj(x, y);
}
return false;
}
if (typeof x == "array")
{
if (typeof y == "array")
{
return $eq_array(x, y);
}
return false;
}
if (typeof x == "bool")
{
if (typeof y == "bool")
{
return $eq_bool(x, y);
}
return false;
}
if (typeof x == "undef")
{
if (typeof y == "undef")
{
return true;
}
return false;
}
assert (
false,
"unhandled type in equality comparison: " + typeof x
);
};
/// Inequality comparison
var rt_ne = function (x, y)
{
if (rt_eq(x, y))
return false;
else
return true;
};
var rt_lt = function(x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $lt_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $lt_i32(x, y);
}
throw "incompatible types in comparison";
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $lt_f32(x, y);
}
if (typeof y == "int32")
{
return $lt_f32(x, $i32_to_f32(y));
}
throw "incompatible types in comparison";
}
throw "invalid types in comparison";
};
/// Less than or equal comparison
var rt_le = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $le_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $le_i32(x, y);
}
throw "incompatible types in comparison";
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $le_f32(x, y);
}
if (typeof y == "int32")
{
return $le_f32(x, $i32_to_f32(y));
}
throw "incompatible types in comparison";
}
if (typeof x == "string")
{
if (typeof y == "string")
{
// TODO: proper string comparison
assert ($eq_i32($str_len(x), 1), "rt_le");
assert ($eq_i32($str_len(y), 1), "rt_le");
return $get_char_code(x, 0) <= $get_char_code(y, 0);
}
}
throw "invalid types in comparison";
};
var rt_gt = function(x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $gt_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $gt_i32(x, y);
}
throw "incompatible types in comparison";
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $gt_f32(x, y);
}
if (typeof y == "int32")
{
return $gt_f32(x, $i32_to_f32(y));
}
throw "incompatible types in comparison";
}
throw "invalid types in comparison";
};
/// Greater than or equal comparison
var rt_ge = function (x, y)
{
if (typeof x == "int32")
{
if (typeof y == "float32")
{
return $ge_f32($i32_to_f32(x), y);
}
if (typeof y == "int32")
{
return $ge_i32(x, y);
}
throw "incompatible types in comparison";
}
if (typeof x == "float32")
{
if (typeof y == "float32")
{
return $ge_f32(x, y);
}
if (typeof y == "int32")
{
return $ge_f32(x, $i32_to_f32(y));
}
throw "incompatible types in comparison";
}
if (typeof x == "string")
{
if (typeof y == "string")
{
// TODO: proper string comparison
assert ($eq_i32($str_len(x), 1), "rt_ge");
assert ($eq_i32($str_len(y), 1), "rt_ge");
return $get_char_code(x, 0) >= $get_char_code(y, 0);
}
}
throw "invalid types in comparison";
};
/// Property existence check operator
var rt_in = function (x, y)
{
if (typeof x == "string")
{
if (typeof y == "object")
{
if ($has_field(y, x))
return true;
if ($has_field(y, 'proto') && typeof y.proto == "object")
return rt_in(x, y.proto);
return false;
}
}
assert (
false,
"unhandled type in the 'in' operator"
);
};
/// Instanceof operator
var rt_instOf = function (obj, proto)
{
assert (
typeof obj == "object",
"instanceof only applies to objects"
);
assert (
typeof proto == "object",
"prototype in instanceof must be an object"
);
if ($has_field(obj, "proto"))
{
var objProto = $get_field(obj, "proto");
if ($eq_obj(objProto, proto))
return true;
return rt_instOf(objProto, proto);
}
// This object has no prototype
return false;
};
/// Property access
var rt_getProp = function (base, name)
{
if (typeof base == "object")
{
if ($has_field(base, name))
{
return $get_field(base, name);
}
if ($has_field(base, "proto"))
{
var proto = $get_field(base, "proto");
return rt_getProp(proto, name);
}
assert (false, 'undefined property "' + name + '"');
}
if (typeof base == "array")
{
if (name == "length")
{
return $array_len(base);
}
// TODO: replace by array library method
// Note: may need to optimize `import` with caching
// in order to avoid a perf impact
if (name == "push")
{
return rt_push;
}
// Lazily import the array library
var array = import "std/array/0";
// Lookup the property on the array prototype object
return array.prototype[name];
}
if (typeof base == "string")
{
if (name == "length")
{
return $str_len(base);
}
// Lazily import the string library
var string = import "std/string/0";
// Lookup the property on the string prototype object
return string.prototype[name];
}
assert (
false,
'unhandled base type in read of property \"' + name + '"'
);
};
/// Indexing operator implementation (ie: base[idx])
var rt_getElem = function (base, idx)
{
if (typeof base == "array")
{
assert (
typeof idx == "int32",
"unhandled index type in getElem with array base; should be int32"
);
// TODO: check bounds
return $get_elem(base, idx);
}
if (typeof base == "string")
{
assert (
typeof idx == "int32",
"unhandled index type in getElem with string base; should be int32"
);
// TODO: check bounds
//if (index < $str_len(base))
return $get_char(base, idx);
}
if (typeof base == "object")
{
assert (
typeof idx == "string",
"unhandled index type in getElem with object base; should be string"
);
return $get_field(base, idx);
}
assert (
false,
"unhandled base type in getElem; should be array, string, or object"
);
};
/// Assign-to-index operator implementation (ie: base[idx] = val)
var rt_setElem = function (base, idx, val)
{
if (typeof base == "array")
{
assert (
typeof idx == "int32",
"unhandled index type in setElem with array base; should be int32"
);
// TODO: check bounds
$set_elem(base, idx, val);
return val;
}
if (typeof base == "object")
{
assert (
typeof idx == "string",
"unhandled index type in setElem with object base; should be string"
);
$set_field(base, idx, val);
return val;
}
assert (
false,
"unhandled base type in setElem; should be array or object"
);
};
/// Array push method
var rt_push = function (arr, val)
{
$array_push(arr, val);
};
/// Write to standard output
var output = function (x)
{
// Note: we lazily import core packages because references to
// host functions can't be serialized, and so should not be stored
// in the global object.
var io = import "core/io/0";
if (typeof x == "string")
{
io.print_str(x);
return;
}
if (typeof x == "int32")
{
io.print_int32(x);
return;
}
if (typeof x == "float32")
{
io.print_float32(x);
return;
}
if (typeof x == "array" || typeof x == "object")
{
// Lazily import the std/string package
var string = import "std/string/0";
io.print_str(string.toString(x));
return;
}
if (x == true)
{
output("true");
return;
}
if (x == false)
{
output("false");
return;
}
assert (
false,
"unhandled type in output function"
);
};
/// Print to standard output and include a line terminator
var print = function (x)
{
output(x);
output('\n');
};