Getting the prefix reference stuff working.
This commit is contained in:
parent
d9bb1dd631
commit
c9ddc357e0
|
@ -344,6 +344,9 @@
|
|||
;; 2. Next, evaluate the module body.
|
||||
(make-instruction-sequence
|
||||
`(,(make-PerformStatement (make-ExtendEnvironment/Prefix! names))))
|
||||
|
||||
(make-AssignImmediateStatement (make-ModulePrefixTarget path)
|
||||
(make-EnvWholePrefixReference 0))
|
||||
;; TODO: we need to sequester the prefix of the module with the record.
|
||||
(compile (Module-code mod)
|
||||
(cons (Module-prefix mod) module-cenv)
|
||||
|
@ -2122,6 +2125,8 @@
|
|||
[(PrimitivesReference? target)
|
||||
target]
|
||||
[(ControlFrameTemporary? target)
|
||||
target]
|
||||
[(ModulePrefixTarget? target)
|
||||
target]))
|
||||
|
||||
|
||||
|
|
|
@ -45,7 +45,8 @@
|
|||
EnvLexicalReference
|
||||
EnvPrefixReference
|
||||
PrimitivesReference
|
||||
ControlFrameTemporary))
|
||||
ControlFrameTemporary
|
||||
ModulePrefixTarget))
|
||||
|
||||
|
||||
;; When we need to store a value temporarily in the top control frame, we can use this as a target.
|
||||
|
@ -57,6 +58,11 @@
|
|||
#:transparent)
|
||||
|
||||
|
||||
;; Targetting the prefix attribute of a module.
|
||||
(define-struct: ModulePrefixTarget ([path : ModuleLocator])
|
||||
#:transparent)
|
||||
|
||||
|
||||
|
||||
(define-struct: Label ([name : Symbol])
|
||||
#:transparent)
|
||||
|
|
|
@ -82,7 +82,10 @@
|
|||
[(PrimitivesReference? target)
|
||||
(format "MACHINE.primitives[~s]" (symbol->string (PrimitivesReference-name target)))]
|
||||
[(ControlFrameTemporary? target)
|
||||
(assemble-control-frame-temporary target)]))
|
||||
(assemble-control-frame-temporary target)]
|
||||
[(ModulePrefixTarget? target)
|
||||
(format "MACHINE.modules[~s].prefix"
|
||||
(symbol->string (ModuleLocator-name (ModulePrefixTarget-path target))))]))
|
||||
|
||||
|
||||
(: assemble-control-frame-temporary (ControlFrameTemporary -> String))
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
this.name = name;
|
||||
this.label = label;
|
||||
this.isInvoked = false;
|
||||
this.exports = {};
|
||||
this.prefix = false;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -74,7 +74,8 @@
|
|||
[self-path : Symbol]
|
||||
[label : Symbol]
|
||||
[invoked? : Boolean]
|
||||
[exports : (HashTable Symbol PrimitiveValue)])
|
||||
[exports : (HashTable Symbol PrimitiveValue)]
|
||||
[toplevel : (U False toplevel)])
|
||||
#:transparent
|
||||
#:mutable)
|
||||
|
||||
|
|
|
@ -464,7 +464,8 @@
|
|||
(InstallModuleEntry!-path op))
|
||||
(InstallModuleEntry!-entry-point op)
|
||||
#f
|
||||
(make-hash)))
|
||||
(make-hash)
|
||||
#f))
|
||||
'ok]
|
||||
|
||||
|
||||
|
@ -554,6 +555,15 @@
|
|||
(hash-set! ht
|
||||
(ControlFrameTemporary-name t)
|
||||
(ensure-primitive-value v))
|
||||
'ok))]
|
||||
[(ModulePrefixTarget? t)
|
||||
(lambda: ([m : machine] [v : SlotValue])
|
||||
(let ([module-record
|
||||
(hash-ref (machine-modules m)
|
||||
(ModuleLocator-name
|
||||
(ModulePrefixTarget-path t)))])
|
||||
(set-module-record-toplevel! module-record
|
||||
(ensure-toplevel v))
|
||||
'ok))]))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user