-
Notifications
You must be signed in to change notification settings - Fork 4
/
mach.sml
1284 lines (1100 loc) · 41.8 KB
/
mach.sml
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
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* -*- mode: sml; mode: font-lock; tab-width: 4; insert-tabs-mode: nil; indent-tabs-mode: nil -*- *)
(*
* The following licensing terms and conditions apply and must be
* accepted in order to use the Reference Implementation:
*
* 1. This Reference Implementation is made available to all
* interested persons on the same terms as Ecma makes available its
* standards and technical reports, as set forth at
* http://www.ecma-international.org/publications/.
*
* 2. All liability and responsibility for any use of this Reference
* Implementation rests with the user, and not with any of the parties
* who contribute to, or who own or hold any copyright in, this Reference
* Implementation.
*
* 3. THIS REFERENCE IMPLEMENTATION IS PROVIDED BY THE COPYRIGHT
* HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* End of Terms and Conditions
*
* Copyright (c) 2007 Adobe Systems Inc., The Mozilla Foundation, Opera
* Software ASA, and others.
*)
(* "Virtual machine" for executing ES4 code. *)
structure Mach = struct
open Ast
(* Local tracing machinery *)
val doTrace = ref false
val traceStack = ref false
fun log ss = LogErr.log ("[mach] " :: ss)
fun trace ss = if (!doTrace) then log ss else ()
fun error ss = LogErr.machError ss
fun error0 ss = LogErr.machError ss
structure StrListKey = struct type ord_key = string list val compare = List.collate String.compare end
structure StrListMap = SplayMapFn (StrListKey);
structure NsKey = struct type ord_key = NAMESPACE val compare = NameKey.cmpNS end
structure NsMap = SplayMapFn (NsKey);
structure NmKey = struct type ord_key = NAME val compare = NameKey.compare end
structure NmMap = SplayMapFn (NmKey);
structure StrKey = struct type ord_key = Ustring.STRING val compare = (fn (a,b) => Ustring.compare a b) end
structure StrMap = SplayMapFn (StrKey);
structure Real64Key = struct type ord_key = Real64.real val compare = Real64.compare end
structure Real64Map = SplayMapFn (Real64Key);
structure IntKey = struct type ord_key = Int.int val compare = Int.compare end
structure IntMap = SplayMapFn (IntKey);
fun nameEq (a:NAME) (b:NAME) = ((#id a) = (#id b) andalso (#ns a) = (#ns b))
val cachesz = 4096
(*
* FIXME: these are supposed to be Removable, Enumerable, Writable and Fixed.
* Unfortunately it means we have to go invert the sense of the first three
* all through the code. Yay.
*)
datatype WRITABILITY = ReadOnly | WriteOnce | Writable
type ATTRS = { removable: BOOLEAN,
enumerable: BOOLEAN,
fixed: BOOLEAN,
writable: WRITABILITY }
datatype VALUE = ObjectValue of OBJECT
| UndefinedValue
| NullValue
and OBJECT =
Object of { propertyMap: PROPERTY_MAP,
fixtureMap: FIXTURE_MAP,
ident: OBJECT_IDENTIFIER,
tag: TAG,
proto: VALUE }
and TAG =
RecordTag of FIELD_TYPE list
| ArrayTag of (TYPE list * TYPE option)
| PrimitiveTag of PRIMITIVE
| InstanceTag of CLASS
| NoTag
and OBJECT_CACHE =
ObjCache of
{
doubleCache: (OBJECT Real64Map.map) ref,
nsCache: (OBJECT NsMap.map) ref,
nmCache: (OBJECT NmMap.map) ref,
strCache: (OBJECT StrMap.map) ref,
tyCache: (TYPE IntMap.map) ref (* well, mostly objs *)
}
and PROFILER =
Profiler of
{
profileMap: (int StrListMap.map) ref, (* = ref StrListMap.empty *)
doProfile: (int option) ref (* = ref NONE *)
}
and SPECIAL_OBJS =
SpecialObjs of
{
typeInterface : (OBJECT option) ref,
namespaceClass : (OBJECT option) ref,
objectClass : (OBJECT option) ref,
arrayClass : (OBJECT option) ref,
functionClass : (OBJECT option) ref,
stringClass : (OBJECT option) ref,
stringWrapperClass : (OBJECT option) ref,
numberClass : (OBJECT option) ref,
doubleClass : (OBJECT option) ref,
decimalClass : (OBJECT option) ref,
booleanClass : (OBJECT option) ref,
booleanWrapperClass : (OBJECT option) ref,
booleanTrue : (OBJECT option) ref,
booleanFalse : (OBJECT option) ref,
doubleNaN : (OBJECT option) ref,
argumentsClass : (OBJECT option) ref,
generatorClass : (OBJECT option) ref
}
and FRAME =
Frame of { name: string, args: VALUE list }
(*
* Primitive is visible only to the interpreter;
* it is not visible to users.
*)
and PRIMITIVE =
BooleanPrimitive of BOOLEAN
| DoublePrimitive of IEEE_754_BINARY_64_BIT
| DecimalPrimitive of IEEE_754R_DECIMAL_128_BIT
| StringPrimitive of STRING
| NamespacePrimitive of NAMESPACE
| FunctionPrimitive of CLOSURE
| TypePrimitive of TYPE
| ArgumentsPrimitive of SCOPE
| NativeFunctionPrimitive of NATIVE_FUNCTION (* INFORMATIVE *)
| GeneratorPrimitive of GENERATOR
and SCOPE =
Scope of { object: OBJECT,
parent: SCOPE option,
temps: TEMPS,
kind: SCOPE_KIND }
and SCOPE_KIND =
WithScope
| GlobalScope
| InstanceScope of CLASS
| ClassScope
| ActivationScope
| BlockScope
| TypeArgScope
| EvalScope
and TEMP_STATE = UninitTemp
| ValTemp of VALUE
and PROPERTY_STATE = ValueProperty of VALUE
| VirtualProperty of
{ getter: CLOSURE option,
setter: CLOSURE option }
and AUX =
Aux of
{
(*
* Auxiliary machine/eval data structures, not exactly
* spec-normative, but important! Embedded in REGS.
*)
langEd: int ref,
booting: bool ref,
specials: SPECIAL_OBJS,
stack: FRAME list ref,
objCache: OBJECT_CACHE,
profiler: PROFILER
}
and GENERATOR_STATE = NewbornGenerator of (unit -> GENERATOR_SIGNAL)
| DormantGenerator of (GENERATOR_SIGNAL -> GENERATOR_SIGNAL)
| RunningGenerator
| ClosedGenerator
and GENERATOR_SIGNAL = YieldSignal of VALUE
| SendSignal of VALUE
| ThrowSignal of VALUE
| StopSignal
| CloseSignal
and GENERATOR = Generator of GENERATOR_STATE ref
withtype CLOSURE =
{ func: FUNC,
this: OBJECT option,
env: SCOPE }
and REGS =
{
scope: SCOPE,
this: OBJECT,
thisFun: OBJECT option,
thisGenerator: OBJECT option,
global: OBJECT,
rootFixtureMap: FIXTURE_MAP
, aux: AUX (* INFORMATIVE *)
}
and NATIVE_FUNCTION =
{ func: ({ scope: SCOPE,
this: OBJECT,
thisFun: OBJECT option,
thisGenerator: OBJECT option,
global: OBJECT,
rootFixtureMap: FIXTURE_MAP,
aux: AUX } (* REGS *)
-> VALUE list -> VALUE),
length: int }
and OBJECT_IDENTIFIER = (* LDOTS *)
int
(* Important to model "fixedness" separately from
* "removable-ness" because fixedness affects
* which phase of name lookup the name is found during.
*)
and TEMPS = (TYPE * TEMP_STATE) list ref
and PROPERTY = { ty: TYPE,
state: PROPERTY_STATE,
attrs: ATTRS }
and PROPERTY_MAP = (* LDOTS *)
{ max_seq: int,
bindings: { seq: int,
prop: (* PROPERTY *)
{ ty: TYPE,
state: PROPERTY_STATE,
attrs: ATTRS } } NameMap.map } ref
fun isObject (v:VALUE) : bool =
case v of
ObjectValue _ => true
| _ => false
fun isDouble (ObjectValue (Object {tag = PrimitiveTag (DoublePrimitive _), ...})) = true
| isDouble _ = false
fun isDecimal (ObjectValue (Object {tag = PrimitiveTag (DecimalPrimitive _), ...})) = true
| isDecimal _ = false
fun isString (ObjectValue (Object {tag = PrimitiveTag (StringPrimitive _), ...})) = true
| isString _ = false
fun isBoolean (ObjectValue (Object {tag = PrimitiveTag (BooleanPrimitive _), ...})) = true
| isBoolean _ = false
fun isNamespace (ObjectValue (Object {tag = PrimitiveTag (NamespacePrimitive _), ...})) = true
| isNamespace _ = false
fun isClass (ObjectValue (Object {tag = PrimitiveTag (TypePrimitive (ClassType _)), ...})) = true
| isClass _ = false
fun isInterface (ObjectValue (Object {tag = PrimitiveTag (TypePrimitive (InterfaceType _)), ...})) = true
| isInterface _ = false
fun isFunction (ObjectValue (Object {tag = PrimitiveTag (FunctionPrimitive _), ...})) = true
| isFunction _ = false
fun isType (ObjectValue (Object {tag = PrimitiveTag (TypePrimitive _), ...})) = true
| isType _ = false
fun isNativeFunction (ObjectValue (Object {tag = PrimitiveTag (NativeFunctionPrimitive _), ...})) = true
| isNativeFunction _ = false
fun isNumeric ob = isDouble ob orelse isDecimal ob
fun isNull NullValue = true
| isNull _ = false
fun isUndef UndefinedValue = true
| isUndef _ = false
(*
* The "machine type" of a value here is an ES3-ism. It exists only for
* compatibility, and has nothing to do with the ES4 type system.
*
* The important part is that in ES3 algorithms, a machine value has
* exactly *one* of these types. No overlap!
*)
datatype MACHTY = TYNULL | TYUNDEF | TYNUMBER | TYSTRING | TYBOOLEAN | TYOBJECT
fun es3Type (v:VALUE) : MACHTY =
if isNull v then TYNULL
else if isUndef v then TYUNDEF
else if isNumeric v then TYNUMBER
else if isString v then TYSTRING
else if isBoolean v then TYBOOLEAN
else TYOBJECT
fun isSameType (va:VALUE) (vb:VALUE) : bool =
es3Type va = es3Type vb
(* Binding operations. *)
fun newPropertyMap _ : PROPERTY_MAP =
ref { max_seq = 0, bindings = NameMap.empty }
fun addProp (b:PROPERTY_MAP)
(n:NAME)
(x:PROPERTY)
: unit =
let
val { max_seq, bindings } = !b
val s = max_seq + 1
val binding = { seq = s, prop = x }
val bindings = NameMap.insert (bindings, n, binding)
in
b := { max_seq = s, bindings = bindings }
end
fun delProp (b:PROPERTY_MAP)
(n:NAME)
: unit =
let
val { max_seq, bindings } = !b
val (bindings, _) = NameMap.remove (bindings, n)
in
b := { max_seq = max_seq, bindings = bindings }
end
fun updateProp (b:PROPERTY_MAP)
(n:NAME)
(x:PROPERTY)
: unit =
let
val { max_seq, bindings } = !b
val (bindings, {seq, prop}) = NameMap.remove (bindings, n)
val binding = {seq=seq, prop=x}
val bindings = NameMap.insert ( bindings, n, binding)
in
b := { max_seq = max_seq, bindings = bindings }
end
fun findProp (b:PROPERTY_MAP)
(n:NAME)
: PROPERTY option =
let
val { bindings, ... } = !b
in
case NameMap.find (bindings, n) of
NONE => NONE
| SOME { prop, ... } => SOME prop
end
fun matchProps (fixedProps:bool)
(b:PROPERTY_MAP)
(searchId:IDENTIFIER)
(nss:NAMESPACE list)
: NAME list =
let
fun tryNS ns =
let
val name = {id=searchId, ns=ns}
in
case findProp b name of
NONE => NONE
| SOME _ => SOME name
end
in
List.mapPartial tryNS nss
end
fun getProp (b:PROPERTY_MAP)
(n:NAME)
: PROPERTY =
case findProp b n of
SOME p => p
| NONE =>
(*
* If not found, then cons up a temporary property
* with value undefined. Any property not found
* errors would have been caught by evalRefExpr
*)
{ty=UndefinedType ,
state=ValueProperty UndefinedValue,
attrs={removable=true, (* unused attrs *)
enumerable=false,
writable=Writable,
fixed=false}}
fun hasProp (b:PROPERTY_MAP)
(n:NAME)
: bool =
case findProp b n of
NONE => false
| SOME _ => true
fun hasFixedProp (b:PROPERTY_MAP)
(n:NAME)
: bool =
case findProp b n of
NONE => false
| SOME {attrs={fixed, ...}, ...} => fixed
fun hasPrimitive (Object { tag = PrimitiveTag _, ... }) = true
| hasPrimitive _ = false
fun getObjId (Object { ident, ...}) = ident
fun getFixtureMap (regs:REGS)
(obj:OBJECT)
: FIXTURE_MAP =
let
val { rootFixtureMap, global, ... } = regs
val Object { fixtureMap, ident, ... } = obj
in
if (getObjId global) = ident
then rootFixtureMap
else fixtureMap
end
fun getFixtureMaps (regs:REGS)
(scope:SCOPE)
: FIXTURE_MAPS =
let
val Scope {object, parent, ...} = scope
val fixtureMap = getFixtureMap regs object
in
case parent of
NONE => [fixtureMap]
| SOME p => fixtureMap :: (getFixtureMaps regs p)
end
fun setPropEnumerable (propertyMap:PROPERTY_MAP)
(n:NAME)
(enumerable:bool)
: unit =
case findProp propertyMap n of
SOME prop =>
let
val attrs = (#attrs prop)
val newProp = { ty = (#ty prop),
state = (#state prop),
attrs = { removable = (#removable attrs),
enumerable = enumerable,
writable = (#writable attrs),
fixed = (#fixed attrs) } }
in
delProp propertyMap n;
addProp propertyMap n newProp
end
| NONE => ()
(* Safe: will overflow when it runs out of identities. *)
val currIdent = ref 0
fun nextIdent _ =
(currIdent := (((!currIdent) + 1)
handle Overflow => error ["overflowed maximum object ID"]);
!currIdent)
fun newObject (t:TAG)
(p:VALUE)
(fixtureMap:FIXTURE_MAP)
: OBJECT =
Object { ident = nextIdent (),
tag = t,
propertyMap = newPropertyMap (),
proto = p,
fixtureMap = fixtureMap }
fun newObjectNoTag (fixtureMap:FIXTURE_MAP)
: OBJECT =
newObject NoTag NullValue fixtureMap
fun getProto (ob:OBJECT)
: VALUE =
let
val Object {proto, ...} = ob
in
proto
end
fun getTemp (temps:TEMPS)
(n:int)
: VALUE =
let
val _ = trace ["getTemp ",Int.toString n]
in
if n >= length (!temps)
then LogErr.machError ["getting out-of-bounds temporary"]
else
case List.nth ((!temps), n) of
(_, UninitTemp) => LogErr.machError ["getting uninitialized temporary ",Int.toString n]
| (_, ValTemp v) => v
end
fun defTemp (temps:TEMPS)
(n:int)
(v:VALUE)
: unit =
let
val _ = trace ["defTemp ",Int.toString n]
fun replaceNth k [] = LogErr.machError ["temporary-definition error"]
| replaceNth k (x::xs) =
if k = 0
then (case x of
(t, UninitTemp) =>
((* FIXME: put typecheck here *)
(t, ValTemp v) :: xs)
| (t, _) =>
(t, ValTemp v) :: xs)
(* ISSUE: we allow redef of temps: LogErr.machError ["re-defining temporary"]) *)
else x :: (replaceNth (k-1) xs)
in
if n >= (length (!temps))
then LogErr.machError ["defining out-of-bounds temporary"]
else temps := replaceNth n (!temps)
end
fun isIntegral d =
let
val truncated = Real64.realTrunc d
in
if Real64.isFinite d
then Real64.==(truncated, d)
else false
end
fun isInRange (low:Real64.real)
(high:Real64.real)
(d:Real64.real)
: bool =
low <= d andalso d <= high
(*
* Some stringification helpers on low-level values.
*)
fun primitiveToUstring (primitive:PRIMITIVE)
: Ustring.STRING =
case primitive of
DoublePrimitive n => NumberToString n
| DecimalPrimitive d => Ustring.fromString (Decimal.toString d)
| StringPrimitive s => s
| BooleanPrimitive true => Ustring.true_
| BooleanPrimitive false => Ustring.false_
| NamespacePrimitive ns => Ustring.fromString (LogErr.namespace ns)
| FunctionPrimitive _ => Ustring.fromString "[function FunctionPrimitive]"
| TypePrimitive _ => Ustring.fromString "[type TypePrimitive]"
| NativeFunctionPrimitive _ => Ustring.fromString "[function FunctionPrimitive]"
(* XXX: why does this trump the toString method? *)
| ArgumentsPrimitive _ => Ustring.fromString "[object Arguments]"
| GeneratorPrimitive _ => Ustring.fromString "[object GeneratorPrimitive]"
(*
* ES-262-3 9.8.1: ToString applied to the Number (double) type.
*)
and NumberToString (r:Real64.real)
: Ustring.STRING =
if Real64.isNan r
then Ustring.NaN_
else
if Real64.==(0.0, r) orelse Real64.==(~0.0, r)
then Ustring.zero
else
if Real64.<(r, 0.0)
then Ustring.append [Ustring.dash, NumberToString (Real64.~(r))]
else
if Real64.==(Real64.posInf, r)
then Ustring.Infinity_
else
let
(*
* Unfortunately SML/NJ has a pretty deficient selection of the numerical
* primitives; about the best we can get from it is a high-precision SCI
* conversion that we then parse. This is significantly more fun than
* writing your own dtoa.
*)
val x = Real64.fmt (StringCvt.SCI (SOME 30)) r
val (mantissaSS,expSS) = Substring.splitr (fn c => not (c = #"E")) (Substring.full x)
val mantissaSS = Substring.dropr (fn c => (c = #"E") orelse (c = #"0")) mantissaSS
val (preDot,postDot) = Substring.position "." mantissaSS
val postDot = Substring.triml 1 postDot
val exp = valOf (Int.fromString (Substring.string expSS))
val digits = (Substring.explode preDot) @ (Substring.explode postDot)
val k = length digits
val n = exp + 1
fun zeroes z = List.tabulate (z, (fn _ => #"0"))
fun expstr _ = (#"e" ::
(if (n-1) < 0 then #"-" else #"+") ::
(String.explode (Int.toString (Int.abs (n-1)))))
in
Ustring.fromString
(String.implode
(if k <= n andalso n <= 21
then digits @ (zeroes (n-k))
else
if 0 < n andalso n <= 21
then (List.take (digits, n)) @ [#"."] @ (List.drop (digits, n))
else
if ~6 < n andalso n <= 0
then [#"0", #"."] @ (zeroes (~n)) @ digits
else
if k = 1
then digits @ (expstr())
else (hd digits) :: #"." :: ((tl digits) @ expstr())))
end
fun inspect (v:VALUE)
(d:Int32.int)
: unit =
let
val pad = " "
fun p 0 s = List.app TextIO.print s
| p n s = (TextIO.print pad; p (n-1) s)
fun nl _ = TextIO.print "\n";
fun att {removable,enumerable,writable,fixed} =
if not removable
andalso not enumerable
andalso (writable = ReadOnly)
andalso not fixed
then ""
else
(" ("
^ (if removable then "R," else "")
^ (if enumerable then "E," else "")
^ (case writable of
ReadOnly => ""
| WriteOnce => "WO"
| Writable => "W")
^ (if fixed then "F" else "")
^ ") ")
fun id (Object ob) = Int.toString (#ident ob)
fun typ t = LogErr.ty t
fun primType t =
case t of
FunctionPrimitive { func = Func { ty=ty0, ... }, ... }
=> (" : " ^ (typ ty0))
| TypePrimitive t
=> (" = " ^ (typ t))
| _ => ""
(* FIXME: elaborate printing of type expressions. *)
fun prim m = case m of
StringPrimitive s => ("\"" ^ (Ustring.toAscii s) ^ "\"")
| m => Ustring.toAscii (primitiveToUstring m) ^ (primType m)
fun tag (Object ob) =
case (#tag ob) of
(* FIXME: elaborate printing of structural tags. *)
RecordTag _ => "<Record>"
| ArrayTag _ => "<Arrray>"
| InstanceTag t => "<Instance " ^ (typ (InstanceType t)) ^ ">"
| PrimitiveTag p => "<Primitive " ^ (prim p) ^ ">"
| NoTag => "<NoTag>"
fun printVal indent _ UndefinedValue = TextIO.print "undefined\n"
| printVal indent _ NullValue = TextIO.print "null\n"
| printVal indent 0 (ObjectValue obj) = TextIO.print ((tag obj) ^ "\n")
| printVal indent n (ObjectValue obj) =
let
fun subVal i v = printVal (i+1) (n-1) v
fun prop np =
let
val (n,binding) = np
val {prop={ty=ty0, state, attrs}, seq} = binding
val indent = indent + 1
val stateStr =
case state of
ValueProperty v => "[val]"
| VirtualProperty _ => "[virtual val]"
in
p indent [" prop = ", LogErr.name n, ": ", typ ty0, att attrs, " = "];
case state of
ValueProperty v => subVal indent v
| _ => TextIO.print (stateStr ^ "\n")
end
val Object { propertyMap, proto, fixtureMap, ... } = obj
val { bindings, ... } = !propertyMap
in
TextIO.print "Object {\n";
p indent [" tag = ", (tag obj)]; nl();
p indent [" ident = ", (id obj)]; nl();
p indent [" proto = "]; subVal indent (proto);
p indent [" propertyMap = ["]; nl();
NameMap.appi prop bindings;
p indent [" ]"]; nl();
p indent [" fixtureMap = "]; nl();
Fixture.printFixtureMap fixtureMap;
p indent ["}"];
nl ()
end
in
printVal 0 d v
end
(*
* To get from any object to its CLASS, you work out the
* "nominal base" of the object's tag. You can then find
* a fixed prop in the global object that has a "ClassPrimitive"
* primitive value pointing to the CLASS.
*)
fun nominalBaseOfTag (to:TAG)
: NAME =
case to of
RecordTag _ => Name.public_Object
| ArrayTag _ => Name.public_Array
| InstanceTag (Class {name, ...}) => name
| PrimitiveTag (BooleanPrimitive _) => Name.ES4_boolean
| PrimitiveTag (DoublePrimitive _) => Name.ES4_double
| PrimitiveTag (DecimalPrimitive _) => Name.ES4_decimal
| PrimitiveTag (StringPrimitive _) => Name.ES4_string
| PrimitiveTag (NamespacePrimitive _) => Name.ES4_Namespace
| PrimitiveTag (FunctionPrimitive _) => Name.public_Function
| PrimitiveTag (TypePrimitive _) => Name.intrinsic_Type
| PrimitiveTag (NativeFunctionPrimitive _) => Name.public_Function
| PrimitiveTag (GeneratorPrimitive _) => Name.helper_GeneratorImpl
| PrimitiveTag (ArgumentsPrimitive _) => Name.helper_Arguments
| NoTag => error ["nominalBaseOfTag on NoTag"]
fun getObjPrimitive (Object { tag = PrimitiveTag m, ... }) = SOME m
| getObjPrimitive _ = NONE
fun getPrimitive (ObjectValue (Object { tag = PrimitiveTag m, ... })) = SOME m
| getPrimitive _ = NONE
fun needPrimitive (ObjectValue (Object { tag = PrimitiveTag m, ... })) = m
| needPrimitive _ = error ["require object with primitive"]
fun needClass (ObjectValue (Object {tag = PrimitiveTag (TypePrimitive (ClassType c)), ...})) = c
| needClass _ = error ["require class object"]
fun needInterface (ObjectValue (Object {tag = PrimitiveTag (TypePrimitive (InterfaceType i)), ...})) = i
| needInterface _ = error ["require interface object"]
fun needFunction (ObjectValue (Object {tag = PrimitiveTag (FunctionPrimitive f), ...})) = f
| needFunction _ = error ["require function object]"]
fun needNamespace (ObjectValue (Object {tag = PrimitiveTag (NamespacePrimitive n), ...})) = n
| needNamespace _ = error ["require namespace object"]
fun needNamespaceOrNull NullValue = Name.publicNS
| needNamespaceOrNull (ObjectValue (Object {tag = PrimitiveTag (NamespacePrimitive n), ...})) = n
| needNamespaceOrNull _ = error ["require namespace object"]
fun needType (ObjectValue (Object {tag = PrimitiveTag (TypePrimitive t), ...})) = t
| needType _ = error ["require type object"]
fun needDouble (ObjectValue (Object {tag = PrimitiveTag (DoublePrimitive d), ...})) = d
| needDouble _ = error ["require double object"]
fun needDecimal (ObjectValue (Object {tag = PrimitiveTag (DecimalPrimitive d), ...})) = d
| needDecimal _ = error ["require decimal object"]
fun needBoolean (ObjectValue (Object {tag = PrimitiveTag (BooleanPrimitive b), ...})) = b
| needBoolean _ = error ["require boolean object"]
fun needString (ObjectValue (Object {tag = PrimitiveTag (StringPrimitive s), ...})) = s
| needString _ = error ["require string object"]
fun needArguments (ObjectValue (Object {tag = PrimitiveTag (ArgumentsPrimitive s), ...})) = s
| needArguments _ = error ["require arguments object"]
(* Call stack and debugging stuff *)
(* An approximation of an invocation argument list, for debugging. *)
fun approx (arg:VALUE)
: string =
case arg of
NullValue => "null"
| UndefinedValue => "undefined"
| ObjectValue ob =>
if hasPrimitive ob
then
let
val str = Ustring.toAscii (primitiveToUstring (needPrimitive arg))
in
if isString arg
then "\"" ^ str ^ "\""
else str
end
else
"obj"
fun stackOf (regs:REGS)
: (FRAME list) =
let
val { aux = Aux { stack, ...}, ... } = regs
in
!stack
end
fun stackString (stack:FRAME list) =
let
fun fmtFrame (Frame { name, args }) =
name ^ "(" ^ (LogErr.join ", " (map approx args)) ^ ")"
in
"[" ^ (LogErr.join " | " (map fmtFrame (List.rev (stack)))) ^ "]"
end
fun resetProfile (regs:REGS) : unit =
let
val { aux =
Aux { profiler =
Profiler { profileMap, ... },
...},
... } = regs
in
profileMap := StrListMap.empty
end
fun setProfile (regs:REGS) (dop:int option) : unit =
let
val { aux =
Aux { profiler = Profiler { doProfile, ...}, ...},
... } = regs
in
doProfile := dop
end
fun resetStack (regs:REGS) : unit =
let
val { aux =
Aux { stack, ...},
... } = regs
in
stack := []
end
fun push (regs:REGS)
(name:string)
(args:VALUE list)
: unit =
let
val { aux =
Aux { stack,
profiler =
Profiler { doProfile,
profileMap },
... },
... } = regs
val _ = if length (!stack) > 512
then error ["very deep stack, likely infinite recursion"]
else ()
val newStack = (Frame { name = name, args = args }) :: (!stack)
in
stack := newStack;
if !traceStack
then LogErr.log ("[stack] -> " :: [stackString (!stack)])
else ();
case !doProfile of
NONE => ()
| SOME n =>
let
val n = Int.min (n, length newStack)
val frameNames = map (fn Frame { name, ...} => name) (List.take (newStack, n))
val count = case StrListMap.find ((!profileMap), frameNames) of
NONE => 1
| SOME k => (k+1)
in
profileMap := StrListMap.insert ((!profileMap), frameNames, count)
end
end
fun reportProfile (regs:REGS)
: unit =
let
val { aux =
Aux { profiler =
Profiler { doProfile,
profileMap },
... },
... } = regs
in
case !doProfile of
NONE => ()
| SOME _ =>
let
val items = StrListMap.listItemsi (!profileMap)
val itemArr = Array.fromList items
fun sort ((a,acount), (b,bcount)) = Int.compare (acount,bcount)
fun emitEntry (names, count) =
let
val n = LogErr.join " | " (List.rev names)
in
LogErr.log ["[prof] ", (Int.toString count), " : ", n]
end
in
ArrayQSort.sort sort itemArr;
Array.app emitEntry itemArr
end
end
fun pop (regs:REGS)
: unit =
let
val { aux = Aux { stack, ...}, ... } = regs
val newStack = tl (!stack)
in
if !traceStack
then LogErr.log ("[stack] <- " :: [stackString (!stack)])
else ();
stack := newStack
end
fun isBooting (regs:REGS)
: bool =
let
val { aux = Aux { booting, ...}, ... } = regs
in
!booting
end
fun setBooting (regs:REGS)
(isBooting:bool)
: unit =
let
val { aux = Aux { booting, ...}, ... } = regs
in
booting := isBooting
end
fun setLangEd (regs:REGS)
(newLangEd:int)
: unit =
let
val { aux = Aux { langEd, ...}, ... } = regs
in
langEd := newLangEd
end
fun getLangEd (regs:REGS)
: int =
let
val { aux = Aux { langEd, ...}, ... } = regs
in
!langEd
end
fun getSpecials (regs:REGS) =
let
val { aux = Aux { specials = SpecialObjs ss, ... }, ... } = regs
in
ss
end
fun getTypeInterfaceSlot (regs:REGS) = (#typeInterface (getSpecials regs))
fun getNamespaceClassSlot (regs:REGS) = (#namespaceClass (getSpecials regs))