-
Notifications
You must be signed in to change notification settings - Fork 8
/
boot.sml
406 lines (354 loc) · 16.1 KB
/
boot.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
(* -*- 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.
*)
(* The ES4 "boot environment". *)
structure Boot = struct
(* Local tracing machinery *)
val doTrace = ref false
fun log ss = LogErr.log ("[boot] " :: ss)
fun trace ss = if (!doTrace) then log ss else ()
fun error ss = LogErr.hostError ss
fun lookupRoot (prog:Fixture.PROGRAM)
(n:Ast.NAME)
: (Ast.CLS * Ast.INSTANCE_TYPE) =
let
val _ = trace ["fetching ", LogErr.name n, " class definition"];
val rib = Fixture.getRootRib prog
val fix = Fixture.getFixture rib (Ast.PropName n)
val cls = case fix of
Ast.ClassFixture cls => cls
| _ => error [LogErr.name n, " did not resolve to a class fixture"]
val Ast.Cls { instanceType, ... } = cls
val ty = case instanceType of
Ast.Ty { expr = Ast.InstanceType ity, ... } => ity
| _ => error [LogErr.name n, " does not have an instance type"]
in
(cls, ty)
end
fun instantiateRootClass (regs:Mach.REGS)
(fullName:Ast.NAME)
: (Ast.CLS * Mach.CLS_CLOSURE * Mach.OBJ) =
let
val prog = (#prog regs)
val (cls, _) = lookupRoot prog fullName
val (_, cty) = lookupRoot prog Name.intrinsic_Class
val _ = trace ["allocating class ", LogErr.name fullName];
val closure = Eval.newClsClosure (#scope regs) cls
val obj = Mach.newObj (Mach.ClassTag cty) Mach.Null (SOME (Mach.Class closure))
val classRegs = Eval.extendScopeReg regs obj Mach.InstanceScope
val Ast.Cls { classRib, ... } = cls
val _ = trace ["allocating ", Int.toString (length classRib),
" class fixtures on class ", LogErr.name fullName,
", object #", Int.toString (Eval.getObjId (obj))];
val _ = if (!doTrace)
then Fixture.printRib classRib
else ()
val _ = Eval.allocObjRib classRegs obj NONE classRib
val _ = trace ["binding class ", LogErr.name fullName];
val Mach.Obj { props, ... } = (#global regs)
val _ = if Mach.hasProp props fullName
then error ["global object already has a binding for ", LogErr.name fullName]
else ()
val _ = Mach.addProp props fullName
{ ty = Ast.Ty { expr=Ast.InstanceType cty, ribId=NONE },
state = Mach.ValProp (Mach.Object obj),
attrs = { dontDelete = true,
dontEnum = true,
readOnly = true,
isFixed = true } }
val _ = Eval.bindAnySpecialIdentity regs obj
in
(cls, closure, obj)
end
fun completeClassFixtures (regs:Mach.REGS)
(name:Ast.NAME)
(classObj:Mach.OBJ)
: unit =
let
(*
* Now the weird / feedbacky part: we go find the class "Class" and allocate
* its instance fixtures on the object we just built. For non-root classes
* this happens automatically because they're *instances* of class "Class",
* but the object we build only *says* it's an instance of class "Class"; it
* hasn't actually run through any sort of normal construction protocol for
* class "Class".
*
* Note that we do this *after* we bound the object to a position in the
* global object, because we want this tying-the-knot trick to work when
* we're defining class "Class" itself, and we won't be able to find it
* by name until just now.
*)
val classRegs = Eval.extendScopeReg regs classObj Mach.InstanceScope
val (Ast.Cls { instanceRib, ... }, _) = lookupRoot (#prog regs) Name.intrinsic_Class
in
Eval.allocObjRib classRegs classObj (SOME classObj) instanceRib
end
fun runObjectConstructorOnGlobalObject (regs:Mach.REGS)
(objClass:Ast.CLS)
(objClassObj:Mach.OBJ)
(objClassClosure:Mach.CLS_CLOSURE)
: unit =
let
val _ = trace ["running Object constructor on global object"];
val Ast.Cls { instanceRib, ...} = objClass
val objClassRegs = Eval.extendScopeReg regs objClassObj Mach.InstanceScope
val glob = (#global regs)
val _ = Eval.allocObjRib objClassRegs glob (SOME glob) instanceRib
in
Eval.initializeAndConstruct objClassRegs objClassClosure objClassObj [] glob
end
fun loadFile (prog:Fixture.PROGRAM)
(f:string)
: (Fixture.PROGRAM * Ast.FRAGMENT) =
let
val _ = trace ["parsing boot file ", f]
val frag = Parser.parseFile f
val _ = trace ["defining boot file ", f]
in
Defn.defTopFragment prog frag
end
fun loadFiles (prog:Fixture.PROGRAM)
(fs:string list)
: (Fixture.PROGRAM * ((string * Ast.FRAGMENT) list)) =
let
fun f prog accum (file::files) =
let
val _ = trace ["parsing and defining boot file ", file]
val frag = Parser.parseFile file
val (prog', frag') = Defn.defTopFragment prog frag
in
f prog' ((file, frag')::accum) files
end
| f prog accum _ = (prog, List.rev accum)
in
f prog [] fs
end
fun verifyFiles prog fs =
let
fun ver (file, frag) =
(trace ["verifying boot file ", file];
(file, Verify.verifyTopFragment prog false frag))
in
map ver fs
end
fun evalFiles (regs:Mach.REGS)
(fs:(string * Ast.FRAGMENT) list)
: Mach.VAL list =
let
fun eval (file, frag) =
(trace ["evaluating boot file ", file];
Eval.evalTopFragment regs frag)
in
map eval fs
end
fun printProp ((n:Ast.NAME), (p:Mach.PROP)) =
let
val ps = case (#state p) of
Mach.TypeVarProp => "[typeVar]"
| Mach.TypeProp => "[type]"
| Mach.UninitProp => "[uninit]"
| Mach.ValProp _ => "[val]"
| Mach.VirtualValProp _ => "[virtual val]"
| Mach.MethodProp _ => "[method]"
| Mach.NativeFunctionProp _ => "[native function]"
| Mach.NamespaceProp _ => "[namespace]"
| Mach.ValListProp _ => "[val list]"
in
trace [LogErr.name n, " -> ", ps]
end
fun describeGlobal (regs:Mach.REGS) =
if !doTrace
then
(trace ["contents of global object:"];
Mach.inspect (Mach.Object (#global regs)) 1;
trace ["contents of top rib:"];
Fixture.printRib (Fixture.getRootRib (#prog regs)))
else
()
fun filterOutRootClasses (frag:Ast.FRAGMENT) : Ast.FRAGMENT =
let
fun nonRootClassFixture ((Ast.PropName n), _) = if n = Name.nons_Object orelse
n = Name.intrinsic_Class orelse
n = Name.nons_Function orelse
n = Name.intrinsic_Interface
then false
else true
| nonRootClassFixture _ = true
fun filterRib rib =
List.filter nonRootClassFixture rib
fun filterHeadOpt (SOME (Ast.Head (rib, inits))) = SOME (Ast.Head (filterRib rib, inits))
| filterHeadOpt NONE = NONE
in
case frag of
Ast.Unit { name, fragments } =>
Ast.Unit { name = name,
fragments = map filterOutRootClasses fragments }
| Ast.Package { name, fragments } =>
Ast.Package { name = name,
fragments = map filterOutRootClasses fragments }
| Ast.Anon (Ast.Block { pragmas, defns, head, body, loc }) =>
Ast.Anon (Ast.Block { pragmas = pragmas,
defns = defns,
head = filterHeadOpt head,
body = body,
loc = loc })
end
fun boot (baseDir:string) : Mach.REGS =
let
val dir = OS.Path.joinDirFile {dir = baseDir, file = "builtins"}
fun builtin file = OS.Path.joinDirFile {dir = dir, file = file}
val _ = Native.registerNatives ();
val langEd = 4
val prog = Fixture.mkProgram langEd Defn.initRib
(*
* We have to do a small bit of delicate work here because we have to
* construct the regs that *uses* the global object inbetween allocating
* it and running its constructor.
*
* There is no provision for this in the standard object-construction
* protocol Eval.constructClassInstance, so we inline it here.
*
* There are also 4 "root" classes that require special processing
* during startup to avoid feedback loops in their definition: Object,
* Class and Function.
*)
val (prog, objFrag) = loadFile prog (builtin "Object.es")
val (prog, clsFrag) = loadFile prog (builtin "Class.es")
val (prog, funFrag) = loadFile prog (builtin "Function.es")
val (prog, ifaceFrag) = loadFile prog (builtin "Interface.es")
val (prog, otherFrags) =
loadFiles prog
[builtin "Namespace.es",
builtin "Magic.es",
builtin "Internal.es",
builtin "Conversions.es",
(*
* boolean before Boolean because the latter
* takes the prototype object set up by the
* former.
*)
builtin "boolean_primitive.es",
builtin "Boolean.es",
(*
* Likewise the number primitive types and the
* Number type all use int's prototype
* (which should be made first), and the String
* type uses string's prototype.
*)
builtin "double.es",
builtin "int.es",
builtin "uint.es",
builtin "byte.es",
builtin "decimal.es",
builtin "Number.es",
builtin "string_primitive.es",
builtin "String.es",
builtin "Math.es",
builtin "Global.es",
builtin "Name.es",
builtin "Error.es",
builtin "EncodingError.es",
builtin "EvalError.es",
builtin "RangeError.es",
builtin "ReferenceError.es",
builtin "SyntaxError.es",
builtin "TypeError.es",
builtin "URIError.es",
builtin "Array.es", (* before Date *)
builtin "Shell.es", (* before RegExp, for debugging *)
builtin "UnicodeClasses.es",
builtin "UnicodeCasemapping.es",
builtin "UnicodeTbl.es",
builtin "Unicode.es",
builtin "RegExpCompiler.es",
builtin "RegExpEvaluator.es",
builtin "RegExp.es",
builtin "Date.es",
builtin "MetaObjects.es", (* before JSON *)
builtin "JSON.es",
builtin "Vector.es",
builtin "Map.es",
builtin "DecimalContext.es"
]
val objFrag = Verify.verifyTopFragment prog false objFrag
val glob =
let
val (_, objIty) = lookupRoot prog Name.nons_Object
val objTag = Mach.ClassTag objIty
in
Mach.newObj objTag Mach.Null NONE
end
val clsFrag = Verify.verifyTopFragment prog false clsFrag
val funFrag = Verify.verifyTopFragment prog false funFrag
val ifaceFrag = Verify.verifyTopFragment prog false ifaceFrag
val otherProgs = verifyFiles prog otherFrags
val regs = Mach.makeInitialRegs prog glob
val _ = Mach.setBooting regs true
val (objClass, objClassClosure, objClassObj) =
instantiateRootClass regs Name.nons_Object
val (_, _, classClassObj) = instantiateRootClass regs Name.intrinsic_Class
val (_, _, funClassObj) = instantiateRootClass regs Name.nons_Function
val (_, _, ifaceClassObj) = instantiateRootClass regs Name.intrinsic_Interface
(* Allocate runtime representations of anything in the initRib. *)
val _ = trace ["allocating ribs for all builtins"]
val _ = Eval.allocScopeRib regs Defn.initRib
val _ = trace ["allocated ribs for initial rib"]
val _ = describeGlobal regs;
in
completeClassFixtures regs Name.nons_Object objClassObj;
completeClassFixtures regs Name.intrinsic_Class classClassObj;
completeClassFixtures regs Name.nons_Function funClassObj;
completeClassFixtures regs Name.intrinsic_Interface ifaceClassObj;
(* NB: order matters here. *)
Eval.initClassPrototype regs funClassObj;
Eval.initClassPrototype regs objClassObj;
Eval.initClassPrototype regs classClassObj;
Eval.initClassPrototype regs ifaceClassObj;
evalFiles regs otherFrags;
runObjectConstructorOnGlobalObject
regs objClass objClassObj objClassClosure;
Eval.evalTopFragment regs (filterOutRootClasses objFrag);
Eval.evalTopFragment regs (filterOutRootClasses clsFrag);
Eval.evalTopFragment regs (filterOutRootClasses funFrag);
Eval.evalTopFragment regs (filterOutRootClasses ifaceFrag);
Mach.setBooting regs false;
Mach.resetProfile regs;
describeGlobal regs;
(* Do a small bit of rewiring of the root prototype chains. *)
Mach.setProto funClassObj (Eval.getPrototype regs funClassObj);
Mach.setProto objClassObj (Mach.getProto funClassObj);
Mach.setProto classClassObj (Mach.getProto funClassObj);
Mach.setProto ifaceClassObj (Mach.getProto funClassObj);
regs
end
end